@kl1/contracts 1.1.25-uat → 1.1.27-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 +349 -185
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +348 -185
- package/dist/index.mjs.map +1 -1
- package/dist/src/business-calendar/index.d.ts +414 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -0
- package/dist/src/business-calendar/schema.d.ts +99 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -0
- package/dist/src/business-calendar/validation.d.ts +260 -0
- package/dist/src/business-calendar/validation.d.ts.map +1 -0
- 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 +764 -4
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +984 -14
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9819 -44
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +347 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +554 -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 +1251 -6
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +1251 -6
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +417 -2
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +347 -2
- 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/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/wrap-up-form/index.d.ts +997 -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 +26 -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.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
|
+
}[] | 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
|
+
}[] | 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
|
+
}[] | 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
|
+
}[] | undefined;
|
2545
2820
|
} | null;
|
2546
2821
|
}>;
|
2547
2822
|
}, "strip", z.ZodTypeAny, {
|
@@ -2841,11 +3116,34 @@ export declare const messengerContract: {
|
|
2841
3116
|
handledTime: number | null;
|
2842
3117
|
firstResponseTime: number | null;
|
2843
3118
|
wrapUpForm: {
|
3119
|
+
type: string;
|
2844
3120
|
id: string;
|
2845
3121
|
disposition: string | null;
|
2846
3122
|
createdAt: Date;
|
2847
3123
|
updatedAt: Date;
|
2848
3124
|
deletedAt: Date | null;
|
3125
|
+
categories: {
|
3126
|
+
id: string;
|
3127
|
+
value: string;
|
3128
|
+
createdAt: Date;
|
3129
|
+
updatedAt: Date;
|
3130
|
+
deletedAt: Date | null;
|
3131
|
+
level: 2 | 1 | 3;
|
3132
|
+
parentId: string | null;
|
3133
|
+
childCategoryList: {
|
3134
|
+
id: string;
|
3135
|
+
value: string;
|
3136
|
+
level: 2 | 1 | 3;
|
3137
|
+
parentId: string | null;
|
3138
|
+
childCategoryList: {
|
3139
|
+
id: string;
|
3140
|
+
value: string;
|
3141
|
+
level: 2 | 1 | 3;
|
3142
|
+
parentId: string | null;
|
3143
|
+
childCategoryList: any[];
|
3144
|
+
}[];
|
3145
|
+
}[];
|
3146
|
+
}[];
|
2849
3147
|
tags: {
|
2850
3148
|
id: string;
|
2851
3149
|
name: string;
|
@@ -2856,6 +3154,18 @@ export declare const messengerContract: {
|
|
2856
3154
|
callFrom: string | null;
|
2857
3155
|
callTo: string | null;
|
2858
3156
|
note: string | null;
|
3157
|
+
customFields?: {
|
3158
|
+
id: string;
|
3159
|
+
createdAt: Date;
|
3160
|
+
updatedAt: Date;
|
3161
|
+
deletedAt: Date | null;
|
3162
|
+
entityId: string;
|
3163
|
+
attributeId: string;
|
3164
|
+
textValue: string | null;
|
3165
|
+
booleanValue: boolean | null;
|
3166
|
+
numberValue: number | null;
|
3167
|
+
dateValue: Date | null;
|
3168
|
+
}[] | undefined;
|
2859
3169
|
} | null;
|
2860
3170
|
};
|
2861
3171
|
}, {
|
@@ -3155,11 +3465,34 @@ export declare const messengerContract: {
|
|
3155
3465
|
handledTime: number | null;
|
3156
3466
|
firstResponseTime: number | null;
|
3157
3467
|
wrapUpForm: {
|
3468
|
+
type: string;
|
3158
3469
|
id: string;
|
3159
3470
|
disposition: string | null;
|
3160
3471
|
createdAt: Date;
|
3161
3472
|
updatedAt: Date;
|
3162
3473
|
deletedAt: Date | null;
|
3474
|
+
categories: {
|
3475
|
+
id: string;
|
3476
|
+
value: string;
|
3477
|
+
createdAt: Date;
|
3478
|
+
updatedAt: Date;
|
3479
|
+
deletedAt: Date | null;
|
3480
|
+
level: 2 | 1 | 3;
|
3481
|
+
parentId: string | null;
|
3482
|
+
childCategoryList: {
|
3483
|
+
id: string;
|
3484
|
+
value: string;
|
3485
|
+
level: 2 | 1 | 3;
|
3486
|
+
parentId: string | null;
|
3487
|
+
childCategoryList: {
|
3488
|
+
id: string;
|
3489
|
+
value: string;
|
3490
|
+
level: 2 | 1 | 3;
|
3491
|
+
parentId: string | null;
|
3492
|
+
childCategoryList: any[];
|
3493
|
+
}[];
|
3494
|
+
}[];
|
3495
|
+
}[];
|
3163
3496
|
tags: {
|
3164
3497
|
id: string;
|
3165
3498
|
name: string;
|
@@ -3170,6 +3503,18 @@ export declare const messengerContract: {
|
|
3170
3503
|
callFrom: string | null;
|
3171
3504
|
callTo: string | null;
|
3172
3505
|
note: string | null;
|
3506
|
+
customFields?: {
|
3507
|
+
id: string;
|
3508
|
+
createdAt: Date;
|
3509
|
+
updatedAt: Date;
|
3510
|
+
deletedAt: Date | null;
|
3511
|
+
entityId: string;
|
3512
|
+
attributeId: string;
|
3513
|
+
textValue: string | null;
|
3514
|
+
booleanValue: boolean | null;
|
3515
|
+
numberValue: number | null;
|
3516
|
+
dateValue: Date | null;
|
3517
|
+
}[] | undefined;
|
3173
3518
|
} | null;
|
3174
3519
|
};
|
3175
3520
|
}>;
|
@@ -5215,11 +5560,34 @@ export declare const messengerContract: {
|
|
5215
5560
|
handledTime: number | null;
|
5216
5561
|
firstResponseTime: number | null;
|
5217
5562
|
wrapUpForm: {
|
5563
|
+
type: string;
|
5218
5564
|
id: string;
|
5219
5565
|
disposition: string | null;
|
5220
5566
|
createdAt: Date;
|
5221
5567
|
updatedAt: Date;
|
5222
5568
|
deletedAt: Date | null;
|
5569
|
+
categories: {
|
5570
|
+
id: string;
|
5571
|
+
value: string;
|
5572
|
+
createdAt: Date;
|
5573
|
+
updatedAt: Date;
|
5574
|
+
deletedAt: Date | null;
|
5575
|
+
level: 2 | 1 | 3;
|
5576
|
+
parentId: string | null;
|
5577
|
+
childCategoryList: {
|
5578
|
+
id: string;
|
5579
|
+
value: string;
|
5580
|
+
level: 2 | 1 | 3;
|
5581
|
+
parentId: string | null;
|
5582
|
+
childCategoryList: {
|
5583
|
+
id: string;
|
5584
|
+
value: string;
|
5585
|
+
level: 2 | 1 | 3;
|
5586
|
+
parentId: string | null;
|
5587
|
+
childCategoryList: any[];
|
5588
|
+
}[];
|
5589
|
+
}[];
|
5590
|
+
}[];
|
5223
5591
|
tags: {
|
5224
5592
|
id: string;
|
5225
5593
|
name: string;
|
@@ -5230,6 +5598,18 @@ export declare const messengerContract: {
|
|
5230
5598
|
callFrom: string | null;
|
5231
5599
|
callTo: string | null;
|
5232
5600
|
note: string | null;
|
5601
|
+
customFields?: {
|
5602
|
+
id: string;
|
5603
|
+
createdAt: Date;
|
5604
|
+
updatedAt: Date;
|
5605
|
+
deletedAt: Date | null;
|
5606
|
+
entityId: string;
|
5607
|
+
attributeId: string;
|
5608
|
+
textValue: string | null;
|
5609
|
+
booleanValue: boolean | null;
|
5610
|
+
numberValue: number | null;
|
5611
|
+
dateValue: Date | null;
|
5612
|
+
}[] | undefined;
|
5233
5613
|
} | null;
|
5234
5614
|
};
|
5235
5615
|
};
|
@@ -5855,11 +6235,34 @@ export declare const messengerContract: {
|
|
5855
6235
|
handledTime: number | null;
|
5856
6236
|
firstResponseTime: number | null;
|
5857
6237
|
wrapUpForm: {
|
6238
|
+
type: string;
|
5858
6239
|
id: string;
|
5859
6240
|
disposition: string | null;
|
5860
6241
|
createdAt: Date;
|
5861
6242
|
updatedAt: Date;
|
5862
6243
|
deletedAt: Date | null;
|
6244
|
+
categories: {
|
6245
|
+
id: string;
|
6246
|
+
value: string;
|
6247
|
+
createdAt: Date;
|
6248
|
+
updatedAt: Date;
|
6249
|
+
deletedAt: Date | null;
|
6250
|
+
level: 2 | 1 | 3;
|
6251
|
+
parentId: string | null;
|
6252
|
+
childCategoryList: {
|
6253
|
+
id: string;
|
6254
|
+
value: string;
|
6255
|
+
level: 2 | 1 | 3;
|
6256
|
+
parentId: string | null;
|
6257
|
+
childCategoryList: {
|
6258
|
+
id: string;
|
6259
|
+
value: string;
|
6260
|
+
level: 2 | 1 | 3;
|
6261
|
+
parentId: string | null;
|
6262
|
+
childCategoryList: any[];
|
6263
|
+
}[];
|
6264
|
+
}[];
|
6265
|
+
}[];
|
5863
6266
|
tags: {
|
5864
6267
|
id: string;
|
5865
6268
|
name: string;
|
@@ -5870,6 +6273,18 @@ export declare const messengerContract: {
|
|
5870
6273
|
callFrom: string | null;
|
5871
6274
|
callTo: string | null;
|
5872
6275
|
note: string | null;
|
6276
|
+
customFields?: {
|
6277
|
+
id: string;
|
6278
|
+
createdAt: Date;
|
6279
|
+
updatedAt: Date;
|
6280
|
+
deletedAt: Date | null;
|
6281
|
+
entityId: string;
|
6282
|
+
attributeId: string;
|
6283
|
+
textValue: string | null;
|
6284
|
+
booleanValue: boolean | null;
|
6285
|
+
numberValue: number | null;
|
6286
|
+
dateValue: Date | null;
|
6287
|
+
}[] | undefined;
|
5873
6288
|
} | null;
|
5874
6289
|
};
|
5875
6290
|
};
|
@@ -6497,11 +6912,34 @@ export declare const messengerContract: {
|
|
6497
6912
|
handledTime: number | null;
|
6498
6913
|
firstResponseTime: number | null;
|
6499
6914
|
wrapUpForm: {
|
6915
|
+
type: string;
|
6500
6916
|
id: string;
|
6501
6917
|
disposition: string | null;
|
6502
6918
|
createdAt: Date;
|
6503
6919
|
updatedAt: Date;
|
6504
6920
|
deletedAt: Date | null;
|
6921
|
+
categories: {
|
6922
|
+
id: string;
|
6923
|
+
value: string;
|
6924
|
+
createdAt: Date;
|
6925
|
+
updatedAt: Date;
|
6926
|
+
deletedAt: Date | null;
|
6927
|
+
level: 2 | 1 | 3;
|
6928
|
+
parentId: string | null;
|
6929
|
+
childCategoryList: {
|
6930
|
+
id: string;
|
6931
|
+
value: string;
|
6932
|
+
level: 2 | 1 | 3;
|
6933
|
+
parentId: string | null;
|
6934
|
+
childCategoryList: {
|
6935
|
+
id: string;
|
6936
|
+
value: string;
|
6937
|
+
level: 2 | 1 | 3;
|
6938
|
+
parentId: string | null;
|
6939
|
+
childCategoryList: any[];
|
6940
|
+
}[];
|
6941
|
+
}[];
|
6942
|
+
}[];
|
6505
6943
|
tags: {
|
6506
6944
|
id: string;
|
6507
6945
|
name: string;
|
@@ -6512,6 +6950,18 @@ export declare const messengerContract: {
|
|
6512
6950
|
callFrom: string | null;
|
6513
6951
|
callTo: string | null;
|
6514
6952
|
note: string | null;
|
6953
|
+
customFields?: {
|
6954
|
+
id: string;
|
6955
|
+
createdAt: Date;
|
6956
|
+
updatedAt: Date;
|
6957
|
+
deletedAt: Date | null;
|
6958
|
+
entityId: string;
|
6959
|
+
attributeId: string;
|
6960
|
+
textValue: string | null;
|
6961
|
+
booleanValue: boolean | null;
|
6962
|
+
numberValue: number | null;
|
6963
|
+
dateValue: Date | null;
|
6964
|
+
}[] | undefined;
|
6515
6965
|
} | null;
|
6516
6966
|
};
|
6517
6967
|
};
|
@@ -7140,11 +7590,34 @@ export declare const messengerContract: {
|
|
7140
7590
|
handledTime: number | null;
|
7141
7591
|
firstResponseTime: number | null;
|
7142
7592
|
wrapUpForm: {
|
7593
|
+
type: string;
|
7143
7594
|
id: string;
|
7144
7595
|
disposition: string | null;
|
7145
7596
|
createdAt: Date;
|
7146
7597
|
updatedAt: Date;
|
7147
7598
|
deletedAt: Date | null;
|
7599
|
+
categories: {
|
7600
|
+
id: string;
|
7601
|
+
value: string;
|
7602
|
+
createdAt: Date;
|
7603
|
+
updatedAt: Date;
|
7604
|
+
deletedAt: Date | null;
|
7605
|
+
level: 2 | 1 | 3;
|
7606
|
+
parentId: string | null;
|
7607
|
+
childCategoryList: {
|
7608
|
+
id: string;
|
7609
|
+
value: string;
|
7610
|
+
level: 2 | 1 | 3;
|
7611
|
+
parentId: string | null;
|
7612
|
+
childCategoryList: {
|
7613
|
+
id: string;
|
7614
|
+
value: string;
|
7615
|
+
level: 2 | 1 | 3;
|
7616
|
+
parentId: string | null;
|
7617
|
+
childCategoryList: any[];
|
7618
|
+
}[];
|
7619
|
+
}[];
|
7620
|
+
}[];
|
7148
7621
|
tags: {
|
7149
7622
|
id: string;
|
7150
7623
|
name: string;
|
@@ -7155,6 +7628,18 @@ export declare const messengerContract: {
|
|
7155
7628
|
callFrom: string | null;
|
7156
7629
|
callTo: string | null;
|
7157
7630
|
note: string | null;
|
7631
|
+
customFields?: {
|
7632
|
+
id: string;
|
7633
|
+
createdAt: Date;
|
7634
|
+
updatedAt: Date;
|
7635
|
+
deletedAt: Date | null;
|
7636
|
+
entityId: string;
|
7637
|
+
attributeId: string;
|
7638
|
+
textValue: string | null;
|
7639
|
+
booleanValue: boolean | null;
|
7640
|
+
numberValue: number | null;
|
7641
|
+
dateValue: Date | null;
|
7642
|
+
}[] | undefined;
|
7158
7643
|
} | null;
|
7159
7644
|
};
|
7160
7645
|
};
|