@kl1/contracts 1.1.24-uat → 1.1.26-uat

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/index.js +14 -3
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +14 -3
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +3341 -22
  6. package/dist/src/chat/index.d.ts.map +1 -1
  7. package/dist/src/chat/schema.d.ts +528 -4
  8. package/dist/src/chat/schema.d.ts.map +1 -1
  9. package/dist/src/chat/validation.d.ts +666 -4
  10. package/dist/src/chat/validation.d.ts.map +1 -1
  11. package/dist/src/contract.d.ts +6481 -44
  12. package/dist/src/contract.d.ts.map +1 -1
  13. package/dist/src/cx-log/index.d.ts +241 -2
  14. package/dist/src/cx-log/index.d.ts.map +1 -1
  15. package/dist/src/cx-log/schema.d.ts +390 -4
  16. package/dist/src/cx-log/schema.d.ts.map +1 -1
  17. package/dist/src/instagram/index.d.ts +333 -2
  18. package/dist/src/instagram/index.d.ts.map +1 -1
  19. package/dist/src/line/index.d.ts +333 -2
  20. package/dist/src/line/index.d.ts.map +1 -1
  21. package/dist/src/mail/mail-contract.d.ts +861 -6
  22. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  23. package/dist/src/mail/room-contract.d.ts +861 -6
  24. package/dist/src/mail/room-contract.d.ts.map +1 -1
  25. package/dist/src/mail/schemas/room-validation.schema.d.ts +287 -2
  26. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  27. package/dist/src/mail/schemas/room.schema.d.ts +241 -2
  28. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  29. package/dist/src/messenger/index.d.ts +333 -2
  30. package/dist/src/messenger/index.d.ts.map +1 -1
  31. package/dist/src/viber/index.d.ts +333 -2
  32. package/dist/src/viber/index.d.ts.map +1 -1
  33. package/dist/src/webchat/index.d.ts +333 -2
  34. package/dist/src/webchat/index.d.ts.map +1 -1
  35. package/dist/src/wrap-up-form/index.d.ts +706 -6
  36. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  37. package/dist/src/wrap-up-form/schema.d.ts +149 -2
  38. package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
  39. package/dist/src/wrap-up-form/validation.d.ts +29 -0
  40. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  41. package/package.json +1 -1
