@kl1/contracts 1.1.25 → 1.1.26
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 +935 -924
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +934 -924
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +4867 -22
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +773 -22
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +975 -5
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +3 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +3 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +164160 -131652
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +352 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +557 -4
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +487 -2
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +487 -2
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +30477 -6759
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +6424 -64
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +19532 -2172
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +7 -4
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +762 -40
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +6057 -350
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5984 -308
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +487 -2
- 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 +487 -2
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +487 -2
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +834 -4
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +1447 -6
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +207 -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,171 @@ 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>;
|
2548
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2549
|
+
id: z.ZodString;
|
2550
|
+
createdAt: z.ZodDate;
|
2551
|
+
updatedAt: z.ZodDate;
|
2552
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2553
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2554
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2555
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
2556
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
2557
|
+
entityId: z.ZodString;
|
2558
|
+
attributeId: z.ZodString;
|
2559
|
+
}, "strip", z.ZodTypeAny, {
|
2560
|
+
id: string;
|
2561
|
+
createdAt: Date;
|
2562
|
+
updatedAt: Date;
|
2563
|
+
deletedAt: Date | null;
|
2564
|
+
entityId: string;
|
2565
|
+
attributeId: string;
|
2566
|
+
textValue: string | null;
|
2567
|
+
booleanValue: boolean | null;
|
2568
|
+
numberValue: number | null;
|
2569
|
+
dateValue: Date | null;
|
2570
|
+
}, {
|
2571
|
+
id: string;
|
2572
|
+
createdAt: Date;
|
2573
|
+
updatedAt: Date;
|
2574
|
+
deletedAt: Date | null;
|
2575
|
+
entityId: string;
|
2576
|
+
attributeId: string;
|
2577
|
+
textValue: string | null;
|
2578
|
+
booleanValue: boolean | null;
|
2579
|
+
numberValue: number | null;
|
2580
|
+
dateValue: Date | null;
|
2581
|
+
}>, "many">>>;
|
2447
2582
|
}, "strip", z.ZodTypeAny, {
|
2583
|
+
type: string;
|
2448
2584
|
id: string;
|
2449
2585
|
disposition: string | null;
|
2450
2586
|
createdAt: Date;
|
2451
2587
|
updatedAt: Date;
|
2452
2588
|
deletedAt: Date | null;
|
2589
|
+
categories: {
|
2590
|
+
id: string;
|
2591
|
+
value: string;
|
2592
|
+
createdAt: Date;
|
2593
|
+
updatedAt: Date;
|
2594
|
+
deletedAt: Date | null;
|
2595
|
+
level: 2 | 1 | 3;
|
2596
|
+
parentId: string | null;
|
2597
|
+
childCategoryList: {
|
2598
|
+
id: string;
|
2599
|
+
value: string;
|
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: any[];
|
2608
|
+
}[];
|
2609
|
+
}[];
|
2610
|
+
}[];
|
2453
2611
|
tags: {
|
2454
2612
|
id: string;
|
2455
2613
|
name: string;
|
@@ -2460,12 +2618,47 @@ export declare const messengerContract: {
|
|
2460
2618
|
callFrom: string | null;
|
2461
2619
|
callTo: string | null;
|
2462
2620
|
note: string | null;
|
2621
|
+
customFields?: {
|
2622
|
+
id: string;
|
2623
|
+
createdAt: Date;
|
2624
|
+
updatedAt: Date;
|
2625
|
+
deletedAt: Date | null;
|
2626
|
+
entityId: string;
|
2627
|
+
attributeId: string;
|
2628
|
+
textValue: string | null;
|
2629
|
+
booleanValue: boolean | null;
|
2630
|
+
numberValue: number | null;
|
2631
|
+
dateValue: Date | null;
|
2632
|
+
}[] | null | undefined;
|
2463
2633
|
}, {
|
2634
|
+
type: string;
|
2464
2635
|
id: string;
|
2465
2636
|
disposition: string | null;
|
2466
2637
|
createdAt: Date;
|
2467
2638
|
updatedAt: Date;
|
2468
2639
|
deletedAt: Date | null;
|
2640
|
+
categories: {
|
2641
|
+
id: string;
|
2642
|
+
value: string;
|
2643
|
+
createdAt: Date;
|
2644
|
+
updatedAt: Date;
|
2645
|
+
deletedAt: Date | null;
|
2646
|
+
level: 2 | 1 | 3;
|
2647
|
+
parentId: string | null;
|
2648
|
+
childCategoryList: {
|
2649
|
+
id: string;
|
2650
|
+
value: string;
|
2651
|
+
level: 2 | 1 | 3;
|
2652
|
+
parentId: string | null;
|
2653
|
+
childCategoryList: {
|
2654
|
+
id: string;
|
2655
|
+
value: string;
|
2656
|
+
level: 2 | 1 | 3;
|
2657
|
+
parentId: string | null;
|
2658
|
+
childCategoryList: any[];
|
2659
|
+
}[];
|
2660
|
+
}[];
|
2661
|
+
}[];
|
2469
2662
|
tags: {
|
2470
2663
|
id: string;
|
2471
2664
|
name: string;
|
@@ -2476,6 +2669,18 @@ export declare const messengerContract: {
|
|
2476
2669
|
callFrom: string | null;
|
2477
2670
|
callTo: string | null;
|
2478
2671
|
note: string | null;
|
2672
|
+
customFields?: {
|
2673
|
+
id: string;
|
2674
|
+
createdAt: Date;
|
2675
|
+
updatedAt: Date;
|
2676
|
+
deletedAt: Date | null;
|
2677
|
+
entityId: string;
|
2678
|
+
attributeId: string;
|
2679
|
+
textValue: string | null;
|
2680
|
+
booleanValue: boolean | null;
|
2681
|
+
numberValue: number | null;
|
2682
|
+
dateValue: Date | null;
|
2683
|
+
}[] | null | undefined;
|
2479
2684
|
}>>;
|
2480
2685
|
}, "strip", z.ZodTypeAny, {
|
2481
2686
|
id: string;
|
@@ -2494,11 +2699,34 @@ export declare const messengerContract: {
|
|
2494
2699
|
handledTime: number | null;
|
2495
2700
|
firstResponseTime: number | null;
|
2496
2701
|
wrapUpForm: {
|
2702
|
+
type: string;
|
2497
2703
|
id: string;
|
2498
2704
|
disposition: string | null;
|
2499
2705
|
createdAt: Date;
|
2500
2706
|
updatedAt: Date;
|
2501
2707
|
deletedAt: Date | null;
|
2708
|
+
categories: {
|
2709
|
+
id: string;
|
2710
|
+
value: string;
|
2711
|
+
createdAt: Date;
|
2712
|
+
updatedAt: Date;
|
2713
|
+
deletedAt: Date | null;
|
2714
|
+
level: 2 | 1 | 3;
|
2715
|
+
parentId: string | null;
|
2716
|
+
childCategoryList: {
|
2717
|
+
id: string;
|
2718
|
+
value: string;
|
2719
|
+
level: 2 | 1 | 3;
|
2720
|
+
parentId: string | null;
|
2721
|
+
childCategoryList: {
|
2722
|
+
id: string;
|
2723
|
+
value: string;
|
2724
|
+
level: 2 | 1 | 3;
|
2725
|
+
parentId: string | null;
|
2726
|
+
childCategoryList: any[];
|
2727
|
+
}[];
|
2728
|
+
}[];
|
2729
|
+
}[];
|
2502
2730
|
tags: {
|
2503
2731
|
id: string;
|
2504
2732
|
name: string;
|
@@ -2509,6 +2737,18 @@ export declare const messengerContract: {
|
|
2509
2737
|
callFrom: string | null;
|
2510
2738
|
callTo: string | null;
|
2511
2739
|
note: string | null;
|
2740
|
+
customFields?: {
|
2741
|
+
id: string;
|
2742
|
+
createdAt: Date;
|
2743
|
+
updatedAt: Date;
|
2744
|
+
deletedAt: Date | null;
|
2745
|
+
entityId: string;
|
2746
|
+
attributeId: string;
|
2747
|
+
textValue: string | null;
|
2748
|
+
booleanValue: boolean | null;
|
2749
|
+
numberValue: number | null;
|
2750
|
+
dateValue: Date | null;
|
2751
|
+
}[] | null | undefined;
|
2512
2752
|
} | null;
|
2513
2753
|
}, {
|
2514
2754
|
id: string;
|
@@ -2527,11 +2767,34 @@ export declare const messengerContract: {
|
|
2527
2767
|
handledTime: number | null;
|
2528
2768
|
firstResponseTime: number | null;
|
2529
2769
|
wrapUpForm: {
|
2770
|
+
type: string;
|
2530
2771
|
id: string;
|
2531
2772
|
disposition: string | null;
|
2532
2773
|
createdAt: Date;
|
2533
2774
|
updatedAt: Date;
|
2534
2775
|
deletedAt: Date | null;
|
2776
|
+
categories: {
|
2777
|
+
id: string;
|
2778
|
+
value: string;
|
2779
|
+
createdAt: Date;
|
2780
|
+
updatedAt: Date;
|
2781
|
+
deletedAt: Date | null;
|
2782
|
+
level: 2 | 1 | 3;
|
2783
|
+
parentId: string | null;
|
2784
|
+
childCategoryList: {
|
2785
|
+
id: string;
|
2786
|
+
value: string;
|
2787
|
+
level: 2 | 1 | 3;
|
2788
|
+
parentId: string | null;
|
2789
|
+
childCategoryList: {
|
2790
|
+
id: string;
|
2791
|
+
value: string;
|
2792
|
+
level: 2 | 1 | 3;
|
2793
|
+
parentId: string | null;
|
2794
|
+
childCategoryList: any[];
|
2795
|
+
}[];
|
2796
|
+
}[];
|
2797
|
+
}[];
|
2535
2798
|
tags: {
|
2536
2799
|
id: string;
|
2537
2800
|
name: string;
|
@@ -2542,6 +2805,18 @@ export declare const messengerContract: {
|
|
2542
2805
|
callFrom: string | null;
|
2543
2806
|
callTo: string | null;
|
2544
2807
|
note: string | null;
|
2808
|
+
customFields?: {
|
2809
|
+
id: string;
|
2810
|
+
createdAt: Date;
|
2811
|
+
updatedAt: Date;
|
2812
|
+
deletedAt: Date | null;
|
2813
|
+
entityId: string;
|
2814
|
+
attributeId: string;
|
2815
|
+
textValue: string | null;
|
2816
|
+
booleanValue: boolean | null;
|
2817
|
+
numberValue: number | null;
|
2818
|
+
dateValue: Date | null;
|
2819
|
+
}[] | null | undefined;
|
2545
2820
|
} | null;
|
2546
2821
|
}>;
|
2547
2822
|
workflowRule: z.ZodObject<{
|
@@ -2866,11 +3141,34 @@ export declare const messengerContract: {
|
|
2866
3141
|
handledTime: number | null;
|
2867
3142
|
firstResponseTime: number | null;
|
2868
3143
|
wrapUpForm: {
|
3144
|
+
type: string;
|
2869
3145
|
id: string;
|
2870
3146
|
disposition: string | null;
|
2871
3147
|
createdAt: Date;
|
2872
3148
|
updatedAt: Date;
|
2873
3149
|
deletedAt: Date | null;
|
3150
|
+
categories: {
|
3151
|
+
id: string;
|
3152
|
+
value: string;
|
3153
|
+
createdAt: Date;
|
3154
|
+
updatedAt: Date;
|
3155
|
+
deletedAt: Date | null;
|
3156
|
+
level: 2 | 1 | 3;
|
3157
|
+
parentId: string | null;
|
3158
|
+
childCategoryList: {
|
3159
|
+
id: string;
|
3160
|
+
value: string;
|
3161
|
+
level: 2 | 1 | 3;
|
3162
|
+
parentId: string | null;
|
3163
|
+
childCategoryList: {
|
3164
|
+
id: string;
|
3165
|
+
value: string;
|
3166
|
+
level: 2 | 1 | 3;
|
3167
|
+
parentId: string | null;
|
3168
|
+
childCategoryList: any[];
|
3169
|
+
}[];
|
3170
|
+
}[];
|
3171
|
+
}[];
|
2874
3172
|
tags: {
|
2875
3173
|
id: string;
|
2876
3174
|
name: string;
|
@@ -2881,6 +3179,18 @@ export declare const messengerContract: {
|
|
2881
3179
|
callFrom: string | null;
|
2882
3180
|
callTo: string | null;
|
2883
3181
|
note: string | null;
|
3182
|
+
customFields?: {
|
3183
|
+
id: string;
|
3184
|
+
createdAt: Date;
|
3185
|
+
updatedAt: Date;
|
3186
|
+
deletedAt: Date | null;
|
3187
|
+
entityId: string;
|
3188
|
+
attributeId: string;
|
3189
|
+
textValue: string | null;
|
3190
|
+
booleanValue: boolean | null;
|
3191
|
+
numberValue: number | null;
|
3192
|
+
dateValue: Date | null;
|
3193
|
+
}[] | null | undefined;
|
2884
3194
|
} | null;
|
2885
3195
|
};
|
2886
3196
|
workflowRule: {
|
@@ -3189,11 +3499,34 @@ export declare const messengerContract: {
|
|
3189
3499
|
handledTime: number | null;
|
3190
3500
|
firstResponseTime: number | null;
|
3191
3501
|
wrapUpForm: {
|
3502
|
+
type: string;
|
3192
3503
|
id: string;
|
3193
3504
|
disposition: string | null;
|
3194
3505
|
createdAt: Date;
|
3195
3506
|
updatedAt: Date;
|
3196
3507
|
deletedAt: Date | null;
|
3508
|
+
categories: {
|
3509
|
+
id: string;
|
3510
|
+
value: string;
|
3511
|
+
createdAt: Date;
|
3512
|
+
updatedAt: Date;
|
3513
|
+
deletedAt: Date | null;
|
3514
|
+
level: 2 | 1 | 3;
|
3515
|
+
parentId: string | null;
|
3516
|
+
childCategoryList: {
|
3517
|
+
id: string;
|
3518
|
+
value: string;
|
3519
|
+
level: 2 | 1 | 3;
|
3520
|
+
parentId: string | null;
|
3521
|
+
childCategoryList: {
|
3522
|
+
id: string;
|
3523
|
+
value: string;
|
3524
|
+
level: 2 | 1 | 3;
|
3525
|
+
parentId: string | null;
|
3526
|
+
childCategoryList: any[];
|
3527
|
+
}[];
|
3528
|
+
}[];
|
3529
|
+
}[];
|
3197
3530
|
tags: {
|
3198
3531
|
id: string;
|
3199
3532
|
name: string;
|
@@ -3204,6 +3537,18 @@ export declare const messengerContract: {
|
|
3204
3537
|
callFrom: string | null;
|
3205
3538
|
callTo: string | null;
|
3206
3539
|
note: string | null;
|
3540
|
+
customFields?: {
|
3541
|
+
id: string;
|
3542
|
+
createdAt: Date;
|
3543
|
+
updatedAt: Date;
|
3544
|
+
deletedAt: Date | null;
|
3545
|
+
entityId: string;
|
3546
|
+
attributeId: string;
|
3547
|
+
textValue: string | null;
|
3548
|
+
booleanValue: boolean | null;
|
3549
|
+
numberValue: number | null;
|
3550
|
+
dateValue: Date | null;
|
3551
|
+
}[] | null | undefined;
|
3207
3552
|
} | null;
|
3208
3553
|
};
|
3209
3554
|
workflowRule: {
|
@@ -5283,11 +5628,34 @@ export declare const messengerContract: {
|
|
5283
5628
|
handledTime: number | null;
|
5284
5629
|
firstResponseTime: number | null;
|
5285
5630
|
wrapUpForm: {
|
5631
|
+
type: string;
|
5286
5632
|
id: string;
|
5287
5633
|
disposition: string | null;
|
5288
5634
|
createdAt: Date;
|
5289
5635
|
updatedAt: Date;
|
5290
5636
|
deletedAt: Date | null;
|
5637
|
+
categories: {
|
5638
|
+
id: string;
|
5639
|
+
value: string;
|
5640
|
+
createdAt: Date;
|
5641
|
+
updatedAt: Date;
|
5642
|
+
deletedAt: Date | null;
|
5643
|
+
level: 2 | 1 | 3;
|
5644
|
+
parentId: string | null;
|
5645
|
+
childCategoryList: {
|
5646
|
+
id: string;
|
5647
|
+
value: string;
|
5648
|
+
level: 2 | 1 | 3;
|
5649
|
+
parentId: string | null;
|
5650
|
+
childCategoryList: {
|
5651
|
+
id: string;
|
5652
|
+
value: string;
|
5653
|
+
level: 2 | 1 | 3;
|
5654
|
+
parentId: string | null;
|
5655
|
+
childCategoryList: any[];
|
5656
|
+
}[];
|
5657
|
+
}[];
|
5658
|
+
}[];
|
5291
5659
|
tags: {
|
5292
5660
|
id: string;
|
5293
5661
|
name: string;
|
@@ -5298,6 +5666,18 @@ export declare const messengerContract: {
|
|
5298
5666
|
callFrom: string | null;
|
5299
5667
|
callTo: string | null;
|
5300
5668
|
note: string | null;
|
5669
|
+
customFields?: {
|
5670
|
+
id: string;
|
5671
|
+
createdAt: Date;
|
5672
|
+
updatedAt: Date;
|
5673
|
+
deletedAt: Date | null;
|
5674
|
+
entityId: string;
|
5675
|
+
attributeId: string;
|
5676
|
+
textValue: string | null;
|
5677
|
+
booleanValue: boolean | null;
|
5678
|
+
numberValue: number | null;
|
5679
|
+
dateValue: Date | null;
|
5680
|
+
}[] | null | undefined;
|
5301
5681
|
} | null;
|
5302
5682
|
};
|
5303
5683
|
workflowRule: {
|
@@ -5941,11 +6321,34 @@ export declare const messengerContract: {
|
|
5941
6321
|
handledTime: number | null;
|
5942
6322
|
firstResponseTime: number | null;
|
5943
6323
|
wrapUpForm: {
|
6324
|
+
type: string;
|
5944
6325
|
id: string;
|
5945
6326
|
disposition: string | null;
|
5946
6327
|
createdAt: Date;
|
5947
6328
|
updatedAt: Date;
|
5948
6329
|
deletedAt: Date | null;
|
6330
|
+
categories: {
|
6331
|
+
id: string;
|
6332
|
+
value: string;
|
6333
|
+
createdAt: Date;
|
6334
|
+
updatedAt: Date;
|
6335
|
+
deletedAt: Date | null;
|
6336
|
+
level: 2 | 1 | 3;
|
6337
|
+
parentId: string | null;
|
6338
|
+
childCategoryList: {
|
6339
|
+
id: string;
|
6340
|
+
value: string;
|
6341
|
+
level: 2 | 1 | 3;
|
6342
|
+
parentId: string | null;
|
6343
|
+
childCategoryList: {
|
6344
|
+
id: string;
|
6345
|
+
value: string;
|
6346
|
+
level: 2 | 1 | 3;
|
6347
|
+
parentId: string | null;
|
6348
|
+
childCategoryList: any[];
|
6349
|
+
}[];
|
6350
|
+
}[];
|
6351
|
+
}[];
|
5949
6352
|
tags: {
|
5950
6353
|
id: string;
|
5951
6354
|
name: string;
|
@@ -5956,6 +6359,18 @@ export declare const messengerContract: {
|
|
5956
6359
|
callFrom: string | null;
|
5957
6360
|
callTo: string | null;
|
5958
6361
|
note: string | null;
|
6362
|
+
customFields?: {
|
6363
|
+
id: string;
|
6364
|
+
createdAt: Date;
|
6365
|
+
updatedAt: Date;
|
6366
|
+
deletedAt: Date | null;
|
6367
|
+
entityId: string;
|
6368
|
+
attributeId: string;
|
6369
|
+
textValue: string | null;
|
6370
|
+
booleanValue: boolean | null;
|
6371
|
+
numberValue: number | null;
|
6372
|
+
dateValue: Date | null;
|
6373
|
+
}[] | null | undefined;
|
5959
6374
|
} | null;
|
5960
6375
|
};
|
5961
6376
|
workflowRule: {
|
@@ -6601,11 +7016,34 @@ export declare const messengerContract: {
|
|
6601
7016
|
handledTime: number | null;
|
6602
7017
|
firstResponseTime: number | null;
|
6603
7018
|
wrapUpForm: {
|
7019
|
+
type: string;
|
6604
7020
|
id: string;
|
6605
7021
|
disposition: string | null;
|
6606
7022
|
createdAt: Date;
|
6607
7023
|
updatedAt: Date;
|
6608
7024
|
deletedAt: Date | null;
|
7025
|
+
categories: {
|
7026
|
+
id: string;
|
7027
|
+
value: string;
|
7028
|
+
createdAt: Date;
|
7029
|
+
updatedAt: Date;
|
7030
|
+
deletedAt: Date | null;
|
7031
|
+
level: 2 | 1 | 3;
|
7032
|
+
parentId: string | null;
|
7033
|
+
childCategoryList: {
|
7034
|
+
id: string;
|
7035
|
+
value: string;
|
7036
|
+
level: 2 | 1 | 3;
|
7037
|
+
parentId: string | null;
|
7038
|
+
childCategoryList: {
|
7039
|
+
id: string;
|
7040
|
+
value: string;
|
7041
|
+
level: 2 | 1 | 3;
|
7042
|
+
parentId: string | null;
|
7043
|
+
childCategoryList: any[];
|
7044
|
+
}[];
|
7045
|
+
}[];
|
7046
|
+
}[];
|
6609
7047
|
tags: {
|
6610
7048
|
id: string;
|
6611
7049
|
name: string;
|
@@ -6616,6 +7054,18 @@ export declare const messengerContract: {
|
|
6616
7054
|
callFrom: string | null;
|
6617
7055
|
callTo: string | null;
|
6618
7056
|
note: string | null;
|
7057
|
+
customFields?: {
|
7058
|
+
id: string;
|
7059
|
+
createdAt: Date;
|
7060
|
+
updatedAt: Date;
|
7061
|
+
deletedAt: Date | null;
|
7062
|
+
entityId: string;
|
7063
|
+
attributeId: string;
|
7064
|
+
textValue: string | null;
|
7065
|
+
booleanValue: boolean | null;
|
7066
|
+
numberValue: number | null;
|
7067
|
+
dateValue: Date | null;
|
7068
|
+
}[] | null | undefined;
|
6619
7069
|
} | null;
|
6620
7070
|
};
|
6621
7071
|
workflowRule: {
|
@@ -7262,11 +7712,34 @@ export declare const messengerContract: {
|
|
7262
7712
|
handledTime: number | null;
|
7263
7713
|
firstResponseTime: number | null;
|
7264
7714
|
wrapUpForm: {
|
7715
|
+
type: string;
|
7265
7716
|
id: string;
|
7266
7717
|
disposition: string | null;
|
7267
7718
|
createdAt: Date;
|
7268
7719
|
updatedAt: Date;
|
7269
7720
|
deletedAt: Date | null;
|
7721
|
+
categories: {
|
7722
|
+
id: string;
|
7723
|
+
value: string;
|
7724
|
+
createdAt: Date;
|
7725
|
+
updatedAt: Date;
|
7726
|
+
deletedAt: Date | null;
|
7727
|
+
level: 2 | 1 | 3;
|
7728
|
+
parentId: string | null;
|
7729
|
+
childCategoryList: {
|
7730
|
+
id: string;
|
7731
|
+
value: string;
|
7732
|
+
level: 2 | 1 | 3;
|
7733
|
+
parentId: string | null;
|
7734
|
+
childCategoryList: {
|
7735
|
+
id: string;
|
7736
|
+
value: string;
|
7737
|
+
level: 2 | 1 | 3;
|
7738
|
+
parentId: string | null;
|
7739
|
+
childCategoryList: any[];
|
7740
|
+
}[];
|
7741
|
+
}[];
|
7742
|
+
}[];
|
7270
7743
|
tags: {
|
7271
7744
|
id: string;
|
7272
7745
|
name: string;
|
@@ -7277,6 +7750,18 @@ export declare const messengerContract: {
|
|
7277
7750
|
callFrom: string | null;
|
7278
7751
|
callTo: string | null;
|
7279
7752
|
note: string | null;
|
7753
|
+
customFields?: {
|
7754
|
+
id: string;
|
7755
|
+
createdAt: Date;
|
7756
|
+
updatedAt: Date;
|
7757
|
+
deletedAt: Date | null;
|
7758
|
+
entityId: string;
|
7759
|
+
attributeId: string;
|
7760
|
+
textValue: string | null;
|
7761
|
+
booleanValue: boolean | null;
|
7762
|
+
numberValue: number | null;
|
7763
|
+
dateValue: Date | null;
|
7764
|
+
}[] | null | undefined;
|
7280
7765
|
} | null;
|
7281
7766
|
};
|
7282
7767
|
workflowRule: {
|