controlresell 2.8.52 → 2.8.53

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 (50) 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/auth/models/preferences/PreferenceFilter.d.ts +4 -4
  17. package/src/com/controlresell/auth/models/users/platforms/UserOnPlatform.d.ts +2 -2
  18. package/src/com/controlresell/inbox/models/conversations/Conversation.d.ts +4 -4
  19. package/src/com/controlresell/inbox/models/conversations/ConversationOnPlatformUpdateRequest.d.ts +4 -4
  20. package/src/com/controlresell/inbox/models/conversations/ConversationUpdate.d.ts +6 -6
  21. package/src/com/controlresell/inbox/models/conversations/UserConversations.d.ts +6 -6
  22. package/src/com/controlresell/inbox/models/favorites/ConversationFavorite.d.ts +4 -4
  23. package/src/com/controlresell/inbox/models/favorites/ReportRateLimitOnFavorites.d.ts +6 -6
  24. package/src/com/controlresell/inbox/models/favorites/SubmitFavoritesResponse.d.ts +6 -6
  25. package/src/com/controlresell/inbox/models/transactions/Transaction.d.ts +8 -8
  26. package/src/com/controlresell/inbox/models/transactions/items/ItemInTransaction.d.ts +6 -6
  27. package/src/com/controlresell/inbox/models/transactions/items/TransactionWithItems.d.ts +28 -28
  28. package/src/com/controlresell/inventory/models/fees/Fee.d.ts +2 -2
  29. package/src/com/controlresell/inventory/models/items/CreatedItems.d.ts +18 -18
  30. package/src/com/controlresell/inventory/models/items/Item.d.ts +12 -12
  31. package/src/com/controlresell/inventory/models/items/ItemUpdate.d.ts +18 -18
  32. package/src/com/controlresell/inventory/models/items/ItemsWithFilters.d.ts +18 -18
  33. package/src/com/controlresell/inventory/models/items/UpdatedItem.d.ts +18 -18
  34. package/src/com/controlresell/inventory/models/items/platforms/ItemOnPlatform.d.ts +4 -4
  35. package/src/com/controlresell/inventory/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +4 -4
  36. package/src/com/controlresell/models/platforms/orders/Order.d.ts +8 -8
  37. package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +4 -4
  38. package/src/com/controlresell/models/platforms/orders/UserOrders.d.ts +36 -36
  39. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +6 -6
  40. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +28 -28
  41. package/src/com/controlresell/models/users/fields/Field.d.ts +2 -2
  42. package/src/com/controlresell/models/users/fields/FieldsWithData.d.ts +4 -4
  43. package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +4 -4
  44. package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +4 -4
  45. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +48 -48
  46. package/src/index.d.ts +2 -0
  47. package/src/index.d.ts.map +1 -1
  48. package/src/index.js +10 -6
  49. package/src/index.js.map +1 -1
  50. package/src/index.ts +2 -0
