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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "controlresell",
3
- "version": "2.8.52",
3
+ "version": "2.8.53",
4
4
  "main": "src/index.js",
5
5
  "types": "src/index.d.ts",
6
6
  "dependencies": {
@@ -0,0 +1,28 @@
1
+ import { z } from "zod";
2
+ export declare const CreateOnboardingQuizRequestSchema: z.ZodObject<{
3
+ experimentVariant: z.ZodString;
4
+ responses: z.ZodArray<z.ZodObject<{
5
+ questionKey: z.ZodString;
6
+ values: z.ZodArray<z.ZodString, "many">;
7
+ }, "strip", z.ZodTypeAny, {
8
+ values: string[];
9
+ questionKey: string;
10
+ }, {
11
+ values: string[];
12
+ questionKey: string;
13
+ }>, "many">;
14
+ }, "strip", z.ZodTypeAny, {
15
+ experimentVariant: string;
16
+ responses: {
17
+ values: string[];
18
+ questionKey: string;
19
+ }[];
20
+ }, {
21
+ experimentVariant: string;
22
+ responses: {
23
+ values: string[];
24
+ questionKey: string;
25
+ }[];
26
+ }>;
27
+ export type CreateOnboardingQuizRequest = z.infer<typeof CreateOnboardingQuizRequestSchema>;
28
+ //# sourceMappingURL=CreateOnboardingQuizRequest.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateOnboardingQuizRequest.d.ts","sourceRoot":"","sources":["CreateOnboardingQuizRequest.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;EAG5C,CAAA;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAA"}
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateOnboardingQuizRequestSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ const OnboardingQuizResponseEntry_1 = require("./OnboardingQuizResponseEntry");
6
+ exports.CreateOnboardingQuizRequestSchema = zod_1.z.object({
7
+ experimentVariant: zod_1.z.string(),
8
+ responses: zod_1.z.array(OnboardingQuizResponseEntry_1.OnboardingQuizResponseEntrySchema)
9
+ });
10
+ //# sourceMappingURL=CreateOnboardingQuizRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CreateOnboardingQuizRequest.js","sourceRoot":"","sources":["CreateOnboardingQuizRequest.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AACrB,+EAA+E;AAElE,QAAA,iCAAiC,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE;IAC7B,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,+DAAiC,CAAC;CACxD,CAAC,CAAA"}
@@ -0,0 +1,8 @@
1
+ import {z} from "zod"
2
+ import {OnboardingQuizResponseEntrySchema} from "./OnboardingQuizResponseEntry"
3
+
4
+ export const CreateOnboardingQuizRequestSchema = z.object({
5
+ experimentVariant: z.string(),
6
+ responses: z.array(OnboardingQuizResponseEntrySchema)
7
+ })
8
+ export type CreateOnboardingQuizRequest = z.infer<typeof CreateOnboardingQuizRequestSchema>
@@ -0,0 +1,13 @@
1
+ import { z } from "zod";
2
+ export declare const OnboardingQuizResponseEntrySchema: z.ZodObject<{
3
+ questionKey: z.ZodString;
4
+ values: z.ZodArray<z.ZodString, "many">;
5
+ }, "strip", z.ZodTypeAny, {
6
+ values: string[];
7
+ questionKey: string;
8
+ }, {
9
+ values: string[];
10
+ questionKey: string;
11
+ }>;
12
+ export type OnboardingQuizResponseEntry = z.infer<typeof OnboardingQuizResponseEntrySchema>;
13
+ //# sourceMappingURL=OnboardingQuizResponseEntry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OnboardingQuizResponseEntry.d.ts","sourceRoot":"","sources":["OnboardingQuizResponseEntry.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAErB,eAAO,MAAM,iCAAiC;;;;;;;;;EAG5C,CAAA;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAA"}
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OnboardingQuizResponseEntrySchema = void 0;
4
+ const zod_1 = require("zod");
5
+ exports.OnboardingQuizResponseEntrySchema = zod_1.z.object({
6
+ questionKey: zod_1.z.string(),
7
+ values: zod_1.z.array(zod_1.z.string())
8
+ });
9
+ //# sourceMappingURL=OnboardingQuizResponseEntry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"OnboardingQuizResponseEntry.js","sourceRoot":"","sources":["OnboardingQuizResponseEntry.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AAER,QAAA,iCAAiC,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,MAAM,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;CAC9B,CAAC,CAAA"}
@@ -0,0 +1,7 @@
1
+ import {z} from "zod"
2
+
3
+ export const OnboardingQuizResponseEntrySchema = z.object({
4
+ questionKey: z.string(),
5
+ values: z.array(z.string())
6
+ })
7
+ export type OnboardingQuizResponseEntry = z.infer<typeof OnboardingQuizResponseEntrySchema>
@@ -1,7 +1,7 @@
1
1
  import { z } from "zod";
2
2
  export declare const QuizResponseResponseSchema: z.ZodObject<{
3
3
  id: z.ZodNumber;
4
- user_id: z.ZodNumber;
4
+ userId: z.ZodNumber;
5
5
  monthlySalesVolume: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6
6
  favoriteCategory: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7
7
  discoverySource: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -13,9 +13,9 @@ export declare const QuizResponseResponseSchema: z.ZodObject<{
13
13
  sellingPlatforms: string[];
14
14
  purchaseSources: string[];
15
15
  id: number;
16
- user_id: number;
17
16
  createdAt: Date;
18
17
  updatedAt: Date;
18
+ userId: number;
19
19
  monthlySalesVolume?: string | null | undefined;
20
20
  favoriteCategory?: string | null | undefined;
21
21
  discoverySource?: string | null | undefined;
@@ -23,9 +23,9 @@ export declare const QuizResponseResponseSchema: z.ZodObject<{
23
23
  sellingPlatforms: string[];
24
24
  purchaseSources: string[];
25
25
  id: number;
26
- user_id: number;
27
26
  createdAt: Date;
28
27
  updatedAt: Date;
28
+ userId: number;
29
29
  monthlySalesVolume?: string | null | undefined;
30
30
  favoriteCategory?: string | null | undefined;
31
31
  discoverySource?: string | null | undefined;
@@ -4,7 +4,7 @@ exports.QuizResponseResponseSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  exports.QuizResponseResponseSchema = zod_1.z.object({
6
6
  id: zod_1.z.number(),
7
- user_id: zod_1.z.number(),
7
+ userId: zod_1.z.number(),
8
8
  monthlySalesVolume: zod_1.z.string().nullish(),
9
9
  favoriteCategory: zod_1.z.string().nullish(),
10
10
  discoverySource: zod_1.z.string().nullish(),
@@ -1 +1 @@
1
- {"version":3,"file":"QuizResponseResponse.js","sourceRoot":"","sources":["QuizResponseResponse.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AAER,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE;IACnB,kBAAkB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACxC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACtC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACrC,gBAAgB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACrC,eAAe,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACpC,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,IAAI,EAAE;IAC1B,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,IAAI,EAAE;CAC7B,CAAC,CAAA"}
1
+ {"version":3,"file":"QuizResponseResponse.js","sourceRoot":"","sources":["QuizResponseResponse.ts"],"names":[],"mappings":";;;AAAA,6BAAqB;AAER,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;IAClB,kBAAkB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACxC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACtC,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE;IACrC,gBAAgB,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACrC,eAAe,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACpC,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,IAAI,EAAE;IAC1B,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,IAAI,EAAE;CAC7B,CAAC,CAAA"}
@@ -2,7 +2,7 @@ import {z} from "zod"
2
2
 
3
3
  export const QuizResponseResponseSchema = z.object({
4
4
  id: z.number(),
5
- user_id: z.number(),
5
+ userId: z.number(),
6
6
  monthlySalesVolume: z.string().nullish(),
7
7
  favoriteCategory: z.string().nullish(),
8
8
  discoverySource: z.string().nullish(),
@@ -50,8 +50,8 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
50
50
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
51
51
  }, "strip", z.ZodTypeAny, {
52
52
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
53
- name: string;
54
53
  userId: string | number;
54
+ name: string;
55
55
  platform: "ETSY" | "SHOPIFY" | "VINTED";
56
56
  accountId: string;
57
57
  locale?: string | null | undefined;
@@ -64,8 +64,8 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
64
64
  conversationsMaxDelay?: number | null | undefined;
65
65
  }, {
66
66
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
67
- name: string;
68
67
  userId: string | number;
68
+ name: string;
69
69
  platform: "ETSY" | "SHOPIFY" | "VINTED";
70
70
  accountId: string;
71
71
  locale?: string | null | undefined;
@@ -91,8 +91,8 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
91
91
  }[] | null | undefined;
92
92
  accounts?: {
93
93
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
94
- name: string;
95
94
  userId: string | number;
95
+ name: string;
96
96
  platform: "ETSY" | "SHOPIFY" | "VINTED";
97
97
  accountId: string;
98
98
  locale?: string | null | undefined;
@@ -118,8 +118,8 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
118
118
  }[] | null | undefined;
119
119
  accounts?: {
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;
@@ -21,8 +21,8 @@ export declare const UserOnPlatformSchema: z.ZodObject<{
21
21
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
22
22
  }, "strip", z.ZodTypeAny, {
23
23
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
24
- name: string;
25
24
  userId: string | number;
25
+ name: string;
26
26
  platform: "ETSY" | "SHOPIFY" | "VINTED";
27
27
  accountId: string;
28
28
  locale?: string | null | undefined;
@@ -35,8 +35,8 @@ export declare const UserOnPlatformSchema: z.ZodObject<{
35
35
  conversationsMaxDelay?: number | null | undefined;
36
36
  }, {
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;
@@ -26,8 +26,8 @@ export declare const ConversationSchema: z.ZodObject<{
26
26
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
27
27
  }, "strip", z.ZodTypeAny, {
28
28
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
29
- name: string;
30
29
  userId: string | number;
30
+ name: string;
31
31
  platform: "ETSY" | "SHOPIFY" | "VINTED";
32
32
  accountId: string;
33
33
  locale?: string | null | undefined;
@@ -40,8 +40,8 @@ export declare const ConversationSchema: z.ZodObject<{
40
40
  conversationsMaxDelay?: number | null | undefined;
41
41
  }, {
42
42
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
43
- name: string;
44
43
  userId: string | number;
44
+ name: string;
45
45
  platform: "ETSY" | "SHOPIFY" | "VINTED";
46
46
  accountId: string;
47
47
  locale?: string | null | undefined;
@@ -324,8 +324,8 @@ export declare const ConversationSchema: z.ZodObject<{
324
324
  isPinned: boolean;
325
325
  account?: {
326
326
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
327
- name: string;
328
327
  userId: string | number;
328
+ name: string;
329
329
  platform: "ETSY" | "SHOPIFY" | "VINTED";
330
330
  accountId: string;
331
331
  locale?: string | null | undefined;
@@ -407,8 +407,8 @@ export declare const ConversationSchema: z.ZodObject<{
407
407
  isPinned: boolean;
408
408
  account?: {
409
409
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
410
- name: string;
411
410
  userId: string | number;
411
+ name: string;
412
412
  platform: "ETSY" | "SHOPIFY" | "VINTED";
413
413
  accountId: string;
414
414
  locale?: string | null | undefined;
@@ -614,8 +614,8 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
614
614
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
615
615
  }, "strip", z.ZodTypeAny, {
616
616
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
617
- name: string;
618
617
  userId: string | number;
618
+ name: string;
619
619
  platform: "ETSY" | "SHOPIFY" | "VINTED";
620
620
  accountId: string;
621
621
  locale?: string | null | undefined;
@@ -628,8 +628,8 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
628
628
  conversationsMaxDelay?: number | null | undefined;
629
629
  }, {
630
630
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
631
- name: string;
632
631
  userId: string | number;
632
+ name: string;
633
633
  platform: "ETSY" | "SHOPIFY" | "VINTED";
634
634
  accountId: string;
635
635
  locale?: string | null | undefined;
@@ -644,8 +644,8 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
644
644
  }, "strip", z.ZodTypeAny, {
645
645
  account: {
646
646
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
647
- name: string;
648
647
  userId: string | number;
648
+ name: string;
649
649
  platform: "ETSY" | "SHOPIFY" | "VINTED";
650
650
  accountId: string;
651
651
  locale?: string | null | undefined;
@@ -772,8 +772,8 @@ export declare const ConversationOnPlatformUpdateRequestSchema: z.ZodObject<{
772
772
  }, {
773
773
  account: {
774
774
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
775
- name: string;
776
775
  userId: string | number;
776
+ name: string;
777
777
  platform: "ETSY" | "SHOPIFY" | "VINTED";
778
778
  accountId: string;
779
779
  locale?: string | null | undefined;
@@ -28,8 +28,8 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
28
28
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
29
29
  }, "strip", z.ZodTypeAny, {
30
30
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
31
- name: string;
32
31
  userId: string | number;
32
+ name: string;
33
33
  platform: "ETSY" | "SHOPIFY" | "VINTED";
34
34
  accountId: string;
35
35
  locale?: string | null | undefined;
@@ -42,8 +42,8 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
42
42
  conversationsMaxDelay?: number | null | undefined;
43
43
  }, {
44
44
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
45
- name: string;
46
45
  userId: string | number;
46
+ name: string;
47
47
  platform: "ETSY" | "SHOPIFY" | "VINTED";
48
48
  accountId: string;
49
49
  locale?: string | null | undefined;
@@ -326,8 +326,8 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
326
326
  isPinned: boolean;
327
327
  account?: {
328
328
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
329
- name: string;
330
329
  userId: string | number;
330
+ name: string;
331
331
  platform: "ETSY" | "SHOPIFY" | "VINTED";
332
332
  accountId: string;
333
333
  locale?: string | null | undefined;
@@ -409,8 +409,8 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
409
409
  isPinned: boolean;
410
410
  account?: {
411
411
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
412
- name: string;
413
412
  userId: string | number;
413
+ name: string;
414
414
  platform: "ETSY" | "SHOPIFY" | "VINTED";
415
415
  accountId: string;
416
416
  locale?: string | null | undefined;
@@ -695,8 +695,8 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
695
695
  isPinned: boolean;
696
696
  account?: {
697
697
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
698
- name: string;
699
698
  userId: string | number;
699
+ name: string;
700
700
  platform: "ETSY" | "SHOPIFY" | "VINTED";
701
701
  accountId: string;
702
702
  locale?: string | null | undefined;
@@ -825,8 +825,8 @@ export declare const ConversationUpdateSchema: z.ZodObject<{
825
825
  isPinned: boolean;
826
826
  account?: {
827
827
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
828
- name: string;
829
828
  userId: string | number;
829
+ name: string;
830
830
  platform: "ETSY" | "SHOPIFY" | "VINTED";
831
831
  accountId: string;
832
832
  locale?: string | null | undefined;
@@ -39,8 +39,8 @@ export declare const UserConversationsSchema: z.ZodObject<{
39
39
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
40
40
  }, "strip", z.ZodTypeAny, {
41
41
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
42
- name: string;
43
42
  userId: string | number;
43
+ name: string;
44
44
  platform: "ETSY" | "SHOPIFY" | "VINTED";
45
45
  accountId: string;
46
46
  locale?: string | null | undefined;
@@ -53,8 +53,8 @@ export declare const UserConversationsSchema: z.ZodObject<{
53
53
  conversationsMaxDelay?: number | null | undefined;
54
54
  }, {
55
55
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
56
- name: string;
57
56
  userId: string | number;
57
+ name: string;
58
58
  platform: "ETSY" | "SHOPIFY" | "VINTED";
59
59
  accountId: string;
60
60
  locale?: string | null | undefined;
@@ -337,8 +337,8 @@ export declare const UserConversationsSchema: z.ZodObject<{
337
337
  isPinned: boolean;
338
338
  account?: {
339
339
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
340
- name: string;
341
340
  userId: string | number;
341
+ name: string;
342
342
  platform: "ETSY" | "SHOPIFY" | "VINTED";
343
343
  accountId: string;
344
344
  locale?: string | null | undefined;
@@ -420,8 +420,8 @@ export declare const UserConversationsSchema: z.ZodObject<{
420
420
  isPinned: boolean;
421
421
  account?: {
422
422
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
423
- name: string;
424
423
  userId: string | number;
424
+ name: string;
425
425
  platform: "ETSY" | "SHOPIFY" | "VINTED";
426
426
  accountId: string;
427
427
  locale?: string | null | undefined;
@@ -513,8 +513,8 @@ export declare const UserConversationsSchema: z.ZodObject<{
513
513
  isPinned: boolean;
514
514
  account?: {
515
515
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
516
- name: string;
517
516
  userId: string | number;
517
+ name: string;
518
518
  platform: "ETSY" | "SHOPIFY" | "VINTED";
519
519
  accountId: string;
520
520
  locale?: string | null | undefined;
@@ -606,8 +606,8 @@ export declare const UserConversationsSchema: z.ZodObject<{
606
606
  isPinned: boolean;
607
607
  account?: {
608
608
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
609
- name: string;
610
609
  userId: string | number;
610
+ name: string;
611
611
  platform: "ETSY" | "SHOPIFY" | "VINTED";
612
612
  accountId: string;
613
613
  locale?: string | null | undefined;
@@ -30,8 +30,8 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
30
30
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
31
31
  }, "strip", z.ZodTypeAny, {
32
32
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
33
- name: string;
34
33
  userId: string | number;
34
+ name: string;
35
35
  platform: "ETSY" | "SHOPIFY" | "VINTED";
36
36
  accountId: string;
37
37
  locale?: string | null | undefined;
@@ -44,8 +44,8 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
44
44
  conversationsMaxDelay?: number | null | undefined;
45
45
  }, {
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;
@@ -68,8 +68,8 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
68
68
  rateLimited: boolean;
69
69
  account?: {
70
70
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
71
- name: string;
72
71
  userId: string | number;
72
+ name: string;
73
73
  platform: "ETSY" | "SHOPIFY" | "VINTED";
74
74
  accountId: string;
75
75
  locale?: string | null | undefined;
@@ -92,8 +92,8 @@ export declare const ConversationFavoriteSchema: z.ZodObject<{
92
92
  rateLimited: boolean;
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;
@@ -31,8 +31,8 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
31
31
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
32
32
  }, "strip", z.ZodTypeAny, {
33
33
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
34
- name: string;
35
34
  userId: string | number;
35
+ name: string;
36
36
  platform: "ETSY" | "SHOPIFY" | "VINTED";
37
37
  accountId: string;
38
38
  locale?: string | null | undefined;
@@ -45,8 +45,8 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
45
45
  conversationsMaxDelay?: number | null | undefined;
46
46
  }, {
47
47
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
48
- name: string;
49
48
  userId: string | number;
49
+ name: string;
50
50
  platform: "ETSY" | "SHOPIFY" | "VINTED";
51
51
  accountId: string;
52
52
  locale?: string | null | undefined;
@@ -69,8 +69,8 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
69
69
  rateLimited: boolean;
70
70
  account?: {
71
71
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
72
- name: string;
73
72
  userId: string | number;
73
+ name: string;
74
74
  platform: "ETSY" | "SHOPIFY" | "VINTED";
75
75
  accountId: string;
76
76
  locale?: string | null | undefined;
@@ -93,8 +93,8 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
93
93
  rateLimited: boolean;
94
94
  account?: {
95
95
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
96
- name: string;
97
96
  userId: string | number;
97
+ name: string;
98
98
  platform: "ETSY" | "SHOPIFY" | "VINTED";
99
99
  accountId: string;
100
100
  locale?: string | null | undefined;
@@ -119,8 +119,8 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
119
119
  rateLimited: boolean;
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;
@@ -145,8 +145,8 @@ export declare const ReportRateLimitOnFavoritesSchema: z.ZodObject<{
145
145
  rateLimited: boolean;
146
146
  account?: {
147
147
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
148
- name: string;
149
148
  userId: string | number;
149
+ name: string;
150
150
  platform: "ETSY" | "SHOPIFY" | "VINTED";
151
151
  accountId: string;
152
152
  locale?: string | null | undefined;
@@ -31,8 +31,8 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
31
31
  conversationsMaxDelay: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
32
32
  }, "strip", z.ZodTypeAny, {
33
33
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
34
- name: string;
35
34
  userId: string | number;
35
+ name: string;
36
36
  platform: "ETSY" | "SHOPIFY" | "VINTED";
37
37
  accountId: string;
38
38
  locale?: string | null | undefined;
@@ -45,8 +45,8 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
45
45
  conversationsMaxDelay?: number | null | undefined;
46
46
  }, {
47
47
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
48
- name: string;
49
48
  userId: string | number;
49
+ name: string;
50
50
  platform: "ETSY" | "SHOPIFY" | "VINTED";
51
51
  accountId: string;
52
52
  locale?: string | null | undefined;
@@ -69,8 +69,8 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
69
69
  rateLimited: boolean;
70
70
  account?: {
71
71
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
72
- name: string;
73
72
  userId: string | number;
73
+ name: string;
74
74
  platform: "ETSY" | "SHOPIFY" | "VINTED";
75
75
  accountId: string;
76
76
  locale?: string | null | undefined;
@@ -93,8 +93,8 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
93
93
  rateLimited: boolean;
94
94
  account?: {
95
95
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
96
- name: string;
97
96
  userId: string | number;
97
+ name: string;
98
98
  platform: "ETSY" | "SHOPIFY" | "VINTED";
99
99
  accountId: string;
100
100
  locale?: string | null | undefined;
@@ -119,8 +119,8 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
119
119
  rateLimited: boolean;
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;
@@ -145,8 +145,8 @@ export declare const SubmitFavoritesResponseSchema: z.ZodObject<{
145
145
  rateLimited: boolean;
146
146
  account?: {
147
147
  status: "CONNECTED" | "DISCONNECTED" | "ERROR" | "LOCKED";
148
- name: string;
149
148
  userId: string | number;
149
+ name: string;
150
150
  platform: "ETSY" | "SHOPIFY" | "VINTED";
151
151
  accountId: string;
152
152
  locale?: string | null | undefined;