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.
Files changed (55) hide show
  1. package/package.json +1 -1
  2. package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.d.ts +28 -0
  3. package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.d.ts.map +1 -0
  4. package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.js +10 -0
  5. package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.js.map +1 -0
  6. package/src/com/controlresell/api/requests/onboardingquiz/CreateOnboardingQuizRequest.ts +8 -0
  7. package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.d.ts +13 -0
  8. package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.d.ts.map +1 -0
  9. package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.js +9 -0
  10. package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.js.map +1 -0
  11. package/src/com/controlresell/api/requests/onboardingquiz/OnboardingQuizResponseEntry.ts +7 -0
  12. package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.d.ts +3 -3
  13. package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.js +1 -1
  14. package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.js.map +1 -1
  15. package/src/com/controlresell/api/responses/quizresponses/QuizResponseResponse.ts +1 -1
  16. package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.d.ts +3 -0
  17. package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.d.ts.map +1 -1
  18. package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.js +1 -0
  19. package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.js.map +1 -1
  20. package/src/com/controlresell/api/responses/subscriptions/SubscriptionStatus.ts +1 -0
  21. package/src/com/controlresell/auth/models/preferences/PreferenceFilter.d.ts +4 -4
  22. package/src/com/controlresell/auth/models/users/platforms/UserOnPlatform.d.ts +2 -2
  23. package/src/com/controlresell/inbox/models/conversations/Conversation.d.ts +4 -4
  24. package/src/com/controlresell/inbox/models/conversations/ConversationOnPlatformUpdateRequest.d.ts +4 -4
  25. package/src/com/controlresell/inbox/models/conversations/ConversationUpdate.d.ts +6 -6
  26. package/src/com/controlresell/inbox/models/conversations/UserConversations.d.ts +6 -6
  27. package/src/com/controlresell/inbox/models/favorites/ConversationFavorite.d.ts +4 -4
  28. package/src/com/controlresell/inbox/models/favorites/ReportRateLimitOnFavorites.d.ts +6 -6
  29. package/src/com/controlresell/inbox/models/favorites/SubmitFavoritesResponse.d.ts +6 -6
  30. package/src/com/controlresell/inbox/models/transactions/Transaction.d.ts +8 -8
  31. package/src/com/controlresell/inbox/models/transactions/items/ItemInTransaction.d.ts +6 -6
  32. package/src/com/controlresell/inbox/models/transactions/items/TransactionWithItems.d.ts +28 -28
  33. package/src/com/controlresell/inventory/models/fees/Fee.d.ts +2 -2
  34. package/src/com/controlresell/inventory/models/items/CreatedItems.d.ts +18 -18
  35. package/src/com/controlresell/inventory/models/items/Item.d.ts +12 -12
  36. package/src/com/controlresell/inventory/models/items/ItemUpdate.d.ts +18 -18
  37. package/src/com/controlresell/inventory/models/items/ItemsWithFilters.d.ts +18 -18
  38. package/src/com/controlresell/inventory/models/items/UpdatedItem.d.ts +18 -18
  39. package/src/com/controlresell/inventory/models/items/platforms/ItemOnPlatform.d.ts +4 -4
  40. package/src/com/controlresell/inventory/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +4 -4
  41. package/src/com/controlresell/models/platforms/orders/Order.d.ts +8 -8
  42. package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +4 -4
  43. package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +36 -36
  44. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +6 -6
  45. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +28 -28
  46. package/src/com/controlresell/models/users/fields/Field.d.ts +2 -2
  47. package/src/com/controlresell/models/users/fields/FieldsWithData.d.ts +4 -4
  48. package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +4 -4
  49. package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +4 -4
  50. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +48 -48
  51. package/src/index.d.ts +2 -0
  52. package/src/index.d.ts.map +1 -1
  53. package/src/index.js +10 -6
  54. package/src/index.js.map +1 -1
  55. package/src/index.ts +2 -0
