@open-tender/types 0.4.76 → 0.4.77
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/cjs/types/api/config.d.ts +13 -12
- package/dist/esm/types/api/config.d.ts +13 -12
- package/package.json +1 -1
|
@@ -138,9 +138,6 @@ export interface BottomTabsTitles {
|
|
|
138
138
|
export interface BottomTabsDisplayed {
|
|
139
139
|
displayed: BottomTabsSections;
|
|
140
140
|
}
|
|
141
|
-
export interface ConfirmationSection {
|
|
142
|
-
message: string;
|
|
143
|
-
}
|
|
144
141
|
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
145
142
|
export declare type MenuSections = MenuSection[];
|
|
146
143
|
export interface ConfigUpsell {
|
|
@@ -158,6 +155,18 @@ export interface ConfigUpsell {
|
|
|
158
155
|
show: boolean;
|
|
159
156
|
};
|
|
160
157
|
}
|
|
158
|
+
export interface ConfirmationSection {
|
|
159
|
+
message: string;
|
|
160
|
+
}
|
|
161
|
+
export interface ConfirmationSections {
|
|
162
|
+
dineIn: ConfirmationSection;
|
|
163
|
+
takeOut: ConfirmationSection;
|
|
164
|
+
pickup: ConfirmationSection;
|
|
165
|
+
curbside: ConfirmationSection;
|
|
166
|
+
delivery: ConfirmationSection;
|
|
167
|
+
catering: ConfirmationSection;
|
|
168
|
+
outpost: ConfirmationSection;
|
|
169
|
+
}
|
|
161
170
|
export interface ConfigContent {
|
|
162
171
|
about: {
|
|
163
172
|
background: string;
|
|
@@ -272,15 +281,7 @@ export interface ConfigContent {
|
|
|
272
281
|
confirmation: ConfigContentField & {
|
|
273
282
|
background: string;
|
|
274
283
|
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
|
-
};
|
|
284
|
+
sections: ConfirmationSections;
|
|
284
285
|
};
|
|
285
286
|
creditCards: ConfigContentField;
|
|
286
287
|
deals: ConfigContentField;
|
|
@@ -138,9 +138,6 @@ export interface BottomTabsTitles {
|
|
|
138
138
|
export interface BottomTabsDisplayed {
|
|
139
139
|
displayed: BottomTabsSections;
|
|
140
140
|
}
|
|
141
|
-
export interface ConfirmationSection {
|
|
142
|
-
message: string;
|
|
143
|
-
}
|
|
144
141
|
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
145
142
|
export declare type MenuSections = MenuSection[];
|
|
146
143
|
export interface ConfigUpsell {
|
|
@@ -158,6 +155,18 @@ export interface ConfigUpsell {
|
|
|
158
155
|
show: boolean;
|
|
159
156
|
};
|
|
160
157
|
}
|
|
158
|
+
export interface ConfirmationSection {
|
|
159
|
+
message: string;
|
|
160
|
+
}
|
|
161
|
+
export interface ConfirmationSections {
|
|
162
|
+
dineIn: ConfirmationSection;
|
|
163
|
+
takeOut: ConfirmationSection;
|
|
164
|
+
pickup: ConfirmationSection;
|
|
165
|
+
curbside: ConfirmationSection;
|
|
166
|
+
delivery: ConfirmationSection;
|
|
167
|
+
catering: ConfirmationSection;
|
|
168
|
+
outpost: ConfirmationSection;
|
|
169
|
+
}
|
|
161
170
|
export interface ConfigContent {
|
|
162
171
|
about: {
|
|
163
172
|
background: string;
|
|
@@ -272,15 +281,7 @@ export interface ConfigContent {
|
|
|
272
281
|
confirmation: ConfigContentField & {
|
|
273
282
|
background: string;
|
|
274
283
|
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
|
-
};
|
|
284
|
+
sections: ConfirmationSections;
|
|
284
285
|
};
|
|
285
286
|
creditCards: ConfigContentField;
|
|
286
287
|
deals: ConfigContentField;
|
package/package.json
CHANGED