controlresell 2.7.6 → 2.7.7
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/package.json +3 -3
- package/src/com/controlresell/models/filters/SavedFilters.d.ts +10 -0
- package/src/com/controlresell/models/filters/SavedFilters.d.ts.map +1 -1
- package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts +10 -0
- package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/OrderFiltersContext.d.ts +2 -2
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +7 -0
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +5 -0
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "controlresell",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.7",
|
|
4
4
|
"description": "Auto-generated zod project from Kotlin using guimauvedigital/zodable",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"controlresell-auth": "^0.0.6",
|
|
22
22
|
"controlresell-connector": "^0.6.9",
|
|
23
|
-
"controlresell-inbox": "^0.0.
|
|
24
|
-
"controlresell-inventory": "^0.0.
|
|
23
|
+
"controlresell-inbox": "^0.0.6",
|
|
24
|
+
"controlresell-inventory": "^0.0.8",
|
|
25
25
|
"controlresell-storage": "^0.0.1",
|
|
26
26
|
"zod": "^3.25.76",
|
|
27
27
|
"zodable-idschema": "^1.0.0"
|
|
@@ -68,11 +68,14 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
68
68
|
readyToPublish: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
69
69
|
toBeSent: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
70
70
|
isDraft: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
71
|
+
accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
72
|
+
platforms: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["VINTED", "SHOPIFY"]>, "many">>>;
|
|
71
73
|
}, "strip", z.ZodTypeAny, {
|
|
72
74
|
sort?: "MOST_RECENT" | "OLDEST" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
73
75
|
isDraft?: boolean | null | undefined;
|
|
74
76
|
sex?: string[] | null | undefined;
|
|
75
77
|
sold?: boolean | null | undefined;
|
|
78
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
76
79
|
categoriesId?: number[] | null | undefined;
|
|
77
80
|
brandsId?: number[] | null | undefined;
|
|
78
81
|
sizesId?: number[] | null | undefined;
|
|
@@ -104,11 +107,13 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
104
107
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
105
108
|
readyToPublish?: boolean | null | undefined;
|
|
106
109
|
toBeSent?: boolean | null | undefined;
|
|
110
|
+
accountIds?: string[] | null | undefined;
|
|
107
111
|
}, {
|
|
108
112
|
sort?: "MOST_RECENT" | "OLDEST" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
109
113
|
isDraft?: boolean | null | undefined;
|
|
110
114
|
sex?: string[] | null | undefined;
|
|
111
115
|
sold?: boolean | null | undefined;
|
|
116
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
112
117
|
categoriesId?: number[] | null | undefined;
|
|
113
118
|
brandsId?: number[] | null | undefined;
|
|
114
119
|
sizesId?: number[] | null | undefined;
|
|
@@ -140,6 +145,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
140
145
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
141
146
|
readyToPublish?: boolean | null | undefined;
|
|
142
147
|
toBeSent?: boolean | null | undefined;
|
|
148
|
+
accountIds?: string[] | null | undefined;
|
|
143
149
|
}>>>;
|
|
144
150
|
platformFilters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
145
151
|
accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -162,6 +168,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
162
168
|
isDraft?: boolean | null | undefined;
|
|
163
169
|
sex?: string[] | null | undefined;
|
|
164
170
|
sold?: boolean | null | undefined;
|
|
171
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
165
172
|
categoriesId?: number[] | null | undefined;
|
|
166
173
|
brandsId?: number[] | null | undefined;
|
|
167
174
|
sizesId?: number[] | null | undefined;
|
|
@@ -193,6 +200,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
193
200
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
194
201
|
readyToPublish?: boolean | null | undefined;
|
|
195
202
|
toBeSent?: boolean | null | undefined;
|
|
203
|
+
accountIds?: string[] | null | undefined;
|
|
196
204
|
} | null | undefined;
|
|
197
205
|
platformFilters?: {
|
|
198
206
|
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
@@ -207,6 +215,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
207
215
|
isDraft?: boolean | null | undefined;
|
|
208
216
|
sex?: string[] | null | undefined;
|
|
209
217
|
sold?: boolean | null | undefined;
|
|
218
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
210
219
|
categoriesId?: number[] | null | undefined;
|
|
211
220
|
brandsId?: number[] | null | undefined;
|
|
212
221
|
sizesId?: number[] | null | undefined;
|
|
@@ -238,6 +247,7 @@ export declare const SavedFiltersSchema: z.ZodObject<{
|
|
|
238
247
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
239
248
|
readyToPublish?: boolean | null | undefined;
|
|
240
249
|
toBeSent?: boolean | null | undefined;
|
|
250
|
+
accountIds?: string[] | null | undefined;
|
|
241
251
|
} | null | undefined;
|
|
242
252
|
platformFilters?: {
|
|
243
253
|
platforms?: ("VINTED" | "SHOPIFY")[] | 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;AAKrB,eAAO,MAAM,kBAAkB
|
|
1
|
+
{"version":3,"file":"SavedFilters.d.ts","sourceRoot":"","sources":["SavedFilters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK7B,CAAA;AACF,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAA"}
|
|
@@ -66,11 +66,14 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
66
66
|
readyToPublish: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
67
67
|
toBeSent: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
68
68
|
isDraft: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
69
|
+
accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
70
|
+
platforms: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["VINTED", "SHOPIFY"]>, "many">>>;
|
|
69
71
|
}, "strip", z.ZodTypeAny, {
|
|
70
72
|
sort?: "MOST_RECENT" | "OLDEST" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
71
73
|
isDraft?: boolean | null | undefined;
|
|
72
74
|
sex?: string[] | null | undefined;
|
|
73
75
|
sold?: boolean | null | undefined;
|
|
76
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
74
77
|
categoriesId?: number[] | null | undefined;
|
|
75
78
|
brandsId?: number[] | null | undefined;
|
|
76
79
|
sizesId?: number[] | null | undefined;
|
|
@@ -102,11 +105,13 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
102
105
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
103
106
|
readyToPublish?: boolean | null | undefined;
|
|
104
107
|
toBeSent?: boolean | null | undefined;
|
|
108
|
+
accountIds?: string[] | null | undefined;
|
|
105
109
|
}, {
|
|
106
110
|
sort?: "MOST_RECENT" | "OLDEST" | "HIGHEST_PRICE" | "LOWEST_PRICE" | null | undefined;
|
|
107
111
|
isDraft?: boolean | null | undefined;
|
|
108
112
|
sex?: string[] | null | undefined;
|
|
109
113
|
sold?: boolean | null | undefined;
|
|
114
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
110
115
|
categoriesId?: number[] | null | undefined;
|
|
111
116
|
brandsId?: number[] | null | undefined;
|
|
112
117
|
sizesId?: number[] | null | undefined;
|
|
@@ -138,6 +143,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
138
143
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
139
144
|
readyToPublish?: boolean | null | undefined;
|
|
140
145
|
toBeSent?: boolean | null | undefined;
|
|
146
|
+
accountIds?: string[] | null | undefined;
|
|
141
147
|
}>>>;
|
|
142
148
|
platformFilters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
143
149
|
accountIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
@@ -158,6 +164,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
158
164
|
isDraft?: boolean | null | undefined;
|
|
159
165
|
sex?: string[] | null | undefined;
|
|
160
166
|
sold?: boolean | null | undefined;
|
|
167
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
161
168
|
categoriesId?: number[] | null | undefined;
|
|
162
169
|
brandsId?: number[] | null | undefined;
|
|
163
170
|
sizesId?: number[] | null | undefined;
|
|
@@ -189,6 +196,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
189
196
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
190
197
|
readyToPublish?: boolean | null | undefined;
|
|
191
198
|
toBeSent?: boolean | null | undefined;
|
|
199
|
+
accountIds?: string[] | null | undefined;
|
|
192
200
|
} | null | undefined;
|
|
193
201
|
platformFilters?: {
|
|
194
202
|
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
@@ -201,6 +209,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
201
209
|
isDraft?: boolean | null | undefined;
|
|
202
210
|
sex?: string[] | null | undefined;
|
|
203
211
|
sold?: boolean | null | undefined;
|
|
212
|
+
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
204
213
|
categoriesId?: number[] | null | undefined;
|
|
205
214
|
brandsId?: number[] | null | undefined;
|
|
206
215
|
sizesId?: number[] | null | undefined;
|
|
@@ -232,6 +241,7 @@ export declare const SavedFiltersPayloadSchema: z.ZodObject<{
|
|
|
232
241
|
lastHistoryType?: ("IMPORTED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "REPUBLISHED" | "UPDATING" | "UPDATED" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND")[] | null | undefined;
|
|
233
242
|
readyToPublish?: boolean | null | undefined;
|
|
234
243
|
toBeSent?: boolean | null | undefined;
|
|
244
|
+
accountIds?: string[] | null | undefined;
|
|
235
245
|
} | null | undefined;
|
|
236
246
|
platformFilters?: {
|
|
237
247
|
platforms?: ("VINTED" | "SHOPIFY")[] | 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;AAIrB,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"SavedFiltersPayload.d.ts","sourceRoot":"","sources":["SavedFiltersPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGpC,CAAA;AACF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAA"}
|
|
@@ -6,13 +6,13 @@ export declare const OrderFiltersContextSchema: z.ZodObject<{
|
|
|
6
6
|
types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<["PURCHASE", "SALE"]>, "many">>>;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
9
|
-
statuses?: ("PAYMENT_VALIDATED" | "ORDER_CANCELED" | "SHIPPING_LABEL_SENT_TO_SELLER" | "ORDER_SHIPPED" | "DELIVERED_TO_POST_OFFICE_OR_PICKUP_POINT" | "ORDER_RECEIVED" | "ORDER_FINALIZED" | "RETURN_INITIATED" | "REFUND_DONE" | "ORDER_CANCELED_ITEM_UNAVAILABLE" | "ORDER_CANCELED_BY_VINTED" | "ORDER_DISPUTE_STARTED" | "ORDER_CANCELED_DUE_TO_LATE_SHIPPING" | "SHIPPING_LABEL_ORDERED" | "UNKNOWN")[] | null | undefined;
|
|
10
9
|
accountIds?: string[] | null | undefined;
|
|
10
|
+
statuses?: ("PAYMENT_VALIDATED" | "ORDER_CANCELED" | "SHIPPING_LABEL_SENT_TO_SELLER" | "ORDER_SHIPPED" | "DELIVERED_TO_POST_OFFICE_OR_PICKUP_POINT" | "ORDER_RECEIVED" | "ORDER_FINALIZED" | "RETURN_INITIATED" | "REFUND_DONE" | "ORDER_CANCELED_ITEM_UNAVAILABLE" | "ORDER_CANCELED_BY_VINTED" | "ORDER_DISPUTE_STARTED" | "ORDER_CANCELED_DUE_TO_LATE_SHIPPING" | "SHIPPING_LABEL_ORDERED" | "UNKNOWN")[] | null | undefined;
|
|
11
11
|
types?: ("PURCHASE" | "SALE")[] | null | undefined;
|
|
12
12
|
}, {
|
|
13
13
|
platforms?: ("VINTED" | "SHOPIFY")[] | null | undefined;
|
|
14
|
-
statuses?: ("PAYMENT_VALIDATED" | "ORDER_CANCELED" | "SHIPPING_LABEL_SENT_TO_SELLER" | "ORDER_SHIPPED" | "DELIVERED_TO_POST_OFFICE_OR_PICKUP_POINT" | "ORDER_RECEIVED" | "ORDER_FINALIZED" | "RETURN_INITIATED" | "REFUND_DONE" | "ORDER_CANCELED_ITEM_UNAVAILABLE" | "ORDER_CANCELED_BY_VINTED" | "ORDER_DISPUTE_STARTED" | "ORDER_CANCELED_DUE_TO_LATE_SHIPPING" | "SHIPPING_LABEL_ORDERED" | "UNKNOWN")[] | null | undefined;
|
|
15
14
|
accountIds?: string[] | null | undefined;
|
|
15
|
+
statuses?: ("PAYMENT_VALIDATED" | "ORDER_CANCELED" | "SHIPPING_LABEL_SENT_TO_SELLER" | "ORDER_SHIPPED" | "DELIVERED_TO_POST_OFFICE_OR_PICKUP_POINT" | "ORDER_RECEIVED" | "ORDER_FINALIZED" | "RETURN_INITIATED" | "REFUND_DONE" | "ORDER_CANCELED_ITEM_UNAVAILABLE" | "ORDER_CANCELED_BY_VINTED" | "ORDER_DISPUTE_STARTED" | "ORDER_CANCELED_DUE_TO_LATE_SHIPPING" | "SHIPPING_LABEL_ORDERED" | "UNKNOWN")[] | null | undefined;
|
|
16
16
|
types?: ("PURCHASE" | "SALE")[] | null | undefined;
|
|
17
17
|
}>;
|
|
18
18
|
export type OrderFiltersContext = z.infer<typeof OrderFiltersContextSchema>;
|
|
@@ -586,6 +586,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
586
586
|
purchaseDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
587
587
|
purchasePlaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
588
588
|
sold: z.ZodBoolean;
|
|
589
|
+
purchased: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
589
590
|
sellingPrice: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
590
591
|
sellingDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
591
592
|
sellingPlaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
@@ -1116,6 +1117,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1116
1117
|
purchasePrice?: number | null | undefined;
|
|
1117
1118
|
purchaseDate?: Date | null | undefined;
|
|
1118
1119
|
purchasePlaceId?: string | number | null | undefined;
|
|
1120
|
+
purchased?: boolean | null | undefined;
|
|
1119
1121
|
sellingPrice?: number | null | undefined;
|
|
1120
1122
|
sellingDate?: Date | null | undefined;
|
|
1121
1123
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1265,6 +1267,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1265
1267
|
purchasePrice?: number | null | undefined;
|
|
1266
1268
|
purchaseDate?: Date | null | undefined;
|
|
1267
1269
|
purchasePlaceId?: string | number | null | undefined;
|
|
1270
|
+
purchased?: boolean | null | undefined;
|
|
1268
1271
|
sellingPrice?: number | null | undefined;
|
|
1269
1272
|
sellingDate?: Date | null | undefined;
|
|
1270
1273
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1416,6 +1419,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1416
1419
|
purchasePrice?: number | null | undefined;
|
|
1417
1420
|
purchaseDate?: Date | null | undefined;
|
|
1418
1421
|
purchasePlaceId?: string | number | null | undefined;
|
|
1422
|
+
purchased?: boolean | null | undefined;
|
|
1419
1423
|
sellingPrice?: number | null | undefined;
|
|
1420
1424
|
sellingDate?: Date | null | undefined;
|
|
1421
1425
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1652,6 +1656,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1652
1656
|
purchasePrice?: number | null | undefined;
|
|
1653
1657
|
purchaseDate?: Date | null | undefined;
|
|
1654
1658
|
purchasePlaceId?: string | number | null | undefined;
|
|
1659
|
+
purchased?: boolean | null | undefined;
|
|
1655
1660
|
sellingPrice?: number | null | undefined;
|
|
1656
1661
|
sellingDate?: Date | null | undefined;
|
|
1657
1662
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1893,6 +1898,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1893
1898
|
purchasePrice?: number | null | undefined;
|
|
1894
1899
|
purchaseDate?: Date | null | undefined;
|
|
1895
1900
|
purchasePlaceId?: string | number | null | undefined;
|
|
1901
|
+
purchased?: boolean | null | undefined;
|
|
1896
1902
|
sellingPrice?: number | null | undefined;
|
|
1897
1903
|
sellingDate?: Date | null | undefined;
|
|
1898
1904
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -2135,6 +2141,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2135
2141
|
purchasePrice?: number | null | undefined;
|
|
2136
2142
|
purchaseDate?: Date | null | undefined;
|
|
2137
2143
|
purchasePlaceId?: string | number | null | undefined;
|
|
2144
|
+
purchased?: boolean | null | undefined;
|
|
2138
2145
|
sellingPrice?: number | null | undefined;
|
|
2139
2146
|
sellingDate?: Date | null | undefined;
|
|
2140
2147
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UserOrders.d.ts","sourceRoot":"","sources":["UserOrders.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"UserOrders.d.ts","sourceRoot":"","sources":["UserOrders.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAA;AACF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
|
|
@@ -583,6 +583,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
583
583
|
purchaseDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
584
584
|
purchasePlaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
585
585
|
sold: z.ZodBoolean;
|
|
586
|
+
purchased: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
586
587
|
sellingPrice: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
587
588
|
sellingDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
588
589
|
sellingPlaceId: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodNumber, z.ZodString]>>>;
|
|
@@ -1113,6 +1114,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1113
1114
|
purchasePrice?: number | null | undefined;
|
|
1114
1115
|
purchaseDate?: Date | null | undefined;
|
|
1115
1116
|
purchasePlaceId?: string | number | null | undefined;
|
|
1117
|
+
purchased?: boolean | null | undefined;
|
|
1116
1118
|
sellingPrice?: number | null | undefined;
|
|
1117
1119
|
sellingDate?: Date | null | undefined;
|
|
1118
1120
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1262,6 +1264,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1262
1264
|
purchasePrice?: number | null | undefined;
|
|
1263
1265
|
purchaseDate?: Date | null | undefined;
|
|
1264
1266
|
purchasePlaceId?: string | number | null | undefined;
|
|
1267
|
+
purchased?: boolean | null | undefined;
|
|
1265
1268
|
sellingPrice?: number | null | undefined;
|
|
1266
1269
|
sellingDate?: Date | null | undefined;
|
|
1267
1270
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1413,6 +1416,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1413
1416
|
purchasePrice?: number | null | undefined;
|
|
1414
1417
|
purchaseDate?: Date | null | undefined;
|
|
1415
1418
|
purchasePlaceId?: string | number | null | undefined;
|
|
1419
|
+
purchased?: boolean | null | undefined;
|
|
1416
1420
|
sellingPrice?: number | null | undefined;
|
|
1417
1421
|
sellingDate?: Date | null | undefined;
|
|
1418
1422
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1649,6 +1653,7 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
1649
1653
|
purchasePrice?: number | null | undefined;
|
|
1650
1654
|
purchaseDate?: Date | null | undefined;
|
|
1651
1655
|
purchasePlaceId?: string | number | null | undefined;
|
|
1656
|
+
purchased?: boolean | null | undefined;
|
|
1652
1657
|
sellingPrice?: number | null | undefined;
|
|
1653
1658
|
sellingDate?: Date | null | undefined;
|
|
1654
1659
|
sellingPlaceId?: string | number | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrderWithItems.d.ts","sourceRoot":"","sources":["OrderWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"OrderWithItems.d.ts","sourceRoot":"","sources":["OrderWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG/B,CAAA;AACF,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAA"}
|