controlresell 2.8.52 → 2.8.55
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/requests/onboardingquiz/CreateOnboardingQuizRequest.d.ts +28 -0
- package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.d.ts.map +1 -0
- package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.js +10 -0
- package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.js.map +1 -0
- package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.ts +8 -0
- package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.d.ts +13 -0
- package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.d.ts.map +1 -0
- package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.js +9 -0
- package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.js.map +1 -0
- package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.ts +7 -0
- package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.d.ts +3 -3
- package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.js +1 -1
- package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.js.map +1 -1
- package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.ts +1 -1
- package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.d.ts +3 -0
- package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.d.ts.map +1 -1
- package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.js +1 -0
- package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.js.map +1 -1
- package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.ts +1 -0
- package/src/com/controlresell/auth/models/preferences/PreferenceFilter.d.ts +4 -4
- package/src/com/controlresell/auth/models/users/platforms/UserOnPlatform.d.ts +2 -2
- package/src/com/controlresell/inbox/models/conversations/Conversation.d.ts +4 -4
- package/src/com/controlresell/inbox/models/conversations/ConversationOnPlatformUpdateRequest.d.ts +4 -4
- package/src/com/controlresell/inbox/models/conversations/ConversationUpdate.d.ts +6 -6
- package/src/com/controlresell/inbox/models/conversations/UserConversations.d.ts +6 -6
- package/src/com/controlresell/inbox/models/favorites/ConversationFavorite.d.ts +4 -4
- package/src/com/controlresell/inbox/models/favorites/ReportRateLimitOnFavorites.d.ts +6 -6
- package/src/com/controlresell/inbox/models/favorites/SubmitFavoritesResponse.d.ts +6 -6
- package/src/com/controlresell/inbox/models/transactions/Transaction.d.ts +8 -8
- package/src/com/controlresell/inbox/models/transactions/items/ItemInTransaction.d.ts +6 -6
- package/src/com/controlresell/inbox/models/transactions/items/TransactionWithItems.d.ts +28 -28
- package/src/com/controlresell/inventory/models/fees/Fee.d.ts +2 -2
- package/src/com/controlresell/inventory/models/items/CreatedItems.d.ts +18 -18
- package/src/com/controlresell/inventory/models/items/Item.d.ts +12 -12
- package/src/com/controlresell/inventory/models/items/ItemUpdate.d.ts +18 -18
- package/src/com/controlresell/inventory/models/items/ItemsWithFilters.d.ts +18 -18
- package/src/com/controlresell/inventory/models/items/UpdatedItem.d.ts +18 -18
- package/src/com/controlresell/inventory/models/items/platforms/ItemOnPlatform.d.ts +4 -4
- package/src/com/controlresell/inventory/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +4 -4
- package/src/com/controlresell/models/platforms/orders/Order.d.ts +8 -8
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +4 -4
- package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +36 -36
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +6 -6
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +28 -28
- package/src/com/controlresell/models/users/fields/Field.d.ts +2 -2
- package/src/com/controlresell/models/users/fields/FieldsWithData.d.ts +4 -4
- package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +4 -4
- package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +4 -4
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +48 -48
- package/src/index.d.ts +2 -0
- package/src/index.d.ts.map +1 -1
- package/src/index.js +10 -6
- package/src/index.js.map +1 -1
- package/src/index.ts +2 -0
|
@@ -46,8 +46,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
46
46
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
47
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
48
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
49
|
-
name: string;
|
|
50
49
|
userId: string | number;
|
|
50
|
+
name: string;
|
|
51
51
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
52
52
|
accountId: string;
|
|
53
53
|
locale?: string | null | undefined;
|
|
@@ -60,8 +60,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
60
60
|
conversationsMaxDelay?: number | null | undefined;
|
|
61
61
|
}, {
|
|
62
62
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
63
|
-
name: string;
|
|
64
63
|
userId: string | number;
|
|
64
|
+
name: string;
|
|
65
65
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
66
66
|
accountId: string;
|
|
67
67
|
locale?: string | null | undefined;
|
|
@@ -92,8 +92,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
92
92
|
conversationId?: string | null | undefined;
|
|
93
93
|
account?: {
|
|
94
94
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
95
|
-
name: string;
|
|
96
95
|
userId: string | number;
|
|
96
|
+
name: string;
|
|
97
97
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
98
98
|
accountId: string;
|
|
99
99
|
locale?: string | null | undefined;
|
|
@@ -121,8 +121,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
121
121
|
conversationId?: string | null | undefined;
|
|
122
122
|
account?: {
|
|
123
123
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
124
|
-
name: string;
|
|
125
124
|
userId: string | number;
|
|
125
|
+
name: string;
|
|
126
126
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
127
127
|
accountId: string;
|
|
128
128
|
locale?: string | null | undefined;
|
|
@@ -154,8 +154,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
154
154
|
conversationId?: string | null | undefined;
|
|
155
155
|
account?: {
|
|
156
156
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
157
|
-
name: string;
|
|
158
157
|
userId: string | number;
|
|
158
|
+
name: string;
|
|
159
159
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
160
160
|
accountId: string;
|
|
161
161
|
locale?: string | null | undefined;
|
|
@@ -187,8 +187,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
187
187
|
conversationId?: string | null | undefined;
|
|
188
188
|
account?: {
|
|
189
189
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
190
|
-
name: string;
|
|
191
190
|
userId: string | number;
|
|
191
|
+
name: string;
|
|
192
192
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
193
193
|
accountId: string;
|
|
194
194
|
locale?: string | null | undefined;
|
|
@@ -434,8 +434,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
434
434
|
conversationId?: string | null | undefined;
|
|
435
435
|
account?: {
|
|
436
436
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
437
|
-
name: string;
|
|
438
437
|
userId: string | number;
|
|
438
|
+
name: string;
|
|
439
439
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
440
440
|
accountId: string;
|
|
441
441
|
locale?: string | null | undefined;
|
|
@@ -528,8 +528,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
528
528
|
conversationId?: string | null | undefined;
|
|
529
529
|
account?: {
|
|
530
530
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
531
|
-
name: string;
|
|
532
531
|
userId: string | number;
|
|
532
|
+
name: string;
|
|
533
533
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
534
534
|
accountId: string;
|
|
535
535
|
locale?: string | null | undefined;
|
|
@@ -682,8 +682,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
682
682
|
id: string | number;
|
|
683
683
|
createdAt: Date;
|
|
684
684
|
updatedAt: Date;
|
|
685
|
-
name: string;
|
|
686
685
|
userId: string | number;
|
|
686
|
+
name: string;
|
|
687
687
|
recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
|
|
688
688
|
startDate: Date;
|
|
689
689
|
active: boolean;
|
|
@@ -697,8 +697,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
697
697
|
id: string | number;
|
|
698
698
|
createdAt: Date;
|
|
699
699
|
updatedAt: Date;
|
|
700
|
-
name: string;
|
|
701
700
|
userId: string | number;
|
|
701
|
+
name: string;
|
|
702
702
|
recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
|
|
703
703
|
startDate: Date;
|
|
704
704
|
active: boolean;
|
|
@@ -2010,8 +2010,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2010
2010
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2011
2011
|
}, "strip", z.ZodTypeAny, {
|
|
2012
2012
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2013
|
-
name: string;
|
|
2014
2013
|
userId: string | number;
|
|
2014
|
+
name: string;
|
|
2015
2015
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2016
2016
|
accountId: string;
|
|
2017
2017
|
locale?: string | null | undefined;
|
|
@@ -2024,8 +2024,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2024
2024
|
conversationsMaxDelay?: number | null | undefined;
|
|
2025
2025
|
}, {
|
|
2026
2026
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2027
|
-
name: string;
|
|
2028
2027
|
userId: string | number;
|
|
2028
|
+
name: string;
|
|
2029
2029
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2030
2030
|
accountId: string;
|
|
2031
2031
|
locale?: string | null | undefined;
|
|
@@ -2056,8 +2056,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2056
2056
|
conversationId?: string | null | undefined;
|
|
2057
2057
|
account?: {
|
|
2058
2058
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2059
|
-
name: string;
|
|
2060
2059
|
userId: string | number;
|
|
2060
|
+
name: string;
|
|
2061
2061
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2062
2062
|
accountId: string;
|
|
2063
2063
|
locale?: string | null | undefined;
|
|
@@ -2085,8 +2085,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2085
2085
|
conversationId?: string | null | undefined;
|
|
2086
2086
|
account?: {
|
|
2087
2087
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2088
|
-
name: string;
|
|
2089
2088
|
userId: string | number;
|
|
2089
|
+
name: string;
|
|
2090
2090
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2091
2091
|
accountId: string;
|
|
2092
2092
|
locale?: string | null | undefined;
|
|
@@ -2105,8 +2105,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2105
2105
|
id: string | number;
|
|
2106
2106
|
createdAt: Date;
|
|
2107
2107
|
updatedAt: Date;
|
|
2108
|
-
name: string;
|
|
2109
2108
|
userId: string | number;
|
|
2109
|
+
name: string;
|
|
2110
2110
|
sold: boolean;
|
|
2111
2111
|
state?: number | null | undefined;
|
|
2112
2112
|
fees?: {
|
|
@@ -2115,8 +2115,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2115
2115
|
id: string | number;
|
|
2116
2116
|
createdAt: Date;
|
|
2117
2117
|
updatedAt: Date;
|
|
2118
|
-
name: string;
|
|
2119
2118
|
userId: string | number;
|
|
2119
|
+
name: string;
|
|
2120
2120
|
recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
|
|
2121
2121
|
startDate: Date;
|
|
2122
2122
|
active: boolean;
|
|
@@ -2174,8 +2174,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2174
2174
|
conversationId?: string | null | undefined;
|
|
2175
2175
|
account?: {
|
|
2176
2176
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2177
|
-
name: string;
|
|
2178
2177
|
userId: string | number;
|
|
2178
|
+
name: string;
|
|
2179
2179
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2180
2180
|
accountId: string;
|
|
2181
2181
|
locale?: string | null | undefined;
|
|
@@ -2383,8 +2383,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2383
2383
|
id: string | number;
|
|
2384
2384
|
createdAt: Date;
|
|
2385
2385
|
updatedAt: Date;
|
|
2386
|
-
name: string;
|
|
2387
2386
|
userId: string | number;
|
|
2387
|
+
name: string;
|
|
2388
2388
|
sold: boolean;
|
|
2389
2389
|
state?: number | null | undefined;
|
|
2390
2390
|
fees?: {
|
|
@@ -2393,8 +2393,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2393
2393
|
id: string | number;
|
|
2394
2394
|
createdAt: Date;
|
|
2395
2395
|
updatedAt: Date;
|
|
2396
|
-
name: string;
|
|
2397
2396
|
userId: string | number;
|
|
2397
|
+
name: string;
|
|
2398
2398
|
recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
|
|
2399
2399
|
startDate: Date;
|
|
2400
2400
|
active: boolean;
|
|
@@ -2452,8 +2452,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2452
2452
|
conversationId?: string | null | undefined;
|
|
2453
2453
|
account?: {
|
|
2454
2454
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2455
|
-
name: string;
|
|
2456
2455
|
userId: string | number;
|
|
2456
|
+
name: string;
|
|
2457
2457
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2458
2458
|
accountId: string;
|
|
2459
2459
|
locale?: string | null | undefined;
|
|
@@ -2663,8 +2663,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2663
2663
|
id: string | number;
|
|
2664
2664
|
createdAt: Date;
|
|
2665
2665
|
updatedAt: Date;
|
|
2666
|
-
name: string;
|
|
2667
2666
|
userId: string | number;
|
|
2667
|
+
name: string;
|
|
2668
2668
|
sold: boolean;
|
|
2669
2669
|
state?: number | null | undefined;
|
|
2670
2670
|
fees?: {
|
|
@@ -2673,8 +2673,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2673
2673
|
id: string | number;
|
|
2674
2674
|
createdAt: Date;
|
|
2675
2675
|
updatedAt: Date;
|
|
2676
|
-
name: string;
|
|
2677
2676
|
userId: string | number;
|
|
2677
|
+
name: string;
|
|
2678
2678
|
recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
|
|
2679
2679
|
startDate: Date;
|
|
2680
2680
|
active: boolean;
|
|
@@ -2732,8 +2732,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2732
2732
|
conversationId?: string | null | undefined;
|
|
2733
2733
|
account?: {
|
|
2734
2734
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2735
|
-
name: string;
|
|
2736
2735
|
userId: string | number;
|
|
2736
|
+
name: string;
|
|
2737
2737
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2738
2738
|
accountId: string;
|
|
2739
2739
|
locale?: string | null | undefined;
|
|
@@ -2966,8 +2966,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
2966
2966
|
conversationId?: string | null | undefined;
|
|
2967
2967
|
account?: {
|
|
2968
2968
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
2969
|
-
name: string;
|
|
2970
2969
|
userId: string | number;
|
|
2970
|
+
name: string;
|
|
2971
2971
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
2972
2972
|
accountId: string;
|
|
2973
2973
|
locale?: string | null | undefined;
|
|
@@ -3038,8 +3038,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
3038
3038
|
id: string | number;
|
|
3039
3039
|
createdAt: Date;
|
|
3040
3040
|
updatedAt: Date;
|
|
3041
|
-
name: string;
|
|
3042
3041
|
userId: string | number;
|
|
3042
|
+
name: string;
|
|
3043
3043
|
sold: boolean;
|
|
3044
3044
|
state?: number | null | undefined;
|
|
3045
3045
|
fees?: {
|
|
@@ -3048,8 +3048,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
3048
3048
|
id: string | number;
|
|
3049
3049
|
createdAt: Date;
|
|
3050
3050
|
updatedAt: Date;
|
|
3051
|
-
name: string;
|
|
3052
3051
|
userId: string | number;
|
|
3052
|
+
name: string;
|
|
3053
3053
|
recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
|
|
3054
3054
|
startDate: Date;
|
|
3055
3055
|
active: boolean;
|
|
@@ -3107,8 +3107,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
3107
3107
|
conversationId?: string | null | undefined;
|
|
3108
3108
|
account?: {
|
|
3109
3109
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
3110
|
-
name: string;
|
|
3111
3110
|
userId: string | number;
|
|
3111
|
+
name: string;
|
|
3112
3112
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
3113
3113
|
accountId: string;
|
|
3114
3114
|
locale?: string | null | undefined;
|
|
@@ -3341,8 +3341,8 @@ export declare const OrderWithItemsSchema: z.ZodObject<{
|
|
|
3341
3341
|
conversationId?: string | null | undefined;
|
|
3342
3342
|
account?: {
|
|
3343
3343
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
3344
|
-
name: string;
|
|
3345
3344
|
userId: string | number;
|
|
3345
|
+
name: string;
|
|
3346
3346
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
3347
3347
|
accountId: string;
|
|
3348
3348
|
locale?: string | null | undefined;
|
|
@@ -10,16 +10,16 @@ export declare const FieldSchema: z.ZodObject<{
|
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
11
|
type: "TEXT" | "SPOT";
|
|
12
12
|
id: string | number;
|
|
13
|
-
name: string;
|
|
14
13
|
userId: string | number;
|
|
14
|
+
name: string;
|
|
15
15
|
section: string;
|
|
16
16
|
defaultValue?: string | null | undefined;
|
|
17
17
|
config?: string | null | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
type: "TEXT" | "SPOT";
|
|
20
20
|
id: string | number;
|
|
21
|
-
name: string;
|
|
22
21
|
userId: string | number;
|
|
22
|
+
name: string;
|
|
23
23
|
section: string;
|
|
24
24
|
defaultValue?: string | null | undefined;
|
|
25
25
|
config?: string | null | undefined;
|
|
@@ -11,16 +11,16 @@ export declare const FieldsWithDataSchema: z.ZodObject<{
|
|
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
|
12
12
|
type: "TEXT" | "SPOT";
|
|
13
13
|
id: string | number;
|
|
14
|
-
name: string;
|
|
15
14
|
userId: string | number;
|
|
15
|
+
name: string;
|
|
16
16
|
section: string;
|
|
17
17
|
defaultValue?: string | null | undefined;
|
|
18
18
|
config?: string | null | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
type: "TEXT" | "SPOT";
|
|
21
21
|
id: string | number;
|
|
22
|
-
name: string;
|
|
23
22
|
userId: string | number;
|
|
23
|
+
name: string;
|
|
24
24
|
section: string;
|
|
25
25
|
defaultValue?: string | null | undefined;
|
|
26
26
|
config?: string | null | undefined;
|
|
@@ -30,8 +30,8 @@ export declare const FieldsWithDataSchema: z.ZodObject<{
|
|
|
30
30
|
fields: {
|
|
31
31
|
type: "TEXT" | "SPOT";
|
|
32
32
|
id: string | number;
|
|
33
|
-
name: string;
|
|
34
33
|
userId: string | number;
|
|
34
|
+
name: string;
|
|
35
35
|
section: string;
|
|
36
36
|
defaultValue?: string | null | undefined;
|
|
37
37
|
config?: string | null | undefined;
|
|
@@ -41,8 +41,8 @@ export declare const FieldsWithDataSchema: z.ZodObject<{
|
|
|
41
41
|
fields: {
|
|
42
42
|
type: "TEXT" | "SPOT";
|
|
43
43
|
id: string | number;
|
|
44
|
-
name: string;
|
|
45
44
|
userId: string | number;
|
|
45
|
+
name: string;
|
|
46
46
|
section: string;
|
|
47
47
|
defaultValue?: string | null | undefined;
|
|
48
48
|
config?: string | null | undefined;
|
|
@@ -22,8 +22,8 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
22
22
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
25
|
-
name: string;
|
|
26
25
|
userId: string | number;
|
|
26
|
+
name: string;
|
|
27
27
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
28
28
|
accountId: string;
|
|
29
29
|
locale?: string | null | undefined;
|
|
@@ -36,8 +36,8 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
36
36
|
conversationsMaxDelay?: number | null | undefined;
|
|
37
37
|
}, {
|
|
38
38
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
39
|
-
name: string;
|
|
40
39
|
userId: string | number;
|
|
40
|
+
name: string;
|
|
41
41
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
42
42
|
accountId: string;
|
|
43
43
|
locale?: string | null | undefined;
|
|
@@ -54,8 +54,8 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
55
|
account: {
|
|
56
56
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
57
|
-
name: string;
|
|
58
57
|
userId: string | number;
|
|
58
|
+
name: string;
|
|
59
59
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
60
60
|
accountId: string;
|
|
61
61
|
locale?: string | null | undefined;
|
|
@@ -72,8 +72,8 @@ export declare const PlatformAuthRequestSchema: z.ZodObject<{
|
|
|
72
72
|
}, {
|
|
73
73
|
account: {
|
|
74
74
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
75
|
-
name: string;
|
|
76
75
|
userId: string | number;
|
|
76
|
+
name: string;
|
|
77
77
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
78
78
|
accountId: string;
|
|
79
79
|
locale?: string | null | undefined;
|
|
@@ -22,8 +22,8 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
22
22
|
conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
25
|
-
name: string;
|
|
26
25
|
userId: string | number;
|
|
26
|
+
name: string;
|
|
27
27
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
28
28
|
accountId: string;
|
|
29
29
|
locale?: string | null | undefined;
|
|
@@ -36,8 +36,8 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
36
36
|
conversationsMaxDelay?: number | null | undefined;
|
|
37
37
|
}, {
|
|
38
38
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
39
|
-
name: string;
|
|
40
39
|
userId: string | number;
|
|
40
|
+
name: string;
|
|
41
41
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
42
42
|
accountId: string;
|
|
43
43
|
locale?: string | null | undefined;
|
|
@@ -54,8 +54,8 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
54
54
|
}, "strip", z.ZodTypeAny, {
|
|
55
55
|
account: {
|
|
56
56
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
57
|
-
name: string;
|
|
58
57
|
userId: string | number;
|
|
58
|
+
name: string;
|
|
59
59
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
60
60
|
accountId: string;
|
|
61
61
|
locale?: string | null | undefined;
|
|
@@ -72,8 +72,8 @@ export declare const PlatformJobUpdateSchema: z.ZodObject<{
|
|
|
72
72
|
}, {
|
|
73
73
|
account: {
|
|
74
74
|
status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
|
|
75
|
-
name: string;
|
|
76
75
|
userId: string | number;
|
|
76
|
+
name: string;
|
|
77
77
|
platform: "ETSY" | "SHOPIFY" | "VINTED";
|
|
78
78
|
accountId: string;
|
|
79
79
|
locale?: string | null | undefined;
|