@open-tender/types 0.4.141 → 0.4.143

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.
@@ -66,16 +66,20 @@ export interface ConfigOrderNotifications {
66
66
  title: string;
67
67
  }
68
68
  export declare type OrderRatingTypes = OrderType[];
69
+ export declare type CHECKOUT_CREDIT_CARD_METHOD = 'REQUIRE_ADD' | 'REQUIRE_CARD_NUMBER' | 'BOTH';
69
70
  export interface ConfigBrand {
70
71
  accepts_marketing: ConfigAcceptMarketing | null;
71
72
  applePayMerchantId: string;
72
73
  appleTouchIcon: string;
73
74
  brandId: number;
74
75
  catering_id: number;
76
+ checkout_credit_card_method: CHECKOUT_CREDIT_CARD_METHOD;
75
77
  como_business_id: number | null;
76
78
  description: string;
79
+ display_payment_methods: boolean;
77
80
  display_view_only_menu: boolean;
78
81
  display_reward_code: boolean;
82
+ display_top_qr_scan_button: boolean;
79
83
  email: string;
80
84
  favicon: string;
81
85
  fulfillment: ConfigFulfillment;
@@ -151,5 +151,8 @@ export interface Store {
151
151
  display_descriptions: boolean;
152
152
  disable_kiosk_message: string | null;
153
153
  hours: StoreHours;
154
+ is_separate_auth_screen: boolean;
155
+ is_separate_service_type: boolean;
156
+ display_signup_checkout: boolean;
154
157
  }
155
158
  export declare type Stores = Store[];
@@ -66,16 +66,20 @@ export interface ConfigOrderNotifications {
66
66
  title: string;
67
67
  }
68
68
  export declare type OrderRatingTypes = OrderType[];
69
+ export declare type CHECKOUT_CREDIT_CARD_METHOD = 'REQUIRE_ADD' | 'REQUIRE_CARD_NUMBER' | 'BOTH';
69
70
  export interface ConfigBrand {
70
71
  accepts_marketing: ConfigAcceptMarketing | null;
71
72
  applePayMerchantId: string;
72
73
  appleTouchIcon: string;
73
74
  brandId: number;
74
75
  catering_id: number;
76
+ checkout_credit_card_method: CHECKOUT_CREDIT_CARD_METHOD;
75
77
  como_business_id: number | null;
76
78
  description: string;
79
+ display_payment_methods: boolean;
77
80
  display_view_only_menu: boolean;
78
81
  display_reward_code: boolean;
82
+ display_top_qr_scan_button: boolean;
79
83
  email: string;
80
84
  favicon: string;
81
85
  fulfillment: ConfigFulfillment;
@@ -151,5 +151,8 @@ export interface Store {
151
151
  display_descriptions: boolean;
152
152
  disable_kiosk_message: string | null;
153
153
  hours: StoreHours;
154
+ is_separate_auth_screen: boolean;
155
+ is_separate_service_type: boolean;
156
+ display_signup_checkout: boolean;
154
157
  }
155
158
  export declare type Stores = Store[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.141",
3
+ "version": "0.4.143",
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",