@open-tender/types 0.4.74 → 0.4.76
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.
|
@@ -138,6 +138,9 @@ export interface BottomTabsTitles {
|
|
|
138
138
|
export interface BottomTabsDisplayed {
|
|
139
139
|
displayed: BottomTabsSections;
|
|
140
140
|
}
|
|
141
|
+
export interface ConfirmationSection {
|
|
142
|
+
message: string;
|
|
143
|
+
}
|
|
141
144
|
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
142
145
|
export declare type MenuSections = MenuSection[];
|
|
143
146
|
export interface ConfigUpsell {
|
|
@@ -269,6 +272,15 @@ export interface ConfigContent {
|
|
|
269
272
|
confirmation: ConfigContentField & {
|
|
270
273
|
background: string;
|
|
271
274
|
error: string;
|
|
275
|
+
sections: {
|
|
276
|
+
dineIn: ConfirmationSection;
|
|
277
|
+
takeOut: ConfirmationSection;
|
|
278
|
+
pickup: ConfirmationSection;
|
|
279
|
+
curbside: ConfirmationSection;
|
|
280
|
+
delivery: ConfirmationSection;
|
|
281
|
+
catering: ConfirmationSection;
|
|
282
|
+
outpost: ConfirmationSection;
|
|
283
|
+
};
|
|
272
284
|
};
|
|
273
285
|
creditCards: ConfigContentField;
|
|
274
286
|
deals: ConfigContentField;
|
|
@@ -385,7 +397,11 @@ export interface ConfigContent {
|
|
|
385
397
|
back: string;
|
|
386
398
|
background: string;
|
|
387
399
|
displayed: (keyof CustomerCreate)[];
|
|
400
|
+
display_marketing_message: boolean;
|
|
401
|
+
email: string;
|
|
388
402
|
marketing: string;
|
|
403
|
+
push: string;
|
|
404
|
+
sms: string;
|
|
389
405
|
};
|
|
390
406
|
unsubscribe: ConfigContentField & {
|
|
391
407
|
button: string;
|
|
@@ -138,6 +138,9 @@ export interface BottomTabsTitles {
|
|
|
138
138
|
export interface BottomTabsDisplayed {
|
|
139
139
|
displayed: BottomTabsSections;
|
|
140
140
|
}
|
|
141
|
+
export interface ConfirmationSection {
|
|
142
|
+
message: string;
|
|
143
|
+
}
|
|
141
144
|
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
142
145
|
export declare type MenuSections = MenuSection[];
|
|
143
146
|
export interface ConfigUpsell {
|
|
@@ -269,6 +272,15 @@ export interface ConfigContent {
|
|
|
269
272
|
confirmation: ConfigContentField & {
|
|
270
273
|
background: string;
|
|
271
274
|
error: string;
|
|
275
|
+
sections: {
|
|
276
|
+
dineIn: ConfirmationSection;
|
|
277
|
+
takeOut: ConfirmationSection;
|
|
278
|
+
pickup: ConfirmationSection;
|
|
279
|
+
curbside: ConfirmationSection;
|
|
280
|
+
delivery: ConfirmationSection;
|
|
281
|
+
catering: ConfirmationSection;
|
|
282
|
+
outpost: ConfirmationSection;
|
|
283
|
+
};
|
|
272
284
|
};
|
|
273
285
|
creditCards: ConfigContentField;
|
|
274
286
|
deals: ConfigContentField;
|
|
@@ -385,7 +397,11 @@ export interface ConfigContent {
|
|
|
385
397
|
back: string;
|
|
386
398
|
background: string;
|
|
387
399
|
displayed: (keyof CustomerCreate)[];
|
|
400
|
+
display_marketing_message: boolean;
|
|
401
|
+
email: string;
|
|
388
402
|
marketing: string;
|
|
403
|
+
push: string;
|
|
404
|
+
sms: string;
|
|
389
405
|
};
|
|
390
406
|
unsubscribe: ConfigContentField & {
|
|
391
407
|
button: string;
|
package/package.json
CHANGED