@open-tender/store 0.2.12 → 0.2.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -44,7 +44,7 @@ export declare const resetTickets: import("@reduxjs/toolkit").AsyncThunk<void, s
44
44
  export declare const printTicket: import("@reduxjs/toolkit").AsyncThunk<void, {
45
45
  orderId: string;
46
46
  ticketNo: number;
47
- status: TicketStatus;
47
+ status?: TicketStatus | undefined;
48
48
  }, {
49
49
  state: AppState;
50
50
  }>;
@@ -385,3 +385,8 @@ export interface Ticket {
385
385
  }
386
386
  export declare type TicketGroup = Ticket[];
387
387
  export declare type TicketGroups = TicketGroup[];
388
+ export interface OrderKdsStatus {
389
+ NOT_DONE: boolean;
390
+ DONE: boolean;
391
+ COMPLETED: boolean;
392
+ }
@@ -44,7 +44,7 @@ export declare const resetTickets: import("@reduxjs/toolkit").AsyncThunk<void, s
44
44
  export declare const printTicket: import("@reduxjs/toolkit").AsyncThunk<void, {
45
45
  orderId: string;
46
46
  ticketNo: number;
47
- status: TicketStatus;
47
+ status?: TicketStatus | undefined;
48
48
  }, {
49
49
  state: AppState;
50
50
  }>;
@@ -385,3 +385,8 @@ export interface Ticket {
385
385
  }
386
386
  export declare type TicketGroup = Ticket[];
387
387
  export declare type TicketGroups = TicketGroup[];
388
+ export interface OrderKdsStatus {
389
+ NOT_DONE: boolean;
390
+ DONE: boolean;
391
+ COMPLETED: boolean;
392
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/store",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "A library of hooks, reducers, utility functions, and types for use with Open Tender applications that utilize our in-store POS API",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",