@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
@@ -3517,8 +3517,7 @@ export declare const viberContract: {
3517
3517
  deletedAt: z.ZodNullable<z.ZodDate>;
3518
3518
  note: z.ZodNullable<z.ZodString>;
3519
3519
  disposition: z.ZodNullable<z.ZodString>;
3520
- callFrom: z.ZodNullable<z.ZodString>;
3521
- callTo: z.ZodNullable<z.ZodString>;
3520
+ type: z.ZodString;
3522
3521
  tags: z.ZodArray<z.ZodObject<{
3523
3522
  id: z.ZodString;
3524
3523
  createdAt: z.ZodDate;
@@ -3538,12 +3537,171 @@ export declare const viberContract: {
3538
3537
  updatedAt: Date;
3539
3538
  deletedAt: Date | null;
3540
3539
  }>, "many">;
3540
+ categories: z.ZodArray<z.ZodObject<{
3541
+ id: z.ZodString;
3542
+ createdAt: z.ZodDate;
3543
+ updatedAt: z.ZodDate;
3544
+ deletedAt: z.ZodNullable<z.ZodDate>;
3545
+ value: z.ZodString;
3546
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
3547
+ parentId: z.ZodNullable<z.ZodString>;
3548
+ childCategoryList: z.ZodArray<z.ZodObject<{
3549
+ id: z.ZodString;
3550
+ value: z.ZodString;
3551
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
3552
+ parentId: z.ZodNullable<z.ZodString>;
3553
+ childCategoryList: z.ZodArray<z.ZodObject<{
3554
+ id: z.ZodString;
3555
+ value: z.ZodString;
3556
+ level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
3557
+ parentId: z.ZodNullable<z.ZodString>;
3558
+ childCategoryList: z.ZodArray<z.ZodAny, "many">;
3559
+ }, "strip", z.ZodTypeAny, {
3560
+ id: string;
3561
+ value: string;
3562
+ level: 2 | 1 | 3;
3563
+ parentId: string | null;
3564
+ childCategoryList: any[];
3565
+ }, {
3566
+ id: string;
3567
+ value: string;
3568
+ level: 2 | 1 | 3;
3569
+ parentId: string | null;
3570
+ childCategoryList: any[];
3571
+ }>, "many">;
3572
+ }, "strip", z.ZodTypeAny, {
3573
+ id: string;
3574
+ value: string;
3575
+ level: 2 | 1 | 3;
3576
+ parentId: string | null;
3577
+ childCategoryList: {
3578
+ id: string;
3579
+ value: string;
3580
+ level: 2 | 1 | 3;
3581
+ parentId: string | null;
3582
+ childCategoryList: any[];
3583
+ }[];
3584
+ }, {
3585
+ id: string;
3586
+ value: string;
3587
+ level: 2 | 1 | 3;
3588
+ parentId: string | null;
3589
+ childCategoryList: {
3590
+ id: string;
3591
+ value: string;
3592
+ level: 2 | 1 | 3;
3593
+ parentId: string | null;
3594
+ childCategoryList: any[];
3595
+ }[];
3596
+ }>, "many">;
3597
+ }, "strip", z.ZodTypeAny, {
3598
+ id: string;
3599
+ value: string;
3600
+ createdAt: Date;
3601
+ updatedAt: Date;
3602
+ deletedAt: Date | null;
3603
+ level: 2 | 1 | 3;
3604
+ parentId: string | null;
3605
+ childCategoryList: {
3606
+ id: string;
3607
+ value: string;
3608
+ level: 2 | 1 | 3;
3609
+ parentId: string | null;
3610
+ childCategoryList: {
3611
+ id: string;
3612
+ value: string;
3613
+ level: 2 | 1 | 3;
3614
+ parentId: string | null;
3615
+ childCategoryList: any[];
3616
+ }[];
3617
+ }[];
3618
+ }, {
3619
+ id: string;
3620
+ value: string;
3621
+ createdAt: Date;
3622
+ updatedAt: Date;
3623
+ deletedAt: Date | null;
3624
+ level: 2 | 1 | 3;
3625
+ parentId: string | null;
3626
+ childCategoryList: {
3627
+ id: string;
3628
+ value: string;
3629
+ level: 2 | 1 | 3;
3630
+ parentId: string | null;
3631
+ childCategoryList: {
3632
+ id: string;
3633
+ value: string;
3634
+ level: 2 | 1 | 3;
3635
+ parentId: string | null;
3636
+ childCategoryList: any[];
3637
+ }[];
3638
+ }[];
3639
+ }>, "many">;
3640
+ callFrom: z.ZodNullable<z.ZodString>;
3641
+ callTo: z.ZodNullable<z.ZodString>;
3642
+ customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
3643
+ id: z.ZodString;
3644
+ createdAt: z.ZodDate;
3645
+ updatedAt: z.ZodDate;
3646
+ deletedAt: z.ZodNullable<z.ZodDate>;
3647
+ textValue: z.ZodNullable<z.ZodString>;
3648
+ booleanValue: z.ZodNullable<z.ZodBoolean>;
3649
+ numberValue: z.ZodNullable<z.ZodNumber>;
3650
+ dateValue: z.ZodNullable<z.ZodDate>;
3651
+ entityId: z.ZodString;
3652
+ attributeId: z.ZodString;
3653
+ }, "strip", z.ZodTypeAny, {
3654
+ id: string;
3655
+ createdAt: Date;
3656
+ updatedAt: Date;
3657
+ deletedAt: Date | null;
3658
+ entityId: string;
3659
+ attributeId: string;
3660
+ textValue: string | null;
3661
+ booleanValue: boolean | null;
3662
+ numberValue: number | null;
3663
+ dateValue: Date | null;
3664
+ }, {
3665
+ id: string;
3666
+ createdAt: Date;
3667
+ updatedAt: Date;
3668
+ deletedAt: Date | null;
3669
+ entityId: string;
3670
+ attributeId: string;
3671
+ textValue: string | null;
3672
+ booleanValue: boolean | null;
3673
+ numberValue: number | null;
3674
+ dateValue: Date | null;
3675
+ }>, "many">>;
3541
3676
  }, "strip", z.ZodTypeAny, {
3677
+ type: string;
3542
3678
  id: string;
3543
3679
  disposition: string | null;
3544
3680
  createdAt: Date;
3545
3681
  updatedAt: Date;
3546
3682
  deletedAt: Date | null;
3683
+ categories: {
3684
+ id: string;
3685
+ value: string;
3686
+ createdAt: Date;
3687
+ updatedAt: Date;
3688
+ deletedAt: Date | null;
3689
+ level: 2 | 1 | 3;
3690
+ parentId: string | null;
3691
+ childCategoryList: {
3692
+ id: string;
3693
+ value: string;
3694
+ level: 2 | 1 | 3;
3695
+ parentId: string | null;
3696
+ childCategoryList: {
3697
+ id: string;
3698
+ value: string;
3699
+ level: 2 | 1 | 3;
3700
+ parentId: string | null;
3701
+ childCategoryList: any[];
3702
+ }[];
3703
+ }[];
3704
+ }[];
3547
3705
  tags: {
3548
3706
  id: string;
3549
3707
  name: string;
@@ -3554,12 +3712,47 @@ export declare const viberContract: {
3554
3712
  callFrom: string | null;
3555
3713
  callTo: string | null;
3556
3714
  note: string | null;
3715
+ customFields?: {
3716
+ id: string;
3717
+ createdAt: Date;
3718
+ updatedAt: Date;
3719
+ deletedAt: Date | null;
3720
+ entityId: string;
3721
+ attributeId: string;
3722
+ textValue: string | null;
3723
+ booleanValue: boolean | null;
3724
+ numberValue: number | null;
3725
+ dateValue: Date | null;
3726
+ }[] | undefined;
3557
3727
  }, {
3728
+ type: string;
3558
3729
  id: string;
3559
3730
  disposition: string | null;
3560
3731
  createdAt: Date;
3561
3732
  updatedAt: Date;
3562
3733
  deletedAt: Date | null;
3734
+ categories: {
3735
+ id: string;
3736
+ value: string;
3737
+ createdAt: Date;
3738
+ updatedAt: Date;
3739
+ deletedAt: Date | null;
3740
+ level: 2 | 1 | 3;
3741
+ parentId: string | null;
3742
+ childCategoryList: {
3743
+ id: string;
3744
+ value: string;
3745
+ level: 2 | 1 | 3;
3746
+ parentId: string | null;
3747
+ childCategoryList: {
3748
+ id: string;
3749
+ value: string;
3750
+ level: 2 | 1 | 3;
3751
+ parentId: string | null;
3752
+ childCategoryList: any[];
3753
+ }[];
3754
+ }[];
3755
+ }[];
3563
3756
  tags: {
3564
3757
  id: string;
3565
3758
  name: string;
@@ -3570,6 +3763,18 @@ export declare const viberContract: {
3570
3763
  callFrom: string | null;
3571
3764
  callTo: string | null;
3572
3765
  note: string | null;
3766
+ customFields?: {
3767
+ id: string;
3768
+ createdAt: Date;
3769
+ updatedAt: Date;
3770
+ deletedAt: Date | null;
3771
+ entityId: string;
3772
+ attributeId: string;
3773
+ textValue: string | null;
3774
+ booleanValue: boolean | null;
3775
+ numberValue: number | null;
3776
+ dateValue: Date | null;
3777
+ }[] | undefined;
3573
3778
  }>>;
3574
3779
  }, "strip", z.ZodTypeAny, {
3575
3780
  id: string;
@@ -3588,11 +3793,34 @@ export declare const viberContract: {
3588
3793
  handledTime: number | null;
3589
3794
  firstResponseTime: number | null;
3590
3795
  wrapUpForm: {
3796
+ type: string;
3591
3797
  id: string;
3592
3798
  disposition: string | null;
3593
3799
  createdAt: Date;
3594
3800
  updatedAt: Date;
3595
3801
  deletedAt: Date | null;
3802
+ categories: {
3803
+ id: string;
3804
+ value: string;
3805
+ createdAt: Date;
3806
+ updatedAt: Date;
3807
+ deletedAt: Date | null;
3808
+ level: 2 | 1 | 3;
3809
+ parentId: string | null;
3810
+ childCategoryList: {
3811
+ id: string;
3812
+ value: string;
3813
+ level: 2 | 1 | 3;
3814
+ parentId: string | null;
3815
+ childCategoryList: {
3816
+ id: string;
3817
+ value: string;
3818
+ level: 2 | 1 | 3;
3819
+ parentId: string | null;
3820
+ childCategoryList: any[];
3821
+ }[];
3822
+ }[];
3823
+ }[];
3596
3824
  tags: {
3597
3825
  id: string;
3598
3826
  name: string;
@@ -3603,6 +3831,18 @@ export declare const viberContract: {
3603
3831
  callFrom: string | null;
3604
3832
  callTo: string | null;
3605
3833
  note: string | null;
3834
+ customFields?: {
3835
+ id: string;
3836
+ createdAt: Date;
3837
+ updatedAt: Date;
3838
+ deletedAt: Date | null;
3839
+ entityId: string;
3840
+ attributeId: string;
3841
+ textValue: string | null;
3842
+ booleanValue: boolean | null;
3843
+ numberValue: number | null;
3844
+ dateValue: Date | null;
3845
+ }[] | undefined;
3606
3846
  } | null;
3607
3847
  }, {
3608
3848
  id: string;
@@ -3621,11 +3861,34 @@ export declare const viberContract: {
3621
3861
  handledTime: number | null;
3622
3862
  firstResponseTime: number | null;
3623
3863
  wrapUpForm: {
3864
+ type: string;
3624
3865
  id: string;
3625
3866
  disposition: string | null;
3626
3867
  createdAt: Date;
3627
3868
  updatedAt: Date;
3628
3869
  deletedAt: Date | null;
3870
+ categories: {
3871
+ id: string;
3872
+ value: string;
3873
+ createdAt: Date;
3874
+ updatedAt: Date;
3875
+ deletedAt: Date | null;
3876
+ level: 2 | 1 | 3;
3877
+ parentId: string | null;
3878
+ childCategoryList: {
3879
+ id: string;
3880
+ value: string;
3881
+ level: 2 | 1 | 3;
3882
+ parentId: string | null;
3883
+ childCategoryList: {
3884
+ id: string;
3885
+ value: string;
3886
+ level: 2 | 1 | 3;
3887
+ parentId: string | null;
3888
+ childCategoryList: any[];
3889
+ }[];
3890
+ }[];
3891
+ }[];
3629
3892
  tags: {
3630
3893
  id: string;
3631
3894
  name: string;
@@ -3636,6 +3899,18 @@ export declare const viberContract: {
3636
3899
  callFrom: string | null;
3637
3900
  callTo: string | null;
3638
3901
  note: string | null;
3902
+ customFields?: {
3903
+ id: string;
3904
+ createdAt: Date;
3905
+ updatedAt: Date;
3906
+ deletedAt: Date | null;
3907
+ entityId: string;
3908
+ attributeId: string;
3909
+ textValue: string | null;
3910
+ booleanValue: boolean | null;
3911
+ numberValue: number | null;
3912
+ dateValue: Date | null;
3913
+ }[] | undefined;
3639
3914
  } | null;
3640
3915
  }>;
3641
3916
  }, "strip", z.ZodTypeAny, {
@@ -3935,11 +4210,34 @@ export declare const viberContract: {
3935
4210
  handledTime: number | null;
3936
4211
  firstResponseTime: number | null;
3937
4212
  wrapUpForm: {
4213
+ type: string;
3938
4214
  id: string;
3939
4215
  disposition: string | null;
3940
4216
  createdAt: Date;
3941
4217
  updatedAt: Date;
3942
4218
  deletedAt: Date | null;
4219
+ categories: {
4220
+ id: string;
4221
+ value: string;
4222
+ createdAt: Date;
4223
+ updatedAt: Date;
4224
+ deletedAt: Date | null;
4225
+ level: 2 | 1 | 3;
4226
+ parentId: string | null;
4227
+ childCategoryList: {
4228
+ id: string;
4229
+ value: string;
4230
+ level: 2 | 1 | 3;
4231
+ parentId: string | null;
4232
+ childCategoryList: {
4233
+ id: string;
4234
+ value: string;
4235
+ level: 2 | 1 | 3;
4236
+ parentId: string | null;
4237
+ childCategoryList: any[];
4238
+ }[];
4239
+ }[];
4240
+ }[];
3943
4241
  tags: {
3944
4242
  id: string;
3945
4243
  name: string;
@@ -3950,6 +4248,18 @@ export declare const viberContract: {
3950
4248
  callFrom: string | null;
3951
4249
  callTo: string | null;
3952
4250
  note: string | null;
4251
+ customFields?: {
4252
+ id: string;
4253
+ createdAt: Date;
4254
+ updatedAt: Date;
4255
+ deletedAt: Date | null;
4256
+ entityId: string;
4257
+ attributeId: string;
4258
+ textValue: string | null;
4259
+ booleanValue: boolean | null;
4260
+ numberValue: number | null;
4261
+ dateValue: Date | null;
4262
+ }[] | undefined;
3953
4263
  } | null;
3954
4264
  };
3955
4265
  }, {
@@ -4249,11 +4559,34 @@ export declare const viberContract: {
4249
4559
  handledTime: number | null;
4250
4560
  firstResponseTime: number | null;
4251
4561
  wrapUpForm: {
4562
+ type: string;
4252
4563
  id: string;
4253
4564
  disposition: string | null;
4254
4565
  createdAt: Date;
4255
4566
  updatedAt: Date;
4256
4567
  deletedAt: Date | null;
4568
+ categories: {
4569
+ id: string;
4570
+ value: string;
4571
+ createdAt: Date;
4572
+ updatedAt: Date;
4573
+ deletedAt: Date | null;
4574
+ level: 2 | 1 | 3;
4575
+ parentId: string | null;
4576
+ childCategoryList: {
4577
+ id: string;
4578
+ value: string;
4579
+ level: 2 | 1 | 3;
4580
+ parentId: string | null;
4581
+ childCategoryList: {
4582
+ id: string;
4583
+ value: string;
4584
+ level: 2 | 1 | 3;
4585
+ parentId: string | null;
4586
+ childCategoryList: any[];
4587
+ }[];
4588
+ }[];
4589
+ }[];
4257
4590
  tags: {
4258
4591
  id: string;
4259
4592
  name: string;
@@ -4264,6 +4597,18 @@ export declare const viberContract: {
4264
4597
  callFrom: string | null;
4265
4598
  callTo: string | null;
4266
4599
  note: string | null;
4600
+ customFields?: {
4601
+ id: string;
4602
+ createdAt: Date;
4603
+ updatedAt: Date;
4604
+ deletedAt: Date | null;
4605
+ entityId: string;
4606
+ attributeId: string;
4607
+ textValue: string | null;
4608
+ booleanValue: boolean | null;
4609
+ numberValue: number | null;
4610
+ dateValue: Date | null;
4611
+ }[] | undefined;
4267
4612
  } | null;
4268
4613
  };
4269
4614
  }>;
@@ -6309,11 +6654,34 @@ export declare const viberContract: {
6309
6654
  handledTime: number | null;
6310
6655
  firstResponseTime: number | null;
6311
6656
  wrapUpForm: {
6657
+ type: string;
6312
6658
  id: string;
6313
6659
  disposition: string | null;
6314
6660
  createdAt: Date;
6315
6661
  updatedAt: Date;
6316
6662
  deletedAt: Date | null;
6663
+ categories: {
6664
+ id: string;
6665
+ value: string;
6666
+ createdAt: Date;
6667
+ updatedAt: Date;
6668
+ deletedAt: Date | null;
6669
+ level: 2 | 1 | 3;
6670
+ parentId: string | null;
6671
+ childCategoryList: {
6672
+ id: string;
6673
+ value: string;
6674
+ level: 2 | 1 | 3;
6675
+ parentId: string | null;
6676
+ childCategoryList: {
6677
+ id: string;
6678
+ value: string;
6679
+ level: 2 | 1 | 3;
6680
+ parentId: string | null;
6681
+ childCategoryList: any[];
6682
+ }[];
6683
+ }[];
6684
+ }[];
6317
6685
  tags: {
6318
6686
  id: string;
6319
6687
  name: string;
@@ -6324,6 +6692,18 @@ export declare const viberContract: {
6324
6692
  callFrom: string | null;
6325
6693
  callTo: string | null;
6326
6694
  note: string | null;
6695
+ customFields?: {
6696
+ id: string;
6697
+ createdAt: Date;
6698
+ updatedAt: Date;
6699
+ deletedAt: Date | null;
6700
+ entityId: string;
6701
+ attributeId: string;
6702
+ textValue: string | null;
6703
+ booleanValue: boolean | null;
6704
+ numberValue: number | null;
6705
+ dateValue: Date | null;
6706
+ }[] | undefined;
6327
6707
  } | null;
6328
6708
  };
6329
6709
  };
@@ -6949,11 +7329,34 @@ export declare const viberContract: {
6949
7329
  handledTime: number | null;
6950
7330
  firstResponseTime: number | null;
6951
7331
  wrapUpForm: {
7332
+ type: string;
6952
7333
  id: string;
6953
7334
  disposition: string | null;
6954
7335
  createdAt: Date;
6955
7336
  updatedAt: Date;
6956
7337
  deletedAt: Date | null;
7338
+ categories: {
7339
+ id: string;
7340
+ value: string;
7341
+ createdAt: Date;
7342
+ updatedAt: Date;
7343
+ deletedAt: Date | null;
7344
+ level: 2 | 1 | 3;
7345
+ parentId: string | null;
7346
+ childCategoryList: {
7347
+ id: string;
7348
+ value: string;
7349
+ level: 2 | 1 | 3;
7350
+ parentId: string | null;
7351
+ childCategoryList: {
7352
+ id: string;
7353
+ value: string;
7354
+ level: 2 | 1 | 3;
7355
+ parentId: string | null;
7356
+ childCategoryList: any[];
7357
+ }[];
7358
+ }[];
7359
+ }[];
6957
7360
  tags: {
6958
7361
  id: string;
6959
7362
  name: string;
@@ -6964,6 +7367,18 @@ export declare const viberContract: {
6964
7367
  callFrom: string | null;
6965
7368
  callTo: string | null;
6966
7369
  note: string | null;
7370
+ customFields?: {
7371
+ id: string;
7372
+ createdAt: Date;
7373
+ updatedAt: Date;
7374
+ deletedAt: Date | null;
7375
+ entityId: string;
7376
+ attributeId: string;
7377
+ textValue: string | null;
7378
+ booleanValue: boolean | null;
7379
+ numberValue: number | null;
7380
+ dateValue: Date | null;
7381
+ }[] | undefined;
6967
7382
  } | null;
6968
7383
  };
6969
7384
  };
@@ -7591,11 +8006,34 @@ export declare const viberContract: {
7591
8006
  handledTime: number | null;
7592
8007
  firstResponseTime: number | null;
7593
8008
  wrapUpForm: {
8009
+ type: string;
7594
8010
  id: string;
7595
8011
  disposition: string | null;
7596
8012
  createdAt: Date;
7597
8013
  updatedAt: Date;
7598
8014
  deletedAt: Date | null;
8015
+ categories: {
8016
+ id: string;
8017
+ value: string;
8018
+ createdAt: Date;
8019
+ updatedAt: Date;
8020
+ deletedAt: Date | null;
8021
+ level: 2 | 1 | 3;
8022
+ parentId: string | null;
8023
+ childCategoryList: {
8024
+ id: string;
8025
+ value: string;
8026
+ level: 2 | 1 | 3;
8027
+ parentId: string | null;
8028
+ childCategoryList: {
8029
+ id: string;
8030
+ value: string;
8031
+ level: 2 | 1 | 3;
8032
+ parentId: string | null;
8033
+ childCategoryList: any[];
8034
+ }[];
8035
+ }[];
8036
+ }[];
7599
8037
  tags: {
7600
8038
  id: string;
7601
8039
  name: string;
@@ -7606,6 +8044,18 @@ export declare const viberContract: {
7606
8044
  callFrom: string | null;
7607
8045
  callTo: string | null;
7608
8046
  note: string | null;
8047
+ customFields?: {
8048
+ id: string;
8049
+ createdAt: Date;
8050
+ updatedAt: Date;
8051
+ deletedAt: Date | null;
8052
+ entityId: string;
8053
+ attributeId: string;
8054
+ textValue: string | null;
8055
+ booleanValue: boolean | null;
8056
+ numberValue: number | null;
8057
+ dateValue: Date | null;
8058
+ }[] | undefined;
7609
8059
  } | null;
7610
8060
  };
7611
8061
  };
@@ -8234,11 +8684,34 @@ export declare const viberContract: {
8234
8684
  handledTime: number | null;
8235
8685
  firstResponseTime: number | null;
8236
8686
  wrapUpForm: {
8687
+ type: string;
8237
8688
  id: string;
8238
8689
  disposition: string | null;
8239
8690
  createdAt: Date;
8240
8691
  updatedAt: Date;
8241
8692
  deletedAt: Date | null;
8693
+ categories: {
8694
+ id: string;
8695
+ value: string;
8696
+ createdAt: Date;
8697
+ updatedAt: Date;
8698
+ deletedAt: Date | null;
8699
+ level: 2 | 1 | 3;
8700
+ parentId: string | null;
8701
+ childCategoryList: {
8702
+ id: string;
8703
+ value: string;
8704
+ level: 2 | 1 | 3;
8705
+ parentId: string | null;
8706
+ childCategoryList: {
8707
+ id: string;
8708
+ value: string;
8709
+ level: 2 | 1 | 3;
8710
+ parentId: string | null;
8711
+ childCategoryList: any[];
8712
+ }[];
8713
+ }[];
8714
+ }[];
8242
8715
  tags: {
8243
8716
  id: string;
8244
8717
  name: string;
@@ -8249,6 +8722,18 @@ export declare const viberContract: {
8249
8722
  callFrom: string | null;
8250
8723
  callTo: string | null;
8251
8724
  note: string | null;
8725
+ customFields?: {
8726
+ id: string;
8727
+ createdAt: Date;
8728
+ updatedAt: Date;
8729
+ deletedAt: Date | null;
8730
+ entityId: string;
8731
+ attributeId: string;
8732
+ textValue: string | null;
8733
+ booleanValue: boolean | null;
8734
+ numberValue: number | null;
8735
+ dateValue: Date | null;
8736
+ }[] | undefined;
8252
8737
  } | null;
8253
8738
  };
8254
8739
  };