@open-tender/types 0.4.75 → 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.
@@ -155,6 +155,18 @@ export interface ConfigUpsell {
155
155
  show: boolean;
156
156
  };
157
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
+ }
158
170
  export interface ConfigContent {
159
171
  about: {
160
172
  background: string;
@@ -269,6 +281,7 @@ export interface ConfigContent {
269
281
  confirmation: ConfigContentField & {
270
282
  background: string;
271
283
  error: string;
284
+ sections: ConfirmationSections;
272
285
  };
273
286
  creditCards: ConfigContentField;
274
287
  deals: ConfigContentField;
@@ -155,6 +155,18 @@ export interface ConfigUpsell {
155
155
  show: boolean;
156
156
  };
157
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
+ }
158
170
  export interface ConfigContent {
159
171
  about: {
160
172
  background: string;
@@ -269,6 +281,7 @@ export interface ConfigContent {
269
281
  confirmation: ConfigContentField & {
270
282
  background: string;
271
283
  error: string;
284
+ sections: ConfirmationSections;
272
285
  };
273
286
  creditCards: ConfigContentField;
274
287
  deals: ConfigContentField;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-tender/types",
3
- "version": "0.4.75",
3
+ "version": "0.4.77",
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",