@kl1/contracts 1.0.35 → 1.0.36
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 +973 -927
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +972 -927
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +17 -10
- package/dist/src/activity-log/index.d.ts.map +1 -1
- package/dist/src/activity-log/schema.d.ts +17 -10
- package/dist/src/activity-log/schema.d.ts.map +1 -1
- package/dist/src/auth/index.d.ts +17 -10
- package/dist/src/auth/index.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +92 -56
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +18 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +1068 -656
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +183 -110
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +306 -188
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +965 -88
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +275 -24
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contract.d.ts +10251 -6745
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +116 -72
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +92 -56
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +29 -120
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/extension/schema.d.ts +3 -0
- package/dist/src/extension/schema.d.ts.map +1 -1
- package/dist/src/extension/validation.d.ts +6 -0
- package/dist/src/extension/validation.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +162 -100
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +57 -34
- package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/schema.d.ts +17 -10
- package/dist/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/src/telephony-extension/index.d.ts +2 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3794 -1641
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +177 -0
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +57 -34
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/schema.d.ts +11 -6
- package/dist/src/user/schema.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +12 -8
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/schema.d.ts +17 -10
- package/dist/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/package.json +1 -1
@@ -115,7 +115,7 @@ export declare const commentContract: {
|
|
115
115
|
displayName: string;
|
116
116
|
}[];
|
117
117
|
}>, "many">;
|
118
|
-
extension: z.
|
118
|
+
extension: z.ZodObject<{
|
119
119
|
id: z.ZodString;
|
120
120
|
createdAt: z.ZodDate;
|
121
121
|
updatedAt: z.ZodDate;
|
@@ -123,6 +123,7 @@ export declare const commentContract: {
|
|
123
123
|
userId: z.ZodNullable<z.ZodString>;
|
124
124
|
sipServerUrl: z.ZodString;
|
125
125
|
sipUserName: z.ZodString;
|
126
|
+
webphoneLoginUser: z.ZodString;
|
126
127
|
extensionId: z.ZodNumber;
|
127
128
|
extensionName: z.ZodString;
|
128
129
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -134,6 +135,7 @@ export declare const commentContract: {
|
|
134
135
|
userId: string | null;
|
135
136
|
sipServerUrl: string;
|
136
137
|
sipUserName: string;
|
138
|
+
webphoneLoginUser: string;
|
137
139
|
extensionId: number;
|
138
140
|
extensionName: string;
|
139
141
|
telephonySignature: string | null;
|
@@ -145,10 +147,11 @@ export declare const commentContract: {
|
|
145
147
|
userId: string | null;
|
146
148
|
sipServerUrl: string;
|
147
149
|
sipUserName: string;
|
150
|
+
webphoneLoginUser: string;
|
148
151
|
extensionId: number;
|
149
152
|
extensionName: string;
|
150
153
|
telephonySignature: string | null;
|
151
|
-
}
|
154
|
+
}>;
|
152
155
|
}, "strip", z.ZodTypeAny, {
|
153
156
|
id: string;
|
154
157
|
address: string | null;
|
@@ -179,7 +182,7 @@ export declare const commentContract: {
|
|
179
182
|
displayName: string;
|
180
183
|
}[];
|
181
184
|
}[];
|
182
|
-
extension
|
185
|
+
extension: {
|
183
186
|
id: string;
|
184
187
|
createdAt: Date;
|
185
188
|
updatedAt: Date;
|
@@ -187,10 +190,11 @@ export declare const commentContract: {
|
|
187
190
|
userId: string | null;
|
188
191
|
sipServerUrl: string;
|
189
192
|
sipUserName: string;
|
193
|
+
webphoneLoginUser: string;
|
190
194
|
extensionId: number;
|
191
195
|
extensionName: string;
|
192
196
|
telephonySignature: string | null;
|
193
|
-
}
|
197
|
+
};
|
194
198
|
}, {
|
195
199
|
id: string;
|
196
200
|
address: string | null;
|
@@ -221,7 +225,7 @@ export declare const commentContract: {
|
|
221
225
|
displayName: string;
|
222
226
|
}[];
|
223
227
|
}[];
|
224
|
-
extension
|
228
|
+
extension: {
|
225
229
|
id: string;
|
226
230
|
createdAt: Date;
|
227
231
|
updatedAt: Date;
|
@@ -229,10 +233,11 @@ export declare const commentContract: {
|
|
229
233
|
userId: string | null;
|
230
234
|
sipServerUrl: string;
|
231
235
|
sipUserName: string;
|
236
|
+
webphoneLoginUser: string;
|
232
237
|
extensionId: number;
|
233
238
|
extensionName: string;
|
234
239
|
telephonySignature: string | null;
|
235
|
-
}
|
240
|
+
};
|
236
241
|
}>;
|
237
242
|
entityId: z.ZodString;
|
238
243
|
description: z.ZodString;
|
@@ -294,7 +299,7 @@ export declare const commentContract: {
|
|
294
299
|
displayName: string;
|
295
300
|
}[];
|
296
301
|
}[];
|
297
|
-
extension
|
302
|
+
extension: {
|
298
303
|
id: string;
|
299
304
|
createdAt: Date;
|
300
305
|
updatedAt: Date;
|
@@ -302,10 +307,11 @@ export declare const commentContract: {
|
|
302
307
|
userId: string | null;
|
303
308
|
sipServerUrl: string;
|
304
309
|
sipUserName: string;
|
310
|
+
webphoneLoginUser: string;
|
305
311
|
extensionId: number;
|
306
312
|
extensionName: string;
|
307
313
|
telephonySignature: string | null;
|
308
|
-
}
|
314
|
+
};
|
309
315
|
};
|
310
316
|
entityId: string;
|
311
317
|
entityType: {
|
@@ -352,7 +358,7 @@ export declare const commentContract: {
|
|
352
358
|
displayName: string;
|
353
359
|
}[];
|
354
360
|
}[];
|
355
|
-
extension
|
361
|
+
extension: {
|
356
362
|
id: string;
|
357
363
|
createdAt: Date;
|
358
364
|
updatedAt: Date;
|
@@ -360,10 +366,11 @@ export declare const commentContract: {
|
|
360
366
|
userId: string | null;
|
361
367
|
sipServerUrl: string;
|
362
368
|
sipUserName: string;
|
369
|
+
webphoneLoginUser: string;
|
363
370
|
extensionId: number;
|
364
371
|
extensionName: string;
|
365
372
|
telephonySignature: string | null;
|
366
|
-
}
|
373
|
+
};
|
367
374
|
};
|
368
375
|
entityId: string;
|
369
376
|
entityType: {
|
@@ -583,6 +590,125 @@ export declare const commentContract: {
|
|
583
590
|
fileUrl: string | null;
|
584
591
|
}[];
|
585
592
|
}>, "many">;
|
593
|
+
tags: z.ZodArray<z.ZodObject<{
|
594
|
+
id: z.ZodString;
|
595
|
+
createdAt: z.ZodDate;
|
596
|
+
updatedAt: z.ZodDate;
|
597
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
598
|
+
name: z.ZodString;
|
599
|
+
}, "strip", z.ZodTypeAny, {
|
600
|
+
id: string;
|
601
|
+
name: string;
|
602
|
+
createdAt: Date;
|
603
|
+
updatedAt: Date;
|
604
|
+
deletedAt: Date | null;
|
605
|
+
}, {
|
606
|
+
id: string;
|
607
|
+
name: string;
|
608
|
+
createdAt: Date;
|
609
|
+
updatedAt: Date;
|
610
|
+
deletedAt: Date | null;
|
611
|
+
}>, "many">;
|
612
|
+
categories: z.ZodArray<z.ZodObject<{
|
613
|
+
id: z.ZodString;
|
614
|
+
createdAt: z.ZodDate;
|
615
|
+
updatedAt: z.ZodDate;
|
616
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
617
|
+
value: z.ZodString;
|
618
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
619
|
+
parentId: z.ZodNullable<z.ZodString>;
|
620
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
621
|
+
id: z.ZodString;
|
622
|
+
value: z.ZodString;
|
623
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
624
|
+
parentId: z.ZodNullable<z.ZodString>;
|
625
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
626
|
+
id: z.ZodString;
|
627
|
+
value: z.ZodString;
|
628
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
629
|
+
parentId: z.ZodNullable<z.ZodString>;
|
630
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
631
|
+
}, "strip", z.ZodTypeAny, {
|
632
|
+
id: string;
|
633
|
+
value: string;
|
634
|
+
level: 2 | 1 | 3;
|
635
|
+
parentId: string | null;
|
636
|
+
childCategoryList: any[];
|
637
|
+
}, {
|
638
|
+
id: string;
|
639
|
+
value: string;
|
640
|
+
level: 2 | 1 | 3;
|
641
|
+
parentId: string | null;
|
642
|
+
childCategoryList: any[];
|
643
|
+
}>, "many">;
|
644
|
+
}, "strip", z.ZodTypeAny, {
|
645
|
+
id: string;
|
646
|
+
value: string;
|
647
|
+
level: 2 | 1 | 3;
|
648
|
+
parentId: string | null;
|
649
|
+
childCategoryList: {
|
650
|
+
id: string;
|
651
|
+
value: string;
|
652
|
+
level: 2 | 1 | 3;
|
653
|
+
parentId: string | null;
|
654
|
+
childCategoryList: any[];
|
655
|
+
}[];
|
656
|
+
}, {
|
657
|
+
id: string;
|
658
|
+
value: string;
|
659
|
+
level: 2 | 1 | 3;
|
660
|
+
parentId: string | null;
|
661
|
+
childCategoryList: {
|
662
|
+
id: string;
|
663
|
+
value: string;
|
664
|
+
level: 2 | 1 | 3;
|
665
|
+
parentId: string | null;
|
666
|
+
childCategoryList: any[];
|
667
|
+
}[];
|
668
|
+
}>, "many">;
|
669
|
+
}, "strip", z.ZodTypeAny, {
|
670
|
+
id: string;
|
671
|
+
value: string;
|
672
|
+
createdAt: Date;
|
673
|
+
updatedAt: Date;
|
674
|
+
deletedAt: Date | null;
|
675
|
+
level: 2 | 1 | 3;
|
676
|
+
parentId: string | null;
|
677
|
+
childCategoryList: {
|
678
|
+
id: string;
|
679
|
+
value: string;
|
680
|
+
level: 2 | 1 | 3;
|
681
|
+
parentId: string | null;
|
682
|
+
childCategoryList: {
|
683
|
+
id: string;
|
684
|
+
value: string;
|
685
|
+
level: 2 | 1 | 3;
|
686
|
+
parentId: string | null;
|
687
|
+
childCategoryList: any[];
|
688
|
+
}[];
|
689
|
+
}[];
|
690
|
+
}, {
|
691
|
+
id: string;
|
692
|
+
value: string;
|
693
|
+
createdAt: Date;
|
694
|
+
updatedAt: Date;
|
695
|
+
deletedAt: Date | null;
|
696
|
+
level: 2 | 1 | 3;
|
697
|
+
parentId: string | null;
|
698
|
+
childCategoryList: {
|
699
|
+
id: string;
|
700
|
+
value: string;
|
701
|
+
level: 2 | 1 | 3;
|
702
|
+
parentId: string | null;
|
703
|
+
childCategoryList: {
|
704
|
+
id: string;
|
705
|
+
value: string;
|
706
|
+
level: 2 | 1 | 3;
|
707
|
+
parentId: string | null;
|
708
|
+
childCategoryList: any[];
|
709
|
+
}[];
|
710
|
+
}[];
|
711
|
+
}>, "many">;
|
586
712
|
}, "strip", z.ZodTypeAny, {
|
587
713
|
type: string;
|
588
714
|
id: string;
|
@@ -594,6 +720,28 @@ export declare const commentContract: {
|
|
594
720
|
createdAt: Date;
|
595
721
|
updatedAt: Date;
|
596
722
|
deletedAt: Date | null;
|
723
|
+
categories: {
|
724
|
+
id: string;
|
725
|
+
value: string;
|
726
|
+
createdAt: Date;
|
727
|
+
updatedAt: Date;
|
728
|
+
deletedAt: Date | null;
|
729
|
+
level: 2 | 1 | 3;
|
730
|
+
parentId: string | null;
|
731
|
+
childCategoryList: {
|
732
|
+
id: string;
|
733
|
+
value: string;
|
734
|
+
level: 2 | 1 | 3;
|
735
|
+
parentId: string | null;
|
736
|
+
childCategoryList: {
|
737
|
+
id: string;
|
738
|
+
value: string;
|
739
|
+
level: 2 | 1 | 3;
|
740
|
+
parentId: string | null;
|
741
|
+
childCategoryList: any[];
|
742
|
+
}[];
|
743
|
+
}[];
|
744
|
+
}[];
|
597
745
|
customFields: {
|
598
746
|
id: string;
|
599
747
|
createdAt: Date;
|
@@ -629,6 +777,13 @@ export declare const commentContract: {
|
|
629
777
|
fileUrl: string | null;
|
630
778
|
}[];
|
631
779
|
}[];
|
780
|
+
tags: {
|
781
|
+
id: string;
|
782
|
+
name: string;
|
783
|
+
createdAt: Date;
|
784
|
+
updatedAt: Date;
|
785
|
+
deletedAt: Date | null;
|
786
|
+
}[];
|
632
787
|
contactId: string;
|
633
788
|
assigneeId: string;
|
634
789
|
creatorId: string;
|
@@ -645,6 +800,28 @@ export declare const commentContract: {
|
|
645
800
|
createdAt: Date;
|
646
801
|
updatedAt: Date;
|
647
802
|
deletedAt: Date | null;
|
803
|
+
categories: {
|
804
|
+
id: string;
|
805
|
+
value: string;
|
806
|
+
createdAt: Date;
|
807
|
+
updatedAt: Date;
|
808
|
+
deletedAt: Date | null;
|
809
|
+
level: 2 | 1 | 3;
|
810
|
+
parentId: string | null;
|
811
|
+
childCategoryList: {
|
812
|
+
id: string;
|
813
|
+
value: string;
|
814
|
+
level: 2 | 1 | 3;
|
815
|
+
parentId: string | null;
|
816
|
+
childCategoryList: {
|
817
|
+
id: string;
|
818
|
+
value: string;
|
819
|
+
level: 2 | 1 | 3;
|
820
|
+
parentId: string | null;
|
821
|
+
childCategoryList: any[];
|
822
|
+
}[];
|
823
|
+
}[];
|
824
|
+
}[];
|
648
825
|
customFields: {
|
649
826
|
id: string;
|
650
827
|
createdAt: Date;
|
@@ -680,6 +857,13 @@ export declare const commentContract: {
|
|
680
857
|
fileUrl: string | null;
|
681
858
|
}[];
|
682
859
|
}[];
|
860
|
+
tags: {
|
861
|
+
id: string;
|
862
|
+
name: string;
|
863
|
+
createdAt: Date;
|
864
|
+
updatedAt: Date;
|
865
|
+
deletedAt: Date | null;
|
866
|
+
}[];
|
683
867
|
contactId: string;
|
684
868
|
assigneeId: string;
|
685
869
|
creatorId: string;
|
@@ -766,7 +950,7 @@ export declare const commentContract: {
|
|
766
950
|
displayName: string;
|
767
951
|
}[];
|
768
952
|
}>, "many">;
|
769
|
-
extension: z.
|
953
|
+
extension: z.ZodObject<{
|
770
954
|
id: z.ZodString;
|
771
955
|
createdAt: z.ZodDate;
|
772
956
|
updatedAt: z.ZodDate;
|
@@ -774,6 +958,7 @@ export declare const commentContract: {
|
|
774
958
|
userId: z.ZodNullable<z.ZodString>;
|
775
959
|
sipServerUrl: z.ZodString;
|
776
960
|
sipUserName: z.ZodString;
|
961
|
+
webphoneLoginUser: z.ZodString;
|
777
962
|
extensionId: z.ZodNumber;
|
778
963
|
extensionName: z.ZodString;
|
779
964
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -785,6 +970,7 @@ export declare const commentContract: {
|
|
785
970
|
userId: string | null;
|
786
971
|
sipServerUrl: string;
|
787
972
|
sipUserName: string;
|
973
|
+
webphoneLoginUser: string;
|
788
974
|
extensionId: number;
|
789
975
|
extensionName: string;
|
790
976
|
telephonySignature: string | null;
|
@@ -796,10 +982,11 @@ export declare const commentContract: {
|
|
796
982
|
userId: string | null;
|
797
983
|
sipServerUrl: string;
|
798
984
|
sipUserName: string;
|
985
|
+
webphoneLoginUser: string;
|
799
986
|
extensionId: number;
|
800
987
|
extensionName: string;
|
801
988
|
telephonySignature: string | null;
|
802
|
-
}
|
989
|
+
}>;
|
803
990
|
}, "strip", z.ZodTypeAny, {
|
804
991
|
id: string;
|
805
992
|
address: string | null;
|
@@ -830,7 +1017,7 @@ export declare const commentContract: {
|
|
830
1017
|
displayName: string;
|
831
1018
|
}[];
|
832
1019
|
}[];
|
833
|
-
extension
|
1020
|
+
extension: {
|
834
1021
|
id: string;
|
835
1022
|
createdAt: Date;
|
836
1023
|
updatedAt: Date;
|
@@ -838,10 +1025,11 @@ export declare const commentContract: {
|
|
838
1025
|
userId: string | null;
|
839
1026
|
sipServerUrl: string;
|
840
1027
|
sipUserName: string;
|
1028
|
+
webphoneLoginUser: string;
|
841
1029
|
extensionId: number;
|
842
1030
|
extensionName: string;
|
843
1031
|
telephonySignature: string | null;
|
844
|
-
}
|
1032
|
+
};
|
845
1033
|
}, {
|
846
1034
|
id: string;
|
847
1035
|
address: string | null;
|
@@ -872,7 +1060,7 @@ export declare const commentContract: {
|
|
872
1060
|
displayName: string;
|
873
1061
|
}[];
|
874
1062
|
}[];
|
875
|
-
extension
|
1063
|
+
extension: {
|
876
1064
|
id: string;
|
877
1065
|
createdAt: Date;
|
878
1066
|
updatedAt: Date;
|
@@ -880,10 +1068,11 @@ export declare const commentContract: {
|
|
880
1068
|
userId: string | null;
|
881
1069
|
sipServerUrl: string;
|
882
1070
|
sipUserName: string;
|
1071
|
+
webphoneLoginUser: string;
|
883
1072
|
extensionId: number;
|
884
1073
|
extensionName: string;
|
885
1074
|
telephonySignature: string | null;
|
886
|
-
}
|
1075
|
+
};
|
887
1076
|
}>;
|
888
1077
|
}, "strip", z.ZodTypeAny, {
|
889
1078
|
id: string;
|
@@ -926,7 +1115,7 @@ export declare const commentContract: {
|
|
926
1115
|
displayName: string;
|
927
1116
|
}[];
|
928
1117
|
}[];
|
929
|
-
extension
|
1118
|
+
extension: {
|
930
1119
|
id: string;
|
931
1120
|
createdAt: Date;
|
932
1121
|
updatedAt: Date;
|
@@ -934,10 +1123,11 @@ export declare const commentContract: {
|
|
934
1123
|
userId: string | null;
|
935
1124
|
sipServerUrl: string;
|
936
1125
|
sipUserName: string;
|
1126
|
+
webphoneLoginUser: string;
|
937
1127
|
extensionId: number;
|
938
1128
|
extensionName: string;
|
939
1129
|
telephonySignature: string | null;
|
940
|
-
}
|
1130
|
+
};
|
941
1131
|
};
|
942
1132
|
entityId: string;
|
943
1133
|
entityType: {
|
@@ -979,7 +1169,7 @@ export declare const commentContract: {
|
|
979
1169
|
displayName: string;
|
980
1170
|
}[];
|
981
1171
|
}[];
|
982
|
-
extension
|
1172
|
+
extension: {
|
983
1173
|
id: string;
|
984
1174
|
createdAt: Date;
|
985
1175
|
updatedAt: Date;
|
@@ -987,10 +1177,11 @@ export declare const commentContract: {
|
|
987
1177
|
userId: string | null;
|
988
1178
|
sipServerUrl: string;
|
989
1179
|
sipUserName: string;
|
1180
|
+
webphoneLoginUser: string;
|
990
1181
|
extensionId: number;
|
991
1182
|
extensionName: string;
|
992
1183
|
telephonySignature: string | null;
|
993
|
-
}
|
1184
|
+
};
|
994
1185
|
};
|
995
1186
|
ticket: {
|
996
1187
|
type: string;
|
@@ -1003,6 +1194,28 @@ export declare const commentContract: {
|
|
1003
1194
|
createdAt: Date;
|
1004
1195
|
updatedAt: Date;
|
1005
1196
|
deletedAt: Date | null;
|
1197
|
+
categories: {
|
1198
|
+
id: string;
|
1199
|
+
value: string;
|
1200
|
+
createdAt: Date;
|
1201
|
+
updatedAt: Date;
|
1202
|
+
deletedAt: Date | null;
|
1203
|
+
level: 2 | 1 | 3;
|
1204
|
+
parentId: string | null;
|
1205
|
+
childCategoryList: {
|
1206
|
+
id: string;
|
1207
|
+
value: string;
|
1208
|
+
level: 2 | 1 | 3;
|
1209
|
+
parentId: string | null;
|
1210
|
+
childCategoryList: {
|
1211
|
+
id: string;
|
1212
|
+
value: string;
|
1213
|
+
level: 2 | 1 | 3;
|
1214
|
+
parentId: string | null;
|
1215
|
+
childCategoryList: any[];
|
1216
|
+
}[];
|
1217
|
+
}[];
|
1218
|
+
}[];
|
1006
1219
|
customFields: {
|
1007
1220
|
id: string;
|
1008
1221
|
createdAt: Date;
|
@@ -1038,6 +1251,13 @@ export declare const commentContract: {
|
|
1038
1251
|
fileUrl: string | null;
|
1039
1252
|
}[];
|
1040
1253
|
}[];
|
1254
|
+
tags: {
|
1255
|
+
id: string;
|
1256
|
+
name: string;
|
1257
|
+
createdAt: Date;
|
1258
|
+
updatedAt: Date;
|
1259
|
+
deletedAt: Date | null;
|
1260
|
+
}[];
|
1041
1261
|
contactId: string;
|
1042
1262
|
assigneeId: string;
|
1043
1263
|
creatorId: string;
|
@@ -1087,7 +1307,7 @@ export declare const commentContract: {
|
|
1087
1307
|
displayName: string;
|
1088
1308
|
}[];
|
1089
1309
|
}[];
|
1090
|
-
extension
|
1310
|
+
extension: {
|
1091
1311
|
id: string;
|
1092
1312
|
createdAt: Date;
|
1093
1313
|
updatedAt: Date;
|
@@ -1095,10 +1315,11 @@ export declare const commentContract: {
|
|
1095
1315
|
userId: string | null;
|
1096
1316
|
sipServerUrl: string;
|
1097
1317
|
sipUserName: string;
|
1318
|
+
webphoneLoginUser: string;
|
1098
1319
|
extensionId: number;
|
1099
1320
|
extensionName: string;
|
1100
1321
|
telephonySignature: string | null;
|
1101
|
-
}
|
1322
|
+
};
|
1102
1323
|
};
|
1103
1324
|
entityId: string;
|
1104
1325
|
entityType: {
|
@@ -1140,7 +1361,7 @@ export declare const commentContract: {
|
|
1140
1361
|
displayName: string;
|
1141
1362
|
}[];
|
1142
1363
|
}[];
|
1143
|
-
extension
|
1364
|
+
extension: {
|
1144
1365
|
id: string;
|
1145
1366
|
createdAt: Date;
|
1146
1367
|
updatedAt: Date;
|
@@ -1148,10 +1369,11 @@ export declare const commentContract: {
|
|
1148
1369
|
userId: string | null;
|
1149
1370
|
sipServerUrl: string;
|
1150
1371
|
sipUserName: string;
|
1372
|
+
webphoneLoginUser: string;
|
1151
1373
|
extensionId: number;
|
1152
1374
|
extensionName: string;
|
1153
1375
|
telephonySignature: string | null;
|
1154
|
-
}
|
1376
|
+
};
|
1155
1377
|
};
|
1156
1378
|
ticket: {
|
1157
1379
|
type: string;
|
@@ -1164,6 +1386,28 @@ export declare const commentContract: {
|
|
1164
1386
|
createdAt: Date;
|
1165
1387
|
updatedAt: Date;
|
1166
1388
|
deletedAt: Date | null;
|
1389
|
+
categories: {
|
1390
|
+
id: string;
|
1391
|
+
value: string;
|
1392
|
+
createdAt: Date;
|
1393
|
+
updatedAt: Date;
|
1394
|
+
deletedAt: Date | null;
|
1395
|
+
level: 2 | 1 | 3;
|
1396
|
+
parentId: string | null;
|
1397
|
+
childCategoryList: {
|
1398
|
+
id: string;
|
1399
|
+
value: string;
|
1400
|
+
level: 2 | 1 | 3;
|
1401
|
+
parentId: string | null;
|
1402
|
+
childCategoryList: {
|
1403
|
+
id: string;
|
1404
|
+
value: string;
|
1405
|
+
level: 2 | 1 | 3;
|
1406
|
+
parentId: string | null;
|
1407
|
+
childCategoryList: any[];
|
1408
|
+
}[];
|
1409
|
+
}[];
|
1410
|
+
}[];
|
1167
1411
|
customFields: {
|
1168
1412
|
id: string;
|
1169
1413
|
createdAt: Date;
|
@@ -1199,6 +1443,13 @@ export declare const commentContract: {
|
|
1199
1443
|
fileUrl: string | null;
|
1200
1444
|
}[];
|
1201
1445
|
}[];
|
1446
|
+
tags: {
|
1447
|
+
id: string;
|
1448
|
+
name: string;
|
1449
|
+
createdAt: Date;
|
1450
|
+
updatedAt: Date;
|
1451
|
+
deletedAt: Date | null;
|
1452
|
+
}[];
|
1202
1453
|
contactId: string;
|
1203
1454
|
assigneeId: string;
|
1204
1455
|
creatorId: string;
|
@@ -1251,7 +1502,7 @@ export declare const commentContract: {
|
|
1251
1502
|
displayName: string;
|
1252
1503
|
}[];
|
1253
1504
|
}[];
|
1254
|
-
extension
|
1505
|
+
extension: {
|
1255
1506
|
id: string;
|
1256
1507
|
createdAt: Date;
|
1257
1508
|
updatedAt: Date;
|
@@ -1259,10 +1510,11 @@ export declare const commentContract: {
|
|
1259
1510
|
userId: string | null;
|
1260
1511
|
sipServerUrl: string;
|
1261
1512
|
sipUserName: string;
|
1513
|
+
webphoneLoginUser: string;
|
1262
1514
|
extensionId: number;
|
1263
1515
|
extensionName: string;
|
1264
1516
|
telephonySignature: string | null;
|
1265
|
-
}
|
1517
|
+
};
|
1266
1518
|
};
|
1267
1519
|
entityId: string;
|
1268
1520
|
entityType: {
|
@@ -1304,7 +1556,7 @@ export declare const commentContract: {
|
|
1304
1556
|
displayName: string;
|
1305
1557
|
}[];
|
1306
1558
|
}[];
|
1307
|
-
extension
|
1559
|
+
extension: {
|
1308
1560
|
id: string;
|
1309
1561
|
createdAt: Date;
|
1310
1562
|
updatedAt: Date;
|
@@ -1312,10 +1564,11 @@ export declare const commentContract: {
|
|
1312
1564
|
userId: string | null;
|
1313
1565
|
sipServerUrl: string;
|
1314
1566
|
sipUserName: string;
|
1567
|
+
webphoneLoginUser: string;
|
1315
1568
|
extensionId: number;
|
1316
1569
|
extensionName: string;
|
1317
1570
|
telephonySignature: string | null;
|
1318
|
-
}
|
1571
|
+
};
|
1319
1572
|
};
|
1320
1573
|
ticket: {
|
1321
1574
|
type: string;
|
@@ -1328,6 +1581,28 @@ export declare const commentContract: {
|
|
1328
1581
|
createdAt: Date;
|
1329
1582
|
updatedAt: Date;
|
1330
1583
|
deletedAt: Date | null;
|
1584
|
+
categories: {
|
1585
|
+
id: string;
|
1586
|
+
value: string;
|
1587
|
+
createdAt: Date;
|
1588
|
+
updatedAt: Date;
|
1589
|
+
deletedAt: Date | null;
|
1590
|
+
level: 2 | 1 | 3;
|
1591
|
+
parentId: string | null;
|
1592
|
+
childCategoryList: {
|
1593
|
+
id: string;
|
1594
|
+
value: string;
|
1595
|
+
level: 2 | 1 | 3;
|
1596
|
+
parentId: string | null;
|
1597
|
+
childCategoryList: {
|
1598
|
+
id: string;
|
1599
|
+
value: string;
|
1600
|
+
level: 2 | 1 | 3;
|
1601
|
+
parentId: string | null;
|
1602
|
+
childCategoryList: any[];
|
1603
|
+
}[];
|
1604
|
+
}[];
|
1605
|
+
}[];
|
1331
1606
|
customFields: {
|
1332
1607
|
id: string;
|
1333
1608
|
createdAt: Date;
|
@@ -1363,6 +1638,13 @@ export declare const commentContract: {
|
|
1363
1638
|
fileUrl: string | null;
|
1364
1639
|
}[];
|
1365
1640
|
}[];
|
1641
|
+
tags: {
|
1642
|
+
id: string;
|
1643
|
+
name: string;
|
1644
|
+
createdAt: Date;
|
1645
|
+
updatedAt: Date;
|
1646
|
+
deletedAt: Date | null;
|
1647
|
+
}[];
|
1366
1648
|
contactId: string;
|
1367
1649
|
assigneeId: string;
|
1368
1650
|
creatorId: string;
|
@@ -1415,7 +1697,7 @@ export declare const commentContract: {
|
|
1415
1697
|
displayName: string;
|
1416
1698
|
}[];
|
1417
1699
|
}[];
|
1418
|
-
extension
|
1700
|
+
extension: {
|
1419
1701
|
id: string;
|
1420
1702
|
createdAt: Date;
|
1421
1703
|
updatedAt: Date;
|
@@ -1423,10 +1705,11 @@ export declare const commentContract: {
|
|
1423
1705
|
userId: string | null;
|
1424
1706
|
sipServerUrl: string;
|
1425
1707
|
sipUserName: string;
|
1708
|
+
webphoneLoginUser: string;
|
1426
1709
|
extensionId: number;
|
1427
1710
|
extensionName: string;
|
1428
1711
|
telephonySignature: string | null;
|
1429
|
-
}
|
1712
|
+
};
|
1430
1713
|
};
|
1431
1714
|
entityId: string;
|
1432
1715
|
entityType: {
|
@@ -1468,7 +1751,7 @@ export declare const commentContract: {
|
|
1468
1751
|
displayName: string;
|
1469
1752
|
}[];
|
1470
1753
|
}[];
|
1471
|
-
extension
|
1754
|
+
extension: {
|
1472
1755
|
id: string;
|
1473
1756
|
createdAt: Date;
|
1474
1757
|
updatedAt: Date;
|
@@ -1476,10 +1759,11 @@ export declare const commentContract: {
|
|
1476
1759
|
userId: string | null;
|
1477
1760
|
sipServerUrl: string;
|
1478
1761
|
sipUserName: string;
|
1762
|
+
webphoneLoginUser: string;
|
1479
1763
|
extensionId: number;
|
1480
1764
|
extensionName: string;
|
1481
1765
|
telephonySignature: string | null;
|
1482
|
-
}
|
1766
|
+
};
|
1483
1767
|
};
|
1484
1768
|
ticket: {
|
1485
1769
|
type: string;
|
@@ -1492,6 +1776,28 @@ export declare const commentContract: {
|
|
1492
1776
|
createdAt: Date;
|
1493
1777
|
updatedAt: Date;
|
1494
1778
|
deletedAt: Date | null;
|
1779
|
+
categories: {
|
1780
|
+
id: string;
|
1781
|
+
value: string;
|
1782
|
+
createdAt: Date;
|
1783
|
+
updatedAt: Date;
|
1784
|
+
deletedAt: Date | null;
|
1785
|
+
level: 2 | 1 | 3;
|
1786
|
+
parentId: string | null;
|
1787
|
+
childCategoryList: {
|
1788
|
+
id: string;
|
1789
|
+
value: string;
|
1790
|
+
level: 2 | 1 | 3;
|
1791
|
+
parentId: string | null;
|
1792
|
+
childCategoryList: {
|
1793
|
+
id: string;
|
1794
|
+
value: string;
|
1795
|
+
level: 2 | 1 | 3;
|
1796
|
+
parentId: string | null;
|
1797
|
+
childCategoryList: any[];
|
1798
|
+
}[];
|
1799
|
+
}[];
|
1800
|
+
}[];
|
1495
1801
|
customFields: {
|
1496
1802
|
id: string;
|
1497
1803
|
createdAt: Date;
|
@@ -1527,6 +1833,13 @@ export declare const commentContract: {
|
|
1527
1833
|
fileUrl: string | null;
|
1528
1834
|
}[];
|
1529
1835
|
}[];
|
1836
|
+
tags: {
|
1837
|
+
id: string;
|
1838
|
+
name: string;
|
1839
|
+
createdAt: Date;
|
1840
|
+
updatedAt: Date;
|
1841
|
+
deletedAt: Date | null;
|
1842
|
+
}[];
|
1530
1843
|
contactId: string;
|
1531
1844
|
assigneeId: string;
|
1532
1845
|
creatorId: string;
|
@@ -1687,7 +2000,7 @@ export declare const commentContract: {
|
|
1687
2000
|
displayName: string;
|
1688
2001
|
}[];
|
1689
2002
|
}>, "many">;
|
1690
|
-
extension: z.
|
2003
|
+
extension: z.ZodObject<{
|
1691
2004
|
id: z.ZodString;
|
1692
2005
|
createdAt: z.ZodDate;
|
1693
2006
|
updatedAt: z.ZodDate;
|
@@ -1695,6 +2008,7 @@ export declare const commentContract: {
|
|
1695
2008
|
userId: z.ZodNullable<z.ZodString>;
|
1696
2009
|
sipServerUrl: z.ZodString;
|
1697
2010
|
sipUserName: z.ZodString;
|
2011
|
+
webphoneLoginUser: z.ZodString;
|
1698
2012
|
extensionId: z.ZodNumber;
|
1699
2013
|
extensionName: z.ZodString;
|
1700
2014
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1706,6 +2020,7 @@ export declare const commentContract: {
|
|
1706
2020
|
userId: string | null;
|
1707
2021
|
sipServerUrl: string;
|
1708
2022
|
sipUserName: string;
|
2023
|
+
webphoneLoginUser: string;
|
1709
2024
|
extensionId: number;
|
1710
2025
|
extensionName: string;
|
1711
2026
|
telephonySignature: string | null;
|
@@ -1717,10 +2032,11 @@ export declare const commentContract: {
|
|
1717
2032
|
userId: string | null;
|
1718
2033
|
sipServerUrl: string;
|
1719
2034
|
sipUserName: string;
|
2035
|
+
webphoneLoginUser: string;
|
1720
2036
|
extensionId: number;
|
1721
2037
|
extensionName: string;
|
1722
2038
|
telephonySignature: string | null;
|
1723
|
-
}
|
2039
|
+
}>;
|
1724
2040
|
}, "strip", z.ZodTypeAny, {
|
1725
2041
|
id: string;
|
1726
2042
|
address: string | null;
|
@@ -1751,7 +2067,7 @@ export declare const commentContract: {
|
|
1751
2067
|
displayName: string;
|
1752
2068
|
}[];
|
1753
2069
|
}[];
|
1754
|
-
extension
|
2070
|
+
extension: {
|
1755
2071
|
id: string;
|
1756
2072
|
createdAt: Date;
|
1757
2073
|
updatedAt: Date;
|
@@ -1759,10 +2075,11 @@ export declare const commentContract: {
|
|
1759
2075
|
userId: string | null;
|
1760
2076
|
sipServerUrl: string;
|
1761
2077
|
sipUserName: string;
|
2078
|
+
webphoneLoginUser: string;
|
1762
2079
|
extensionId: number;
|
1763
2080
|
extensionName: string;
|
1764
2081
|
telephonySignature: string | null;
|
1765
|
-
}
|
2082
|
+
};
|
1766
2083
|
}, {
|
1767
2084
|
id: string;
|
1768
2085
|
address: string | null;
|
@@ -1793,7 +2110,7 @@ export declare const commentContract: {
|
|
1793
2110
|
displayName: string;
|
1794
2111
|
}[];
|
1795
2112
|
}[];
|
1796
|
-
extension
|
2113
|
+
extension: {
|
1797
2114
|
id: string;
|
1798
2115
|
createdAt: Date;
|
1799
2116
|
updatedAt: Date;
|
@@ -1801,10 +2118,11 @@ export declare const commentContract: {
|
|
1801
2118
|
userId: string | null;
|
1802
2119
|
sipServerUrl: string;
|
1803
2120
|
sipUserName: string;
|
2121
|
+
webphoneLoginUser: string;
|
1804
2122
|
extensionId: number;
|
1805
2123
|
extensionName: string;
|
1806
2124
|
telephonySignature: string | null;
|
1807
|
-
}
|
2125
|
+
};
|
1808
2126
|
}>;
|
1809
2127
|
entityId: z.ZodString;
|
1810
2128
|
description: z.ZodString;
|
@@ -1866,7 +2184,7 @@ export declare const commentContract: {
|
|
1866
2184
|
displayName: string;
|
1867
2185
|
}[];
|
1868
2186
|
}[];
|
1869
|
-
extension
|
2187
|
+
extension: {
|
1870
2188
|
id: string;
|
1871
2189
|
createdAt: Date;
|
1872
2190
|
updatedAt: Date;
|
@@ -1874,10 +2192,11 @@ export declare const commentContract: {
|
|
1874
2192
|
userId: string | null;
|
1875
2193
|
sipServerUrl: string;
|
1876
2194
|
sipUserName: string;
|
2195
|
+
webphoneLoginUser: string;
|
1877
2196
|
extensionId: number;
|
1878
2197
|
extensionName: string;
|
1879
2198
|
telephonySignature: string | null;
|
1880
|
-
}
|
2199
|
+
};
|
1881
2200
|
};
|
1882
2201
|
entityId: string;
|
1883
2202
|
entityType: {
|
@@ -1924,7 +2243,7 @@ export declare const commentContract: {
|
|
1924
2243
|
displayName: string;
|
1925
2244
|
}[];
|
1926
2245
|
}[];
|
1927
|
-
extension
|
2246
|
+
extension: {
|
1928
2247
|
id: string;
|
1929
2248
|
createdAt: Date;
|
1930
2249
|
updatedAt: Date;
|
@@ -1932,10 +2251,11 @@ export declare const commentContract: {
|
|
1932
2251
|
userId: string | null;
|
1933
2252
|
sipServerUrl: string;
|
1934
2253
|
sipUserName: string;
|
2254
|
+
webphoneLoginUser: string;
|
1935
2255
|
extensionId: number;
|
1936
2256
|
extensionName: string;
|
1937
2257
|
telephonySignature: string | null;
|
1938
|
-
}
|
2258
|
+
};
|
1939
2259
|
};
|
1940
2260
|
entityId: string;
|
1941
2261
|
entityType: {
|
@@ -2155,6 +2475,125 @@ export declare const commentContract: {
|
|
2155
2475
|
fileUrl: string | null;
|
2156
2476
|
}[];
|
2157
2477
|
}>, "many">;
|
2478
|
+
tags: z.ZodArray<z.ZodObject<{
|
2479
|
+
id: z.ZodString;
|
2480
|
+
createdAt: z.ZodDate;
|
2481
|
+
updatedAt: z.ZodDate;
|
2482
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2483
|
+
name: z.ZodString;
|
2484
|
+
}, "strip", z.ZodTypeAny, {
|
2485
|
+
id: string;
|
2486
|
+
name: string;
|
2487
|
+
createdAt: Date;
|
2488
|
+
updatedAt: Date;
|
2489
|
+
deletedAt: Date | null;
|
2490
|
+
}, {
|
2491
|
+
id: string;
|
2492
|
+
name: string;
|
2493
|
+
createdAt: Date;
|
2494
|
+
updatedAt: Date;
|
2495
|
+
deletedAt: Date | null;
|
2496
|
+
}>, "many">;
|
2497
|
+
categories: z.ZodArray<z.ZodObject<{
|
2498
|
+
id: z.ZodString;
|
2499
|
+
createdAt: z.ZodDate;
|
2500
|
+
updatedAt: z.ZodDate;
|
2501
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2502
|
+
value: z.ZodString;
|
2503
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2504
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2505
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2506
|
+
id: z.ZodString;
|
2507
|
+
value: z.ZodString;
|
2508
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2509
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2510
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
2511
|
+
id: z.ZodString;
|
2512
|
+
value: z.ZodString;
|
2513
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
2514
|
+
parentId: z.ZodNullable<z.ZodString>;
|
2515
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
2516
|
+
}, "strip", z.ZodTypeAny, {
|
2517
|
+
id: string;
|
2518
|
+
value: string;
|
2519
|
+
level: 2 | 1 | 3;
|
2520
|
+
parentId: string | null;
|
2521
|
+
childCategoryList: any[];
|
2522
|
+
}, {
|
2523
|
+
id: string;
|
2524
|
+
value: string;
|
2525
|
+
level: 2 | 1 | 3;
|
2526
|
+
parentId: string | null;
|
2527
|
+
childCategoryList: any[];
|
2528
|
+
}>, "many">;
|
2529
|
+
}, "strip", z.ZodTypeAny, {
|
2530
|
+
id: string;
|
2531
|
+
value: string;
|
2532
|
+
level: 2 | 1 | 3;
|
2533
|
+
parentId: string | null;
|
2534
|
+
childCategoryList: {
|
2535
|
+
id: string;
|
2536
|
+
value: string;
|
2537
|
+
level: 2 | 1 | 3;
|
2538
|
+
parentId: string | null;
|
2539
|
+
childCategoryList: any[];
|
2540
|
+
}[];
|
2541
|
+
}, {
|
2542
|
+
id: string;
|
2543
|
+
value: string;
|
2544
|
+
level: 2 | 1 | 3;
|
2545
|
+
parentId: string | null;
|
2546
|
+
childCategoryList: {
|
2547
|
+
id: string;
|
2548
|
+
value: string;
|
2549
|
+
level: 2 | 1 | 3;
|
2550
|
+
parentId: string | null;
|
2551
|
+
childCategoryList: any[];
|
2552
|
+
}[];
|
2553
|
+
}>, "many">;
|
2554
|
+
}, "strip", z.ZodTypeAny, {
|
2555
|
+
id: string;
|
2556
|
+
value: string;
|
2557
|
+
createdAt: Date;
|
2558
|
+
updatedAt: Date;
|
2559
|
+
deletedAt: Date | null;
|
2560
|
+
level: 2 | 1 | 3;
|
2561
|
+
parentId: string | null;
|
2562
|
+
childCategoryList: {
|
2563
|
+
id: string;
|
2564
|
+
value: string;
|
2565
|
+
level: 2 | 1 | 3;
|
2566
|
+
parentId: string | null;
|
2567
|
+
childCategoryList: {
|
2568
|
+
id: string;
|
2569
|
+
value: string;
|
2570
|
+
level: 2 | 1 | 3;
|
2571
|
+
parentId: string | null;
|
2572
|
+
childCategoryList: any[];
|
2573
|
+
}[];
|
2574
|
+
}[];
|
2575
|
+
}, {
|
2576
|
+
id: string;
|
2577
|
+
value: string;
|
2578
|
+
createdAt: Date;
|
2579
|
+
updatedAt: Date;
|
2580
|
+
deletedAt: Date | null;
|
2581
|
+
level: 2 | 1 | 3;
|
2582
|
+
parentId: string | null;
|
2583
|
+
childCategoryList: {
|
2584
|
+
id: string;
|
2585
|
+
value: string;
|
2586
|
+
level: 2 | 1 | 3;
|
2587
|
+
parentId: string | null;
|
2588
|
+
childCategoryList: {
|
2589
|
+
id: string;
|
2590
|
+
value: string;
|
2591
|
+
level: 2 | 1 | 3;
|
2592
|
+
parentId: string | null;
|
2593
|
+
childCategoryList: any[];
|
2594
|
+
}[];
|
2595
|
+
}[];
|
2596
|
+
}>, "many">;
|
2158
2597
|
}, "strip", z.ZodTypeAny, {
|
2159
2598
|
type: string;
|
2160
2599
|
id: string;
|
@@ -2166,6 +2605,28 @@ export declare const commentContract: {
|
|
2166
2605
|
createdAt: Date;
|
2167
2606
|
updatedAt: Date;
|
2168
2607
|
deletedAt: Date | null;
|
2608
|
+
categories: {
|
2609
|
+
id: string;
|
2610
|
+
value: string;
|
2611
|
+
createdAt: Date;
|
2612
|
+
updatedAt: Date;
|
2613
|
+
deletedAt: Date | null;
|
2614
|
+
level: 2 | 1 | 3;
|
2615
|
+
parentId: string | null;
|
2616
|
+
childCategoryList: {
|
2617
|
+
id: string;
|
2618
|
+
value: string;
|
2619
|
+
level: 2 | 1 | 3;
|
2620
|
+
parentId: string | null;
|
2621
|
+
childCategoryList: {
|
2622
|
+
id: string;
|
2623
|
+
value: string;
|
2624
|
+
level: 2 | 1 | 3;
|
2625
|
+
parentId: string | null;
|
2626
|
+
childCategoryList: any[];
|
2627
|
+
}[];
|
2628
|
+
}[];
|
2629
|
+
}[];
|
2169
2630
|
customFields: {
|
2170
2631
|
id: string;
|
2171
2632
|
createdAt: Date;
|
@@ -2201,6 +2662,13 @@ export declare const commentContract: {
|
|
2201
2662
|
fileUrl: string | null;
|
2202
2663
|
}[];
|
2203
2664
|
}[];
|
2665
|
+
tags: {
|
2666
|
+
id: string;
|
2667
|
+
name: string;
|
2668
|
+
createdAt: Date;
|
2669
|
+
updatedAt: Date;
|
2670
|
+
deletedAt: Date | null;
|
2671
|
+
}[];
|
2204
2672
|
contactId: string;
|
2205
2673
|
assigneeId: string;
|
2206
2674
|
creatorId: string;
|
@@ -2217,6 +2685,28 @@ export declare const commentContract: {
|
|
2217
2685
|
createdAt: Date;
|
2218
2686
|
updatedAt: Date;
|
2219
2687
|
deletedAt: Date | null;
|
2688
|
+
categories: {
|
2689
|
+
id: string;
|
2690
|
+
value: string;
|
2691
|
+
createdAt: Date;
|
2692
|
+
updatedAt: Date;
|
2693
|
+
deletedAt: Date | null;
|
2694
|
+
level: 2 | 1 | 3;
|
2695
|
+
parentId: string | null;
|
2696
|
+
childCategoryList: {
|
2697
|
+
id: string;
|
2698
|
+
value: string;
|
2699
|
+
level: 2 | 1 | 3;
|
2700
|
+
parentId: string | null;
|
2701
|
+
childCategoryList: {
|
2702
|
+
id: string;
|
2703
|
+
value: string;
|
2704
|
+
level: 2 | 1 | 3;
|
2705
|
+
parentId: string | null;
|
2706
|
+
childCategoryList: any[];
|
2707
|
+
}[];
|
2708
|
+
}[];
|
2709
|
+
}[];
|
2220
2710
|
customFields: {
|
2221
2711
|
id: string;
|
2222
2712
|
createdAt: Date;
|
@@ -2252,6 +2742,13 @@ export declare const commentContract: {
|
|
2252
2742
|
fileUrl: string | null;
|
2253
2743
|
}[];
|
2254
2744
|
}[];
|
2745
|
+
tags: {
|
2746
|
+
id: string;
|
2747
|
+
name: string;
|
2748
|
+
createdAt: Date;
|
2749
|
+
updatedAt: Date;
|
2750
|
+
deletedAt: Date | null;
|
2751
|
+
}[];
|
2255
2752
|
contactId: string;
|
2256
2753
|
assigneeId: string;
|
2257
2754
|
creatorId: string;
|
@@ -2338,7 +2835,7 @@ export declare const commentContract: {
|
|
2338
2835
|
displayName: string;
|
2339
2836
|
}[];
|
2340
2837
|
}>, "many">;
|
2341
|
-
extension: z.
|
2838
|
+
extension: z.ZodObject<{
|
2342
2839
|
id: z.ZodString;
|
2343
2840
|
createdAt: z.ZodDate;
|
2344
2841
|
updatedAt: z.ZodDate;
|
@@ -2346,6 +2843,7 @@ export declare const commentContract: {
|
|
2346
2843
|
userId: z.ZodNullable<z.ZodString>;
|
2347
2844
|
sipServerUrl: z.ZodString;
|
2348
2845
|
sipUserName: z.ZodString;
|
2846
|
+
webphoneLoginUser: z.ZodString;
|
2349
2847
|
extensionId: z.ZodNumber;
|
2350
2848
|
extensionName: z.ZodString;
|
2351
2849
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2357,6 +2855,7 @@ export declare const commentContract: {
|
|
2357
2855
|
userId: string | null;
|
2358
2856
|
sipServerUrl: string;
|
2359
2857
|
sipUserName: string;
|
2858
|
+
webphoneLoginUser: string;
|
2360
2859
|
extensionId: number;
|
2361
2860
|
extensionName: string;
|
2362
2861
|
telephonySignature: string | null;
|
@@ -2368,10 +2867,11 @@ export declare const commentContract: {
|
|
2368
2867
|
userId: string | null;
|
2369
2868
|
sipServerUrl: string;
|
2370
2869
|
sipUserName: string;
|
2870
|
+
webphoneLoginUser: string;
|
2371
2871
|
extensionId: number;
|
2372
2872
|
extensionName: string;
|
2373
2873
|
telephonySignature: string | null;
|
2374
|
-
}
|
2874
|
+
}>;
|
2375
2875
|
}, "strip", z.ZodTypeAny, {
|
2376
2876
|
id: string;
|
2377
2877
|
address: string | null;
|
@@ -2402,7 +2902,7 @@ export declare const commentContract: {
|
|
2402
2902
|
displayName: string;
|
2403
2903
|
}[];
|
2404
2904
|
}[];
|
2405
|
-
extension
|
2905
|
+
extension: {
|
2406
2906
|
id: string;
|
2407
2907
|
createdAt: Date;
|
2408
2908
|
updatedAt: Date;
|
@@ -2410,10 +2910,11 @@ export declare const commentContract: {
|
|
2410
2910
|
userId: string | null;
|
2411
2911
|
sipServerUrl: string;
|
2412
2912
|
sipUserName: string;
|
2913
|
+
webphoneLoginUser: string;
|
2413
2914
|
extensionId: number;
|
2414
2915
|
extensionName: string;
|
2415
2916
|
telephonySignature: string | null;
|
2416
|
-
}
|
2917
|
+
};
|
2417
2918
|
}, {
|
2418
2919
|
id: string;
|
2419
2920
|
address: string | null;
|
@@ -2444,7 +2945,7 @@ export declare const commentContract: {
|
|
2444
2945
|
displayName: string;
|
2445
2946
|
}[];
|
2446
2947
|
}[];
|
2447
|
-
extension
|
2948
|
+
extension: {
|
2448
2949
|
id: string;
|
2449
2950
|
createdAt: Date;
|
2450
2951
|
updatedAt: Date;
|
@@ -2452,10 +2953,11 @@ export declare const commentContract: {
|
|
2452
2953
|
userId: string | null;
|
2453
2954
|
sipServerUrl: string;
|
2454
2955
|
sipUserName: string;
|
2956
|
+
webphoneLoginUser: string;
|
2455
2957
|
extensionId: number;
|
2456
2958
|
extensionName: string;
|
2457
2959
|
telephonySignature: string | null;
|
2458
|
-
}
|
2960
|
+
};
|
2459
2961
|
}>;
|
2460
2962
|
}, "strip", z.ZodTypeAny, {
|
2461
2963
|
id: string;
|
@@ -2498,7 +3000,7 @@ export declare const commentContract: {
|
|
2498
3000
|
displayName: string;
|
2499
3001
|
}[];
|
2500
3002
|
}[];
|
2501
|
-
extension
|
3003
|
+
extension: {
|
2502
3004
|
id: string;
|
2503
3005
|
createdAt: Date;
|
2504
3006
|
updatedAt: Date;
|
@@ -2506,10 +3008,11 @@ export declare const commentContract: {
|
|
2506
3008
|
userId: string | null;
|
2507
3009
|
sipServerUrl: string;
|
2508
3010
|
sipUserName: string;
|
3011
|
+
webphoneLoginUser: string;
|
2509
3012
|
extensionId: number;
|
2510
3013
|
extensionName: string;
|
2511
3014
|
telephonySignature: string | null;
|
2512
|
-
}
|
3015
|
+
};
|
2513
3016
|
};
|
2514
3017
|
entityId: string;
|
2515
3018
|
entityType: {
|
@@ -2551,7 +3054,7 @@ export declare const commentContract: {
|
|
2551
3054
|
displayName: string;
|
2552
3055
|
}[];
|
2553
3056
|
}[];
|
2554
|
-
extension
|
3057
|
+
extension: {
|
2555
3058
|
id: string;
|
2556
3059
|
createdAt: Date;
|
2557
3060
|
updatedAt: Date;
|
@@ -2559,10 +3062,11 @@ export declare const commentContract: {
|
|
2559
3062
|
userId: string | null;
|
2560
3063
|
sipServerUrl: string;
|
2561
3064
|
sipUserName: string;
|
3065
|
+
webphoneLoginUser: string;
|
2562
3066
|
extensionId: number;
|
2563
3067
|
extensionName: string;
|
2564
3068
|
telephonySignature: string | null;
|
2565
|
-
}
|
3069
|
+
};
|
2566
3070
|
};
|
2567
3071
|
ticket: {
|
2568
3072
|
type: string;
|
@@ -2575,6 +3079,28 @@ export declare const commentContract: {
|
|
2575
3079
|
createdAt: Date;
|
2576
3080
|
updatedAt: Date;
|
2577
3081
|
deletedAt: Date | null;
|
3082
|
+
categories: {
|
3083
|
+
id: string;
|
3084
|
+
value: string;
|
3085
|
+
createdAt: Date;
|
3086
|
+
updatedAt: Date;
|
3087
|
+
deletedAt: Date | null;
|
3088
|
+
level: 2 | 1 | 3;
|
3089
|
+
parentId: string | null;
|
3090
|
+
childCategoryList: {
|
3091
|
+
id: string;
|
3092
|
+
value: string;
|
3093
|
+
level: 2 | 1 | 3;
|
3094
|
+
parentId: string | null;
|
3095
|
+
childCategoryList: {
|
3096
|
+
id: string;
|
3097
|
+
value: string;
|
3098
|
+
level: 2 | 1 | 3;
|
3099
|
+
parentId: string | null;
|
3100
|
+
childCategoryList: any[];
|
3101
|
+
}[];
|
3102
|
+
}[];
|
3103
|
+
}[];
|
2578
3104
|
customFields: {
|
2579
3105
|
id: string;
|
2580
3106
|
createdAt: Date;
|
@@ -2610,6 +3136,13 @@ export declare const commentContract: {
|
|
2610
3136
|
fileUrl: string | null;
|
2611
3137
|
}[];
|
2612
3138
|
}[];
|
3139
|
+
tags: {
|
3140
|
+
id: string;
|
3141
|
+
name: string;
|
3142
|
+
createdAt: Date;
|
3143
|
+
updatedAt: Date;
|
3144
|
+
deletedAt: Date | null;
|
3145
|
+
}[];
|
2613
3146
|
contactId: string;
|
2614
3147
|
assigneeId: string;
|
2615
3148
|
creatorId: string;
|
@@ -2659,7 +3192,7 @@ export declare const commentContract: {
|
|
2659
3192
|
displayName: string;
|
2660
3193
|
}[];
|
2661
3194
|
}[];
|
2662
|
-
extension
|
3195
|
+
extension: {
|
2663
3196
|
id: string;
|
2664
3197
|
createdAt: Date;
|
2665
3198
|
updatedAt: Date;
|
@@ -2667,10 +3200,11 @@ export declare const commentContract: {
|
|
2667
3200
|
userId: string | null;
|
2668
3201
|
sipServerUrl: string;
|
2669
3202
|
sipUserName: string;
|
3203
|
+
webphoneLoginUser: string;
|
2670
3204
|
extensionId: number;
|
2671
3205
|
extensionName: string;
|
2672
3206
|
telephonySignature: string | null;
|
2673
|
-
}
|
3207
|
+
};
|
2674
3208
|
};
|
2675
3209
|
entityId: string;
|
2676
3210
|
entityType: {
|
@@ -2712,7 +3246,7 @@ export declare const commentContract: {
|
|
2712
3246
|
displayName: string;
|
2713
3247
|
}[];
|
2714
3248
|
}[];
|
2715
|
-
extension
|
3249
|
+
extension: {
|
2716
3250
|
id: string;
|
2717
3251
|
createdAt: Date;
|
2718
3252
|
updatedAt: Date;
|
@@ -2720,10 +3254,11 @@ export declare const commentContract: {
|
|
2720
3254
|
userId: string | null;
|
2721
3255
|
sipServerUrl: string;
|
2722
3256
|
sipUserName: string;
|
3257
|
+
webphoneLoginUser: string;
|
2723
3258
|
extensionId: number;
|
2724
3259
|
extensionName: string;
|
2725
3260
|
telephonySignature: string | null;
|
2726
|
-
}
|
3261
|
+
};
|
2727
3262
|
};
|
2728
3263
|
ticket: {
|
2729
3264
|
type: string;
|
@@ -2736,6 +3271,28 @@ export declare const commentContract: {
|
|
2736
3271
|
createdAt: Date;
|
2737
3272
|
updatedAt: Date;
|
2738
3273
|
deletedAt: Date | null;
|
3274
|
+
categories: {
|
3275
|
+
id: string;
|
3276
|
+
value: string;
|
3277
|
+
createdAt: Date;
|
3278
|
+
updatedAt: Date;
|
3279
|
+
deletedAt: Date | null;
|
3280
|
+
level: 2 | 1 | 3;
|
3281
|
+
parentId: string | null;
|
3282
|
+
childCategoryList: {
|
3283
|
+
id: string;
|
3284
|
+
value: string;
|
3285
|
+
level: 2 | 1 | 3;
|
3286
|
+
parentId: string | null;
|
3287
|
+
childCategoryList: {
|
3288
|
+
id: string;
|
3289
|
+
value: string;
|
3290
|
+
level: 2 | 1 | 3;
|
3291
|
+
parentId: string | null;
|
3292
|
+
childCategoryList: any[];
|
3293
|
+
}[];
|
3294
|
+
}[];
|
3295
|
+
}[];
|
2739
3296
|
customFields: {
|
2740
3297
|
id: string;
|
2741
3298
|
createdAt: Date;
|
@@ -2771,6 +3328,13 @@ export declare const commentContract: {
|
|
2771
3328
|
fileUrl: string | null;
|
2772
3329
|
}[];
|
2773
3330
|
}[];
|
3331
|
+
tags: {
|
3332
|
+
id: string;
|
3333
|
+
name: string;
|
3334
|
+
createdAt: Date;
|
3335
|
+
updatedAt: Date;
|
3336
|
+
deletedAt: Date | null;
|
3337
|
+
}[];
|
2774
3338
|
contactId: string;
|
2775
3339
|
assigneeId: string;
|
2776
3340
|
creatorId: string;
|
@@ -2942,7 +3506,7 @@ export declare const commentContract: {
|
|
2942
3506
|
displayName: string;
|
2943
3507
|
}[];
|
2944
3508
|
}>, "many">;
|
2945
|
-
extension: z.
|
3509
|
+
extension: z.ZodObject<{
|
2946
3510
|
id: z.ZodString;
|
2947
3511
|
createdAt: z.ZodDate;
|
2948
3512
|
updatedAt: z.ZodDate;
|
@@ -2950,6 +3514,7 @@ export declare const commentContract: {
|
|
2950
3514
|
userId: z.ZodNullable<z.ZodString>;
|
2951
3515
|
sipServerUrl: z.ZodString;
|
2952
3516
|
sipUserName: z.ZodString;
|
3517
|
+
webphoneLoginUser: z.ZodString;
|
2953
3518
|
extensionId: z.ZodNumber;
|
2954
3519
|
extensionName: z.ZodString;
|
2955
3520
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -2961,6 +3526,7 @@ export declare const commentContract: {
|
|
2961
3526
|
userId: string | null;
|
2962
3527
|
sipServerUrl: string;
|
2963
3528
|
sipUserName: string;
|
3529
|
+
webphoneLoginUser: string;
|
2964
3530
|
extensionId: number;
|
2965
3531
|
extensionName: string;
|
2966
3532
|
telephonySignature: string | null;
|
@@ -2972,10 +3538,11 @@ export declare const commentContract: {
|
|
2972
3538
|
userId: string | null;
|
2973
3539
|
sipServerUrl: string;
|
2974
3540
|
sipUserName: string;
|
3541
|
+
webphoneLoginUser: string;
|
2975
3542
|
extensionId: number;
|
2976
3543
|
extensionName: string;
|
2977
3544
|
telephonySignature: string | null;
|
2978
|
-
}
|
3545
|
+
}>;
|
2979
3546
|
}, "strip", z.ZodTypeAny, {
|
2980
3547
|
id: string;
|
2981
3548
|
address: string | null;
|
@@ -3006,7 +3573,7 @@ export declare const commentContract: {
|
|
3006
3573
|
displayName: string;
|
3007
3574
|
}[];
|
3008
3575
|
}[];
|
3009
|
-
extension
|
3576
|
+
extension: {
|
3010
3577
|
id: string;
|
3011
3578
|
createdAt: Date;
|
3012
3579
|
updatedAt: Date;
|
@@ -3014,10 +3581,11 @@ export declare const commentContract: {
|
|
3014
3581
|
userId: string | null;
|
3015
3582
|
sipServerUrl: string;
|
3016
3583
|
sipUserName: string;
|
3584
|
+
webphoneLoginUser: string;
|
3017
3585
|
extensionId: number;
|
3018
3586
|
extensionName: string;
|
3019
3587
|
telephonySignature: string | null;
|
3020
|
-
}
|
3588
|
+
};
|
3021
3589
|
}, {
|
3022
3590
|
id: string;
|
3023
3591
|
address: string | null;
|
@@ -3048,7 +3616,7 @@ export declare const commentContract: {
|
|
3048
3616
|
displayName: string;
|
3049
3617
|
}[];
|
3050
3618
|
}[];
|
3051
|
-
extension
|
3619
|
+
extension: {
|
3052
3620
|
id: string;
|
3053
3621
|
createdAt: Date;
|
3054
3622
|
updatedAt: Date;
|
@@ -3056,10 +3624,11 @@ export declare const commentContract: {
|
|
3056
3624
|
userId: string | null;
|
3057
3625
|
sipServerUrl: string;
|
3058
3626
|
sipUserName: string;
|
3627
|
+
webphoneLoginUser: string;
|
3059
3628
|
extensionId: number;
|
3060
3629
|
extensionName: string;
|
3061
3630
|
telephonySignature: string | null;
|
3062
|
-
}
|
3631
|
+
};
|
3063
3632
|
}>;
|
3064
3633
|
entityId: z.ZodString;
|
3065
3634
|
description: z.ZodString;
|
@@ -3121,7 +3690,7 @@ export declare const commentContract: {
|
|
3121
3690
|
displayName: string;
|
3122
3691
|
}[];
|
3123
3692
|
}[];
|
3124
|
-
extension
|
3693
|
+
extension: {
|
3125
3694
|
id: string;
|
3126
3695
|
createdAt: Date;
|
3127
3696
|
updatedAt: Date;
|
@@ -3129,10 +3698,11 @@ export declare const commentContract: {
|
|
3129
3698
|
userId: string | null;
|
3130
3699
|
sipServerUrl: string;
|
3131
3700
|
sipUserName: string;
|
3701
|
+
webphoneLoginUser: string;
|
3132
3702
|
extensionId: number;
|
3133
3703
|
extensionName: string;
|
3134
3704
|
telephonySignature: string | null;
|
3135
|
-
}
|
3705
|
+
};
|
3136
3706
|
};
|
3137
3707
|
entityId: string;
|
3138
3708
|
entityType: {
|
@@ -3179,7 +3749,7 @@ export declare const commentContract: {
|
|
3179
3749
|
displayName: string;
|
3180
3750
|
}[];
|
3181
3751
|
}[];
|
3182
|
-
extension
|
3752
|
+
extension: {
|
3183
3753
|
id: string;
|
3184
3754
|
createdAt: Date;
|
3185
3755
|
updatedAt: Date;
|
@@ -3187,10 +3757,11 @@ export declare const commentContract: {
|
|
3187
3757
|
userId: string | null;
|
3188
3758
|
sipServerUrl: string;
|
3189
3759
|
sipUserName: string;
|
3760
|
+
webphoneLoginUser: string;
|
3190
3761
|
extensionId: number;
|
3191
3762
|
extensionName: string;
|
3192
3763
|
telephonySignature: string | null;
|
3193
|
-
}
|
3764
|
+
};
|
3194
3765
|
};
|
3195
3766
|
entityId: string;
|
3196
3767
|
entityType: {
|
@@ -3410,6 +3981,125 @@ export declare const commentContract: {
|
|
3410
3981
|
fileUrl: string | null;
|
3411
3982
|
}[];
|
3412
3983
|
}>, "many">;
|
3984
|
+
tags: z.ZodArray<z.ZodObject<{
|
3985
|
+
id: z.ZodString;
|
3986
|
+
createdAt: z.ZodDate;
|
3987
|
+
updatedAt: z.ZodDate;
|
3988
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
3989
|
+
name: z.ZodString;
|
3990
|
+
}, "strip", z.ZodTypeAny, {
|
3991
|
+
id: string;
|
3992
|
+
name: string;
|
3993
|
+
createdAt: Date;
|
3994
|
+
updatedAt: Date;
|
3995
|
+
deletedAt: Date | null;
|
3996
|
+
}, {
|
3997
|
+
id: string;
|
3998
|
+
name: string;
|
3999
|
+
createdAt: Date;
|
4000
|
+
updatedAt: Date;
|
4001
|
+
deletedAt: Date | null;
|
4002
|
+
}>, "many">;
|
4003
|
+
categories: z.ZodArray<z.ZodObject<{
|
4004
|
+
id: z.ZodString;
|
4005
|
+
createdAt: z.ZodDate;
|
4006
|
+
updatedAt: z.ZodDate;
|
4007
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
4008
|
+
value: z.ZodString;
|
4009
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
4010
|
+
parentId: z.ZodNullable<z.ZodString>;
|
4011
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
4012
|
+
id: z.ZodString;
|
4013
|
+
value: z.ZodString;
|
4014
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
4015
|
+
parentId: z.ZodNullable<z.ZodString>;
|
4016
|
+
childCategoryList: z.ZodArray<z.ZodObject<{
|
4017
|
+
id: z.ZodString;
|
4018
|
+
value: z.ZodString;
|
4019
|
+
level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
|
4020
|
+
parentId: z.ZodNullable<z.ZodString>;
|
4021
|
+
childCategoryList: z.ZodArray<z.ZodAny, "many">;
|
4022
|
+
}, "strip", z.ZodTypeAny, {
|
4023
|
+
id: string;
|
4024
|
+
value: string;
|
4025
|
+
level: 2 | 1 | 3;
|
4026
|
+
parentId: string | null;
|
4027
|
+
childCategoryList: any[];
|
4028
|
+
}, {
|
4029
|
+
id: string;
|
4030
|
+
value: string;
|
4031
|
+
level: 2 | 1 | 3;
|
4032
|
+
parentId: string | null;
|
4033
|
+
childCategoryList: any[];
|
4034
|
+
}>, "many">;
|
4035
|
+
}, "strip", z.ZodTypeAny, {
|
4036
|
+
id: string;
|
4037
|
+
value: string;
|
4038
|
+
level: 2 | 1 | 3;
|
4039
|
+
parentId: string | null;
|
4040
|
+
childCategoryList: {
|
4041
|
+
id: string;
|
4042
|
+
value: string;
|
4043
|
+
level: 2 | 1 | 3;
|
4044
|
+
parentId: string | null;
|
4045
|
+
childCategoryList: any[];
|
4046
|
+
}[];
|
4047
|
+
}, {
|
4048
|
+
id: string;
|
4049
|
+
value: string;
|
4050
|
+
level: 2 | 1 | 3;
|
4051
|
+
parentId: string | null;
|
4052
|
+
childCategoryList: {
|
4053
|
+
id: string;
|
4054
|
+
value: string;
|
4055
|
+
level: 2 | 1 | 3;
|
4056
|
+
parentId: string | null;
|
4057
|
+
childCategoryList: any[];
|
4058
|
+
}[];
|
4059
|
+
}>, "many">;
|
4060
|
+
}, "strip", z.ZodTypeAny, {
|
4061
|
+
id: string;
|
4062
|
+
value: string;
|
4063
|
+
createdAt: Date;
|
4064
|
+
updatedAt: Date;
|
4065
|
+
deletedAt: Date | null;
|
4066
|
+
level: 2 | 1 | 3;
|
4067
|
+
parentId: string | null;
|
4068
|
+
childCategoryList: {
|
4069
|
+
id: string;
|
4070
|
+
value: string;
|
4071
|
+
level: 2 | 1 | 3;
|
4072
|
+
parentId: string | null;
|
4073
|
+
childCategoryList: {
|
4074
|
+
id: string;
|
4075
|
+
value: string;
|
4076
|
+
level: 2 | 1 | 3;
|
4077
|
+
parentId: string | null;
|
4078
|
+
childCategoryList: any[];
|
4079
|
+
}[];
|
4080
|
+
}[];
|
4081
|
+
}, {
|
4082
|
+
id: string;
|
4083
|
+
value: string;
|
4084
|
+
createdAt: Date;
|
4085
|
+
updatedAt: Date;
|
4086
|
+
deletedAt: Date | null;
|
4087
|
+
level: 2 | 1 | 3;
|
4088
|
+
parentId: string | null;
|
4089
|
+
childCategoryList: {
|
4090
|
+
id: string;
|
4091
|
+
value: string;
|
4092
|
+
level: 2 | 1 | 3;
|
4093
|
+
parentId: string | null;
|
4094
|
+
childCategoryList: {
|
4095
|
+
id: string;
|
4096
|
+
value: string;
|
4097
|
+
level: 2 | 1 | 3;
|
4098
|
+
parentId: string | null;
|
4099
|
+
childCategoryList: any[];
|
4100
|
+
}[];
|
4101
|
+
}[];
|
4102
|
+
}>, "many">;
|
3413
4103
|
}, "strip", z.ZodTypeAny, {
|
3414
4104
|
type: string;
|
3415
4105
|
id: string;
|
@@ -3421,6 +4111,28 @@ export declare const commentContract: {
|
|
3421
4111
|
createdAt: Date;
|
3422
4112
|
updatedAt: Date;
|
3423
4113
|
deletedAt: Date | null;
|
4114
|
+
categories: {
|
4115
|
+
id: string;
|
4116
|
+
value: string;
|
4117
|
+
createdAt: Date;
|
4118
|
+
updatedAt: Date;
|
4119
|
+
deletedAt: Date | null;
|
4120
|
+
level: 2 | 1 | 3;
|
4121
|
+
parentId: string | null;
|
4122
|
+
childCategoryList: {
|
4123
|
+
id: string;
|
4124
|
+
value: string;
|
4125
|
+
level: 2 | 1 | 3;
|
4126
|
+
parentId: string | null;
|
4127
|
+
childCategoryList: {
|
4128
|
+
id: string;
|
4129
|
+
value: string;
|
4130
|
+
level: 2 | 1 | 3;
|
4131
|
+
parentId: string | null;
|
4132
|
+
childCategoryList: any[];
|
4133
|
+
}[];
|
4134
|
+
}[];
|
4135
|
+
}[];
|
3424
4136
|
customFields: {
|
3425
4137
|
id: string;
|
3426
4138
|
createdAt: Date;
|
@@ -3456,6 +4168,13 @@ export declare const commentContract: {
|
|
3456
4168
|
fileUrl: string | null;
|
3457
4169
|
}[];
|
3458
4170
|
}[];
|
4171
|
+
tags: {
|
4172
|
+
id: string;
|
4173
|
+
name: string;
|
4174
|
+
createdAt: Date;
|
4175
|
+
updatedAt: Date;
|
4176
|
+
deletedAt: Date | null;
|
4177
|
+
}[];
|
3459
4178
|
contactId: string;
|
3460
4179
|
assigneeId: string;
|
3461
4180
|
creatorId: string;
|
@@ -3472,6 +4191,28 @@ export declare const commentContract: {
|
|
3472
4191
|
createdAt: Date;
|
3473
4192
|
updatedAt: Date;
|
3474
4193
|
deletedAt: Date | null;
|
4194
|
+
categories: {
|
4195
|
+
id: string;
|
4196
|
+
value: string;
|
4197
|
+
createdAt: Date;
|
4198
|
+
updatedAt: Date;
|
4199
|
+
deletedAt: Date | null;
|
4200
|
+
level: 2 | 1 | 3;
|
4201
|
+
parentId: string | null;
|
4202
|
+
childCategoryList: {
|
4203
|
+
id: string;
|
4204
|
+
value: string;
|
4205
|
+
level: 2 | 1 | 3;
|
4206
|
+
parentId: string | null;
|
4207
|
+
childCategoryList: {
|
4208
|
+
id: string;
|
4209
|
+
value: string;
|
4210
|
+
level: 2 | 1 | 3;
|
4211
|
+
parentId: string | null;
|
4212
|
+
childCategoryList: any[];
|
4213
|
+
}[];
|
4214
|
+
}[];
|
4215
|
+
}[];
|
3475
4216
|
customFields: {
|
3476
4217
|
id: string;
|
3477
4218
|
createdAt: Date;
|
@@ -3507,6 +4248,13 @@ export declare const commentContract: {
|
|
3507
4248
|
fileUrl: string | null;
|
3508
4249
|
}[];
|
3509
4250
|
}[];
|
4251
|
+
tags: {
|
4252
|
+
id: string;
|
4253
|
+
name: string;
|
4254
|
+
createdAt: Date;
|
4255
|
+
updatedAt: Date;
|
4256
|
+
deletedAt: Date | null;
|
4257
|
+
}[];
|
3510
4258
|
contactId: string;
|
3511
4259
|
assigneeId: string;
|
3512
4260
|
creatorId: string;
|
@@ -3593,7 +4341,7 @@ export declare const commentContract: {
|
|
3593
4341
|
displayName: string;
|
3594
4342
|
}[];
|
3595
4343
|
}>, "many">;
|
3596
|
-
extension: z.
|
4344
|
+
extension: z.ZodObject<{
|
3597
4345
|
id: z.ZodString;
|
3598
4346
|
createdAt: z.ZodDate;
|
3599
4347
|
updatedAt: z.ZodDate;
|
@@ -3601,6 +4349,7 @@ export declare const commentContract: {
|
|
3601
4349
|
userId: z.ZodNullable<z.ZodString>;
|
3602
4350
|
sipServerUrl: z.ZodString;
|
3603
4351
|
sipUserName: z.ZodString;
|
4352
|
+
webphoneLoginUser: z.ZodString;
|
3604
4353
|
extensionId: z.ZodNumber;
|
3605
4354
|
extensionName: z.ZodString;
|
3606
4355
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3612,6 +4361,7 @@ export declare const commentContract: {
|
|
3612
4361
|
userId: string | null;
|
3613
4362
|
sipServerUrl: string;
|
3614
4363
|
sipUserName: string;
|
4364
|
+
webphoneLoginUser: string;
|
3615
4365
|
extensionId: number;
|
3616
4366
|
extensionName: string;
|
3617
4367
|
telephonySignature: string | null;
|
@@ -3623,10 +4373,11 @@ export declare const commentContract: {
|
|
3623
4373
|
userId: string | null;
|
3624
4374
|
sipServerUrl: string;
|
3625
4375
|
sipUserName: string;
|
4376
|
+
webphoneLoginUser: string;
|
3626
4377
|
extensionId: number;
|
3627
4378
|
extensionName: string;
|
3628
4379
|
telephonySignature: string | null;
|
3629
|
-
}
|
4380
|
+
}>;
|
3630
4381
|
}, "strip", z.ZodTypeAny, {
|
3631
4382
|
id: string;
|
3632
4383
|
address: string | null;
|
@@ -3657,7 +4408,7 @@ export declare const commentContract: {
|
|
3657
4408
|
displayName: string;
|
3658
4409
|
}[];
|
3659
4410
|
}[];
|
3660
|
-
extension
|
4411
|
+
extension: {
|
3661
4412
|
id: string;
|
3662
4413
|
createdAt: Date;
|
3663
4414
|
updatedAt: Date;
|
@@ -3665,10 +4416,11 @@ export declare const commentContract: {
|
|
3665
4416
|
userId: string | null;
|
3666
4417
|
sipServerUrl: string;
|
3667
4418
|
sipUserName: string;
|
4419
|
+
webphoneLoginUser: string;
|
3668
4420
|
extensionId: number;
|
3669
4421
|
extensionName: string;
|
3670
4422
|
telephonySignature: string | null;
|
3671
|
-
}
|
4423
|
+
};
|
3672
4424
|
}, {
|
3673
4425
|
id: string;
|
3674
4426
|
address: string | null;
|
@@ -3699,7 +4451,7 @@ export declare const commentContract: {
|
|
3699
4451
|
displayName: string;
|
3700
4452
|
}[];
|
3701
4453
|
}[];
|
3702
|
-
extension
|
4454
|
+
extension: {
|
3703
4455
|
id: string;
|
3704
4456
|
createdAt: Date;
|
3705
4457
|
updatedAt: Date;
|
@@ -3707,10 +4459,11 @@ export declare const commentContract: {
|
|
3707
4459
|
userId: string | null;
|
3708
4460
|
sipServerUrl: string;
|
3709
4461
|
sipUserName: string;
|
4462
|
+
webphoneLoginUser: string;
|
3710
4463
|
extensionId: number;
|
3711
4464
|
extensionName: string;
|
3712
4465
|
telephonySignature: string | null;
|
3713
|
-
}
|
4466
|
+
};
|
3714
4467
|
}>;
|
3715
4468
|
}, "strip", z.ZodTypeAny, {
|
3716
4469
|
id: string;
|
@@ -3753,7 +4506,7 @@ export declare const commentContract: {
|
|
3753
4506
|
displayName: string;
|
3754
4507
|
}[];
|
3755
4508
|
}[];
|
3756
|
-
extension
|
4509
|
+
extension: {
|
3757
4510
|
id: string;
|
3758
4511
|
createdAt: Date;
|
3759
4512
|
updatedAt: Date;
|
@@ -3761,10 +4514,11 @@ export declare const commentContract: {
|
|
3761
4514
|
userId: string | null;
|
3762
4515
|
sipServerUrl: string;
|
3763
4516
|
sipUserName: string;
|
4517
|
+
webphoneLoginUser: string;
|
3764
4518
|
extensionId: number;
|
3765
4519
|
extensionName: string;
|
3766
4520
|
telephonySignature: string | null;
|
3767
|
-
}
|
4521
|
+
};
|
3768
4522
|
};
|
3769
4523
|
entityId: string;
|
3770
4524
|
entityType: {
|
@@ -3806,7 +4560,7 @@ export declare const commentContract: {
|
|
3806
4560
|
displayName: string;
|
3807
4561
|
}[];
|
3808
4562
|
}[];
|
3809
|
-
extension
|
4563
|
+
extension: {
|
3810
4564
|
id: string;
|
3811
4565
|
createdAt: Date;
|
3812
4566
|
updatedAt: Date;
|
@@ -3814,10 +4568,11 @@ export declare const commentContract: {
|
|
3814
4568
|
userId: string | null;
|
3815
4569
|
sipServerUrl: string;
|
3816
4570
|
sipUserName: string;
|
4571
|
+
webphoneLoginUser: string;
|
3817
4572
|
extensionId: number;
|
3818
4573
|
extensionName: string;
|
3819
4574
|
telephonySignature: string | null;
|
3820
|
-
}
|
4575
|
+
};
|
3821
4576
|
};
|
3822
4577
|
ticket: {
|
3823
4578
|
type: string;
|
@@ -3830,6 +4585,28 @@ export declare const commentContract: {
|
|
3830
4585
|
createdAt: Date;
|
3831
4586
|
updatedAt: Date;
|
3832
4587
|
deletedAt: Date | null;
|
4588
|
+
categories: {
|
4589
|
+
id: string;
|
4590
|
+
value: string;
|
4591
|
+
createdAt: Date;
|
4592
|
+
updatedAt: Date;
|
4593
|
+
deletedAt: Date | null;
|
4594
|
+
level: 2 | 1 | 3;
|
4595
|
+
parentId: string | null;
|
4596
|
+
childCategoryList: {
|
4597
|
+
id: string;
|
4598
|
+
value: string;
|
4599
|
+
level: 2 | 1 | 3;
|
4600
|
+
parentId: string | null;
|
4601
|
+
childCategoryList: {
|
4602
|
+
id: string;
|
4603
|
+
value: string;
|
4604
|
+
level: 2 | 1 | 3;
|
4605
|
+
parentId: string | null;
|
4606
|
+
childCategoryList: any[];
|
4607
|
+
}[];
|
4608
|
+
}[];
|
4609
|
+
}[];
|
3833
4610
|
customFields: {
|
3834
4611
|
id: string;
|
3835
4612
|
createdAt: Date;
|
@@ -3865,6 +4642,13 @@ export declare const commentContract: {
|
|
3865
4642
|
fileUrl: string | null;
|
3866
4643
|
}[];
|
3867
4644
|
}[];
|
4645
|
+
tags: {
|
4646
|
+
id: string;
|
4647
|
+
name: string;
|
4648
|
+
createdAt: Date;
|
4649
|
+
updatedAt: Date;
|
4650
|
+
deletedAt: Date | null;
|
4651
|
+
}[];
|
3868
4652
|
contactId: string;
|
3869
4653
|
assigneeId: string;
|
3870
4654
|
creatorId: string;
|
@@ -3914,7 +4698,7 @@ export declare const commentContract: {
|
|
3914
4698
|
displayName: string;
|
3915
4699
|
}[];
|
3916
4700
|
}[];
|
3917
|
-
extension
|
4701
|
+
extension: {
|
3918
4702
|
id: string;
|
3919
4703
|
createdAt: Date;
|
3920
4704
|
updatedAt: Date;
|
@@ -3922,10 +4706,11 @@ export declare const commentContract: {
|
|
3922
4706
|
userId: string | null;
|
3923
4707
|
sipServerUrl: string;
|
3924
4708
|
sipUserName: string;
|
4709
|
+
webphoneLoginUser: string;
|
3925
4710
|
extensionId: number;
|
3926
4711
|
extensionName: string;
|
3927
4712
|
telephonySignature: string | null;
|
3928
|
-
}
|
4713
|
+
};
|
3929
4714
|
};
|
3930
4715
|
entityId: string;
|
3931
4716
|
entityType: {
|
@@ -3967,7 +4752,7 @@ export declare const commentContract: {
|
|
3967
4752
|
displayName: string;
|
3968
4753
|
}[];
|
3969
4754
|
}[];
|
3970
|
-
extension
|
4755
|
+
extension: {
|
3971
4756
|
id: string;
|
3972
4757
|
createdAt: Date;
|
3973
4758
|
updatedAt: Date;
|
@@ -3975,10 +4760,11 @@ export declare const commentContract: {
|
|
3975
4760
|
userId: string | null;
|
3976
4761
|
sipServerUrl: string;
|
3977
4762
|
sipUserName: string;
|
4763
|
+
webphoneLoginUser: string;
|
3978
4764
|
extensionId: number;
|
3979
4765
|
extensionName: string;
|
3980
4766
|
telephonySignature: string | null;
|
3981
|
-
}
|
4767
|
+
};
|
3982
4768
|
};
|
3983
4769
|
ticket: {
|
3984
4770
|
type: string;
|
@@ -3991,6 +4777,28 @@ export declare const commentContract: {
|
|
3991
4777
|
createdAt: Date;
|
3992
4778
|
updatedAt: Date;
|
3993
4779
|
deletedAt: Date | null;
|
4780
|
+
categories: {
|
4781
|
+
id: string;
|
4782
|
+
value: string;
|
4783
|
+
createdAt: Date;
|
4784
|
+
updatedAt: Date;
|
4785
|
+
deletedAt: Date | null;
|
4786
|
+
level: 2 | 1 | 3;
|
4787
|
+
parentId: string | null;
|
4788
|
+
childCategoryList: {
|
4789
|
+
id: string;
|
4790
|
+
value: string;
|
4791
|
+
level: 2 | 1 | 3;
|
4792
|
+
parentId: string | null;
|
4793
|
+
childCategoryList: {
|
4794
|
+
id: string;
|
4795
|
+
value: string;
|
4796
|
+
level: 2 | 1 | 3;
|
4797
|
+
parentId: string | null;
|
4798
|
+
childCategoryList: any[];
|
4799
|
+
}[];
|
4800
|
+
}[];
|
4801
|
+
}[];
|
3994
4802
|
customFields: {
|
3995
4803
|
id: string;
|
3996
4804
|
createdAt: Date;
|
@@ -4026,6 +4834,13 @@ export declare const commentContract: {
|
|
4026
4834
|
fileUrl: string | null;
|
4027
4835
|
}[];
|
4028
4836
|
}[];
|
4837
|
+
tags: {
|
4838
|
+
id: string;
|
4839
|
+
name: string;
|
4840
|
+
createdAt: Date;
|
4841
|
+
updatedAt: Date;
|
4842
|
+
deletedAt: Date | null;
|
4843
|
+
}[];
|
4029
4844
|
contactId: string;
|
4030
4845
|
assigneeId: string;
|
4031
4846
|
creatorId: string;
|
@@ -4078,7 +4893,7 @@ export declare const commentContract: {
|
|
4078
4893
|
displayName: string;
|
4079
4894
|
}[];
|
4080
4895
|
}[];
|
4081
|
-
extension
|
4896
|
+
extension: {
|
4082
4897
|
id: string;
|
4083
4898
|
createdAt: Date;
|
4084
4899
|
updatedAt: Date;
|
@@ -4086,10 +4901,11 @@ export declare const commentContract: {
|
|
4086
4901
|
userId: string | null;
|
4087
4902
|
sipServerUrl: string;
|
4088
4903
|
sipUserName: string;
|
4904
|
+
webphoneLoginUser: string;
|
4089
4905
|
extensionId: number;
|
4090
4906
|
extensionName: string;
|
4091
4907
|
telephonySignature: string | null;
|
4092
|
-
}
|
4908
|
+
};
|
4093
4909
|
};
|
4094
4910
|
entityId: string;
|
4095
4911
|
entityType: {
|
@@ -4131,7 +4947,7 @@ export declare const commentContract: {
|
|
4131
4947
|
displayName: string;
|
4132
4948
|
}[];
|
4133
4949
|
}[];
|
4134
|
-
extension
|
4950
|
+
extension: {
|
4135
4951
|
id: string;
|
4136
4952
|
createdAt: Date;
|
4137
4953
|
updatedAt: Date;
|
@@ -4139,10 +4955,11 @@ export declare const commentContract: {
|
|
4139
4955
|
userId: string | null;
|
4140
4956
|
sipServerUrl: string;
|
4141
4957
|
sipUserName: string;
|
4958
|
+
webphoneLoginUser: string;
|
4142
4959
|
extensionId: number;
|
4143
4960
|
extensionName: string;
|
4144
4961
|
telephonySignature: string | null;
|
4145
|
-
}
|
4962
|
+
};
|
4146
4963
|
};
|
4147
4964
|
ticket: {
|
4148
4965
|
type: string;
|
@@ -4155,6 +4972,28 @@ export declare const commentContract: {
|
|
4155
4972
|
createdAt: Date;
|
4156
4973
|
updatedAt: Date;
|
4157
4974
|
deletedAt: Date | null;
|
4975
|
+
categories: {
|
4976
|
+
id: string;
|
4977
|
+
value: string;
|
4978
|
+
createdAt: Date;
|
4979
|
+
updatedAt: Date;
|
4980
|
+
deletedAt: Date | null;
|
4981
|
+
level: 2 | 1 | 3;
|
4982
|
+
parentId: string | null;
|
4983
|
+
childCategoryList: {
|
4984
|
+
id: string;
|
4985
|
+
value: string;
|
4986
|
+
level: 2 | 1 | 3;
|
4987
|
+
parentId: string | null;
|
4988
|
+
childCategoryList: {
|
4989
|
+
id: string;
|
4990
|
+
value: string;
|
4991
|
+
level: 2 | 1 | 3;
|
4992
|
+
parentId: string | null;
|
4993
|
+
childCategoryList: any[];
|
4994
|
+
}[];
|
4995
|
+
}[];
|
4996
|
+
}[];
|
4158
4997
|
customFields: {
|
4159
4998
|
id: string;
|
4160
4999
|
createdAt: Date;
|
@@ -4190,6 +5029,13 @@ export declare const commentContract: {
|
|
4190
5029
|
fileUrl: string | null;
|
4191
5030
|
}[];
|
4192
5031
|
}[];
|
5032
|
+
tags: {
|
5033
|
+
id: string;
|
5034
|
+
name: string;
|
5035
|
+
createdAt: Date;
|
5036
|
+
updatedAt: Date;
|
5037
|
+
deletedAt: Date | null;
|
5038
|
+
}[];
|
4193
5039
|
contactId: string;
|
4194
5040
|
assigneeId: string;
|
4195
5041
|
creatorId: string;
|
@@ -4242,7 +5088,7 @@ export declare const commentContract: {
|
|
4242
5088
|
displayName: string;
|
4243
5089
|
}[];
|
4244
5090
|
}[];
|
4245
|
-
extension
|
5091
|
+
extension: {
|
4246
5092
|
id: string;
|
4247
5093
|
createdAt: Date;
|
4248
5094
|
updatedAt: Date;
|
@@ -4250,10 +5096,11 @@ export declare const commentContract: {
|
|
4250
5096
|
userId: string | null;
|
4251
5097
|
sipServerUrl: string;
|
4252
5098
|
sipUserName: string;
|
5099
|
+
webphoneLoginUser: string;
|
4253
5100
|
extensionId: number;
|
4254
5101
|
extensionName: string;
|
4255
5102
|
telephonySignature: string | null;
|
4256
|
-
}
|
5103
|
+
};
|
4257
5104
|
};
|
4258
5105
|
entityId: string;
|
4259
5106
|
entityType: {
|
@@ -4295,7 +5142,7 @@ export declare const commentContract: {
|
|
4295
5142
|
displayName: string;
|
4296
5143
|
}[];
|
4297
5144
|
}[];
|
4298
|
-
extension
|
5145
|
+
extension: {
|
4299
5146
|
id: string;
|
4300
5147
|
createdAt: Date;
|
4301
5148
|
updatedAt: Date;
|
@@ -4303,10 +5150,11 @@ export declare const commentContract: {
|
|
4303
5150
|
userId: string | null;
|
4304
5151
|
sipServerUrl: string;
|
4305
5152
|
sipUserName: string;
|
5153
|
+
webphoneLoginUser: string;
|
4306
5154
|
extensionId: number;
|
4307
5155
|
extensionName: string;
|
4308
5156
|
telephonySignature: string | null;
|
4309
|
-
}
|
5157
|
+
};
|
4310
5158
|
};
|
4311
5159
|
ticket: {
|
4312
5160
|
type: string;
|
@@ -4319,6 +5167,28 @@ export declare const commentContract: {
|
|
4319
5167
|
createdAt: Date;
|
4320
5168
|
updatedAt: Date;
|
4321
5169
|
deletedAt: Date | null;
|
5170
|
+
categories: {
|
5171
|
+
id: string;
|
5172
|
+
value: string;
|
5173
|
+
createdAt: Date;
|
5174
|
+
updatedAt: Date;
|
5175
|
+
deletedAt: Date | null;
|
5176
|
+
level: 2 | 1 | 3;
|
5177
|
+
parentId: string | null;
|
5178
|
+
childCategoryList: {
|
5179
|
+
id: string;
|
5180
|
+
value: string;
|
5181
|
+
level: 2 | 1 | 3;
|
5182
|
+
parentId: string | null;
|
5183
|
+
childCategoryList: {
|
5184
|
+
id: string;
|
5185
|
+
value: string;
|
5186
|
+
level: 2 | 1 | 3;
|
5187
|
+
parentId: string | null;
|
5188
|
+
childCategoryList: any[];
|
5189
|
+
}[];
|
5190
|
+
}[];
|
5191
|
+
}[];
|
4322
5192
|
customFields: {
|
4323
5193
|
id: string;
|
4324
5194
|
createdAt: Date;
|
@@ -4354,6 +5224,13 @@ export declare const commentContract: {
|
|
4354
5224
|
fileUrl: string | null;
|
4355
5225
|
}[];
|
4356
5226
|
}[];
|
5227
|
+
tags: {
|
5228
|
+
id: string;
|
5229
|
+
name: string;
|
5230
|
+
createdAt: Date;
|
5231
|
+
updatedAt: Date;
|
5232
|
+
deletedAt: Date | null;
|
5233
|
+
}[];
|
4357
5234
|
contactId: string;
|
4358
5235
|
assigneeId: string;
|
4359
5236
|
creatorId: string;
|