@open-tender/types 0.4.128 → 0.4.131

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.
@@ -226,6 +226,7 @@ export interface CheckoutForm {
226
226
  tenders: CheckoutTenders;
227
227
  tip: Money | null;
228
228
  token?: string | null;
229
+ kount_device_session_id?: string;
229
230
  }
230
231
  export interface OrderData {
231
232
  address: Address | null;
@@ -250,6 +251,7 @@ export interface OrderData {
250
251
  tenders: CheckoutTenders | null;
251
252
  tip: Money | null;
252
253
  token?: string | null;
254
+ kount_device_session_id?: string;
253
255
  }
254
256
  export interface OrderCreate {
255
257
  address?: Address | null;
@@ -274,6 +276,7 @@ export interface OrderCreate {
274
276
  tenders?: CheckoutTenders;
275
277
  tip?: Money;
276
278
  token?: string | null;
279
+ kount_device_session_id?: string;
277
280
  }
278
281
  export interface CheckoutPoints {
279
282
  points: CheckoutConfigLoyalty;
@@ -523,6 +523,11 @@ export declare type ConfigSettingsDisplaySettings = {
523
523
  export declare type ConfigSettingsLocationName = {
524
524
  [keys in ServiceType | 'OUTPOST']: string[];
525
525
  };
526
+ export interface ConfigKount {
527
+ clientId: string;
528
+ enabled: boolean;
529
+ environment: string;
530
+ }
526
531
  export interface ConfigSettings {
527
532
  accountSections: string[];
528
533
  autoSelect: ConfigSettingsAutoselect;
@@ -533,6 +538,7 @@ export interface ConfigSettings {
533
538
  maxDistance: number;
534
539
  orderTypes: ConfigOrderTypes[];
535
540
  recaptcha: ConfigRecaptcha;
541
+ kount?: ConfigKount;
536
542
  }
537
543
  export interface ConfigAccordion {
538
544
  hasCals: boolean;
@@ -22,6 +22,7 @@ export interface CreditCardData {
22
22
  save?: boolean;
23
23
  is_default?: boolean;
24
24
  token?: string;
25
+ kount_device_session_id?: string;
25
26
  }
26
27
  export interface CreditCardUpdate {
27
28
  is_default: boolean;
@@ -29,6 +29,7 @@ export interface GiftCardsPurchase {
29
29
  name: string;
30
30
  url: string;
31
31
  token?: string;
32
+ kount_device_session_id?: string;
32
33
  }
33
34
  export interface GiftCardPurchase {
34
35
  amount: string;
@@ -5,6 +5,7 @@ export interface DonationPurchase {
5
5
  credit_card: CreditCardData | CreditCardSaved;
6
6
  email: string;
7
7
  token?: string;
8
+ kount_device_session_id?: string;
8
9
  }
9
10
  export interface Donation {
10
11
  email: string;
@@ -226,6 +226,7 @@ export interface CheckoutForm {
226
226
  tenders: CheckoutTenders;
227
227
  tip: Money | null;
228
228
  token?: string | null;
229
+ kount_device_session_id?: string;
229
230
  }
230
231
  export interface OrderData {
231
232
  address: Address | null;
@@ -250,6 +251,7 @@ export interface OrderData {
250
251
  tenders: CheckoutTenders | null;
251
252
  tip: Money | null;
252
253
  token?: string | null;
254
+ kount_device_session_id?: string;
253
255
  }
254
256
  export interface OrderCreate {
255
257
  address?: Address | null;
@@ -274,6 +276,7 @@ export interface OrderCreate {
274
276
  tenders?: CheckoutTenders;
275
277
  tip?: Money;
276
278
  token?: string | null;
279
+ kount_device_session_id?: string;
277
280
  }
278
281
  export interface CheckoutPoints {
279
282
  points: CheckoutConfigLoyalty;
@@ -523,6 +523,11 @@ export declare type ConfigSettingsDisplaySettings = {
523
523
  export declare type ConfigSettingsLocationName = {
524
524
  [keys in ServiceType | 'OUTPOST']: string[];
525
525
  };
526
+ export interface ConfigKount {
527
+ clientId: string;
528
+ enabled: boolean;
529
+ environment: string;
530
+ }
526
531
  export interface ConfigSettings {
527
532
  accountSections: string[];
528
533
  autoSelect: ConfigSettingsAutoselect;
@@ -533,6 +538,7 @@ export interface ConfigSettings {
533
538
  maxDistance: number;
534
539
  orderTypes: ConfigOrderTypes[];
535
540
  recaptcha: ConfigRecaptcha;
541
+ kount?: ConfigKount;
536
542
  }
537
543
  export interface ConfigAccordion {
538
544
  hasCals: boolean;
@@ -22,6 +22,7 @@ export interface CreditCardData {
22
22
  save?: boolean;
23
23
  is_default?: boolean;
24
24
  token?: string;
25
+ kount_device_session_id?: string;
25
26
  }
26
27
  export interface CreditCardUpdate {
27
28
  is_default: boolean;
@@ -29,6 +29,7 @@ export interface GiftCardsPurchase {
29
29
  name: string;
30
30
  url: string;
31
31
  token?: string;
32
+ kount_device_session_id?: string;
32
33
  }
33
34
  export interface GiftCardPurchase {
34
35
  amount: string;
@@ -5,6 +5,7 @@ export interface DonationPurchase {
5
5
  credit_card: CreditCardData | CreditCardSaved;
6
6
  email: string;
7
7
  token?: string;
8
+ kount_device_session_id?: string;
8
9
  }
9
10
  export interface Donation {
10
11
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.128",
3
+ "version": "0.4.131",
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",