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.
Files changed (124) hide show
  1. package/package.json +2 -2
  2. package/src/com/controlresell/models/items/CreatedItems.d.ts +42 -0
  3. package/src/com/controlresell/models/items/CreatedItems.d.ts.map +1 -1
  4. package/src/com/controlresell/models/items/Item.d.ts +34 -0
  5. package/src/com/controlresell/models/items/Item.d.ts.map +1 -1
  6. package/src/com/controlresell/models/items/ItemsWithFilters.d.ts +42 -0
  7. package/src/com/controlresell/models/items/ItemsWithFilters.d.ts.map +1 -1
  8. package/src/com/controlresell/models/items/UpdatedItem.d.ts +42 -0
  9. package/src/com/controlresell/models/items/UpdatedItem.d.ts.map +1 -1
  10. package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts +26 -0
  11. package/src/com/controlresell/models/items/platforms/ItemOnPlatform.d.ts.map +1 -1
  12. package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts +33 -0
  13. package/src/com/controlresell/models/items/platforms/ItemOnPlatformUpdateRequest.d.ts.map +1 -1
  14. package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts +26 -0
  15. package/src/com/controlresell/models/platforms/conversations/Conversation.d.ts.map +1 -1
  16. package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts +35 -0
  17. package/src/com/controlresell/models/platforms/conversations/ConversationOnPlatformUpdateRequest.d.ts.map +1 -1
  18. package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.d.ts +811 -0
  19. package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.d.ts.map +1 -0
  20. package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.js +13 -0
  21. package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.js.map +1 -0
  22. package/src/com/controlresell/models/platforms/conversations/ConversationUpdate.ts +11 -0
  23. package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts +34 -0
  24. package/src/com/controlresell/models/platforms/conversations/UserConversations.d.ts.map +1 -1
  25. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts +6 -0
  26. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.d.ts.map +1 -1
  27. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js +4 -1
  28. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.js.map +1 -1
  29. package/src/com/controlresell/models/platforms/conversations/messages/offers/ConversationOfferRequest.ts +4 -1
  30. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.d.ts +16 -0
  31. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.d.ts.map +1 -0
  32. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.js +10 -0
  33. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.js.map +1 -0
  34. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationOffer.ts +8 -0
  35. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.d.ts +16 -0
  36. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.d.ts.map +1 -0
  37. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.js +11 -0
  38. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.js.map +1 -0
  39. package/src/com/controlresell/models/platforms/conversations/messages/offers/NegotiationParameters.ts +9 -0
  40. package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts +60 -0
  41. package/src/com/controlresell/models/platforms/favorites/Favorite.d.ts.map +1 -1
  42. package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts +37 -0
  43. package/src/com/controlresell/models/platforms/favorites/FavoriteOnPlatformUpdateRequest.d.ts.map +1 -1
  44. package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.d.ts +10 -0
  45. package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.d.ts.map +1 -0
  46. package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.js +8 -0
  47. package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.js.map +1 -0
  48. package/src/com/controlresell/models/platforms/favorites/SendFavoritesRequest.ts +6 -0
  49. package/src/com/controlresell/models/platforms/orders/Order.d.ts +42 -0
  50. package/src/com/controlresell/models/platforms/orders/Order.d.ts.map +1 -1
  51. package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts +26 -0
  52. package/src/com/controlresell/models/platforms/orders/OrderOnPlatformUpdateRequest.d.ts.map +1 -1
  53. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts +34 -0
  54. package/src/com/controlresell/models/platforms/orders/items/ItemInOrder.d.ts.map +1 -1
  55. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts +92 -0
  56. package/src/com/controlresell/models/platforms/orders/items/OrderWithItems.d.ts.map +1 -1
  57. package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts +42 -0
  58. package/src/com/controlresell/models/platforms/transactions/Transaction.d.ts.map +1 -1
  59. package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts +34 -0
  60. package/src/com/controlresell/models/platforms/transactions/items/ItemInTransaction.d.ts.map +1 -1
  61. package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts +92 -0
  62. package/src/com/controlresell/models/platforms/transactions/items/TransactionWithItems.d.ts.map +1 -1
  63. package/src/com/controlresell/models/preferences/Preference.d.ts +79 -0
  64. package/src/com/controlresell/models/preferences/Preference.d.ts.map +1 -1
  65. package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts +68 -0
  66. package/src/com/controlresell/models/preferences/PreferenceFilter.d.ts.map +1 -1
  67. package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts +237 -0
  68. package/src/com/controlresell/models/preferences/PreferenceWithCase.d.ts.map +1 -1
  69. package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts +168 -0
  70. package/src/com/controlresell/models/preferences/PreferenceWithChildren.d.ts.map +1 -1
  71. package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts +69 -0
  72. package/src/com/controlresell/models/preferences/cases/CreatePreferenceCasePayload.d.ts.map +1 -1
  73. package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts +69 -0
  74. package/src/com/controlresell/models/preferences/cases/PartialPreferenceCasePayload.d.ts.map +1 -1
  75. package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts +69 -0
  76. package/src/com/controlresell/models/preferences/cases/PreferenceCase.d.ts.map +1 -1
  77. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts +29 -0
  78. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayload.d.ts.map +1 -1
  79. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts +40 -0
  80. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.d.ts.map +1 -1
  81. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js +7 -1
  82. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.js.map +1 -1
  83. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionPayloadDecodedPayload.ts +8 -0
  84. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts +39 -0
  85. package/src/com/controlresell/models/preferences/payloads/actions/PreferenceActionsPayload.d.ts.map +1 -1
  86. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts +10 -0
  87. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.d.ts.map +1 -0
  88. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js +8 -0
  89. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.js.map +1 -0
  90. package/src/com/controlresell/models/preferences/payloads/texts/PreferenceTextsPayload.ts +6 -0
  91. package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts +306 -0
  92. package/src/com/controlresell/models/preferences/queue/PreferenceNextActionPayload.d.ts.map +1 -1
  93. package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts +59 -0
  94. package/src/com/controlresell/models/preferences/variants/PartialPreferenceCaseVariantPayload.d.ts.map +1 -1
  95. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts +59 -0
  96. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariant.d.ts.map +1 -1
  97. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts +98 -0
  98. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantDecodedPayload.d.ts.map +1 -1
  99. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts +59 -0
  100. package/src/com/controlresell/models/preferences/variants/PreferenceCaseVariantPayload.d.ts.map +1 -1
  101. package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts +26 -0
  102. package/src/com/controlresell/models/users/platforms/PlatformAuthRequest.d.ts.map +1 -1
  103. package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts +26 -0
  104. package/src/com/controlresell/models/users/platforms/PlatformJobUpdate.d.ts.map +1 -1
  105. package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.d.ts +18 -0
  106. package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.d.ts.map +1 -1
  107. package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.js +3 -1
  108. package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.js.map +1 -1
  109. package/src/com/controlresell/models/users/platforms/UpdateUserOnPlatformPayload.ts +3 -1
  110. package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts +18 -0
  111. package/src/com/controlresell/models/users/platforms/UserOnPlatform.d.ts.map +1 -1
  112. package/src/com/controlresell/models/users/platforms/UserOnPlatform.js +3 -1
  113. package/src/com/controlresell/models/users/platforms/UserOnPlatform.js.map +1 -1
  114. package/src/com/controlresell/models/users/platforms/UserOnPlatform.ts +3 -1
  115. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts +550 -0
  116. package/src/com/controlresell/models/users/ws/UserWsPayload.d.ts.map +1 -1
  117. package/src/com/controlresell/models/users/ws/UserWsPayload.js +2 -0
  118. package/src/com/controlresell/models/users/ws/UserWsPayload.js.map +1 -1
  119. package/src/com/controlresell/models/users/ws/UserWsPayload.ts +2 -0
  120. package/src/index.d.ts +5 -0
  121. package/src/index.d.ts.map +1 -1
  122. package/src/index.js +13 -3
  123. package/src/index.js.map +1 -1
  124. package/src/index.ts +5 -0
