@open-tender/types 0.4.82 → 0.4.84

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.
@@ -206,6 +206,7 @@ export interface ConfigContent {
206
206
  skip: string;
207
207
  };
208
208
  mobile: string;
209
+ pointsShop: ConfigContentField;
209
210
  profile: ConfigContentField;
210
211
  punctuation: string;
211
212
  recentItems: ConfigContentField;
@@ -1,5 +1,5 @@
1
1
  import { DateString, ISOString, ISOStringOffset, RequestedAt, TimeHuman, TimezonePython } from '../datetimes';
2
- import { CardType, CardTypeName, ChannelType, DeviceType, DiscountAuthType, Images, Money, NegativeMoney, OrderStatus, OrderType, ReceiptType, ServiceType, TenderStatus, TenderType } from '../global';
2
+ import { CardType, CardTypeName, ChannelType, DeviceType, DiscountAuthType, Images, Money, NegativeMoney, OrderStatus, OrderType, PrepType, ReceiptType, ServiceType, TenderStatus, TenderType } from '../global';
3
3
  import { CreditCard, CreditCards } from './creditCards';
4
4
  import { Address, Customer, GiftCard, HouseAccounts } from './customer';
5
5
  import { PrepStatus } from './kds';
@@ -138,6 +138,7 @@ export interface OrderPrep {
138
138
  fire_at: ISOString | null;
139
139
  is_in_prep_queue: boolean;
140
140
  prep_status: PrepStatus;
141
+ prep_type: PrepType | null;
141
142
  ready_at: ISOString | null;
142
143
  requested_at: ISOString;
143
144
  }
@@ -206,6 +206,7 @@ export interface ConfigContent {
206
206
  skip: string;
207
207
  };
208
208
  mobile: string;
209
+ pointsShop: ConfigContentField;
209
210
  profile: ConfigContentField;
210
211
  punctuation: string;
211
212
  recentItems: ConfigContentField;
@@ -1,5 +1,5 @@
1
1
  import { DateString, ISOString, ISOStringOffset, RequestedAt, TimeHuman, TimezonePython } from '../datetimes';
2
- import { CardType, CardTypeName, ChannelType, DeviceType, DiscountAuthType, Images, Money, NegativeMoney, OrderStatus, OrderType, ReceiptType, ServiceType, TenderStatus, TenderType } from '../global';
2
+ import { CardType, CardTypeName, ChannelType, DeviceType, DiscountAuthType, Images, Money, NegativeMoney, OrderStatus, OrderType, PrepType, ReceiptType, ServiceType, TenderStatus, TenderType } from '../global';
3
3
  import { CreditCard, CreditCards } from './creditCards';
4
4
  import { Address, Customer, GiftCard, HouseAccounts } from './customer';
5
5
  import { PrepStatus } from './kds';
@@ -138,6 +138,7 @@ export interface OrderPrep {
138
138
  fire_at: ISOString | null;
139
139
  is_in_prep_queue: boolean;
140
140
  prep_status: PrepStatus;
141
+ prep_type: PrepType | null;
141
142
  ready_at: ISOString | null;
142
143
  requested_at: ISOString;
143
144
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.82",
3
+ "version": "0.4.84",
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",