controlresell 2.8.22 → 2.8.23

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.
Files changed (21) hide show
  1. package/package.json +3 -3
  2. package/src/com/controlresell/models/filters/SavedFilters.d.ts +5 -0
  3. package/src/com/controlresell/models/filters/SavedFilters.d.ts.map +1 -1
  4. package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts +5 -0
  5. package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts.map +1 -1
  6. package/src/com/controlresell/models/platforms/orders/Order.d.ts +23 -9
  7. package/src/com/controlresell/models/platforms/orders/Order.d.ts.map +1 -1
  8. package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +176 -24
  9. package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts.map +1 -1
  10. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +17 -7
  11. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts.map +1 -1
  12. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +148 -20
  13. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
  14. package/src/com/controlresell/models/users/UpdateUserPayload.d.ts +5 -5
  15. package/src/com/controlresell/models/users/User.d.ts +5 -5
  16. package/src/com/controlresell/models/users/fields/FieldConfig.d.ts +3 -3
  17. package/src/com/controlresell/models/users/fields/FieldConfig.js +1 -1
  18. package/src/com/controlresell/models/users/fields/FieldConfig.js.map +1 -1
  19. package/src/com/controlresell/models/users/fields/FieldConfig.ts +1 -1
  20. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +238 -18
  21. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "controlresell",
3
- "version": "2.8.22",
3
+ "version": "2.8.23",
4
4
  "main": "src/index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -17,10 +17,10 @@
17
17
  "typescript": "^5.9.3"
18
18
  },