@@ -67,6 +67,25 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
67
67
  data: {
68
68
  text: string;
69
69
  };
70
+ }>, z.ZodObject<{
71
+ data: z.ZodObject<{
72
+ texts: z.ZodArray<z.ZodString, "many">;
73
+ }, "strip", z.ZodTypeAny, {
74
+ texts: string[];
75
+ }, {
76
+ texts: string[];
77
+ }>;
78
+ type: z.ZodLiteral<"TEXTS">;
79
+ }, "strip", z.ZodTypeAny, {
80
+ type: "TEXTS";
81
+ data: {
82
+ texts: string[];
83
+ };
84
+ }, {
85
+ type: "TEXTS";
86
+ data: {
87
+ texts: string[];
88
+ };
70
89
  }>, z.ZodObject<{
71
90
  data: z.ZodObject<{
72
91
  seconds: z.ZodNumber;
@@ -106,6 +125,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
106
125
  data: {
107
126
  text: string;
108
127
  };
128
+ } | {
129
+ type: "TEXTS";
130
+ data: {
131
+ texts: string[];
132
+ };
109
133
  } | {
110
134
  type: "WAIT";
111
135
  data: {
@@ -132,6 +156,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
132
156
  data: {
133
157
  text: string;
134
158
  };
159
+ } | {
160
+ type: "TEXTS";
161
+ data: {
162
+ texts: string[];
163
+ };
135
164
  } | {
136
165
  type: "WAIT";
137
166
  data: {
@@ -235,6 +264,25 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
235
264
  data: {
236
265
  text: string;
237
266
  };
267
+ }>, z.ZodObject<{
268
+ data: z.ZodObject<{
269
+ texts: z.ZodArray<z.ZodString, "many">;
270
+ }, "strip", z.ZodTypeAny, {
271
+ texts: string[];
272
+ }, {
273
+ texts: string[];
274
+ }>;
275
+ type: z.ZodLiteral<"TEXTS">;
276
+ }, "strip", z.ZodTypeAny, {
277
+ type: "TEXTS";
278
+ data: {
279
+ texts: string[];
280
+ };
281
+ }, {
282
+ type: "TEXTS";
283
+ data: {
284
+ texts: string[];
285
+ };
238
286
  }>, z.ZodObject<{
239
287
  data: z.ZodObject<{
240
288
  seconds: z.ZodNumber;
@@ -274,6 +322,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
274
322
  data: {
275
323
  text: string;
276
324
  };
325
+ } | {
326
+ type: "TEXTS";
327
+ data: {
328
+ texts: string[];
329
+ };
277
330
  } | {
278
331
  type: "WAIT";
279
332
  data: {
@@ -300,6 +353,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
300
353
  data: {
301
354
  text: string;
302
355
  };
356
+ } | {
357
+ type: "TEXTS";
358
+ data: {
359
+ texts: string[];
360
+ };
303
361
  } | {
304
362
  type: "WAIT";
305
363
  data: {
@@ -328,6 +386,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
328
386
  data: {
329
387
  text: string;
330
388
  };
389
+ } | {
390
+ type: "TEXTS";
391
+ data: {
392
+ texts: string[];
393
+ };
331
394
  } | {
332
395
  type: "WAIT";
333
396
  data: {
@@ -356,6 +419,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
356
419
  data: {
357
420
  text: string;
358
421
  };
422
+ } | {
423
+ type: "TEXTS";
424
+ data: {
425
+ texts: string[];
426
+ };
359
427
  } | {
360
428
  type: "WAIT";
361
429
  data: {
@@ -388,6 +456,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
388
456
  data: {
389
457
  text: string;
390
458
  };
459
+ } | {
460
+ type: "TEXTS";
461
+ data: {
462
+ texts: string[];
463
+ };
391
464
  } | {
392
465
  type: "WAIT";
393
466
  data: {
@@ -419,6 +492,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
419
492
  data: {
420
493
  text: string;
421
494
  };
495
+ } | {
496
+ type: "TEXTS";
497
+ data: {
498
+ texts: string[];
499
+ };
422
500
  } | {
423
501
  type: "WAIT";
424
502
  data: {
@@ -637,6 +715,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
637
715
  data: {
638
716
  text: string;
639
717
  };
718
+ } | {
719
+ type: "TEXTS";
720
+ data: {
721
+ texts: string[];
722
+ };
640
723
  } | {
641
724
  type: "WAIT";
642
725
  data: {
@@ -715,6 +798,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
715
798
  data: {
716
799
  text: string;
717
800
  };
801
+ } | {
802
+ type: "TEXTS";
803
+ data: {
804
+ texts: string[];
805
+ };
718
806
  } | {
719
807
  type: "WAIT";
720
808
  data: {
@@ -801,6 +889,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
801
889
  data: {
802
890
  text: string;
803
891
  };
892
+ } | {
893
+ type: "TEXTS";
894
+ data: {
895
+ texts: string[];
896
+ };
804
897
  } | {
805
898
  type: "WAIT";
806
899
  data: {
@@ -887,6 +980,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
887
980
  data: {
888
981
  text: string;
889
982
  };
983
+ } | {
984
+ type: "TEXTS";
985
+ data: {
986
+ texts: string[];
987
+ };
890
988
  } | {
891
989
  type: "WAIT";
892
990
  data: {
@@ -981,6 +1079,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
981
1079
  data: {
982
1080
  text: string;
983
1081
  };
1082
+ } | {
1083
+ type: "TEXTS";
1084
+ data: {
1085
+ texts: string[];
1086
+ };
984
1087
  } | {
985
1088
  type: "WAIT";
986
1089
  data: {
@@ -1075,6 +1178,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1075
1178
  data: {
1076
1179
  text: string;
1077
1180
  };
1181
+ } | {
1182
+ type: "TEXTS";
1183
+ data: {
1184
+ texts: string[];
1185
+ };
1078
1186
  } | {
1079
1187
  type: "WAIT";
1080
1188
  data: {
@@ -1213,6 +1321,25 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1213
1321
  data: {
1214
1322
  text: string;
1215
1323
  };
1324
+ }>, z.ZodObject<{
1325
+ data: z.ZodObject<{
1326
+ texts: z.ZodArray<z.ZodString, "many">;
1327
+ }, "strip", z.ZodTypeAny, {
1328
+ texts: string[];
1329
+ }, {
1330
+ texts: string[];
1331
+ }>;
1332
+ type: z.ZodLiteral<"TEXTS">;
1333
+ }, "strip", z.ZodTypeAny, {
1334
+ type: "TEXTS";
1335
+ data: {
1336
+ texts: string[];
1337
+ };
1338
+ }, {
1339
+ type: "TEXTS";
1340
+ data: {
1341
+ texts: string[];
1342
+ };
1216
1343
  }>, z.ZodObject<{
1217
1344
  data: z.ZodObject<{
1218
1345
  seconds: z.ZodNumber;
@@ -1252,6 +1379,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1252
1379
  data: {
1253
1380
  text: string;
1254
1381
  };
1382
+ } | {
1383
+ type: "TEXTS";
1384
+ data: {
1385
+ texts: string[];
1386
+ };
1255
1387
  } | {
1256
1388
  type: "WAIT";
1257
1389
  data: {
@@ -1278,6 +1410,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1278
1410
  data: {
1279
1411
  text: string;
1280
1412
  };
1413
+ } | {
1414
+ type: "TEXTS";
1415
+ data: {
1416
+ texts: string[];
1417
+ };
1281
1418
  } | {
1282
1419
  type: "WAIT";
1283
1420
  data: {
@@ -1306,6 +1443,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1306
1443
  data: {
1307
1444
  text: string;
1308
1445
  };
1446
+ } | {
1447
+ type: "TEXTS";
1448
+ data: {
1449
+ texts: string[];
1450
+ };
1309
1451
  } | {
1310
1452
  type: "WAIT";
1311
1453
  data: {
@@ -1334,6 +1476,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1334
1476
  data: {
1335
1477
  text: string;
1336
1478
  };
1479
+ } | {
1480
+ type: "TEXTS";
1481
+ data: {
1482
+ texts: string[];
1483
+ };
1337
1484
  } | {
1338
1485
  type: "WAIT";
1339
1486
  data: {
@@ -1366,6 +1513,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1366
1513
  data: {
1367
1514
  text: string;
1368
1515
  };
1516
+ } | {
1517
+ type: "TEXTS";
1518
+ data: {
1519
+ texts: string[];
1520
+ };
1369
1521
  } | {
1370
1522
  type: "WAIT";
1371
1523
  data: {
@@ -1397,6 +1549,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1397
1549
  data: {
1398
1550
  text: string;
1399
1551
  };
1552
+ } | {
1553
+ type: "TEXTS";
1554
+ data: {
1555
+ texts: string[];
1556
+ };
1400
1557
  } | {
1401
1558
  type: "WAIT";
1402
1559
  data: {
@@ -1615,6 +1772,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1615
1772
  data: {
1616
1773
  text: string;
1617
1774
  };
1775
+ } | {
1776
+ type: "TEXTS";
1777
+ data: {
1778
+ texts: string[];
1779
+ };
1618
1780
  } | {
1619
1781
  type: "WAIT";
1620
1782
  data: {
@@ -1693,6 +1855,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1693
1855
  data: {
1694
1856
  text: string;
1695
1857
  };
1858
+ } | {
1859
+ type: "TEXTS";
1860
+ data: {
1861
+ texts: string[];
1862
+ };
1696
1863
  } | {
1697
1864
  type: "WAIT";
1698
1865
  data: {
@@ -1779,6 +1946,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1779
1946
  data: {
1780
1947
  text: string;
1781
1948
  };
1949
+ } | {
1950
+ type: "TEXTS";
1951
+ data: {
1952
+ texts: string[];
1953
+ };
1782
1954
  } | {
1783
1955
  type: "WAIT";
1784
1956
  data: {
@@ -1865,6 +2037,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1865
2037
  data: {
1866
2038
  text: string;
1867
2039
  };
2040
+ } | {
2041
+ type: "TEXTS";
2042
+ data: {
2043
+ texts: string[];
2044
+ };
1868
2045
  } | {
1869
2046
  type: "WAIT";
1870
2047
  data: {
@@ -1995,6 +2172,25 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
1995
2172
  data: {
1996
2173
  text: string;
1997
2174
  };
2175
+ }>, z.ZodObject<{
2176
+ data: z.ZodObject<{
2177
+ texts: z.ZodArray<z.ZodString, "many">;
2178
+ }, "strip", z.ZodTypeAny, {
2179
+ texts: string[];
2180
+ }, {
2181
+ texts: string[];
2182
+ }>;
2183
+ type: z.ZodLiteral<"TEXTS">;
2184
+ }, "strip", z.ZodTypeAny, {
2185
+ type: "TEXTS";
2186
+ data: {
2187
+ texts: string[];
2188
+ };
2189
+ }, {
2190
+ type: "TEXTS";
2191
+ data: {
2192
+ texts: string[];
2193
+ };
1998
2194
  }>, z.ZodObject<{
1999
2195
  data: z.ZodObject<{
2000
2196
  seconds: z.ZodNumber;
@@ -2034,6 +2230,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2034
2230
  data: {
2035
2231
  text: string;
2036
2232
  };
2233
+ } | {
2234
+ type: "TEXTS";
2235
+ data: {
2236
+ texts: string[];
2237
+ };
2037
2238
  } | {
2038
2239
  type: "WAIT";
2039
2240
  data: {
@@ -2060,6 +2261,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2060
2261
  data: {
2061
2262
  text: string;
2062
2263
  };
2264
+ } | {
2265
+ type: "TEXTS";
2266
+ data: {
2267
+ texts: string[];
2268
+ };
2063
2269
  } | {
2064
2270
  type: "WAIT";
2065
2271
  data: {
@@ -2088,6 +2294,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2088
2294
  data: {
2089
2295
  text: string;
2090
2296
  };
2297
+ } | {
2298
+ type: "TEXTS";
2299
+ data: {
2300
+ texts: string[];
2301
+ };
2091
2302
  } | {
2092
2303
  type: "WAIT";
2093
2304
  data: {
@@ -2116,6 +2327,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2116
2327
  data: {
2117
2328
  text: string;
2118
2329
  };
2330
+ } | {
2331
+ type: "TEXTS";
2332
+ data: {
2333
+ texts: string[];
2334
+ };
2119
2335
  } | {
2120
2336
  type: "WAIT";
2121
2337
  data: {
@@ -2148,6 +2364,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2148
2364
  data: {
2149
2365
  text: string;
2150
2366
  };
2367
+ } | {
2368
+ type: "TEXTS";
2369
+ data: {
2370
+ texts: string[];
2371
+ };
2151
2372
  } | {
2152
2373
  type: "WAIT";
2153
2374
  data: {
@@ -2179,6 +2400,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2179
2400
  data: {
2180
2401
  text: string;
2181
2402
  };
2403
+ } | {
2404
+ type: "TEXTS";
2405
+ data: {
2406
+ texts: string[];
2407
+ };
2182
2408
  } | {
2183
2409
  type: "WAIT";
2184
2410
  data: {
@@ -2397,6 +2623,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2397
2623
  data: {
2398
2624
  text: string;
2399
2625
  };
2626
+ } | {
2627
+ type: "TEXTS";
2628
+ data: {
2629
+ texts: string[];
2630
+ };
2400
2631
  } | {
2401
2632
  type: "WAIT";
2402
2633
  data: {
@@ -2475,6 +2706,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2475
2706
  data: {
2476
2707
  text: string;
2477
2708
  };
2709
+ } | {
2710
+ type: "TEXTS";
2711
+ data: {
2712
+ texts: string[];
2713
+ };
2478
2714
  } | {
2479
2715
  type: "WAIT";
2480
2716
  data: {
@@ -2569,6 +2805,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2569
2805
  data: {
2570
2806
  text: string;
2571
2807
  };
2808
+ } | {
2809
+ type: "TEXTS";
2810
+ data: {
2811
+ texts: string[];
2812
+ };
2572
2813
  } | {
2573
2814
  type: "WAIT";
2574
2815
  data: {
@@ -2657,6 +2898,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2657
2898
  data: {
2658
2899
  text: string;
2659
2900
  };
2901
+ } | {
2902
+ type: "TEXTS";
2903
+ data: {
2904
+ texts: string[];
2905
+ };
2660
2906
  } | {
2661
2907
  type: "WAIT";
2662
2908
  data: {
@@ -2737,6 +2983,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2737
2983
  data: {
2738
2984
  text: string;
2739
2985
  };
2986
+ } | {
2987
+ type: "TEXTS";
2988
+ data: {
2989
+ texts: string[];
2990
+ };
2740
2991
  } | {
2741
2992
  type: "WAIT";
2742
2993
  data: {
@@ -2831,6 +3082,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2831
3082
  data: {
2832
3083
  text: string;
2833
3084
  };
3085
+ } | {
3086
+ type: "TEXTS";
3087
+ data: {
3088
+ texts: string[];
3089
+ };
2834
3090
  } | {
2835
3091
  type: "WAIT";
2836
3092
  data: {
@@ -2919,6 +3175,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2919
3175
  data: {
2920
3176
  text: string;
2921
3177
  };
3178
+ } | {
3179
+ type: "TEXTS";
3180
+ data: {
3181
+ texts: string[];
3182
+ };
2922
3183
  } | {
2923
3184
  type: "WAIT";
2924
3185
  data: {
@@ -2999,6 +3260,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
2999
3260
  data: {
3000
3261
  text: string;
3001
3262
  };
3263
+ } | {
3264
+ type: "TEXTS";
3265
+ data: {
3266
+ texts: string[];
3267
+ };
3002
3268
  } | {
3003
3269
  type: "WAIT";
3004
3270
  data: {
@@ -3075,6 +3341,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3075
3341
  data: {
3076
3342
  text: string;
3077
3343
  };
3344
+ } | {
3345
+ type: "TEXTS";
3346
+ data: {
3347
+ texts: string[];
3348
+ };
3078
3349
  } | {
3079
3350
  type: "WAIT";
3080
3351
  data: {
@@ -3123,6 +3394,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3123
3394
  data: {
3124
3395
  text: string;
3125
3396
  };
3397
+ } | {
3398
+ type: "TEXTS";
3399
+ data: {
3400
+ texts: string[];
3401
+ };
3126
3402
  } | {
3127
3403
  type: "WAIT";
3128
3404
  data: {
@@ -3211,6 +3487,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3211
3487
  data: {
3212
3488
  text: string;
3213
3489
  };
3490
+ } | {
3491
+ type: "TEXTS";
3492
+ data: {
3493
+ texts: string[];
3494
+ };
3214
3495
  } | {
3215
3496
  type: "WAIT";
3216
3497
  data: {
@@ -3291,6 +3572,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3291
3572
  data: {
3292
3573
  text: string;
3293
3574
  };
3575
+ } | {
3576
+ type: "TEXTS";
3577
+ data: {
3578
+ texts: string[];
3579
+ };
3294
3580
  } | {
3295
3581
  type: "WAIT";
3296
3582
  data: {
@@ -3371,6 +3657,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3371
3657
  data: {
3372
3658
  text: string;
3373
3659
  };
3660
+ } | {
3661
+ type: "TEXTS";
3662
+ data: {
3663
+ texts: string[];
3664
+ };
3374
3665
  } | {
3375
3666
  type: "WAIT";
3376
3667
  data: {
@@ -3419,6 +3710,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3419
3710
  data: {
3420
3711
  text: string;
3421
3712
  };
3713
+ } | {
3714
+ type: "TEXTS";
3715
+ data: {
3716
+ texts: string[];
3717
+ };
3422
3718
  } | {
3423
3719
  type: "WAIT";
3424
3720
  data: {
@@ -3507,6 +3803,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3507
3803
  data: {
3508
3804
  text: string;
3509
3805
  };
3806
+ } | {
3807
+ type: "TEXTS";
3808
+ data: {
3809
+ texts: string[];
3810
+ };
3510
3811
  } | {
3511
3812
  type: "WAIT";
3512
3813
  data: {
@@ -3587,6 +3888,11 @@ export declare const PreferenceNextActionPayloadSchema: z.ZodObject<{
3587
3888
  data: {
3588
3889
  text: string;
3589
3890
  };
3891
+ } | {
3892
+ type: "TEXTS";
3893
+ data: {
3894
+ texts: string[];
3895
+ };
3590
3896
  } | {
3591
3897
  type: "WAIT";
3592
3898
  data: {
@@ -1 +1 @@
1
- {"version":3,"file":"PreferenceNextActionPayload.d.ts","sourceRoot":"","sources":["PreferenceNextActionPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ5C,CAAA;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAA"}
1
+ {"version":3,"file":"PreferenceNextActionPayload.d.ts","sourceRoot":"","sources":["PreferenceNextActionPayload.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAA;AAKrB,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ5C,CAAA;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iCAAiC,CAAC,CAAA"}