@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.
Files changed (47) hide show
  1. package/dist/index.js +349 -185
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +348 -185
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/business-calendar/index.d.ts +414 -0
  6. package/dist/src/business-calendar/index.d.ts.map +1 -0
  7. package/dist/src/business-calendar/schema.d.ts +99 -0
  8. package/dist/src/business-calendar/schema.d.ts.map +1 -0
  9. package/dist/src/business-calendar/validation.d.ts +260 -0
  10. package/dist/src/business-calendar/validation.d.ts.map +1 -0
  11. package/dist/src/chat/index.d.ts +4867 -22
  12. package/dist/src/chat/index.d.ts.map +1 -1
  13. package/dist/src/chat/schema.d.ts +764 -4
  14. package/dist/src/chat/schema.d.ts.map +1 -1
  15. package/dist/src/chat/validation.d.ts +984 -14
  16. package/dist/src/chat/validation.d.ts.map +1 -1
  17. package/dist/src/contract.d.ts +9819 -44
  18. package/dist/src/contract.d.ts.map +1 -1
  19. package/dist/src/cx-log/index.d.ts +347 -2
  20. package/dist/src/cx-log/index.d.ts.map +1 -1
  21. package/dist/src/cx-log/schema.d.ts +554 -4
  22. package/dist/src/cx-log/schema.d.ts.map +1 -1
  23. package/dist/src/instagram/index.d.ts +487 -2
  24. package/dist/src/instagram/index.d.ts.map +1 -1
  25. package/dist/src/line/index.d.ts +487 -2
  26. package/dist/src/line/index.d.ts.map +1 -1
  27. package/dist/src/mail/mail-contract.d.ts +1251 -6
  28. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  29. package/dist/src/mail/room-contract.d.ts +1251 -6
  30. package/dist/src/mail/room-contract.d.ts.map +1 -1
  31. package/dist/src/mail/schemas/room-validation.schema.d.ts +417 -2
  32. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  33. package/dist/src/mail/schemas/room.schema.d.ts +347 -2
  34. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  35. package/dist/src/messenger/index.d.ts +487 -2
  36. package/dist/src/messenger/index.d.ts.map +1 -1
  37. package/dist/src/viber/index.d.ts +487 -2
  38. package/dist/src/viber/index.d.ts.map +1 -1
  39. package/dist/src/webchat/index.d.ts +487 -2
  40. package/dist/src/webchat/index.d.ts.map +1 -1
  41. package/dist/src/wrap-up-form/index.d.ts +997 -6
  42. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  43. package/dist/src/wrap-up-form/schema.d.ts +207 -2
  44. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  45. package/dist/src/wrap-up-form/validation.d.ts +26 -0
  46. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  47. 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
- callFrom: z.ZodNullable<z.ZodString>;
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.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
+ }[] | 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
+ }[] | 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
+ }[] | 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
+ }[] | undefined;
2541
2816
  } | null;
2542
2817
  }>;
