@open-tender/types 0.4.123 → 0.4.124

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.
@@ -1,3 +1,4 @@
1
+ import { ISOString } from '../datetimes';
1
2
  export interface PosPrinter {
2
3
  backup_pos_printer_v2_id: number;
3
4
  description: string;
@@ -28,7 +29,7 @@ export interface PosTerminal {
28
29
  print_kds: boolean;
29
30
  print_receipt: PosTerminalPrintReceipt;
30
31
  printers: PosPrinters;
31
- disable_kiosk_until: string | null;
32
+ disable_kiosk_until: ISOString | null;
32
33
  }
33
34
  export declare type PosTerminals = PosTerminal[];
34
35
  export declare type PrepStationPrepType = 'ASSEMBLY' | 'EXPO';
@@ -1,4 +1,4 @@
1
- import { ISOString, TimeString } from '../datetimes';
1
+ import { TimeString } from '../datetimes';
2
2
  import { Decimal, Money, PrepType, ServiceType, TenderType, Weekday } from '../global';
3
3
  export declare type PaymentProcessor = 'NONE' | 'CARDCONNECT' | 'VANTIV' | 'CLOVER' | 'NMI';
4
4
  export interface PaymentProcessing {
@@ -140,6 +140,6 @@ export interface Store {
140
140
  display_default_prep_type: boolean;
141
141
  display_category_image: boolean;
142
142
  display_descriptions: boolean;
143
- disable_kiosk_message: ISOString | null;
143
+ disable_kiosk_message: string | null;
144
144
  }
145
145
  export declare type Stores = Store[];
@@ -1,3 +1,4 @@
1
+ import { ISOString } from '../datetimes';
1
2
  export interface PosPrinter {
2
3
  backup_pos_printer_v2_id: number;
3
4
  description: string;
@@ -28,7 +29,7 @@ export interface PosTerminal {
28
29
  print_kds: boolean;
29
30
  print_receipt: PosTerminalPrintReceipt;
30
31
  printers: PosPrinters;
31
- disable_kiosk_until: string | null;
32
+ disable_kiosk_until: ISOString | null;
32
33
  }
33
34
  export declare type PosTerminals = PosTerminal[];
34
35
  export declare type PrepStationPrepType = 'ASSEMBLY' | 'EXPO';
@@ -1,4 +1,4 @@
1
- import { ISOString, TimeString } from '../datetimes';
1
+ import { TimeString } from '../datetimes';
2
2
  import { Decimal, Money, PrepType, ServiceType, TenderType, Weekday } from '../global';
3
3
  export declare type PaymentProcessor = 'NONE' | 'CARDCONNECT' | 'VANTIV' | 'CLOVER' | 'NMI';
4
4
  export interface PaymentProcessing {
@@ -140,6 +140,6 @@ export interface Store {
140
140
  display_default_prep_type: boolean;
141
141
  display_category_image: boolean;
142
142
  display_descriptions: boolean;
143
- disable_kiosk_message: ISOString | null;
143
+ disable_kiosk_message: string | null;
144
144
  }
145
145
  export declare type Stores = Store[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.123",
3
+ "version": "0.4.124",
4
4
  "description": "A library of types for use with Open Tender applications that utilize our cloud-based Order API.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",