@@ -2715,8 +2715,7 @@ export declare const RoomSchema: z.ZodObject<{
2715
2715
  deletedAt: z.ZodNullable<z.ZodDate>;
2716
2716
  note: z.ZodNullable<z.ZodString>;
2717
2717
  disposition: z.ZodNullable<z.ZodString>;
2718
- callFrom: z.ZodNullable<z.ZodString>;
2719
- callTo: z.ZodNullable<z.ZodString>;
2718
+ type: z.ZodString;
2720
2719
  tags: z.ZodArray<z.ZodObject<{
2721
2720
  id: z.ZodString;
2722
2721
  createdAt: z.ZodDate;
@@ -2736,12 +2735,137 @@ export declare const RoomSchema: z.ZodObject<{
2736
2735
  updatedAt: Date;
2737
2736
  deletedAt: Date | null;
2738
2737
  }>, "many">;
2738
+ categories: z.ZodArray<z.ZodObject<{
2739
+ id: z.ZodString;
2740
+ createdAt: z.ZodDate;
2741
+ updatedAt: z.ZodDate;
2742
+ deletedAt: z.ZodNullable<z.ZodDate>;
2743
+ value: z.ZodString;
2744
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2745
+ parentId: z.ZodNullable<z.ZodString>;
2746
+ childCategoryList: z.ZodArray<z.ZodObject<{
2747
+ id: z.ZodString;
2748
+ value: z.ZodString;
2749
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2750
+ parentId: z.ZodNullable<z.ZodString>;
2751
+ childCategoryList: z.ZodArray<z.ZodObject<{
2752
+ id: z.ZodString;
2753
+ value: z.ZodString;
2754
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2755
+ parentId: z.ZodNullable<z.ZodString>;
2756
+ childCategoryList: z.ZodArray<z.ZodAny, "many">;
2757
+ }, "strip", z.ZodTypeAny, {
2758
+ id: string;
2759
+ value: string;
2760
+ level: 2 | 1 | 3;
2761
+ parentId: string | null;
2762
+ childCategoryList: any[];
2763
+ }, {
2764
+ id: string;
2765
+ value: string;
2766
+ level: 2 | 1 | 3;
2767
+ parentId: string | null;
2768
+ childCategoryList: any[];
2769
+ }>, "many">;
2770
+ }, "strip", z.ZodTypeAny, {
2771
+ id: string;
2772
+ value: string;
2773
+ level: 2 | 1 | 3;
2774
+ parentId: string | null;
2775
+ childCategoryList: {
2776
+ id: string;
2777
+ value: string;
2778
+ level: 2 | 1 | 3;
2779
+ parentId: string | null;
2780
+ childCategoryList: any[];
2781
+ }[];
2782
+ }, {
2783
+ id: string;
2784
+ value: string;
2785
+ level: 2 | 1 | 3;
2786
+ parentId: string | null;
2787
+ childCategoryList: {
2788
+ id: string;
2789
+ value: string;
2790
+ level: 2 | 1 | 3;
2791
+ parentId: string | null;
2792
+ childCategoryList: any[];
2793
+ }[];
2794
+ }>, "many">;
2795
+ }, "strip", z.ZodTypeAny, {
2796
+ id: string;
2797
+ value: string;
2798
+ createdAt: Date;
2799
+ updatedAt: Date;
2800
+ deletedAt: Date | null;
2801
+ level: 2 | 1 | 3;
2802
+ parentId: string | null;
2803
+ childCategoryList: {
2804
+ id: string;
2805
+ value: string;
2806
+ level: 2 | 1 | 3;
2807
+ parentId: string | null;
2808
+ childCategoryList: {
2809
+ id: string;
2810
+ value: string;
2811
+ level: 2 | 1 | 3;
2812
+ parentId: string | null;
2813
+ childCategoryList: any[];
2814
+ }[];
2815
+ }[];
2816
+ }, {
2817
+ id: string;
2818
+ value: string;
2819
+ createdAt: Date;
2820
+ updatedAt: Date;
2821
+ deletedAt: Date | null;
2822
+ level: 2 | 1 | 3;
2823
+ parentId: string | null;
2824
+ childCategoryList: {
2825
+ id: string;
2826
+ value: string;
2827
+ level: 2 | 1 | 3;
2828
+ parentId: string | null;
2829
+ childCategoryList: {
2830
+ id: string;
2831
+ value: string;
2832
+ level: 2 | 1 | 3;
2833
+ parentId: string | null;
2834
+ childCategoryList: any[];
2835
+ }[];
2836
+ }[];
2837
+ }>, "many">;
2838
+ callFrom: z.ZodNullable<z.ZodString>;
2839
+ callTo: z.ZodNullable<z.ZodString>;
2739
2840
  }, "strip", z.ZodTypeAny, {
2841
+ type: string;
2740
2842
  id: string;
2741
2843
  disposition: string | null;
2742
2844
  createdAt: Date;
2743
2845
  updatedAt: Date;
2744
2846
  deletedAt: Date | null;
2847
+ categories: {
2848
+ id: string;
2849
+ value: string;
2850
+ createdAt: Date;
2851
+ updatedAt: Date;
2852
+ deletedAt: Date | null;
2853
+ level: 2 | 1 | 3;
2854
+ parentId: string | null;
2855
+ childCategoryList: {
2856
+ id: string;
2857
+ value: string;
2858
+ level: 2 | 1 | 3;
2859
+ parentId: string | null;
2860
+ childCategoryList: {
2861
+ id: string;
2862
+ value: string;
2863
+ level: 2 | 1 | 3;
2864
+ parentId: string | null;
2865
+ childCategoryList: any[];
2866
+ }[];
2867
+ }[];
2868
+ }[];
2745
2869
  tags: {
2746
2870
  id: string;
2747
2871
  name: string;
@@ -2753,11 +2877,34 @@ export declare const RoomSchema: z.ZodObject<{
2753
2877
  callTo: string | null;
2754
2878
  note: string | null;
2755
2879
  }, {
2880
+ type: string;
2756
2881
  id: string;
2757
2882
  disposition: string | null;
2758
2883
  createdAt: Date;
2759
2884
  updatedAt: Date;
2760
2885
  deletedAt: Date | null;
2886
+ categories: {
2887
+ id: string;
2888
+ value: string;
2889
+ createdAt: Date;
2890
+ updatedAt: Date;
2891
+ deletedAt: Date | null;
2892
+ level: 2 | 1 | 3;
2893
+ parentId: string | null;
2894
+ childCategoryList: {
2895
+ id: string;
2896
+ value: string;
2897
+ level: 2 | 1 | 3;
2898
+ parentId: string | null;
2899
+ childCategoryList: {
2900
+ id: string;
2901
+ value: string;
2902
+ level: 2 | 1 | 3;
2903
+ parentId: string | null;
2904
+ childCategoryList: any[];
2905
+ }[];
2906
+ }[];
2907
+ }[];
2761
2908
  tags: {
2762
2909
  id: string;
2763
2910
  name: string;
@@ -2786,11 +2933,34 @@ export declare const RoomSchema: z.ZodObject<{
2786
2933
  handledTime: number | null;
2787
2934
  firstResponseTime: number | null;
2788
2935
  wrapUpForm: {
2936
+ type: string;
2789
2937
  id: string;
2790
2938
  disposition: string | null;
2791
2939
  createdAt: Date;
2792
2940
  updatedAt: Date;
2793
2941
  deletedAt: Date | null;
2942
+ categories: {
2943
+ id: string;
2944
+ value: string;
2945
+ createdAt: Date;
2946
+ updatedAt: Date;
2947
+ deletedAt: Date | null;
2948
+ level: 2 | 1 | 3;
2949
+ parentId: string | null;
2950
+ childCategoryList: {
2951
+ id: string;
2952
+ value: string;
2953
+ level: 2 | 1 | 3;
2954
+ parentId: string | null;
2955
+ childCategoryList: {
2956
+ id: string;
2957
+ value: string;
2958
+ level: 2 | 1 | 3;
2959
+ parentId: string | null;
2960
+ childCategoryList: any[];
2961
+ }[];
2962
+ }[];
2963
+ }[];
2794
2964
  tags: {
2795
2965
  id: string;
2796
2966
  name: string;
@@ -2819,11 +2989,34 @@ export declare const RoomSchema: z.ZodObject<{
2819
2989
  handledTime: number | null;
2820
2990
  firstResponseTime: number | null;
2821
2991
  wrapUpForm: {
2992
+ type: string;
2822
2993
  id: string;
2823
2994
  disposition: string | null;
2824
2995
  createdAt: Date;
2825
2996
  updatedAt: Date;
2826
2997
  deletedAt: Date | null;
2998
+ categories: {
2999
+ id: string;
3000
+ value: string;
3001
+ createdAt: Date;
3002
+ updatedAt: Date;
3003
+ deletedAt: Date | null;
3004
+ level: 2 | 1 | 3;
3005
+ parentId: string | null;
3006
+ childCategoryList: {
3007
+ id: string;
3008
+ value: string;
3009
+ level: 2 | 1 | 3;
3010
+ parentId: string | null;
3011
+ childCategoryList: {
3012
+ id: string;
3013
+ value: string;
3014
+ level: 2 | 1 | 3;
3015
+ parentId: string | null;
3016
+ childCategoryList: any[];
3017
+ }[];
3018
+ }[];
3019
+ }[];
2827
3020
  tags: {
2828
3021
  id: string;
2829
3022
  name: string;
@@ -3133,11 +3326,34 @@ export declare const RoomSchema: z.ZodObject<{
3133
3326
  handledTime: number | null;
3134
3327
  firstResponseTime: number | null;
3135
3328
  wrapUpForm: {
3329
+ type: string;
3136
3330
  id: string;
3137
3331
  disposition: string | null;
3138
3332
  createdAt: Date;
3139
3333
  updatedAt: Date;
3140
3334
  deletedAt: Date | null;
3335
+ categories: {
3336
+ id: string;
3337
+ value: string;
3338
+ createdAt: Date;
3339
+ updatedAt: Date;
3340
+ deletedAt: Date | null;
3341
+ level: 2 | 1 | 3;
3342
+ parentId: string | null;
3343
+ childCategoryList: {
3344
+ id: string;
3345
+ value: string;
3346
+ level: 2 | 1 | 3;
3347
+ parentId: string | null;
3348
+ childCategoryList: {
3349
+ id: string;
3350
+ value: string;
3351
+ level: 2 | 1 | 3;
3352
+ parentId: string | null;
3353
+ childCategoryList: any[];
3354
+ }[];
3355
+ }[];
3356
+ }[];
3141
3357
  tags: {
3142
3358
  id: string;
3143
3359
  name: string;
@@ -3447,11 +3663,34 @@ export declare const RoomSchema: z.ZodObject<{
3447
3663
  handledTime: number | null;
3448
3664
  firstResponseTime: number | null;
3449
3665
  wrapUpForm: {
3666
+ type: string;
3450
3667
  id: string;
3451
3668
  disposition: string | null;
3452
3669
  createdAt: Date;
3453
3670
  updatedAt: Date;
3454
3671
  deletedAt: Date | null;
3672
+ categories: {
3673
+ id: string;
3674
+ value: string;
3675
+ createdAt: Date;
3676
+ updatedAt: Date;
3677
+ deletedAt: Date | null;
3678
+ level: 2 | 1 | 3;
3679
+ parentId: string | null;
3680
+ childCategoryList: {
3681
+ id: string;
3682
+ value: string;
3683
+ level: 2 | 1 | 3;
3684
+ parentId: string | null;
3685
+ childCategoryList: {
3686
+ id: string;
3687
+ value: string;
3688
+ level: 2 | 1 | 3;
3689
+ parentId: string | null;
3690
+ childCategoryList: any[];
3691
+ }[];
3692
+ }[];
3693
+ }[];
3455
3694
  tags: {
3456
3695
  id: string;
3457
3696
  name: string;
@@ -5231,8 +5470,7 @@ export declare const MessageSchema: z.ZodObject<{
5231
5470
  deletedAt: z.ZodNullable<z.ZodDate>;
5232
5471
  note: z.ZodNullable<z.ZodString>;
5233
5472
  disposition: z.ZodNullable<z.ZodString>;
5234
- callFrom: z.ZodNullable<z.ZodString>;
5235
- callTo: z.ZodNullable<z.ZodString>;
5473
+ type: z.ZodString;
5236
5474
  tags: z.ZodArray<z.ZodObject<{
5237
5475
  id: z.ZodString;
5238
5476
  createdAt: z.ZodDate;
@@ -5252,12 +5490,137 @@ export declare const MessageSchema: z.ZodObject<{
5252
5490
  updatedAt: Date;
5253
5491
  deletedAt: Date | null;
5254
5492
  }>, "many">;
5493
+ categories: z.ZodArray<z.ZodObject<{
5494
+ id: z.ZodString;
5495
+ createdAt: z.ZodDate;
5496
+ updatedAt: z.ZodDate;
5497
+ deletedAt: z.ZodNullable<z.ZodDate>;
5498
+ value: z.ZodString;
5499
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
5500
+ parentId: z.ZodNullable<z.ZodString>;
5501
+ childCategoryList: z.ZodArray<z.ZodObject<{
5502
+ id: z.ZodString;
5503
+ value: z.ZodString;
5504
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
5505
+ parentId: z.ZodNullable<z.ZodString>;
5506
+ childCategoryList: z.ZodArray<z.ZodObject<{
5507
+ id: z.ZodString;
5508
+ value: z.ZodString;
5509
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
5510
+ parentId: z.ZodNullable<z.ZodString>;
5511
+ childCategoryList: z.ZodArray<z.ZodAny, "many">;
5512
+ }, "strip", z.ZodTypeAny, {
5513
+ id: string;
5514
+ value: string;
5515
+ level: 2 | 1 | 3;
5516
+ parentId: string | null;
5517
+ childCategoryList: any[];
5518
+ }, {
5519
+ id: string;
5520
+ value: string;
5521
+ level: 2 | 1 | 3;
5522
+ parentId: string | null;
5523
+ childCategoryList: any[];
5524
+ }>, "many">;
5525
+ }, "strip", z.ZodTypeAny, {
5526
+ id: string;
5527
+ value: string;
5528
+ level: 2 | 1 | 3;
5529
+ parentId: string | null;
5530
+ childCategoryList: {
5531
+ id: string;
5532
+ value: string;
5533
+ level: 2 | 1 | 3;
5534
+ parentId: string | null;
5535
+ childCategoryList: any[];
5536
+ }[];
5537
+ }, {
5538
+ id: string;
5539
+ value: string;
5540
+ level: 2 | 1 | 3;
5541
+ parentId: string | null;
5542
+ childCategoryList: {
5543
+ id: string;
5544
+ value: string;
5545
+ level: 2 | 1 | 3;
5546
+ parentId: string | null;
5547
+ childCategoryList: any[];
5548
+ }[];
5549
+ }>, "many">;
5550
+ }, "strip", z.ZodTypeAny, {
5551
+ id: string;
5552
+ value: string;
5553
+ createdAt: Date;
5554
+ updatedAt: Date;
5555
+ deletedAt: Date | null;
5556
+ level: 2 | 1 | 3;
5557
+ parentId: string | null;
5558
+ childCategoryList: {
5559
+ id: string;
5560
+ value: string;
5561
+ level: 2 | 1 | 3;
5562
+ parentId: string | null;
5563
+ childCategoryList: {
5564
+ id: string;
5565
+ value: string;
5566
+ level: 2 | 1 | 3;
5567
+ parentId: string | null;
5568
+ childCategoryList: any[];
5569
+ }[];
5570
+ }[];
5571
+ }, {
5572
+ id: string;
5573
+ value: string;
5574
+ createdAt: Date;
5575
+ updatedAt: Date;
5576
+ deletedAt: Date | null;
5577
+ level: 2 | 1 | 3;
5578
+ parentId: string | null;
5579
+ childCategoryList: {
5580
+ id: string;
5581
+ value: string;
5582
+ level: 2 | 1 | 3;
5583
+ parentId: string | null;
5584
+ childCategoryList: {
5585
+ id: string;
5586
+ value: string;
5587
+ level: 2 | 1 | 3;
5588
+ parentId: string | null;
5589
+ childCategoryList: any[];
5590
+ }[];
5591
+ }[];
5592
+ }>, "many">;
5593
+ callFrom: z.ZodNullable<z.ZodString>;
5594
+ callTo: z.ZodNullable<z.ZodString>;
5255
5595
  }, "strip", z.ZodTypeAny, {
5596
+ type: string;
5256
5597
  id: string;
5257
5598
  disposition: string | null;
5258
5599
  createdAt: Date;
5259
5600
  updatedAt: Date;
5260
5601
  deletedAt: Date | null;
5602
+ categories: {
5603
+ id: string;
5604
+ value: string;
5605
+ createdAt: Date;
5606
+ updatedAt: Date;
5607
+ deletedAt: Date | null;
5608
+ level: 2 | 1 | 3;
5609
+ parentId: string | null;
5610
+ childCategoryList: {
5611
+ id: string;
5612
+ value: string;
5613
+ level: 2 | 1 | 3;
5614
+ parentId: string | null;
5615
+ childCategoryList: {
5616
+ id: string;
5617
+ value: string;
5618
+ level: 2 | 1 | 3;
5619
+ parentId: string | null;
5620
+ childCategoryList: any[];
5621
+ }[];
5622
+ }[];
5623
+ }[];
5261
5624
  tags: {
5262
5625
  id: string;
5263
5626
  name: string;
@@ -5269,11 +5632,34 @@ export declare const MessageSchema: z.ZodObject<{
5269
5632
  callTo: string | null;
5270
5633
  note: string | null;
5271
5634
  }, {
5635
+ type: string;
5272
5636
  id: string;
5273
5637
  disposition: string | null;
5274
5638
  createdAt: Date;
5275
5639
  updatedAt: Date;
5276
5640
  deletedAt: Date | null;
5641
+ categories: {
5642
+ id: string;
5643
+ value: string;
5644
+ createdAt: Date;
5645
+ updatedAt: Date;
5646
+ deletedAt: Date | null;
5647
+ level: 2 | 1 | 3;
5648
+ parentId: string | null;
5649
+ childCategoryList: {
5650
+ id: string;
5651
+ value: string;
5652
+ level: 2 | 1 | 3;
5653
+ parentId: string | null;
5654
+ childCategoryList: {
5655
+ id: string;
5656
+ value: string;
5657
+ level: 2 | 1 | 3;
5658
+ parentId: string | null;
5659
+ childCategoryList: any[];
5660
+ }[];
5661
+ }[];
5662
+ }[];
5277
5663
  tags: {
5278
5664
  id: string;
5279
5665
  name: string;
@@ -5302,11 +5688,34 @@ export declare const MessageSchema: z.ZodObject<{
5302
5688
  handledTime: number | null;
5303
5689
  firstResponseTime: number | null;
5304
5690
  wrapUpForm: {
5691
+ type: string;
5305
5692
  id: string;
5306
5693
  disposition: string | null;
5307
5694
  createdAt: Date;
5308
5695
  updatedAt: Date;
5309
5696
  deletedAt: Date | null;
5697
+ categories: {
5698
+ id: string;
5699
+ value: string;
5700
+ createdAt: Date;
5701
+ updatedAt: Date;
5702
+ deletedAt: Date | null;
5703
+ level: 2 | 1 | 3;
5704
+ parentId: string | null;
5705
+ childCategoryList: {
5706
+ id: string;
5707
+ value: string;
5708
+ level: 2 | 1 | 3;
5709
+ parentId: string | null;
5710
+ childCategoryList: {
5711
+ id: string;
5712
+ value: string;
5713
+ level: 2 | 1 | 3;
5714
+ parentId: string | null;
5715
+ childCategoryList: any[];
5716
+ }[];
5717
+ }[];
5718
+ }[];
5310
5719
  tags: {
5311
5720
  id: string;
5312
5721
  name: string;
@@ -5335,11 +5744,34 @@ export declare const MessageSchema: z.ZodObject<{
5335
5744
  handledTime: number | null;
5336
5745
  firstResponseTime: number | null;
5337
5746
  wrapUpForm: {
5747
+ type: string;
5338
5748
  id: string;
5339
5749
  disposition: string | null;
5340
5750
  createdAt: Date;
5341
5751
  updatedAt: Date;
5342
5752
  deletedAt: Date | null;
5753
+ categories: {
5754
+ id: string;
5755
+ value: string;
5756
+ createdAt: Date;
5757
+ updatedAt: Date;
5758
+ deletedAt: Date | null;
5759
+ level: 2 | 1 | 3;
5760
+ parentId: string | null;
5761
+ childCategoryList: {
5762
+ id: string;
5763
+ value: string;
5764
+ level: 2 | 1 | 3;
5765
+ parentId: string | null;
5766
+ childCategoryList: {
5767
+ id: string;
5768
+ value: string;
5769
+ level: 2 | 1 | 3;
5770
+ parentId: string | null;
5771
+ childCategoryList: any[];
5772
+ }[];
5773
+ }[];
5774
+ }[];
5343
5775
  tags: {
5344
5776
  id: string;
5345
5777
  name: string;
@@ -5649,11 +6081,34 @@ export declare const MessageSchema: z.ZodObject<{
5649
6081
  handledTime: number | null;
5650
6082
  firstResponseTime: number | null;
5651
6083
  wrapUpForm: {
6084
+ type: string;
5652
6085
  id: string;
5653
6086
  disposition: string | null;
5654
6087
  createdAt: Date;
5655
6088
  updatedAt: Date;
5656
6089
  deletedAt: Date | null;
6090
+ categories: {
6091
+ id: string;
6092
+ value: string;
6093
+ createdAt: Date;
6094
+ updatedAt: Date;
6095
+ deletedAt: Date | null;
6096
+ level: 2 | 1 | 3;
6097
+ parentId: string | null;
6098
+ childCategoryList: {
6099
+ id: string;
6100
+ value: string;
6101
+ level: 2 | 1 | 3;
6102
+ parentId: string | null;
6103
+ childCategoryList: {
6104
+ id: string;
6105
+ value: string;
6106
+ level: 2 | 1 | 3;
6107
+ parentId: string | null;
6108
+ childCategoryList: any[];
6109
+ }[];
6110
+ }[];
6111
+ }[];
5657
6112
  tags: {
5658
6113
  id: string;
5659
6114
  name: string;
@@ -5963,11 +6418,34 @@ export declare const MessageSchema: z.ZodObject<{
5963
6418
  handledTime: number | null;
5964
6419
  firstResponseTime: number | null;
5965
6420
  wrapUpForm: {
6421
+ type: string;
5966
6422
  id: string;
5967
6423
  disposition: string | null;
5968
6424
  createdAt: Date;
5969
6425
  updatedAt: Date;
5970
6426
  deletedAt: Date | null;
6427
+ categories: {
6428
+ id: string;
6429
+ value: string;
6430
+ createdAt: Date;
6431
+ updatedAt: Date;
6432
+ deletedAt: Date | null;
6433
+ level: 2 | 1 | 3;
6434
+ parentId: string | null;
6435
+ childCategoryList: {
6436
+ id: string;
6437
+ value: string;
6438
+ level: 2 | 1 | 3;
6439
+ parentId: string | null;
6440
+ childCategoryList: {
6441
+ id: string;
6442
+ value: string;
6443
+ level: 2 | 1 | 3;
6444
+ parentId: string | null;
6445
+ childCategoryList: any[];
6446
+ }[];
6447
+ }[];
6448
+ }[];
5971
6449
  tags: {
5972
6450
  id: string;
5973
6451
  name: string;
@@ -8029,11 +8507,34 @@ export declare const MessageSchema: z.ZodObject<{
8029
8507
  handledTime: number | null;
8030
8508
  firstResponseTime: number | null;
8031
8509
  wrapUpForm: {
8510
+ type: string;
8032
8511
  id: string;
8033
8512
  disposition: string | null;
8034
8513
  createdAt: Date;
8035
8514
  updatedAt: Date;
8036
8515
  deletedAt: Date | null;
8516
+ categories: {
8517
+ id: string;
8518
+ value: string;
8519
+ createdAt: Date;
8520
+ updatedAt: Date;
8521
+ deletedAt: Date | null;
8522
+ level: 2 | 1 | 3;
8523
+ parentId: string | null;
8524
+ childCategoryList: {
8525
+ id: string;
8526
+ value: string;
8527
+ level: 2 | 1 | 3;
8528
+ parentId: string | null;
8529
+ childCategoryList: {
8530
+ id: string;
8531
+ value: string;
8532
+ level: 2 | 1 | 3;
8533
+ parentId: string | null;
8534
+ childCategoryList: any[];
8535
+ }[];
8536
+ }[];
8537
+ }[];
8037
8538
  tags: {
8038
8539
  id: string;
8039
8540
  name: string;
@@ -8669,11 +9170,34 @@ export declare const MessageSchema: z.ZodObject<{
8669
9170
  handledTime: number | null;
8670
9171
  firstResponseTime: number | null;
8671
9172
  wrapUpForm: {
9173
+ type: string;
8672
9174
  id: string;
8673
9175
  disposition: string | null;
8674
9176
  createdAt: Date;
8675
9177
  updatedAt: Date;
8676
9178
  deletedAt: Date | null;
9179
+ categories: {
9180
+ id: string;
9181
+ value: string;
9182
+ createdAt: Date;
9183
+ updatedAt: Date;
9184
+ deletedAt: Date | null;
9185
+ level: 2 | 1 | 3;
9186
+ parentId: string | null;
9187
+ childCategoryList: {
9188
+ id: string;
9189
+ value: string;
9190
+ level: 2 | 1 | 3;
9191
+ parentId: string | null;
9192
+ childCategoryList: {
9193
+ id: string;
9194
+ value: string;
9195
+ level: 2 | 1 | 3;
9196
+ parentId: string | null;
9197
+ childCategoryList: any[];
9198
+ }[];
9199
+ }[];
9200
+ }[];
8677
9201
  tags: {
8678
9202
  id: string;
8679
9203
  name: string;