controlresell 2.4.9 → 2.4.19
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 +2 -2
- package/src/com/controlresell/models/items/CreatedItems.d.ts +42 -0
- package/src/com/controlresell/models/items/CreatedItems.d.ts.map +1 -1
- package/src/com/controlresell/models/items/Item.d.ts +34 -0
- package/src/com/controlresell/models/items/Item.d.ts.map +1 -1
- package/src/com/controlresell/models/items/ItemsWithFilters.d.ts +42 -0
- package/src/com/controlresell/models/items/ItemsWithFilters.d.ts.map +1 -1
- package/src/com/controlresell/models/items/UpdatedItem.d.ts +42 -0
- package/src/com/controlresell/models/items/UpdatedItem.d.ts.map +1 -1
- package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts +26 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts.map +1 -1
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +33 -0
- package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts +26 -0
- package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts +35 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.d.ts +811 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.js +13 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.js.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.ts +11 -0
- package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts +34 -0
- package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts +6 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js +4 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js.map +1 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.ts +4 -1
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.d.ts +16 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.js +10 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.js.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.ts +8 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.d.ts +16 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.js +11 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.js.map +1 -0
- package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.ts +9 -0
- package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts +60 -0
- package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts +37 -0
- package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.d.ts +10 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.d.ts.map +1 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.js +8 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.js.map +1 -0
- package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.ts +6 -0
- package/src/com/controlresell/models/platforms/orders/Order.d.ts +42 -0
- package/src/com/controlresell/models/platforms/orders/Order.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +26 -0
- package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +34 -0
- package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +92 -0
- package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts +42 -0
- package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts +34 -0
- package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts.map +1 -1
- package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts +92 -0
- package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/Preference.d.ts +79 -0
- package/src/com/controlresell/models/preferences/Preference.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts +68 -0
- package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts +237 -0
- package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts +168 -0
- package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts +69 -0
- package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts +69 -0
- package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts +69 -0
- package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts +29 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts +40 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js +7 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.ts +8 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts +39 -0
- package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts +10 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts.map +1 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js +8 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js.map +1 -0
- package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.ts +6 -0
- package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts +306 -0
- package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts +59 -0
- package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts +59 -0
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts +98 -0
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts +59 -0
- package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +26 -0
- package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +26 -0
- package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.d.ts +18 -0
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.js +3 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.js.map +1 -1
- package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.ts +3 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts +18 -0
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts.map +1 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.js +3 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.js.map +1 -1
- package/src/com/controlresell/models/users/platforms/UserOnPlatform.ts +3 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +550 -0
- package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.js +2 -0
- package/src/com/controlresell/models/users/ws/UserWsPayload.js.map +1 -1
- package/src/com/controlresell/models/users/ws/UserWsPayload.ts +2 -0
- package/src/index.d.ts +5 -0
- package/src/index.d.ts.map +1 -1
- package/src/index.js +13 -3
- package/src/index.js.map +1 -1
- package/src/index.ts +5 -0
|
@@ -17,12 +17,26 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
|
|
|
17
17
|
name: z.ZodString;
|
|
18
18
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
20
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
21
|
+
startsAt: z.ZodDate;
|
|
22
|
+
endsAt: z.ZodDate;
|
|
23
|
+
}, "strip", z.ZodTypeAny, {
|
|
24
|
+
startsAt: Date;
|
|
25
|
+
endsAt: Date;
|
|
26
|
+
}, {
|
|
27
|
+
startsAt: Date;
|
|
28
|
+
endsAt: Date;
|
|
29
|
+
}>>>;
|
|
20
30
|
}, "strip", z.ZodTypeAny, {
|
|
21
31
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
22
32
|
userId: string | number;
|
|
23
33
|
name: string;
|
|
24
34
|
platform: "VINTED" | "SHOPIFY";
|
|
25
35
|
accountId: string;
|
|
36
|
+
night?: {
|
|
37
|
+
startsAt: Date;
|
|
38
|
+
endsAt: Date;
|
|
39
|
+
} | null | undefined;
|
|
26
40
|
locale?: string | null | undefined;
|
|
27
41
|
}, {
|
|
28
42
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -30,6 +44,10 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
|
|
|
30
44
|
name: string;
|
|
31
45
|
platform: "VINTED" | "SHOPIFY";
|
|
32
46
|
accountId: string;
|
|
47
|
+
night?: {
|
|
48
|
+
startsAt: Date;
|
|
49
|
+
endsAt: Date;
|
|
50
|
+
} | null | undefined;
|
|
33
51
|
locale?: string | null | undefined;
|
|
34
52
|
}>>>;
|
|
35
53
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -46,6 +64,10 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
|
|
|
46
64
|
name: string;
|
|
47
65
|
platform: "VINTED" | "SHOPIFY";
|
|
48
66
|
accountId: string;
|
|
67
|
+
night?: {
|
|
68
|
+
startsAt: Date;
|
|
69
|
+
endsAt: Date;
|
|
70
|
+
} | null | undefined;
|
|
49
71
|
locale?: string | null | undefined;
|
|
50
72
|
} | null | undefined;
|
|
51
73
|
}, {
|
|
@@ -62,6 +84,10 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
|
|
|
62
84
|
name: string;
|
|
63
85
|
platform: "VINTED" | "SHOPIFY";
|
|
64
86
|
accountId: string;
|
|
87
|
+
night?: {
|
|
88
|
+
startsAt: Date;
|
|
89
|
+
endsAt: Date;
|
|
90
|
+
} | null | undefined;
|
|
65
91
|
locale?: string | null | undefined;
|
|
66
92
|
} | null | undefined;
|
|
67
93
|
}>>>;
|
|
@@ -82,6 +108,10 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
|
|
|
82
108
|
name: string;
|
|
83
109
|
platform: "VINTED" | "SHOPIFY";
|
|
84
110
|
accountId: string;
|
|
111
|
+
night?: {
|
|
112
|
+
startsAt: Date;
|
|
113
|
+
endsAt: Date;
|
|
114
|
+
} | null | undefined;
|
|
85
115
|
locale?: string | null | undefined;
|
|
86
116
|
} | null | undefined;
|
|
87
117
|
} | null | undefined;
|
|
@@ -102,6 +132,10 @@ export declare const ItemInTransactionSchema: z.ZodObject<{
|
|
|
102
132
|
name: string;
|
|
103
133
|
platform: "VINTED" | "SHOPIFY";
|
|
104
134
|
accountId: string;
|
|
135
|
+
night?: {
|
|
136
|
+
startsAt: Date;
|
|
137
|
+
endsAt: Date;
|
|
138
|
+
} | null | undefined;
|
|
105
139
|
locale?: string | null | undefined;
|
|
106
140
|
} | null | undefined;
|
|
107
141
|
} | null | undefined;
|
package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ItemInTransaction.d.ts","sourceRoot":"","sources":["ItemInTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,uBAAuB
|
|
1
|
+
{"version":3,"file":"ItemInTransaction.d.ts","sourceRoot":"","sources":["ItemInTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIlC,CAAA;AACF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
|
|
@@ -26,12 +26,26 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
26
26
|
name: z.ZodString;
|
|
27
27
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28
28
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
29
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30
|
+
startsAt: z.ZodDate;
|
|
31
|
+
endsAt: z.ZodDate;
|
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
|
33
|
+
startsAt: Date;
|
|
34
|
+
endsAt: Date;
|
|
35
|
+
}, {
|
|
36
|
+
startsAt: Date;
|
|
37
|
+
endsAt: Date;
|
|
38
|
+
}>>>;
|
|
29
39
|
}, "strip", z.ZodTypeAny, {
|
|
30
40
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
31
41
|
userId: string | number;
|
|
32
42
|
name: string;
|
|
33
43
|
platform: "VINTED" | "SHOPIFY";
|
|
34
44
|
accountId: string;
|
|
45
|
+
night?: {
|
|
46
|
+
startsAt: Date;
|
|
47
|
+
endsAt: Date;
|
|
48
|
+
} | null | undefined;
|
|
35
49
|
locale?: string | null | undefined;
|
|
36
50
|
}, {
|
|
37
51
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -39,6 +53,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
39
53
|
name: string;
|
|
40
54
|
platform: "VINTED" | "SHOPIFY";
|
|
41
55
|
accountId: string;
|
|
56
|
+
night?: {
|
|
57
|
+
startsAt: Date;
|
|
58
|
+
endsAt: Date;
|
|
59
|
+
} | null | undefined;
|
|
42
60
|
locale?: string | null | undefined;
|
|
43
61
|
}>>>;
|
|
44
62
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -55,6 +73,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
55
73
|
name: string;
|
|
56
74
|
platform: "VINTED" | "SHOPIFY";
|
|
57
75
|
accountId: string;
|
|
76
|
+
night?: {
|
|
77
|
+
startsAt: Date;
|
|
78
|
+
endsAt: Date;
|
|
79
|
+
} | null | undefined;
|
|
58
80
|
locale?: string | null | undefined;
|
|
59
81
|
} | null | undefined;
|
|
60
82
|
}, {
|
|
@@ -71,6 +93,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
71
93
|
name: string;
|
|
72
94
|
platform: "VINTED" | "SHOPIFY";
|
|
73
95
|
accountId: string;
|
|
96
|
+
night?: {
|
|
97
|
+
startsAt: Date;
|
|
98
|
+
endsAt: Date;
|
|
99
|
+
} | null | undefined;
|
|
74
100
|
locale?: string | null | undefined;
|
|
75
101
|
} | null | undefined;
|
|
76
102
|
}>>>;
|
|
@@ -91,6 +117,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
91
117
|
name: string;
|
|
92
118
|
platform: "VINTED" | "SHOPIFY";
|
|
93
119
|
accountId: string;
|
|
120
|
+
night?: {
|
|
121
|
+
startsAt: Date;
|
|
122
|
+
endsAt: Date;
|
|
123
|
+
} | null | undefined;
|
|
94
124
|
locale?: string | null | undefined;
|
|
95
125
|
} | null | undefined;
|
|
96
126
|
} | null | undefined;
|
|
@@ -111,6 +141,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
111
141
|
name: string;
|
|
112
142
|
platform: "VINTED" | "SHOPIFY";
|
|
113
143
|
accountId: string;
|
|
144
|
+
night?: {
|
|
145
|
+
startsAt: Date;
|
|
146
|
+
endsAt: Date;
|
|
147
|
+
} | null | undefined;
|
|
114
148
|
locale?: string | null | undefined;
|
|
115
149
|
} | null | undefined;
|
|
116
150
|
} | null | undefined;
|
|
@@ -136,6 +170,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
136
170
|
name: string;
|
|
137
171
|
platform: "VINTED" | "SHOPIFY";
|
|
138
172
|
accountId: string;
|
|
173
|
+
night?: {
|
|
174
|
+
startsAt: Date;
|
|
175
|
+
endsAt: Date;
|
|
176
|
+
} | null | undefined;
|
|
139
177
|
locale?: string | null | undefined;
|
|
140
178
|
} | null | undefined;
|
|
141
179
|
} | null | undefined;
|
|
@@ -165,6 +203,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
165
203
|
name: string;
|
|
166
204
|
platform: "VINTED" | "SHOPIFY";
|
|
167
205
|
accountId: string;
|
|
206
|
+
night?: {
|
|
207
|
+
startsAt: Date;
|
|
208
|
+
endsAt: Date;
|
|
209
|
+
} | null | undefined;
|
|
168
210
|
locale?: string | null | undefined;
|
|
169
211
|
} | null | undefined;
|
|
170
212
|
} | null | undefined;
|
|
@@ -615,12 +657,26 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
615
657
|
name: z.ZodString;
|
|
616
658
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
617
659
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
660
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
661
|
+
startsAt: z.ZodDate;
|
|
662
|
+
endsAt: z.ZodDate;
|
|
663
|
+
}, "strip", z.ZodTypeAny, {
|
|
664
|
+
startsAt: Date;
|
|
665
|
+
endsAt: Date;
|
|
666
|
+
}, {
|
|
667
|
+
startsAt: Date;
|
|
668
|
+
endsAt: Date;
|
|
669
|
+
}>>>;
|
|
618
670
|
}, "strip", z.ZodTypeAny, {
|
|
619
671
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
620
672
|
userId: string | number;
|
|
621
673
|
name: string;
|
|
622
674
|
platform: "VINTED" | "SHOPIFY";
|
|
623
675
|
accountId: string;
|
|
676
|
+
night?: {
|
|
677
|
+
startsAt: Date;
|
|
678
|
+
endsAt: Date;
|
|
679
|
+
} | null | undefined;
|
|
624
680
|
locale?: string | null | undefined;
|
|
625
681
|
}, {
|
|
626
682
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -628,6 +684,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
628
684
|
name: string;
|
|
629
685
|
platform: "VINTED" | "SHOPIFY";
|
|
630
686
|
accountId: string;
|
|
687
|
+
night?: {
|
|
688
|
+
startsAt: Date;
|
|
689
|
+
endsAt: Date;
|
|
690
|
+
} | null | undefined;
|
|
631
691
|
locale?: string | null | undefined;
|
|
632
692
|
}>>>;
|
|
633
693
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -644,6 +704,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
644
704
|
name: string;
|
|
645
705
|
platform: "VINTED" | "SHOPIFY";
|
|
646
706
|
accountId: string;
|
|
707
|
+
night?: {
|
|
708
|
+
startsAt: Date;
|
|
709
|
+
endsAt: Date;
|
|
710
|
+
} | null | undefined;
|
|
647
711
|
locale?: string | null | undefined;
|
|
648
712
|
} | null | undefined;
|
|
649
713
|
}, {
|
|
@@ -660,6 +724,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
660
724
|
name: string;
|
|
661
725
|
platform: "VINTED" | "SHOPIFY";
|
|
662
726
|
accountId: string;
|
|
727
|
+
night?: {
|
|
728
|
+
startsAt: Date;
|
|
729
|
+
endsAt: Date;
|
|
730
|
+
} | null | undefined;
|
|
663
731
|
locale?: string | null | undefined;
|
|
664
732
|
} | null | undefined;
|
|
665
733
|
}>, "many">>>;
|
|
@@ -705,6 +773,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
705
773
|
name: string;
|
|
706
774
|
platform: "VINTED" | "SHOPIFY";
|
|
707
775
|
accountId: string;
|
|
776
|
+
night?: {
|
|
777
|
+
startsAt: Date;
|
|
778
|
+
endsAt: Date;
|
|
779
|
+
} | null | undefined;
|
|
708
780
|
locale?: string | null | undefined;
|
|
709
781
|
} | null | undefined;
|
|
710
782
|
}[] | null | undefined;
|
|
@@ -848,6 +920,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
848
920
|
name: string;
|
|
849
921
|
platform: "VINTED" | "SHOPIFY";
|
|
850
922
|
accountId: string;
|
|
923
|
+
night?: {
|
|
924
|
+
startsAt: Date;
|
|
925
|
+
endsAt: Date;
|
|
926
|
+
} | null | undefined;
|
|
851
927
|
locale?: string | null | undefined;
|
|
852
928
|
} | null | undefined;
|
|
853
929
|
}[] | null | undefined;
|
|
@@ -993,6 +1069,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
993
1069
|
name: string;
|
|
994
1070
|
platform: "VINTED" | "SHOPIFY";
|
|
995
1071
|
accountId: string;
|
|
1072
|
+
night?: {
|
|
1073
|
+
startsAt: Date;
|
|
1074
|
+
endsAt: Date;
|
|
1075
|
+
} | null | undefined;
|
|
996
1076
|
locale?: string | null | undefined;
|
|
997
1077
|
} | null | undefined;
|
|
998
1078
|
}[] | null | undefined;
|
|
@@ -1118,6 +1198,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
1118
1198
|
name: string;
|
|
1119
1199
|
platform: "VINTED" | "SHOPIFY";
|
|
1120
1200
|
accountId: string;
|
|
1201
|
+
night?: {
|
|
1202
|
+
startsAt: Date;
|
|
1203
|
+
endsAt: Date;
|
|
1204
|
+
} | null | undefined;
|
|
1121
1205
|
locale?: string | null | undefined;
|
|
1122
1206
|
} | null | undefined;
|
|
1123
1207
|
} | null | undefined;
|
|
@@ -1168,6 +1252,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
1168
1252
|
name: string;
|
|
1169
1253
|
platform: "VINTED" | "SHOPIFY";
|
|
1170
1254
|
accountId: string;
|
|
1255
|
+
night?: {
|
|
1256
|
+
startsAt: Date;
|
|
1257
|
+
endsAt: Date;
|
|
1258
|
+
} | null | undefined;
|
|
1171
1259
|
locale?: string | null | undefined;
|
|
1172
1260
|
} | null | undefined;
|
|
1173
1261
|
}[] | null | undefined;
|
|
@@ -1293,6 +1381,10 @@ export declare const TransactionWithItemsSchema: z.ZodObject<{
|
|
|
1293
1381
|
name: string;
|
|
1294
1382
|
platform: "VINTED" | "SHOPIFY";
|
|
1295
1383
|
accountId: string;
|
|
1384
|
+
night?: {
|
|
1385
|
+
startsAt: Date;
|
|
1386
|
+
endsAt: Date;
|
|
1387
|
+
} | null | undefined;
|
|
1296
1388
|
locale?: string | null | undefined;
|
|
1297
1389
|
} | null | undefined;
|
|
1298
1390
|
} | null | undefined;
|
package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TransactionWithItems.d.ts","sourceRoot":"","sources":["TransactionWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"TransactionWithItems.d.ts","sourceRoot":"","sources":["TransactionWithItems.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGrC,CAAA;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAA"}
|
|
@@ -87,6 +87,25 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
87
87
|
data: {
|
|
88
88
|
text: string;
|
|
89
89
|
};
|
|
90
|
+
}>, z.ZodObject<{
|
|
91
|
+
data: z.ZodObject<{
|
|
92
|
+
texts: z.ZodArray<z.ZodString, "many">;
|
|
93
|
+
}, "strip", z.ZodTypeAny, {
|
|
94
|
+
texts: string[];
|
|
95
|
+
}, {
|
|
96
|
+
texts: string[];
|
|
97
|
+
}>;
|
|
98
|
+
type: z.ZodLiteral<"TEXTS">;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
type: "TEXTS";
|
|
101
|
+
data: {
|
|
102
|
+
texts: string[];
|
|
103
|
+
};
|
|
104
|
+
}, {
|
|
105
|
+
type: "TEXTS";
|
|
106
|
+
data: {
|
|
107
|
+
texts: string[];
|
|
108
|
+
};
|
|
90
109
|
}>, z.ZodObject<{
|
|
91
110
|
data: z.ZodObject<{
|
|
92
111
|
seconds: z.ZodNumber;
|
|
@@ -126,6 +145,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
126
145
|
data: {
|
|
127
146
|
text: string;
|
|
128
147
|
};
|
|
148
|
+
} | {
|
|
149
|
+
type: "TEXTS";
|
|
150
|
+
data: {
|
|
151
|
+
texts: string[];
|
|
152
|
+
};
|
|
129
153
|
} | {
|
|
130
154
|
type: "WAIT";
|
|
131
155
|
data: {
|
|
@@ -152,6 +176,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
152
176
|
data: {
|
|
153
177
|
text: string;
|
|
154
178
|
};
|
|
179
|
+
} | {
|
|
180
|
+
type: "TEXTS";
|
|
181
|
+
data: {
|
|
182
|
+
texts: string[];
|
|
183
|
+
};
|
|
155
184
|
} | {
|
|
156
185
|
type: "WAIT";
|
|
157
186
|
data: {
|
|
@@ -180,6 +209,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
180
209
|
data: {
|
|
181
210
|
text: string;
|
|
182
211
|
};
|
|
212
|
+
} | {
|
|
213
|
+
type: "TEXTS";
|
|
214
|
+
data: {
|
|
215
|
+
texts: string[];
|
|
216
|
+
};
|
|
183
217
|
} | {
|
|
184
218
|
type: "WAIT";
|
|
185
219
|
data: {
|
|
@@ -208,6 +242,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
208
242
|
data: {
|
|
209
243
|
text: string;
|
|
210
244
|
};
|
|
245
|
+
} | {
|
|
246
|
+
type: "TEXTS";
|
|
247
|
+
data: {
|
|
248
|
+
texts: string[];
|
|
249
|
+
};
|
|
211
250
|
} | {
|
|
212
251
|
type: "WAIT";
|
|
213
252
|
data: {
|
|
@@ -240,6 +279,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
240
279
|
data: {
|
|
241
280
|
text: string;
|
|
242
281
|
};
|
|
282
|
+
} | {
|
|
283
|
+
type: "TEXTS";
|
|
284
|
+
data: {
|
|
285
|
+
texts: string[];
|
|
286
|
+
};
|
|
243
287
|
} | {
|
|
244
288
|
type: "WAIT";
|
|
245
289
|
data: {
|
|
@@ -271,6 +315,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
271
315
|
data: {
|
|
272
316
|
text: string;
|
|
273
317
|
};
|
|
318
|
+
} | {
|
|
319
|
+
type: "TEXTS";
|
|
320
|
+
data: {
|
|
321
|
+
texts: string[];
|
|
322
|
+
};
|
|
274
323
|
} | {
|
|
275
324
|
type: "WAIT";
|
|
276
325
|
data: {
|
|
@@ -489,6 +538,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
489
538
|
data: {
|
|
490
539
|
text: string;
|
|
491
540
|
};
|
|
541
|
+
} | {
|
|
542
|
+
type: "TEXTS";
|
|
543
|
+
data: {
|
|
544
|
+
texts: string[];
|
|
545
|
+
};
|
|
492
546
|
} | {
|
|
493
547
|
type: "WAIT";
|
|
494
548
|
data: {
|
|
@@ -567,6 +621,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
567
621
|
data: {
|
|
568
622
|
text: string;
|
|
569
623
|
};
|
|
624
|
+
} | {
|
|
625
|
+
type: "TEXTS";
|
|
626
|
+
data: {
|
|
627
|
+
texts: string[];
|
|
628
|
+
};
|
|
570
629
|
} | {
|
|
571
630
|
type: "WAIT";
|
|
572
631
|
data: {
|
|
@@ -653,6 +712,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
653
712
|
data: {
|
|
654
713
|
text: string;
|
|
655
714
|
};
|
|
715
|
+
} | {
|
|
716
|
+
type: "TEXTS";
|
|
717
|
+
data: {
|
|
718
|
+
texts: string[];
|
|
719
|
+
};
|
|
656
720
|
} | {
|
|
657
721
|
type: "WAIT";
|
|
658
722
|
data: {
|
|
@@ -739,6 +803,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
739
803
|
data: {
|
|
740
804
|
text: string;
|
|
741
805
|
};
|
|
806
|
+
} | {
|
|
807
|
+
type: "TEXTS";
|
|
808
|
+
data: {
|
|
809
|
+
texts: string[];
|
|
810
|
+
};
|
|
742
811
|
} | {
|
|
743
812
|
type: "WAIT";
|
|
744
813
|
data: {
|
|
@@ -833,6 +902,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
833
902
|
data: {
|
|
834
903
|
text: string;
|
|
835
904
|
};
|
|
905
|
+
} | {
|
|
906
|
+
type: "TEXTS";
|
|
907
|
+
data: {
|
|
908
|
+
texts: string[];
|
|
909
|
+
};
|
|
836
910
|
} | {
|
|
837
911
|
type: "WAIT";
|
|
838
912
|
data: {
|
|
@@ -927,6 +1001,11 @@ export declare const PreferenceSchema: z.ZodObject<{
|
|
|
927
1001
|
data: {
|
|
928
1002
|
text: string;
|
|
929
1003
|
};
|
|
1004
|
+
} | {
|
|
1005
|
+
type: "TEXTS";
|
|
1006
|
+
data: {
|
|
1007
|
+
texts: string[];
|
|
1008
|
+
};
|
|
930
1009
|
} | {
|
|
931
1010
|
type: "WAIT";
|
|
932
1011
|
data: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Preference.d.ts","sourceRoot":"","sources":["Preference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"Preference.d.ts","sourceRoot":"","sources":["Preference.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAA;AACF,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAA"}
|
|
@@ -441,12 +441,26 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
441
441
|
name: z.ZodString;
|
|
442
442
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
443
443
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
444
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
445
|
+
startsAt: z.ZodDate;
|
|
446
|
+
endsAt: z.ZodDate;
|
|
447
|
+
}, "strip", z.ZodTypeAny, {
|
|
448
|
+
startsAt: Date;
|
|
449
|
+
endsAt: Date;
|
|
450
|
+
}, {
|
|
451
|
+
startsAt: Date;
|
|
452
|
+
endsAt: Date;
|
|
453
|
+
}>>>;
|
|
444
454
|
}, "strip", z.ZodTypeAny, {
|
|
445
455
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
446
456
|
userId: string | number;
|
|
447
457
|
name: string;
|
|
448
458
|
platform: "VINTED" | "SHOPIFY";
|
|
449
459
|
accountId: string;
|
|
460
|
+
night?: {
|
|
461
|
+
startsAt: Date;
|
|
462
|
+
endsAt: Date;
|
|
463
|
+
} | null | undefined;
|
|
450
464
|
locale?: string | null | undefined;
|
|
451
465
|
}, {
|
|
452
466
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -454,6 +468,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
454
468
|
name: string;
|
|
455
469
|
platform: "VINTED" | "SHOPIFY";
|
|
456
470
|
accountId: string;
|
|
471
|
+
night?: {
|
|
472
|
+
startsAt: Date;
|
|
473
|
+
endsAt: Date;
|
|
474
|
+
} | null | undefined;
|
|
457
475
|
locale?: string | null | undefined;
|
|
458
476
|
}>>>;
|
|
459
477
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -470,6 +488,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
470
488
|
name: string;
|
|
471
489
|
platform: "VINTED" | "SHOPIFY";
|
|
472
490
|
accountId: string;
|
|
491
|
+
night?: {
|
|
492
|
+
startsAt: Date;
|
|
493
|
+
endsAt: Date;
|
|
494
|
+
} | null | undefined;
|
|
473
495
|
locale?: string | null | undefined;
|
|
474
496
|
} | null | undefined;
|
|
475
497
|
}, {
|
|
@@ -486,6 +508,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
486
508
|
name: string;
|
|
487
509
|
platform: "VINTED" | "SHOPIFY";
|
|
488
510
|
accountId: string;
|
|
511
|
+
night?: {
|
|
512
|
+
startsAt: Date;
|
|
513
|
+
endsAt: Date;
|
|
514
|
+
} | null | undefined;
|
|
489
515
|
locale?: string | null | undefined;
|
|
490
516
|
} | null | undefined;
|
|
491
517
|
}>, "many">>>;
|
|
@@ -531,6 +557,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
531
557
|
name: string;
|
|
532
558
|
platform: "VINTED" | "SHOPIFY";
|
|
533
559
|
accountId: string;
|
|
560
|
+
night?: {
|
|
561
|
+
startsAt: Date;
|
|
562
|
+
endsAt: Date;
|
|
563
|
+
} | null | undefined;
|
|
534
564
|
locale?: string | null | undefined;
|
|
535
565
|
} | null | undefined;
|
|
536
566
|
}[] | null | undefined;
|
|
@@ -674,6 +704,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
674
704
|
name: string;
|
|
675
705
|
platform: "VINTED" | "SHOPIFY";
|
|
676
706
|
accountId: string;
|
|
707
|
+
night?: {
|
|
708
|
+
startsAt: Date;
|
|
709
|
+
endsAt: Date;
|
|
710
|
+
} | null | undefined;
|
|
677
711
|
locale?: string | null | undefined;
|
|
678
712
|
} | null | undefined;
|
|
679
713
|
}[] | null | undefined;
|
|
@@ -785,12 +819,26 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
785
819
|
name: z.ZodString;
|
|
786
820
|
locale: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
787
821
|
status: z.ZodEnum<["CONNECTED", "DISCONNECTED", "ERROR"]>;
|
|
822
|
+
night: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
823
|
+
startsAt: z.ZodDate;
|
|
824
|
+
endsAt: z.ZodDate;
|
|
825
|
+
}, "strip", z.ZodTypeAny, {
|
|
826
|
+
startsAt: Date;
|
|
827
|
+
endsAt: Date;
|
|
828
|
+
}, {
|
|
829
|
+
startsAt: Date;
|
|
830
|
+
endsAt: Date;
|
|
831
|
+
}>>>;
|
|
788
832
|
}, "strip", z.ZodTypeAny, {
|
|
789
833
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
790
834
|
userId: string | number;
|
|
791
835
|
name: string;
|
|
792
836
|
platform: "VINTED" | "SHOPIFY";
|
|
793
837
|
accountId: string;
|
|
838
|
+
night?: {
|
|
839
|
+
startsAt: Date;
|
|
840
|
+
endsAt: Date;
|
|
841
|
+
} | null | undefined;
|
|
794
842
|
locale?: string | null | undefined;
|
|
795
843
|
}, {
|
|
796
844
|
status: "ERROR" | "CONNECTED" | "DISCONNECTED";
|
|
@@ -798,6 +846,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
798
846
|
name: string;
|
|
799
847
|
platform: "VINTED" | "SHOPIFY";
|
|
800
848
|
accountId: string;
|
|
849
|
+
night?: {
|
|
850
|
+
startsAt: Date;
|
|
851
|
+
endsAt: Date;
|
|
852
|
+
} | null | undefined;
|
|
801
853
|
locale?: string | null | undefined;
|
|
802
854
|
}>, "many">>>;
|
|
803
855
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -841,6 +893,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
841
893
|
name: string;
|
|
842
894
|
platform: "VINTED" | "SHOPIFY";
|
|
843
895
|
accountId: string;
|
|
896
|
+
night?: {
|
|
897
|
+
startsAt: Date;
|
|
898
|
+
endsAt: Date;
|
|
899
|
+
} | null | undefined;
|
|
844
900
|
locale?: string | null | undefined;
|
|
845
901
|
} | null | undefined;
|
|
846
902
|
}[] | null | undefined;
|
|
@@ -951,6 +1007,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
951
1007
|
name: string;
|
|
952
1008
|
platform: "VINTED" | "SHOPIFY";
|
|
953
1009
|
accountId: string;
|
|
1010
|
+
night?: {
|
|
1011
|
+
startsAt: Date;
|
|
1012
|
+
endsAt: Date;
|
|
1013
|
+
} | null | undefined;
|
|
954
1014
|
locale?: string | null | undefined;
|
|
955
1015
|
}[] | null | undefined;
|
|
956
1016
|
}, {
|
|
@@ -994,6 +1054,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
994
1054
|
name: string;
|
|
995
1055
|
platform: "VINTED" | "SHOPIFY";
|
|
996
1056
|
accountId: string;
|
|
1057
|
+
night?: {
|
|
1058
|
+
startsAt: Date;
|
|
1059
|
+
endsAt: Date;
|
|
1060
|
+
} | null | undefined;
|
|
997
1061
|
locale?: string | null | undefined;
|
|
998
1062
|
} | null | undefined;
|
|
999
1063
|
}[] | null | undefined;
|
|
@@ -1104,6 +1168,10 @@ export declare const PreferenceFilterSchema: z.ZodObject<{
|
|
|
1104
1168
|
name: string;
|
|
1105
1169
|
platform: "VINTED" | "SHOPIFY";
|
|
1106
1170
|
accountId: string;
|
|
1171
|
+
night?: {
|
|
1172
|
+
startsAt: Date;
|
|
1173
|
+
endsAt: Date;
|
|
1174
|
+
} | null | undefined;
|
|
1107
1175
|
locale?: string | null | undefined;
|
|
1108
1176
|
}[] | null | undefined;
|
|
1109
1177
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PreferenceFilter.d.ts","sourceRoot":"","sources":["PreferenceFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"PreferenceFilter.d.ts","sourceRoot":"","sources":["PreferenceFilter.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGjC,CAAA;AACF,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAA"}
|