@open-tender/types 0.0.115 → 0.0.117

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.
@@ -304,6 +304,7 @@ export interface OrderTender {
304
304
  name?: string;
305
305
  customer_card_id?: number;
306
306
  balance?: number;
307
+ house_account_id?: number;
307
308
  }
308
309
  export declare type OrderTenders = Array<OrderTender>;
309
310
  export interface OrderTicket {
@@ -15,7 +15,7 @@ export declare type ServiceTypeMap = {
15
15
  [Property in ServiceType]: string;
16
16
  };
17
17
  export declare type GratuityType = 'amount' | 'percent';
18
- export declare type TenderType = 'CASH' | 'CREDIT' | 'HOUSE_ACCOUNT' | 'GIFT_CARD' | 'COMP';
18
+ export declare type TenderType = 'CASH' | 'CREDIT' | 'HOUSE_ACCOUNT' | 'GIFT_CARD' | 'COMP' | 'LEVELUP';
19
19
  export declare type TenderTypeMap = {
20
20
  [Property in TenderType]: string;
21
21
  };
@@ -304,6 +304,7 @@ export interface OrderTender {
304
304
  name?: string;
305
305
  customer_card_id?: number;
306
306
  balance?: number;
307
+ house_account_id?: number;
307
308
  }
308
309
  export declare type OrderTenders = Array<OrderTender>;
309
310
  export interface OrderTicket {
@@ -15,7 +15,7 @@ export declare type ServiceTypeMap = {
15
15
  [Property in ServiceType]: string;
16
16
  };
17
17
  export declare type GratuityType = 'amount' | 'percent';
18
- export declare type TenderType = 'CASH' | 'CREDIT' | 'HOUSE_ACCOUNT' | 'GIFT_CARD' | 'COMP';
18
+ export declare type TenderType = 'CASH' | 'CREDIT' | 'HOUSE_ACCOUNT' | 'GIFT_CARD' | 'COMP' | 'LEVELUP';
19
19
  export declare type TenderTypeMap = {
20
20
  [Property in TenderType]: string;
21
21
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.0.115",
3
+ "version": "0.0.117",
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",