2543
2818
  }, "strip", z.ZodTypeAny, {
@@ -2837,11 +3112,34 @@ export declare const webchatContract: {
2837
3112
  handledTime: number | null;
2838
3113
  firstResponseTime: number | null;
2839
3114
  wrapUpForm: {
3115
+ type: string;
2840
3116
  id: string;
2841
3117
  disposition: string | null;
2842
3118
  createdAt: Date;
2843
3119
  updatedAt: Date;
2844
3120
  deletedAt: Date | null;
3121
+ categories: {
3122
+ id: string;
3123
+ value: string;
3124
+ createdAt: Date;
3125
+ updatedAt: Date;
3126
+ deletedAt: Date | null;
3127
+ level: 2 | 1 | 3;
3128
+ parentId: string | null;
3129
+ childCategoryList: {
3130
+ id: string;
3131
+ value: string;
3132
+ level: 2 | 1 | 3;
3133
+ parentId: string | null;
3134
+ childCategoryList: {
3135
+ id: string;
3136
+ value: string;
3137
+ level: 2 | 1 | 3;
3138
+ parentId: string | null;
3139
+ childCategoryList: any[];
3140
+ }[];
3141
+ }[];
3142
+ }[];
2845
3143
  tags: {
2846
3144
  id: string;
2847
3145
  name: string;
@@ -2852,6 +3150,18 @@ export declare const webchatContract: {
2852
3150
  callFrom: string | null;
2853
3151
  callTo: string | null;
2854
3152
  note: string | null;
3153
+ customFields?: {
3154
+ id: string;
3155
+ createdAt: Date;
3156
+ updatedAt: Date;
3157
+ deletedAt: Date | null;
3158
+ entityId: string;
3159
+ attributeId: string;
3160
+ textValue: string | null;
3161
+ booleanValue: boolean | null;
3162
+ numberValue: number | null;
3163
+ dateValue: Date | null;
3164
+ }[] | undefined;
2855
3165
  } | null;
2856
3166
  };
2857
3167
  }, {
@@ -3151,11 +3461,34 @@ export declare const webchatContract: {
3151
3461
  handledTime: number | null;
3152
3462
  firstResponseTime: number | null;
3153
3463
  wrapUpForm: {
3464
+ type: string;
3154
3465
  id: string;
3155
3466
  disposition: string | null;
3156
3467
  createdAt: Date;
3157
3468
  updatedAt: Date;
3158
3469
  deletedAt: Date | null;
3470
+ categories: {
3471
+ id: string;
3472
+ value: string;
3473
+ createdAt: Date;
3474
+ updatedAt: Date;
3475
+ deletedAt: Date | null;
3476
+ level: 2 | 1 | 3;
3477
+ parentId: string | null;
3478
+ childCategoryList: {
3479
+ id: string;
3480
+ value: string;
3481
+ level: 2 | 1 | 3;
3482
+ parentId: string | null;
3483
+ childCategoryList: {
3484
+ id: string;
3485
+ value: string;
3486
+ level: 2 | 1 | 3;
3487
+ parentId: string | null;
3488
+ childCategoryList: any[];
3489
+ }[];
3490
+ }[];
3491
+ }[];
3159
3492
  tags: {
3160
3493
  id: string;
3161
3494
  name: string;
@@ -3166,6 +3499,18 @@ export declare const webchatContract: {
3166
3499
  callFrom: string | null;
3167
3500
  callTo: string | null;
3168
3501
  note: string | null;
3502
+ customFields?: {
3503
+ id: string;
3504
+ createdAt: Date;
3505
+ updatedAt: Date;
3506
+ deletedAt: Date | null;
3507
+ entityId: string;
3508
+ attributeId: string;
3509
+ textValue: string | null;
3510
+ booleanValue: boolean | null;
3511
+ numberValue: number | null;
3512
+ dateValue: Date | null;
3513
+ }[] | undefined;
3169
3514
  } | null;
3170
3515
  };
3171
3516
  }>;
@@ -5211,11 +5556,34 @@ export declare const webchatContract: {
5211
5556
  handledTime: number | null;
5212
5557
  firstResponseTime: number | null;
5213
5558
  wrapUpForm: {
5559
+ type: string;
5214
5560
  id: string;
5215
5561
  disposition: string | null;
5216
5562
  createdAt: Date;
5217
5563
  updatedAt: Date;
5218
5564
  deletedAt: Date | null;
5565
+ categories: {
5566
+ id: string;
5567
+ value: string;
5568
+ createdAt: Date;
5569
+ updatedAt: Date;
5570
+ deletedAt: Date | null;
5571
+ level: 2 | 1 | 3;
5572
+ parentId: string | null;
5573
+ childCategoryList: {
5574
+ id: string;
5575
+ value: string;
5576
+ level: 2 | 1 | 3;
5577
+ parentId: string | null;
5578
+ childCategoryList: {
5579
+ id: string;
5580
+ value: string;
5581
+ level: 2 | 1 | 3;
5582
+ parentId: string | null;
5583
+ childCategoryList: any[];
5584
+ }[];
5585
+ }[];
5586
+ }[];
5219
5587
  tags: {
5220
5588
  id: string;
5221
5589
  name: string;
@@ -5226,6 +5594,18 @@ export declare const webchatContract: {
5226
5594
  callFrom: string | null;
5227
5595
  callTo: string | null;
5228
5596
  note: string | null;
5597
+ customFields?: {
5598
+ id: string;
5599
+ createdAt: Date;
5600
+ updatedAt: Date;
5601
+ deletedAt: Date | null;
5602
+ entityId: string;
5603
+ attributeId: string;
5604
+ textValue: string | null;
5605
+ booleanValue: boolean | null;
5606
+ numberValue: number | null;
5607
+ dateValue: Date | null;
5608
+ }[] | undefined;
5229
5609
  } | null;
5230
5610
  };
5231
5611
  };
@@ -5851,11 +6231,34 @@ export declare const webchatContract: {
5851
6231
  handledTime: number | null;
5852
6232
  firstResponseTime: number | null;
5853
6233
  wrapUpForm: {
6234
+ type: string;
5854
6235
  id: string;
5855
6236
  disposition: string | null;
5856
6237
  createdAt: Date;
5857
6238
  updatedAt: Date;
5858
6239
  deletedAt: Date | null;
6240
+ categories: {
6241
+ id: string;
6242
+ value: string;
6243
+ createdAt: Date;
6244
+ updatedAt: Date;
6245
+ deletedAt: Date | null;
6246
+ level: 2 | 1 | 3;
6247
+ parentId: string | null;
6248
+ childCategoryList: {
6249
+ id: string;
6250
+ value: string;
6251
+ level: 2 | 1 | 3;
6252
+ parentId: string | null;
6253
+ childCategoryList: {
6254
+ id: string;
6255
+ value: string;
6256
+ level: 2 | 1 | 3;
6257
+ parentId: string | null;
6258
+ childCategoryList: any[];
6259
+ }[];
6260
+ }[];
6261
+ }[];
5859
6262
  tags: {
5860
6263
  id: string;
5861
6264
  name: string;
@@ -5866,6 +6269,18 @@ export declare const webchatContract: {
5866
6269
  callFrom: string | null;
5867
6270
  callTo: string | null;
5868
6271
  note: string | null;
6272
+ customFields?: {
6273
+ id: string;
6274
+ createdAt: Date;
6275
+ updatedAt: Date;
6276
+ deletedAt: Date | null;
6277
+ entityId: string;
6278
+ attributeId: string;
6279
+ textValue: string | null;
6280
+ booleanValue: boolean | null;
6281
+ numberValue: number | null;
6282
+ dateValue: Date | null;
6283
+ }[] | undefined;
5869
6284
  } | null;
5870
6285
  };
5871
6286
  };
@@ -6493,11 +6908,34 @@ export declare const webchatContract: {
6493
6908
  handledTime: number | null;
6494
6909
  firstResponseTime: number | null;
6495
6910
  wrapUpForm: {
6911
+ type: string;
6496
6912
  id: string;
6497
6913
  disposition: string | null;
6498
6914
  createdAt: Date;
6499
6915
  updatedAt: Date;
6500
6916
  deletedAt: Date | null;
6917
+ categories: {
6918
+ id: string;
6919
+ value: string;
6920
+ createdAt: Date;
6921
+ updatedAt: Date;
6922
+ deletedAt: Date | null;
6923
+ level: 2 | 1 | 3;
6924
+ parentId: string | null;
6925
+ childCategoryList: {
6926
+ id: string;
6927
+ value: string;
6928
+ level: 2 | 1 | 3;
6929
+ parentId: string | null;
6930
+ childCategoryList: {
6931
+ id: string;
6932
+ value: string;
6933
+ level: 2 | 1 | 3;
6934
+ parentId: string | null;
6935
+ childCategoryList: any[];
6936
+ }[];
6937
+ }[];
6938
+ }[];
6501
6939
  tags: {
6502
6940
  id: string;
6503
6941
  name: string;
@@ -6508,6 +6946,18 @@ export declare const webchatContract: {
6508
6946
  callFrom: string | null;
6509
6947
  callTo: string | null;
6510
6948
  note: string | null;
6949
+ customFields?: {
6950
+ id: string;
6951
+ createdAt: Date;
6952
+ updatedAt: Date;
6953
+ deletedAt: Date | null;
6954
+ entityId: string;
6955
+ attributeId: string;
6956
+ textValue: string | null;
6957
+ booleanValue: boolean | null;
6958
+ numberValue: number | null;
6959
+ dateValue: Date | null;
6960
+ }[] | undefined;
6511
6961
  } | null;
6512
6962
  };
6513
6963
  };
@@ -7136,11 +7586,34 @@ export declare const webchatContract: {
7136
7586
  handledTime: number | null;
7137
7587
  firstResponseTime: number | null;
7138
7588
  wrapUpForm: {
7589
+ type: string;
7139
7590
  id: string;
7140
7591
  disposition: string | null;
7141
7592
  createdAt: Date;
7142
7593
  updatedAt: Date;
7143
7594
  deletedAt: Date | null;
7595
+ categories: {
7596
+ id: string;
7597
+ value: string;
7598
+ createdAt: Date;
7599
+ updatedAt: Date;
7600
+ deletedAt: Date | null;
7601
+ level: 2 | 1 | 3;
7602
+ parentId: string | null;
7603
+ childCategoryList: {
7604
+ id: string;
7605
+ value: string;
7606
+ level: 2 | 1 | 3;
7607
+ parentId: string | null;
7608
+ childCategoryList: {
7609
+ id: string;
7610
+ value: string;
7611
+ level: 2 | 1 | 3;
7612
+ parentId: string | null;
7613
+ childCategoryList: any[];
7614
+ }[];
7615
+ }[];
7616
+ }[];
7144
7617
  tags: {
7145
7618
  id: string;
7146
7619
  name: string;
@@ -7151,6 +7624,18 @@ export declare const webchatContract: {
7151
7624
  callFrom: string | null;
7152
7625
  callTo: string | null;
7153
7626
  note: string | null;
7627
+ customFields?: {
7628
+ id: string;
7629
+ createdAt: Date;
7630
+ updatedAt: Date;
7631
+ deletedAt: Date | null;
7632
+ entityId: string;
7633
+ attributeId: string;
7634
+ textValue: string | null;
7635
+ booleanValue: boolean | null;
7636
+ numberValue: number | null;
7637
+ dateValue: Date | null;
7638
+ }[] | undefined;
7154
7639
  } | null;
7155
7640
  };
7156
7641
  };