@open-tender/types 0.2.28 → 0.2.30
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 +17 -10
- package/dist/esm/types/api/config.d.ts +17 -10
- package/package.json +1 -1
|
@@ -256,6 +256,8 @@ export interface ConfigContent {
|
|
|
256
256
|
loadingMessage: string;
|
|
257
257
|
mobile: string;
|
|
258
258
|
soldOutMessage: string;
|
|
259
|
+
videoUrl: string;
|
|
260
|
+
videoUrlMobile: string;
|
|
259
261
|
};
|
|
260
262
|
menuSite: ConfigContentField & {
|
|
261
263
|
background: string;
|
|
@@ -277,6 +279,7 @@ export interface ConfigContent {
|
|
|
277
279
|
showDescriptionsMobile: boolean;
|
|
278
280
|
showHero: boolean;
|
|
279
281
|
videoUrl: string;
|
|
282
|
+
videoUrlMobile: string;
|
|
280
283
|
};
|
|
281
284
|
orders: ConfigContentField;
|
|
282
285
|
profile: ConfigContentField;
|
|
@@ -331,16 +334,20 @@ export interface ConfigSettingsCheckoutOrderType {
|
|
|
331
334
|
details_servingUtensils: string | null;
|
|
332
335
|
promo_code_limit: number;
|
|
333
336
|
}
|
|
334
|
-
export declare type
|
|
335
|
-
export declare type
|
|
337
|
+
export declare type ConfigDisplaySettingMenuType = 'DEFAULT' | 'SCROLLABLE';
|
|
338
|
+
export declare type ConfigDisplaySettingMenuTypeApp = ConfigDisplaySettingMenuType | 'TABS';
|
|
339
|
+
export declare type ConfigDisplaySettingBuilderType = 'PAGE' | 'PAGE_FULL' | 'DEFAULT' | 'SIDEBAR';
|
|
340
|
+
export declare type ConfigDisplaySettingGroupsTypeApp = 'SCROLLABLE' | 'TABS';
|
|
341
|
+
export declare type ConfigDisplaySettingModifiersType = 'DEFAULT' | 'CARDS';
|
|
342
|
+
export declare type ConfigDisplaySettingDescriptionType = 'SHOW' | 'SHORT' | 'HIDE';
|
|
336
343
|
export interface ConfigDisplaySetting {
|
|
337
344
|
allergens: boolean;
|
|
338
345
|
builderImages: boolean;
|
|
339
|
-
builderType:
|
|
346
|
+
builderType: ConfigDisplaySettingBuilderType;
|
|
340
347
|
calories: boolean;
|
|
341
348
|
categoryType: string;
|
|
342
349
|
categoryTypeMobile: string;
|
|
343
|
-
groupsTypeApp:
|
|
350
|
+
groupsTypeApp: ConfigDisplaySettingGroupsTypeApp;
|
|
344
351
|
hasCustomize: boolean;
|
|
345
352
|
itemsTwoPerRowMobile: boolean;
|
|
346
353
|
madeFor: boolean;
|
|
@@ -349,15 +356,15 @@ export interface ConfigDisplaySetting {
|
|
|
349
356
|
menuHeroChildMobile: boolean;
|
|
350
357
|
menuHeroMobile: boolean;
|
|
351
358
|
menuImages: boolean;
|
|
352
|
-
menuItemDescription:
|
|
353
|
-
menuItemDescriptionMobile:
|
|
354
|
-
menuType:
|
|
355
|
-
menuTypeApp:
|
|
356
|
-
menuTypeMobile:
|
|
359
|
+
menuItemDescription: ConfigDisplaySettingDescriptionType;
|
|
360
|
+
menuItemDescriptionMobile: ConfigDisplaySettingDescriptionType;
|
|
361
|
+
menuType: ConfigDisplaySettingMenuType;
|
|
362
|
+
menuTypeApp: ConfigDisplaySettingMenuTypeApp;
|
|
363
|
+
menuTypeMobile: ConfigDisplaySettingMenuType;
|
|
357
364
|
modifierDescription: boolean;
|
|
358
365
|
modifierGroupDescription: boolean;
|
|
359
366
|
modifierImage: boolean;
|
|
360
|
-
modifiersType:
|
|
367
|
+
modifiersType: ConfigDisplaySettingModifiersType;
|
|
361
368
|
notes: boolean;
|
|
362
369
|
quickAdd: boolean;
|
|
363
370
|
quickAddMobile: boolean;
|
|
@@ -256,6 +256,8 @@ export interface ConfigContent {
|
|
|
256
256
|
loadingMessage: string;
|
|
257
257
|
mobile: string;
|
|
258
258
|
soldOutMessage: string;
|
|
259
|
+
videoUrl: string;
|
|
260
|
+
videoUrlMobile: string;
|
|
259
261
|
};
|
|
260
262
|
menuSite: ConfigContentField & {
|
|
261
263
|
background: string;
|
|
@@ -277,6 +279,7 @@ export interface ConfigContent {
|
|
|
277
279
|
showDescriptionsMobile: boolean;
|
|
278
280
|
showHero: boolean;
|
|
279
281
|
videoUrl: string;
|
|
282
|
+
videoUrlMobile: string;
|
|
280
283
|
};
|
|
281
284
|
orders: ConfigContentField;
|
|
282
285
|
profile: ConfigContentField;
|
|
@@ -331,16 +334,20 @@ export interface ConfigSettingsCheckoutOrderType {
|
|
|
331
334
|
details_servingUtensils: string | null;
|
|
332
335
|
promo_code_limit: number;
|
|
333
336
|
}
|
|
334
|
-
export declare type
|
|
335
|
-
export declare type
|
|
337
|
+
export declare type ConfigDisplaySettingMenuType = 'DEFAULT' | 'SCROLLABLE';
|
|
338
|
+
export declare type ConfigDisplaySettingMenuTypeApp = ConfigDisplaySettingMenuType | 'TABS';
|
|
339
|
+
export declare type ConfigDisplaySettingBuilderType = 'PAGE' | 'PAGE_FULL' | 'DEFAULT' | 'SIDEBAR';
|
|
340
|
+
export declare type ConfigDisplaySettingGroupsTypeApp = 'SCROLLABLE' | 'TABS';
|
|
341
|
+
export declare type ConfigDisplaySettingModifiersType = 'DEFAULT' | 'CARDS';
|
|
342
|
+
export declare type ConfigDisplaySettingDescriptionType = 'SHOW' | 'SHORT' | 'HIDE';
|
|
336
343
|
export interface ConfigDisplaySetting {
|
|
337
344
|
allergens: boolean;
|
|
338
345
|
builderImages: boolean;
|
|
339
|
-
builderType:
|
|
346
|
+
builderType: ConfigDisplaySettingBuilderType;
|
|
340
347
|
calories: boolean;
|
|
341
348
|
categoryType: string;
|
|
342
349
|
categoryTypeMobile: string;
|
|
343
|
-
groupsTypeApp:
|
|
350
|
+
groupsTypeApp: ConfigDisplaySettingGroupsTypeApp;
|
|
344
351
|
hasCustomize: boolean;
|
|
345
352
|
itemsTwoPerRowMobile: boolean;
|
|
346
353
|
madeFor: boolean;
|
|
@@ -349,15 +356,15 @@ export interface ConfigDisplaySetting {
|
|
|
349
356
|
menuHeroChildMobile: boolean;
|
|
350
357
|
menuHeroMobile: boolean;
|
|
351
358
|
menuImages: boolean;
|
|
352
|
-
menuItemDescription:
|
|
353
|
-
menuItemDescriptionMobile:
|
|
354
|
-
menuType:
|
|
355
|
-
menuTypeApp:
|
|
356
|
-
menuTypeMobile:
|
|
359
|
+
menuItemDescription: ConfigDisplaySettingDescriptionType;
|
|
360
|
+
menuItemDescriptionMobile: ConfigDisplaySettingDescriptionType;
|
|
361
|
+
menuType: ConfigDisplaySettingMenuType;
|
|
362
|
+
menuTypeApp: ConfigDisplaySettingMenuTypeApp;
|
|
363
|
+
menuTypeMobile: ConfigDisplaySettingMenuType;
|
|
357
364
|
modifierDescription: boolean;
|
|
358
365
|
modifierGroupDescription: boolean;
|
|
359
366
|
modifierImage: boolean;
|
|
360
|
-
modifiersType:
|
|
367
|
+
modifiersType: ConfigDisplaySettingModifiersType;
|
|
361
368
|
notes: boolean;
|
|
362
369
|
quickAdd: boolean;
|
|
363
370
|
quickAddMobile: boolean;
|
package/package.json
CHANGED