controlresell 2.8.7 → 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.
- package/package.json +4 -5
- package/src/com/controlresell/models/filters/SavedFilters.d.ts +5 -0
- package/src/com/controlresell/models/filters/SavedFilters.d.ts.map +1 -1
- package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts +5 -0
- package/src/com/controlresell/models/filters/SavedFiltersPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/Order.d.ts +23 -9
- package/src/com/controlresell/models/platforms/orders/Order.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +5 -5
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +183 -24
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +17 -7
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +153 -20
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
- package/src/com/controlresell/models/users/UpdateUserPayload.d.ts +5 -0
- package/src/com/controlresell/models/users/UpdateUserPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/User.d.ts +5 -0
- package/src/com/controlresell/models/users/User.d.ts.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.d.ts +3 -0
- package/src/com/controlresell/models/users/fields/FieldConfig.d.ts.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.js +2 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.js.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.ts +2 -1
- package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +5 -5
- package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +5 -5
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +248 -18
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "controlresell",
|
|
3
|
-
"version": "2.8.
|
|
4
|
-
"description": "Auto-generated zod project from Kotlin using guimauvedigital/zodable",
|
|
3
|
+
"version": "2.8.23",
|
|
5
4
|
"main": "src/index.js",
|
|
6
5
|
"scripts": {
|
|
7
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -9,7 +8,7 @@
|
|
|
9
8
|
"keywords": [],
|
|
10
9
|
"author": "",
|
|
11
10
|
"license": "ISC",
|
|
12
|
-
"
|
|
11
|
+
"description": "Auto-generated zod project from Kotlin using guimauvedigital/zodable",
|
|
13
12
|
"types": "src/index.d.ts",
|
|
14
13
|
"files": [
|
|
15
14
|
"src/**/*"
|
|
@@ -18,10 +17,10 @@
|
|
|
18
17
|
"typescript": "^5.9.3"
|
|
19
18
|
},
|
|
20
19
|
"dependencies": {
|
|
21
|
-
"controlresell-auth": "^0.0.
|
|
20
|
+
"controlresell-auth": "^0.0.12",
|
|
22
21
|
"controlresell-connector": "^0.7.18",
|
|
23
22
|
"controlresell-inbox": "^0.0.11",
|
|
24
|
-
"controlresell-inventory": "^0.0.
|
|
23
|
+
"controlresell-inventory": "^0.0.22",
|
|
25
24
|
"controlresell-storage": "^0.0.1",
|
|
26
25
|
"zod": "^3.25.76",
|
|
27
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
|
|
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
|
|
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
|
|
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"}
|
|
@@ -34,7 +34,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
34
34
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
35
35
|
name: z.ZodString;
|
|
36
36
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
37
|
+
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
|
|
38
38
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
39
39
|
startsAt: z.ZodDate;
|
|
40
40
|
endsAt: z.ZodDate;
|
|
@@ -49,7 +49,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
49
49
|
ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
50
50
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
52
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
53
53
|
userId: string | number;
|
|
54
54
|
name: string;
|
|
55
55
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -63,7 +63,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
63
63
|
ordersMaxDelay?: number | null | undefined;
|
|
64
64
|
conversationsMaxDelay?: number | null | undefined;
|
|
65
65
|
}, {
|
|
66
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
66
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
67
67
|
userId: string | number;
|
|
68
68
|
name: string;
|
|
69
69
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -79,7 +79,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
79
79
|
}>;
|
|
80
80
|
}, "strip", z.ZodTypeAny, {
|
|
81
81
|
account: {
|
|
82
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
82
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
83
83
|
userId: string | number;
|
|
84
84
|
name: string;
|
|
85
85
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -105,7 +105,7 @@ export declare const OrderOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
105
105
|
};
|
|
106
106
|
}, {
|
|
107
107
|
account: {
|
|
108
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
108
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
109
109
|
userId: string | number;
|
|
110
110
|
name: string;
|
|
111
111
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|