@open-tender/types 0.3.1 → 0.3.3

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.
package/dist/.DS_Store ADDED
Binary file
@@ -174,15 +174,15 @@ export interface CheckoutTenderGiftCard {
174
174
  }
175
175
  export interface CheckoutTenderHouseAccount {
176
176
  amount: Money;
177
- approved_contact: boolean;
178
- domain: string | null;
177
+ approved_contact?: boolean;
178
+ domain?: string | null;
179
179
  house_account_id: number;
180
180
  name: string;
181
- order_type: OrderType | null;
182
- pin: string;
183
- revenue_centers: number[];
184
- service_type: ServiceType | null;
185
- tender_type: TenderType;
181
+ order_type?: OrderType | null;
182
+ pin?: string;
183
+ revenue_centers?: number[];
184
+ service_type?: ServiceType | null;
185
+ tender_type?: TenderType;
186
186
  }
187
187
  export interface CheckoutTenderApplePay {
188
188
  amount: Money;
@@ -20,4 +20,5 @@ export interface CustomerSignIn {
20
20
  one_time_passcode?: string;
21
21
  password?: string;
22
22
  phone?: string;
23
+ token?: string;
23
24
  }
@@ -30,6 +30,7 @@ export interface TPLS {
30
30
  first_name: string;
31
31
  gender: Gender | null;
32
32
  last_name: string;
33
+ membership_tier: string | null;
33
34
  phone: string;
34
35
  points: TPLSPoints | null;
35
36
  progress: TPLSProgress | null;
@@ -174,15 +174,15 @@ export interface CheckoutTenderGiftCard {
174
174
  }
175
175
  export interface CheckoutTenderHouseAccount {
176
176
  amount: Money;
177
- approved_contact: boolean;
178
- domain: string | null;
177
+ approved_contact?: boolean;
178
+ domain?: string | null;
179
179
  house_account_id: number;
180
180
  name: string;
181
- order_type: OrderType | null;
182
- pin: string;
183
- revenue_centers: number[];
184
- service_type: ServiceType | null;
185
- tender_type: TenderType;
181
+ order_type?: OrderType | null;
182
+ pin?: string;
183
+ revenue_centers?: number[];
184
+ service_type?: ServiceType | null;
185
+ tender_type?: TenderType;
186
186
  }
187
187
  export interface CheckoutTenderApplePay {
188
188
  amount: Money;
@@ -20,4 +20,5 @@ export interface CustomerSignIn {
20
20
  one_time_passcode?: string;
21
21
  password?: string;
22
22
  phone?: string;
23
+ token?: string;
23
24
  }
@@ -30,6 +30,7 @@ export interface TPLS {
30
30
  first_name: string;
31
31
  gender: Gender | null;
32
32
  last_name: string;
33
+ membership_tier: string | null;
33
34
  phone: string;
34
35
  points: TPLSPoints | null;
35
36
  progress: TPLSProgress | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
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",