@kl1/contracts 1.1.23 → 1.1.24
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 +6 -30
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -30
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +22 -4867
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +4 -764
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +4 -974
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +44 -9413
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +2 -347
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +4 -554
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +2 -487
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +2 -487
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +6 -1251
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +6 -1251
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +2 -417
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +2 -347
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +2 -487
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +2 -487
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +2 -487
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +6 -1000
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/schema.d.ts +2 -207
- package/dist/src/wrap-up-form/schema.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +0 -29
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -3517,7 +3517,8 @@ 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
|
-
|
3520
|
+
callFrom: z.ZodNullable<z.ZodString>;
|
3521
|
+
callTo: z.ZodNullable<z.ZodString>;
|
3521
3522
|
tags: z.ZodArray<z.ZodObject<{
|
3522
3523
|
id: z.ZodString;
|
3523
3524
|
createdAt: z.ZodDate;
|
@@ -3537,171 +3538,12 @@ export declare const viberContract: {
|
|
3537
3538
|
updatedAt: Date;
|
3538
3539
|
deletedAt: Date | null;
|
3539
3540
|
}>, "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.ZodNullable<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">>>;
|
3676
3541
|
}, "strip", z.ZodTypeAny, {
|
3677
|
-
type: string;
|
3678
3542
|
id: string;
|
3679
3543
|
disposition: string | null;
|
3680
3544
|
createdAt: Date;
|
3681
3545
|
updatedAt: Date;
|
3682
3546
|
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
|
-
}[];
|
3705
3547
|
tags: {
|
3706
3548
|
id: string;
|
3707
3549
|
name: string;
|
@@ -3712,47 +3554,12 @@ export declare const viberContract: {
|
|
3712
3554
|
callFrom: string | null;
|
3713
3555
|
callTo: string | null;
|
3714
3556
|
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
|
-
}[] | null | undefined;
|
3727
3557
|
}, {
|
3728
|
-
type: string;
|
3729
3558
|
id: string;
|
3730
3559
|
disposition: string | null;
|
3731
3560
|
createdAt: Date;
|
3732
3561
|
updatedAt: Date;
|
3733
3562
|
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
|
-
}[];
|
3756
3563
|
tags: {
|
3757
3564
|
id: string;
|
3758
3565
|
name: string;
|
@@ -3763,18 +3570,6 @@ export declare const viberContract: {
|
|
3763
3570
|
callFrom: string | null;
|
3764
3571
|
callTo: string | null;
|
3765
3572
|
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
|
-
}[] | null | undefined;
|
3778
3573
|
}>>;
|
3779
3574
|
}, "strip", z.ZodTypeAny, {
|
3780
3575
|
id: string;
|
@@ -3793,34 +3588,11 @@ export declare const viberContract: {
|
|
3793
3588
|
handledTime: number | null;
|
3794
3589
|
firstResponseTime: number | null;
|
3795
3590
|
wrapUpForm: {
|
3796
|
-
type: string;
|
3797
3591
|
id: string;
|
3798
3592
|
disposition: string | null;
|
3799
3593
|
createdAt: Date;
|
3800
3594
|
updatedAt: Date;
|
3801
3595
|
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
|
-
}[];
|
3824
3596
|
tags: {
|
3825
3597
|
id: string;
|
3826
3598
|
name: string;
|
@@ -3831,18 +3603,6 @@ export declare const viberContract: {
|
|
3831
3603
|
callFrom: string | null;
|
3832
3604
|
callTo: string | null;
|
3833
3605
|
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
|
-
}[] | null | undefined;
|
3846
3606
|
} | null;
|
3847
3607
|
}, {
|
3848
3608
|
id: string;
|
@@ -3861,34 +3621,11 @@ export declare const viberContract: {
|
|
3861
3621
|
handledTime: number | null;
|
3862
3622
|
firstResponseTime: number | null;
|
3863
3623
|
wrapUpForm: {
|
3864
|
-
type: string;
|
3865
3624
|
id: string;
|
3866
3625
|
disposition: string | null;
|
3867
3626
|
createdAt: Date;
|
3868
3627
|
updatedAt: Date;
|
3869
3628
|
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
|
-
}[];
|
3892
3629
|
tags: {
|
3893
3630
|
id: string;
|
3894
3631
|
name: string;
|
@@ -3899,18 +3636,6 @@ export declare const viberContract: {
|
|
3899
3636
|
callFrom: string | null;
|
3900
3637
|
callTo: string | null;
|
3901
3638
|
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
|
-
}[] | null | undefined;
|
3914
3639
|
} | null;
|
3915
3640
|
}>;
|
3916
3641
|
}, "strip", z.ZodTypeAny, {
|
@@ -4210,34 +3935,11 @@ export declare const viberContract: {
|
|
4210
3935
|
handledTime: number | null;
|
4211
3936
|
firstResponseTime: number | null;
|
4212
3937
|
wrapUpForm: {
|
4213
|
-
type: string;
|
4214
3938
|
id: string;
|
4215
3939
|
disposition: string | null;
|
4216
3940
|
createdAt: Date;
|
4217
3941
|
updatedAt: Date;
|
4218
3942
|
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
|
-
}[];
|
4241
3943
|
tags: {
|
4242
3944
|
id: string;
|
4243
3945
|
name: string;
|
@@ -4248,18 +3950,6 @@ export declare const viberContract: {
|
|
4248
3950
|
callFrom: string | null;
|
4249
3951
|
callTo: string | null;
|
4250
3952
|
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
|
-
}[] | null | undefined;
|
4263
3953
|
} | null;
|
4264
3954
|
};
|
4265
3955
|
}, {
|
@@ -4559,34 +4249,11 @@ export declare const viberContract: {
|
|
4559
4249
|
handledTime: number | null;
|
4560
4250
|
firstResponseTime: number | null;
|
4561
4251
|
wrapUpForm: {
|
4562
|
-
type: string;
|
4563
4252
|
id: string;
|
4564
4253
|
disposition: string | null;
|
4565
4254
|
createdAt: Date;
|
4566
4255
|
updatedAt: Date;
|
4567
4256
|
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
|
-
}[];
|
4590
4257
|
tags: {
|
4591
4258
|
id: string;
|
4592
4259
|
name: string;
|
@@ -4597,18 +4264,6 @@ export declare const viberContract: {
|
|
4597
4264
|
callFrom: string | null;
|
4598
4265
|
callTo: string | null;
|
4599
4266
|
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
|
-
}[] | null | undefined;
|
4612
4267
|
} | null;
|
4613
4268
|
};
|
4614
4269
|
}>;
|
@@ -6654,34 +6309,11 @@ export declare const viberContract: {
|
|
6654
6309
|
handledTime: number | null;
|
6655
6310
|
firstResponseTime: number | null;
|
6656
6311
|
wrapUpForm: {
|
6657
|
-
type: string;
|
6658
6312
|
id: string;
|
6659
6313
|
disposition: string | null;
|
6660
6314
|
createdAt: Date;
|
6661
6315
|
updatedAt: Date;
|
6662
6316
|
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
|
-
}[];
|
6685
6317
|
tags: {
|
6686
6318
|
id: string;
|
6687
6319
|
name: string;
|
@@ -6692,18 +6324,6 @@ export declare const viberContract: {
|
|
6692
6324
|
callFrom: string | null;
|
6693
6325
|
callTo: string | null;
|
6694
6326
|
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
|
-
}[] | null | undefined;
|
6707
6327
|
} | null;
|
6708
6328
|
};
|
6709
6329
|
};
|
@@ -7329,34 +6949,11 @@ export declare const viberContract: {
|
|
7329
6949
|
handledTime: number | null;
|
7330
6950
|
firstResponseTime: number | null;
|
7331
6951
|
wrapUpForm: {
|
7332
|
-
type: string;
|
7333
6952
|
id: string;
|
7334
6953
|
disposition: string | null;
|
7335
6954
|
createdAt: Date;
|
7336
6955
|
updatedAt: Date;
|
7337
6956
|
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
|
-
}[];
|
7360
6957
|
tags: {
|
7361
6958
|
id: string;
|
7362
6959
|
name: string;
|
@@ -7367,18 +6964,6 @@ export declare const viberContract: {
|
|
7367
6964
|
callFrom: string | null;
|
7368
6965
|
callTo: string | null;
|
7369
6966
|
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
|
-
}[] | null | undefined;
|
7382
6967
|
} | null;
|
7383
6968
|
};
|
7384
6969
|
};
|
@@ -8006,34 +7591,11 @@ export declare const viberContract: {
|
|
8006
7591
|
handledTime: number | null;
|
8007
7592
|
firstResponseTime: number | null;
|
8008
7593
|
wrapUpForm: {
|
8009
|
-
type: string;
|
8010
7594
|
id: string;
|
8011
7595
|
disposition: string | null;
|
8012
7596
|
createdAt: Date;
|
8013
7597
|
updatedAt: Date;
|
8014
7598
|
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
|
-
}[];
|
8037
7599
|
tags: {
|
8038
7600
|
id: string;
|
8039
7601
|
name: string;
|
@@ -8044,18 +7606,6 @@ export declare const viberContract: {
|
|
8044
7606
|
callFrom: string | null;
|
8045
7607
|
callTo: string | null;
|
8046
7608
|
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
|
-
}[] | null | undefined;
|
8059
7609
|
} | null;
|
8060
7610
|
};
|
8061
7611
|
};
|
@@ -8684,34 +8234,11 @@ export declare const viberContract: {
|
|
8684
8234
|
handledTime: number | null;
|
8685
8235
|
firstResponseTime: number | null;
|
8686
8236
|
wrapUpForm: {
|
8687
|
-
type: string;
|
8688
8237
|
id: string;
|
8689
8238
|
disposition: string | null;
|
8690
8239
|
createdAt: Date;
|
8691
8240
|
updatedAt: Date;
|
8692
8241
|
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
|
-
}[];
|
8715
8242
|
tags: {
|
8716
8243
|
id: string;
|
8717
8244
|
name: string;
|
@@ -8722,18 +8249,6 @@ export declare const viberContract: {
|
|
8722
8249
|
callFrom: string | null;
|
8723
8250
|
callTo: string | null;
|
8724
8251
|
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
|
-
}[] | null | undefined;
|
8737
8252
|
} | null;
|
8738
8253
|
};
|
8739
8254
|
};
|