@@ -86,8 +86,8 @@ export declare const ItemSchema: z.ZodObject<{
86
86
  id: string | number;
87
87
  createdAt: Date;
88
88
  updatedAt: Date;
89
- name: string;
90
89
  userId: string | number;
90
+ name: string;
91
91
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
92
92
  startDate: Date;
93
93
  active: boolean;
@@ -101,8 +101,8 @@ export declare const ItemSchema: z.ZodObject<{
101
101
  id: string | number;
102
102
  createdAt: Date;
103
103
  updatedAt: Date;
104
- name: string;
105
104
  userId: string | number;
105
+ name: string;
106
106
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
107
107
  startDate: Date;
108
108
  active: boolean;
@@ -1414,8 +1414,8 @@ export declare const ItemSchema: z.ZodObject<{
1414
1414
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1415
1415
  }, "strip", z.ZodTypeAny, {
1416
1416
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1417
- name: string;
1418
1417
  userId: string | number;
1418
+ name: string;
1419
1419
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1420
1420
  accountId: string;
1421
1421
  locale?: string | null | undefined;
@@ -1428,8 +1428,8 @@ export declare const ItemSchema: z.ZodObject<{
1428
1428
  conversationsMaxDelay?: number | null | undefined;
1429
1429
  }, {
1430
1430
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1431
- name: string;
1432
1431
  userId: string | number;
1432
+ name: string;
1433
1433
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1434
1434
  accountId: string;
1435
1435
  locale?: string | null | undefined;
@@ -1460,8 +1460,8 @@ export declare const ItemSchema: z.ZodObject<{
1460
1460
  conversationId?: string | null | undefined;
1461
1461
  account?: {
1462
1462
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1463
- name: string;
1464
1463
  userId: string | number;
1464
+ name: string;
1465
1465
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1466
1466
  accountId: string;
1467
1467
  locale?: string | null | undefined;
@@ -1489,8 +1489,8 @@ export declare const ItemSchema: z.ZodObject<{
1489
1489
  conversationId?: string | null | undefined;
1490
1490
  account?: {
1491
1491
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1492
- name: string;
1493
1492
  userId: string | number;
1493
+ name: string;
1494
1494
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1495
1495
  accountId: string;
1496
1496
  locale?: string | null | undefined;
@@ -1509,8 +1509,8 @@ export declare const ItemSchema: z.ZodObject<{
1509
1509
  id: string | number;
1510
1510
  createdAt: Date;
1511
1511
  updatedAt: Date;
1512
- name: string;
1513
1512
  userId: string | number;
1513
+ name: string;
1514
1514
  sold: boolean;
1515
1515
  state?: number | null | undefined;
1516
1516
  fees?: {
@@ -1519,8 +1519,8 @@ export declare const ItemSchema: z.ZodObject<{
1519
1519
  id: string | number;
1520
1520
  createdAt: Date;
1521
1521
  updatedAt: Date;
1522
- name: string;
1523
1522
  userId: string | number;
1523
+ name: string;
1524
1524
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1525
1525
  startDate: Date;
1526
1526
  active: boolean;
@@ -1578,8 +1578,8 @@ export declare const ItemSchema: z.ZodObject<{
1578
1578
  conversationId?: string | null | undefined;
1579
1579
  account?: {
1580
1580
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1581
- name: string;
1582
1581
  userId: string | number;
1582
+ name: string;
1583
1583
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1584
1584
  accountId: string;
1585
1585
  locale?: string | null | undefined;
@@ -1787,8 +1787,8 @@ export declare const ItemSchema: z.ZodObject<{
1787
1787
  id: string | number;
1788
1788
  createdAt: Date;
1789
1789
  updatedAt: Date;
1790
- name: string;
1791
1790
  userId: string | number;
1791
+ name: string;
1792
1792
  sold: boolean;
1793
1793
  state?: number | null | undefined;
1794
1794
  fees?: {
@@ -1797,8 +1797,8 @@ export declare const ItemSchema: z.ZodObject<{
1797
1797
  id: string | number;
1798
1798
  createdAt: Date;
1799
1799
  updatedAt: Date;
1800
- name: string;
1801
1800
  userId: string | number;
1801
+ name: string;
1802
1802
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1803
1803
  startDate: Date;
1804
1804
  active: boolean;
@@ -1856,8 +1856,8 @@ export declare const ItemSchema: z.ZodObject<{
1856
1856
  conversationId?: string | null | undefined;
1857
1857
  account?: {
1858
1858
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1859
- name: string;
1860
1859
  userId: string | number;
1860
+ name: string;
1861
1861
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1862
1862
  accountId: string;
1863
1863
  locale?: string | null | undefined;
@@ -88,8 +88,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
88
88
  id: string | number;
89
89
  createdAt: Date;
90
90
  updatedAt: Date;
91
- name: string;
92
91
  userId: string | number;
92
+ name: string;
93
93
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
94
94
  startDate: Date;
95
95
  active: boolean;
@@ -103,8 +103,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
103
103
  id: string | number;
104
104
  createdAt: Date;
105
105
  updatedAt: Date;
106
- name: string;
107
106
  userId: string | number;
107
+ name: string;
108
108
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
109
109
  startDate: Date;
110
110
  active: boolean;
@@ -1416,8 +1416,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1416
1416
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1417
1417
  }, "strip", z.ZodTypeAny, {
1418
1418
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1419
- name: string;
1420
1419
  userId: string | number;
1420
+ name: string;
1421
1421
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1422
1422
  accountId: string;
1423
1423
  locale?: string | null | undefined;
@@ -1430,8 +1430,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1430
1430
  conversationsMaxDelay?: number | null | undefined;
1431
1431
  }, {
1432
1432
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1433
- name: string;
1434
1433
  userId: string | number;
1434
+ name: string;
1435
1435
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1436
1436
  accountId: string;
1437
1437
  locale?: string | null | undefined;
@@ -1462,8 +1462,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1462
1462
  conversationId?: string | null | undefined;
1463
1463
  account?: {
1464
1464
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1465
- name: string;
1466
1465
  userId: string | number;
1466
+ name: string;
1467
1467
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1468
1468
  accountId: string;
1469
1469
  locale?: string | null | undefined;
@@ -1491,8 +1491,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1491
1491
  conversationId?: string | null | undefined;
1492
1492
  account?: {
1493
1493
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1494
- name: string;
1495
1494
  userId: string | number;
1495
+ name: string;
1496
1496
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1497
1497
  accountId: string;
1498
1498
  locale?: string | null | undefined;
@@ -1511,8 +1511,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1511
1511
  id: string | number;
1512
1512
  createdAt: Date;
1513
1513
  updatedAt: Date;
1514
- name: string;
1515
1514
  userId: string | number;
1515
+ name: string;
1516
1516
  sold: boolean;
1517
1517
  state?: number | null | undefined;
1518
1518
  fees?: {
@@ -1521,8 +1521,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1521
1521
  id: string | number;
1522
1522
  createdAt: Date;
1523
1523
  updatedAt: Date;
1524
- name: string;
1525
1524
  userId: string | number;
1525
+ name: string;
1526
1526
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1527
1527
  startDate: Date;
1528
1528
  active: boolean;
@@ -1580,8 +1580,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1580
1580
  conversationId?: string | null | undefined;
1581
1581
  account?: {
1582
1582
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1583
- name: string;
1584
1583
  userId: string | number;
1584
+ name: string;
1585
1585
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1586
1586
  accountId: string;
1587
1587
  locale?: string | null | undefined;
@@ -1789,8 +1789,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1789
1789
  id: string | number;
1790
1790
  createdAt: Date;
1791
1791
  updatedAt: Date;
1792
- name: string;
1793
1792
  userId: string | number;
1793
+ name: string;
1794
1794
  sold: boolean;
1795
1795
  state?: number | null | undefined;
1796
1796
  fees?: {
@@ -1799,8 +1799,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1799
1799
  id: string | number;
1800
1800
  createdAt: Date;
1801
1801
  updatedAt: Date;
1802
- name: string;
1803
1802
  userId: string | number;
1803
+ name: string;
1804
1804
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1805
1805
  startDate: Date;
1806
1806
  active: boolean;
@@ -1858,8 +1858,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
1858
1858
  conversationId?: string | null | undefined;
1859
1859
  account?: {
1860
1860
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1861
- name: string;
1862
1861
  userId: string | number;
1862
+ name: string;
1863
1863
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1864
1864
  accountId: string;
1865
1865
  locale?: string | null | undefined;
@@ -2071,8 +2071,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
2071
2071
  id: string | number;
2072
2072
  createdAt: Date;
2073
2073
  updatedAt: Date;
2074
- name: string;
2075
2074
  userId: string | number;
2075
+ name: string;
2076
2076
  sold: boolean;
2077
2077
  state?: number | null | undefined;
2078
2078
  fees?: {
@@ -2081,8 +2081,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
2081
2081
  id: string | number;
2082
2082
  createdAt: Date;
2083
2083
  updatedAt: Date;
2084
- name: string;
2085
2084
  userId: string | number;
2085
+ name: string;
2086
2086
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2087
2087
  startDate: Date;
2088
2088
  active: boolean;
@@ -2140,8 +2140,8 @@ export declare const ItemUpdateSchema: z.ZodObject<{
2140
2140
  conversationId?: string | null | undefined;
2141
2141
  account?: {
2142
2142
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2143
- name: string;
2144
2143
  userId: string | number;
2144
+ name: string;
2145
2145
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2146
2146
  accountId: string;
2147
2147
  locale?: string | null | undefined;
@@ -2353,8 +2353,8 @@ export declare const ItemUpdateSchema: 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 ItemUpdateSchema: 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 ItemUpdateSchema: 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;
@@ -89,8 +89,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
89
89
  id: string | number;
90
90
  createdAt: Date;
91
91
  updatedAt: Date;
92
- name: string;
93
92
  userId: string | number;
93
+ name: string;
94
94
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
95
95
  startDate: Date;
96
96
  active: boolean;
@@ -104,8 +104,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
104
104
  id: string | number;
105
105
  createdAt: Date;
106
106
  updatedAt: Date;
107
- name: string;
108
107
  userId: string | number;
108
+ name: string;
109
109
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
110
110
  startDate: Date;
111
111
  active: boolean;
@@ -1417,8 +1417,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1417
1417
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1418
1418
  }, "strip", z.ZodTypeAny, {
1419
1419
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1420
- name: string;
1421
1420
  userId: string | number;
1421
+ name: string;
1422
1422
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1423
1423
  accountId: string;
1424
1424
  locale?: string | null | undefined;
@@ -1431,8 +1431,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1431
1431
  conversationsMaxDelay?: number | null | undefined;
1432
1432
  }, {
1433
1433
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1434
- name: string;
1435
1434
  userId: string | number;
1435
+ name: string;
1436
1436
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1437
1437
  accountId: string;
1438
1438
  locale?: string | null | undefined;
@@ -1463,8 +1463,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1463
1463
  conversationId?: string | null | undefined;
1464
1464
  account?: {
1465
1465
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1466
- name: string;
1467
1466
  userId: string | number;
1467
+ name: string;
1468
1468
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1469
1469
  accountId: string;
1470
1470
  locale?: string | null | undefined;
@@ -1492,8 +1492,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1492
1492
  conversationId?: string | null | undefined;
1493
1493
  account?: {
1494
1494
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1495
- name: string;
1496
1495
  userId: string | number;
1496
+ name: string;
1497
1497
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1498
1498
  accountId: string;
1499
1499
  locale?: string | null | undefined;
@@ -1512,8 +1512,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1512
1512
  id: string | number;
1513
1513
  createdAt: Date;
1514
1514
  updatedAt: Date;
1515
- name: string;
1516
1515
  userId: string | number;
1516
+ name: string;
1517
1517
  sold: boolean;
1518
1518
  state?: number | null | undefined;
1519
1519
  fees?: {
@@ -1522,8 +1522,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1522
1522
  id: string | number;
1523
1523
  createdAt: Date;
1524
1524
  updatedAt: Date;
1525
- name: string;
1526
1525
  userId: string | number;
1526
+ name: string;
1527
1527
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1528
1528
  startDate: Date;
1529
1529
  active: boolean;
@@ -1581,8 +1581,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1581
1581
  conversationId?: string | null | undefined;
1582
1582
  account?: {
1583
1583
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1584
- name: string;
1585
1584
  userId: string | number;
1585
+ name: string;
1586
1586
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1587
1587
  accountId: string;
1588
1588
  locale?: string | null | undefined;
@@ -1790,8 +1790,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1790
1790
  id: string | number;
1791
1791
  createdAt: Date;
1792
1792
  updatedAt: Date;
1793
- name: string;
1794
1793
  userId: string | number;
1794
+ name: string;
1795
1795
  sold: boolean;
1796
1796
  state?: number | null | undefined;
1797
1797
  fees?: {
@@ -1800,8 +1800,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1800
1800
  id: string | number;
1801
1801
  createdAt: Date;
1802
1802
  updatedAt: Date;
1803
- name: string;
1804
1803
  userId: string | number;
1804
+ name: string;
1805
1805
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
1806
1806
  startDate: Date;
1807
1807
  active: boolean;
@@ -1859,8 +1859,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
1859
1859
  conversationId?: string | null | undefined;
1860
1860
  account?: {
1861
1861
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
1862
- name: string;
1863
1862
  userId: string | number;
1863
+ name: string;
1864
1864
  platform: "ETSY" | "SHOPIFY" | "VINTED";
1865
1865
  accountId: string;
1866
1866
  locale?: string | null | undefined;
@@ -2073,8 +2073,8 @@ export declare const ItemsWithFiltersSchema: 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 ItemsWithFiltersSchema: 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 ItemsWithFiltersSchema: 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;
@@ -2357,8 +2357,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2357
2357
  id: string | number;
2358
2358
  createdAt: Date;
2359
2359
  updatedAt: Date;
2360
- name: string;
2361
2360
  userId: string | number;
2361
+ name: string;
2362
2362
  sold: boolean;
2363
2363
  state?: number | null | undefined;
2364
2364
  fees?: {
@@ -2367,8 +2367,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2367
2367
  id: string | number;
2368
2368
  createdAt: Date;
2369
2369
  updatedAt: Date;
2370
- name: string;
2371
2370
  userId: string | number;
2371
+ name: string;
2372
2372
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2373
2373
  startDate: Date;
2374
2374
  active: boolean;
@@ -2426,8 +2426,8 @@ export declare const ItemsWithFiltersSchema: z.ZodObject<{
2426
2426
  conversationId?: string | null | undefined;
2427
2427
  account?: {
2428
2428
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2429
- name: string;
2430
2429
  userId: string | number;
2430
+ name: string;
2431
2431
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2432
2432
  accountId: string;
2433
2433
  locale?: string | null | undefined;
@@ -87,8 +87,8 @@ export declare const UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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 UpdatedItemSchema: 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;
@@ -2098,8 +2098,8 @@ export declare const UpdatedItemSchema: z.ZodObject<{
2098
2098
  id: string | number;
2099
2099
  createdAt: Date;
2100
2100
  updatedAt: Date;
2101
- name: string;
2102
2101
  userId: string | number;
2102
+ name: string;
2103
2103
  sold: boolean;
2104
2104
  state?: number | null | undefined;
2105
2105
  fees?: {
@@ -2108,8 +2108,8 @@ export declare const UpdatedItemSchema: z.ZodObject<{
2108
2108
  id: string | number;
2109
2109
  createdAt: Date;
2110
2110
  updatedAt: Date;
2111
- name: string;
2112
2111
  userId: string | number;
2112
+ name: string;
2113
2113
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2114
2114
  startDate: Date;
2115
2115
  active: boolean;
@@ -2167,8 +2167,8 @@ export declare const UpdatedItemSchema: z.ZodObject<{
2167
2167
  conversationId?: string | null | undefined;
2168
2168
  account?: {
2169
2169
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2170
- name: string;
2171
2170
  userId: string | number;
2171
+ name: string;
2172
2172
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2173
2173
  accountId: string;
2174
2174
  locale?: string | null | undefined;
@@ -2386,8 +2386,8 @@ export declare const UpdatedItemSchema: z.ZodObject<{
2386
2386
  id: string | number;
2387
2387
  createdAt: Date;
2388
2388
  updatedAt: Date;
2389
- name: string;
2390
2389
  userId: string | number;
2390
+ name: string;
2391
2391
  sold: boolean;
2392
2392
  state?: number | null | undefined;
2393
2393
  fees?: {
@@ -2396,8 +2396,8 @@ export declare const UpdatedItemSchema: z.ZodObject<{
2396
2396
  id: string | number;
2397
2397
  createdAt: Date;
2398
2398
  updatedAt: Date;
2399
- name: string;
2400
2399
  userId: string | number;
2400
+ name: string;
2401
2401
  recurrence: "UNIQUE" | "MONTHLY" | "YEARLY";
2402
2402
  startDate: Date;
2403
2403
  active: boolean;
@@ -2455,8 +2455,8 @@ export declare const UpdatedItemSchema: z.ZodObject<{
2455
2455
  conversationId?: string | null | undefined;
2456
2456
  account?: {
2457
2457
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
2458
- name: string;
2459
2458
  userId: string | number;
2459
+ name: string;
2460
2460
  platform: "ETSY" | "SHOPIFY" | "VINTED";
2461
2461
  accountId: string;
2462
2462
  locale?: string | null | undefined;
@@ -32,8 +32,8 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
32
32
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
33
33
  }, "strip", z.ZodTypeAny, {
34
34
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
35
- name: string;
36
35
  userId: string | number;
36
+ name: string;
37
37
  platform: "ETSY" | "SHOPIFY" | "VINTED";
38
38
  accountId: string;
39
39
  locale?: string | null | undefined;
@@ -46,8 +46,8 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
46
46
  conversationsMaxDelay?: number | null | undefined;
47
47
  }, {
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;
@@ -78,8 +78,8 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
78
78
  conversationId?: string | null | undefined;
79
79
  account?: {
80
80
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
81
- name: string;
82
81
  userId: string | number;
82
+ name: string;
83
83
  platform: "ETSY" | "SHOPIFY" | "VINTED";
84
84
  accountId: string;
85
85
  locale?: string | null | undefined;
@@ -107,8 +107,8 @@ export declare const ItemOnPlatformSchema: z.ZodObject<{
107
107
  conversationId?: string | null | undefined;
108
108
  account?: {
109
109
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
110
- name: string;
111
110
  userId: string | number;
111
+ name: string;
112
112
  platform: "ETSY" | "SHOPIFY" | "VINTED";
113
113
  accountId: string;
114
114
  locale?: string | null | undefined;