@@ -43,8 +43,8 @@ export declare const TransactionSchema: z.ZodObject<{
43
43
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
44
44
  }, "strip", z.ZodTypeAny, {
45
45
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
46
- name: string;
47
46
  userId: string | number;
47
+ name: string;
48
48
  platform: "ETSY" | "SHOPIFY" | "VINTED";
49
49
  accountId: string;
50
50
  locale?: string | null | undefined;
@@ -57,8 +57,8 @@ export declare const TransactionSchema: z.ZodObject<{
57
57
  conversationsMaxDelay?: number | null | undefined;
58
58
  }, {
59
59
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
60
- name: string;
61
60
  userId: string | number;
61
+ name: string;
62
62
  platform: "ETSY" | "SHOPIFY" | "VINTED";
63
63
  accountId: string;
64
64
  locale?: string | null | undefined;
@@ -89,8 +89,8 @@ export declare const TransactionSchema: z.ZodObject<{
89
89
  conversationId?: string | null | undefined;
90
90
  account?: {
91
91
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
92
- name: string;
93
92
  userId: string | number;
93
+ name: string;
94
94
  platform: "ETSY" | "SHOPIFY" | "VINTED";
95
95
  accountId: string;
96
96
  locale?: string | null | undefined;
@@ -118,8 +118,8 @@ export declare const TransactionSchema: z.ZodObject<{
118
118
  conversationId?: string | null | undefined;
119
119
  account?: {
120
120
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
121
- name: string;
122
121
  userId: string | number;
122
+ name: string;
123
123
  platform: "ETSY" | "SHOPIFY" | "VINTED";
124
124
  accountId: string;
125
125
  locale?: string | null | undefined;
@@ -151,8 +151,8 @@ export declare const TransactionSchema: z.ZodObject<{
151
151
  conversationId?: string | null | undefined;
152
152
  account?: {
153
153
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
154
- name: string;
155
154
  userId: string | number;
155
+ name: string;
156
156
  platform: "ETSY" | "SHOPIFY" | "VINTED";
157
157
  accountId: string;
158
158
  locale?: string | null | undefined;
@@ -184,8 +184,8 @@ export declare const TransactionSchema: z.ZodObject<{
184
184
  conversationId?: string | null | undefined;
185
185
  account?: {
186
186
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
187
- name: string;
188
187
  userId: string | number;
188
+ name: string;
189
189
  platform: "ETSY" | "SHOPIFY" | "VINTED";
190
190
  accountId: string;
191
191
  locale?: string | null | undefined;
@@ -222,8 +222,8 @@ export declare const TransactionSchema: z.ZodObject<{
222
222
  conversationId?: string | null | undefined;
223
223
  account?: {
224
224
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
225
- name: string;
226
225
  userId: string | number;
226
+ name: string;
227
227
  platform: "ETSY" | "SHOPIFY" | "VINTED";
228
228
  accountId: string;
229
229
  locale?: string | null | undefined;
@@ -264,8 +264,8 @@ export declare const TransactionSchema: z.ZodObject<{
264
264
  conversationId?: string | null | undefined;
265
265
  account?: {
266
266
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
267
- name: string;
268
267
  userId: string | number;
268
+ name: string;
269
269
  platform: "ETSY" | "SHOPIFY" | "VINTED";
270
270
  accountId: string;
271
271
  locale?: string | null | undefined;
@@ -35,8 +35,8 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
35
35
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
36
36
  }, "strip", z.ZodTypeAny, {
37
37
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
38
- name: string;
39
38
  userId: string | number;
39
+ name: string;
40
40
  platform: "ETSY" | "SHOPIFY" | "VINTED";
41
41
  accountId: string;
42
42
  locale?: string | null | undefined;
@@ -49,8 +49,8 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
49
49
  conversationsMaxDelay?: number | null | undefined;
50
50
  }, {
51
51
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
52
- name: string;
53
52
  userId: string | number;
53
+ name: string;
54
54
  platform: "ETSY" | "SHOPIFY" | "VINTED";
55
55
  accountId: string;
56
56
  locale?: string | null | undefined;
@@ -81,8 +81,8 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
81
81
  conversationId?: string | null | undefined;
82
82
  account?: {
83
83
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
84
- name: string;
85
84
  userId: string | number;
85
+ name: string;
86
86
  platform: "ETSY" | "SHOPIFY" | "VINTED";
87
87
  accountId: string;
88
88
  locale?: string | null | undefined;
@@ -110,8 +110,8 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
110
110
  conversationId?: string | null | undefined;
111
111
  account?: {
112
112
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
113
- name: string;
114
113
  userId: string | number;
114
+ name: string;
115
115
  platform: "ETSY" | "SHOPIFY" | "VINTED";
116
116
  accountId: string;
117
117
  locale?: string | null | undefined;
@@ -143,8 +143,8 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
143
143
  conversationId?: string | null | undefined;
144
144
  account?: {
145
145
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
146
- name: string;
147
146
  userId: string | number;
147
+ name: string;
148
148
  platform: "ETSY" | "SHOPIFY" | "VINTED";
149
149
  accountId: string;
150
150
  locale?: string | null | undefined;
@@ -176,8 +176,8 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
176
176
  conversationId?: string | null | undefined;
177
177
  account?: {
178
178
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
179
- name: string;
180
179
  userId: string | number;
180
+ name: string;
181
181
  platform: "ETSY" | "SHOPIFY" | "VINTED";
182
182
  accountId: string;
183
183
  locale?: string | null | undefined;
@@ -44,8 +44,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
44
44
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
45
45
  }, "strip", z.ZodTypeAny, {
46
46
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
47
- name: string;
48
47
  userId: string | number;
48
+ name: string;
49
49
  platform: "ETSY" | "SHOPIFY" | "VINTED";
50
50
  accountId: string;
51
51
  locale?: string | null | undefined;
@@ -58,8 +58,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
58
58
  conversationsMaxDelay?: number | null | undefined;
59
59
  }, {
60
60
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
61
- name: string;
62
61
  userId: string | number;
62
+ name: string;
63
63
  platform: "ETSY" | "SHOPIFY" | "VINTED";
64
64
  accountId: string;
65
65
  locale?: string | null | undefined;
@@ -90,8 +90,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
90
90
  conversationId?: string | null | undefined;
91
91
  account?: {
92
92
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
93
- name: string;
94
93
  userId: string | number;
94
+ name: string;
95
95
  platform: "ETSY" | "SHOPIFY" | "VINTED";
96
96
  accountId: string;
97
97
  locale?: string | null | undefined;
@@ -119,8 +119,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
119
119
  conversationId?: string | null | undefined;
120
120
  account?: {
121
121
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
122
- name: string;
123
122
  userId: string | number;
123
+ name: string;
124
124
  platform: "ETSY" | "SHOPIFY" | "VINTED";
125
125
  accountId: string;
126
126
  locale?: string | null | undefined;
@@ -152,8 +152,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
152
152
  conversationId?: string | null | undefined;
153
153
  account?: {
154
154
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
155
- name: string;
156
155
  userId: string | number;
156
+ name: string;
157
157
  platform: "ETSY" | "SHOPIFY" | "VINTED";
158
158
  accountId: string;
159
159
  locale?: string | null | undefined;
@@ -185,8 +185,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
185
185
  conversationId?: string | null | undefined;
186
186
  account?: {
187
187
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
188
- name: string;
189
188
  userId: string | number;
189
+ name: string;
190
190
  platform: "ETSY" | "SHOPIFY" | "VINTED";
191
191
  accountId: string;
192
192
  locale?: string | null | undefined;
@@ -223,8 +223,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
223
223
  conversationId?: string | null | undefined;
224
224
  account?: {
225
225
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
226
- name: string;
227
226
  userId: string | number;
227
+ name: string;
228
228
  platform: "ETSY" | "SHOPIFY" | "VINTED";
229
229
  accountId: string;
230
230
  locale?: string | null | undefined;
@@ -265,8 +265,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
265
265
  conversationId?: string | null | undefined;
266
266
  account?: {
267
267
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
268
- name: string;
269
268
  userId: string | number;
269
+ name: string;
270
270
  platform: "ETSY" | "SHOPIFY" | "VINTED";
271
271
  accountId: string;
272
272
  locale?: string | null | undefined;
@@ -372,8 +372,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
372
372
  id: string | number;
373
373
  createdAt: Date;
374
374
  updatedAt: Date;
375
- name: string;
376
375
  userId: string | number;
376
+ name: string;
377
377
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
378
378
  startDate: Date;
379
379
  active: boolean;
@@ -387,8 +387,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
387
387
  id: string | number;
388
388
  createdAt: Date;
389
389
  updatedAt: Date;
390
- name: string;
391
390
  userId: string | number;
391
+ name: string;
392
392
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
393
393
  startDate: Date;
394
394
  active: boolean;
@@ -1700,8 +1700,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
1700
1700
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1701
1701
  }, "strip", z.ZodTypeAny, {
1702
1702
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1703
- name: string;
1704
1703
  userId: string | number;
1704
+ name: string;
1705
1705
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1706
1706
  accountId: string;
1707
1707
  locale?: string | null | undefined;
@@ -1714,8 +1714,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
1714
1714
  conversationsMaxDelay?: number | null | undefined;
1715
1715
  }, {
1716
1716
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1717
- name: string;
1718
1717
  userId: string | number;
1718
+ name: string;
1719
1719
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1720
1720
  accountId: string;
1721
1721
  locale?: string | null | undefined;
@@ -1746,8 +1746,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
1746
1746
  conversationId?: string | null | undefined;
1747
1747
  account?: {
1748
1748
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1749
- name: string;
1750
1749
  userId: string | number;
1750
+ name: string;
1751
1751
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1752
1752
  accountId: string;
1753
1753
  locale?: string | null | undefined;
@@ -1775,8 +1775,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
1775
1775
  conversationId?: string | null | undefined;
1776
1776
  account?: {
1777
1777
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1778
- name: string;
1779
1778
  userId: string | number;
1779
+ name: string;
1780
1780
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1781
1781
  accountId: string;
1782
1782
  locale?: string | null | undefined;
@@ -1795,8 +1795,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
1795
1795
  id: string | number;
1796
1796
  createdAt: Date;
1797
1797
  updatedAt: Date;
1798
- name: string;
1799
1798
  userId: string | number;
1799
+ name: string;
1800
1800
  sold: boolean;
1801
1801
  state?: number | null | undefined;
1802
1802
  fees?: {
@@ -1805,8 +1805,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
1805
1805
  id: string | number;
1806
1806
  createdAt: Date;
1807
1807
  updatedAt: Date;
1808
- name: string;
1809
1808
  userId: string | number;
1809
+ name: string;
1810
1810
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1811
1811
  startDate: Date;
1812
1812
  active: boolean;
@@ -1864,8 +1864,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
1864
1864
  conversationId?: string | null | undefined;
1865
1865
  account?: {
1866
1866
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1867
- name: string;
1868
1867
  userId: string | number;
1868
+ name: string;
1869
1869
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1870
1870
  accountId: string;
1871
1871
  locale?: string | null | undefined;
@@ -2073,8 +2073,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2073
2073
  id: string | number;
2074
2074
  createdAt: Date;
2075
2075
  updatedAt: Date;
2076
- name: string;
2077
2076
  userId: string | number;
2077
+ name: string;
2078
2078
  sold: boolean;
2079
2079
  state?: number | null | undefined;
2080
2080
  fees?: {
@@ -2083,8 +2083,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2083
2083
  id: string | number;
2084
2084
  createdAt: Date;
2085
2085
  updatedAt: Date;
2086
- name: string;
2087
2086
  userId: string | number;
2087
+ name: string;
2088
2088
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2089
2089
  startDate: Date;
2090
2090
  active: boolean;
@@ -2142,8 +2142,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2142
2142
  conversationId?: string | null | undefined;
2143
2143
  account?: {
2144
2144
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2145
- name: string;
2146
2145
  userId: string | number;
2146
+ name: string;
2147
2147
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2148
2148
  accountId: string;
2149
2149
  locale?: string | null | undefined;
@@ -2353,8 +2353,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2353
2353
  id: string | number;
2354
2354
  createdAt: Date;
2355
2355
  updatedAt: Date;
2356
- name: string;
2357
2356
  userId: string | number;
2357
+ name: string;
2358
2358
  sold: boolean;
2359
2359
  state?: number | null | undefined;
2360
2360
  fees?: {
@@ -2363,8 +2363,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2363
2363
  id: string | number;
2364
2364
  createdAt: Date;
2365
2365
  updatedAt: Date;
2366
- name: string;
2367
2366
  userId: string | number;
2367
+ name: string;
2368
2368
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2369
2369
  startDate: Date;
2370
2370
  active: boolean;
@@ -2422,8 +2422,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2422
2422
  conversationId?: string | null | undefined;
2423
2423
  account?: {
2424
2424
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2425
- name: string;
2426
2425
  userId: string | number;
2426
+ name: string;
2427
2427
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2428
2428
  accountId: string;
2429
2429
  locale?: string | null | undefined;
@@ -2651,8 +2651,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2651
2651
  conversationId?: string | null | undefined;
2652
2652
  account?: {
2653
2653
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2654
- name: string;
2655
2654
  userId: string | number;
2655
+ name: string;
2656
2656
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2657
2657
  accountId: string;
2658
2658
  locale?: string | null | undefined;
@@ -2676,8 +2676,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2676
2676
  id: string | number;
2677
2677
  createdAt: Date;
2678
2678
  updatedAt: Date;
2679
- name: string;
2680
2679
  userId: string | number;
2680
+ name: string;
2681
2681
  sold: boolean;
2682
2682
  state?: number | null | undefined;
2683
2683
  fees?: {
@@ -2686,8 +2686,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2686
2686
  id: string | number;
2687
2687
  createdAt: Date;
2688
2688
  updatedAt: Date;
2689
- name: string;
2690
2689
  userId: string | number;
2690
+ name: string;
2691
2691
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2692
2692
  startDate: Date;
2693
2693
  active: boolean;
@@ -2745,8 +2745,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2745
2745
  conversationId?: string | null | undefined;
2746
2746
  account?: {
2747
2747
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2748
- name: string;
2749
2748
  userId: string | number;
2749
+ name: string;
2750
2750
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2751
2751
  accountId: string;
2752
2752
  locale?: string | null | undefined;
@@ -2974,8 +2974,8 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
2974
2974
  conversationId?: string | null | undefined;
2975
2975
  account?: {
2976
2976
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2977
- name: string;
2978
2977
  userId: string | number;
2978
+ name: string;
2979
2979
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2980
2980
  accountId: string;
2981
2981
  locale?: string | null | undefined;
@@ -20,8 +20,8 @@ export declare const FeeSchema: z.ZodObject<{
20
20
  id: string | number;
21
21
  createdAt: Date;
22
22
  updatedAt: Date;
23
- name: string;
24
23
  userId: string | number;
24
+ name: string;
25
25
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
26
26
  startDate: Date;
27
27
  active: boolean;
@@ -35,8 +35,8 @@ export declare const FeeSchema: z.ZodObject<{
35
35
  id: string | number;
36
36
  createdAt: Date;
37
37
  updatedAt: Date;
38
- name: string;
39
38
  userId: string | number;
39
+ name: string;
40
40
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
41
41
  startDate: Date;
42
42
  active: boolean;
@@ -87,8 +87,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
87
87
  id: string | number;
88
88
  createdAt: Date;
89
89
  updatedAt: Date;
90
- name: string;
91
90
  userId: string | number;
91
+ name: string;
92
92
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
93
93
  startDate: Date;
94
94
  active: boolean;
@@ -102,8 +102,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
102
102
  id: string | number;
103
103
  createdAt: Date;
104
104
  updatedAt: Date;
105
- name: string;
106
105
  userId: string | number;
106
+ name: string;
107
107
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
108
108
  startDate: Date;
109
109
  active: boolean;
@@ -1415,8 +1415,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1415
1415
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1416
1416
  }, "strip", z.ZodTypeAny, {
1417
1417
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1418
- name: string;
1419
1418
  userId: string | number;
1419
+ name: string;
1420
1420
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1421
1421
  accountId: string;
1422
1422
  locale?: string | null | undefined;
@@ -1429,8 +1429,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1429
1429
  conversationsMaxDelay?: number | null | undefined;
1430
1430
  }, {
1431
1431
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1432
- name: string;
1433
1432
  userId: string | number;
1433
+ name: string;
1434
1434
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1435
1435
  accountId: string;
1436
1436
  locale?: string | null | undefined;
@@ -1461,8 +1461,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1461
1461
  conversationId?: string | null | undefined;
1462
1462
  account?: {
1463
1463
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1464
- name: string;
1465
1464
  userId: string | number;
1465
+ name: string;
1466
1466
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1467
1467
  accountId: string;
1468
1468
  locale?: string | null | undefined;
@@ -1490,8 +1490,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1490
1490
  conversationId?: string | null | undefined;
1491
1491
  account?: {
1492
1492
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1493
- name: string;
1494
1493
  userId: string | number;
1494
+ name: string;
1495
1495
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1496
1496
  accountId: string;
1497
1497
  locale?: string | null | undefined;
@@ -1510,8 +1510,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1510
1510
  id: string | number;
1511
1511
  createdAt: Date;
1512
1512
  updatedAt: Date;
1513
- name: string;
1514
1513
  userId: string | number;
1514
+ name: string;
1515
1515
  sold: boolean;
1516
1516
  state?: number | null | undefined;
1517
1517
  fees?: {
@@ -1520,8 +1520,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1520
1520
  id: string | number;
1521
1521
  createdAt: Date;
1522
1522
  updatedAt: Date;
1523
- name: string;
1524
1523
  userId: string | number;
1524
+ name: string;
1525
1525
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1526
1526
  startDate: Date;
1527
1527
  active: boolean;
@@ -1579,8 +1579,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1579
1579
  conversationId?: string | null | undefined;
1580
1580
  account?: {
1581
1581
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1582
- name: string;
1583
1582
  userId: string | number;
1583
+ name: string;
1584
1584
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1585
1585
  accountId: string;
1586
1586
  locale?: string | null | undefined;
@@ -1788,8 +1788,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1788
1788
  id: string | number;
1789
1789
  createdAt: Date;
1790
1790
  updatedAt: Date;
1791
- name: string;
1792
1791
  userId: string | number;
1792
+ name: string;
1793
1793
  sold: boolean;
1794
1794
  state?: number | null | undefined;
1795
1795
  fees?: {
@@ -1798,8 +1798,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1798
1798
  id: string | number;
1799
1799
  createdAt: Date;
1800
1800
  updatedAt: Date;
1801
- name: string;
1802
1801
  userId: string | number;
1802
+ name: string;
1803
1803
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1804
1804
  startDate: Date;
1805
1805
  active: boolean;
@@ -1857,8 +1857,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
1857
1857
  conversationId?: string | null | undefined;
1858
1858
  account?: {
1859
1859
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1860
- name: string;
1861
1860
  userId: string | number;
1861
+ name: string;
1862
1862
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1863
1863
  accountId: string;
1864
1864
  locale?: string | null | undefined;
@@ -2090,8 +2090,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2090
2090
  id: string | number;
2091
2091
  createdAt: Date;
2092
2092
  updatedAt: Date;
2093
- name: string;
2094
2093
  userId: string | number;
2094
+ name: string;
2095
2095
  sold: boolean;
2096
2096
  state?: number | null | undefined;
2097
2097
  fees?: {
@@ -2100,8 +2100,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2100
2100
  id: string | number;
2101
2101
  createdAt: Date;
2102
2102
  updatedAt: Date;
2103
- name: string;
2104
2103
  userId: string | number;
2104
+ name: string;
2105
2105
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2106
2106
  startDate: Date;
2107
2107
  active: boolean;
@@ -2159,8 +2159,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2159
2159
  conversationId?: string | null | undefined;
2160
2160
  account?: {
2161
2161
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2162
- name: string;
2163
2162
  userId: string | number;
2163
+ name: string;
2164
2164
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2165
2165
  accountId: string;
2166
2166
  locale?: string | null | undefined;
@@ -2378,8 +2378,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2378
2378
  id: string | number;
2379
2379
  createdAt: Date;
2380
2380
  updatedAt: Date;
2381
- name: string;
2382
2381
  userId: string | number;
2382
+ name: string;
2383
2383
  sold: boolean;
2384
2384
  state?: number | null | undefined;
2385
2385
  fees?: {
@@ -2388,8 +2388,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2388
2388
  id: string | number;
2389
2389
  createdAt: Date;
2390
2390
  updatedAt: Date;
2391
- name: string;
2392
2391
  userId: string | number;
2392
+ name: string;
2393
2393
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2394
2394
  startDate: Date;
2395
2395
  active: boolean;
@@ -2447,8 +2447,8 @@ export declare const CreatedItemsSchema: z.ZodObject<{
2447
2447
  conversationId?: string | null | undefined;
2448
2448
  account?: {
2449
2449
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2450
- name: string;
2451
2450
  userId: string | number;
2451
+ name: string;
2452
2452
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2453
2453
  accountId: string;
2454
2454
  locale?: string | null | undefined;