controlresell 2.20.19 → 2.22.1
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 +1 -1
- package/src/com/controlresell/api/responses/items/ItemsWithFilters.d.ts +9 -9
- package/src/com/controlresell/api/responses/items/ListedItem.d.ts +7 -7
- package/src/com/controlresell/models/conversations/Conversation.d.ts +5 -5
- package/src/com/controlresell/models/conversations/ConversationOnPlatformUpdateRequest.d.ts +5 -5
- package/src/com/controlresell/models/conversations/ConversationUpdate.d.ts +7 -7
- package/src/com/controlresell/models/conversations/UserConversations.d.ts +7 -7
- package/src/com/controlresell/models/conversations/favorites/ConversationFavorite.d.ts +5 -5
- package/src/com/controlresell/models/conversations/favorites/ReportRateLimitOnFavorites.d.ts +7 -7
- package/src/com/controlresell/models/conversations/favorites/SubmitFavoritesResponse.d.ts +7 -7
- package/src/com/controlresell/models/filters/PreferenceFilter.d.ts +5 -5
- package/src/com/controlresell/models/items/CreatedItems.d.ts +18 -18
- package/src/com/controlresell/models/items/Item.d.ts +7 -7
- package/src/com/controlresell/models/items/ItemUpdate.d.ts +9 -9
- package/src/com/controlresell/models/items/UpdatedItem.d.ts +18 -18
- package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts +5 -5
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +5 -5
- package/src/com/controlresell/models/metadata/platforms/BatchUpsertPlatformEnumsPayload.d.ts +18 -0
- package/src/com/controlresell/models/metadata/platforms/BatchUpsertPlatformEnumsPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/metadata/platforms/BatchUpsertPlatformEnumsPayload.js +3 -1
- package/src/com/controlresell/models/metadata/platforms/BatchUpsertPlatformEnumsPayload.js.map +1 -1
- package/src/com/controlresell/models/metadata/platforms/BatchUpsertPlatformEnumsPayload.ts +3 -1
- package/src/com/controlresell/models/metadata/platforms/ItemListingPreview.d.ts +9 -9
- package/src/com/controlresell/models/metadata/platforms/PlatformEnumTypePayload.d.ts +13 -0
- package/src/com/controlresell/models/metadata/platforms/PlatformEnumTypePayload.d.ts.map +1 -0
- package/src/com/controlresell/models/metadata/platforms/PlatformEnumTypePayload.js +6 -0
- package/src/com/controlresell/models/metadata/platforms/PlatformEnumTypePayload.js.map +1 -0
- package/src/com/controlresell/models/metadata/platforms/PlatformEnumTypePayload.ts +7 -0
- package/src/com/controlresell/models/platforms/orders/Order.d.ts +9 -9
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +5 -5
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +24 -24
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +7 -7
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +20 -20
- package/src/com/controlresell/models/transactions/Transaction.d.ts +9 -9
- package/src/com/controlresell/models/transactions/items/ItemInTransaction.d.ts +7 -7
- package/src/com/controlresell/models/transactions/items/TransactionWithItems.d.ts +20 -20
- 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/platforms/UpdateUserOnPlatformPayload.d.ts +3 -3
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts +3 -3
- package/src/com/controlresell/models/users/platforms/UserOnPlatformStatus.d.ts +1 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatformStatus.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatformStatus.js +2 -2
- package/src/com/controlresell/models/users/platforms/UserOnPlatformStatus.js.map +1 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatformStatus.ts +2 -2
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +32 -32
- package/src/index.d.ts +1 -0
- package/src/index.d.ts.map +1 -1
- package/src/index.js +1 -0
- package/src/index.js.map +1 -1
- package/src/index.ts +1 -0
package/package.json
CHANGED
|
@@ -2285,7 +2285,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2285
2285
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
2286
2286
|
name: z.ZodString;
|
|
2287
2287
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2288
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
2288
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
2289
2289
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2290
2290
|
startsAt: z.ZodDate;
|
|
2291
2291
|
endsAt: z.ZodDate;
|
|
@@ -2327,7 +2327,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2327
2327
|
}>>>;
|
|
2328
2328
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
2329
2329
|
}, "strip", z.ZodTypeAny, {
|
|
2330
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2330
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
2331
2331
|
name: string;
|
|
2332
2332
|
userId: number;
|
|
2333
2333
|
accountId: string;
|
|
@@ -2354,11 +2354,11 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2354
2354
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
2355
2355
|
} | null | undefined;
|
|
2356
2356
|
}, {
|
|
2357
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2358
2357
|
name: string;
|
|
2359
2358
|
userId: number;
|
|
2360
2359
|
accountId: string;
|
|
2361
2360
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
2361
|
+
status?: unknown;
|
|
2362
2362
|
locale?: string | null | undefined;
|
|
2363
2363
|
lockReason?: unknown;
|
|
2364
2364
|
night?: {
|
|
@@ -2399,7 +2399,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2399
2399
|
viewsCount?: number | null | undefined;
|
|
2400
2400
|
favoritesCount?: number | null | undefined;
|
|
2401
2401
|
account?: {
|
|
2402
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2402
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
2403
2403
|
name: string;
|
|
2404
2404
|
userId: number;
|
|
2405
2405
|
accountId: string;
|
|
@@ -2441,11 +2441,11 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
2441
2441
|
viewsCount?: number | null | undefined;
|
|
2442
2442
|
favoritesCount?: number | null | undefined;
|
|
2443
2443
|
account?: {
|
|
2444
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2445
2444
|
name: string;
|
|
2446
2445
|
userId: number;
|
|
2447
2446
|
accountId: string;
|
|
2448
2447
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
2448
|
+
status?: unknown;
|
|
2449
2449
|
locale?: string | null | undefined;
|
|
2450
2450
|
lockReason?: unknown;
|
|
2451
2451
|
night?: {
|
|
@@ -3275,7 +3275,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
3275
3275
|
viewsCount?: number | null | undefined;
|
|
3276
3276
|
favoritesCount?: number | null | undefined;
|
|
3277
3277
|
account?: {
|
|
3278
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
3278
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
3279
3279
|
name: string;
|
|
3280
3280
|
userId: number;
|
|
3281
3281
|
accountId: string;
|
|
@@ -3775,11 +3775,11 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
3775
3775
|
viewsCount?: number | null | undefined;
|
|
3776
3776
|
favoritesCount?: number | null | undefined;
|
|
3777
3777
|
account?: {
|
|
3778
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
3779
3778
|
name: string;
|
|
3780
3779
|
userId: number;
|
|
3781
3780
|
accountId: string;
|
|
3782
3781
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
3782
|
+
status?: unknown;
|
|
3783
3783
|
locale?: string | null | undefined;
|
|
3784
3784
|
lockReason?: unknown;
|
|
3785
3785
|
night?: {
|
|
@@ -4280,7 +4280,7 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
4280
4280
|
viewsCount?: number | null | undefined;
|
|
4281
4281
|
favoritesCount?: number | null | undefined;
|
|
4282
4282
|
account?: {
|
|
4283
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
4283
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
4284
4284
|
name: string;
|
|
4285
4285
|
userId: number;
|
|
4286
4286
|
accountId: string;
|
|
@@ -4786,11 +4786,11 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
|
|
|
4786
4786
|
viewsCount?: number | null | undefined;
|
|
4787
4787
|
favoritesCount?: number | null | undefined;
|
|
4788
4788
|
account?: {
|
|
4789
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
4790
4789
|
name: string;
|
|
4791
4790
|
userId: number;
|
|
4792
4791
|
accountId: string;
|
|
4793
4792
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
4793
|
+
status?: unknown;
|
|
4794
4794
|
locale?: string | null | undefined;
|
|
4795
4795
|
lockReason?: unknown;
|
|
4796
4796
|
night?: {
|
|
@@ -2282,7 +2282,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
2282
2282
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
2283
2283
|
name: z.ZodString;
|
|
2284
2284
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2285
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
2285
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
2286
2286
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2287
2287
|
startsAt: z.ZodDate;
|
|
2288
2288
|
endsAt: z.ZodDate;
|
|
@@ -2324,7 +2324,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
2324
2324
|
}>>>;
|
|
2325
2325
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
2326
2326
|
}, "strip", z.ZodTypeAny, {
|
|
2327
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2327
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
2328
2328
|
name: string;
|
|
2329
2329
|
userId: number;
|
|
2330
2330
|
accountId: string;
|
|
@@ -2351,11 +2351,11 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
2351
2351
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
2352
2352
|
} | null | undefined;
|
|
2353
2353
|
}, {
|
|
2354
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2355
2354
|
name: string;
|
|
2356
2355
|
userId: number;
|
|
2357
2356
|
accountId: string;
|
|
2358
2357
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
2358
|
+
status?: unknown;
|
|
2359
2359
|
locale?: string | null | undefined;
|
|
2360
2360
|
lockReason?: unknown;
|
|
2361
2361
|
night?: {
|
|
@@ -2396,7 +2396,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
2396
2396
|
viewsCount?: number | null | undefined;
|
|
2397
2397
|
favoritesCount?: number | null | undefined;
|
|
2398
2398
|
account?: {
|
|
2399
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2399
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
2400
2400
|
name: string;
|
|
2401
2401
|
userId: number;
|
|
2402
2402
|
accountId: string;
|
|
@@ -2438,11 +2438,11 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
2438
2438
|
viewsCount?: number | null | undefined;
|
|
2439
2439
|
favoritesCount?: number | null | undefined;
|
|
2440
2440
|
account?: {
|
|
2441
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
2442
2441
|
name: string;
|
|
2443
2442
|
userId: number;
|
|
2444
2443
|
accountId: string;
|
|
2445
2444
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
2445
|
+
status?: unknown;
|
|
2446
2446
|
locale?: string | null | undefined;
|
|
2447
2447
|
lockReason?: unknown;
|
|
2448
2448
|
night?: {
|
|
@@ -3272,7 +3272,7 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
3272
3272
|
viewsCount?: number | null | undefined;
|
|
3273
3273
|
favoritesCount?: number | null | undefined;
|
|
3274
3274
|
account?: {
|
|
3275
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
3275
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
3276
3276
|
name: string;
|
|
3277
3277
|
userId: number;
|
|
3278
3278
|
accountId: string;
|
|
@@ -3772,11 +3772,11 @@ export declare const ListedItemSchema: z.ZodObject<{
|
|
|
3772
3772
|
viewsCount?: number | null | undefined;
|
|
3773
3773
|
favoritesCount?: number | null | undefined;
|
|
3774
3774
|
account?: {
|
|
3775
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
3776
3775
|
name: string;
|
|
3777
3776
|
userId: number;
|
|
3778
3777
|
accountId: string;
|
|
3779
3778
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
3779
|
+
status?: unknown;
|
|
3780
3780
|
locale?: string | null | undefined;
|
|
3781
3781
|
lockReason?: unknown;
|
|
3782
3782
|
night?: {
|
|
@@ -11,7 +11,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
11
11
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
12
12
|
name: z.ZodString;
|
|
13
13
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
14
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
15
15
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16
16
|
startsAt: z.ZodDate;
|
|
17
17
|
endsAt: z.ZodDate;
|
|
@@ -53,7 +53,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
53
53
|
}>>>;
|
|
54
54
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
56
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
57
57
|
name: string;
|
|
58
58
|
userId: number;
|
|
59
59
|
accountId: string;
|
|
@@ -80,11 +80,11 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
80
80
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
81
81
|
} | null | undefined;
|
|
82
82
|
}, {
|
|
83
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
84
83
|
name: string;
|
|
85
84
|
userId: number;
|
|
86
85
|
accountId: string;
|
|
87
86
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
87
|
+
status?: unknown;
|
|
88
88
|
locale?: string | null | undefined;
|
|
89
89
|
lockReason?: unknown;
|
|
90
90
|
night?: {
|
|
@@ -445,7 +445,7 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
445
445
|
billingCountryCode?: string | null | undefined;
|
|
446
446
|
}[] | null | undefined;
|
|
447
447
|
account?: {
|
|
448
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
448
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
449
449
|
name: string;
|
|
450
450
|
userId: number;
|
|
451
451
|
accountId: string;
|
|
@@ -554,11 +554,11 @@ export declare const ConversationSchema: z.ZodObject<{
|
|
|
554
554
|
billingCountryCode?: string | null | undefined;
|
|
555
555
|
}[] | null | undefined;
|
|
556
556
|
account?: {
|
|
557
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
558
557
|
name: string;
|
|
559
558
|
userId: number;
|
|
560
559
|
accountId: string;
|
|
561
560
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
561
|
+
status?: unknown;
|
|
562
562
|
locale?: string | null | undefined;
|
|
563
563
|
lockReason?: unknown;
|
|
564
564
|
night?: {
|
|
@@ -748,7 +748,7 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
748
748
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
749
749
|
name: z.ZodString;
|
|
750
750
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
751
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
751
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
752
752
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
753
753
|
startsAt: z.ZodDate;
|
|
754
754
|
endsAt: z.ZodDate;
|
|
@@ -790,7 +790,7 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
790
790
|
}>>>;
|
|
791
791
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
792
792
|
}, "strip", z.ZodTypeAny, {
|
|
793
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
793
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
794
794
|
name: string;
|
|
795
795
|
userId: number;
|
|
796
796
|
accountId: string;
|
|
@@ -817,11 +817,11 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
817
817
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
818
818
|
} | null | undefined;
|
|
819
819
|
}, {
|
|
820
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
821
820
|
name: string;
|
|
822
821
|
userId: number;
|
|
823
822
|
accountId: string;
|
|
824
823
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
824
|
+
status?: unknown;
|
|
825
825
|
locale?: string | null | undefined;
|
|
826
826
|
lockReason?: unknown;
|
|
827
827
|
night?: {
|
|
@@ -978,7 +978,7 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
978
978
|
}[] | null | undefined;
|
|
979
979
|
};
|
|
980
980
|
account: {
|
|
981
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
981
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
982
982
|
name: string;
|
|
983
983
|
userId: number;
|
|
984
984
|
accountId: string;
|
|
@@ -1139,11 +1139,11 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
|
|
|
1139
1139
|
}[] | null | undefined;
|
|
1140
1140
|
};
|
|
1141
1141
|
account: {
|
|
1142
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
1143
1142
|
name: string;
|
|
1144
1143
|
userId: number;
|
|
1145
1144
|
accountId: string;
|
|
1146
1145
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
1146
|
+
status?: unknown;
|
|
1147
1147
|
locale?: string | null | undefined;
|
|
1148
1148
|
lockReason?: unknown;
|
|
1149
1149
|
night?: {
|
|
@@ -13,7 +13,7 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
13
13
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
14
14
|
name: z.ZodString;
|
|
15
15
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
16
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
17
17
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
18
18
|
startsAt: z.ZodDate;
|
|
19
19
|
endsAt: z.ZodDate;
|
|
@@ -55,7 +55,7 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
55
55
|
}>>>;
|
|
56
56
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
58
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
59
59
|
name: string;
|
|
60
60
|
userId: number;
|
|
61
61
|
accountId: string;
|
|
@@ -82,11 +82,11 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
82
82
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
83
83
|
} | null | undefined;
|
|
84
84
|
}, {
|
|
85
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
86
85
|
name: string;
|
|
87
86
|
userId: number;
|
|
88
87
|
accountId: string;
|
|
89
88
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
89
|
+
status?: unknown;
|
|
90
90
|
locale?: string | null | undefined;
|
|
91
91
|
lockReason?: unknown;
|
|
92
92
|
night?: {
|
|
@@ -447,7 +447,7 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
447
447
|
billingCountryCode?: string | null | undefined;
|
|
448
448
|
}[] | null | undefined;
|
|
449
449
|
account?: {
|
|
450
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
450
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
451
451
|
name: string;
|
|
452
452
|
userId: number;
|
|
453
453
|
accountId: string;
|
|
@@ -556,11 +556,11 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
556
556
|
billingCountryCode?: string | null | undefined;
|
|
557
557
|
}[] | null | undefined;
|
|
558
558
|
account?: {
|
|
559
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
560
559
|
name: string;
|
|
561
560
|
userId: number;
|
|
562
561
|
accountId: string;
|
|
563
562
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
563
|
+
status?: unknown;
|
|
564
564
|
locale?: string | null | undefined;
|
|
565
565
|
lockReason?: unknown;
|
|
566
566
|
night?: {
|
|
@@ -884,7 +884,7 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
884
884
|
billingCountryCode?: string | null | undefined;
|
|
885
885
|
}[] | null | undefined;
|
|
886
886
|
account?: {
|
|
887
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
887
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
888
888
|
name: string;
|
|
889
889
|
userId: number;
|
|
890
890
|
accountId: string;
|
|
@@ -1044,11 +1044,11 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
|
|
|
1044
1044
|
billingCountryCode?: string | null | undefined;
|
|
1045
1045
|
}[] | null | undefined;
|
|
1046
1046
|
account?: {
|
|
1047
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
1048
1047
|
name: string;
|
|
1049
1048
|
userId: number;
|
|
1050
1049
|
accountId: string;
|
|
1051
1050
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
1051
|
+
status?: unknown;
|
|
1052
1052
|
locale?: string | null | undefined;
|
|
1053
1053
|
lockReason?: unknown;
|
|
1054
1054
|
night?: {
|
|
@@ -24,7 +24,7 @@ export declare const UserConversationsSchema: z.ZodObject<{
|
|
|
24
24
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
25
25
|
name: z.ZodString;
|
|
26
26
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
27
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
28
28
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
29
29
|
startsAt: z.ZodDate;
|
|
30
30
|
endsAt: z.ZodDate;
|
|
@@ -66,7 +66,7 @@ export declare const UserConversationsSchema: z.ZodObject<{
|
|
|
66
66
|
}>>>;
|
|
67
67
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
69
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
70
70
|
name: string;
|
|
71
71
|
userId: number;
|
|
72
72
|
accountId: string;
|
|
@@ -93,11 +93,11 @@ export declare const UserConversationsSchema: z.ZodObject<{
|
|
|
93
93
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
94
94
|
} | null | undefined;
|
|
95
95
|
}, {
|
|
96
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
97
96
|
name: string;
|
|
98
97
|
userId: number;
|
|
99
98
|
accountId: string;
|
|
100
99
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
100
|
+
status?: unknown;
|
|
101
101
|
locale?: string | null | undefined;
|
|
102
102
|
lockReason?: unknown;
|
|
103
103
|
night?: {
|
|
@@ -458,7 +458,7 @@ export declare const UserConversationsSchema: z.ZodObject<{
|
|
|
458
458
|
billingCountryCode?: string | null | undefined;
|
|
459
459
|
}[] | null | undefined;
|
|
460
460
|
account?: {
|
|
461
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
461
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
462
462
|
name: string;
|
|
463
463
|
userId: number;
|
|
464
464
|
accountId: string;
|
|
@@ -567,11 +567,11 @@ export declare const UserConversationsSchema: z.ZodObject<{
|
|
|
567
567
|
billingCountryCode?: string | null | undefined;
|
|
568
568
|
}[] | null | undefined;
|
|
569
569
|
account?: {
|
|
570
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
571
570
|
name: string;
|
|
572
571
|
userId: number;
|
|
573
572
|
accountId: string;
|
|
574
573
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
574
|
+
status?: unknown;
|
|
575
575
|
locale?: string | null | undefined;
|
|
576
576
|
lockReason?: unknown;
|
|
577
577
|
night?: {
|
|
@@ -681,7 +681,7 @@ export declare const UserConversationsSchema: z.ZodObject<{
|
|
|
681
681
|
billingCountryCode?: string | null | undefined;
|
|
682
682
|
}[] | null | undefined;
|
|
683
683
|
account?: {
|
|
684
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
684
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
685
685
|
name: string;
|
|
686
686
|
userId: number;
|
|
687
687
|
accountId: string;
|
|
@@ -800,11 +800,11 @@ export declare const UserConversationsSchema: z.ZodObject<{
|
|
|
800
800
|
billingCountryCode?: string | null | undefined;
|
|
801
801
|
}[] | null | undefined;
|
|
802
802
|
account?: {
|
|
803
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
804
803
|
name: string;
|
|
805
804
|
userId: number;
|
|
806
805
|
accountId: string;
|
|
807
806
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
807
|
+
status?: unknown;
|
|
808
808
|
locale?: string | null | undefined;
|
|
809
809
|
lockReason?: unknown;
|
|
810
810
|
night?: {
|
|
@@ -15,7 +15,7 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
|
|
|
15
15
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
16
16
|
name: z.ZodString;
|
|
17
17
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
18
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
19
19
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
20
20
|
startsAt: z.ZodDate;
|
|
21
21
|
endsAt: z.ZodDate;
|
|
@@ -57,7 +57,7 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
|
|
|
57
57
|
}>>>;
|
|
58
58
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
59
59
|
}, "strip", z.ZodTypeAny, {
|
|
60
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
60
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
61
61
|
name: string;
|
|
62
62
|
userId: number;
|
|
63
63
|
accountId: string;
|
|
@@ -84,11 +84,11 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
|
|
|
84
84
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
85
85
|
} | null | undefined;
|
|
86
86
|
}, {
|
|
87
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
88
87
|
name: string;
|
|
89
88
|
userId: number;
|
|
90
89
|
accountId: string;
|
|
91
90
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
91
|
+
status?: unknown;
|
|
92
92
|
locale?: string | null | undefined;
|
|
93
93
|
lockReason?: unknown;
|
|
94
94
|
night?: {
|
|
@@ -121,7 +121,7 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
|
|
|
121
121
|
savedAt: Date;
|
|
122
122
|
rateLimited: boolean;
|
|
123
123
|
account?: {
|
|
124
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
124
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
125
125
|
name: string;
|
|
126
126
|
userId: number;
|
|
127
127
|
accountId: string;
|
|
@@ -159,11 +159,11 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
|
|
|
159
159
|
savedAt: Date;
|
|
160
160
|
rateLimited: boolean;
|
|
161
161
|
account?: {
|
|
162
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
163
162
|
name: string;
|
|
164
163
|
userId: number;
|
|
165
164
|
accountId: string;
|
|
166
165
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
166
|
+
status?: unknown;
|
|
167
167
|
locale?: string | null | undefined;
|
|
168
168
|
lockReason?: unknown;
|
|
169
169
|
night?: {
|
package/src/com/controlresell/models/conversations/favorites/ReportRateLimitOnFavorites.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
|
|
|
16
16
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
17
17
|
name: z.ZodString;
|
|
18
18
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
19
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
20
20
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21
21
|
startsAt: z.ZodDate;
|
|
22
22
|
endsAt: z.ZodDate;
|
|
@@ -58,7 +58,7 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
|
|
|
58
58
|
}>>>;
|
|
59
59
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
|
61
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
61
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
62
62
|
name: string;
|
|
63
63
|
userId: number;
|
|
64
64
|
accountId: string;
|
|
@@ -85,11 +85,11 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
|
|
|
85
85
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
86
86
|
} | null | undefined;
|
|
87
87
|
}, {
|
|
88
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
89
88
|
name: string;
|
|
90
89
|
userId: number;
|
|
91
90
|
accountId: string;
|
|
92
91
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
92
|
+
status?: unknown;
|
|
93
93
|
locale?: string | null | undefined;
|
|
94
94
|
lockReason?: unknown;
|
|
95
95
|
night?: {
|
|
@@ -122,7 +122,7 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
|
|
|
122
122
|
savedAt: Date;
|
|
123
123
|
rateLimited: boolean;
|
|
124
124
|
account?: {
|
|
125
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
125
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
126
126
|
name: string;
|
|
127
127
|
userId: number;
|
|
128
128
|
accountId: string;
|
|
@@ -160,11 +160,11 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
|
|
|
160
160
|
savedAt: Date;
|
|
161
161
|
rateLimited: boolean;
|
|
162
162
|
account?: {
|
|
163
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
164
163
|
name: string;
|
|
165
164
|
userId: number;
|
|
166
165
|
accountId: string;
|
|
167
166
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
167
|
+
status?: unknown;
|
|
168
168
|
locale?: string | null | undefined;
|
|
169
169
|
lockReason?: unknown;
|
|
170
170
|
night?: {
|
|
@@ -200,7 +200,7 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
|
|
|
200
200
|
savedAt: Date;
|
|
201
201
|
rateLimited: boolean;
|
|
202
202
|
account?: {
|
|
203
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
203
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
204
204
|
name: string;
|
|
205
205
|
userId: number;
|
|
206
206
|
accountId: string;
|
|
@@ -240,11 +240,11 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
|
|
|
240
240
|
savedAt: Date;
|
|
241
241
|
rateLimited: boolean;
|
|
242
242
|
account?: {
|
|
243
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
244
243
|
name: string;
|
|
245
244
|
userId: number;
|
|
246
245
|
accountId: string;
|
|
247
246
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
247
|
+
status?: unknown;
|
|
248
248
|
locale?: string | null | undefined;
|
|
249
249
|
lockReason?: unknown;
|
|
250
250
|
night?: {
|
|
@@ -16,7 +16,7 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
|
|
|
16
16
|
platform: z.ZodEnum<["EBAY", "ETSY", "SHOPIFY", "VINTED", "VESTIAIRE"]>;
|
|
17
17
|
name: z.ZodString;
|
|
18
18
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
-
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED"]
|
|
19
|
+
status: z.ZodCatch<z.ZodEnum<["CONNECTED", "DISCONNECTED", "LOCKED", "PAUSED", "UNKNOWN"]>>;
|
|
20
20
|
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21
21
|
startsAt: z.ZodDate;
|
|
22
22
|
endsAt: z.ZodDate;
|
|
@@ -58,7 +58,7 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
|
|
|
58
58
|
}>>>;
|
|
59
59
|
lockReason: z.ZodOptional<z.ZodNullable<z.ZodCatch<z.ZodEnum<["BANNED", "PHONE_NUMBER_REQUIRED", "LISTING_RESTRICTION", "CONVERTING_TO_PRO", "UNKNOWN"]>>>>;
|
|
60
60
|
}, "strip", z.ZodTypeAny, {
|
|
61
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
61
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
62
62
|
name: string;
|
|
63
63
|
userId: number;
|
|
64
64
|
accountId: string;
|
|
@@ -85,11 +85,11 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
|
|
|
85
85
|
status?: "PENDING" | "CONFIRMED" | null | undefined;
|
|
86
86
|
} | null | undefined;
|
|
87
87
|
}, {
|
|
88
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
89
88
|
name: string;
|
|
90
89
|
userId: number;
|
|
91
90
|
accountId: string;
|
|
92
91
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
92
|
+
status?: unknown;
|
|
93
93
|
locale?: string | null | undefined;
|
|
94
94
|
lockReason?: unknown;
|
|
95
95
|
night?: {
|
|
@@ -122,7 +122,7 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
|
|
|
122
122
|
savedAt: Date;
|
|
123
123
|
rateLimited: boolean;
|
|
124
124
|
account?: {
|
|
125
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
125
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
126
126
|
name: string;
|
|
127
127
|
userId: number;
|
|
128
128
|
accountId: string;
|
|
@@ -160,11 +160,11 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
|
|
|
160
160
|
savedAt: Date;
|
|
161
161
|
rateLimited: boolean;
|
|
162
162
|
account?: {
|
|
163
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
164
163
|
name: string;
|
|
165
164
|
userId: number;
|
|
166
165
|
accountId: string;
|
|
167
166
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
167
|
+
status?: unknown;
|
|
168
168
|
locale?: string | null | undefined;
|
|
169
169
|
lockReason?: unknown;
|
|
170
170
|
night?: {
|
|
@@ -200,7 +200,7 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
|
|
|
200
200
|
savedAt: Date;
|
|
201
201
|
rateLimited: boolean;
|
|
202
202
|
account?: {
|
|
203
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
203
|
+
status: "UNKNOWN" | "CONNECTED" | "DISCONNECTED" | "LOCKED" | "PAUSED";
|
|
204
204
|
name: string;
|
|
205
205
|
userId: number;
|
|
206
206
|
accountId: string;
|
|
@@ -240,11 +240,11 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
|
|
|
240
240
|
savedAt: Date;
|
|
241
241
|
rateLimited: boolean;
|
|
242
242
|
account?: {
|
|
243
|
-
status: "CONNECTED" | "DISCONNECTED" | "LOCKED";
|
|
244
243
|
name: string;
|
|
245
244
|
userId: number;
|
|
246
245
|
accountId: string;
|
|
247
246
|
platform: "EBAY" | "ETSY" | "SHOPIFY" | "VINTED" | "VESTIAIRE";
|
|
247
|
+
status?: unknown;
|
|
248
248
|
locale?: string | null | undefined;
|
|
249
249
|
lockReason?: unknown;
|
|
250
250
|
night?: {
|