@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
@@ -2419,8 +2419,7 @@ export declare const webchatContract: {
|
|
2419
2419
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2420
2420
|
note: z.ZodNullable<z.ZodString>;
|
2421
2421
|
disposition: z.ZodNullable<z.ZodString>;
|
2422
|
-
|
2423
|
-
callTo: z.ZodNullable<z.ZodString>;
|
2422
|
+
type: z.ZodString;
|
2424
2423
|
tags: z.ZodArray<z.ZodObject<{
|
2425
2424
|
id: z.ZodString;
|
2426
2425
|
createdAt: z.ZodDate;
|
@@ -2440,12 +2439,171 @@ export declare const webchatContract: {
|
|
2440
2439
|
updatedAt: Date;
|
2441
2440
|
deletedAt: Date | null;
|
2442
2441
|
}>, "many">;
|
2442
|
+
categories: z.ZodArray<z.ZodObject<{
|
2443
|
+
id: z.ZodString;
|
2444
|
+
createdAt: z.ZodDate;
|
2445
|
+
updatedAt: z.ZodDate;
|
2446
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2447
|
+
value: z.ZodString;
|
2448
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2449
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2450
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2451
|
+
id: z.ZodString;
|
2452
|
+
value: z.ZodString;
|
2453
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2454
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2455
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2456
|
+
id: z.ZodString;
|
2457
|
+
value: z.ZodString;
|
2458
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2459
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2460
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
2461
|
+
}, "strip", z.ZodTypeAny, {
|
2462
|
+
id: string;
|
2463
|
+
value: string;
|
2464
|
+
level: 2 | 1 | 3;
|
2465
|
+
parentId: string | null;
|
2466
|
+
childCategoryList: any[];
|
2467
|
+
}, {
|
2468
|
+
id: string;
|
2469
|
+
value: string;
|
2470
|
+
level: 2 | 1 | 3;
|
2471
|
+
parentId: string | null;
|
2472
|
+
childCategoryList: any[];
|
2473
|
+
}>, "many">;
|
2474
|
+
}, "strip", z.ZodTypeAny, {
|
2475
|
+
id: string;
|
2476
|
+
value: string;
|
2477
|
+
level: 2 | 1 | 3;
|
2478
|
+
parentId: string | null;
|
2479
|
+
childCategoryList: {
|
2480
|
+
id: string;
|
2481
|
+
value: string;
|
2482
|
+
level: 2 | 1 | 3;
|
2483
|
+
parentId: string | null;
|
2484
|
+
childCategoryList: any[];
|
2485
|
+
}[];
|
2486
|
+
}, {
|
2487
|
+
id: string;
|
2488
|
+
value: string;
|
2489
|
+
level: 2 | 1 | 3;
|
2490
|
+
parentId: string | null;
|
2491
|
+
childCategoryList: {
|
2492
|
+
id: string;
|
2493
|
+
value: string;
|
2494
|
+
level: 2 | 1 | 3;
|
2495
|
+
parentId: string | null;
|
2496
|
+
childCategoryList: any[];
|
2497
|
+
}[];
|
2498
|
+
}>, "many">;
|
2499
|
+
}, "strip", z.ZodTypeAny, {
|
2500
|
+
id: string;
|
2501
|
+
value: string;
|
2502
|
+
createdAt: Date;
|
2503
|
+
updatedAt: Date;
|
2504
|
+
deletedAt: Date | null;
|
2505
|
+
level: 2 | 1 | 3;
|
2506
|
+
parentId: string | null;
|
2507
|
+
childCategoryList: {
|
2508
|
+
id: string;
|
2509
|
+
value: string;
|
2510
|
+
level: 2 | 1 | 3;
|
2511
|
+
parentId: string | null;
|
2512
|
+
childCategoryList: {
|
2513
|
+
id: string;
|
2514
|
+
value: string;
|
2515
|
+
level: 2 | 1 | 3;
|
2516
|
+
parentId: string | null;
|
2517
|
+
childCategoryList: any[];
|
2518
|
+
}[];
|
2519
|
+
}[];
|
2520
|
+
}, {
|
2521
|
+
id: string;
|
2522
|
+
value: string;
|
2523
|
+
createdAt: Date;
|
2524
|
+
updatedAt: Date;
|
2525
|
+
deletedAt: Date | null;
|
2526
|
+
level: 2 | 1 | 3;
|
2527
|
+
parentId: string | null;
|
2528
|
+
childCategoryList: {
|
2529
|
+
id: string;
|
2530
|
+
value: string;
|
2531
|
+
level: 2 | 1 | 3;
|
2532
|
+
parentId: string | null;
|
2533
|
+
childCategoryList: {
|
2534
|
+
id: string;
|
2535
|
+
value: string;
|
2536
|
+
level: 2 | 1 | 3;
|
2537
|
+
parentId: string | null;
|
2538
|
+
childCategoryList: any[];
|
2539
|
+
}[];
|
2540
|
+
}[];
|
2541
|
+
}>, "many">;
|
2542
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
2543
|
+
callTo: z.ZodNullable<z.ZodString>;
|
2544
|
+
customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2545
|
+
id: z.ZodString;
|
2546
|
+
createdAt: z.ZodDate;
|
2547
|
+
updatedAt: z.ZodDate;
|
2548
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2549
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2550
|
+
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2551
|
+
numberValue: z.ZodNullable<z.ZodNumber>;
|
2552
|
+
dateValue: z.ZodNullable<z.ZodDate>;
|
2553
|
+
entityId: z.ZodString;
|
2554
|
+
attributeId: z.ZodString;
|
2555
|
+
}, "strip", z.ZodTypeAny, {
|
2556
|
+
id: string;
|
2557
|
+
createdAt: Date;
|
2558
|
+
updatedAt: Date;
|
2559
|
+
deletedAt: Date | null;
|
2560
|
+
entityId: string;
|
2561
|
+
attributeId: string;
|
2562
|
+
textValue: string | null;
|
2563
|
+
booleanValue: boolean | null;
|
2564
|
+
numberValue: number | null;
|
2565
|
+
dateValue: Date | null;
|
2566
|
+
}, {
|
2567
|
+
id: string;
|
2568
|
+
createdAt: Date;
|
2569
|
+
updatedAt: Date;
|
2570
|
+
deletedAt: Date | null;
|
2571
|
+
entityId: string;
|
2572
|
+
attributeId: string;
|
2573
|
+
textValue: string | null;
|
2574
|
+
booleanValue: boolean | null;
|
2575
|
+
numberValue: number | null;
|
2576
|
+
dateValue: Date | null;
|
2577
|
+
}>, "many">>>;
|
2443
2578
|
}, "strip", z.ZodTypeAny, {
|
2579
|
+
type: string;
|
2444
2580
|
id: string;
|
2445
2581
|
disposition: string | null;
|
2446
2582
|
createdAt: Date;
|
2447
2583
|
updatedAt: Date;
|
2448
2584
|
deletedAt: Date | null;
|
2585
|
+
categories: {
|
2586
|
+
id: string;
|
2587
|
+
value: string;
|
2588
|
+
createdAt: Date;
|
2589
|
+
updatedAt: Date;
|
2590
|
+
deletedAt: Date | null;
|
2591
|
+
level: 2 | 1 | 3;
|
2592
|
+
parentId: string | null;
|
2593
|
+
childCategoryList: {
|
2594
|
+
id: string;
|
2595
|
+
value: string;
|
2596
|
+
level: 2 | 1 | 3;
|
2597
|
+
parentId: string | null;
|
2598
|
+
childCategoryList: {
|
2599
|
+
id: string;
|
2600
|
+
value: string;
|
2601
|
+
level: 2 | 1 | 3;
|
2602
|
+
parentId: string | null;
|
2603
|
+
childCategoryList: any[];
|
2604
|
+
}[];
|
2605
|
+
}[];
|
2606
|
+
}[];
|
2449
2607
|
tags: {
|
2450
2608
|
id: string;
|
2451
2609
|
name: string;
|
@@ -2456,12 +2614,47 @@ export declare const webchatContract: {
|
|
2456
2614
|
callFrom: string | null;
|
2457
2615
|
callTo: string | null;
|
2458
2616
|
note: string | null;
|
2617
|
+
customFields?: {
|
2618
|
+
id: string;
|
2619
|
+
createdAt: Date;
|
2620
|
+
updatedAt: Date;
|
2621
|
+
deletedAt: Date | null;
|
2622
|
+
entityId: string;
|
2623
|
+
attributeId: string;
|
2624
|
+
textValue: string | null;
|
2625
|
+
booleanValue: boolean | null;
|
2626
|
+
numberValue: number | null;
|
2627
|
+
dateValue: Date | null;
|
2628
|
+
}[] | null | undefined;
|
2459
2629
|
}, {
|
2630
|
+
type: string;
|
2460
2631
|
id: string;
|
2461
2632
|
disposition: string | null;
|
2462
2633
|
createdAt: Date;
|
2463
2634
|
updatedAt: Date;
|
2464
2635
|
deletedAt: Date | null;
|
2636
|
+
categories: {
|
2637
|
+
id: string;
|
2638
|
+
value: string;
|
2639
|
+
createdAt: Date;
|
2640
|
+
updatedAt: Date;
|
2641
|
+
deletedAt: Date | null;
|
2642
|
+
level: 2 | 1 | 3;
|
2643
|
+
parentId: string | null;
|
2644
|
+
childCategoryList: {
|
2645
|
+
id: string;
|
2646
|
+
value: string;
|
2647
|
+
level: 2 | 1 | 3;
|
2648
|
+
parentId: string | null;
|
2649
|
+
childCategoryList: {
|
2650
|
+
id: string;
|
2651
|
+
value: string;
|
2652
|
+
level: 2 | 1 | 3;
|
2653
|
+
parentId: string | null;
|
2654
|
+
childCategoryList: any[];
|
2655
|
+
}[];
|
2656
|
+
}[];
|
2657
|
+
}[];
|
2465
2658
|
tags: {
|
2466
2659
|
id: string;
|
2467
2660
|
name: string;
|
@@ -2472,6 +2665,18 @@ export declare const webchatContract: {
|
|
2472
2665
|
callFrom: string | null;
|
2473
2666
|
callTo: string | null;
|
2474
2667
|
note: string | null;
|
2668
|
+
customFields?: {
|
2669
|
+
id: string;
|
2670
|
+
createdAt: Date;
|
2671
|
+
updatedAt: Date;
|
2672
|
+
deletedAt: Date | null;
|
2673
|
+
entityId: string;
|
2674
|
+
attributeId: string;
|
2675
|
+
textValue: string | null;
|
2676
|
+
booleanValue: boolean | null;
|
2677
|
+
numberValue: number | null;
|
2678
|
+
dateValue: Date | null;
|
2679
|
+
}[] | null | undefined;
|
2475
2680
|
}>>;
|
2476
2681
|
}, "strip", z.ZodTypeAny, {
|
2477
2682
|
id: string;
|
@@ -2490,11 +2695,34 @@ export declare const webchatContract: {
|
|
2490
2695
|
handledTime: number | null;
|
2491
2696
|
firstResponseTime: number | null;
|
2492
2697
|
wrapUpForm: {
|
2698
|
+
type: string;
|
2493
2699
|
id: string;
|
2494
2700
|
disposition: string | null;
|
2495
2701
|
createdAt: Date;
|
2496
2702
|
updatedAt: Date;
|
2497
2703
|
deletedAt: Date | null;
|
2704
|
+
categories: {
|
2705
|
+
id: string;
|
2706
|
+
value: string;
|
2707
|
+
createdAt: Date;
|
2708
|
+
updatedAt: Date;
|
2709
|
+
deletedAt: Date | null;
|
2710
|
+
level: 2 | 1 | 3;
|
2711
|
+
parentId: string | null;
|
2712
|
+
childCategoryList: {
|
2713
|
+
id: string;
|
2714
|
+
value: string;
|
2715
|
+
level: 2 | 1 | 3;
|
2716
|
+
parentId: string | null;
|
2717
|
+
childCategoryList: {
|
2718
|
+
id: string;
|
2719
|
+
value: string;
|
2720
|
+
level: 2 | 1 | 3;
|
2721
|
+
parentId: string | null;
|
2722
|
+
childCategoryList: any[];
|
2723
|
+
}[];
|
2724
|
+
}[];
|
2725
|
+
}[];
|
2498
2726
|
tags: {
|
2499
2727
|
id: string;
|
2500
2728
|
name: string;
|
@@ -2505,6 +2733,18 @@ export declare const webchatContract: {
|
|
2505
2733
|
callFrom: string | null;
|
2506
2734
|
callTo: string | null;
|
2507
2735
|
note: string | null;
|
2736
|
+
customFields?: {
|
2737
|
+
id: string;
|
2738
|
+
createdAt: Date;
|
2739
|
+
updatedAt: Date;
|
2740
|
+
deletedAt: Date | null;
|
2741
|
+
entityId: string;
|
2742
|
+
attributeId: string;
|
2743
|
+
textValue: string | null;
|
2744
|
+
booleanValue: boolean | null;
|
2745
|
+
numberValue: number | null;
|
2746
|
+
dateValue: Date | null;
|
2747
|
+
}[] | null | undefined;
|
2508
2748
|
} | null;
|
2509
2749
|
}, {
|
2510
2750
|
id: string;
|
@@ -2523,11 +2763,34 @@ export declare const webchatContract: {
|
|
2523
2763
|
handledTime: number | null;
|
2524
2764
|
firstResponseTime: number | null;
|
2525
2765
|
wrapUpForm: {
|
2766
|
+
type: string;
|
2526
2767
|
id: string;
|
2527
2768
|
disposition: string | null;
|
2528
2769
|
createdAt: Date;
|
2529
2770
|
updatedAt: Date;
|
2530
2771
|
deletedAt: Date | null;
|
2772
|
+
categories: {
|
2773
|
+
id: string;
|
2774
|
+
value: string;
|
2775
|
+
createdAt: Date;
|
2776
|
+
updatedAt: Date;
|
2777
|
+
deletedAt: Date | null;
|
2778
|
+
level: 2 | 1 | 3;
|
2779
|
+
parentId: string | null;
|
2780
|
+
childCategoryList: {
|
2781
|
+
id: string;
|
2782
|
+
value: string;
|
2783
|
+
level: 2 | 1 | 3;
|
2784
|
+
parentId: string | null;
|
2785
|
+
childCategoryList: {
|
2786
|
+
id: string;
|
2787
|
+
value: string;
|
2788
|
+
level: 2 | 1 | 3;
|
2789
|
+
parentId: string | null;
|
2790
|
+
childCategoryList: any[];
|
2791
|
+
}[];
|
2792
|
+
}[];
|
2793
|
+
}[];
|
2531
2794
|
tags: {
|
2532
2795
|
id: string;
|
2533
2796
|
name: string;
|
@@ -2538,6 +2801,18 @@ export declare const webchatContract: {
|
|
2538
2801
|
callFrom: string | null;
|
2539
2802
|
callTo: string | null;
|
2540
2803
|
note: string | null;
|
2804
|
+
customFields?: {
|
2805
|
+
id: string;
|
2806
|
+
createdAt: Date;
|
2807
|
+
updatedAt: Date;
|
2808
|
+
deletedAt: Date | null;
|
2809
|
+
entityId: string;
|
2810
|
+
attributeId: string;
|
2811
|
+
textValue: string | null;
|
2812
|
+
booleanValue: boolean | null;
|
2813
|
+
numberValue: number | null;
|
2814
|
+
dateValue: Date | null;
|
2815
|
+
}[] | null | undefined;
|
2541
2816
|
} | null;
|
2542
2817
|
}>;
|
2543
2818
|
workflowRule: z.ZodObject<{
|
@@ -2862,11 +3137,34 @@ export declare const webchatContract: {
|
|
2862
3137
|
handledTime: number | null;
|
2863
3138
|
firstResponseTime: number | null;
|
2864
3139
|
wrapUpForm: {
|
3140
|
+
type: string;
|
2865
3141
|
id: string;
|
2866
3142
|
disposition: string | null;
|
2867
3143
|
createdAt: Date;
|
2868
3144
|
updatedAt: Date;
|
2869
3145
|
deletedAt: Date | null;
|
3146
|
+
categories: {
|
3147
|
+
id: string;
|
3148
|
+
value: string;
|
3149
|
+
createdAt: Date;
|
3150
|
+
updatedAt: Date;
|
3151
|
+
deletedAt: Date | null;
|
3152
|
+
level: 2 | 1 | 3;
|
3153
|
+
parentId: string | null;
|
3154
|
+
childCategoryList: {
|
3155
|
+
id: string;
|
3156
|
+
value: string;
|
3157
|
+
level: 2 | 1 | 3;
|
3158
|
+
parentId: string | null;
|
3159
|
+
childCategoryList: {
|
3160
|
+
id: string;
|
3161
|
+
value: string;
|
3162
|
+
level: 2 | 1 | 3;
|
3163
|
+
parentId: string | null;
|
3164
|
+
childCategoryList: any[];
|
3165
|
+
}[];
|
3166
|
+
}[];
|
3167
|
+
}[];
|
2870
3168
|
tags: {
|
2871
3169
|
id: string;
|
2872
3170
|
name: string;
|
@@ -2877,6 +3175,18 @@ export declare const webchatContract: {
|
|
2877
3175
|
callFrom: string | null;
|
2878
3176
|
callTo: string | null;
|
2879
3177
|
note: string | null;
|
3178
|
+
customFields?: {
|
3179
|
+
id: string;
|
3180
|
+
createdAt: Date;
|
3181
|
+
updatedAt: Date;
|
3182
|
+
deletedAt: Date | null;
|
3183
|
+
entityId: string;
|
3184
|
+
attributeId: string;
|
3185
|
+
textValue: string | null;
|
3186
|
+
booleanValue: boolean | null;
|
3187
|
+
numberValue: number | null;
|
3188
|
+
dateValue: Date | null;
|
3189
|
+
}[] | null | undefined;
|
2880
3190
|
} | null;
|
2881
3191
|
};
|
2882
3192
|
workflowRule: {
|
@@ -3185,11 +3495,34 @@ export declare const webchatContract: {
|
|
3185
3495
|
handledTime: number | null;
|
3186
3496
|
firstResponseTime: number | null;
|
3187
3497
|
wrapUpForm: {
|
3498
|
+
type: string;
|
3188
3499
|
id: string;
|
3189
3500
|
disposition: string | null;
|
3190
3501
|
createdAt: Date;
|
3191
3502
|
updatedAt: Date;
|
3192
3503
|
deletedAt: Date | null;
|
3504
|
+
categories: {
|
3505
|
+
id: string;
|
3506
|
+
value: string;
|
3507
|
+
createdAt: Date;
|
3508
|
+
updatedAt: Date;
|
3509
|
+
deletedAt: Date | null;
|
3510
|
+
level: 2 | 1 | 3;
|
3511
|
+
parentId: string | null;
|
3512
|
+
childCategoryList: {
|
3513
|
+
id: string;
|
3514
|
+
value: string;
|
3515
|
+
level: 2 | 1 | 3;
|
3516
|
+
parentId: string | null;
|
3517
|
+
childCategoryList: {
|
3518
|
+
id: string;
|
3519
|
+
value: string;
|
3520
|
+
level: 2 | 1 | 3;
|
3521
|
+
parentId: string | null;
|
3522
|
+
childCategoryList: any[];
|
3523
|
+
}[];
|
3524
|
+
}[];
|
3525
|
+
}[];
|
3193
3526
|
tags: {
|
3194
3527
|
id: string;
|
3195
3528
|
name: string;
|
@@ -3200,6 +3533,18 @@ export declare const webchatContract: {
|
|
3200
3533
|
callFrom: string | null;
|
3201
3534
|
callTo: string | null;
|
3202
3535
|
note: string | null;
|
3536
|
+
customFields?: {
|
3537
|
+
id: string;
|
3538
|
+
createdAt: Date;
|
3539
|
+
updatedAt: Date;
|
3540
|
+
deletedAt: Date | null;
|
3541
|
+
entityId: string;
|
3542
|
+
attributeId: string;
|
3543
|
+
textValue: string | null;
|
3544
|
+
booleanValue: boolean | null;
|
3545
|
+
numberValue: number | null;
|
3546
|
+
dateValue: Date | null;
|
3547
|
+
}[] | null | undefined;
|
3203
3548
|
} | null;
|
3204
3549
|
};
|
3205
3550
|
workflowRule: {
|
@@ -5279,11 +5624,34 @@ export declare const webchatContract: {
|
|
5279
5624
|
handledTime: number | null;
|
5280
5625
|
firstResponseTime: number | null;
|
5281
5626
|
wrapUpForm: {
|
5627
|
+
type: string;
|
5282
5628
|
id: string;
|
5283
5629
|
disposition: string | null;
|
5284
5630
|
createdAt: Date;
|
5285
5631
|
updatedAt: Date;
|
5286
5632
|
deletedAt: Date | null;
|
5633
|
+
categories: {
|
5634
|
+
id: string;
|
5635
|
+
value: string;
|
5636
|
+
createdAt: Date;
|
5637
|
+
updatedAt: Date;
|
5638
|
+
deletedAt: Date | null;
|
5639
|
+
level: 2 | 1 | 3;
|
5640
|
+
parentId: string | null;
|
5641
|
+
childCategoryList: {
|
5642
|
+
id: string;
|
5643
|
+
value: string;
|
5644
|
+
level: 2 | 1 | 3;
|
5645
|
+
parentId: string | null;
|
5646
|
+
childCategoryList: {
|
5647
|
+
id: string;
|
5648
|
+
value: string;
|
5649
|
+
level: 2 | 1 | 3;
|
5650
|
+
parentId: string | null;
|
5651
|
+
childCategoryList: any[];
|
5652
|
+
}[];
|
5653
|
+
}[];
|
5654
|
+
}[];
|
5287
5655
|
tags: {
|
5288
5656
|
id: string;
|
5289
5657
|
name: string;
|
@@ -5294,6 +5662,18 @@ export declare const webchatContract: {
|
|
5294
5662
|
callFrom: string | null;
|
5295
5663
|
callTo: string | null;
|
5296
5664
|
note: string | null;
|
5665
|
+
customFields?: {
|
5666
|
+
id: string;
|
5667
|
+
createdAt: Date;
|
5668
|
+
updatedAt: Date;
|
5669
|
+
deletedAt: Date | null;
|
5670
|
+
entityId: string;
|
5671
|
+
attributeId: string;
|
5672
|
+
textValue: string | null;
|
5673
|
+
booleanValue: boolean | null;
|
5674
|
+
numberValue: number | null;
|
5675
|
+
dateValue: Date | null;
|
5676
|
+
}[] | null | undefined;
|
5297
5677
|
} | null;
|
5298
5678
|
};
|
5299
5679
|
workflowRule: {
|
@@ -5937,11 +6317,34 @@ export declare const webchatContract: {
|
|
5937
6317
|
handledTime: number | null;
|
5938
6318
|
firstResponseTime: number | null;
|
5939
6319
|
wrapUpForm: {
|
6320
|
+
type: string;
|
5940
6321
|
id: string;
|
5941
6322
|
disposition: string | null;
|
5942
6323
|
createdAt: Date;
|
5943
6324
|
updatedAt: Date;
|
5944
6325
|
deletedAt: Date | null;
|
6326
|
+
categories: {
|
6327
|
+
id: string;
|
6328
|
+
value: string;
|
6329
|
+
createdAt: Date;
|
6330
|
+
updatedAt: Date;
|
6331
|
+
deletedAt: Date | null;
|
6332
|
+
level: 2 | 1 | 3;
|
6333
|
+
parentId: string | null;
|
6334
|
+
childCategoryList: {
|
6335
|
+
id: string;
|
6336
|
+
value: string;
|
6337
|
+
level: 2 | 1 | 3;
|
6338
|
+
parentId: string | null;
|
6339
|
+
childCategoryList: {
|
6340
|
+
id: string;
|
6341
|
+
value: string;
|
6342
|
+
level: 2 | 1 | 3;
|
6343
|
+
parentId: string | null;
|
6344
|
+
childCategoryList: any[];
|
6345
|
+
}[];
|
6346
|
+
}[];
|
6347
|
+
}[];
|
5945
6348
|
tags: {
|
5946
6349
|
id: string;
|
5947
6350
|
name: string;
|
@@ -5952,6 +6355,18 @@ export declare const webchatContract: {
|
|
5952
6355
|
callFrom: string | null;
|
5953
6356
|
callTo: string | null;
|
5954
6357
|
note: string | null;
|
6358
|
+
customFields?: {
|
6359
|
+
id: string;
|
6360
|
+
createdAt: Date;
|
6361
|
+
updatedAt: Date;
|
6362
|
+
deletedAt: Date | null;
|
6363
|
+
entityId: string;
|
6364
|
+
attributeId: string;
|
6365
|
+
textValue: string | null;
|
6366
|
+
booleanValue: boolean | null;
|
6367
|
+
numberValue: number | null;
|
6368
|
+
dateValue: Date | null;
|
6369
|
+
}[] | null | undefined;
|
5955
6370
|
} | null;
|
5956
6371
|
};
|
5957
6372
|
workflowRule: {
|
@@ -6597,11 +7012,34 @@ export declare const webchatContract: {
|
|
6597
7012
|
handledTime: number | null;
|
6598
7013
|
firstResponseTime: number | null;
|
6599
7014
|
wrapUpForm: {
|
7015
|
+
type: string;
|
6600
7016
|
id: string;
|
6601
7017
|
disposition: string | null;
|
6602
7018
|
createdAt: Date;
|
6603
7019
|
updatedAt: Date;
|
6604
7020
|
deletedAt: Date | null;
|
7021
|
+
categories: {
|
7022
|
+
id: string;
|
7023
|
+
value: string;
|
7024
|
+
createdAt: Date;
|
7025
|
+
updatedAt: Date;
|
7026
|
+
deletedAt: Date | null;
|
7027
|
+
level: 2 | 1 | 3;
|
7028
|
+
parentId: string | null;
|
7029
|
+
childCategoryList: {
|
7030
|
+
id: string;
|
7031
|
+
value: string;
|
7032
|
+
level: 2 | 1 | 3;
|
7033
|
+
parentId: string | null;
|
7034
|
+
childCategoryList: {
|
7035
|
+
id: string;
|
7036
|
+
value: string;
|
7037
|
+
level: 2 | 1 | 3;
|
7038
|
+
parentId: string | null;
|
7039
|
+
childCategoryList: any[];
|
7040
|
+
}[];
|
7041
|
+
}[];
|
7042
|
+
}[];
|
6605
7043
|
tags: {
|
6606
7044
|
id: string;
|
6607
7045
|
name: string;
|
@@ -6612,6 +7050,18 @@ export declare const webchatContract: {
|
|
6612
7050
|
callFrom: string | null;
|
6613
7051
|
callTo: string | null;
|
6614
7052
|
note: string | null;
|
7053
|
+
customFields?: {
|
7054
|
+
id: string;
|
7055
|
+
createdAt: Date;
|
7056
|
+
updatedAt: Date;
|
7057
|
+
deletedAt: Date | null;
|
7058
|
+
entityId: string;
|
7059
|
+
attributeId: string;
|
7060
|
+
textValue: string | null;
|
7061
|
+
booleanValue: boolean | null;
|
7062
|
+
numberValue: number | null;
|
7063
|
+
dateValue: Date | null;
|
7064
|
+
}[] | null | undefined;
|
6615
7065
|
} | null;
|
6616
7066
|
};
|
6617
7067
|
workflowRule: {
|
@@ -7258,11 +7708,34 @@ export declare const webchatContract: {
|
|
7258
7708
|
handledTime: number | null;
|
7259
7709
|
firstResponseTime: number | null;
|
7260
7710
|
wrapUpForm: {
|
7711
|
+
type: string;
|
7261
7712
|
id: string;
|
7262
7713
|
disposition: string | null;
|
7263
7714
|
createdAt: Date;
|
7264
7715
|
updatedAt: Date;
|
7265
7716
|
deletedAt: Date | null;
|
7717
|
+
categories: {
|
7718
|
+
id: string;
|
7719
|
+
value: string;
|
7720
|
+
createdAt: Date;
|
7721
|
+
updatedAt: Date;
|
7722
|
+
deletedAt: Date | null;
|
7723
|
+
level: 2 | 1 | 3;
|
7724
|
+
parentId: string | null;
|
7725
|
+
childCategoryList: {
|
7726
|
+
id: string;
|
7727
|
+
value: string;
|
7728
|
+
level: 2 | 1 | 3;
|
7729
|
+
parentId: string | null;
|
7730
|
+
childCategoryList: {
|
7731
|
+
id: string;
|
7732
|
+
value: string;
|
7733
|
+
level: 2 | 1 | 3;
|
7734
|
+
parentId: string | null;
|
7735
|
+
childCategoryList: any[];
|
7736
|
+
}[];
|
7737
|
+
}[];
|
7738
|
+
}[];
|
7266
7739
|
tags: {
|
7267
7740
|
id: string;
|
7268
7741
|
name: string;
|
@@ -7273,6 +7746,18 @@ export declare const webchatContract: {
|
|
7273
7746
|
callFrom: string | null;
|
7274
7747
|
callTo: string | null;
|
7275
7748
|
note: string | null;
|
7749
|
+
customFields?: {
|
7750
|
+
id: string;
|
7751
|
+
createdAt: Date;
|
7752
|
+
updatedAt: Date;
|
7753
|
+
deletedAt: Date | null;
|
7754
|
+
entityId: string;
|
7755
|
+
attributeId: string;
|
7756
|
+
textValue: string | null;
|
7757
|
+
booleanValue: boolean | null;
|
7758
|
+
numberValue: number | null;
|
7759
|
+
dateValue: Date | null;
|
7760
|
+
}[] | null | undefined;
|
7276
7761
|
} | null;
|
7277
7762
|
};
|
7278
7763
|
workflowRule: {
|