19
19
  "dependencies": {
20
- "controlresell-auth": "^0.0.11",
20
+ "controlresell-auth": "^0.0.12",
21
21
  "controlresell-connector": "^0.7.18",
22
22
  "controlresell-inbox": "^0.0.11",
23
- "controlresell-inventory": "^0.0.21",
23
+ "controlresell-inventory": "^0.0.22",
24
24
  "controlresell-storage": "^0.0.1",
25
25
  "zod": "^3.25.76",
26
26
  "zodable-idschema": "^1.0.0"
@@ -72,9 +72,11 @@ export declare const SavedFiltersSchema: z.ZodObject<{
72
72
  hasLifecycleStarted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
73
73
  accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
74
74
  platforms: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>, "many">>>;
75
+ transactionType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["SINGLE_ITEM", "BUNDLE"]>>>;
75
76
  }, "strip", z.ZodTypeAny, {
76
77
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
77
78
  isDraft?: boolean | null | undefined;
79
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
78
80
  sex?: string[] | null | undefined;
79
81
  sold?: boolean | null | undefined;
80
82
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -115,6 +117,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
115
117
  }, {
116
118
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
117
119
  isDraft?: boolean | null | undefined;
120
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
118
121
  sex?: string[] | null | undefined;
119
122
  sold?: boolean | null | undefined;
120
123
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -159,6 +162,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
159
162
  itemFilters?: {
160
163
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
161
164
  isDraft?: boolean | null | undefined;
165
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
162
166
  sex?: string[] | null | undefined;
163
167
  sold?: boolean | null | undefined;
164
168
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -203,6 +207,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
203
207
  itemFilters?: {
204
208
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
205
209
  isDraft?: boolean | null | undefined;
210
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
206
211
  sex?: string[] | null | undefined;
207
212
  sold?: boolean | null | undefined;
208
213
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"SavedFilters.d.ts","sourceRoot":"","sources":["SavedFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI7B,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA"}
1
+ {"version":3,"file":"SavedFilters.d.ts","sourceRoot":"","sources":["SavedFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI7B,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA"}
@@ -70,9 +70,11 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
70
70
  hasLifecycleStarted: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
71
71
  accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
72
72
  platforms: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>, "many">>>;
73
+ transactionType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["SINGLE_ITEM", "BUNDLE"]>>>;
73
74
  }, "strip", z.ZodTypeAny, {
74
75
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
75
76
  isDraft?: boolean | null | undefined;
77
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
76
78
  sex?: string[] | null | undefined;
77
79
  sold?: boolean | null | undefined;
78
80
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -113,6 +115,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
113
115
  }, {
114
116
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
115
117
  isDraft?: boolean | null | undefined;
118
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
116
119
  sex?: string[] | null | undefined;
117
120
  sold?: boolean | null | undefined;
118
121
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -155,6 +158,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
155
158
  itemFilters?: {
156
159
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
157
160
  isDraft?: boolean | null | undefined;
161
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
158
162
  sex?: string[] | null | undefined;
159
163
  sold?: boolean | null | undefined;
160
164
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -197,6 +201,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
197
201
  itemFilters?: {
198
202
  sort?: "MOST_RECENT" | "MOST_RECENT_PUBLISH" | "OLDEST" | "OLDEST_PUBLISH" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
199
203
  isDraft?: boolean | null | undefined;
204
+ transactionType?: "SINGLE_ITEM" | "BUNDLE" | null | undefined;
200
205
  sex?: string[] | null | undefined;
201
206
  sold?: boolean | null | undefined;
202
207
  platforms?: ("ETSY" | "SHOPIFY" | "VINTED")[] | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"SavedFiltersPayload.d.ts","sourceRoot":"","sources":["SavedFiltersPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA"}
1
+ {"version":3,"file":"SavedFiltersPayload.d.ts","sourceRoot":"","sources":["SavedFiltersPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEpC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA"}
@@ -29,7 +29,7 @@ export declare const OrderSchema: z.ZodObject<{
29
29
  platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
30
30
  name: z.ZodString;
31
31
  locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32
- status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
32
+ status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
33
33
  night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
34
34
  startsAt: z.ZodDate;
35
35
  endsAt: z.ZodDate;
@@ -44,7 +44,7 @@ export declare const OrderSchema: z.ZodObject<{
44
44
  ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
45
45
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
46
46
  }, "strip", z.ZodTypeAny, {
47
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
47
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
48
48
  userId: string | number;
49
49
  name: string;
50
50
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -58,7 +58,7 @@ export declare const OrderSchema: z.ZodObject<{
58
58
  ordersMaxDelay?: number | null | undefined;
59
59
  conversationsMaxDelay?: number | null | undefined;
60
60
  }, {
61
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
61
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
62
62
  userId: string | number;
63
63
  name: string;
64
64
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -73,6 +73,8 @@ export declare const OrderSchema: z.ZodObject<{
73
73
  conversationsMaxDelay?: number | null | undefined;
74
74
  }>>>;
75
75
  conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
76
+ viewsCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
77
+ favoritesCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
76
78
  }, "strip", z.ZodTypeAny, {
77
79
  status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
78
80
  id: string;
@@ -86,7 +88,7 @@ export declare const OrderSchema: z.ZodObject<{
86
88
  publishedAt: Date;
87
89
  conversationId?: string | null | undefined;
88
90
  account?: {
89
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
91
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
90
92
  userId: string | number;
91
93
  name: string;
92
94
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -100,6 +102,8 @@ export declare const OrderSchema: z.ZodObject<{
100
102
  ordersMaxDelay?: number | null | undefined;
101
103
  conversationsMaxDelay?: number | null | undefined;
102
104
  } | null | undefined;
105
+ viewsCount?: number | null | undefined;
106
+ favoritesCount?: number | null | undefined;
103
107
  }, {
104
108
  status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
105
109
  id: string;
@@ -113,7 +117,7 @@ export declare const OrderSchema: z.ZodObject<{
113
117
  publishedAt: Date;
114
118
  conversationId?: string | null | undefined;
115
119
  account?: {
116
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
120
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
117
121
  userId: string | number;
118
122
  name: string;
119
123
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -127,6 +131,8 @@ export declare const OrderSchema: z.ZodObject<{
127
131
  ordersMaxDelay?: number | null | undefined;
128
132
  conversationsMaxDelay?: number | null | undefined;
129
133
  } | null | undefined;
134
+ viewsCount?: number | null | undefined;
135
+ favoritesCount?: number | null | undefined;
130
136
  }>>>;
131
137
  }, "strip", z.ZodTypeAny, {
132
138
  orderId: string;
@@ -144,7 +150,7 @@ export declare const OrderSchema: z.ZodObject<{
144
150
  publishedAt: Date;
145
151
  conversationId?: string | null | undefined;
146
152
  account?: {
147
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
153
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
148
154
  userId: string | number;
149
155
  name: string;
150
156
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -158,6 +164,8 @@ export declare const OrderSchema: z.ZodObject<{
158
164
  ordersMaxDelay?: number | null | undefined;
159
165
  conversationsMaxDelay?: number | null | undefined;
160
166
  } | null | undefined;
167
+ viewsCount?: number | null | undefined;
168
+ favoritesCount?: number | null | undefined;
161
169
  } | null | undefined;
162
170
  }, {
163
171
  orderId: string;
@@ -175,7 +183,7 @@ export declare const OrderSchema: z.ZodObject<{
175
183
  publishedAt: Date;
176
184
  conversationId?: string | null | undefined;
177
185
  account?: {
178
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
186
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
179
187
  userId: string | number;
180
188
  name: string;
181
189
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -189,6 +197,8 @@ export declare const OrderSchema: z.ZodObject<{
189
197
  ordersMaxDelay?: number | null | undefined;
190
198
  conversationsMaxDelay?: number | null | undefined;
191
199
  } | null | undefined;
200
+ viewsCount?: number | null | undefined;
201
+ favoritesCount?: number | null | undefined;
192
202
  } | null | undefined;
193
203
  }>, "many">>>;
194
204
  labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -418,7 +428,7 @@ export declare const OrderSchema: z.ZodObject<{
418
428
  publishedAt: Date;
419
429
  conversationId?: string | null | undefined;
420
430
  account?: {
421
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
431
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
422
432
  userId: string | number;
423
433
  name: string;
424
434
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -432,6 +442,8 @@ export declare const OrderSchema: z.ZodObject<{
432
442
  ordersMaxDelay?: number | null | undefined;
433
443
  conversationsMaxDelay?: number | null | undefined;
434
444
  } | null | undefined;
445
+ viewsCount?: number | null | undefined;
446
+ favoritesCount?: number | null | undefined;
435
447
  } | null | undefined;
436
448
  }[] | null | undefined;
437
449
  conversationId?: string | null | undefined;
@@ -509,7 +521,7 @@ export declare const OrderSchema: z.ZodObject<{
509
521
  publishedAt: Date;
510
522
  conversationId?: string | null | undefined;
511
523
  account?: {
512
- status: "CONNECTED" | "DISCONNECTED" | "ERROR";
524
+ status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
513
525
  userId: string | number;
514
526
  name: string;
515
527
  platform: "ETSY" | "SHOPIFY" | "VINTED";
@@ -523,6 +535,8 @@ export declare const OrderSchema: z.ZodObject<{
523
535
  ordersMaxDelay?: number | null | undefined;
524
536
  conversationsMaxDelay?: number | null | undefined;
525
537
  } | null | undefined;
538
+ viewsCount?: number | null | undefined;
539
+ favoritesCount?: number | null | undefined;
526
540
  } | null | undefined;
527
541
  }[] | null | undefined;
528
542
  conversationId?: string | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAOrB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAatB,CAAA;AACF,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA"}
1
+ {"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAOrB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAatB,CAAA;AACF,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAA"}