@open-tender/types 0.4.152 → 0.4.154

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.
@@ -68,6 +68,7 @@ export interface ConfigOrderNotifications {
68
68
  export declare type OrderRatingTypes = OrderType[];
69
69
  export declare type CHECKOUT_CREDIT_CARD_METHOD = 'REQUIRE_ADD' | 'REQUIRE_CARD_NUMBER' | 'ALLOW_BOTH';
70
70
  export interface ConfigBrand {
71
+ app_requires_recaptcha: boolean;
71
72
  accepts_marketing: ConfigAcceptMarketing | null;
72
73
  applePayMerchantId: string;
73
74
  appleTouchIcon: string;
@@ -517,6 +518,9 @@ export interface ConfigRecaptcha {
517
518
  donations: boolean;
518
519
  giftCards: boolean;
519
520
  login: boolean;
521
+ signup: boolean;
522
+ androidKey: string;
523
+ iOsKey: string;
520
524
  }
521
525
  export declare type ConfigSettingsAutoselect = {
522
526
  [keys in OrderType]: {
@@ -16,6 +16,7 @@ export interface CustomerCreate {
16
16
  last_name: string;
17
17
  password?: string;
18
18
  phone: string;
19
+ token?: string;
19
20
  }
20
21
  export interface Customer {
21
22
  accepts_marketing: boolean;
@@ -68,6 +68,7 @@ export interface ConfigOrderNotifications {
68
68
  export declare type OrderRatingTypes = OrderType[];
69
69
  export declare type CHECKOUT_CREDIT_CARD_METHOD = 'REQUIRE_ADD' | 'REQUIRE_CARD_NUMBER' | 'ALLOW_BOTH';
70
70
  export interface ConfigBrand {
71
+ app_requires_recaptcha: boolean;
71
72
  accepts_marketing: ConfigAcceptMarketing | null;
72
73
  applePayMerchantId: string;
73
74
  appleTouchIcon: string;
@@ -517,6 +518,9 @@ export interface ConfigRecaptcha {
517
518
  donations: boolean;
518
519
  giftCards: boolean;
519
520
  login: boolean;
521
+ signup: boolean;
522
+ androidKey: string;
523
+ iOsKey: string;
520
524
  }
521
525
  export declare type ConfigSettingsAutoselect = {
522
526
  [keys in OrderType]: {
@@ -16,6 +16,7 @@ export interface CustomerCreate {
16
16
  last_name: string;
17
17
  password?: string;
18
18
  phone: string;
19
+ token?: string;
19
20
  }
20
21
  export interface Customer {
21
22
  accepts_marketing: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.152",
3
+ "version": "0.4.154",
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",