@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.21",
3
+ "version": "0.4.22",
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",