@orderingstack/ordering-types 1.7.3 → 1.8.1

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.
@@ -166,7 +166,9 @@ export declare enum EOrderType {
166
166
  BOLT_TAKE_AWAY = "BOLT_TAKE_AWAY",
167
167
  WOLT_DELIVERY = "WOLT_DELIVERY",
168
168
  WOLT_TAKE_AWAY = "WOLT_TAKE_AWAY",
169
- WOLT_DINE_IN = "WOLT_DINE_IN"
169
+ WOLT_DINE_IN = "WOLT_DINE_IN",
170
+ TAZZ_DELIVERY = "TAZZ_DELIVERY",
171
+ TAZZ_TAKE_AWAY = "TAZZ_TAKE_AWAY"
170
172
  }
171
173
  export interface IOrderDeliveryAddress {
172
174
  street: string;
@@ -386,7 +388,8 @@ export declare enum EOrderSource {
386
388
  PYSZNE = "PYSZNE",
387
389
  WOLT = "WOLT",
388
390
  UBER = "UBER",
389
- BOLT = "BOLT"
391
+ BOLT = "BOLT",
392
+ TAZZ = "TAZZ"
390
393
  }
391
394
  export interface IOrderProduct {
392
395
  id: string;
package/dist/cjs/index.js CHANGED
@@ -39,6 +39,7 @@ var EProductKindBucket;
39
39
  EProductKindBucket["GROUP"] = "group";
40
40
  EProductKindBucket["PRODUCT"] = "product";
41
41
  })(EProductKindBucket = exports.EProductKindBucket || (exports.EProductKindBucket = {}));
42
+ // Update EOrderSource upon adding EOrderType
42
43
  var EOrderType;
43
44
  (function (EOrderType) {
44
45
  EOrderType["TAKE_AWAY"] = "TAKE_AWAY";
@@ -57,6 +58,8 @@ var EOrderType;
57
58
  EOrderType["WOLT_DELIVERY"] = "WOLT_DELIVERY";
58
59
  EOrderType["WOLT_TAKE_AWAY"] = "WOLT_TAKE_AWAY";
59
60
  EOrderType["WOLT_DINE_IN"] = "WOLT_DINE_IN";
61
+ EOrderType["TAZZ_DELIVERY"] = "TAZZ_DELIVERY";
62
+ EOrderType["TAZZ_TAKE_AWAY"] = "TAZZ_TAKE_AWAY";
60
63
  })(EOrderType = exports.EOrderType || (exports.EOrderType = {}));
61
64
  var EOrderStatus;
62
65
  (function (EOrderStatus) {
@@ -93,6 +96,7 @@ var EOrderSource;
93
96
  EOrderSource["WOLT"] = "WOLT";
94
97
  EOrderSource["UBER"] = "UBER";
95
98
  EOrderSource["BOLT"] = "BOLT";
99
+ EOrderSource["TAZZ"] = "TAZZ";
96
100
  })(EOrderSource = exports.EOrderSource || (exports.EOrderSource = {}));
97
101
  var EOrderLineStatus;
98
102
  (function (EOrderLineStatus) {
@@ -166,7 +166,9 @@ export declare enum EOrderType {
166
166
  BOLT_TAKE_AWAY = "BOLT_TAKE_AWAY",
167
167
  WOLT_DELIVERY = "WOLT_DELIVERY",
168
168
  WOLT_TAKE_AWAY = "WOLT_TAKE_AWAY",
169
- WOLT_DINE_IN = "WOLT_DINE_IN"
169
+ WOLT_DINE_IN = "WOLT_DINE_IN",
170
+ TAZZ_DELIVERY = "TAZZ_DELIVERY",
171
+ TAZZ_TAKE_AWAY = "TAZZ_TAKE_AWAY"
170
172
  }
171
173
  export interface IOrderDeliveryAddress {
172
174
  street: string;
@@ -386,7 +388,8 @@ export declare enum EOrderSource {
386
388
  PYSZNE = "PYSZNE",
387
389
  WOLT = "WOLT",
388
390
  UBER = "UBER",
389
- BOLT = "BOLT"
391
+ BOLT = "BOLT",
392
+ TAZZ = "TAZZ"
390
393
  }
391
394
  export interface IOrderProduct {
392
395
  id: string;
package/dist/esm/index.js CHANGED
@@ -22,6 +22,7 @@ export var EProductKindBucket;
22
22
  EProductKindBucket["GROUP"] = "group";
23
23
  EProductKindBucket["PRODUCT"] = "product";
24
24
  })(EProductKindBucket || (EProductKindBucket = {}));
25
+ // Update EOrderSource upon adding EOrderType
25
26
  export var EOrderType;
26
27
  (function (EOrderType) {
27
28
  EOrderType["TAKE_AWAY"] = "TAKE_AWAY";
@@ -40,6 +41,8 @@ export var EOrderType;
40
41
  EOrderType["WOLT_DELIVERY"] = "WOLT_DELIVERY";
41
42
  EOrderType["WOLT_TAKE_AWAY"] = "WOLT_TAKE_AWAY";
42
43
  EOrderType["WOLT_DINE_IN"] = "WOLT_DINE_IN";
44
+ EOrderType["TAZZ_DELIVERY"] = "TAZZ_DELIVERY";
45
+ EOrderType["TAZZ_TAKE_AWAY"] = "TAZZ_TAKE_AWAY";
43
46
  })(EOrderType || (EOrderType = {}));
44
47
  export var EOrderStatus;
45
48
  (function (EOrderStatus) {
@@ -76,6 +79,7 @@ export var EOrderSource;
76
79
  EOrderSource["WOLT"] = "WOLT";
77
80
  EOrderSource["UBER"] = "UBER";
78
81
  EOrderSource["BOLT"] = "BOLT";
82
+ EOrderSource["TAZZ"] = "TAZZ";
79
83
  })(EOrderSource || (EOrderSource = {}));
80
84
  export var EOrderLineStatus;
81
85
  (function (EOrderLineStatus) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderingstack/ordering-types",
3
- "version": "1.7.3",
3
+ "version": "1.8.1",
4
4
  "description": "Typescript types for @orderingstack",
5
5
  "types": "dist/esm/index.d.ts",
6
6
  "main": "dist/cjs/index.js",