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.
- package/package.json +3 -3
- 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/UserOrders.d.ts +176 -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 +148 -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 -5
- package/src/com/controlresell/models/users/User.d.ts +5 -5
- package/src/com/controlresell/models/users/fields/FieldConfig.d.ts +3 -3
- package/src/com/controlresell/models/users/fields/FieldConfig.js +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.js.map +1 -1
- package/src/com/controlresell/models/users/fields/FieldConfig.ts +1 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +238 -18
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
|
@@ -33,7 +33,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
33
33
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
34
34
|
name: z.ZodString;
|
|
35
35
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
36
|
+
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
|
|
37
37
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
38
38
|
startsAt: z.ZodDate;
|
|
39
39
|
endsAt: z.ZodDate;
|
|
@@ -48,7 +48,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
48
48
|
ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
49
49
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
50
50
|
}, "strip", z.ZodTypeAny, {
|
|
51
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
51
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
52
52
|
userId: string | number;
|
|
53
53
|
name: string;
|
|
54
54
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -62,7 +62,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
62
62
|
ordersMaxDelay?: number | null | undefined;
|
|
63
63
|
conversationsMaxDelay?: number | null | undefined;
|
|
64
64
|
}, {
|
|
65
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
65
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
66
66
|
userId: string | number;
|
|
67
67
|
name: string;
|
|
68
68
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -77,6 +77,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
77
77
|
conversationsMaxDelay?: number | null | undefined;
|
|
78
78
|
}>>>;
|
|
79
79
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
80
|
+
viewsCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
81
|
+
favoritesCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
80
82
|
}, "strip", z.ZodTypeAny, {
|
|
81
83
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
82
84
|
id: string;
|
|
@@ -90,7 +92,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
90
92
|
publishedAt: Date;
|
|
91
93
|
conversationId?: string | null | undefined;
|
|
92
94
|
account?: {
|
|
93
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
95
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
94
96
|
userId: string | number;
|
|
95
97
|
name: string;
|
|
96
98
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -104,6 +106,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
104
106
|
ordersMaxDelay?: number | null | undefined;
|
|
105
107
|
conversationsMaxDelay?: number | null | undefined;
|
|
106
108
|
} | null | undefined;
|
|
109
|
+
viewsCount?: number | null | undefined;
|
|
110
|
+
favoritesCount?: number | null | undefined;
|
|
107
111
|
}, {
|
|
108
112
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
109
113
|
id: string;
|
|
@@ -117,7 +121,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
117
121
|
publishedAt: Date;
|
|
118
122
|
conversationId?: string | null | undefined;
|
|
119
123
|
account?: {
|
|
120
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
124
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
121
125
|
userId: string | number;
|
|
122
126
|
name: string;
|
|
123
127
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -131,6 +135,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
131
135
|
ordersMaxDelay?: number | null | undefined;
|
|
132
136
|
conversationsMaxDelay?: number | null | undefined;
|
|
133
137
|
} | null | undefined;
|
|
138
|
+
viewsCount?: number | null | undefined;
|
|
139
|
+
favoritesCount?: number | null | undefined;
|
|
134
140
|
}>>>;
|
|
135
141
|
}, "strip", z.ZodTypeAny, {
|
|
136
142
|
orderId: string;
|
|
@@ -148,7 +154,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
148
154
|
publishedAt: Date;
|
|
149
155
|
conversationId?: string | null | undefined;
|
|
150
156
|
account?: {
|
|
151
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
157
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
152
158
|
userId: string | number;
|
|
153
159
|
name: string;
|
|
154
160
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -162,6 +168,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
162
168
|
ordersMaxDelay?: number | null | undefined;
|
|
163
169
|
conversationsMaxDelay?: number | null | undefined;
|
|
164
170
|
} | null | undefined;
|
|
171
|
+
viewsCount?: number | null | undefined;
|
|
172
|
+
favoritesCount?: number | null | undefined;
|
|
165
173
|
} | null | undefined;
|
|
166
174
|
}, {
|
|
167
175
|
orderId: string;
|
|
@@ -179,7 +187,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
179
187
|
publishedAt: Date;
|
|
180
188
|
conversationId?: string | null | undefined;
|
|
181
189
|
account?: {
|
|
182
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
190
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
183
191
|
userId: string | number;
|
|
184
192
|
name: string;
|
|
185
193
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -193,6 +201,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
193
201
|
ordersMaxDelay?: number | null | undefined;
|
|
194
202
|
conversationsMaxDelay?: number | null | undefined;
|
|
195
203
|
} | null | undefined;
|
|
204
|
+
viewsCount?: number | null | undefined;
|
|
205
|
+
favoritesCount?: number | null | undefined;
|
|
196
206
|
} | null | undefined;
|
|
197
207
|
}>, "many">>>;
|
|
198
208
|
labels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -422,7 +432,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
422
432
|
publishedAt: Date;
|
|
423
433
|
conversationId?: string | null | undefined;
|
|
424
434
|
account?: {
|
|
425
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
435
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
426
436
|
userId: string | number;
|
|
427
437
|
name: string;
|
|
428
438
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -436,6 +446,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
436
446
|
ordersMaxDelay?: number | null | undefined;
|
|
437
447
|
conversationsMaxDelay?: number | null | undefined;
|
|
438
448
|
} | null | undefined;
|
|
449
|
+
viewsCount?: number | null | undefined;
|
|
450
|
+
favoritesCount?: number | null | undefined;
|
|
439
451
|
} | null | undefined;
|
|
440
452
|
}[] | null | undefined;
|
|
441
453
|
conversationId?: string | null | undefined;
|
|
@@ -513,7 +525,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
513
525
|
publishedAt: Date;
|
|
514
526
|
conversationId?: string | null | undefined;
|
|
515
527
|
account?: {
|
|
516
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
528
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
517
529
|
userId: string | number;
|
|
518
530
|
name: string;
|
|
519
531
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -527,6 +539,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
527
539
|
ordersMaxDelay?: number | null | undefined;
|
|
528
540
|
conversationsMaxDelay?: number | null | undefined;
|
|
529
541
|
} | null | undefined;
|
|
542
|
+
viewsCount?: number | null | undefined;
|
|
543
|
+
favoritesCount?: number | null | undefined;
|
|
530
544
|
} | null | undefined;
|
|
531
545
|
}[] | null | undefined;
|
|
532
546
|
conversationId?: string | null | undefined;
|
|
@@ -1041,12 +1055,45 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1041
1055
|
data: z.ZodObject<{
|
|
1042
1056
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
1043
1057
|
publishingDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1058
|
+
priceDropPayload: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1059
|
+
type: z.ZodEnum<["PERCENTAGE", "ABSOLUTE"]>;
|
|
1060
|
+
value: z.ZodNumber;
|
|
1061
|
+
roundType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NEAREST", "UP", "DOWN", "CUSTOM"]>>>;
|
|
1062
|
+
roundStep: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1063
|
+
maxRounds: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1064
|
+
}, "strip", z.ZodTypeAny, {
|
|
1065
|
+
value: number;
|
|
1066
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1067
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1068
|
+
roundStep?: number | null | undefined;
|
|
1069
|
+
maxRounds?: number | null | undefined;
|
|
1070
|
+
}, {
|
|
1071
|
+
value: number;
|
|
1072
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1073
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1074
|
+
roundStep?: number | null | undefined;
|
|
1075
|
+
maxRounds?: number | null | undefined;
|
|
1076
|
+
}>>>;
|
|
1044
1077
|
}, "strip", z.ZodTypeAny, {
|
|
1045
1078
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1046
1079
|
publishingDate?: Date | null | undefined;
|
|
1080
|
+
priceDropPayload?: {
|
|
1081
|
+
value: number;
|
|
1082
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1083
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1084
|
+
roundStep?: number | null | undefined;
|
|
1085
|
+
maxRounds?: number | null | undefined;
|
|
1086
|
+
} | null | undefined;
|
|
1047
1087
|
}, {
|
|
1048
1088
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1049
1089
|
publishingDate?: Date | null | undefined;
|
|
1090
|
+
priceDropPayload?: {
|
|
1091
|
+
value: number;
|
|
1092
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1093
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1094
|
+
roundStep?: number | null | undefined;
|
|
1095
|
+
maxRounds?: number | null | undefined;
|
|
1096
|
+
} | null | undefined;
|
|
1050
1097
|
}>;
|
|
1051
1098
|
type: z.ZodLiteral<"REPUBLISHING">;
|
|
1052
1099
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1054,12 +1101,26 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1054
1101
|
data: {
|
|
1055
1102
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1056
1103
|
publishingDate?: Date | null | undefined;
|
|
1104
|
+
priceDropPayload?: {
|
|
1105
|
+
value: number;
|
|
1106
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1107
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1108
|
+
roundStep?: number | null | undefined;
|
|
1109
|
+
maxRounds?: number | null | undefined;
|
|
1110
|
+
} | null | undefined;
|
|
1057
1111
|
};
|
|
1058
1112
|
}, {
|
|
1059
1113
|
type: "REPUBLISHING";
|
|
1060
1114
|
data: {
|
|
1061
1115
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1062
1116
|
publishingDate?: Date | null | undefined;
|
|
1117
|
+
priceDropPayload?: {
|
|
1118
|
+
value: number;
|
|
1119
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1120
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1121
|
+
roundStep?: number | null | undefined;
|
|
1122
|
+
maxRounds?: number | null | undefined;
|
|
1123
|
+
} | null | undefined;
|
|
1063
1124
|
};
|
|
1064
1125
|
}>, z.ZodObject<{
|
|
1065
1126
|
data: z.ZodObject<{
|
|
@@ -1089,6 +1150,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1089
1150
|
createdAt: z.ZodDate;
|
|
1090
1151
|
targetDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
1091
1152
|
accountId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1153
|
+
requestId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1092
1154
|
}, "strip", z.ZodTypeAny, {
|
|
1093
1155
|
type: "IMPORTED" | "ARCHIVED" | "UNARCHIVED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "IMAGE_PROCESSING_DONE" | "REPUBLISHED" | "REPUBLISH_CANCELED" | "UPDATING" | "UPDATED" | "UPDATE_CANCELED" | "CANCELED" | "DISPUTE" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND" | "LIFECYCLE_STARTED" | "LIFECYCLE_COMPLETED" | "LIFECYCLE_CANCELED";
|
|
1094
1156
|
id: string;
|
|
@@ -1152,6 +1214,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1152
1214
|
data: {
|
|
1153
1215
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1154
1216
|
publishingDate?: Date | null | undefined;
|
|
1217
|
+
priceDropPayload?: {
|
|
1218
|
+
value: number;
|
|
1219
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1220
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1221
|
+
roundStep?: number | null | undefined;
|
|
1222
|
+
maxRounds?: number | null | undefined;
|
|
1223
|
+
} | null | undefined;
|
|
1155
1224
|
};
|
|
1156
1225
|
} | {
|
|
1157
1226
|
type: "SCHEDULED";
|
|
@@ -1162,6 +1231,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1162
1231
|
} | null | undefined;
|
|
1163
1232
|
accountId?: string | null | undefined;
|
|
1164
1233
|
targetDate?: Date | null | undefined;
|
|
1234
|
+
requestId?: string | null | undefined;
|
|
1165
1235
|
}, {
|
|
1166
1236
|
type: "IMPORTED" | "ARCHIVED" | "UNARCHIVED" | "PUBLISHED" | "FAILED_TO_PUBLISH" | "PUBLISH_CANCELED" | "SCHEDULED" | "REPUBLISHING" | "IMAGE_PROCESSING_DONE" | "REPUBLISHED" | "REPUBLISH_CANCELED" | "UPDATING" | "UPDATED" | "UPDATE_CANCELED" | "CANCELED" | "DISPUTE" | "DELETED" | "TO_BE_SENT" | "IN_TRANSIT" | "BUYER_PAID" | "DELIVERED" | "RECEIVED" | "FINALIZED" | "RETURN" | "REFUND" | "LIFECYCLE_STARTED" | "LIFECYCLE_COMPLETED" | "LIFECYCLE_CANCELED";
|
|
1167
1237
|
id: string;
|
|
@@ -1225,6 +1295,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1225
1295
|
data: {
|
|
1226
1296
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1227
1297
|
publishingDate?: Date | null | undefined;
|
|
1298
|
+
priceDropPayload?: {
|
|
1299
|
+
value: number;
|
|
1300
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1301
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1302
|
+
roundStep?: number | null | undefined;
|
|
1303
|
+
maxRounds?: number | null | undefined;
|
|
1304
|
+
} | null | undefined;
|
|
1228
1305
|
};
|
|
1229
1306
|
} | {
|
|
1230
1307
|
type: "SCHEDULED";
|
|
@@ -1235,6 +1312,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1235
1312
|
} | null | undefined;
|
|
1236
1313
|
accountId?: string | null | undefined;
|
|
1237
1314
|
targetDate?: Date | null | undefined;
|
|
1315
|
+
requestId?: string | null | undefined;
|
|
1238
1316
|
}>>>;
|
|
1239
1317
|
platforms: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1240
1318
|
id: z.ZodString;
|
|
@@ -1253,7 +1331,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1253
1331
|
platform: z.ZodEnum<["ETSY", "SHOPIFY", "VINTED"]>;
|
|
1254
1332
|
name: z.ZodString;
|
|
1255
1333
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1256
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
1334
|
+
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR", "LOCKED"]>;
|
|
1257
1335
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1258
1336
|
startsAt: z.ZodDate;
|
|
1259
1337
|
endsAt: z.ZodDate;
|
|
@@ -1268,7 +1346,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1268
1346
|
ordersMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1269
1347
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1270
1348
|
}, "strip", z.ZodTypeAny, {
|
|
1271
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
1349
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1272
1350
|
userId: string | number;
|
|
1273
1351
|
name: string;
|
|
1274
1352
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1282,7 +1360,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1282
1360
|
ordersMaxDelay?: number | null | undefined;
|
|
1283
1361
|
conversationsMaxDelay?: number | null | undefined;
|
|
1284
1362
|
}, {
|
|
1285
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
1363
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1286
1364
|
userId: string | number;
|
|
1287
1365
|
name: string;
|
|
1288
1366
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1297,6 +1375,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1297
1375
|
conversationsMaxDelay?: number | null | undefined;
|
|
1298
1376
|
}>>>;
|
|
1299
1377
|
conversationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1378
|
+
viewsCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1379
|
+
favoritesCount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1300
1380
|
}, "strip", z.ZodTypeAny, {
|
|
1301
1381
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
1302
1382
|
id: string;
|
|
@@ -1310,7 +1390,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1310
1390
|
publishedAt: Date;
|
|
1311
1391
|
conversationId?: string | null | undefined;
|
|
1312
1392
|
account?: {
|
|
1313
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
1393
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1314
1394
|
userId: string | number;
|
|
1315
1395
|
name: string;
|
|
1316
1396
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1324,6 +1404,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1324
1404
|
ordersMaxDelay?: number | null | undefined;
|
|
1325
1405
|
conversationsMaxDelay?: number | null | undefined;
|
|
1326
1406
|
} | null | undefined;
|
|
1407
|
+
viewsCount?: number | null | undefined;
|
|
1408
|
+
favoritesCount?: number | null | undefined;
|
|
1327
1409
|
}, {
|
|
1328
1410
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
1329
1411
|
id: string;
|
|
@@ -1337,7 +1419,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1337
1419
|
publishedAt: Date;
|
|
1338
1420
|
conversationId?: string | null | undefined;
|
|
1339
1421
|
account?: {
|
|
1340
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
1422
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1341
1423
|
userId: string | number;
|
|
1342
1424
|
name: string;
|
|
1343
1425
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1351,6 +1433,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1351
1433
|
ordersMaxDelay?: number | null | undefined;
|
|
1352
1434
|
conversationsMaxDelay?: number | null | undefined;
|
|
1353
1435
|
} | null | undefined;
|
|
1436
|
+
viewsCount?: number | null | undefined;
|
|
1437
|
+
favoritesCount?: number | null | undefined;
|
|
1354
1438
|
}>, "many">>>;
|
|
1355
1439
|
createdAt: z.ZodDate;
|
|
1356
1440
|
updatedAt: z.ZodDate;
|
|
@@ -1506,6 +1590,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1506
1590
|
data: {
|
|
1507
1591
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1508
1592
|
publishingDate?: Date | null | undefined;
|
|
1593
|
+
priceDropPayload?: {
|
|
1594
|
+
value: number;
|
|
1595
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1596
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1597
|
+
roundStep?: number | null | undefined;
|
|
1598
|
+
maxRounds?: number | null | undefined;
|
|
1599
|
+
} | null | undefined;
|
|
1509
1600
|
};
|
|
1510
1601
|
} | {
|
|
1511
1602
|
type: "SCHEDULED";
|
|
@@ -1516,6 +1607,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1516
1607
|
} | null | undefined;
|
|
1517
1608
|
accountId?: string | null | undefined;
|
|
1518
1609
|
targetDate?: Date | null | undefined;
|
|
1610
|
+
requestId?: string | null | undefined;
|
|
1519
1611
|
} | null | undefined;
|
|
1520
1612
|
platforms?: {
|
|
1521
1613
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
@@ -1530,7 +1622,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1530
1622
|
publishedAt: Date;
|
|
1531
1623
|
conversationId?: string | null | undefined;
|
|
1532
1624
|
account?: {
|
|
1533
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
1625
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1534
1626
|
userId: string | number;
|
|
1535
1627
|
name: string;
|
|
1536
1628
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1544,6 +1636,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1544
1636
|
ordersMaxDelay?: number | null | undefined;
|
|
1545
1637
|
conversationsMaxDelay?: number | null | undefined;
|
|
1546
1638
|
} | null | undefined;
|
|
1639
|
+
viewsCount?: number | null | undefined;
|
|
1640
|
+
favoritesCount?: number | null | undefined;
|
|
1547
1641
|
}[] | null | undefined;
|
|
1548
1642
|
}, {
|
|
1549
1643
|
id: string | number;
|
|
@@ -1697,6 +1791,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1697
1791
|
data: {
|
|
1698
1792
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1699
1793
|
publishingDate?: Date | null | undefined;
|
|
1794
|
+
priceDropPayload?: {
|
|
1795
|
+
value: number;
|
|
1796
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
1797
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
1798
|
+
roundStep?: number | null | undefined;
|
|
1799
|
+
maxRounds?: number | null | undefined;
|
|
1800
|
+
} | null | undefined;
|
|
1700
1801
|
};
|
|
1701
1802
|
} | {
|
|
1702
1803
|
type: "SCHEDULED";
|
|
@@ -1707,6 +1808,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1707
1808
|
} | null | undefined;
|
|
1708
1809
|
accountId?: string | null | undefined;
|
|
1709
1810
|
targetDate?: Date | null | undefined;
|
|
1811
|
+
requestId?: string | null | undefined;
|
|
1710
1812
|
} | null | undefined;
|
|
1711
1813
|
platforms?: {
|
|
1712
1814
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
@@ -1721,7 +1823,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1721
1823
|
publishedAt: Date;
|
|
1722
1824
|
conversationId?: string | null | undefined;
|
|
1723
1825
|
account?: {
|
|
1724
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
1826
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1725
1827
|
userId: string | number;
|
|
1726
1828
|
name: string;
|
|
1727
1829
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1735,6 +1837,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1735
1837
|
ordersMaxDelay?: number | null | undefined;
|
|
1736
1838
|
conversationsMaxDelay?: number | null | undefined;
|
|
1737
1839
|
} | null | undefined;
|
|
1840
|
+
viewsCount?: number | null | undefined;
|
|
1841
|
+
favoritesCount?: number | null | undefined;
|
|
1738
1842
|
}[] | null | undefined;
|
|
1739
1843
|
}>, "many">;
|
|
1740
1844
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1890,6 +1994,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1890
1994
|
data: {
|
|
1891
1995
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
1892
1996
|
publishingDate?: Date | null | undefined;
|
|
1997
|
+
priceDropPayload?: {
|
|
1998
|
+
value: number;
|
|
1999
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
2000
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
2001
|
+
roundStep?: number | null | undefined;
|
|
2002
|
+
maxRounds?: number | null | undefined;
|
|
2003
|
+
} | null | undefined;
|
|
1893
2004
|
};
|
|
1894
2005
|
} | {
|
|
1895
2006
|
type: "SCHEDULED";
|
|
@@ -1900,6 +2011,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1900
2011
|
} | null | undefined;
|
|
1901
2012
|
accountId?: string | null | undefined;
|
|
1902
2013
|
targetDate?: Date | null | undefined;
|
|
2014
|
+
requestId?: string | null | undefined;
|
|
1903
2015
|
} | null | undefined;
|
|
1904
2016
|
platforms?: {
|
|
1905
2017
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
@@ -1914,7 +2026,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1914
2026
|
publishedAt: Date;
|
|
1915
2027
|
conversationId?: string | null | undefined;
|
|
1916
2028
|
account?: {
|
|
1917
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2029
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1918
2030
|
userId: string | number;
|
|
1919
2031
|
name: string;
|
|
1920
2032
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1928,6 +2040,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1928
2040
|
ordersMaxDelay?: number | null | undefined;
|
|
1929
2041
|
conversationsMaxDelay?: number | null | undefined;
|
|
1930
2042
|
} | null | undefined;
|
|
2043
|
+
viewsCount?: number | null | undefined;
|
|
2044
|
+
favoritesCount?: number | null | undefined;
|
|
1931
2045
|
}[] | null | undefined;
|
|
1932
2046
|
}[];
|
|
1933
2047
|
order: {
|
|
@@ -1954,7 +2068,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1954
2068
|
publishedAt: Date;
|
|
1955
2069
|
conversationId?: string | null | undefined;
|
|
1956
2070
|
account?: {
|
|
1957
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2071
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
1958
2072
|
userId: string | number;
|
|
1959
2073
|
name: string;
|
|
1960
2074
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -1968,6 +2082,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
1968
2082
|
ordersMaxDelay?: number | null | undefined;
|
|
1969
2083
|
conversationsMaxDelay?: number | null | undefined;
|
|
1970
2084
|
} | null | undefined;
|
|
2085
|
+
viewsCount?: number | null | undefined;
|
|
2086
|
+
favoritesCount?: number | null | undefined;
|
|
1971
2087
|
} | null | undefined;
|
|
1972
2088
|
}[] | null | undefined;
|
|
1973
2089
|
conversationId?: string | null | undefined;
|
|
@@ -2175,6 +2291,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2175
2291
|
data: {
|
|
2176
2292
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2177
2293
|
publishingDate?: Date | null | undefined;
|
|
2294
|
+
priceDropPayload?: {
|
|
2295
|
+
value: number;
|
|
2296
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
2297
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
2298
|
+
roundStep?: number | null | undefined;
|
|
2299
|
+
maxRounds?: number | null | undefined;
|
|
2300
|
+
} | null | undefined;
|
|
2178
2301
|
};
|
|
2179
2302
|
} | {
|
|
2180
2303
|
type: "SCHEDULED";
|
|
@@ -2185,6 +2308,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2185
2308
|
} | null | undefined;
|
|
2186
2309
|
accountId?: string | null | undefined;
|
|
2187
2310
|
targetDate?: Date | null | undefined;
|
|
2311
|
+
requestId?: string | null | undefined;
|
|
2188
2312
|
} | null | undefined;
|
|
2189
2313
|
platforms?: {
|
|
2190
2314
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
@@ -2199,7 +2323,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2199
2323
|
publishedAt: Date;
|
|
2200
2324
|
conversationId?: string | null | undefined;
|
|
2201
2325
|
account?: {
|
|
2202
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2326
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2203
2327
|
userId: string | number;
|
|
2204
2328
|
name: string;
|
|
2205
2329
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -2213,6 +2337,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2213
2337
|
ordersMaxDelay?: number | null | undefined;
|
|
2214
2338
|
conversationsMaxDelay?: number | null | undefined;
|
|
2215
2339
|
} | null | undefined;
|
|
2340
|
+
viewsCount?: number | null | undefined;
|
|
2341
|
+
favoritesCount?: number | null | undefined;
|
|
2216
2342
|
}[] | null | undefined;
|
|
2217
2343
|
}[];
|
|
2218
2344
|
order: {
|
|
@@ -2239,7 +2365,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2239
2365
|
publishedAt: Date;
|
|
2240
2366
|
conversationId?: string | null | undefined;
|
|
2241
2367
|
account?: {
|
|
2242
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2368
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2243
2369
|
userId: string | number;
|
|
2244
2370
|
name: string;
|
|
2245
2371
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -2253,6 +2379,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2253
2379
|
ordersMaxDelay?: number | null | undefined;
|
|
2254
2380
|
conversationsMaxDelay?: number | null | undefined;
|
|
2255
2381
|
} | null | undefined;
|
|
2382
|
+
viewsCount?: number | null | undefined;
|
|
2383
|
+
favoritesCount?: number | null | undefined;
|
|
2256
2384
|
} | null | undefined;
|
|
2257
2385
|
}[] | null | undefined;
|
|
2258
2386
|
conversationId?: string | null | undefined;
|
|
@@ -2465,6 +2593,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2465
2593
|
data: {
|
|
2466
2594
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2467
2595
|
publishingDate?: Date | null | undefined;
|
|
2596
|
+
priceDropPayload?: {
|
|
2597
|
+
value: number;
|
|
2598
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
2599
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
2600
|
+
roundStep?: number | null | undefined;
|
|
2601
|
+
maxRounds?: number | null | undefined;
|
|
2602
|
+
} | null | undefined;
|
|
2468
2603
|
};
|
|
2469
2604
|
} | {
|
|
2470
2605
|
type: "SCHEDULED";
|
|
@@ -2475,6 +2610,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2475
2610
|
} | null | undefined;
|
|
2476
2611
|
accountId?: string | null | undefined;
|
|
2477
2612
|
targetDate?: Date | null | undefined;
|
|
2613
|
+
requestId?: string | null | undefined;
|
|
2478
2614
|
} | null | undefined;
|
|
2479
2615
|
platforms?: {
|
|
2480
2616
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
@@ -2489,7 +2625,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2489
2625
|
publishedAt: Date;
|
|
2490
2626
|
conversationId?: string | null | undefined;
|
|
2491
2627
|
account?: {
|
|
2492
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2628
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2493
2629
|
userId: string | number;
|
|
2494
2630
|
name: string;
|
|
2495
2631
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -2503,6 +2639,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2503
2639
|
ordersMaxDelay?: number | null | undefined;
|
|
2504
2640
|
conversationsMaxDelay?: number | null | undefined;
|
|
2505
2641
|
} | null | undefined;
|
|
2642
|
+
viewsCount?: number | null | undefined;
|
|
2643
|
+
favoritesCount?: number | null | undefined;
|
|
2506
2644
|
}[] | null | undefined;
|
|
2507
2645
|
}[];
|
|
2508
2646
|
order: {
|
|
@@ -2529,7 +2667,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2529
2667
|
publishedAt: Date;
|
|
2530
2668
|
conversationId?: string | null | undefined;
|
|
2531
2669
|
account?: {
|
|
2532
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2670
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2533
2671
|
userId: string | number;
|
|
2534
2672
|
name: string;
|
|
2535
2673
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -2543,6 +2681,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2543
2681
|
ordersMaxDelay?: number | null | undefined;
|
|
2544
2682
|
conversationsMaxDelay?: number | null | undefined;
|
|
2545
2683
|
} | null | undefined;
|
|
2684
|
+
viewsCount?: number | null | undefined;
|
|
2685
|
+
favoritesCount?: number | null | undefined;
|
|
2546
2686
|
} | null | undefined;
|
|
2547
2687
|
}[] | null | undefined;
|
|
2548
2688
|
conversationId?: string | null | undefined;
|
|
@@ -2756,6 +2896,13 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2756
2896
|
data: {
|
|
2757
2897
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2758
2898
|
publishingDate?: Date | null | undefined;
|
|
2899
|
+
priceDropPayload?: {
|
|
2900
|
+
value: number;
|
|
2901
|
+
type: "PERCENTAGE" | "ABSOLUTE";
|
|
2902
|
+
roundType?: "NEAREST" | "UP" | "DOWN" | "CUSTOM" | null | undefined;
|
|
2903
|
+
roundStep?: number | null | undefined;
|
|
2904
|
+
maxRounds?: number | null | undefined;
|
|
2905
|
+
} | null | undefined;
|
|
2759
2906
|
};
|
|
2760
2907
|
} | {
|
|
2761
2908
|
type: "SCHEDULED";
|
|
@@ -2766,6 +2913,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2766
2913
|
} | null | undefined;
|
|
2767
2914
|
accountId?: string | null | undefined;
|
|
2768
2915
|
targetDate?: Date | null | undefined;
|
|
2916
|
+
requestId?: string | null | undefined;
|
|
2769
2917
|
} | null | undefined;
|
|
2770
2918
|
platforms?: {
|
|
2771
2919
|
status: "ARCHIVED" | "DISPUTE" | "DELETED" | "DRAFT" | "PENDING" | "ERROR" | "ONLINE" | "SOLD" | "SOLD_ELSEWHERE" | "HIDDEN";
|
|
@@ -2780,7 +2928,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2780
2928
|
publishedAt: Date;
|
|
2781
2929
|
conversationId?: string | null | undefined;
|
|
2782
2930
|
account?: {
|
|
2783
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2931
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2784
2932
|
userId: string | number;
|
|
2785
2933
|
name: string;
|
|
2786
2934
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -2794,6 +2942,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2794
2942
|
ordersMaxDelay?: number | null | undefined;
|
|
2795
2943
|
conversationsMaxDelay?: number | null | undefined;
|
|
2796
2944
|
} | null | undefined;
|
|
2945
|
+
viewsCount?: number | null | undefined;
|
|
2946
|
+
favoritesCount?: number | null | undefined;
|
|
2797
2947
|
}[] | null | undefined;
|
|
2798
2948
|
}[];
|
|
2799
2949
|
order: {
|
|
@@ -2820,7 +2970,7 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2820
2970
|
publishedAt: Date;
|
|
2821
2971
|
conversationId?: string | null | undefined;
|
|
2822
2972
|
account?: {
|
|
2823
|
-
status: "CONNECTED" | "DISCONNECTED" | "ERROR";
|
|
2973
|
+
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2824
2974
|
userId: string | number;
|
|
2825
2975
|
name: string;
|
|
2826
2976
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
@@ -2834,6 +2984,8 @@ export declare const UserOrdersSchema: z.ZodObject<{
|
|
|
2834
2984
|
ordersMaxDelay?: number | null | undefined;
|
|
2835
2985
|
conversationsMaxDelay?: number | null | undefined;
|
|
2836
2986
|
} | null | undefined;
|
|
2987
|
+
viewsCount?: number | null | undefined;
|
|
2988
|
+
favoritesCount?: number | null | undefined;
|
|
2837
2989
|
} | null | undefined;
|
|
2838
2990
|
}[] | null | undefined;
|
|
2839
2991
|
conversationId?: string | 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"}
|