Zamok Kiosk API
    Preparing search index...
    startTransaction: PayloadAC<
        "START_TRANSACTION",
        {
            customerAckId?: string;
            externalID?: string;
            paymentMethodAckId?: string;
            total: number;
        },
    > = ...

    Initiates a new sales transaction with the specified total.

    {
    type: 'START_TRANSACTION',
    payload: {
    total: 100,
    }
    }