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
|
@@ -87,6 +87,25 @@ export declare const PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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 PreferenceWithChildrenSchema: 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: {
|
|
@@ -884,6 +953,25 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
884
953
|
data: {
|
|
885
954
|
text: string;
|
|
886
955
|
};
|
|
956
|
+
}>, z.ZodObject<{
|
|
957
|
+
data: z.ZodObject<{
|
|
958
|
+
texts: z.ZodArray<z.ZodString, "many">;
|
|
959
|
+
}, "strip", z.ZodTypeAny, {
|
|
960
|
+
texts: string[];
|
|
961
|
+
}, {
|
|
962
|
+
texts: string[];
|
|
963
|
+
}>;
|
|
964
|
+
type: z.ZodLiteral<"TEXTS">;
|
|
965
|
+
}, "strip", z.ZodTypeAny, {
|
|
966
|
+
type: "TEXTS";
|
|
967
|
+
data: {
|
|
968
|
+
texts: string[];
|
|
969
|
+
};
|
|
970
|
+
}, {
|
|
971
|
+
type: "TEXTS";
|
|
972
|
+
data: {
|
|
973
|
+
texts: string[];
|
|
974
|
+
};
|
|
887
975
|
}>, z.ZodObject<{
|
|
888
976
|
data: z.ZodObject<{
|
|
889
977
|
seconds: z.ZodNumber;
|
|
@@ -923,6 +1011,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
923
1011
|
data: {
|
|
924
1012
|
text: string;
|
|
925
1013
|
};
|
|
1014
|
+
} | {
|
|
1015
|
+
type: "TEXTS";
|
|
1016
|
+
data: {
|
|
1017
|
+
texts: string[];
|
|
1018
|
+
};
|
|
926
1019
|
} | {
|
|
927
1020
|
type: "WAIT";
|
|
928
1021
|
data: {
|
|
@@ -949,6 +1042,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
949
1042
|
data: {
|
|
950
1043
|
text: string;
|
|
951
1044
|
};
|
|
1045
|
+
} | {
|
|
1046
|
+
type: "TEXTS";
|
|
1047
|
+
data: {
|
|
1048
|
+
texts: string[];
|
|
1049
|
+
};
|
|
952
1050
|
} | {
|
|
953
1051
|
type: "WAIT";
|
|
954
1052
|
data: {
|
|
@@ -977,6 +1075,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
977
1075
|
data: {
|
|
978
1076
|
text: string;
|
|
979
1077
|
};
|
|
1078
|
+
} | {
|
|
1079
|
+
type: "TEXTS";
|
|
1080
|
+
data: {
|
|
1081
|
+
texts: string[];
|
|
1082
|
+
};
|
|
980
1083
|
} | {
|
|
981
1084
|
type: "WAIT";
|
|
982
1085
|
data: {
|
|
@@ -1005,6 +1108,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1005
1108
|
data: {
|
|
1006
1109
|
text: string;
|
|
1007
1110
|
};
|
|
1111
|
+
} | {
|
|
1112
|
+
type: "TEXTS";
|
|
1113
|
+
data: {
|
|
1114
|
+
texts: string[];
|
|
1115
|
+
};
|
|
1008
1116
|
} | {
|
|
1009
1117
|
type: "WAIT";
|
|
1010
1118
|
data: {
|
|
@@ -1037,6 +1145,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1037
1145
|
data: {
|
|
1038
1146
|
text: string;
|
|
1039
1147
|
};
|
|
1148
|
+
} | {
|
|
1149
|
+
type: "TEXTS";
|
|
1150
|
+
data: {
|
|
1151
|
+
texts: string[];
|
|
1152
|
+
};
|
|
1040
1153
|
} | {
|
|
1041
1154
|
type: "WAIT";
|
|
1042
1155
|
data: {
|
|
@@ -1068,6 +1181,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1068
1181
|
data: {
|
|
1069
1182
|
text: string;
|
|
1070
1183
|
};
|
|
1184
|
+
} | {
|
|
1185
|
+
type: "TEXTS";
|
|
1186
|
+
data: {
|
|
1187
|
+
texts: string[];
|
|
1188
|
+
};
|
|
1071
1189
|
} | {
|
|
1072
1190
|
type: "WAIT";
|
|
1073
1191
|
data: {
|
|
@@ -1286,6 +1404,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1286
1404
|
data: {
|
|
1287
1405
|
text: string;
|
|
1288
1406
|
};
|
|
1407
|
+
} | {
|
|
1408
|
+
type: "TEXTS";
|
|
1409
|
+
data: {
|
|
1410
|
+
texts: string[];
|
|
1411
|
+
};
|
|
1289
1412
|
} | {
|
|
1290
1413
|
type: "WAIT";
|
|
1291
1414
|
data: {
|
|
@@ -1364,6 +1487,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1364
1487
|
data: {
|
|
1365
1488
|
text: string;
|
|
1366
1489
|
};
|
|
1490
|
+
} | {
|
|
1491
|
+
type: "TEXTS";
|
|
1492
|
+
data: {
|
|
1493
|
+
texts: string[];
|
|
1494
|
+
};
|
|
1367
1495
|
} | {
|
|
1368
1496
|
type: "WAIT";
|
|
1369
1497
|
data: {
|
|
@@ -1450,6 +1578,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1450
1578
|
data: {
|
|
1451
1579
|
text: string;
|
|
1452
1580
|
};
|
|
1581
|
+
} | {
|
|
1582
|
+
type: "TEXTS";
|
|
1583
|
+
data: {
|
|
1584
|
+
texts: string[];
|
|
1585
|
+
};
|
|
1453
1586
|
} | {
|
|
1454
1587
|
type: "WAIT";
|
|
1455
1588
|
data: {
|
|
@@ -1536,6 +1669,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1536
1669
|
data: {
|
|
1537
1670
|
text: string;
|
|
1538
1671
|
};
|
|
1672
|
+
} | {
|
|
1673
|
+
type: "TEXTS";
|
|
1674
|
+
data: {
|
|
1675
|
+
texts: string[];
|
|
1676
|
+
};
|
|
1539
1677
|
} | {
|
|
1540
1678
|
type: "WAIT";
|
|
1541
1679
|
data: {
|
|
@@ -1630,6 +1768,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1630
1768
|
data: {
|
|
1631
1769
|
text: string;
|
|
1632
1770
|
};
|
|
1771
|
+
} | {
|
|
1772
|
+
type: "TEXTS";
|
|
1773
|
+
data: {
|
|
1774
|
+
texts: string[];
|
|
1775
|
+
};
|
|
1633
1776
|
} | {
|
|
1634
1777
|
type: "WAIT";
|
|
1635
1778
|
data: {
|
|
@@ -1724,6 +1867,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1724
1867
|
data: {
|
|
1725
1868
|
text: string;
|
|
1726
1869
|
};
|
|
1870
|
+
} | {
|
|
1871
|
+
type: "TEXTS";
|
|
1872
|
+
data: {
|
|
1873
|
+
texts: string[];
|
|
1874
|
+
};
|
|
1727
1875
|
} | {
|
|
1728
1876
|
type: "WAIT";
|
|
1729
1877
|
data: {
|
|
@@ -1819,6 +1967,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1819
1967
|
data: {
|
|
1820
1968
|
text: string;
|
|
1821
1969
|
};
|
|
1970
|
+
} | {
|
|
1971
|
+
type: "TEXTS";
|
|
1972
|
+
data: {
|
|
1973
|
+
texts: string[];
|
|
1974
|
+
};
|
|
1822
1975
|
} | {
|
|
1823
1976
|
type: "WAIT";
|
|
1824
1977
|
data: {
|
|
@@ -1913,6 +2066,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
1913
2066
|
data: {
|
|
1914
2067
|
text: string;
|
|
1915
2068
|
};
|
|
2069
|
+
} | {
|
|
2070
|
+
type: "TEXTS";
|
|
2071
|
+
data: {
|
|
2072
|
+
texts: string[];
|
|
2073
|
+
};
|
|
1916
2074
|
} | {
|
|
1917
2075
|
type: "WAIT";
|
|
1918
2076
|
data: {
|
|
@@ -2008,6 +2166,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
2008
2166
|
data: {
|
|
2009
2167
|
text: string;
|
|
2010
2168
|
};
|
|
2169
|
+
} | {
|
|
2170
|
+
type: "TEXTS";
|
|
2171
|
+
data: {
|
|
2172
|
+
texts: string[];
|
|
2173
|
+
};
|
|
2011
2174
|
} | {
|
|
2012
2175
|
type: "WAIT";
|
|
2013
2176
|
data: {
|
|
@@ -2102,6 +2265,11 @@ export declare const PreferenceWithChildrenSchema: z.ZodObject<{
|
|
|
2102
2265
|
data: {
|
|
2103
2266
|
text: string;
|
|
2104
2267
|
};
|
|
2268
|
+
} | {
|
|
2269
|
+
type: "TEXTS";
|
|
2270
|
+
data: {
|
|
2271
|
+
texts: string[];
|
|
2272
|
+
};
|
|
2105
2273
|
} | {
|
|
2106
2274
|
type: "WAIT";
|
|
2107
2275
|
data: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PreferenceWithChildren.d.ts","sourceRoot":"","sources":["PreferenceWithChildren.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAIrB,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"PreferenceWithChildren.d.ts","sourceRoot":"","sources":["PreferenceWithChildren.ts"],"names":[],"mappings":"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"}
|
|
@@ -75,6 +75,25 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
75
75
|
data: {
|
|
76
76
|
text: string;
|
|
77
77
|
};
|
|
78
|
+
}>, z.ZodObject<{
|
|
79
|
+
data: z.ZodObject<{
|
|
80
|
+
texts: z.ZodArray<z.ZodString, "many">;
|
|
81
|
+
}, "strip", z.ZodTypeAny, {
|
|
82
|
+
texts: string[];
|
|
83
|
+
}, {
|
|
84
|
+
texts: string[];
|
|
85
|
+
}>;
|
|
86
|
+
type: z.ZodLiteral<"TEXTS">;
|
|
87
|
+
}, "strip", z.ZodTypeAny, {
|
|
88
|
+
type: "TEXTS";
|
|
89
|
+
data: {
|
|
90
|
+
texts: string[];
|
|
91
|
+
};
|
|
92
|
+
}, {
|
|
93
|
+
type: "TEXTS";
|
|
94
|
+
data: {
|
|
95
|
+
texts: string[];
|
|
96
|
+
};
|
|
78
97
|
}>, z.ZodObject<{
|
|
79
98
|
data: z.ZodObject<{
|
|
80
99
|
seconds: z.ZodNumber;
|
|
@@ -114,6 +133,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
114
133
|
data: {
|
|
115
134
|
text: string;
|
|
116
135
|
};
|
|
136
|
+
} | {
|
|
137
|
+
type: "TEXTS";
|
|
138
|
+
data: {
|
|
139
|
+
texts: string[];
|
|
140
|
+
};
|
|
117
141
|
} | {
|
|
118
142
|
type: "WAIT";
|
|
119
143
|
data: {
|
|
@@ -140,6 +164,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
140
164
|
data: {
|
|
141
165
|
text: string;
|
|
142
166
|
};
|
|
167
|
+
} | {
|
|
168
|
+
type: "TEXTS";
|
|
169
|
+
data: {
|
|
170
|
+
texts: string[];
|
|
171
|
+
};
|
|
143
172
|
} | {
|
|
144
173
|
type: "WAIT";
|
|
145
174
|
data: {
|
|
@@ -168,6 +197,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
168
197
|
data: {
|
|
169
198
|
text: string;
|
|
170
199
|
};
|
|
200
|
+
} | {
|
|
201
|
+
type: "TEXTS";
|
|
202
|
+
data: {
|
|
203
|
+
texts: string[];
|
|
204
|
+
};
|
|
171
205
|
} | {
|
|
172
206
|
type: "WAIT";
|
|
173
207
|
data: {
|
|
@@ -196,6 +230,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
196
230
|
data: {
|
|
197
231
|
text: string;
|
|
198
232
|
};
|
|
233
|
+
} | {
|
|
234
|
+
type: "TEXTS";
|
|
235
|
+
data: {
|
|
236
|
+
texts: string[];
|
|
237
|
+
};
|
|
199
238
|
} | {
|
|
200
239
|
type: "WAIT";
|
|
201
240
|
data: {
|
|
@@ -228,6 +267,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
228
267
|
data: {
|
|
229
268
|
text: string;
|
|
230
269
|
};
|
|
270
|
+
} | {
|
|
271
|
+
type: "TEXTS";
|
|
272
|
+
data: {
|
|
273
|
+
texts: string[];
|
|
274
|
+
};
|
|
231
275
|
} | {
|
|
232
276
|
type: "WAIT";
|
|
233
277
|
data: {
|
|
@@ -259,6 +303,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
259
303
|
data: {
|
|
260
304
|
text: string;
|
|
261
305
|
};
|
|
306
|
+
} | {
|
|
307
|
+
type: "TEXTS";
|
|
308
|
+
data: {
|
|
309
|
+
texts: string[];
|
|
310
|
+
};
|
|
262
311
|
} | {
|
|
263
312
|
type: "WAIT";
|
|
264
313
|
data: {
|
|
@@ -476,6 +525,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
476
525
|
data: {
|
|
477
526
|
text: string;
|
|
478
527
|
};
|
|
528
|
+
} | {
|
|
529
|
+
type: "TEXTS";
|
|
530
|
+
data: {
|
|
531
|
+
texts: string[];
|
|
532
|
+
};
|
|
479
533
|
} | {
|
|
480
534
|
type: "WAIT";
|
|
481
535
|
data: {
|
|
@@ -552,6 +606,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
552
606
|
data: {
|
|
553
607
|
text: string;
|
|
554
608
|
};
|
|
609
|
+
} | {
|
|
610
|
+
type: "TEXTS";
|
|
611
|
+
data: {
|
|
612
|
+
texts: string[];
|
|
613
|
+
};
|
|
555
614
|
} | {
|
|
556
615
|
type: "WAIT";
|
|
557
616
|
data: {
|
|
@@ -634,6 +693,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
634
693
|
data: {
|
|
635
694
|
text: string;
|
|
636
695
|
};
|
|
696
|
+
} | {
|
|
697
|
+
type: "TEXTS";
|
|
698
|
+
data: {
|
|
699
|
+
texts: string[];
|
|
700
|
+
};
|
|
637
701
|
} | {
|
|
638
702
|
type: "WAIT";
|
|
639
703
|
data: {
|
|
@@ -716,6 +780,11 @@ export declare const CreatePreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
716
780
|
data: {
|
|
717
781
|
text: string;
|
|
718
782
|
};
|
|
783
|
+
} | {
|
|
784
|
+
type: "TEXTS";
|
|
785
|
+
data: {
|
|
786
|
+
texts: string[];
|
|
787
|
+
};
|
|
719
788
|
} | {
|
|
720
789
|
type: "WAIT";
|
|
721
790
|
data: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CreatePreferenceCasePayload.d.ts","sourceRoot":"","sources":["CreatePreferenceCasePayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,iCAAiC
|
|
1
|
+
{"version":3,"file":"CreatePreferenceCasePayload.d.ts","sourceRoot":"","sources":["CreatePreferenceCasePayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM5C,CAAA;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAA"}
|
|
@@ -75,6 +75,25 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
75
75
|
data: {
|
|
76
76
|
text: string;
|
|
77
77
|
};
|
|
78
|
+
}>, z.ZodObject<{
|
|
79
|
+
data: z.ZodObject<{
|
|
80
|
+
texts: z.ZodArray<z.ZodString, "many">;
|
|
81
|
+
}, "strip", z.ZodTypeAny, {
|
|
82
|
+
texts: string[];
|
|
83
|
+
}, {
|
|
84
|
+
texts: string[];
|
|
85
|
+
}>;
|
|
86
|
+
type: z.ZodLiteral<"TEXTS">;
|
|
87
|
+
}, "strip", z.ZodTypeAny, {
|
|
88
|
+
type: "TEXTS";
|
|
89
|
+
data: {
|
|
90
|
+
texts: string[];
|
|
91
|
+
};
|
|
92
|
+
}, {
|
|
93
|
+
type: "TEXTS";
|
|
94
|
+
data: {
|
|
95
|
+
texts: string[];
|
|
96
|
+
};
|
|
78
97
|
}>, z.ZodObject<{
|
|
79
98
|
data: z.ZodObject<{
|
|
80
99
|
seconds: z.ZodNumber;
|
|
@@ -114,6 +133,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
114
133
|
data: {
|
|
115
134
|
text: string;
|
|
116
135
|
};
|
|
136
|
+
} | {
|
|
137
|
+
type: "TEXTS";
|
|
138
|
+
data: {
|
|
139
|
+
texts: string[];
|
|
140
|
+
};
|
|
117
141
|
} | {
|
|
118
142
|
type: "WAIT";
|
|
119
143
|
data: {
|
|
@@ -140,6 +164,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
140
164
|
data: {
|
|
141
165
|
text: string;
|
|
142
166
|
};
|
|
167
|
+
} | {
|
|
168
|
+
type: "TEXTS";
|
|
169
|
+
data: {
|
|
170
|
+
texts: string[];
|
|
171
|
+
};
|
|
143
172
|
} | {
|
|
144
173
|
type: "WAIT";
|
|
145
174
|
data: {
|
|
@@ -168,6 +197,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
168
197
|
data: {
|
|
169
198
|
text: string;
|
|
170
199
|
};
|
|
200
|
+
} | {
|
|
201
|
+
type: "TEXTS";
|
|
202
|
+
data: {
|
|
203
|
+
texts: string[];
|
|
204
|
+
};
|
|
171
205
|
} | {
|
|
172
206
|
type: "WAIT";
|
|
173
207
|
data: {
|
|
@@ -196,6 +230,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
196
230
|
data: {
|
|
197
231
|
text: string;
|
|
198
232
|
};
|
|
233
|
+
} | {
|
|
234
|
+
type: "TEXTS";
|
|
235
|
+
data: {
|
|
236
|
+
texts: string[];
|
|
237
|
+
};
|
|
199
238
|
} | {
|
|
200
239
|
type: "WAIT";
|
|
201
240
|
data: {
|
|
@@ -228,6 +267,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
228
267
|
data: {
|
|
229
268
|
text: string;
|
|
230
269
|
};
|
|
270
|
+
} | {
|
|
271
|
+
type: "TEXTS";
|
|
272
|
+
data: {
|
|
273
|
+
texts: string[];
|
|
274
|
+
};
|
|
231
275
|
} | {
|
|
232
276
|
type: "WAIT";
|
|
233
277
|
data: {
|
|
@@ -259,6 +303,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
259
303
|
data: {
|
|
260
304
|
text: string;
|
|
261
305
|
};
|
|
306
|
+
} | {
|
|
307
|
+
type: "TEXTS";
|
|
308
|
+
data: {
|
|
309
|
+
texts: string[];
|
|
310
|
+
};
|
|
262
311
|
} | {
|
|
263
312
|
type: "WAIT";
|
|
264
313
|
data: {
|
|
@@ -476,6 +525,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
476
525
|
data: {
|
|
477
526
|
text: string;
|
|
478
527
|
};
|
|
528
|
+
} | {
|
|
529
|
+
type: "TEXTS";
|
|
530
|
+
data: {
|
|
531
|
+
texts: string[];
|
|
532
|
+
};
|
|
479
533
|
} | {
|
|
480
534
|
type: "WAIT";
|
|
481
535
|
data: {
|
|
@@ -552,6 +606,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
552
606
|
data: {
|
|
553
607
|
text: string;
|
|
554
608
|
};
|
|
609
|
+
} | {
|
|
610
|
+
type: "TEXTS";
|
|
611
|
+
data: {
|
|
612
|
+
texts: string[];
|
|
613
|
+
};
|
|
555
614
|
} | {
|
|
556
615
|
type: "WAIT";
|
|
557
616
|
data: {
|
|
@@ -635,6 +694,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
635
694
|
data: {
|
|
636
695
|
text: string;
|
|
637
696
|
};
|
|
697
|
+
} | {
|
|
698
|
+
type: "TEXTS";
|
|
699
|
+
data: {
|
|
700
|
+
texts: string[];
|
|
701
|
+
};
|
|
638
702
|
} | {
|
|
639
703
|
type: "WAIT";
|
|
640
704
|
data: {
|
|
@@ -717,6 +781,11 @@ export declare const PartialPreferenceCasePayloadSchema: z.ZodObject<{
|
|
|
717
781
|
data: {
|
|
718
782
|
text: string;
|
|
719
783
|
};
|
|
784
|
+
} | {
|
|
785
|
+
type: "TEXTS";
|
|
786
|
+
data: {
|
|
787
|
+
texts: string[];
|
|
788
|
+
};
|
|
720
789
|
} | {
|
|
721
790
|
type: "WAIT";
|
|
722
791
|
data: {
|
package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PartialPreferenceCasePayload.d.ts","sourceRoot":"","sources":["PartialPreferenceCasePayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,kCAAkC
|
|
1
|
+
{"version":3,"file":"PartialPreferenceCasePayload.d.ts","sourceRoot":"","sources":["PartialPreferenceCasePayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAGrB,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM7C,CAAA;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kCAAkC,CAAC,CAAA"}
|