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
|
@@ -88,6 +88,25 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
88
88
|
data: {
|
|
89
89
|
text: string;
|
|
90
90
|
};
|
|
91
|
+
}>, z.ZodObject<{
|
|
92
|
+
data: z.ZodObject<{
|
|
93
|
+
texts: z.ZodArray<z.ZodString, "many">;
|
|
94
|
+
}, "strip", z.ZodTypeAny, {
|
|
95
|
+
texts: string[];
|
|
96
|
+
}, {
|
|
97
|
+
texts: string[];
|
|
98
|
+
}>;
|
|
99
|
+
type: z.ZodLiteral<"TEXTS">;
|
|
100
|
+
}, "strip", z.ZodTypeAny, {
|
|
101
|
+
type: "TEXTS";
|
|
102
|
+
data: {
|
|
103
|
+
texts: string[];
|
|
104
|
+
};
|
|
105
|
+
}, {
|
|
106
|
+
type: "TEXTS";
|
|
107
|
+
data: {
|
|
108
|
+
texts: string[];
|
|
109
|
+
};
|
|
91
110
|
}>, z.ZodObject<{
|
|
92
111
|
data: z.ZodObject<{
|
|
93
112
|
seconds: z.ZodNumber;
|
|
@@ -127,6 +146,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
127
146
|
data: {
|
|
128
147
|
text: string;
|
|
129
148
|
};
|
|
149
|
+
} | {
|
|
150
|
+
type: "TEXTS";
|
|
151
|
+
data: {
|
|
152
|
+
texts: string[];
|
|
153
|
+
};
|
|
130
154
|
} | {
|
|
131
155
|
type: "WAIT";
|
|
132
156
|
data: {
|
|
@@ -153,6 +177,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
153
177
|
data: {
|
|
154
178
|
text: string;
|
|
155
179
|
};
|
|
180
|
+
} | {
|
|
181
|
+
type: "TEXTS";
|
|
182
|
+
data: {
|
|
183
|
+
texts: string[];
|
|
184
|
+
};
|
|
156
185
|
} | {
|
|
157
186
|
type: "WAIT";
|
|
158
187
|
data: {
|
|
@@ -181,6 +210,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
181
210
|
data: {
|
|
182
211
|
text: string;
|
|
183
212
|
};
|
|
213
|
+
} | {
|
|
214
|
+
type: "TEXTS";
|
|
215
|
+
data: {
|
|
216
|
+
texts: string[];
|
|
217
|
+
};
|
|
184
218
|
} | {
|
|
185
219
|
type: "WAIT";
|
|
186
220
|
data: {
|
|
@@ -209,6 +243,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
209
243
|
data: {
|
|
210
244
|
text: string;
|
|
211
245
|
};
|
|
246
|
+
} | {
|
|
247
|
+
type: "TEXTS";
|
|
248
|
+
data: {
|
|
249
|
+
texts: string[];
|
|
250
|
+
};
|
|
212
251
|
} | {
|
|
213
252
|
type: "WAIT";
|
|
214
253
|
data: {
|
|
@@ -241,6 +280,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
241
280
|
data: {
|
|
242
281
|
text: string;
|
|
243
282
|
};
|
|
283
|
+
} | {
|
|
284
|
+
type: "TEXTS";
|
|
285
|
+
data: {
|
|
286
|
+
texts: string[];
|
|
287
|
+
};
|
|
244
288
|
} | {
|
|
245
289
|
type: "WAIT";
|
|
246
290
|
data: {
|
|
@@ -272,6 +316,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
272
316
|
data: {
|
|
273
317
|
text: string;
|
|
274
318
|
};
|
|
319
|
+
} | {
|
|
320
|
+
type: "TEXTS";
|
|
321
|
+
data: {
|
|
322
|
+
texts: string[];
|
|
323
|
+
};
|
|
275
324
|
} | {
|
|
276
325
|
type: "WAIT";
|
|
277
326
|
data: {
|
|
@@ -490,6 +539,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
490
539
|
data: {
|
|
491
540
|
text: string;
|
|
492
541
|
};
|
|
542
|
+
} | {
|
|
543
|
+
type: "TEXTS";
|
|
544
|
+
data: {
|
|
545
|
+
texts: string[];
|
|
546
|
+
};
|
|
493
547
|
} | {
|
|
494
548
|
type: "WAIT";
|
|
495
549
|
data: {
|
|
@@ -568,6 +622,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
568
622
|
data: {
|
|
569
623
|
text: string;
|
|
570
624
|
};
|
|
625
|
+
} | {
|
|
626
|
+
type: "TEXTS";
|
|
627
|
+
data: {
|
|
628
|
+
texts: string[];
|
|
629
|
+
};
|
|
571
630
|
} | {
|
|
572
631
|
type: "WAIT";
|
|
573
632
|
data: {
|
|
@@ -654,6 +713,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
654
713
|
data: {
|
|
655
714
|
text: string;
|
|
656
715
|
};
|
|
716
|
+
} | {
|
|
717
|
+
type: "TEXTS";
|
|
718
|
+
data: {
|
|
719
|
+
texts: string[];
|
|
720
|
+
};
|
|
657
721
|
} | {
|
|
658
722
|
type: "WAIT";
|
|
659
723
|
data: {
|
|
@@ -740,6 +804,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
740
804
|
data: {
|
|
741
805
|
text: string;
|
|
742
806
|
};
|
|
807
|
+
} | {
|
|
808
|
+
type: "TEXTS";
|
|
809
|
+
data: {
|
|
810
|
+
texts: string[];
|
|
811
|
+
};
|
|
743
812
|
} | {
|
|
744
813
|
type: "WAIT";
|
|
745
814
|
data: {
|
|
@@ -834,6 +903,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
834
903
|
data: {
|
|
835
904
|
text: string;
|
|
836
905
|
};
|
|
906
|
+
} | {
|
|
907
|
+
type: "TEXTS";
|
|
908
|
+
data: {
|
|
909
|
+
texts: string[];
|
|
910
|
+
};
|
|
837
911
|
} | {
|
|
838
912
|
type: "WAIT";
|
|
839
913
|
data: {
|
|
@@ -928,6 +1002,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
928
1002
|
data: {
|
|
929
1003
|
text: string;
|
|
930
1004
|
};
|
|
1005
|
+
} | {
|
|
1006
|
+
type: "TEXTS";
|
|
1007
|
+
data: {
|
|
1008
|
+
texts: string[];
|
|
1009
|
+
};
|
|
931
1010
|
} | {
|
|
932
1011
|
type: "WAIT";
|
|
933
1012
|
data: {
|
|
@@ -1066,6 +1145,25 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1066
1145
|
data: {
|
|
1067
1146
|
text: string;
|
|
1068
1147
|
};
|
|
1148
|
+
}>, z.ZodObject<{
|
|
1149
|
+
data: z.ZodObject<{
|
|
1150
|
+
texts: z.ZodArray<z.ZodString, "many">;
|
|
1151
|
+
}, "strip", z.ZodTypeAny, {
|
|
1152
|
+
texts: string[];
|
|
1153
|
+
}, {
|
|
1154
|
+
texts: string[];
|
|
1155
|
+
}>;
|
|
1156
|
+
type: z.ZodLiteral<"TEXTS">;
|
|
1157
|
+
}, "strip", z.ZodTypeAny, {
|
|
1158
|
+
type: "TEXTS";
|
|
1159
|
+
data: {
|
|
1160
|
+
texts: string[];
|
|
1161
|
+
};
|
|
1162
|
+
}, {
|
|
1163
|
+
type: "TEXTS";
|
|
1164
|
+
data: {
|
|
1165
|
+
texts: string[];
|
|
1166
|
+
};
|
|
1069
1167
|
}>, z.ZodObject<{
|
|
1070
1168
|
data: z.ZodObject<{
|
|
1071
1169
|
seconds: z.ZodNumber;
|
|
@@ -1105,6 +1203,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1105
1203
|
data: {
|
|
1106
1204
|
text: string;
|
|
1107
1205
|
};
|
|
1206
|
+
} | {
|
|
1207
|
+
type: "TEXTS";
|
|
1208
|
+
data: {
|
|
1209
|
+
texts: string[];
|
|
1210
|
+
};
|
|
1108
1211
|
} | {
|
|
1109
1212
|
type: "WAIT";
|
|
1110
1213
|
data: {
|
|
@@ -1131,6 +1234,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1131
1234
|
data: {
|
|
1132
1235
|
text: string;
|
|
1133
1236
|
};
|
|
1237
|
+
} | {
|
|
1238
|
+
type: "TEXTS";
|
|
1239
|
+
data: {
|
|
1240
|
+
texts: string[];
|
|
1241
|
+
};
|
|
1134
1242
|
} | {
|
|
1135
1243
|
type: "WAIT";
|
|
1136
1244
|
data: {
|
|
@@ -1159,6 +1267,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1159
1267
|
data: {
|
|
1160
1268
|
text: string;
|
|
1161
1269
|
};
|
|
1270
|
+
} | {
|
|
1271
|
+
type: "TEXTS";
|
|
1272
|
+
data: {
|
|
1273
|
+
texts: string[];
|
|
1274
|
+
};
|
|
1162
1275
|
} | {
|
|
1163
1276
|
type: "WAIT";
|
|
1164
1277
|
data: {
|
|
@@ -1187,6 +1300,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1187
1300
|
data: {
|
|
1188
1301
|
text: string;
|
|
1189
1302
|
};
|
|
1303
|
+
} | {
|
|
1304
|
+
type: "TEXTS";
|
|
1305
|
+
data: {
|
|
1306
|
+
texts: string[];
|
|
1307
|
+
};
|
|
1190
1308
|
} | {
|
|
1191
1309
|
type: "WAIT";
|
|
1192
1310
|
data: {
|
|
@@ -1219,6 +1337,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1219
1337
|
data: {
|
|
1220
1338
|
text: string;
|
|
1221
1339
|
};
|
|
1340
|
+
} | {
|
|
1341
|
+
type: "TEXTS";
|
|
1342
|
+
data: {
|
|
1343
|
+
texts: string[];
|
|
1344
|
+
};
|
|
1222
1345
|
} | {
|
|
1223
1346
|
type: "WAIT";
|
|
1224
1347
|
data: {
|
|
@@ -1250,6 +1373,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1250
1373
|
data: {
|
|
1251
1374
|
text: string;
|
|
1252
1375
|
};
|
|
1376
|
+
} | {
|
|
1377
|
+
type: "TEXTS";
|
|
1378
|
+
data: {
|
|
1379
|
+
texts: string[];
|
|
1380
|
+
};
|
|
1253
1381
|
} | {
|
|
1254
1382
|
type: "WAIT";
|
|
1255
1383
|
data: {
|
|
@@ -1468,6 +1596,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1468
1596
|
data: {
|
|
1469
1597
|
text: string;
|
|
1470
1598
|
};
|
|
1599
|
+
} | {
|
|
1600
|
+
type: "TEXTS";
|
|
1601
|
+
data: {
|
|
1602
|
+
texts: string[];
|
|
1603
|
+
};
|
|
1471
1604
|
} | {
|
|
1472
1605
|
type: "WAIT";
|
|
1473
1606
|
data: {
|
|
@@ -1546,6 +1679,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1546
1679
|
data: {
|
|
1547
1680
|
text: string;
|
|
1548
1681
|
};
|
|
1682
|
+
} | {
|
|
1683
|
+
type: "TEXTS";
|
|
1684
|
+
data: {
|
|
1685
|
+
texts: string[];
|
|
1686
|
+
};
|
|
1549
1687
|
} | {
|
|
1550
1688
|
type: "WAIT";
|
|
1551
1689
|
data: {
|
|
@@ -1632,6 +1770,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1632
1770
|
data: {
|
|
1633
1771
|
text: string;
|
|
1634
1772
|
};
|
|
1773
|
+
} | {
|
|
1774
|
+
type: "TEXTS";
|
|
1775
|
+
data: {
|
|
1776
|
+
texts: string[];
|
|
1777
|
+
};
|
|
1635
1778
|
} | {
|
|
1636
1779
|
type: "WAIT";
|
|
1637
1780
|
data: {
|
|
@@ -1718,6 +1861,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1718
1861
|
data: {
|
|
1719
1862
|
text: string;
|
|
1720
1863
|
};
|
|
1864
|
+
} | {
|
|
1865
|
+
type: "TEXTS";
|
|
1866
|
+
data: {
|
|
1867
|
+
texts: string[];
|
|
1868
|
+
};
|
|
1721
1869
|
} | {
|
|
1722
1870
|
type: "WAIT";
|
|
1723
1871
|
data: {
|
|
@@ -1848,6 +1996,25 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1848
1996
|
data: {
|
|
1849
1997
|
text: string;
|
|
1850
1998
|
};
|
|
1999
|
+
}>, z.ZodObject<{
|
|
2000
|
+
data: z.ZodObject<{
|
|
2001
|
+
texts: z.ZodArray<z.ZodString, "many">;
|
|
2002
|
+
}, "strip", z.ZodTypeAny, {
|
|
2003
|
+
texts: string[];
|
|
2004
|
+
}, {
|
|
2005
|
+
texts: string[];
|
|
2006
|
+
}>;
|
|
2007
|
+
type: z.ZodLiteral<"TEXTS">;
|
|
2008
|
+
}, "strip", z.ZodTypeAny, {
|
|
2009
|
+
type: "TEXTS";
|
|
2010
|
+
data: {
|
|
2011
|
+
texts: string[];
|
|
2012
|
+
};
|
|
2013
|
+
}, {
|
|
2014
|
+
type: "TEXTS";
|
|
2015
|
+
data: {
|
|
2016
|
+
texts: string[];
|
|
2017
|
+
};
|
|
1851
2018
|
}>, z.ZodObject<{
|
|
1852
2019
|
data: z.ZodObject<{
|
|
1853
2020
|
seconds: z.ZodNumber;
|
|
@@ -1887,6 +2054,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1887
2054
|
data: {
|
|
1888
2055
|
text: string;
|
|
1889
2056
|
};
|
|
2057
|
+
} | {
|
|
2058
|
+
type: "TEXTS";
|
|
2059
|
+
data: {
|
|
2060
|
+
texts: string[];
|
|
2061
|
+
};
|
|
1890
2062
|
} | {
|
|
1891
2063
|
type: "WAIT";
|
|
1892
2064
|
data: {
|
|
@@ -1913,6 +2085,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1913
2085
|
data: {
|
|
1914
2086
|
text: string;
|
|
1915
2087
|
};
|
|
2088
|
+
} | {
|
|
2089
|
+
type: "TEXTS";
|
|
2090
|
+
data: {
|
|
2091
|
+
texts: string[];
|
|
2092
|
+
};
|
|
1916
2093
|
} | {
|
|
1917
2094
|
type: "WAIT";
|
|
1918
2095
|
data: {
|
|
@@ -1941,6 +2118,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1941
2118
|
data: {
|
|
1942
2119
|
text: string;
|
|
1943
2120
|
};
|
|
2121
|
+
} | {
|
|
2122
|
+
type: "TEXTS";
|
|
2123
|
+
data: {
|
|
2124
|
+
texts: string[];
|
|
2125
|
+
};
|
|
1944
2126
|
} | {
|
|
1945
2127
|
type: "WAIT";
|
|
1946
2128
|
data: {
|
|
@@ -1969,6 +2151,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
1969
2151
|
data: {
|
|
1970
2152
|
text: string;
|
|
1971
2153
|
};
|
|
2154
|
+
} | {
|
|
2155
|
+
type: "TEXTS";
|
|
2156
|
+
data: {
|
|
2157
|
+
texts: string[];
|
|
2158
|
+
};
|
|
1972
2159
|
} | {
|
|
1973
2160
|
type: "WAIT";
|
|
1974
2161
|
data: {
|
|
@@ -2001,6 +2188,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2001
2188
|
data: {
|
|
2002
2189
|
text: string;
|
|
2003
2190
|
};
|
|
2191
|
+
} | {
|
|
2192
|
+
type: "TEXTS";
|
|
2193
|
+
data: {
|
|
2194
|
+
texts: string[];
|
|
2195
|
+
};
|
|
2004
2196
|
} | {
|
|
2005
2197
|
type: "WAIT";
|
|
2006
2198
|
data: {
|
|
@@ -2032,6 +2224,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2032
2224
|
data: {
|
|
2033
2225
|
text: string;
|
|
2034
2226
|
};
|
|
2227
|
+
} | {
|
|
2228
|
+
type: "TEXTS";
|
|
2229
|
+
data: {
|
|
2230
|
+
texts: string[];
|
|
2231
|
+
};
|
|
2035
2232
|
} | {
|
|
2036
2233
|
type: "WAIT";
|
|
2037
2234
|
data: {
|
|
@@ -2250,6 +2447,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2250
2447
|
data: {
|
|
2251
2448
|
text: string;
|
|
2252
2449
|
};
|
|
2450
|
+
} | {
|
|
2451
|
+
type: "TEXTS";
|
|
2452
|
+
data: {
|
|
2453
|
+
texts: string[];
|
|
2454
|
+
};
|
|
2253
2455
|
} | {
|
|
2254
2456
|
type: "WAIT";
|
|
2255
2457
|
data: {
|
|
@@ -2328,6 +2530,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2328
2530
|
data: {
|
|
2329
2531
|
text: string;
|
|
2330
2532
|
};
|
|
2533
|
+
} | {
|
|
2534
|
+
type: "TEXTS";
|
|
2535
|
+
data: {
|
|
2536
|
+
texts: string[];
|
|
2537
|
+
};
|
|
2331
2538
|
} | {
|
|
2332
2539
|
type: "WAIT";
|
|
2333
2540
|
data: {
|
|
@@ -2422,6 +2629,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2422
2629
|
data: {
|
|
2423
2630
|
text: string;
|
|
2424
2631
|
};
|
|
2632
|
+
} | {
|
|
2633
|
+
type: "TEXTS";
|
|
2634
|
+
data: {
|
|
2635
|
+
texts: string[];
|
|
2636
|
+
};
|
|
2425
2637
|
} | {
|
|
2426
2638
|
type: "WAIT";
|
|
2427
2639
|
data: {
|
|
@@ -2510,6 +2722,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2510
2722
|
data: {
|
|
2511
2723
|
text: string;
|
|
2512
2724
|
};
|
|
2725
|
+
} | {
|
|
2726
|
+
type: "TEXTS";
|
|
2727
|
+
data: {
|
|
2728
|
+
texts: string[];
|
|
2729
|
+
};
|
|
2513
2730
|
} | {
|
|
2514
2731
|
type: "WAIT";
|
|
2515
2732
|
data: {
|
|
@@ -2590,6 +2807,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2590
2807
|
data: {
|
|
2591
2808
|
text: string;
|
|
2592
2809
|
};
|
|
2810
|
+
} | {
|
|
2811
|
+
type: "TEXTS";
|
|
2812
|
+
data: {
|
|
2813
|
+
texts: string[];
|
|
2814
|
+
};
|
|
2593
2815
|
} | {
|
|
2594
2816
|
type: "WAIT";
|
|
2595
2817
|
data: {
|
|
@@ -2684,6 +2906,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2684
2906
|
data: {
|
|
2685
2907
|
text: string;
|
|
2686
2908
|
};
|
|
2909
|
+
} | {
|
|
2910
|
+
type: "TEXTS";
|
|
2911
|
+
data: {
|
|
2912
|
+
texts: string[];
|
|
2913
|
+
};
|
|
2687
2914
|
} | {
|
|
2688
2915
|
type: "WAIT";
|
|
2689
2916
|
data: {
|
|
@@ -2772,6 +2999,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2772
2999
|
data: {
|
|
2773
3000
|
text: string;
|
|
2774
3001
|
};
|
|
3002
|
+
} | {
|
|
3003
|
+
type: "TEXTS";
|
|
3004
|
+
data: {
|
|
3005
|
+
texts: string[];
|
|
3006
|
+
};
|
|
2775
3007
|
} | {
|
|
2776
3008
|
type: "WAIT";
|
|
2777
3009
|
data: {
|
|
@@ -2852,6 +3084,11 @@ export declare const PreferenceWithCaseSchema: z.ZodObject<{
|
|
|
2852
3084
|
data: {
|
|
2853
3085
|
text: string;
|
|
2854
3086
|
};
|
|
3087
|
+
} | {
|
|
3088
|
+
type: "TEXTS";
|
|
3089
|
+
data: {
|
|
3090
|
+
texts: string[];
|
|
3091
|
+
};
|
|
2855
3092
|
} | {
|
|
2856
3093
|
type: "WAIT";
|
|
2857
3094
|
data: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PreferenceWithCase.d.ts","sourceRoot":"","sources":["PreferenceWithCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"PreferenceWithCase.d.ts","sourceRoot":"","sources":["PreferenceWithCase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAInC,CAAA;AACF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAA"}
|