@kl1/contracts 1.1.24-uat → 1.1.26-uat
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 +14 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -3
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +3341 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +528 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +666 -4
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +6481 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +241 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +390 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +333 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +333 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +861 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +861 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +287 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +241 -2
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +333 -2
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +333 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +333 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +706 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +149 -2
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +29 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -2423,8 +2423,7 @@ export declare const messengerContract: {
|
|
2423
2423
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2424
2424
|
note: z.ZodNullable<z.ZodString>;
|
2425
2425
|
disposition: z.ZodNullable<z.ZodString>;
|
2426
|
-
|
2427
|
-
callTo: z.ZodNullable<z.ZodString>;
|
2426
|
+
type: z.ZodString;
|
2428
2427
|
tags: z.ZodArray<z.ZodObject<{
|
2429
2428
|
id: z.ZodString;
|
2430
2429
|
createdAt: z.ZodDate;
|
@@ -2444,12 +2443,137 @@ export declare const messengerContract: {
|
|
2444
2443
|
updatedAt: Date;
|
2445
2444
|
deletedAt: Date | null;
|
2446
2445
|
}>, "many">;
|
2446
|
+
categories: z.ZodArray<z.ZodObject<{
|
2447
|
+
id: z.ZodString;
|
2448
|
+
createdAt: z.ZodDate;
|
2449
|
+
updatedAt: z.ZodDate;
|
2450
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2451
|
+
value: z.ZodString;
|
2452
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2453
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2454
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2455
|
+
id: z.ZodString;
|
2456
|
+
value: z.ZodString;
|
2457
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2458
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2459
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2460
|
+
id: z.ZodString;
|
2461
|
+
value: z.ZodString;
|
2462
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2463
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2464
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
2465
|
+
}, "strip", z.ZodTypeAny, {
|
2466
|
+
id: string;
|
2467
|
+
value: string;
|
2468
|
+
level: 2 | 1 | 3;
|
2469
|
+
parentId: string | null;
|
2470
|
+
childCategoryList: any[];
|
2471
|
+
}, {
|
2472
|
+
id: string;
|
2473
|
+
value: string;
|
2474
|
+
level: 2 | 1 | 3;
|
2475
|
+
parentId: string | null;
|
2476
|
+
childCategoryList: any[];
|
2477
|
+
}>, "many">;
|
2478
|
+
}, "strip", z.ZodTypeAny, {
|
2479
|
+
id: string;
|
2480
|
+
value: string;
|
2481
|
+
level: 2 | 1 | 3;
|
2482
|
+
parentId: string | null;
|
2483
|
+
childCategoryList: {
|
2484
|
+
id: string;
|
2485
|
+
value: string;
|
2486
|
+
level: 2 | 1 | 3;
|
2487
|
+
parentId: string | null;
|
2488
|
+
childCategoryList: any[];
|
2489
|
+
}[];
|
2490
|
+
}, {
|
2491
|
+
id: string;
|
2492
|
+
value: string;
|
2493
|
+
level: 2 | 1 | 3;
|
2494
|
+
parentId: string | null;
|
2495
|
+
childCategoryList: {
|
2496
|
+
id: string;
|
2497
|
+
value: string;
|
2498
|
+
level: 2 | 1 | 3;
|
2499
|
+
parentId: string | null;
|
2500
|
+
childCategoryList: any[];
|
2501
|
+
}[];
|
2502
|
+
}>, "many">;
|
2503
|
+
}, "strip", z.ZodTypeAny, {
|
2504
|
+
id: string;
|
2505
|
+
value: string;
|
2506
|
+
createdAt: Date;
|
2507
|
+
updatedAt: Date;
|
2508
|
+
deletedAt: Date | null;
|
2509
|
+
level: 2 | 1 | 3;
|
2510
|
+
parentId: string | null;
|
2511
|
+
childCategoryList: {
|
2512
|
+
id: string;
|
2513
|
+
value: string;
|
2514
|
+
level: 2 | 1 | 3;
|
2515
|
+
parentId: string | null;
|
2516
|
+
childCategoryList: {
|
2517
|
+
id: string;
|
2518
|
+
value: string;
|
2519
|
+
level: 2 | 1 | 3;
|
2520
|
+
parentId: string | null;
|
2521
|
+
childCategoryList: any[];
|
2522
|
+
}[];
|
2523
|
+
}[];
|
2524
|
+
}, {
|
2525
|
+
id: string;
|
2526
|
+
value: string;
|
2527
|
+
createdAt: Date;
|
2528
|
+
updatedAt: Date;
|
2529
|
+
deletedAt: Date | null;
|
2530
|
+
level: 2 | 1 | 3;
|
2531
|
+
parentId: string | null;
|
2532
|
+
childCategoryList: {
|
2533
|
+
id: string;
|
2534
|
+
value: string;
|
2535
|
+
level: 2 | 1 | 3;
|
2536
|
+
parentId: string | null;
|
2537
|
+
childCategoryList: {
|
2538
|
+
id: string;
|
2539
|
+
value: string;
|
2540
|
+
level: 2 | 1 | 3;
|
2541
|
+
parentId: string | null;
|
2542
|
+
childCategoryList: any[];
|
2543
|
+
}[];
|
2544
|
+
}[];
|
2545
|
+
}>, "many">;
|
2546
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2547
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2447
2548
|
}, "strip", z.ZodTypeAny, {
|
2549
|
+
type: string;
|
2448
2550
|
id: string;
|
2449
2551
|
disposition: string | null;
|
2450
2552
|
createdAt: Date;
|
2451
2553
|
updatedAt: Date;
|
2452
2554
|
deletedAt: Date | null;
|
2555
|
+
categories: {
|
2556
|
+
id: string;
|
2557
|
+
value: string;
|
2558
|
+
createdAt: Date;
|
2559
|
+
updatedAt: Date;
|
2560
|
+
deletedAt: Date | null;
|
2561
|
+
level: 2 | 1 | 3;
|
2562
|
+
parentId: string | null;
|
2563
|
+
childCategoryList: {
|
2564
|
+
id: string;
|
2565
|
+
value: string;
|
2566
|
+
level: 2 | 1 | 3;
|
2567
|
+
parentId: string | null;
|
2568
|
+
childCategoryList: {
|
2569
|
+
id: string;
|
2570
|
+
value: string;
|
2571
|
+
level: 2 | 1 | 3;
|
2572
|
+
parentId: string | null;
|
2573
|
+
childCategoryList: any[];
|
2574
|
+
}[];
|
2575
|
+
}[];
|
2576
|
+
}[];
|
2453
2577
|
tags: {
|
2454
2578
|
id: string;
|
2455
2579
|
name: string;
|
@@ -2461,11 +2585,34 @@ export declare const messengerContract: {
|
|
2461
2585
|
callTo: string | null;
|
2462
2586
|
note: string | null;
|
2463
2587
|
}, {
|
2588
|
+
type: string;
|
2464
2589
|
id: string;
|
2465
2590
|
disposition: string | null;
|
2466
2591
|
createdAt: Date;
|
2467
2592
|
updatedAt: Date;
|
2468
2593
|
deletedAt: Date | null;
|
2594
|
+
categories: {
|
2595
|
+
id: string;
|
2596
|
+
value: string;
|
2597
|
+
createdAt: Date;
|
2598
|
+
updatedAt: Date;
|
2599
|
+
deletedAt: Date | null;
|
2600
|
+
level: 2 | 1 | 3;
|
2601
|
+
parentId: string | null;
|
2602
|
+
childCategoryList: {
|
2603
|
+
id: string;
|
2604
|
+
value: string;
|
2605
|
+
level: 2 | 1 | 3;
|
2606
|
+
parentId: string | null;
|
2607
|
+
childCategoryList: {
|
2608
|
+
id: string;
|
2609
|
+
value: string;
|
2610
|
+
level: 2 | 1 | 3;
|
2611
|
+
parentId: string | null;
|
2612
|
+
childCategoryList: any[];
|
2613
|
+
}[];
|
2614
|
+
}[];
|
2615
|
+
}[];
|
2469
2616
|
tags: {
|
2470
2617
|
id: string;
|
2471
2618
|
name: string;
|
@@ -2494,11 +2641,34 @@ export declare const messengerContract: {
|
|
2494
2641
|
handledTime: number | null;
|
2495
2642
|
firstResponseTime: number | null;
|
2496
2643
|
wrapUpForm: {
|
2644
|
+
type: string;
|
2497
2645
|
id: string;
|
2498
2646
|
disposition: string | null;
|
2499
2647
|
createdAt: Date;
|
2500
2648
|
updatedAt: Date;
|
2501
2649
|
deletedAt: Date | null;
|
2650
|
+
categories: {
|
2651
|
+
id: string;
|
2652
|
+
value: string;
|
2653
|
+
createdAt: Date;
|
2654
|
+
updatedAt: Date;
|
2655
|
+
deletedAt: Date | null;
|
2656
|
+
level: 2 | 1 | 3;
|
2657
|
+
parentId: string | null;
|
2658
|
+
childCategoryList: {
|
2659
|
+
id: string;
|
2660
|
+
value: string;
|
2661
|
+
level: 2 | 1 | 3;
|
2662
|
+
parentId: string | null;
|
2663
|
+
childCategoryList: {
|
2664
|
+
id: string;
|
2665
|
+
value: string;
|
2666
|
+
level: 2 | 1 | 3;
|
2667
|
+
parentId: string | null;
|
2668
|
+
childCategoryList: any[];
|
2669
|
+
}[];
|
2670
|
+
}[];
|
2671
|
+
}[];
|
2502
2672
|
tags: {
|
2503
2673
|
id: string;
|
2504
2674
|
name: string;
|
@@ -2527,11 +2697,34 @@ export declare const messengerContract: {
|
|
2527
2697
|
handledTime: number | null;
|
2528
2698
|
firstResponseTime: number | null;
|
2529
2699
|
wrapUpForm: {
|
2700
|
+
type: string;
|
2530
2701
|
id: string;
|
2531
2702
|
disposition: string | null;
|
2532
2703
|
createdAt: Date;
|
2533
2704
|
updatedAt: Date;
|
2534
2705
|
deletedAt: Date | null;
|
2706
|
+
categories: {
|
2707
|
+
id: string;
|
2708
|
+
value: string;
|
2709
|
+
createdAt: Date;
|
2710
|
+
updatedAt: Date;
|
2711
|
+
deletedAt: Date | null;
|
2712
|
+
level: 2 | 1 | 3;
|
2713
|
+
parentId: string | null;
|
2714
|
+
childCategoryList: {
|
2715
|
+
id: string;
|
2716
|
+
value: string;
|
2717
|
+
level: 2 | 1 | 3;
|
2718
|
+
parentId: string | null;
|
2719
|
+
childCategoryList: {
|
2720
|
+
id: string;
|
2721
|
+
value: string;
|
2722
|
+
level: 2 | 1 | 3;
|
2723
|
+
parentId: string | null;
|
2724
|
+
childCategoryList: any[];
|
2725
|
+
}[];
|
2726
|
+
}[];
|
2727
|
+
}[];
|
2535
2728
|
tags: {
|
2536
2729
|
id: string;
|
2537
2730
|
name: string;
|
@@ -2841,11 +3034,34 @@ export declare const messengerContract: {
|
|
2841
3034
|
handledTime: number | null;
|
2842
3035
|
firstResponseTime: number | null;
|
2843
3036
|
wrapUpForm: {
|
3037
|
+
type: string;
|
2844
3038
|
id: string;
|
2845
3039
|
disposition: string | null;
|
2846
3040
|
createdAt: Date;
|
2847
3041
|
updatedAt: Date;
|
2848
3042
|
deletedAt: Date | null;
|
3043
|
+
categories: {
|
3044
|
+
id: string;
|
3045
|
+
value: string;
|
3046
|
+
createdAt: Date;
|
3047
|
+
updatedAt: Date;
|
3048
|
+
deletedAt: Date | null;
|
3049
|
+
level: 2 | 1 | 3;
|
3050
|
+
parentId: string | null;
|
3051
|
+
childCategoryList: {
|
3052
|
+
id: string;
|
3053
|
+
value: string;
|
3054
|
+
level: 2 | 1 | 3;
|
3055
|
+
parentId: string | null;
|
3056
|
+
childCategoryList: {
|
3057
|
+
id: string;
|
3058
|
+
value: string;
|
3059
|
+
level: 2 | 1 | 3;
|
3060
|
+
parentId: string | null;
|
3061
|
+
childCategoryList: any[];
|
3062
|
+
}[];
|
3063
|
+
}[];
|
3064
|
+
}[];
|
2849
3065
|
tags: {
|
2850
3066
|
id: string;
|
2851
3067
|
name: string;
|
@@ -3155,11 +3371,34 @@ export declare const messengerContract: {
|
|
3155
3371
|
handledTime: number | null;
|
3156
3372
|
firstResponseTime: number | null;
|
3157
3373
|
wrapUpForm: {
|
3374
|
+
type: string;
|
3158
3375
|
id: string;
|
3159
3376
|
disposition: string | null;
|
3160
3377
|
createdAt: Date;
|
3161
3378
|
updatedAt: Date;
|
3162
3379
|
deletedAt: Date | null;
|
3380
|
+
categories: {
|
3381
|
+
id: string;
|
3382
|
+
value: string;
|
3383
|
+
createdAt: Date;
|
3384
|
+
updatedAt: Date;
|
3385
|
+
deletedAt: Date | null;
|
3386
|
+
level: 2 | 1 | 3;
|
3387
|
+
parentId: string | null;
|
3388
|
+
childCategoryList: {
|
3389
|
+
id: string;
|
3390
|
+
value: string;
|
3391
|
+
level: 2 | 1 | 3;
|
3392
|
+
parentId: string | null;
|
3393
|
+
childCategoryList: {
|
3394
|
+
id: string;
|
3395
|
+
value: string;
|
3396
|
+
level: 2 | 1 | 3;
|
3397
|
+
parentId: string | null;
|
3398
|
+
childCategoryList: any[];
|
3399
|
+
}[];
|
3400
|
+
}[];
|
3401
|
+
}[];
|
3163
3402
|
tags: {
|
3164
3403
|
id: string;
|
3165
3404
|
name: string;
|
@@ -5215,11 +5454,34 @@ export declare const messengerContract: {
|
|
5215
5454
|
handledTime: number | null;
|
5216
5455
|
firstResponseTime: number | null;
|
5217
5456
|
wrapUpForm: {
|
5457
|
+
type: string;
|
5218
5458
|
id: string;
|
5219
5459
|
disposition: string | null;
|
5220
5460
|
createdAt: Date;
|
5221
5461
|
updatedAt: Date;
|
5222
5462
|
deletedAt: Date | null;
|
5463
|
+
categories: {
|
5464
|
+
id: string;
|
5465
|
+
value: string;
|
5466
|
+
createdAt: Date;
|
5467
|
+
updatedAt: Date;
|
5468
|
+
deletedAt: Date | null;
|
5469
|
+
level: 2 | 1 | 3;
|
5470
|
+
parentId: string | null;
|
5471
|
+
childCategoryList: {
|
5472
|
+
id: string;
|
5473
|
+
value: string;
|
5474
|
+
level: 2 | 1 | 3;
|
5475
|
+
parentId: string | null;
|
5476
|
+
childCategoryList: {
|
5477
|
+
id: string;
|
5478
|
+
value: string;
|
5479
|
+
level: 2 | 1 | 3;
|
5480
|
+
parentId: string | null;
|
5481
|
+
childCategoryList: any[];
|
5482
|
+
}[];
|
5483
|
+
}[];
|
5484
|
+
}[];
|
5223
5485
|
tags: {
|
5224
5486
|
id: string;
|
5225
5487
|
name: string;
|
@@ -5855,11 +6117,34 @@ export declare const messengerContract: {
|
|
5855
6117
|
handledTime: number | null;
|
5856
6118
|
firstResponseTime: number | null;
|
5857
6119
|
wrapUpForm: {
|
6120
|
+
type: string;
|
5858
6121
|
id: string;
|
5859
6122
|
disposition: string | null;
|
5860
6123
|
createdAt: Date;
|
5861
6124
|
updatedAt: Date;
|
5862
6125
|
deletedAt: Date | null;
|
6126
|
+
categories: {
|
6127
|
+
id: string;
|
6128
|
+
value: string;
|
6129
|
+
createdAt: Date;
|
6130
|
+
updatedAt: Date;
|
6131
|
+
deletedAt: Date | null;
|
6132
|
+
level: 2 | 1 | 3;
|
6133
|
+
parentId: string | null;
|
6134
|
+
childCategoryList: {
|
6135
|
+
id: string;
|
6136
|
+
value: string;
|
6137
|
+
level: 2 | 1 | 3;
|
6138
|
+
parentId: string | null;
|
6139
|
+
childCategoryList: {
|
6140
|
+
id: string;
|
6141
|
+
value: string;
|
6142
|
+
level: 2 | 1 | 3;
|
6143
|
+
parentId: string | null;
|
6144
|
+
childCategoryList: any[];
|
6145
|
+
}[];
|
6146
|
+
}[];
|
6147
|
+
}[];
|
5863
6148
|
tags: {
|
5864
6149
|
id: string;
|
5865
6150
|
name: string;
|
@@ -6497,11 +6782,34 @@ export declare const messengerContract: {
|
|
6497
6782
|
handledTime: number | null;
|
6498
6783
|
firstResponseTime: number | null;
|
6499
6784
|
wrapUpForm: {
|
6785
|
+
type: string;
|
6500
6786
|
id: string;
|
6501
6787
|
disposition: string | null;
|
6502
6788
|
createdAt: Date;
|
6503
6789
|
updatedAt: Date;
|
6504
6790
|
deletedAt: Date | null;
|
6791
|
+
categories: {
|
6792
|
+
id: string;
|
6793
|
+
value: string;
|
6794
|
+
createdAt: Date;
|
6795
|
+
updatedAt: Date;
|
6796
|
+
deletedAt: Date | null;
|
6797
|
+
level: 2 | 1 | 3;
|
6798
|
+
parentId: string | null;
|
6799
|
+
childCategoryList: {
|
6800
|
+
id: string;
|
6801
|
+
value: string;
|
6802
|
+
level: 2 | 1 | 3;
|
6803
|
+
parentId: string | null;
|
6804
|
+
childCategoryList: {
|
6805
|
+
id: string;
|
6806
|
+
value: string;
|
6807
|
+
level: 2 | 1 | 3;
|
6808
|
+
parentId: string | null;
|
6809
|
+
childCategoryList: any[];
|
6810
|
+
}[];
|
6811
|
+
}[];
|
6812
|
+
}[];
|
6505
6813
|
tags: {
|
6506
6814
|
id: string;
|
6507
6815
|
name: string;
|
@@ -7140,11 +7448,34 @@ export declare const messengerContract: {
|
|
7140
7448
|
handledTime: number | null;
|
7141
7449
|
firstResponseTime: number | null;
|
7142
7450
|
wrapUpForm: {
|
7451
|
+
type: string;
|
7143
7452
|
id: string;
|
7144
7453
|
disposition: string | null;
|
7145
7454
|
createdAt: Date;
|
7146
7455
|
updatedAt: Date;
|
7147
7456
|
deletedAt: Date | null;
|
7457
|
+
categories: {
|
7458
|
+
id: string;
|
7459
|
+
value: string;
|
7460
|
+
createdAt: Date;
|
7461
|
+
updatedAt: Date;
|
7462
|
+
deletedAt: Date | null;
|
7463
|
+
level: 2 | 1 | 3;
|
7464
|
+
parentId: string | null;
|
7465
|
+
childCategoryList: {
|
7466
|
+
id: string;
|
7467
|
+
value: string;
|
7468
|
+
level: 2 | 1 | 3;
|
7469
|
+
parentId: string | null;
|
7470
|
+
childCategoryList: {
|
7471
|
+
id: string;
|
7472
|
+
value: string;
|
7473
|
+
level: 2 | 1 | 3;
|
7474
|
+
parentId: string | null;
|
7475
|
+
childCategoryList: any[];
|
7476
|
+
}[];
|
7477
|
+
}[];
|
7478
|
+
}[];
|
7148
7479
|
tags: {
|
7149
7480
|
id: string;
|
7150
7481
|
name: 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"}
|