@kl1/contracts 1.1.27-uat → 1.1.27
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/dist/index.js +1781 -1887
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1780 -1887
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +474 -68
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +122 -41
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/src/business-calendar/validation.d.ts +62 -112
- package/dist/src/business-calendar/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +914 -118
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +213 -39
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +164 -24
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +11636 -4802
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +13 -8
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +15 -12
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +152 -12
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +152 -12
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +33 -2243
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +1 -2045
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +32 -200
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +0 -3
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +0 -6
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +12 -68
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +8 -54
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +152 -12
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/call-report.schema.d.ts +62 -62
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +1 -622
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +152 -12
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +152 -12
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +7305 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -0
- package/dist/src/workflow-rule/schema.d.ts +27 -0
- package/dist/src/workflow-rule/schema.d.ts.map +1 -0
- package/dist/src/wrap-up-form/index.d.ts +475 -22
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +4 -4
- package/dist/src/wrap-up-form/validation.d.ts +6 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +4 -10
@@ -91,8 +91,6 @@ export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
91
91
|
date: z.ZodDate;
|
92
92
|
action: z.ZodString;
|
93
93
|
unseen: z.ZodBoolean;
|
94
|
-
sendAt: z.ZodDate;
|
95
|
-
starred: z.ZodBoolean;
|
96
94
|
seemsLikeNew: z.ZodBoolean;
|
97
95
|
from: z.ZodArray<z.ZodObject<{
|
98
96
|
id: z.ZodString;
|
@@ -291,8 +289,6 @@ export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
291
289
|
emailEngineMessageId: string;
|
292
290
|
emailEngineReplyTo: string | null;
|
293
291
|
unseen: boolean;
|
294
|
-
sendAt: Date;
|
295
|
-
starred: boolean;
|
296
292
|
seemsLikeNew: boolean;
|
297
293
|
from: {
|
298
294
|
id: string;
|
@@ -367,8 +363,6 @@ export declare const MessagesAndLogsSchema: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
367
363
|
emailEngineMessageId: string;
|
368
364
|
emailEngineReplyTo: string | null;
|
369
365
|
unseen: boolean;
|
370
|
-
sendAt: Date;
|
371
|
-
starred: boolean;
|
372
366
|
seemsLikeNew: boolean;
|
373
367
|
from: {
|
374
368
|
id: string;
|
@@ -622,8 +616,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
622
616
|
date: z.ZodDate;
|
623
617
|
action: z.ZodString;
|
624
618
|
unseen: z.ZodBoolean;
|
625
|
-
sendAt: z.ZodDate;
|
626
|
-
starred: z.ZodBoolean;
|
627
619
|
seemsLikeNew: z.ZodBoolean;
|
628
620
|
from: z.ZodArray<z.ZodObject<{
|
629
621
|
id: z.ZodString;
|
@@ -822,8 +814,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
822
814
|
emailEngineMessageId: string;
|
823
815
|
emailEngineReplyTo: string | null;
|
824
816
|
unseen: boolean;
|
825
|
-
sendAt: Date;
|
826
|
-
starred: boolean;
|
827
817
|
seemsLikeNew: boolean;
|
828
818
|
from: {
|
829
819
|
id: string;
|
@@ -898,8 +888,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
898
888
|
emailEngineMessageId: string;
|
899
889
|
emailEngineReplyTo: string | null;
|
900
890
|
unseen: boolean;
|
901
|
-
sendAt: Date;
|
902
|
-
starred: boolean;
|
903
891
|
seemsLikeNew: boolean;
|
904
892
|
from: {
|
905
893
|
id: string;
|
@@ -975,8 +963,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
975
963
|
date: z.ZodDate;
|
976
964
|
action: z.ZodString;
|
977
965
|
unseen: z.ZodBoolean;
|
978
|
-
sendAt: z.ZodDate;
|
979
|
-
starred: z.ZodBoolean;
|
980
966
|
seemsLikeNew: z.ZodBoolean;
|
981
967
|
from: z.ZodArray<z.ZodObject<{
|
982
968
|
id: z.ZodString;
|
@@ -1175,8 +1161,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1175
1161
|
emailEngineMessageId: string;
|
1176
1162
|
emailEngineReplyTo: string | null;
|
1177
1163
|
unseen: boolean;
|
1178
|
-
sendAt: Date;
|
1179
|
-
starred: boolean;
|
1180
1164
|
seemsLikeNew: boolean;
|
1181
1165
|
from: {
|
1182
1166
|
id: string;
|
@@ -1251,8 +1235,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1251
1235
|
emailEngineMessageId: string;
|
1252
1236
|
emailEngineReplyTo: string | null;
|
1253
1237
|
unseen: boolean;
|
1254
|
-
sendAt: Date;
|
1255
|
-
starred: boolean;
|
1256
1238
|
seemsLikeNew: boolean;
|
1257
1239
|
from: {
|
1258
1240
|
id: string;
|
@@ -1381,8 +1363,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1381
1363
|
date: z.ZodDate;
|
1382
1364
|
action: z.ZodString;
|
1383
1365
|
unseen: z.ZodBoolean;
|
1384
|
-
sendAt: z.ZodDate;
|
1385
|
-
starred: z.ZodBoolean;
|
1386
1366
|
seemsLikeNew: z.ZodBoolean;
|
1387
1367
|
from: z.ZodArray<z.ZodObject<{
|
1388
1368
|
id: z.ZodString;
|
@@ -1581,8 +1561,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1581
1561
|
emailEngineMessageId: string;
|
1582
1562
|
emailEngineReplyTo: string | null;
|
1583
1563
|
unseen: boolean;
|
1584
|
-
sendAt: Date;
|
1585
|
-
starred: boolean;
|
1586
1564
|
seemsLikeNew: boolean;
|
1587
1565
|
from: {
|
1588
1566
|
id: string;
|
@@ -1657,8 +1635,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1657
1635
|
emailEngineMessageId: string;
|
1658
1636
|
emailEngineReplyTo: string | null;
|
1659
1637
|
unseen: boolean;
|
1660
|
-
sendAt: Date;
|
1661
|
-
starred: boolean;
|
1662
1638
|
seemsLikeNew: boolean;
|
1663
1639
|
from: {
|
1664
1640
|
id: string;
|
@@ -1734,8 +1710,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1734
1710
|
date: z.ZodDate;
|
1735
1711
|
action: z.ZodString;
|
1736
1712
|
unseen: z.ZodBoolean;
|
1737
|
-
sendAt: z.ZodDate;
|
1738
|
-
starred: z.ZodBoolean;
|
1739
1713
|
seemsLikeNew: z.ZodBoolean;
|
1740
1714
|
from: z.ZodArray<z.ZodObject<{
|
1741
1715
|
id: z.ZodString;
|
@@ -1934,8 +1908,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
1934
1908
|
emailEngineMessageId: string;
|
1935
1909
|
emailEngineReplyTo: string | null;
|
1936
1910
|
unseen: boolean;
|
1937
|
-
sendAt: Date;
|
1938
|
-
starred: boolean;
|
1939
1911
|
seemsLikeNew: boolean;
|
1940
1912
|
from: {
|
1941
1913
|
id: string;
|
@@ -2010,8 +1982,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2010
1982
|
emailEngineMessageId: string;
|
2011
1983
|
emailEngineReplyTo: string | null;
|
2012
1984
|
unseen: boolean;
|
2013
|
-
sendAt: Date;
|
2014
|
-
starred: boolean;
|
2015
1985
|
seemsLikeNew: boolean;
|
2016
1986
|
from: {
|
2017
1987
|
id: string;
|
@@ -2397,7 +2367,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2397
2367
|
}>, "many">;
|
2398
2368
|
callFrom: z.ZodNullable<z.ZodString>;
|
2399
2369
|
callTo: z.ZodNullable<z.ZodString>;
|
2400
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2370
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2401
2371
|
id: z.ZodString;
|
2402
2372
|
createdAt: z.ZodDate;
|
2403
2373
|
updatedAt: z.ZodDate;
|
@@ -2430,7 +2400,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2430
2400
|
booleanValue: boolean | null;
|
2431
2401
|
numberValue: number | null;
|
2432
2402
|
dateValue: Date | null;
|
2433
|
-
}>, "many"
|
2403
|
+
}>, "many">>>;
|
2434
2404
|
}, "strip", z.ZodTypeAny, {
|
2435
2405
|
type: string;
|
2436
2406
|
id: string;
|
@@ -2481,7 +2451,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2481
2451
|
booleanValue: boolean | null;
|
2482
2452
|
numberValue: number | null;
|
2483
2453
|
dateValue: Date | null;
|
2484
|
-
}[] | undefined;
|
2454
|
+
}[] | null | undefined;
|
2485
2455
|
}, {
|
2486
2456
|
type: string;
|
2487
2457
|
id: string;
|
@@ -2532,7 +2502,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2532
2502
|
booleanValue: boolean | null;
|
2533
2503
|
numberValue: number | null;
|
2534
2504
|
dateValue: Date | null;
|
2535
|
-
}[] | undefined;
|
2505
|
+
}[] | null | undefined;
|
2536
2506
|
}>>;
|
2537
2507
|
}, "strip", z.ZodTypeAny, {
|
2538
2508
|
id: string;
|
@@ -2600,7 +2570,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2600
2570
|
booleanValue: boolean | null;
|
2601
2571
|
numberValue: number | null;
|
2602
2572
|
dateValue: Date | null;
|
2603
|
-
}[] | undefined;
|
2573
|
+
}[] | null | undefined;
|
2604
2574
|
} | null;
|
2605
2575
|
}, {
|
2606
2576
|
id: string;
|
@@ -2668,7 +2638,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2668
2638
|
booleanValue: boolean | null;
|
2669
2639
|
numberValue: number | null;
|
2670
2640
|
dateValue: Date | null;
|
2671
|
-
}[] | undefined;
|
2641
|
+
}[] | null | undefined;
|
2672
2642
|
} | null;
|
2673
2643
|
}>;
|
2674
2644
|
}, "strip", z.ZodTypeAny, {
|
@@ -2703,8 +2673,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2703
2673
|
emailEngineMessageId: string;
|
2704
2674
|
emailEngineReplyTo: string | null;
|
2705
2675
|
unseen: boolean;
|
2706
|
-
sendAt: Date;
|
2707
|
-
starred: boolean;
|
2708
2676
|
seemsLikeNew: boolean;
|
2709
2677
|
from: {
|
2710
2678
|
id: string;
|
@@ -2841,7 +2809,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2841
2809
|
booleanValue: boolean | null;
|
2842
2810
|
numberValue: number | null;
|
2843
2811
|
dateValue: Date | null;
|
2844
|
-
}[] | undefined;
|
2812
|
+
}[] | null | undefined;
|
2845
2813
|
} | null;
|
2846
2814
|
};
|
2847
2815
|
assigneeId: string | null;
|
@@ -2898,8 +2866,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2898
2866
|
emailEngineMessageId: string;
|
2899
2867
|
emailEngineReplyTo: string | null;
|
2900
2868
|
unseen: boolean;
|
2901
|
-
sendAt: Date;
|
2902
|
-
starred: boolean;
|
2903
2869
|
seemsLikeNew: boolean;
|
2904
2870
|
from: {
|
2905
2871
|
id: string;
|
@@ -2975,8 +2941,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
2975
2941
|
emailEngineMessageId: string;
|
2976
2942
|
emailEngineReplyTo: string | null;
|
2977
2943
|
unseen: boolean;
|
2978
|
-
sendAt: Date;
|
2979
|
-
starred: boolean;
|
2980
2944
|
seemsLikeNew: boolean;
|
2981
2945
|
from: {
|
2982
2946
|
id: string;
|
@@ -3052,8 +3016,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3052
3016
|
emailEngineMessageId: string;
|
3053
3017
|
emailEngineReplyTo: string | null;
|
3054
3018
|
unseen: boolean;
|
3055
|
-
sendAt: Date;
|
3056
|
-
starred: boolean;
|
3057
3019
|
seemsLikeNew: boolean;
|
3058
3020
|
from: {
|
3059
3021
|
id: string;
|
@@ -3190,8 +3152,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3190
3152
|
emailEngineMessageId: string;
|
3191
3153
|
emailEngineReplyTo: string | null;
|
3192
3154
|
unseen: boolean;
|
3193
|
-
sendAt: Date;
|
3194
|
-
starred: boolean;
|
3195
3155
|
seemsLikeNew: boolean;
|
3196
3156
|
from: {
|
3197
3157
|
id: string;
|
@@ -3328,7 +3288,7 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3328
3288
|
booleanValue: boolean | null;
|
3329
3289
|
numberValue: number | null;
|
3330
3290
|
dateValue: Date | null;
|
3331
|
-
}[] | undefined;
|
3291
|
+
}[] | null | undefined;
|
3332
3292
|
} | null;
|
3333
3293
|
};
|
3334
3294
|
assigneeId: string | null;
|
@@ -3385,8 +3345,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3385
3345
|
emailEngineMessageId: string;
|
3386
3346
|
emailEngineReplyTo: string | null;
|
3387
3347
|
unseen: boolean;
|
3388
|
-
sendAt: Date;
|
3389
|
-
starred: boolean;
|
3390
3348
|
seemsLikeNew: boolean;
|
3391
3349
|
from: {
|
3392
3350
|
id: string;
|
@@ -3462,8 +3420,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3462
3420
|
emailEngineMessageId: string;
|
3463
3421
|
emailEngineReplyTo: string | null;
|
3464
3422
|
unseen: boolean;
|
3465
|
-
sendAt: Date;
|
3466
|
-
starred: boolean;
|
3467
3423
|
seemsLikeNew: boolean;
|
3468
3424
|
from: {
|
3469
3425
|
id: string;
|
@@ -3539,8 +3495,6 @@ export declare const MailRoomSchema: z.ZodObject<{
|
|
3539
3495
|
emailEngineMessageId: string;
|
3540
3496
|
emailEngineReplyTo: string | null;
|
3541
3497
|
unseen: boolean;
|
3542
|
-
sendAt: Date;
|
3543
|
-
starred: boolean;
|
3544
3498
|
seemsLikeNew: boolean;
|
3545
3499
|
from: {
|
3546
3500
|
id: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"room.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;EAOpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpB,CAAC;AAaH,eAAO,MAAM,qBAAqB
|
1
|
+
{"version":3,"file":"room.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;EAOzB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;EAOpB,CAAC;AAEH,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUpB,CAAC;AAaH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAEjC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0BzB,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ3B,CAAC"}
|
@@ -2545,7 +2545,7 @@ export declare const messengerContract: {
|
|
2545
2545
|
}>, "many">;
|
2546
2546
|
callFrom: z.ZodNullable<z.ZodString>;
|
2547
2547
|
callTo: z.ZodNullable<z.ZodString>;
|
2548
|
-
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2548
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2549
2549
|
id: z.ZodString;
|
2550
2550
|
createdAt: z.ZodDate;
|
2551
2551
|
updatedAt: z.ZodDate;
|
@@ -2578,7 +2578,7 @@ export declare const messengerContract: {
|
|
2578
2578
|
booleanValue: boolean | null;
|
2579
2579
|
numberValue: number | null;
|
2580
2580
|
dateValue: Date | null;
|
2581
|
-
}>, "many"
|
2581
|
+
}>, "many">>>;
|
2582
2582
|
}, "strip", z.ZodTypeAny, {
|
2583
2583
|
type: string;
|
2584
2584
|
id: string;
|
@@ -2629,7 +2629,7 @@ export declare const messengerContract: {
|
|
2629
2629
|
booleanValue: boolean | null;
|
2630
2630
|
numberValue: number | null;
|
2631
2631
|
dateValue: Date | null;
|
2632
|
-
}[] | undefined;
|
2632
|
+
}[] | null | undefined;
|
2633
2633
|
}, {
|
2634
2634
|
type: string;
|
2635
2635
|
id: string;
|
@@ -2680,7 +2680,7 @@ export declare const messengerContract: {
|
|
2680
2680
|
booleanValue: boolean | null;
|
2681
2681
|
numberValue: number | null;
|
2682
2682
|
dateValue: Date | null;
|
2683
|
-
}[] | undefined;
|
2683
|
+
}[] | null | undefined;
|
2684
2684
|
}>>;
|
2685
2685
|
}, "strip", z.ZodTypeAny, {
|
2686
2686
|
id: string;
|
@@ -2748,7 +2748,7 @@ export declare const messengerContract: {
|
|
2748
2748
|
booleanValue: boolean | null;
|
2749
2749
|
numberValue: number | null;
|
2750
2750
|
dateValue: Date | null;
|
2751
|
-
}[] | undefined;
|
2751
|
+
}[] | null | undefined;
|
2752
2752
|
} | null;
|
2753
2753
|
}, {
|
2754
2754
|
id: string;
|
@@ -2816,9 +2816,34 @@ export declare const messengerContract: {
|
|
2816
2816
|
booleanValue: boolean | null;
|
2817
2817
|
numberValue: number | null;
|
2818
2818
|
dateValue: Date | null;
|
2819
|
-
}[] | undefined;
|
2819
|
+
}[] | null | undefined;
|
2820
2820
|
} | null;
|
2821
2821
|
}>;
|
2822
|
+
workflowRule: z.ZodObject<{
|
2823
|
+
id: z.ZodString;
|
2824
|
+
createdAt: z.ZodDate;
|
2825
|
+
updatedAt: z.ZodDate;
|
2826
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2827
|
+
name: z.ZodString;
|
2828
|
+
isActive: z.ZodBoolean;
|
2829
|
+
type: z.ZodString;
|
2830
|
+
}, "strip", z.ZodTypeAny, {
|
2831
|
+
type: string;
|
2832
|
+
id: string;
|
2833
|
+
name: string;
|
2834
|
+
createdAt: Date;
|
2835
|
+
updatedAt: Date;
|
2836
|
+
deletedAt: Date | null;
|
2837
|
+
isActive: boolean;
|
2838
|
+
}, {
|
2839
|
+
type: string;
|
2840
|
+
id: string;
|
2841
|
+
name: string;
|
2842
|
+
createdAt: Date;
|
2843
|
+
updatedAt: Date;
|
2844
|
+
deletedAt: Date | null;
|
2845
|
+
isActive: boolean;
|
2846
|
+
}>;
|
2822
2847
|
}, "strip", z.ZodTypeAny, {
|
2823
2848
|
id: string;
|
2824
2849
|
channel: {
|
@@ -3165,9 +3190,18 @@ export declare const messengerContract: {
|
|
3165
3190
|
booleanValue: boolean | null;
|
3166
3191
|
numberValue: number | null;
|
3167
3192
|
dateValue: Date | null;
|
3168
|
-
}[] | undefined;
|
3193
|
+
}[] | null | undefined;
|
3169
3194
|
} | null;
|
3170
3195
|
};
|
3196
|
+
workflowRule: {
|
3197
|
+
type: string;
|
3198
|
+
id: string;
|
3199
|
+
name: string;
|
3200
|
+
createdAt: Date;
|
3201
|
+
updatedAt: Date;
|
3202
|
+
deletedAt: Date | null;
|
3203
|
+
isActive: boolean;
|
3204
|
+
};
|
3171
3205
|
}, {
|
3172
3206
|
id: string;
|
3173
3207
|
channel: {
|
@@ -3514,9 +3548,18 @@ export declare const messengerContract: {
|
|
3514
3548
|
booleanValue: boolean | null;
|
3515
3549
|
numberValue: number | null;
|
3516
3550
|
dateValue: Date | null;
|
3517
|
-
}[] | undefined;
|
3551
|
+
}[] | null | undefined;
|
3518
3552
|
} | null;
|
3519
3553
|
};
|
3554
|
+
workflowRule: {
|
3555
|
+
type: string;
|
3556
|
+
id: string;
|
3557
|
+
name: string;
|
3558
|
+
createdAt: Date;
|
3559
|
+
updatedAt: Date;
|
3560
|
+
deletedAt: Date | null;
|
3561
|
+
isActive: boolean;
|
3562
|
+
};
|
3520
3563
|
}>;
|
3521
3564
|
upload: z.ZodObject<{
|
3522
3565
|
id: z.ZodString;
|
@@ -5153,6 +5196,31 @@ export declare const messengerContract: {
|
|
5153
5196
|
telephonySignature: string | null;
|
5154
5197
|
};
|
5155
5198
|
}>;
|
5199
|
+
workflowRule: z.ZodObject<{
|
5200
|
+
id: z.ZodString;
|
5201
|
+
createdAt: z.ZodDate;
|
5202
|
+
updatedAt: z.ZodDate;
|
5203
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
5204
|
+
name: z.ZodString;
|
5205
|
+
isActive: z.ZodBoolean;
|
5206
|
+
type: z.ZodString;
|
5207
|
+
}, "strip", z.ZodTypeAny, {
|
5208
|
+
type: string;
|
5209
|
+
id: string;
|
5210
|
+
name: string;
|
5211
|
+
createdAt: Date;
|
5212
|
+
updatedAt: Date;
|
5213
|
+
deletedAt: Date | null;
|
5214
|
+
isActive: boolean;
|
5215
|
+
}, {
|
5216
|
+
type: string;
|
5217
|
+
id: string;
|
5218
|
+
name: string;
|
5219
|
+
createdAt: Date;
|
5220
|
+
updatedAt: Date;
|
5221
|
+
deletedAt: Date | null;
|
5222
|
+
isActive: boolean;
|
5223
|
+
}>;
|
5156
5224
|
}, "strip", z.ZodTypeAny, {
|
5157
5225
|
type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
|
5158
5226
|
message: string;
|
@@ -5609,9 +5677,27 @@ export declare const messengerContract: {
|
|
5609
5677
|
booleanValue: boolean | null;
|
5610
5678
|
numberValue: number | null;
|
5611
5679
|
dateValue: Date | null;
|
5612
|
-
}[] | undefined;
|
5680
|
+
}[] | null | undefined;
|
5613
5681
|
} | null;
|
5614
5682
|
};
|
5683
|
+
workflowRule: {
|
5684
|
+
type: string;
|
5685
|
+
id: string;
|
5686
|
+
name: string;
|
5687
|
+
createdAt: Date;
|
5688
|
+
updatedAt: Date;
|
5689
|
+
deletedAt: Date | null;
|
5690
|
+
isActive: boolean;
|
5691
|
+
};
|
5692
|
+
};
|
5693
|
+
workflowRule: {
|
5694
|
+
type: string;
|
5695
|
+
id: string;
|
5696
|
+
name: string;
|
5697
|
+
createdAt: Date;
|
5698
|
+
updatedAt: Date;
|
5699
|
+
deletedAt: Date | null;
|
5700
|
+
isActive: boolean;
|
5615
5701
|
};
|
5616
5702
|
readAt: Date;
|
5617
5703
|
platformMessageId: string;
|
@@ -6284,9 +6370,27 @@ export declare const messengerContract: {
|
|
6284
6370
|
booleanValue: boolean | null;
|
6285
6371
|
numberValue: number | null;
|
6286
6372
|
dateValue: Date | null;
|
6287
|
-
}[] | undefined;
|
6373
|
+
}[] | null | undefined;
|
6288
6374
|
} | null;
|
6289
6375
|
};
|
6376
|
+
workflowRule: {
|
6377
|
+
type: string;
|
6378
|
+
id: string;
|
6379
|
+
name: string;
|
6380
|
+
createdAt: Date;
|
6381
|
+
updatedAt: Date;
|
6382
|
+
deletedAt: Date | null;
|
6383
|
+
isActive: boolean;
|
6384
|
+
};
|
6385
|
+
};
|
6386
|
+
workflowRule: {
|
6387
|
+
type: string;
|
6388
|
+
id: string;
|
6389
|
+
name: string;
|
6390
|
+
createdAt: Date;
|
6391
|
+
updatedAt: Date;
|
6392
|
+
deletedAt: Date | null;
|
6393
|
+
isActive: boolean;
|
6290
6394
|
};
|
6291
6395
|
readAt: Date;
|
6292
6396
|
platformMessageId: string;
|
@@ -6961,9 +7065,27 @@ export declare const messengerContract: {
|
|
6961
7065
|
booleanValue: boolean | null;
|
6962
7066
|
numberValue: number | null;
|
6963
7067
|
dateValue: Date | null;
|
6964
|
-
}[] | undefined;
|
7068
|
+
}[] | null | undefined;
|
6965
7069
|
} | null;
|
6966
7070
|
};
|
7071
|
+
workflowRule: {
|
7072
|
+
type: string;
|
7073
|
+
id: string;
|
7074
|
+
name: string;
|
7075
|
+
createdAt: Date;
|
7076
|
+
updatedAt: Date;
|
7077
|
+
deletedAt: Date | null;
|
7078
|
+
isActive: boolean;
|
7079
|
+
};
|
7080
|
+
};
|
7081
|
+
workflowRule: {
|
7082
|
+
type: string;
|
7083
|
+
id: string;
|
7084
|
+
name: string;
|
7085
|
+
createdAt: Date;
|
7086
|
+
updatedAt: Date;
|
7087
|
+
deletedAt: Date | null;
|
7088
|
+
isActive: boolean;
|
6967
7089
|
};
|
6968
7090
|
readAt: Date;
|
6969
7091
|
platformMessageId: string;
|
@@ -7639,9 +7761,27 @@ export declare const messengerContract: {
|
|
7639
7761
|
booleanValue: boolean | null;
|
7640
7762
|
numberValue: number | null;
|
7641
7763
|
dateValue: Date | null;
|
7642
|
-
}[] | undefined;
|
7764
|
+
}[] | null | undefined;
|
7643
7765
|
} | null;
|
7644
7766
|
};
|
7767
|
+
workflowRule: {
|
7768
|
+
type: string;
|
7769
|
+
id: string;
|
7770
|
+
name: string;
|
7771
|
+
createdAt: Date;
|
7772
|
+
updatedAt: Date;
|
7773
|
+
deletedAt: Date | null;
|
7774
|
+
isActive: boolean;
|
7775
|
+
};
|
7776
|
+
};
|
7777
|
+
workflowRule: {
|
7778
|
+
type: string;
|
7779
|
+
id: string;
|
7780
|
+
name: string;
|
7781
|
+
createdAt: Date;
|
7782
|
+
updatedAt: Date;
|
7783
|
+
deletedAt: Date | null;
|
7784
|
+
isActive: boolean;
|
7645
7785
|
};
|
7646
7786
|
readAt: Date;
|
7647
7787
|
platformMessageId: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/messenger/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAKpB,OAAO,EACL,aAAa,EAKd,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,2BAA2B,EAC3B,sBAAsB,EACtB,wBAAwB,EACzB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC9E,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,2BAA2B,CAAC,CAAC;AAChF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AACpE,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,wBAAwB,CAChC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkF5B,CAAC"}
|