@open-tender/types 0.4.21 → 0.4.22
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/.DS_Store +0 -0
- package/dist/cjs/types/api/config.d.ts +16 -15
- package/dist/esm/types/api/config.d.ts +16 -15
- package/package.json +1 -1
package/dist/.DS_Store
CHANGED
|
Binary file
|
|
@@ -136,6 +136,21 @@ export interface BottomTabsDisplayed {
|
|
|
136
136
|
}
|
|
137
137
|
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
138
138
|
export declare type MenuSections = MenuSection[];
|
|
139
|
+
export interface ConfigUpsell {
|
|
140
|
+
cart: ConfigContentField & {
|
|
141
|
+
decline: string;
|
|
142
|
+
show: boolean;
|
|
143
|
+
};
|
|
144
|
+
checkout: ConfigContentField & {
|
|
145
|
+
decline: string;
|
|
146
|
+
proceed: string;
|
|
147
|
+
show: boolean;
|
|
148
|
+
};
|
|
149
|
+
item: ConfigContentField & {
|
|
150
|
+
decline: string;
|
|
151
|
+
show: boolean;
|
|
152
|
+
};
|
|
153
|
+
}
|
|
139
154
|
export interface ConfigContent {
|
|
140
155
|
about: {
|
|
141
156
|
background: string;
|
|
@@ -367,21 +382,7 @@ export interface ConfigContent {
|
|
|
367
382
|
background: string;
|
|
368
383
|
displayed: (keyof CustomerCreate)[];
|
|
369
384
|
};
|
|
370
|
-
upsells:
|
|
371
|
-
cart: ConfigContentField & {
|
|
372
|
-
decline: string;
|
|
373
|
-
show: boolean;
|
|
374
|
-
};
|
|
375
|
-
checkout: ConfigContentField & {
|
|
376
|
-
decline: string;
|
|
377
|
-
proceed: string;
|
|
378
|
-
show: boolean;
|
|
379
|
-
};
|
|
380
|
-
item: ConfigContentField & {
|
|
381
|
-
decline: string;
|
|
382
|
-
show: boolean;
|
|
383
|
-
};
|
|
384
|
-
};
|
|
385
|
+
upsells: ConfigUpsell;
|
|
385
386
|
}
|
|
386
387
|
export interface ConfigSettingsCheckoutOrderType {
|
|
387
388
|
address_company: string | null;
|
|
@@ -136,6 +136,21 @@ export interface BottomTabsDisplayed {
|
|
|
136
136
|
}
|
|
137
137
|
export declare type MenuSection = 'FEATURED' | 'FAVORITES' | 'RECENTS';
|
|
138
138
|
export declare type MenuSections = MenuSection[];
|
|
139
|
+
export interface ConfigUpsell {
|
|
140
|
+
cart: ConfigContentField & {
|
|
141
|
+
decline: string;
|
|
142
|
+
show: boolean;
|
|
143
|
+
};
|
|
144
|
+
checkout: ConfigContentField & {
|
|
145
|
+
decline: string;
|
|
146
|
+
proceed: string;
|
|
147
|
+
show: boolean;
|
|
148
|
+
};
|
|
149
|
+
item: ConfigContentField & {
|
|
150
|
+
decline: string;
|
|
151
|
+
show: boolean;
|
|
152
|
+
};
|
|
153
|
+
}
|
|
139
154
|
export interface ConfigContent {
|
|
140
155
|
about: {
|
|
141
156
|
background: string;
|
|
@@ -367,21 +382,7 @@ export interface ConfigContent {
|
|
|
367
382
|
background: string;
|
|
368
383
|
displayed: (keyof CustomerCreate)[];
|
|
369
384
|
};
|
|
370
|
-
upsells:
|
|
371
|
-
cart: ConfigContentField & {
|
|
372
|
-
decline: string;
|
|
373
|
-
show: boolean;
|
|
374
|
-
};
|
|
375
|
-
checkout: ConfigContentField & {
|
|
376
|
-
decline: string;
|
|
377
|
-
proceed: string;
|
|
378
|
-
show: boolean;
|
|
379
|
-
};
|
|
380
|
-
item: ConfigContentField & {
|
|
381
|
-
decline: string;
|
|
382
|
-
show: boolean;
|
|
383
|
-
};
|
|
384
|
-
};
|
|
385
|
+
upsells: ConfigUpsell;
|
|
385
386
|
}
|
|
386
387
|
export interface ConfigSettingsCheckoutOrderType {
|
|
387
388
|
address_company: string | null;
|
package/package.json
CHANGED