@orderingstack/ordering-types 0.1.7 → 0.1.8

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.
@@ -181,6 +181,13 @@ export interface OrderCoupon {
181
181
  coupon: string;
182
182
  addedAt: string;
183
183
  addedBy: string;
184
+ id: string;
185
+ data?: {
186
+ campaign?: string;
187
+ categoryId?: string;
188
+ enableKey?: string;
189
+ userId?: string;
190
+ };
184
191
  }
185
192
  export declare enum OrderStatus {
186
193
  NEW = "NEW",
@@ -181,6 +181,13 @@ export interface OrderCoupon {
181
181
  coupon: string;
182
182
  addedAt: string;
183
183
  addedBy: string;
184
+ id: string;
185
+ data?: {
186
+ campaign?: string;
187
+ categoryId?: string;
188
+ enableKey?: string;
189
+ userId?: string;
190
+ };
184
191
  }
185
192
  export declare enum OrderStatus {
186
193
  NEW = "NEW",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderingstack/ordering-types",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Typescript types for @orderingstack",
5
5
  "types": "dist/esm/index.d.ts",
6
6
  "main": "dist/cjs/index.js",