@kl1/contracts 1.1.25 → 1.1.26
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 +935 -924
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +934 -924
- package/dist/index.mjs.map +1 -1
- 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 +773 -22
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +975 -5
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +3 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +3 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +164160 -131652
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +352 -2
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +557 -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 +30477 -6759
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/message-contract.d.ts +6424 -64
- package/dist/src/mail/message-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +19532 -2172
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/message-validation.schema.d.ts +7 -4
- package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/message.schema.d.ts +762 -40
- package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room-validation.schema.d.ts +6057 -350
- package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5984 -308
- 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/telephony-cdr/call-report.schema.d.ts +62 -62
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +1 -622
- package/dist/src/telephony-cdr/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/workflow-rule/index.d.ts +834 -4
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +1447 -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 +29 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- 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
|
-
|
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.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">>>;
|
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
|
+
}[] | null | 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
|
+
}[] | null | 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
|
+
}[] | null | 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
|
+
}[] | null | undefined;
|
3639
3914
|
} | null;
|
3640
3915
|
}>;
|
3641
3916
|
workflowRule: z.ZodObject<{
|
@@ -3960,11 +4235,34 @@ export declare const viberContract: {
|
|
3960
4235
|
handledTime: number | null;
|
3961
4236
|
firstResponseTime: number | null;
|
3962
4237
|
wrapUpForm: {
|
4238
|
+
type: string;
|
3963
4239
|
id: string;
|
3964
4240
|
disposition: string | null;
|
3965
4241
|
createdAt: Date;
|
3966
4242
|
updatedAt: Date;
|
3967
4243
|
deletedAt: Date | null;
|
4244
|
+
categories: {
|
4245
|
+
id: string;
|
4246
|
+
value: string;
|
4247
|
+
createdAt: Date;
|
4248
|
+
updatedAt: Date;
|
4249
|
+
deletedAt: Date | null;
|
4250
|
+
level: 2 | 1 | 3;
|
4251
|
+
parentId: string | null;
|
4252
|
+
childCategoryList: {
|
4253
|
+
id: string;
|
4254
|
+
value: string;
|
4255
|
+
level: 2 | 1 | 3;
|
4256
|
+
parentId: string | null;
|
4257
|
+
childCategoryList: {
|
4258
|
+
id: string;
|
4259
|
+
value: string;
|
4260
|
+
level: 2 | 1 | 3;
|
4261
|
+
parentId: string | null;
|
4262
|
+
childCategoryList: any[];
|
4263
|
+
}[];
|
4264
|
+
}[];
|
4265
|
+
}[];
|
3968
4266
|
tags: {
|
3969
4267
|
id: string;
|
3970
4268
|
name: string;
|
@@ -3975,6 +4273,18 @@ export declare const viberContract: {
|
|
3975
4273
|
callFrom: string | null;
|
3976
4274
|
callTo: string | null;
|
3977
4275
|
note: string | null;
|
4276
|
+
customFields?: {
|
4277
|
+
id: string;
|
4278
|
+
createdAt: Date;
|
4279
|
+
updatedAt: Date;
|
4280
|
+
deletedAt: Date | null;
|
4281
|
+
entityId: string;
|
4282
|
+
attributeId: string;
|
4283
|
+
textValue: string | null;
|
4284
|
+
booleanValue: boolean | null;
|
4285
|
+
numberValue: number | null;
|
4286
|
+
dateValue: Date | null;
|
4287
|
+
}[] | null | undefined;
|
3978
4288
|
} | null;
|
3979
4289
|
};
|
3980
4290
|
workflowRule: {
|
@@ -4283,11 +4593,34 @@ export declare const viberContract: {
|
|
4283
4593
|
handledTime: number | null;
|
4284
4594
|
firstResponseTime: number | null;
|
4285
4595
|
wrapUpForm: {
|
4596
|
+
type: string;
|
4286
4597
|
id: string;
|
4287
4598
|
disposition: string | null;
|
4288
4599
|
createdAt: Date;
|
4289
4600
|
updatedAt: Date;
|
4290
4601
|
deletedAt: Date | null;
|
4602
|
+
categories: {
|
4603
|
+
id: string;
|
4604
|
+
value: string;
|
4605
|
+
createdAt: Date;
|
4606
|
+
updatedAt: Date;
|
4607
|
+
deletedAt: Date | null;
|
4608
|
+
level: 2 | 1 | 3;
|
4609
|
+
parentId: string | null;
|
4610
|
+
childCategoryList: {
|
4611
|
+
id: string;
|
4612
|
+
value: string;
|
4613
|
+
level: 2 | 1 | 3;
|
4614
|
+
parentId: string | null;
|
4615
|
+
childCategoryList: {
|
4616
|
+
id: string;
|
4617
|
+
value: string;
|
4618
|
+
level: 2 | 1 | 3;
|
4619
|
+
parentId: string | null;
|
4620
|
+
childCategoryList: any[];
|
4621
|
+
}[];
|
4622
|
+
}[];
|
4623
|
+
}[];
|
4291
4624
|
tags: {
|
4292
4625
|
id: string;
|
4293
4626
|
name: string;
|
@@ -4298,6 +4631,18 @@ export declare const viberContract: {
|
|
4298
4631
|
callFrom: string | null;
|
4299
4632
|
callTo: string | null;
|
4300
4633
|
note: string | null;
|
4634
|
+
customFields?: {
|
4635
|
+
id: string;
|
4636
|
+
createdAt: Date;
|
4637
|
+
updatedAt: Date;
|
4638
|
+
deletedAt: Date | null;
|
4639
|
+
entityId: string;
|
4640
|
+
attributeId: string;
|
4641
|
+
textValue: string | null;
|
4642
|
+
booleanValue: boolean | null;
|
4643
|
+
numberValue: number | null;
|
4644
|
+
dateValue: Date | null;
|
4645
|
+
}[] | null | undefined;
|
4301
4646
|
} | null;
|
4302
4647
|
};
|
4303
4648
|
workflowRule: {
|
@@ -6377,11 +6722,34 @@ export declare const viberContract: {
|
|
6377
6722
|
handledTime: number | null;
|
6378
6723
|
firstResponseTime: number | null;
|
6379
6724
|
wrapUpForm: {
|
6725
|
+
type: string;
|
6380
6726
|
id: string;
|
6381
6727
|
disposition: string | null;
|
6382
6728
|
createdAt: Date;
|
6383
6729
|
updatedAt: Date;
|
6384
6730
|
deletedAt: Date | null;
|
6731
|
+
categories: {
|
6732
|
+
id: string;
|
6733
|
+
value: string;
|
6734
|
+
createdAt: Date;
|
6735
|
+
updatedAt: Date;
|
6736
|
+
deletedAt: Date | null;
|
6737
|
+
level: 2 | 1 | 3;
|
6738
|
+
parentId: string | null;
|
6739
|
+
childCategoryList: {
|
6740
|
+
id: string;
|
6741
|
+
value: string;
|
6742
|
+
level: 2 | 1 | 3;
|
6743
|
+
parentId: string | null;
|
6744
|
+
childCategoryList: {
|
6745
|
+
id: string;
|
6746
|
+
value: string;
|
6747
|
+
level: 2 | 1 | 3;
|
6748
|
+
parentId: string | null;
|
6749
|
+
childCategoryList: any[];
|
6750
|
+
}[];
|
6751
|
+
}[];
|
6752
|
+
}[];
|
6385
6753
|
tags: {
|
6386
6754
|
id: string;
|
6387
6755
|
name: string;
|
@@ -6392,6 +6760,18 @@ export declare const viberContract: {
|
|
6392
6760
|
callFrom: string | null;
|
6393
6761
|
callTo: string | null;
|
6394
6762
|
note: string | null;
|
6763
|
+
customFields?: {
|
6764
|
+
id: string;
|
6765
|
+
createdAt: Date;
|
6766
|
+
updatedAt: Date;
|
6767
|
+
deletedAt: Date | null;
|
6768
|
+
entityId: string;
|
6769
|
+
attributeId: string;
|
6770
|
+
textValue: string | null;
|
6771
|
+
booleanValue: boolean | null;
|
6772
|
+
numberValue: number | null;
|
6773
|
+
dateValue: Date | null;
|
6774
|
+
}[] | null | undefined;
|
6395
6775
|
} | null;
|
6396
6776
|
};
|
6397
6777
|
workflowRule: {
|
@@ -7035,11 +7415,34 @@ export declare const viberContract: {
|
|
7035
7415
|
handledTime: number | null;
|
7036
7416
|
firstResponseTime: number | null;
|
7037
7417
|
wrapUpForm: {
|
7418
|
+
type: string;
|
7038
7419
|
id: string;
|
7039
7420
|
disposition: string | null;
|
7040
7421
|
createdAt: Date;
|
7041
7422
|
updatedAt: Date;
|
7042
7423
|
deletedAt: Date | null;
|
7424
|
+
categories: {
|
7425
|
+
id: string;
|
7426
|
+
value: string;
|
7427
|
+
createdAt: Date;
|
7428
|
+
updatedAt: Date;
|
7429
|
+
deletedAt: Date | null;
|
7430
|
+
level: 2 | 1 | 3;
|
7431
|
+
parentId: string | null;
|
7432
|
+
childCategoryList: {
|
7433
|
+
id: string;
|
7434
|
+
value: string;
|
7435
|
+
level: 2 | 1 | 3;
|
7436
|
+
parentId: string | null;
|
7437
|
+
childCategoryList: {
|
7438
|
+
id: string;
|
7439
|
+
value: string;
|
7440
|
+
level: 2 | 1 | 3;
|
7441
|
+
parentId: string | null;
|
7442
|
+
childCategoryList: any[];
|
7443
|
+
}[];
|
7444
|
+
}[];
|
7445
|
+
}[];
|
7043
7446
|
tags: {
|
7044
7447
|
id: string;
|
7045
7448
|
name: string;
|
@@ -7050,6 +7453,18 @@ export declare const viberContract: {
|
|
7050
7453
|
callFrom: string | null;
|
7051
7454
|
callTo: string | null;
|
7052
7455
|
note: string | null;
|
7456
|
+
customFields?: {
|
7457
|
+
id: string;
|
7458
|
+
createdAt: Date;
|
7459
|
+
updatedAt: Date;
|
7460
|
+
deletedAt: Date | null;
|
7461
|
+
entityId: string;
|
7462
|
+
attributeId: string;
|
7463
|
+
textValue: string | null;
|
7464
|
+
booleanValue: boolean | null;
|
7465
|
+
numberValue: number | null;
|
7466
|
+
dateValue: Date | null;
|
7467
|
+
}[] | null | undefined;
|
7053
7468
|
} | null;
|
7054
7469
|
};
|
7055
7470
|
workflowRule: {
|
@@ -7695,11 +8110,34 @@ export declare const viberContract: {
|
|
7695
8110
|
handledTime: number | null;
|
7696
8111
|
firstResponseTime: number | null;
|
7697
8112
|
wrapUpForm: {
|
8113
|
+
type: string;
|
7698
8114
|
id: string;
|
7699
8115
|
disposition: string | null;
|
7700
8116
|
createdAt: Date;
|
7701
8117
|
updatedAt: Date;
|
7702
8118
|
deletedAt: Date | null;
|
8119
|
+
categories: {
|
8120
|
+
id: string;
|
8121
|
+
value: string;
|
8122
|
+
createdAt: Date;
|
8123
|
+
updatedAt: Date;
|
8124
|
+
deletedAt: Date | null;
|
8125
|
+
level: 2 | 1 | 3;
|
8126
|
+
parentId: string | null;
|
8127
|
+
childCategoryList: {
|
8128
|
+
id: string;
|
8129
|
+
value: string;
|
8130
|
+
level: 2 | 1 | 3;
|
8131
|
+
parentId: string | null;
|
8132
|
+
childCategoryList: {
|
8133
|
+
id: string;
|
8134
|
+
value: string;
|
8135
|
+
level: 2 | 1 | 3;
|
8136
|
+
parentId: string | null;
|
8137
|
+
childCategoryList: any[];
|
8138
|
+
}[];
|
8139
|
+
}[];
|
8140
|
+
}[];
|
7703
8141
|
tags: {
|
7704
8142
|
id: string;
|
7705
8143
|
name: string;
|
@@ -7710,6 +8148,18 @@ export declare const viberContract: {
|
|
7710
8148
|
callFrom: string | null;
|
7711
8149
|
callTo: string | null;
|
7712
8150
|
note: string | null;
|
8151
|
+
customFields?: {
|
8152
|
+
id: string;
|
8153
|
+
createdAt: Date;
|
8154
|
+
updatedAt: Date;
|
8155
|
+
deletedAt: Date | null;
|
8156
|
+
entityId: string;
|
8157
|
+
attributeId: string;
|
8158
|
+
textValue: string | null;
|
8159
|
+
booleanValue: boolean | null;
|
8160
|
+
numberValue: number | null;
|
8161
|
+
dateValue: Date | null;
|
8162
|
+
}[] | null | undefined;
|
7713
8163
|
} | null;
|
7714
8164
|
};
|
7715
8165
|
workflowRule: {
|
@@ -8356,11 +8806,34 @@ export declare const viberContract: {
|
|
8356
8806
|
handledTime: number | null;
|
8357
8807
|
firstResponseTime: number | null;
|
8358
8808
|
wrapUpForm: {
|
8809
|
+
type: string;
|
8359
8810
|
id: string;
|
8360
8811
|
disposition: string | null;
|
8361
8812
|
createdAt: Date;
|
8362
8813
|
updatedAt: Date;
|
8363
8814
|
deletedAt: Date | null;
|
8815
|
+
categories: {
|
8816
|
+
id: string;
|
8817
|
+
value: string;
|
8818
|
+
createdAt: Date;
|
8819
|
+
updatedAt: Date;
|
8820
|
+
deletedAt: Date | null;
|
8821
|
+
level: 2 | 1 | 3;
|
8822
|
+
parentId: string | null;
|
8823
|
+
childCategoryList: {
|
8824
|
+
id: string;
|
8825
|
+
value: string;
|
8826
|
+
level: 2 | 1 | 3;
|
8827
|
+
parentId: string | null;
|
8828
|
+
childCategoryList: {
|
8829
|
+
id: string;
|
8830
|
+
value: string;
|
8831
|
+
level: 2 | 1 | 3;
|
8832
|
+
parentId: string | null;
|
8833
|
+
childCategoryList: any[];
|
8834
|
+
}[];
|
8835
|
+
}[];
|
8836
|
+
}[];
|
8364
8837
|
tags: {
|
8365
8838
|
id: string;
|
8366
8839
|
name: string;
|
@@ -8371,6 +8844,18 @@ export declare const viberContract: {
|
|
8371
8844
|
callFrom: string | null;
|
8372
8845
|
callTo: string | null;
|
8373
8846
|
note: string | null;
|
8847
|
+
customFields?: {
|
8848
|
+
id: string;
|
8849
|
+
createdAt: Date;
|
8850
|
+
updatedAt: Date;
|
8851
|
+
deletedAt: Date | null;
|
8852
|
+
entityId: string;
|
8853
|
+
attributeId: string;
|
8854
|
+
textValue: string | null;
|
8855
|
+
booleanValue: boolean | null;
|
8856
|
+
numberValue: number | null;
|
8857
|
+
dateValue: Date | null;
|
8858
|
+
}[] | null | undefined;
|
8374
8859
|
} | null;
|
8375
8860
|
};
|
8376
8861
|
workflowRule: {
|