@kl1/contracts 1.0.27 → 1.0.28
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 +151 -118
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +151 -118
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +113 -113
- package/dist/src/activity-log/schema.d.ts +122 -122
- package/dist/src/auth/index.d.ts +89 -89
- package/dist/src/channel/index.d.ts +319 -319
- package/dist/src/channel/schema.d.ts +89 -92
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +89 -89
- package/dist/src/chat/index.d.ts +8699 -8699
- package/dist/src/chat/schema.d.ts +1486 -1486
- package/dist/src/chat/validation.d.ts +2244 -2244
- package/dist/src/comment/index.d.ts +1005 -1005
- package/dist/src/comment/schema.d.ts +283 -283
- package/dist/src/company/index.d.ts +28 -28
- package/dist/src/company/schema.d.ts +8 -8
- package/dist/src/company/validation.d.ts +15 -15
- package/dist/src/contact/index.d.ts +960 -960
- package/dist/src/contact/schema.d.ts +161 -161
- package/dist/src/contact/validation.d.ts +690 -690
- package/dist/src/contract.d.ts +18366 -18196
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field/schema.d.ts +3 -3
- package/dist/src/cx-log/index.d.ts +1023 -1023
- package/dist/src/cx-log/schema.d.ts +837 -837
- package/dist/src/dashboard/index.d.ts +6 -6
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +2 -2
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +115 -115
- package/dist/src/extension/schema.d.ts +9 -9
- package/dist/src/mail/account-contract.d.ts +168 -168
- package/dist/src/mail/mail-contract.d.ts +3336 -3336
- package/dist/src/mail/message-contract.d.ts +152 -152
- package/dist/src/mail/room-contract.d.ts +3015 -3015
- package/dist/src/mail/schemas/account-validation.schema.d.ts +168 -168
- package/dist/src/mail/schemas/account.schema.d.ts +33 -33
- package/dist/src/mail/schemas/message.schema.d.ts +108 -108
- package/dist/src/mail/schemas/room-validation.schema.d.ts +1000 -1000
- package/dist/src/mail/schemas/room.schema.d.ts +791 -791
- package/dist/src/messenger/index.d.ts +1078 -1078
- package/dist/src/permission/index.d.ts +15 -15
- package/dist/src/permission/schema.d.ts +9 -9
- package/dist/src/role/index.d.ts +96 -96
- package/dist/src/role/schema.d.ts +24 -24
- package/dist/src/telephony-agent-presence-status/index.d.ts +293 -293
- package/dist/src/telephony-agent-presence-status/schema.d.ts +89 -89
- package/dist/src/ticket/index.d.ts +288 -187
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +77 -77
- package/dist/src/ticket/validation.d.ts +66 -0
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +293 -293
- package/dist/src/user/schema.d.ts +63 -63
- package/dist/src/user-presence-status-log/index.d.ts +52 -52
- package/dist/src/user-presence-status-log/schema.d.ts +89 -89
- package/dist/src/widget/index.d.ts +72 -1
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/widget/validation.d.ts +10 -0
- package/dist/src/widget/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -210,14 +210,14 @@ export declare const cxLogContract: {
|
|
210
210
|
}>>;
|
211
211
|
room: z.ZodNullable<z.ZodObject<{
|
212
212
|
id: z.ZodString;
|
213
|
-
createdAt: z.
|
214
|
-
updatedAt: z.
|
215
|
-
deletedAt: z.ZodNullable<z.
|
213
|
+
createdAt: z.ZodString;
|
214
|
+
updatedAt: z.ZodString;
|
215
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
216
216
|
lastMessage: z.ZodString;
|
217
217
|
handleTime: z.ZodNumber;
|
218
|
-
closeAt: z.
|
218
|
+
closeAt: z.ZodString;
|
219
219
|
unreadCount: z.ZodNumber;
|
220
|
-
firstResponseAt: z.
|
220
|
+
firstResponseAt: z.ZodString;
|
221
221
|
firstResponseTime: z.ZodNumber;
|
222
222
|
isLatest: z.ZodBoolean;
|
223
223
|
direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
|
@@ -247,9 +247,9 @@ export declare const cxLogContract: {
|
|
247
247
|
}>;
|
248
248
|
contact: z.ZodObject<{
|
249
249
|
id: z.ZodString;
|
250
|
-
createdAt: z.
|
251
|
-
updatedAt: z.
|
252
|
-
deletedAt: z.ZodNullable<z.
|
250
|
+
createdAt: z.ZodString;
|
251
|
+
updatedAt: z.ZodString;
|
252
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
253
253
|
name: z.ZodString;
|
254
254
|
address: z.ZodNullable<z.ZodString>;
|
255
255
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -292,7 +292,7 @@ export declare const cxLogContract: {
|
|
292
292
|
textValue: z.ZodNullable<z.ZodString>;
|
293
293
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
294
294
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
295
|
-
dateValue: z.ZodNullable<z.
|
295
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
296
296
|
attribute: z.ZodObject<Omit<{
|
297
297
|
id: z.ZodString;
|
298
298
|
createdAt: z.ZodString;
|
@@ -396,7 +396,7 @@ export declare const cxLogContract: {
|
|
396
396
|
textValue: string | null;
|
397
397
|
booleanValue: boolean | null;
|
398
398
|
numberValue: number | null;
|
399
|
-
dateValue:
|
399
|
+
dateValue: string | null;
|
400
400
|
}, {
|
401
401
|
id: string;
|
402
402
|
createdAt: string;
|
@@ -419,7 +419,7 @@ export declare const cxLogContract: {
|
|
419
419
|
textValue: string | null;
|
420
420
|
booleanValue: boolean | null;
|
421
421
|
numberValue: number | null;
|
422
|
-
dateValue:
|
422
|
+
dateValue: string | null;
|
423
423
|
}>, "many">>;
|
424
424
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
425
425
|
id: string;
|
@@ -442,13 +442,13 @@ export declare const cxLogContract: {
|
|
442
442
|
}>>;
|
443
443
|
customFields: z.ZodArray<z.ZodObject<{
|
444
444
|
id: z.ZodString;
|
445
|
-
createdAt: z.
|
446
|
-
updatedAt: z.
|
447
|
-
deletedAt: z.ZodNullable<z.
|
445
|
+
createdAt: z.ZodString;
|
446
|
+
updatedAt: z.ZodString;
|
447
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
448
448
|
textValue: z.ZodNullable<z.ZodString>;
|
449
449
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
450
450
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
451
|
-
dateValue: z.ZodNullable<z.
|
451
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
452
452
|
attribute: z.ZodObject<Omit<{
|
453
453
|
id: z.ZodString;
|
454
454
|
createdAt: z.ZodString;
|
@@ -599,9 +599,9 @@ export declare const cxLogContract: {
|
|
599
599
|
}>, "many">;
|
600
600
|
}, "strip", z.ZodTypeAny, {
|
601
601
|
id: string;
|
602
|
-
createdAt:
|
603
|
-
updatedAt:
|
604
|
-
deletedAt:
|
602
|
+
createdAt: string;
|
603
|
+
updatedAt: string;
|
604
|
+
deletedAt: string | null;
|
605
605
|
attribute: {
|
606
606
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
607
607
|
id: string;
|
@@ -619,7 +619,7 @@ export declare const cxLogContract: {
|
|
619
619
|
textValue: string | null;
|
620
620
|
booleanValue: boolean | null;
|
621
621
|
numberValue: number | null;
|
622
|
-
dateValue:
|
622
|
+
dateValue: string | null;
|
623
623
|
uploads: {
|
624
624
|
id: string;
|
625
625
|
createdAt: string;
|
@@ -639,9 +639,9 @@ export declare const cxLogContract: {
|
|
639
639
|
}[];
|
640
640
|
}, {
|
641
641
|
id: string;
|
642
|
-
createdAt:
|
643
|
-
updatedAt:
|
644
|
-
deletedAt:
|
642
|
+
createdAt: string;
|
643
|
+
updatedAt: string;
|
644
|
+
deletedAt: string | null;
|
645
645
|
attribute: {
|
646
646
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
647
647
|
id: string;
|
@@ -659,7 +659,7 @@ export declare const cxLogContract: {
|
|
659
659
|
textValue: string | null;
|
660
660
|
booleanValue: boolean | null;
|
661
661
|
numberValue: number | null;
|
662
|
-
dateValue:
|
662
|
+
dateValue: string | null;
|
663
663
|
uploads: {
|
664
664
|
id: string;
|
665
665
|
createdAt: string;
|
@@ -680,105 +680,105 @@ export declare const cxLogContract: {
|
|
680
680
|
}>, "many">;
|
681
681
|
contactEmails: z.ZodArray<z.ZodObject<{
|
682
682
|
id: z.ZodString;
|
683
|
-
createdAt: z.
|
684
|
-
updatedAt: z.
|
685
|
-
deletedAt: z.ZodNullable<z.
|
683
|
+
createdAt: z.ZodString;
|
684
|
+
updatedAt: z.ZodString;
|
685
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
686
686
|
email: z.ZodString;
|
687
687
|
isPrimary: z.ZodBoolean;
|
688
688
|
}, "strip", z.ZodTypeAny, {
|
689
689
|
id: string;
|
690
690
|
isPrimary: boolean;
|
691
691
|
email: string;
|
692
|
-
createdAt:
|
693
|
-
updatedAt:
|
694
|
-
deletedAt:
|
692
|
+
createdAt: string;
|
693
|
+
updatedAt: string;
|
694
|
+
deletedAt: string | null;
|
695
695
|
}, {
|
696
696
|
id: string;
|
697
697
|
isPrimary: boolean;
|
698
698
|
email: string;
|
699
|
-
createdAt:
|
700
|
-
updatedAt:
|
701
|
-
deletedAt:
|
699
|
+
createdAt: string;
|
700
|
+
updatedAt: string;
|
701
|
+
deletedAt: string | null;
|
702
702
|
}>, "many">;
|
703
703
|
contactPhones: z.ZodArray<z.ZodObject<{
|
704
704
|
id: z.ZodString;
|
705
|
-
createdAt: z.
|
706
|
-
updatedAt: z.
|
707
|
-
deletedAt: z.ZodNullable<z.
|
705
|
+
createdAt: z.ZodString;
|
706
|
+
updatedAt: z.ZodString;
|
707
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
708
708
|
phone: z.ZodString;
|
709
709
|
isPrimary: z.ZodBoolean;
|
710
710
|
}, "strip", z.ZodTypeAny, {
|
711
711
|
id: string;
|
712
712
|
isPrimary: boolean;
|
713
|
-
createdAt:
|
714
|
-
updatedAt:
|
715
|
-
deletedAt:
|
713
|
+
createdAt: string;
|
714
|
+
updatedAt: string;
|
715
|
+
deletedAt: string | null;
|
716
716
|
phone: string;
|
717
717
|
}, {
|
718
718
|
id: string;
|
719
719
|
isPrimary: boolean;
|
720
|
-
createdAt:
|
721
|
-
updatedAt:
|
722
|
-
deletedAt:
|
720
|
+
createdAt: string;
|
721
|
+
updatedAt: string;
|
722
|
+
deletedAt: string | null;
|
723
723
|
phone: string;
|
724
724
|
}>, "many">;
|
725
725
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
726
726
|
id: z.ZodString;
|
727
|
-
createdAt: z.
|
728
|
-
updatedAt: z.
|
729
|
-
deletedAt: z.ZodNullable<z.
|
727
|
+
createdAt: z.ZodString;
|
728
|
+
updatedAt: z.ZodString;
|
729
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
730
730
|
entityId: z.ZodString;
|
731
731
|
description: z.ZodString;
|
732
732
|
entityType: z.ZodObject<{
|
733
733
|
id: z.ZodString;
|
734
|
-
createdAt: z.
|
735
|
-
updatedAt: z.
|
736
|
-
deletedAt: z.ZodNullable<z.
|
734
|
+
createdAt: z.ZodString;
|
735
|
+
updatedAt: z.ZodString;
|
736
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
737
737
|
entity: z.ZodString;
|
738
738
|
description: z.ZodNullable<z.ZodString>;
|
739
739
|
}, "strip", z.ZodTypeAny, {
|
740
740
|
id: string;
|
741
741
|
description: string | null;
|
742
|
-
createdAt:
|
743
|
-
updatedAt:
|
744
|
-
deletedAt:
|
742
|
+
createdAt: string;
|
743
|
+
updatedAt: string;
|
744
|
+
deletedAt: string | null;
|
745
745
|
entity: string;
|
746
746
|
}, {
|
747
747
|
id: string;
|
748
748
|
description: string | null;
|
749
|
-
createdAt:
|
750
|
-
updatedAt:
|
751
|
-
deletedAt:
|
749
|
+
createdAt: string;
|
750
|
+
updatedAt: string;
|
751
|
+
deletedAt: string | null;
|
752
752
|
entity: string;
|
753
753
|
}>;
|
754
754
|
}, "strip", z.ZodTypeAny, {
|
755
755
|
id: string;
|
756
756
|
description: string;
|
757
|
-
createdAt:
|
758
|
-
updatedAt:
|
759
|
-
deletedAt:
|
757
|
+
createdAt: string;
|
758
|
+
updatedAt: string;
|
759
|
+
deletedAt: string | null;
|
760
760
|
entityId: string;
|
761
761
|
entityType: {
|
762
762
|
id: string;
|
763
763
|
description: string | null;
|
764
|
-
createdAt:
|
765
|
-
updatedAt:
|
766
|
-
deletedAt:
|
764
|
+
createdAt: string;
|
765
|
+
updatedAt: string;
|
766
|
+
deletedAt: string | null;
|
767
767
|
entity: string;
|
768
768
|
};
|
769
769
|
}, {
|
770
770
|
id: string;
|
771
771
|
description: string;
|
772
|
-
createdAt:
|
773
|
-
updatedAt:
|
774
|
-
deletedAt:
|
772
|
+
createdAt: string;
|
773
|
+
updatedAt: string;
|
774
|
+
deletedAt: string | null;
|
775
775
|
entityId: string;
|
776
776
|
entityType: {
|
777
777
|
id: string;
|
778
778
|
description: string | null;
|
779
|
-
createdAt:
|
780
|
-
updatedAt:
|
781
|
-
deletedAt:
|
779
|
+
createdAt: string;
|
780
|
+
updatedAt: string;
|
781
|
+
deletedAt: string | null;
|
782
782
|
entity: string;
|
783
783
|
};
|
784
784
|
}>, "many">>;
|
@@ -787,14 +787,14 @@ export declare const cxLogContract: {
|
|
787
787
|
channel: string | null;
|
788
788
|
address: string | null;
|
789
789
|
name: string;
|
790
|
-
createdAt:
|
791
|
-
updatedAt:
|
792
|
-
deletedAt:
|
790
|
+
createdAt: string;
|
791
|
+
updatedAt: string;
|
792
|
+
deletedAt: string | null;
|
793
793
|
customFields: {
|
794
794
|
id: string;
|
795
|
-
createdAt:
|
796
|
-
updatedAt:
|
797
|
-
deletedAt:
|
795
|
+
createdAt: string;
|
796
|
+
updatedAt: string;
|
797
|
+
deletedAt: string | null;
|
798
798
|
attribute: {
|
799
799
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
800
800
|
id: string;
|
@@ -812,7 +812,7 @@ export declare const cxLogContract: {
|
|
812
812
|
textValue: string | null;
|
813
813
|
booleanValue: boolean | null;
|
814
814
|
numberValue: number | null;
|
815
|
-
dateValue:
|
815
|
+
dateValue: string | null;
|
816
816
|
uploads: {
|
817
817
|
id: string;
|
818
818
|
createdAt: string;
|
@@ -855,31 +855,31 @@ export declare const cxLogContract: {
|
|
855
855
|
id: string;
|
856
856
|
isPrimary: boolean;
|
857
857
|
email: string;
|
858
|
-
createdAt:
|
859
|
-
updatedAt:
|
860
|
-
deletedAt:
|
858
|
+
createdAt: string;
|
859
|
+
updatedAt: string;
|
860
|
+
deletedAt: string | null;
|
861
861
|
}[];
|
862
862
|
contactPhones: {
|
863
863
|
id: string;
|
864
864
|
isPrimary: boolean;
|
865
|
-
createdAt:
|
866
|
-
updatedAt:
|
867
|
-
deletedAt:
|
865
|
+
createdAt: string;
|
866
|
+
updatedAt: string;
|
867
|
+
deletedAt: string | null;
|
868
868
|
phone: string;
|
869
869
|
}[];
|
870
870
|
activityLogs?: {
|
871
871
|
id: string;
|
872
872
|
description: string;
|
873
|
-
createdAt:
|
874
|
-
updatedAt:
|
875
|
-
deletedAt:
|
873
|
+
createdAt: string;
|
874
|
+
updatedAt: string;
|
875
|
+
deletedAt: string | null;
|
876
876
|
entityId: string;
|
877
877
|
entityType: {
|
878
878
|
id: string;
|
879
879
|
description: string | null;
|
880
|
-
createdAt:
|
881
|
-
updatedAt:
|
882
|
-
deletedAt:
|
880
|
+
createdAt: string;
|
881
|
+
updatedAt: string;
|
882
|
+
deletedAt: string | null;
|
883
883
|
entity: string;
|
884
884
|
};
|
885
885
|
}[] | undefined;
|
@@ -888,14 +888,14 @@ export declare const cxLogContract: {
|
|
888
888
|
channel: string | null;
|
889
889
|
address: string | null;
|
890
890
|
name: string;
|
891
|
-
createdAt:
|
892
|
-
updatedAt:
|
893
|
-
deletedAt:
|
891
|
+
createdAt: string;
|
892
|
+
updatedAt: string;
|
893
|
+
deletedAt: string | null;
|
894
894
|
customFields: {
|
895
895
|
id: string;
|
896
|
-
createdAt:
|
897
|
-
updatedAt:
|
898
|
-
deletedAt:
|
896
|
+
createdAt: string;
|
897
|
+
updatedAt: string;
|
898
|
+
deletedAt: string | null;
|
899
899
|
attribute: {
|
900
900
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
901
901
|
id: string;
|
@@ -913,7 +913,7 @@ export declare const cxLogContract: {
|
|
913
913
|
textValue: string | null;
|
914
914
|
booleanValue: boolean | null;
|
915
915
|
numberValue: number | null;
|
916
|
-
dateValue:
|
916
|
+
dateValue: string | null;
|
917
917
|
uploads: {
|
918
918
|
id: string;
|
919
919
|
createdAt: string;
|
@@ -956,31 +956,31 @@ export declare const cxLogContract: {
|
|
956
956
|
id: string;
|
957
957
|
isPrimary: boolean;
|
958
958
|
email: string;
|
959
|
-
createdAt:
|
960
|
-
updatedAt:
|
961
|
-
deletedAt:
|
959
|
+
createdAt: string;
|
960
|
+
updatedAt: string;
|
961
|
+
deletedAt: string | null;
|
962
962
|
}[];
|
963
963
|
contactPhones: {
|
964
964
|
id: string;
|
965
965
|
isPrimary: boolean;
|
966
|
-
createdAt:
|
967
|
-
updatedAt:
|
968
|
-
deletedAt:
|
966
|
+
createdAt: string;
|
967
|
+
updatedAt: string;
|
968
|
+
deletedAt: string | null;
|
969
969
|
phone: string;
|
970
970
|
}[];
|
971
971
|
activityLogs?: {
|
972
972
|
id: string;
|
973
973
|
description: string;
|
974
|
-
createdAt:
|
975
|
-
updatedAt:
|
976
|
-
deletedAt:
|
974
|
+
createdAt: string;
|
975
|
+
updatedAt: string;
|
976
|
+
deletedAt: string | null;
|
977
977
|
entityId: string;
|
978
978
|
entityType: {
|
979
979
|
id: string;
|
980
980
|
description: string | null;
|
981
|
-
createdAt:
|
982
|
-
updatedAt:
|
983
|
-
deletedAt:
|
981
|
+
createdAt: string;
|
982
|
+
updatedAt: string;
|
983
|
+
deletedAt: string | null;
|
984
984
|
entity: string;
|
985
985
|
};
|
986
986
|
}[] | undefined;
|
@@ -1002,14 +1002,14 @@ export declare const cxLogContract: {
|
|
1002
1002
|
channel: string | null;
|
1003
1003
|
address: string | null;
|
1004
1004
|
name: string;
|
1005
|
-
createdAt:
|
1006
|
-
updatedAt:
|
1007
|
-
deletedAt:
|
1005
|
+
createdAt: string;
|
1006
|
+
updatedAt: string;
|
1007
|
+
deletedAt: string | null;
|
1008
1008
|
customFields: {
|
1009
1009
|
id: string;
|
1010
|
-
createdAt:
|
1011
|
-
updatedAt:
|
1012
|
-
deletedAt:
|
1010
|
+
createdAt: string;
|
1011
|
+
updatedAt: string;
|
1012
|
+
deletedAt: string | null;
|
1013
1013
|
attribute: {
|
1014
1014
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1015
1015
|
id: string;
|
@@ -1027,7 +1027,7 @@ export declare const cxLogContract: {
|
|
1027
1027
|
textValue: string | null;
|
1028
1028
|
booleanValue: boolean | null;
|
1029
1029
|
numberValue: number | null;
|
1030
|
-
dateValue:
|
1030
|
+
dateValue: string | null;
|
1031
1031
|
uploads: {
|
1032
1032
|
id: string;
|
1033
1033
|
createdAt: string;
|
@@ -1070,31 +1070,31 @@ export declare const cxLogContract: {
|
|
1070
1070
|
id: string;
|
1071
1071
|
isPrimary: boolean;
|
1072
1072
|
email: string;
|
1073
|
-
createdAt:
|
1074
|
-
updatedAt:
|
1075
|
-
deletedAt:
|
1073
|
+
createdAt: string;
|
1074
|
+
updatedAt: string;
|
1075
|
+
deletedAt: string | null;
|
1076
1076
|
}[];
|
1077
1077
|
contactPhones: {
|
1078
1078
|
id: string;
|
1079
1079
|
isPrimary: boolean;
|
1080
|
-
createdAt:
|
1081
|
-
updatedAt:
|
1082
|
-
deletedAt:
|
1080
|
+
createdAt: string;
|
1081
|
+
updatedAt: string;
|
1082
|
+
deletedAt: string | null;
|
1083
1083
|
phone: string;
|
1084
1084
|
}[];
|
1085
1085
|
activityLogs?: {
|
1086
1086
|
id: string;
|
1087
1087
|
description: string;
|
1088
|
-
createdAt:
|
1089
|
-
updatedAt:
|
1090
|
-
deletedAt:
|
1088
|
+
createdAt: string;
|
1089
|
+
updatedAt: string;
|
1090
|
+
deletedAt: string | null;
|
1091
1091
|
entityId: string;
|
1092
1092
|
entityType: {
|
1093
1093
|
id: string;
|
1094
1094
|
description: string | null;
|
1095
|
-
createdAt:
|
1096
|
-
updatedAt:
|
1097
|
-
deletedAt:
|
1095
|
+
createdAt: string;
|
1096
|
+
updatedAt: string;
|
1097
|
+
deletedAt: string | null;
|
1098
1098
|
entity: string;
|
1099
1099
|
};
|
1100
1100
|
}[] | undefined;
|
@@ -1118,14 +1118,14 @@ export declare const cxLogContract: {
|
|
1118
1118
|
channel: string | null;
|
1119
1119
|
address: string | null;
|
1120
1120
|
name: string;
|
1121
|
-
createdAt:
|
1122
|
-
updatedAt:
|
1123
|
-
deletedAt:
|
1121
|
+
createdAt: string;
|
1122
|
+
updatedAt: string;
|
1123
|
+
deletedAt: string | null;
|
1124
1124
|
customFields: {
|
1125
1125
|
id: string;
|
1126
|
-
createdAt:
|
1127
|
-
updatedAt:
|
1128
|
-
deletedAt:
|
1126
|
+
createdAt: string;
|
1127
|
+
updatedAt: string;
|
1128
|
+
deletedAt: string | null;
|
1129
1129
|
attribute: {
|
1130
1130
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1131
1131
|
id: string;
|
@@ -1143,7 +1143,7 @@ export declare const cxLogContract: {
|
|
1143
1143
|
textValue: string | null;
|
1144
1144
|
booleanValue: boolean | null;
|
1145
1145
|
numberValue: number | null;
|
1146
|
-
dateValue:
|
1146
|
+
dateValue: string | null;
|
1147
1147
|
uploads: {
|
1148
1148
|
id: string;
|
1149
1149
|
createdAt: string;
|
@@ -1186,31 +1186,31 @@ export declare const cxLogContract: {
|
|
1186
1186
|
id: string;
|
1187
1187
|
isPrimary: boolean;
|
1188
1188
|
email: string;
|
1189
|
-
createdAt:
|
1190
|
-
updatedAt:
|
1191
|
-
deletedAt:
|
1189
|
+
createdAt: string;
|
1190
|
+
updatedAt: string;
|
1191
|
+
deletedAt: string | null;
|
1192
1192
|
}[];
|
1193
1193
|
contactPhones: {
|
1194
1194
|
id: string;
|
1195
1195
|
isPrimary: boolean;
|
1196
|
-
createdAt:
|
1197
|
-
updatedAt:
|
1198
|
-
deletedAt:
|
1196
|
+
createdAt: string;
|
1197
|
+
updatedAt: string;
|
1198
|
+
deletedAt: string | null;
|
1199
1199
|
phone: string;
|
1200
1200
|
}[];
|
1201
1201
|
activityLogs?: {
|
1202
1202
|
id: string;
|
1203
1203
|
description: string;
|
1204
|
-
createdAt:
|
1205
|
-
updatedAt:
|
1206
|
-
deletedAt:
|
1204
|
+
createdAt: string;
|
1205
|
+
updatedAt: string;
|
1206
|
+
deletedAt: string | null;
|
1207
1207
|
entityId: string;
|
1208
1208
|
entityType: {
|
1209
1209
|
id: string;
|
1210
1210
|
description: string | null;
|
1211
|
-
createdAt:
|
1212
|
-
updatedAt:
|
1213
|
-
deletedAt:
|
1211
|
+
createdAt: string;
|
1212
|
+
updatedAt: string;
|
1213
|
+
deletedAt: string | null;
|
1214
1214
|
entity: string;
|
1215
1215
|
};
|
1216
1216
|
}[] | undefined;
|
@@ -1220,89 +1220,89 @@ export declare const cxLogContract: {
|
|
1220
1220
|
}>;
|
1221
1221
|
actor: z.ZodObject<{
|
1222
1222
|
id: z.ZodString;
|
1223
|
-
createdAt: z.
|
1224
|
-
updatedAt: z.
|
1225
|
-
deletedAt: z.ZodNullable<z.
|
1223
|
+
createdAt: z.ZodString;
|
1224
|
+
updatedAt: z.ZodString;
|
1225
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1226
1226
|
name: z.ZodString;
|
1227
1227
|
email: z.ZodString;
|
1228
|
-
emailVerifiedAt: z.ZodNullable<z.
|
1228
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
1229
1229
|
password: z.ZodString;
|
1230
1230
|
address: z.ZodNullable<z.ZodString>;
|
1231
1231
|
phone: z.ZodNullable<z.ZodString>;
|
1232
1232
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
1233
1233
|
roles: z.ZodArray<z.ZodObject<{
|
1234
1234
|
id: z.ZodString;
|
1235
|
-
createdAt: z.
|
1236
|
-
updatedAt: z.
|
1237
|
-
deletedAt: z.ZodNullable<z.
|
1235
|
+
createdAt: z.ZodString;
|
1236
|
+
updatedAt: z.ZodString;
|
1237
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1238
1238
|
systemName: z.ZodString;
|
1239
1239
|
displayName: z.ZodString;
|
1240
1240
|
description: z.ZodNullable<z.ZodString>;
|
1241
1241
|
permissions: z.ZodArray<z.ZodObject<{
|
1242
1242
|
id: z.ZodString;
|
1243
|
-
createdAt: z.
|
1244
|
-
updatedAt: z.
|
1245
|
-
deletedAt: z.ZodNullable<z.
|
1243
|
+
createdAt: z.ZodString;
|
1244
|
+
updatedAt: z.ZodString;
|
1245
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1246
1246
|
systemName: z.ZodString;
|
1247
1247
|
displayName: z.ZodString;
|
1248
1248
|
description: z.ZodNullable<z.ZodString>;
|
1249
1249
|
}, "strip", z.ZodTypeAny, {
|
1250
1250
|
id: string;
|
1251
1251
|
description: string | null;
|
1252
|
-
createdAt:
|
1253
|
-
updatedAt:
|
1254
|
-
deletedAt:
|
1252
|
+
createdAt: string;
|
1253
|
+
updatedAt: string;
|
1254
|
+
deletedAt: string | null;
|
1255
1255
|
systemName: string;
|
1256
1256
|
displayName: string;
|
1257
1257
|
}, {
|
1258
1258
|
id: string;
|
1259
1259
|
description: string | null;
|
1260
|
-
createdAt:
|
1261
|
-
updatedAt:
|
1262
|
-
deletedAt:
|
1260
|
+
createdAt: string;
|
1261
|
+
updatedAt: string;
|
1262
|
+
deletedAt: string | null;
|
1263
1263
|
systemName: string;
|
1264
1264
|
displayName: string;
|
1265
1265
|
}>, "many">;
|
1266
1266
|
}, "strip", z.ZodTypeAny, {
|
1267
1267
|
id: string;
|
1268
1268
|
description: string | null;
|
1269
|
-
createdAt:
|
1270
|
-
updatedAt:
|
1271
|
-
deletedAt:
|
1269
|
+
createdAt: string;
|
1270
|
+
updatedAt: string;
|
1271
|
+
deletedAt: string | null;
|
1272
1272
|
systemName: string;
|
1273
1273
|
displayName: string;
|
1274
1274
|
permissions: {
|
1275
1275
|
id: string;
|
1276
1276
|
description: string | null;
|
1277
|
-
createdAt:
|
1278
|
-
updatedAt:
|
1279
|
-
deletedAt:
|
1277
|
+
createdAt: string;
|
1278
|
+
updatedAt: string;
|
1279
|
+
deletedAt: string | null;
|
1280
1280
|
systemName: string;
|
1281
1281
|
displayName: string;
|
1282
1282
|
}[];
|
1283
1283
|
}, {
|
1284
1284
|
id: string;
|
1285
1285
|
description: string | null;
|
1286
|
-
createdAt:
|
1287
|
-
updatedAt:
|
1288
|
-
deletedAt:
|
1286
|
+
createdAt: string;
|
1287
|
+
updatedAt: string;
|
1288
|
+
deletedAt: string | null;
|
1289
1289
|
systemName: string;
|
1290
1290
|
displayName: string;
|
1291
1291
|
permissions: {
|
1292
1292
|
id: string;
|
1293
1293
|
description: string | null;
|
1294
|
-
createdAt:
|
1295
|
-
updatedAt:
|
1296
|
-
deletedAt:
|
1294
|
+
createdAt: string;
|
1295
|
+
updatedAt: string;
|
1296
|
+
deletedAt: string | null;
|
1297
1297
|
systemName: string;
|
1298
1298
|
displayName: string;
|
1299
1299
|
}[];
|
1300
1300
|
}>, "many">;
|
1301
1301
|
extension: z.ZodOptional<z.ZodObject<{
|
1302
1302
|
id: z.ZodString;
|
1303
|
-
createdAt: z.
|
1304
|
-
updatedAt: z.
|
1305
|
-
deletedAt: z.ZodNullable<z.
|
1303
|
+
createdAt: z.ZodString;
|
1304
|
+
updatedAt: z.ZodString;
|
1305
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1306
1306
|
userId: z.ZodNullable<z.ZodString>;
|
1307
1307
|
sipServerUrl: z.ZodString;
|
1308
1308
|
sipUserName: z.ZodString;
|
@@ -1311,9 +1311,9 @@ export declare const cxLogContract: {
|
|
1311
1311
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1312
1312
|
}, "strip", z.ZodTypeAny, {
|
1313
1313
|
id: string;
|
1314
|
-
createdAt:
|
1315
|
-
updatedAt:
|
1316
|
-
deletedAt:
|
1314
|
+
createdAt: string;
|
1315
|
+
updatedAt: string;
|
1316
|
+
deletedAt: string | null;
|
1317
1317
|
userId: string | null;
|
1318
1318
|
sipServerUrl: string;
|
1319
1319
|
sipUserName: string;
|
@@ -1322,9 +1322,9 @@ export declare const cxLogContract: {
|
|
1322
1322
|
telephonySignature: string | null;
|
1323
1323
|
}, {
|
1324
1324
|
id: string;
|
1325
|
-
createdAt:
|
1326
|
-
updatedAt:
|
1327
|
-
deletedAt:
|
1325
|
+
createdAt: string;
|
1326
|
+
updatedAt: string;
|
1327
|
+
deletedAt: string | null;
|
1328
1328
|
userId: string | null;
|
1329
1329
|
sipServerUrl: string;
|
1330
1330
|
sipUserName: string;
|
@@ -1337,36 +1337,36 @@ export declare const cxLogContract: {
|
|
1337
1337
|
address: string | null;
|
1338
1338
|
name: string;
|
1339
1339
|
email: string;
|
1340
|
-
createdAt:
|
1341
|
-
updatedAt:
|
1342
|
-
deletedAt:
|
1343
|
-
emailVerifiedAt:
|
1340
|
+
createdAt: string;
|
1341
|
+
updatedAt: string;
|
1342
|
+
deletedAt: string | null;
|
1343
|
+
emailVerifiedAt: string | null;
|
1344
1344
|
password: string;
|
1345
1345
|
phone: string | null;
|
1346
1346
|
notificationCount: number | null;
|
1347
1347
|
roles: {
|
1348
1348
|
id: string;
|
1349
1349
|
description: string | null;
|
1350
|
-
createdAt:
|
1351
|
-
updatedAt:
|
1352
|
-
deletedAt:
|
1350
|
+
createdAt: string;
|
1351
|
+
updatedAt: string;
|
1352
|
+
deletedAt: string | null;
|
1353
1353
|
systemName: string;
|
1354
1354
|
displayName: string;
|
1355
1355
|
permissions: {
|
1356
1356
|
id: string;
|
1357
1357
|
description: string | null;
|
1358
|
-
createdAt:
|
1359
|
-
updatedAt:
|
1360
|
-
deletedAt:
|
1358
|
+
createdAt: string;
|
1359
|
+
updatedAt: string;
|
1360
|
+
deletedAt: string | null;
|
1361
1361
|
systemName: string;
|
1362
1362
|
displayName: string;
|
1363
1363
|
}[];
|
1364
1364
|
}[];
|
1365
1365
|
extension?: {
|
1366
1366
|
id: string;
|
1367
|
-
createdAt:
|
1368
|
-
updatedAt:
|
1369
|
-
deletedAt:
|
1367
|
+
createdAt: string;
|
1368
|
+
updatedAt: string;
|
1369
|
+
deletedAt: string | null;
|
1370
1370
|
userId: string | null;
|
1371
1371
|
sipServerUrl: string;
|
1372
1372
|
sipUserName: string;
|
@@ -1379,36 +1379,36 @@ export declare const cxLogContract: {
|
|
1379
1379
|
address: string | null;
|
1380
1380
|
name: string;
|
1381
1381
|
email: string;
|
1382
|
-
createdAt:
|
1383
|
-
updatedAt:
|
1384
|
-
deletedAt:
|
1385
|
-
emailVerifiedAt:
|
1382
|
+
createdAt: string;
|
1383
|
+
updatedAt: string;
|
1384
|
+
deletedAt: string | null;
|
1385
|
+
emailVerifiedAt: string | null;
|
1386
1386
|
password: string;
|
1387
1387
|
phone: string | null;
|
1388
1388
|
notificationCount: number | null;
|
1389
1389
|
roles: {
|
1390
1390
|
id: string;
|
1391
1391
|
description: string | null;
|
1392
|
-
createdAt:
|
1393
|
-
updatedAt:
|
1394
|
-
deletedAt:
|
1392
|
+
createdAt: string;
|
1393
|
+
updatedAt: string;
|
1394
|
+
deletedAt: string | null;
|
1395
1395
|
systemName: string;
|
1396
1396
|
displayName: string;
|
1397
1397
|
permissions: {
|
1398
1398
|
id: string;
|
1399
1399
|
description: string | null;
|
1400
|
-
createdAt:
|
1401
|
-
updatedAt:
|
1402
|
-
deletedAt:
|
1400
|
+
createdAt: string;
|
1401
|
+
updatedAt: string;
|
1402
|
+
deletedAt: string | null;
|
1403
1403
|
systemName: string;
|
1404
1404
|
displayName: string;
|
1405
1405
|
}[];
|
1406
1406
|
}[];
|
1407
1407
|
extension?: {
|
1408
1408
|
id: string;
|
1409
|
-
createdAt:
|
1410
|
-
updatedAt:
|
1411
|
-
deletedAt:
|
1409
|
+
createdAt: string;
|
1410
|
+
updatedAt: string;
|
1411
|
+
deletedAt: string | null;
|
1412
1412
|
userId: string | null;
|
1413
1413
|
sipServerUrl: string;
|
1414
1414
|
sipUserName: string;
|
@@ -1419,89 +1419,89 @@ export declare const cxLogContract: {
|
|
1419
1419
|
}>;
|
1420
1420
|
assignee: z.ZodObject<{
|
1421
1421
|
id: z.ZodString;
|
1422
|
-
createdAt: z.
|
1423
|
-
updatedAt: z.
|
1424
|
-
deletedAt: z.ZodNullable<z.
|
1422
|
+
createdAt: z.ZodString;
|
1423
|
+
updatedAt: z.ZodString;
|
1424
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1425
1425
|
name: z.ZodString;
|
1426
1426
|
email: z.ZodString;
|
1427
|
-
emailVerifiedAt: z.ZodNullable<z.
|
1427
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
1428
1428
|
password: z.ZodString;
|
1429
1429
|
address: z.ZodNullable<z.ZodString>;
|
1430
1430
|
phone: z.ZodNullable<z.ZodString>;
|
1431
1431
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
1432
1432
|
roles: z.ZodArray<z.ZodObject<{
|
1433
1433
|
id: z.ZodString;
|
1434
|
-
createdAt: z.
|
1435
|
-
updatedAt: z.
|
1436
|
-
deletedAt: z.ZodNullable<z.
|
1434
|
+
createdAt: z.ZodString;
|
1435
|
+
updatedAt: z.ZodString;
|
1436
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1437
1437
|
systemName: z.ZodString;
|
1438
1438
|
displayName: z.ZodString;
|
1439
1439
|
description: z.ZodNullable<z.ZodString>;
|
1440
1440
|
permissions: z.ZodArray<z.ZodObject<{
|
1441
1441
|
id: z.ZodString;
|
1442
|
-
createdAt: z.
|
1443
|
-
updatedAt: z.
|
1444
|
-
deletedAt: z.ZodNullable<z.
|
1442
|
+
createdAt: z.ZodString;
|
1443
|
+
updatedAt: z.ZodString;
|
1444
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1445
1445
|
systemName: z.ZodString;
|
1446
1446
|
displayName: z.ZodString;
|
1447
1447
|
description: z.ZodNullable<z.ZodString>;
|
1448
1448
|
}, "strip", z.ZodTypeAny, {
|
1449
1449
|
id: string;
|
1450
1450
|
description: string | null;
|
1451
|
-
createdAt:
|
1452
|
-
updatedAt:
|
1453
|
-
deletedAt:
|
1451
|
+
createdAt: string;
|
1452
|
+
updatedAt: string;
|
1453
|
+
deletedAt: string | null;
|
1454
1454
|
systemName: string;
|
1455
1455
|
displayName: string;
|
1456
1456
|
}, {
|
1457
1457
|
id: string;
|
1458
1458
|
description: string | null;
|
1459
|
-
createdAt:
|
1460
|
-
updatedAt:
|
1461
|
-
deletedAt:
|
1459
|
+
createdAt: string;
|
1460
|
+
updatedAt: string;
|
1461
|
+
deletedAt: string | null;
|
1462
1462
|
systemName: string;
|
1463
1463
|
displayName: string;
|
1464
1464
|
}>, "many">;
|
1465
1465
|
}, "strip", z.ZodTypeAny, {
|
1466
1466
|
id: string;
|
1467
1467
|
description: string | null;
|
1468
|
-
createdAt:
|
1469
|
-
updatedAt:
|
1470
|
-
deletedAt:
|
1468
|
+
createdAt: string;
|
1469
|
+
updatedAt: string;
|
1470
|
+
deletedAt: string | null;
|
1471
1471
|
systemName: string;
|
1472
1472
|
displayName: string;
|
1473
1473
|
permissions: {
|
1474
1474
|
id: string;
|
1475
1475
|
description: string | null;
|
1476
|
-
createdAt:
|
1477
|
-
updatedAt:
|
1478
|
-
deletedAt:
|
1476
|
+
createdAt: string;
|
1477
|
+
updatedAt: string;
|
1478
|
+
deletedAt: string | null;
|
1479
1479
|
systemName: string;
|
1480
1480
|
displayName: string;
|
1481
1481
|
}[];
|
1482
1482
|
}, {
|
1483
1483
|
id: string;
|
1484
1484
|
description: string | null;
|
1485
|
-
createdAt:
|
1486
|
-
updatedAt:
|
1487
|
-
deletedAt:
|
1485
|
+
createdAt: string;
|
1486
|
+
updatedAt: string;
|
1487
|
+
deletedAt: string | null;
|
1488
1488
|
systemName: string;
|
1489
1489
|
displayName: string;
|
1490
1490
|
permissions: {
|
1491
1491
|
id: string;
|
1492
1492
|
description: string | null;
|
1493
|
-
createdAt:
|
1494
|
-
updatedAt:
|
1495
|
-
deletedAt:
|
1493
|
+
createdAt: string;
|
1494
|
+
updatedAt: string;
|
1495
|
+
deletedAt: string | null;
|
1496
1496
|
systemName: string;
|
1497
1497
|
displayName: string;
|
1498
1498
|
}[];
|
1499
1499
|
}>, "many">;
|
1500
1500
|
extension: z.ZodOptional<z.ZodObject<{
|
1501
1501
|
id: z.ZodString;
|
1502
|
-
createdAt: z.
|
1503
|
-
updatedAt: z.
|
1504
|
-
deletedAt: z.ZodNullable<z.
|
1502
|
+
createdAt: z.ZodString;
|
1503
|
+
updatedAt: z.ZodString;
|
1504
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1505
1505
|
userId: z.ZodNullable<z.ZodString>;
|
1506
1506
|
sipServerUrl: z.ZodString;
|
1507
1507
|
sipUserName: z.ZodString;
|
@@ -1510,9 +1510,9 @@ export declare const cxLogContract: {
|
|
1510
1510
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1511
1511
|
}, "strip", z.ZodTypeAny, {
|
1512
1512
|
id: string;
|
1513
|
-
createdAt:
|
1514
|
-
updatedAt:
|
1515
|
-
deletedAt:
|
1513
|
+
createdAt: string;
|
1514
|
+
updatedAt: string;
|
1515
|
+
deletedAt: string | null;
|
1516
1516
|
userId: string | null;
|
1517
1517
|
sipServerUrl: string;
|
1518
1518
|
sipUserName: string;
|
@@ -1521,9 +1521,9 @@ export declare const cxLogContract: {
|
|
1521
1521
|
telephonySignature: string | null;
|
1522
1522
|
}, {
|
1523
1523
|
id: string;
|
1524
|
-
createdAt:
|
1525
|
-
updatedAt:
|
1526
|
-
deletedAt:
|
1524
|
+
createdAt: string;
|
1525
|
+
updatedAt: string;
|
1526
|
+
deletedAt: string | null;
|
1527
1527
|
userId: string | null;
|
1528
1528
|
sipServerUrl: string;
|
1529
1529
|
sipUserName: string;
|
@@ -1536,36 +1536,36 @@ export declare const cxLogContract: {
|
|
1536
1536
|
address: string | null;
|
1537
1537
|
name: string;
|
1538
1538
|
email: string;
|
1539
|
-
createdAt:
|
1540
|
-
updatedAt:
|
1541
|
-
deletedAt:
|
1542
|
-
emailVerifiedAt:
|
1539
|
+
createdAt: string;
|
1540
|
+
updatedAt: string;
|
1541
|
+
deletedAt: string | null;
|
1542
|
+
emailVerifiedAt: string | null;
|
1543
1543
|
password: string;
|
1544
1544
|
phone: string | null;
|
1545
1545
|
notificationCount: number | null;
|
1546
1546
|
roles: {
|
1547
1547
|
id: string;
|
1548
1548
|
description: string | null;
|
1549
|
-
createdAt:
|
1550
|
-
updatedAt:
|
1551
|
-
deletedAt:
|
1549
|
+
createdAt: string;
|
1550
|
+
updatedAt: string;
|
1551
|
+
deletedAt: string | null;
|
1552
1552
|
systemName: string;
|
1553
1553
|
displayName: string;
|
1554
1554
|
permissions: {
|
1555
1555
|
id: string;
|
1556
1556
|
description: string | null;
|
1557
|
-
createdAt:
|
1558
|
-
updatedAt:
|
1559
|
-
deletedAt:
|
1557
|
+
createdAt: string;
|
1558
|
+
updatedAt: string;
|
1559
|
+
deletedAt: string | null;
|
1560
1560
|
systemName: string;
|
1561
1561
|
displayName: string;
|
1562
1562
|
}[];
|
1563
1563
|
}[];
|
1564
1564
|
extension?: {
|
1565
1565
|
id: string;
|
1566
|
-
createdAt:
|
1567
|
-
updatedAt:
|
1568
|
-
deletedAt:
|
1566
|
+
createdAt: string;
|
1567
|
+
updatedAt: string;
|
1568
|
+
deletedAt: string | null;
|
1569
1569
|
userId: string | null;
|
1570
1570
|
sipServerUrl: string;
|
1571
1571
|
sipUserName: string;
|
@@ -1578,36 +1578,36 @@ export declare const cxLogContract: {
|
|
1578
1578
|
address: string | null;
|
1579
1579
|
name: string;
|
1580
1580
|
email: string;
|
1581
|
-
createdAt:
|
1582
|
-
updatedAt:
|
1583
|
-
deletedAt:
|
1584
|
-
emailVerifiedAt:
|
1581
|
+
createdAt: string;
|
1582
|
+
updatedAt: string;
|
1583
|
+
deletedAt: string | null;
|
1584
|
+
emailVerifiedAt: string | null;
|
1585
1585
|
password: string;
|
1586
1586
|
phone: string | null;
|
1587
1587
|
notificationCount: number | null;
|
1588
1588
|
roles: {
|
1589
1589
|
id: string;
|
1590
1590
|
description: string | null;
|
1591
|
-
createdAt:
|
1592
|
-
updatedAt:
|
1593
|
-
deletedAt:
|
1591
|
+
createdAt: string;
|
1592
|
+
updatedAt: string;
|
1593
|
+
deletedAt: string | null;
|
1594
1594
|
systemName: string;
|
1595
1595
|
displayName: string;
|
1596
1596
|
permissions: {
|
1597
1597
|
id: string;
|
1598
1598
|
description: string | null;
|
1599
|
-
createdAt:
|
1600
|
-
updatedAt:
|
1601
|
-
deletedAt:
|
1599
|
+
createdAt: string;
|
1600
|
+
updatedAt: string;
|
1601
|
+
deletedAt: string | null;
|
1602
1602
|
systemName: string;
|
1603
1603
|
displayName: string;
|
1604
1604
|
}[];
|
1605
1605
|
}[];
|
1606
1606
|
extension?: {
|
1607
1607
|
id: string;
|
1608
|
-
createdAt:
|
1609
|
-
updatedAt:
|
1610
|
-
deletedAt:
|
1608
|
+
createdAt: string;
|
1609
|
+
updatedAt: string;
|
1610
|
+
deletedAt: string | null;
|
1611
1611
|
userId: string | null;
|
1612
1612
|
sipServerUrl: string;
|
1613
1613
|
sipUserName: string;
|
@@ -1647,89 +1647,89 @@ export declare const cxLogContract: {
|
|
1647
1647
|
connectedUserId: z.ZodOptional<z.ZodString>;
|
1648
1648
|
actor: z.ZodOptional<z.ZodObject<{
|
1649
1649
|
id: z.ZodString;
|
1650
|
-
createdAt: z.
|
1651
|
-
updatedAt: z.
|
1652
|
-
deletedAt: z.ZodNullable<z.
|
1650
|
+
createdAt: z.ZodString;
|
1651
|
+
updatedAt: z.ZodString;
|
1652
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1653
1653
|
name: z.ZodString;
|
1654
1654
|
email: z.ZodString;
|
1655
|
-
emailVerifiedAt: z.ZodNullable<z.
|
1655
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
1656
1656
|
password: z.ZodString;
|
1657
1657
|
address: z.ZodNullable<z.ZodString>;
|
1658
1658
|
phone: z.ZodNullable<z.ZodString>;
|
1659
1659
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
1660
1660
|
roles: z.ZodArray<z.ZodObject<{
|
1661
1661
|
id: z.ZodString;
|
1662
|
-
createdAt: z.
|
1663
|
-
updatedAt: z.
|
1664
|
-
deletedAt: z.ZodNullable<z.
|
1662
|
+
createdAt: z.ZodString;
|
1663
|
+
updatedAt: z.ZodString;
|
1664
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1665
1665
|
systemName: z.ZodString;
|
1666
1666
|
displayName: z.ZodString;
|
1667
1667
|
description: z.ZodNullable<z.ZodString>;
|
1668
1668
|
permissions: z.ZodArray<z.ZodObject<{
|
1669
1669
|
id: z.ZodString;
|
1670
|
-
createdAt: z.
|
1671
|
-
updatedAt: z.
|
1672
|
-
deletedAt: z.ZodNullable<z.
|
1670
|
+
createdAt: z.ZodString;
|
1671
|
+
updatedAt: z.ZodString;
|
1672
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1673
1673
|
systemName: z.ZodString;
|
1674
1674
|
displayName: z.ZodString;
|
1675
1675
|
description: z.ZodNullable<z.ZodString>;
|
1676
1676
|
}, "strip", z.ZodTypeAny, {
|
1677
1677
|
id: string;
|
1678
1678
|
description: string | null;
|
1679
|
-
createdAt:
|
1680
|
-
updatedAt:
|
1681
|
-
deletedAt:
|
1679
|
+
createdAt: string;
|
1680
|
+
updatedAt: string;
|
1681
|
+
deletedAt: string | null;
|
1682
1682
|
systemName: string;
|
1683
1683
|
displayName: string;
|
1684
1684
|
}, {
|
1685
1685
|
id: string;
|
1686
1686
|
description: string | null;
|
1687
|
-
createdAt:
|
1688
|
-
updatedAt:
|
1689
|
-
deletedAt:
|
1687
|
+
createdAt: string;
|
1688
|
+
updatedAt: string;
|
1689
|
+
deletedAt: string | null;
|
1690
1690
|
systemName: string;
|
1691
1691
|
displayName: string;
|
1692
1692
|
}>, "many">;
|
1693
1693
|
}, "strip", z.ZodTypeAny, {
|
1694
1694
|
id: string;
|
1695
1695
|
description: string | null;
|
1696
|
-
createdAt:
|
1697
|
-
updatedAt:
|
1698
|
-
deletedAt:
|
1696
|
+
createdAt: string;
|
1697
|
+
updatedAt: string;
|
1698
|
+
deletedAt: string | null;
|
1699
1699
|
systemName: string;
|
1700
1700
|
displayName: string;
|
1701
1701
|
permissions: {
|
1702
1702
|
id: string;
|
1703
1703
|
description: string | null;
|
1704
|
-
createdAt:
|
1705
|
-
updatedAt:
|
1706
|
-
deletedAt:
|
1704
|
+
createdAt: string;
|
1705
|
+
updatedAt: string;
|
1706
|
+
deletedAt: string | null;
|
1707
1707
|
systemName: string;
|
1708
1708
|
displayName: string;
|
1709
1709
|
}[];
|
1710
1710
|
}, {
|
1711
1711
|
id: string;
|
1712
1712
|
description: string | null;
|
1713
|
-
createdAt:
|
1714
|
-
updatedAt:
|
1715
|
-
deletedAt:
|
1713
|
+
createdAt: string;
|
1714
|
+
updatedAt: string;
|
1715
|
+
deletedAt: string | null;
|
1716
1716
|
systemName: string;
|
1717
1717
|
displayName: string;
|
1718
1718
|
permissions: {
|
1719
1719
|
id: string;
|
1720
1720
|
description: string | null;
|
1721
|
-
createdAt:
|
1722
|
-
updatedAt:
|
1723
|
-
deletedAt:
|
1721
|
+
createdAt: string;
|
1722
|
+
updatedAt: string;
|
1723
|
+
deletedAt: string | null;
|
1724
1724
|
systemName: string;
|
1725
1725
|
displayName: string;
|
1726
1726
|
}[];
|
1727
1727
|
}>, "many">;
|
1728
1728
|
extension: z.ZodOptional<z.ZodObject<{
|
1729
1729
|
id: z.ZodString;
|
1730
|
-
createdAt: z.
|
1731
|
-
updatedAt: z.
|
1732
|
-
deletedAt: z.ZodNullable<z.
|
1730
|
+
createdAt: z.ZodString;
|
1731
|
+
updatedAt: z.ZodString;
|
1732
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1733
1733
|
userId: z.ZodNullable<z.ZodString>;
|
1734
1734
|
sipServerUrl: z.ZodString;
|
1735
1735
|
sipUserName: z.ZodString;
|
@@ -1738,9 +1738,9 @@ export declare const cxLogContract: {
|
|
1738
1738
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1739
1739
|
}, "strip", z.ZodTypeAny, {
|
1740
1740
|
id: string;
|
1741
|
-
createdAt:
|
1742
|
-
updatedAt:
|
1743
|
-
deletedAt:
|
1741
|
+
createdAt: string;
|
1742
|
+
updatedAt: string;
|
1743
|
+
deletedAt: string | null;
|
1744
1744
|
userId: string | null;
|
1745
1745
|
sipServerUrl: string;
|
1746
1746
|
sipUserName: string;
|
@@ -1749,9 +1749,9 @@ export declare const cxLogContract: {
|
|
1749
1749
|
telephonySignature: string | null;
|
1750
1750
|
}, {
|
1751
1751
|
id: string;
|
1752
|
-
createdAt:
|
1753
|
-
updatedAt:
|
1754
|
-
deletedAt:
|
1752
|
+
createdAt: string;
|
1753
|
+
updatedAt: string;
|
1754
|
+
deletedAt: string | null;
|
1755
1755
|
userId: string | null;
|
1756
1756
|
sipServerUrl: string;
|
1757
1757
|
sipUserName: string;
|
@@ -1764,36 +1764,36 @@ export declare const cxLogContract: {
|
|
1764
1764
|
address: string | null;
|
1765
1765
|
name: string;
|
1766
1766
|
email: string;
|
1767
|
-
createdAt:
|
1768
|
-
updatedAt:
|
1769
|
-
deletedAt:
|
1770
|
-
emailVerifiedAt:
|
1767
|
+
createdAt: string;
|
1768
|
+
updatedAt: string;
|
1769
|
+
deletedAt: string | null;
|
1770
|
+
emailVerifiedAt: string | null;
|
1771
1771
|
password: string;
|
1772
1772
|
phone: string | null;
|
1773
1773
|
notificationCount: number | null;
|
1774
1774
|
roles: {
|
1775
1775
|
id: string;
|
1776
1776
|
description: string | null;
|
1777
|
-
createdAt:
|
1778
|
-
updatedAt:
|
1779
|
-
deletedAt:
|
1777
|
+
createdAt: string;
|
1778
|
+
updatedAt: string;
|
1779
|
+
deletedAt: string | null;
|
1780
1780
|
systemName: string;
|
1781
1781
|
displayName: string;
|
1782
1782
|
permissions: {
|
1783
1783
|
id: string;
|
1784
1784
|
description: string | null;
|
1785
|
-
createdAt:
|
1786
|
-
updatedAt:
|
1787
|
-
deletedAt:
|
1785
|
+
createdAt: string;
|
1786
|
+
updatedAt: string;
|
1787
|
+
deletedAt: string | null;
|
1788
1788
|
systemName: string;
|
1789
1789
|
displayName: string;
|
1790
1790
|
}[];
|
1791
1791
|
}[];
|
1792
1792
|
extension?: {
|
1793
1793
|
id: string;
|
1794
|
-
createdAt:
|
1795
|
-
updatedAt:
|
1796
|
-
deletedAt:
|
1794
|
+
createdAt: string;
|
1795
|
+
updatedAt: string;
|
1796
|
+
deletedAt: string | null;
|
1797
1797
|
userId: string | null;
|
1798
1798
|
sipServerUrl: string;
|
1799
1799
|
sipUserName: string;
|
@@ -1806,36 +1806,36 @@ export declare const cxLogContract: {
|
|
1806
1806
|
address: string | null;
|
1807
1807
|
name: string;
|
1808
1808
|
email: string;
|
1809
|
-
createdAt:
|
1810
|
-
updatedAt:
|
1811
|
-
deletedAt:
|
1812
|
-
emailVerifiedAt:
|
1809
|
+
createdAt: string;
|
1810
|
+
updatedAt: string;
|
1811
|
+
deletedAt: string | null;
|
1812
|
+
emailVerifiedAt: string | null;
|
1813
1813
|
password: string;
|
1814
1814
|
phone: string | null;
|
1815
1815
|
notificationCount: number | null;
|
1816
1816
|
roles: {
|
1817
1817
|
id: string;
|
1818
1818
|
description: string | null;
|
1819
|
-
createdAt:
|
1820
|
-
updatedAt:
|
1821
|
-
deletedAt:
|
1819
|
+
createdAt: string;
|
1820
|
+
updatedAt: string;
|
1821
|
+
deletedAt: string | null;
|
1822
1822
|
systemName: string;
|
1823
1823
|
displayName: string;
|
1824
1824
|
permissions: {
|
1825
1825
|
id: string;
|
1826
1826
|
description: string | null;
|
1827
|
-
createdAt:
|
1828
|
-
updatedAt:
|
1829
|
-
deletedAt:
|
1827
|
+
createdAt: string;
|
1828
|
+
updatedAt: string;
|
1829
|
+
deletedAt: string | null;
|
1830
1830
|
systemName: string;
|
1831
1831
|
displayName: string;
|
1832
1832
|
}[];
|
1833
1833
|
}[];
|
1834
1834
|
extension?: {
|
1835
1835
|
id: string;
|
1836
|
-
createdAt:
|
1837
|
-
updatedAt:
|
1838
|
-
deletedAt:
|
1836
|
+
createdAt: string;
|
1837
|
+
updatedAt: string;
|
1838
|
+
deletedAt: string | null;
|
1839
1839
|
userId: string | null;
|
1840
1840
|
sipServerUrl: string;
|
1841
1841
|
sipUserName: string;
|
@@ -1868,36 +1868,36 @@ export declare const cxLogContract: {
|
|
1868
1868
|
address: string | null;
|
1869
1869
|
name: string;
|
1870
1870
|
email: string;
|
1871
|
-
createdAt:
|
1872
|
-
updatedAt:
|
1873
|
-
deletedAt:
|
1874
|
-
emailVerifiedAt:
|
1871
|
+
createdAt: string;
|
1872
|
+
updatedAt: string;
|
1873
|
+
deletedAt: string | null;
|
1874
|
+
emailVerifiedAt: string | null;
|
1875
1875
|
password: string;
|
1876
1876
|
phone: string | null;
|
1877
1877
|
notificationCount: number | null;
|
1878
1878
|
roles: {
|
1879
1879
|
id: string;
|
1880
1880
|
description: string | null;
|
1881
|
-
createdAt:
|
1882
|
-
updatedAt:
|
1883
|
-
deletedAt:
|
1881
|
+
createdAt: string;
|
1882
|
+
updatedAt: string;
|
1883
|
+
deletedAt: string | null;
|
1884
1884
|
systemName: string;
|
1885
1885
|
displayName: string;
|
1886
1886
|
permissions: {
|
1887
1887
|
id: string;
|
1888
1888
|
description: string | null;
|
1889
|
-
createdAt:
|
1890
|
-
updatedAt:
|
1891
|
-
deletedAt:
|
1889
|
+
createdAt: string;
|
1890
|
+
updatedAt: string;
|
1891
|
+
deletedAt: string | null;
|
1892
1892
|
systemName: string;
|
1893
1893
|
displayName: string;
|
1894
1894
|
}[];
|
1895
1895
|
}[];
|
1896
1896
|
extension?: {
|
1897
1897
|
id: string;
|
1898
|
-
createdAt:
|
1899
|
-
updatedAt:
|
1900
|
-
deletedAt:
|
1898
|
+
createdAt: string;
|
1899
|
+
updatedAt: string;
|
1900
|
+
deletedAt: string | null;
|
1901
1901
|
userId: string | null;
|
1902
1902
|
sipServerUrl: string;
|
1903
1903
|
sipUserName: string;
|
@@ -1930,36 +1930,36 @@ export declare const cxLogContract: {
|
|
1930
1930
|
address: string | null;
|
1931
1931
|
name: string;
|
1932
1932
|
email: string;
|
1933
|
-
createdAt:
|
1934
|
-
updatedAt:
|
1935
|
-
deletedAt:
|
1936
|
-
emailVerifiedAt:
|
1933
|
+
createdAt: string;
|
1934
|
+
updatedAt: string;
|
1935
|
+
deletedAt: string | null;
|
1936
|
+
emailVerifiedAt: string | null;
|
1937
1937
|
password: string;
|
1938
1938
|
phone: string | null;
|
1939
1939
|
notificationCount: number | null;
|
1940
1940
|
roles: {
|
1941
1941
|
id: string;
|
1942
1942
|
description: string | null;
|
1943
|
-
createdAt:
|
1944
|
-
updatedAt:
|
1945
|
-
deletedAt:
|
1943
|
+
createdAt: string;
|
1944
|
+
updatedAt: string;
|
1945
|
+
deletedAt: string | null;
|
1946
1946
|
systemName: string;
|
1947
1947
|
displayName: string;
|
1948
1948
|
permissions: {
|
1949
1949
|
id: string;
|
1950
1950
|
description: string | null;
|
1951
|
-
createdAt:
|
1952
|
-
updatedAt:
|
1953
|
-
deletedAt:
|
1951
|
+
createdAt: string;
|
1952
|
+
updatedAt: string;
|
1953
|
+
deletedAt: string | null;
|
1954
1954
|
systemName: string;
|
1955
1955
|
displayName: string;
|
1956
1956
|
}[];
|
1957
1957
|
}[];
|
1958
1958
|
extension?: {
|
1959
1959
|
id: string;
|
1960
|
-
createdAt:
|
1961
|
-
updatedAt:
|
1962
|
-
deletedAt:
|
1960
|
+
createdAt: string;
|
1961
|
+
updatedAt: string;
|
1962
|
+
deletedAt: string | null;
|
1963
1963
|
userId: string | null;
|
1964
1964
|
sipServerUrl: string;
|
1965
1965
|
sipUserName: string;
|
@@ -1972,44 +1972,44 @@ export declare const cxLogContract: {
|
|
1972
1972
|
}, "strip", z.ZodTypeAny, {
|
1973
1973
|
id: string;
|
1974
1974
|
direction: "incoming" | "outgoing" | "system";
|
1975
|
-
createdAt:
|
1976
|
-
updatedAt:
|
1977
|
-
deletedAt:
|
1975
|
+
createdAt: string;
|
1976
|
+
updatedAt: string;
|
1977
|
+
deletedAt: string | null;
|
1978
1978
|
actor: {
|
1979
1979
|
id: string;
|
1980
1980
|
address: string | null;
|
1981
1981
|
name: string;
|
1982
1982
|
email: string;
|
1983
|
-
createdAt:
|
1984
|
-
updatedAt:
|
1985
|
-
deletedAt:
|
1986
|
-
emailVerifiedAt:
|
1983
|
+
createdAt: string;
|
1984
|
+
updatedAt: string;
|
1985
|
+
deletedAt: string | null;
|
1986
|
+
emailVerifiedAt: string | null;
|
1987
1987
|
password: string;
|
1988
1988
|
phone: string | null;
|
1989
1989
|
notificationCount: number | null;
|
1990
1990
|
roles: {
|
1991
1991
|
id: string;
|
1992
1992
|
description: string | null;
|
1993
|
-
createdAt:
|
1994
|
-
updatedAt:
|
1995
|
-
deletedAt:
|
1993
|
+
createdAt: string;
|
1994
|
+
updatedAt: string;
|
1995
|
+
deletedAt: string | null;
|
1996
1996
|
systemName: string;
|
1997
1997
|
displayName: string;
|
1998
1998
|
permissions: {
|
1999
1999
|
id: string;
|
2000
2000
|
description: string | null;
|
2001
|
-
createdAt:
|
2002
|
-
updatedAt:
|
2003
|
-
deletedAt:
|
2001
|
+
createdAt: string;
|
2002
|
+
updatedAt: string;
|
2003
|
+
deletedAt: string | null;
|
2004
2004
|
systemName: string;
|
2005
2005
|
displayName: string;
|
2006
2006
|
}[];
|
2007
2007
|
}[];
|
2008
2008
|
extension?: {
|
2009
2009
|
id: string;
|
2010
|
-
createdAt:
|
2011
|
-
updatedAt:
|
2012
|
-
deletedAt:
|
2010
|
+
createdAt: string;
|
2011
|
+
updatedAt: string;
|
2012
|
+
deletedAt: string | null;
|
2013
2013
|
userId: string | null;
|
2014
2014
|
sipServerUrl: string;
|
2015
2015
|
sipUserName: string;
|
@@ -2021,9 +2021,9 @@ export declare const cxLogContract: {
|
|
2021
2021
|
firstResponseTime: number;
|
2022
2022
|
lastMessage: string;
|
2023
2023
|
handleTime: number;
|
2024
|
-
closeAt:
|
2024
|
+
closeAt: string;
|
2025
2025
|
unreadCount: number;
|
2026
|
-
firstResponseAt:
|
2026
|
+
firstResponseAt: string;
|
2027
2027
|
isLatest: boolean;
|
2028
2028
|
platformContact: {
|
2029
2029
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -2042,14 +2042,14 @@ export declare const cxLogContract: {
|
|
2042
2042
|
channel: string | null;
|
2043
2043
|
address: string | null;
|
2044
2044
|
name: string;
|
2045
|
-
createdAt:
|
2046
|
-
updatedAt:
|
2047
|
-
deletedAt:
|
2045
|
+
createdAt: string;
|
2046
|
+
updatedAt: string;
|
2047
|
+
deletedAt: string | null;
|
2048
2048
|
customFields: {
|
2049
2049
|
id: string;
|
2050
|
-
createdAt:
|
2051
|
-
updatedAt:
|
2052
|
-
deletedAt:
|
2050
|
+
createdAt: string;
|
2051
|
+
updatedAt: string;
|
2052
|
+
deletedAt: string | null;
|
2053
2053
|
attribute: {
|
2054
2054
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2055
2055
|
id: string;
|
@@ -2067,7 +2067,7 @@ export declare const cxLogContract: {
|
|
2067
2067
|
textValue: string | null;
|
2068
2068
|
booleanValue: boolean | null;
|
2069
2069
|
numberValue: number | null;
|
2070
|
-
dateValue:
|
2070
|
+
dateValue: string | null;
|
2071
2071
|
uploads: {
|
2072
2072
|
id: string;
|
2073
2073
|
createdAt: string;
|
@@ -2110,31 +2110,31 @@ export declare const cxLogContract: {
|
|
2110
2110
|
id: string;
|
2111
2111
|
isPrimary: boolean;
|
2112
2112
|
email: string;
|
2113
|
-
createdAt:
|
2114
|
-
updatedAt:
|
2115
|
-
deletedAt:
|
2113
|
+
createdAt: string;
|
2114
|
+
updatedAt: string;
|
2115
|
+
deletedAt: string | null;
|
2116
2116
|
}[];
|
2117
2117
|
contactPhones: {
|
2118
2118
|
id: string;
|
2119
2119
|
isPrimary: boolean;
|
2120
|
-
createdAt:
|
2121
|
-
updatedAt:
|
2122
|
-
deletedAt:
|
2120
|
+
createdAt: string;
|
2121
|
+
updatedAt: string;
|
2122
|
+
deletedAt: string | null;
|
2123
2123
|
phone: string;
|
2124
2124
|
}[];
|
2125
2125
|
activityLogs?: {
|
2126
2126
|
id: string;
|
2127
2127
|
description: string;
|
2128
|
-
createdAt:
|
2129
|
-
updatedAt:
|
2130
|
-
deletedAt:
|
2128
|
+
createdAt: string;
|
2129
|
+
updatedAt: string;
|
2130
|
+
deletedAt: string | null;
|
2131
2131
|
entityId: string;
|
2132
2132
|
entityType: {
|
2133
2133
|
id: string;
|
2134
2134
|
description: string | null;
|
2135
|
-
createdAt:
|
2136
|
-
updatedAt:
|
2137
|
-
deletedAt:
|
2135
|
+
createdAt: string;
|
2136
|
+
updatedAt: string;
|
2137
|
+
deletedAt: string | null;
|
2138
2138
|
entity: string;
|
2139
2139
|
};
|
2140
2140
|
}[] | undefined;
|
@@ -2147,36 +2147,36 @@ export declare const cxLogContract: {
|
|
2147
2147
|
address: string | null;
|
2148
2148
|
name: string;
|
2149
2149
|
email: string;
|
2150
|
-
createdAt:
|
2151
|
-
updatedAt:
|
2152
|
-
deletedAt:
|
2153
|
-
emailVerifiedAt:
|
2150
|
+
createdAt: string;
|
2151
|
+
updatedAt: string;
|
2152
|
+
deletedAt: string | null;
|
2153
|
+
emailVerifiedAt: string | null;
|
2154
2154
|
password: string;
|
2155
2155
|
phone: string | null;
|
2156
2156
|
notificationCount: number | null;
|
2157
2157
|
roles: {
|
2158
2158
|
id: string;
|
2159
2159
|
description: string | null;
|
2160
|
-
createdAt:
|
2161
|
-
updatedAt:
|
2162
|
-
deletedAt:
|
2160
|
+
createdAt: string;
|
2161
|
+
updatedAt: string;
|
2162
|
+
deletedAt: string | null;
|
2163
2163
|
systemName: string;
|
2164
2164
|
displayName: string;
|
2165
2165
|
permissions: {
|
2166
2166
|
id: string;
|
2167
2167
|
description: string | null;
|
2168
|
-
createdAt:
|
2169
|
-
updatedAt:
|
2170
|
-
deletedAt:
|
2168
|
+
createdAt: string;
|
2169
|
+
updatedAt: string;
|
2170
|
+
deletedAt: string | null;
|
2171
2171
|
systemName: string;
|
2172
2172
|
displayName: string;
|
2173
2173
|
}[];
|
2174
2174
|
}[];
|
2175
2175
|
extension?: {
|
2176
2176
|
id: string;
|
2177
|
-
createdAt:
|
2178
|
-
updatedAt:
|
2179
|
-
deletedAt:
|
2177
|
+
createdAt: string;
|
2178
|
+
updatedAt: string;
|
2179
|
+
deletedAt: string | null;
|
2180
2180
|
userId: string | null;
|
2181
2181
|
sipServerUrl: string;
|
2182
2182
|
sipUserName: string;
|
@@ -2209,36 +2209,36 @@ export declare const cxLogContract: {
|
|
2209
2209
|
address: string | null;
|
2210
2210
|
name: string;
|
2211
2211
|
email: string;
|
2212
|
-
createdAt:
|
2213
|
-
updatedAt:
|
2214
|
-
deletedAt:
|
2215
|
-
emailVerifiedAt:
|
2212
|
+
createdAt: string;
|
2213
|
+
updatedAt: string;
|
2214
|
+
deletedAt: string | null;
|
2215
|
+
emailVerifiedAt: string | null;
|
2216
2216
|
password: string;
|
2217
2217
|
phone: string | null;
|
2218
2218
|
notificationCount: number | null;
|
2219
2219
|
roles: {
|
2220
2220
|
id: string;
|
2221
2221
|
description: string | null;
|
2222
|
-
createdAt:
|
2223
|
-
updatedAt:
|
2224
|
-
deletedAt:
|
2222
|
+
createdAt: string;
|
2223
|
+
updatedAt: string;
|
2224
|
+
deletedAt: string | null;
|
2225
2225
|
systemName: string;
|
2226
2226
|
displayName: string;
|
2227
2227
|
permissions: {
|
2228
2228
|
id: string;
|
2229
2229
|
description: string | null;
|
2230
|
-
createdAt:
|
2231
|
-
updatedAt:
|
2232
|
-
deletedAt:
|
2230
|
+
createdAt: string;
|
2231
|
+
updatedAt: string;
|
2232
|
+
deletedAt: string | null;
|
2233
2233
|
systemName: string;
|
2234
2234
|
displayName: string;
|
2235
2235
|
}[];
|
2236
2236
|
}[];
|
2237
2237
|
extension?: {
|
2238
2238
|
id: string;
|
2239
|
-
createdAt:
|
2240
|
-
updatedAt:
|
2241
|
-
deletedAt:
|
2239
|
+
createdAt: string;
|
2240
|
+
updatedAt: string;
|
2241
|
+
deletedAt: string | null;
|
2242
2242
|
userId: string | null;
|
2243
2243
|
sipServerUrl: string;
|
2244
2244
|
sipUserName: string;
|
@@ -2251,44 +2251,44 @@ export declare const cxLogContract: {
|
|
2251
2251
|
}, {
|
2252
2252
|
id: string;
|
2253
2253
|
direction: "incoming" | "outgoing" | "system";
|
2254
|
-
createdAt:
|
2255
|
-
updatedAt:
|
2256
|
-
deletedAt:
|
2254
|
+
createdAt: string;
|
2255
|
+
updatedAt: string;
|
2256
|
+
deletedAt: string | null;
|
2257
2257
|
actor: {
|
2258
2258
|
id: string;
|
2259
2259
|
address: string | null;
|
2260
2260
|
name: string;
|
2261
2261
|
email: string;
|
2262
|
-
createdAt:
|
2263
|
-
updatedAt:
|
2264
|
-
deletedAt:
|
2265
|
-
emailVerifiedAt:
|
2262
|
+
createdAt: string;
|
2263
|
+
updatedAt: string;
|
2264
|
+
deletedAt: string | null;
|
2265
|
+
emailVerifiedAt: string | null;
|
2266
2266
|
password: string;
|
2267
2267
|
phone: string | null;
|
2268
2268
|
notificationCount: number | null;
|
2269
2269
|
roles: {
|
2270
2270
|
id: string;
|
2271
2271
|
description: string | null;
|
2272
|
-
createdAt:
|
2273
|
-
updatedAt:
|
2274
|
-
deletedAt:
|
2272
|
+
createdAt: string;
|
2273
|
+
updatedAt: string;
|
2274
|
+
deletedAt: string | null;
|
2275
2275
|
systemName: string;
|
2276
2276
|
displayName: string;
|
2277
2277
|
permissions: {
|
2278
2278
|
id: string;
|
2279
2279
|
description: string | null;
|
2280
|
-
createdAt:
|
2281
|
-
updatedAt:
|
2282
|
-
deletedAt:
|
2280
|
+
createdAt: string;
|
2281
|
+
updatedAt: string;
|
2282
|
+
deletedAt: string | null;
|
2283
2283
|
systemName: string;
|
2284
2284
|
displayName: string;
|
2285
2285
|
}[];
|
2286
2286
|
}[];
|
2287
2287
|
extension?: {
|
2288
2288
|
id: string;
|
2289
|
-
createdAt:
|
2290
|
-
updatedAt:
|
2291
|
-
deletedAt:
|
2289
|
+
createdAt: string;
|
2290
|
+
updatedAt: string;
|
2291
|
+
deletedAt: string | null;
|
2292
2292
|
userId: string | null;
|
2293
2293
|
sipServerUrl: string;
|
2294
2294
|
sipUserName: string;
|
@@ -2300,9 +2300,9 @@ export declare const cxLogContract: {
|
|
2300
2300
|
firstResponseTime: number;
|
2301
2301
|
lastMessage: string;
|
2302
2302
|
handleTime: number;
|
2303
|
-
closeAt:
|
2303
|
+
closeAt: string;
|
2304
2304
|
unreadCount: number;
|
2305
|
-
firstResponseAt:
|
2305
|
+
firstResponseAt: string;
|
2306
2306
|
isLatest: boolean;
|
2307
2307
|
platformContact: {
|
2308
2308
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -2321,14 +2321,14 @@ export declare const cxLogContract: {
|
|
2321
2321
|
channel: string | null;
|
2322
2322
|
address: string | null;
|
2323
2323
|
name: string;
|
2324
|
-
createdAt:
|
2325
|
-
updatedAt:
|
2326
|
-
deletedAt:
|
2324
|
+
createdAt: string;
|
2325
|
+
updatedAt: string;
|
2326
|
+
deletedAt: string | null;
|
2327
2327
|
customFields: {
|
2328
2328
|
id: string;
|
2329
|
-
createdAt:
|
2330
|
-
updatedAt:
|
2331
|
-
deletedAt:
|
2329
|
+
createdAt: string;
|
2330
|
+
updatedAt: string;
|
2331
|
+
deletedAt: string | null;
|
2332
2332
|
attribute: {
|
2333
2333
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2334
2334
|
id: string;
|
@@ -2346,7 +2346,7 @@ export declare const cxLogContract: {
|
|
2346
2346
|
textValue: string | null;
|
2347
2347
|
booleanValue: boolean | null;
|
2348
2348
|
numberValue: number | null;
|
2349
|
-
dateValue:
|
2349
|
+
dateValue: string | null;
|
2350
2350
|
uploads: {
|
2351
2351
|
id: string;
|
2352
2352
|
createdAt: string;
|
@@ -2389,31 +2389,31 @@ export declare const cxLogContract: {
|
|
2389
2389
|
id: string;
|
2390
2390
|
isPrimary: boolean;
|
2391
2391
|
email: string;
|
2392
|
-
createdAt:
|
2393
|
-
updatedAt:
|
2394
|
-
deletedAt:
|
2392
|
+
createdAt: string;
|
2393
|
+
updatedAt: string;
|
2394
|
+
deletedAt: string | null;
|
2395
2395
|
}[];
|
2396
2396
|
contactPhones: {
|
2397
2397
|
id: string;
|
2398
2398
|
isPrimary: boolean;
|
2399
|
-
createdAt:
|
2400
|
-
updatedAt:
|
2401
|
-
deletedAt:
|
2399
|
+
createdAt: string;
|
2400
|
+
updatedAt: string;
|
2401
|
+
deletedAt: string | null;
|
2402
2402
|
phone: string;
|
2403
2403
|
}[];
|
2404
2404
|
activityLogs?: {
|
2405
2405
|
id: string;
|
2406
2406
|
description: string;
|
2407
|
-
createdAt:
|
2408
|
-
updatedAt:
|
2409
|
-
deletedAt:
|
2407
|
+
createdAt: string;
|
2408
|
+
updatedAt: string;
|
2409
|
+
deletedAt: string | null;
|
2410
2410
|
entityId: string;
|
2411
2411
|
entityType: {
|
2412
2412
|
id: string;
|
2413
2413
|
description: string | null;
|
2414
|
-
createdAt:
|
2415
|
-
updatedAt:
|
2416
|
-
deletedAt:
|
2414
|
+
createdAt: string;
|
2415
|
+
updatedAt: string;
|
2416
|
+
deletedAt: string | null;
|
2417
2417
|
entity: string;
|
2418
2418
|
};
|
2419
2419
|
}[] | undefined;
|
@@ -2426,36 +2426,36 @@ export declare const cxLogContract: {
|
|
2426
2426
|
address: string | null;
|
2427
2427
|
name: string;
|
2428
2428
|
email: string;
|
2429
|
-
createdAt:
|
2430
|
-
updatedAt:
|
2431
|
-
deletedAt:
|
2432
|
-
emailVerifiedAt:
|
2429
|
+
createdAt: string;
|
2430
|
+
updatedAt: string;
|
2431
|
+
deletedAt: string | null;
|
2432
|
+
emailVerifiedAt: string | null;
|
2433
2433
|
password: string;
|
2434
2434
|
phone: string | null;
|
2435
2435
|
notificationCount: number | null;
|
2436
2436
|
roles: {
|
2437
2437
|
id: string;
|
2438
2438
|
description: string | null;
|
2439
|
-
createdAt:
|
2440
|
-
updatedAt:
|
2441
|
-
deletedAt:
|
2439
|
+
createdAt: string;
|
2440
|
+
updatedAt: string;
|
2441
|
+
deletedAt: string | null;
|
2442
2442
|
systemName: string;
|
2443
2443
|
displayName: string;
|
2444
2444
|
permissions: {
|
2445
2445
|
id: string;
|
2446
2446
|
description: string | null;
|
2447
|
-
createdAt:
|
2448
|
-
updatedAt:
|
2449
|
-
deletedAt:
|
2447
|
+
createdAt: string;
|
2448
|
+
updatedAt: string;
|
2449
|
+
deletedAt: string | null;
|
2450
2450
|
systemName: string;
|
2451
2451
|
displayName: string;
|
2452
2452
|
}[];
|
2453
2453
|
}[];
|
2454
2454
|
extension?: {
|
2455
2455
|
id: string;
|
2456
|
-
createdAt:
|
2457
|
-
updatedAt:
|
2458
|
-
deletedAt:
|
2456
|
+
createdAt: string;
|
2457
|
+
updatedAt: string;
|
2458
|
+
deletedAt: string | null;
|
2459
2459
|
userId: string | null;
|
2460
2460
|
sipServerUrl: string;
|
2461
2461
|
sipUserName: string;
|
@@ -2488,36 +2488,36 @@ export declare const cxLogContract: {
|
|
2488
2488
|
address: string | null;
|
2489
2489
|
name: string;
|
2490
2490
|
email: string;
|
2491
|
-
createdAt:
|
2492
|
-
updatedAt:
|
2493
|
-
deletedAt:
|
2494
|
-
emailVerifiedAt:
|
2491
|
+
createdAt: string;
|
2492
|
+
updatedAt: string;
|
2493
|
+
deletedAt: string | null;
|
2494
|
+
emailVerifiedAt: string | null;
|
2495
2495
|
password: string;
|
2496
2496
|
phone: string | null;
|
2497
2497
|
notificationCount: number | null;
|
2498
2498
|
roles: {
|
2499
2499
|
id: string;
|
2500
2500
|
description: string | null;
|
2501
|
-
createdAt:
|
2502
|
-
updatedAt:
|
2503
|
-
deletedAt:
|
2501
|
+
createdAt: string;
|
2502
|
+
updatedAt: string;
|
2503
|
+
deletedAt: string | null;
|
2504
2504
|
systemName: string;
|
2505
2505
|
displayName: string;
|
2506
2506
|
permissions: {
|
2507
2507
|
id: string;
|
2508
2508
|
description: string | null;
|
2509
|
-
createdAt:
|
2510
|
-
updatedAt:
|
2511
|
-
deletedAt:
|
2509
|
+
createdAt: string;
|
2510
|
+
updatedAt: string;
|
2511
|
+
deletedAt: string | null;
|
2512
2512
|
systemName: string;
|
2513
2513
|
displayName: string;
|
2514
2514
|
}[];
|
2515
2515
|
}[];
|
2516
2516
|
extension?: {
|
2517
2517
|
id: string;
|
2518
|
-
createdAt:
|
2519
|
-
updatedAt:
|
2520
|
-
deletedAt:
|
2518
|
+
createdAt: string;
|
2519
|
+
updatedAt: string;
|
2520
|
+
deletedAt: string | null;
|
2521
2521
|
userId: string | null;
|
2522
2522
|
sipServerUrl: string;
|
2523
2523
|
sipUserName: string;
|
@@ -2610,9 +2610,9 @@ export declare const cxLogContract: {
|
|
2610
2610
|
}>>;
|
2611
2611
|
contact: z.ZodNullable<z.ZodObject<{
|
2612
2612
|
id: z.ZodString;
|
2613
|
-
createdAt: z.
|
2614
|
-
updatedAt: z.
|
2615
|
-
deletedAt: z.ZodNullable<z.
|
2613
|
+
createdAt: z.ZodString;
|
2614
|
+
updatedAt: z.ZodString;
|
2615
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2616
2616
|
name: z.ZodString;
|
2617
2617
|
address: z.ZodNullable<z.ZodString>;
|
2618
2618
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -2655,7 +2655,7 @@ export declare const cxLogContract: {
|
|
2655
2655
|
textValue: z.ZodNullable<z.ZodString>;
|
2656
2656
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2657
2657
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
2658
|
-
dateValue: z.ZodNullable<z.
|
2658
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
2659
2659
|
attribute: z.ZodObject<Omit<{
|
2660
2660
|
id: z.ZodString;
|
2661
2661
|
createdAt: z.ZodString;
|
@@ -2759,7 +2759,7 @@ export declare const cxLogContract: {
|
|
2759
2759
|
textValue: string | null;
|
2760
2760
|
booleanValue: boolean | null;
|
2761
2761
|
numberValue: number | null;
|
2762
|
-
dateValue:
|
2762
|
+
dateValue: string | null;
|
2763
2763
|
}, {
|
2764
2764
|
id: string;
|
2765
2765
|
createdAt: string;
|
@@ -2782,7 +2782,7 @@ export declare const cxLogContract: {
|
|
2782
2782
|
textValue: string | null;
|
2783
2783
|
booleanValue: boolean | null;
|
2784
2784
|
numberValue: number | null;
|
2785
|
-
dateValue:
|
2785
|
+
dateValue: string | null;
|
2786
2786
|
}>, "many">>;
|
2787
2787
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
2788
2788
|
id: string;
|
@@ -2805,13 +2805,13 @@ export declare const cxLogContract: {
|
|
2805
2805
|
}>>;
|
2806
2806
|
customFields: z.ZodArray<z.ZodObject<{
|
2807
2807
|
id: z.ZodString;
|
2808
|
-
createdAt: z.
|
2809
|
-
updatedAt: z.
|
2810
|
-
deletedAt: z.ZodNullable<z.
|
2808
|
+
createdAt: z.ZodString;
|
2809
|
+
updatedAt: z.ZodString;
|
2810
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2811
2811
|
textValue: z.ZodNullable<z.ZodString>;
|
2812
2812
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2813
2813
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
2814
|
-
dateValue: z.ZodNullable<z.
|
2814
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
2815
2815
|
attribute: z.ZodObject<Omit<{
|
2816
2816
|
id: z.ZodString;
|
2817
2817
|
createdAt: z.ZodString;
|
@@ -2962,9 +2962,9 @@ export declare const cxLogContract: {
|
|
2962
2962
|
}>, "many">;
|
2963
2963
|
}, "strip", z.ZodTypeAny, {
|
2964
2964
|
id: string;
|
2965
|
-
createdAt:
|
2966
|
-
updatedAt:
|
2967
|
-
deletedAt:
|
2965
|
+
createdAt: string;
|
2966
|
+
updatedAt: string;
|
2967
|
+
deletedAt: string | null;
|
2968
2968
|
attribute: {
|
2969
2969
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2970
2970
|
id: string;
|
@@ -2982,7 +2982,7 @@ export declare const cxLogContract: {
|
|
2982
2982
|
textValue: string | null;
|
2983
2983
|
booleanValue: boolean | null;
|
2984
2984
|
numberValue: number | null;
|
2985
|
-
dateValue:
|
2985
|
+
dateValue: string | null;
|
2986
2986
|
uploads: {
|
2987
2987
|
id: string;
|
2988
2988
|
createdAt: string;
|
@@ -3002,9 +3002,9 @@ export declare const cxLogContract: {
|
|
3002
3002
|
}[];
|
3003
3003
|
}, {
|
3004
3004
|
id: string;
|
3005
|
-
createdAt:
|
3006
|
-
updatedAt:
|
3007
|
-
deletedAt:
|
3005
|
+
createdAt: string;
|
3006
|
+
updatedAt: string;
|
3007
|
+
deletedAt: string | null;
|
3008
3008
|
attribute: {
|
3009
3009
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3010
3010
|
id: string;
|
@@ -3022,7 +3022,7 @@ export declare const cxLogContract: {
|
|
3022
3022
|
textValue: string | null;
|
3023
3023
|
booleanValue: boolean | null;
|
3024
3024
|
numberValue: number | null;
|
3025
|
-
dateValue:
|
3025
|
+
dateValue: string | null;
|
3026
3026
|
uploads: {
|
3027
3027
|
id: string;
|
3028
3028
|
createdAt: string;
|
@@ -3043,105 +3043,105 @@ export declare const cxLogContract: {
|
|
3043
3043
|
}>, "many">;
|
3044
3044
|
contactEmails: z.ZodArray<z.ZodObject<{
|
3045
3045
|
id: z.ZodString;
|
3046
|
-
createdAt: z.
|
3047
|
-
updatedAt: z.
|
3048
|
-
deletedAt: z.ZodNullable<z.
|
3046
|
+
createdAt: z.ZodString;
|
3047
|
+
updatedAt: z.ZodString;
|
3048
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3049
3049
|
email: z.ZodString;
|
3050
3050
|
isPrimary: z.ZodBoolean;
|
3051
3051
|
}, "strip", z.ZodTypeAny, {
|
3052
3052
|
id: string;
|
3053
3053
|
isPrimary: boolean;
|
3054
3054
|
email: string;
|
3055
|
-
createdAt:
|
3056
|
-
updatedAt:
|
3057
|
-
deletedAt:
|
3055
|
+
createdAt: string;
|
3056
|
+
updatedAt: string;
|
3057
|
+
deletedAt: string | null;
|
3058
3058
|
}, {
|
3059
3059
|
id: string;
|
3060
3060
|
isPrimary: boolean;
|
3061
3061
|
email: string;
|
3062
|
-
createdAt:
|
3063
|
-
updatedAt:
|
3064
|
-
deletedAt:
|
3062
|
+
createdAt: string;
|
3063
|
+
updatedAt: string;
|
3064
|
+
deletedAt: string | null;
|
3065
3065
|
}>, "many">;
|
3066
3066
|
contactPhones: z.ZodArray<z.ZodObject<{
|
3067
3067
|
id: z.ZodString;
|
3068
|
-
createdAt: z.
|
3069
|
-
updatedAt: z.
|
3070
|
-
deletedAt: z.ZodNullable<z.
|
3068
|
+
createdAt: z.ZodString;
|
3069
|
+
updatedAt: z.ZodString;
|
3070
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3071
3071
|
phone: z.ZodString;
|
3072
3072
|
isPrimary: z.ZodBoolean;
|
3073
3073
|
}, "strip", z.ZodTypeAny, {
|
3074
3074
|
id: string;
|
3075
3075
|
isPrimary: boolean;
|
3076
|
-
createdAt:
|
3077
|
-
updatedAt:
|
3078
|
-
deletedAt:
|
3076
|
+
createdAt: string;
|
3077
|
+
updatedAt: string;
|
3078
|
+
deletedAt: string | null;
|
3079
3079
|
phone: string;
|
3080
3080
|
}, {
|
3081
3081
|
id: string;
|
3082
3082
|
isPrimary: boolean;
|
3083
|
-
createdAt:
|
3084
|
-
updatedAt:
|
3085
|
-
deletedAt:
|
3083
|
+
createdAt: string;
|
3084
|
+
updatedAt: string;
|
3085
|
+
deletedAt: string | null;
|
3086
3086
|
phone: string;
|
3087
3087
|
}>, "many">;
|
3088
3088
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3089
3089
|
id: z.ZodString;
|
3090
|
-
createdAt: z.
|
3091
|
-
updatedAt: z.
|
3092
|
-
deletedAt: z.ZodNullable<z.
|
3090
|
+
createdAt: z.ZodString;
|
3091
|
+
updatedAt: z.ZodString;
|
3092
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3093
3093
|
entityId: z.ZodString;
|
3094
3094
|
description: z.ZodString;
|
3095
3095
|
entityType: z.ZodObject<{
|
3096
3096
|
id: z.ZodString;
|
3097
|
-
createdAt: z.
|
3098
|
-
updatedAt: z.
|
3099
|
-
deletedAt: z.ZodNullable<z.
|
3097
|
+
createdAt: z.ZodString;
|
3098
|
+
updatedAt: z.ZodString;
|
3099
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3100
3100
|
entity: z.ZodString;
|
3101
3101
|
description: z.ZodNullable<z.ZodString>;
|
3102
3102
|
}, "strip", z.ZodTypeAny, {
|
3103
3103
|
id: string;
|
3104
3104
|
description: string | null;
|
3105
|
-
createdAt:
|
3106
|
-
updatedAt:
|
3107
|
-
deletedAt:
|
3105
|
+
createdAt: string;
|
3106
|
+
updatedAt: string;
|
3107
|
+
deletedAt: string | null;
|
3108
3108
|
entity: string;
|
3109
3109
|
}, {
|
3110
3110
|
id: string;
|
3111
3111
|
description: string | null;
|
3112
|
-
createdAt:
|
3113
|
-
updatedAt:
|
3114
|
-
deletedAt:
|
3112
|
+
createdAt: string;
|
3113
|
+
updatedAt: string;
|
3114
|
+
deletedAt: string | null;
|
3115
3115
|
entity: string;
|
3116
3116
|
}>;
|
3117
3117
|
}, "strip", z.ZodTypeAny, {
|
3118
3118
|
id: string;
|
3119
3119
|
description: string;
|
3120
|
-
createdAt:
|
3121
|
-
updatedAt:
|
3122
|
-
deletedAt:
|
3120
|
+
createdAt: string;
|
3121
|
+
updatedAt: string;
|
3122
|
+
deletedAt: string | null;
|
3123
3123
|
entityId: string;
|
3124
3124
|
entityType: {
|
3125
3125
|
id: string;
|
3126
3126
|
description: string | null;
|
3127
|
-
createdAt:
|
3128
|
-
updatedAt:
|
3129
|
-
deletedAt:
|
3127
|
+
createdAt: string;
|
3128
|
+
updatedAt: string;
|
3129
|
+
deletedAt: string | null;
|
3130
3130
|
entity: string;
|
3131
3131
|
};
|
3132
3132
|
}, {
|
3133
3133
|
id: string;
|
3134
3134
|
description: string;
|
3135
|
-
createdAt:
|
3136
|
-
updatedAt:
|
3137
|
-
deletedAt:
|
3135
|
+
createdAt: string;
|
3136
|
+
updatedAt: string;
|
3137
|
+
deletedAt: string | null;
|
3138
3138
|
entityId: string;
|
3139
3139
|
entityType: {
|
3140
3140
|
id: string;
|
3141
3141
|
description: string | null;
|
3142
|
-
createdAt:
|
3143
|
-
updatedAt:
|
3144
|
-
deletedAt:
|
3142
|
+
createdAt: string;
|
3143
|
+
updatedAt: string;
|
3144
|
+
deletedAt: string | null;
|
3145
3145
|
entity: string;
|
3146
3146
|
};
|
3147
3147
|
}>, "many">>;
|
@@ -3150,14 +3150,14 @@ export declare const cxLogContract: {
|
|
3150
3150
|
channel: string | null;
|
3151
3151
|
address: string | null;
|
3152
3152
|
name: string;
|
3153
|
-
createdAt:
|
3154
|
-
updatedAt:
|
3155
|
-
deletedAt:
|
3153
|
+
createdAt: string;
|
3154
|
+
updatedAt: string;
|
3155
|
+
deletedAt: string | null;
|
3156
3156
|
customFields: {
|
3157
3157
|
id: string;
|
3158
|
-
createdAt:
|
3159
|
-
updatedAt:
|
3160
|
-
deletedAt:
|
3158
|
+
createdAt: string;
|
3159
|
+
updatedAt: string;
|
3160
|
+
deletedAt: string | null;
|
3161
3161
|
attribute: {
|
3162
3162
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3163
3163
|
id: string;
|
@@ -3175,7 +3175,7 @@ export declare const cxLogContract: {
|
|
3175
3175
|
textValue: string | null;
|
3176
3176
|
booleanValue: boolean | null;
|
3177
3177
|
numberValue: number | null;
|
3178
|
-
dateValue:
|
3178
|
+
dateValue: string | null;
|
3179
3179
|
uploads: {
|
3180
3180
|
id: string;
|
3181
3181
|
createdAt: string;
|
@@ -3218,31 +3218,31 @@ export declare const cxLogContract: {
|
|
3218
3218
|
id: string;
|
3219
3219
|
isPrimary: boolean;
|
3220
3220
|
email: string;
|
3221
|
-
createdAt:
|
3222
|
-
updatedAt:
|
3223
|
-
deletedAt:
|
3221
|
+
createdAt: string;
|
3222
|
+
updatedAt: string;
|
3223
|
+
deletedAt: string | null;
|
3224
3224
|
}[];
|
3225
3225
|
contactPhones: {
|
3226
3226
|
id: string;
|
3227
3227
|
isPrimary: boolean;
|
3228
|
-
createdAt:
|
3229
|
-
updatedAt:
|
3230
|
-
deletedAt:
|
3228
|
+
createdAt: string;
|
3229
|
+
updatedAt: string;
|
3230
|
+
deletedAt: string | null;
|
3231
3231
|
phone: string;
|
3232
3232
|
}[];
|
3233
3233
|
activityLogs?: {
|
3234
3234
|
id: string;
|
3235
3235
|
description: string;
|
3236
|
-
createdAt:
|
3237
|
-
updatedAt:
|
3238
|
-
deletedAt:
|
3236
|
+
createdAt: string;
|
3237
|
+
updatedAt: string;
|
3238
|
+
deletedAt: string | null;
|
3239
3239
|
entityId: string;
|
3240
3240
|
entityType: {
|
3241
3241
|
id: string;
|
3242
3242
|
description: string | null;
|
3243
|
-
createdAt:
|
3244
|
-
updatedAt:
|
3245
|
-
deletedAt:
|
3243
|
+
createdAt: string;
|
3244
|
+
updatedAt: string;
|
3245
|
+
deletedAt: string | null;
|
3246
3246
|
entity: string;
|
3247
3247
|
};
|
3248
3248
|
}[] | undefined;
|
@@ -3251,14 +3251,14 @@ export declare const cxLogContract: {
|
|
3251
3251
|
channel: string | null;
|
3252
3252
|
address: string | null;
|
3253
3253
|
name: string;
|
3254
|
-
createdAt:
|
3255
|
-
updatedAt:
|
3256
|
-
deletedAt:
|
3254
|
+
createdAt: string;
|
3255
|
+
updatedAt: string;
|
3256
|
+
deletedAt: string | null;
|
3257
3257
|
customFields: {
|
3258
3258
|
id: string;
|
3259
|
-
createdAt:
|
3260
|
-
updatedAt:
|
3261
|
-
deletedAt:
|
3259
|
+
createdAt: string;
|
3260
|
+
updatedAt: string;
|
3261
|
+
deletedAt: string | null;
|
3262
3262
|
attribute: {
|
3263
3263
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3264
3264
|
id: string;
|
@@ -3276,7 +3276,7 @@ export declare const cxLogContract: {
|
|
3276
3276
|
textValue: string | null;
|
3277
3277
|
booleanValue: boolean | null;
|
3278
3278
|
numberValue: number | null;
|
3279
|
-
dateValue:
|
3279
|
+
dateValue: string | null;
|
3280
3280
|
uploads: {
|
3281
3281
|
id: string;
|
3282
3282
|
createdAt: string;
|
@@ -3319,120 +3319,120 @@ export declare const cxLogContract: {
|
|
3319
3319
|
id: string;
|
3320
3320
|
isPrimary: boolean;
|
3321
3321
|
email: string;
|
3322
|
-
createdAt:
|
3323
|
-
updatedAt:
|
3324
|
-
deletedAt:
|
3322
|
+
createdAt: string;
|
3323
|
+
updatedAt: string;
|
3324
|
+
deletedAt: string | null;
|
3325
3325
|
}[];
|
3326
3326
|
contactPhones: {
|
3327
3327
|
id: string;
|
3328
3328
|
isPrimary: boolean;
|
3329
|
-
createdAt:
|
3330
|
-
updatedAt:
|
3331
|
-
deletedAt:
|
3329
|
+
createdAt: string;
|
3330
|
+
updatedAt: string;
|
3331
|
+
deletedAt: string | null;
|
3332
3332
|
phone: string;
|
3333
3333
|
}[];
|
3334
3334
|
activityLogs?: {
|
3335
3335
|
id: string;
|
3336
3336
|
description: string;
|
3337
|
-
createdAt:
|
3338
|
-
updatedAt:
|
3339
|
-
deletedAt:
|
3337
|
+
createdAt: string;
|
3338
|
+
updatedAt: string;
|
3339
|
+
deletedAt: string | null;
|
3340
3340
|
entityId: string;
|
3341
3341
|
entityType: {
|
3342
3342
|
id: string;
|
3343
3343
|
description: string | null;
|
3344
|
-
createdAt:
|
3345
|
-
updatedAt:
|
3346
|
-
deletedAt:
|
3344
|
+
createdAt: string;
|
3345
|
+
updatedAt: string;
|
3346
|
+
deletedAt: string | null;
|
3347
3347
|
entity: string;
|
3348
3348
|
};
|
3349
3349
|
}[] | undefined;
|
3350
3350
|
}>>;
|
3351
3351
|
agent: z.ZodNullable<z.ZodObject<{
|
3352
3352
|
id: z.ZodString;
|
3353
|
-
createdAt: z.
|
3354
|
-
updatedAt: z.
|
3355
|
-
deletedAt: z.ZodNullable<z.
|
3353
|
+
createdAt: z.ZodString;
|
3354
|
+
updatedAt: z.ZodString;
|
3355
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3356
3356
|
name: z.ZodString;
|
3357
3357
|
email: z.ZodString;
|
3358
|
-
emailVerifiedAt: z.ZodNullable<z.
|
3358
|
+
emailVerifiedAt: z.ZodNullable<z.ZodString>;
|
3359
3359
|
password: z.ZodString;
|
3360
3360
|
address: z.ZodNullable<z.ZodString>;
|
3361
3361
|
phone: z.ZodNullable<z.ZodString>;
|
3362
3362
|
notificationCount: z.ZodNullable<z.ZodNumber>;
|
3363
3363
|
roles: z.ZodArray<z.ZodObject<{
|
3364
3364
|
id: z.ZodString;
|
3365
|
-
createdAt: z.
|
3366
|
-
updatedAt: z.
|
3367
|
-
deletedAt: z.ZodNullable<z.
|
3365
|
+
createdAt: z.ZodString;
|
3366
|
+
updatedAt: z.ZodString;
|
3367
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3368
3368
|
systemName: z.ZodString;
|
3369
3369
|
displayName: z.ZodString;
|
3370
3370
|
description: z.ZodNullable<z.ZodString>;
|
3371
3371
|
permissions: z.ZodArray<z.ZodObject<{
|
3372
3372
|
id: z.ZodString;
|
3373
|
-
createdAt: z.
|
3374
|
-
updatedAt: z.
|
3375
|
-
deletedAt: z.ZodNullable<z.
|
3373
|
+
createdAt: z.ZodString;
|
3374
|
+
updatedAt: z.ZodString;
|
3375
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3376
3376
|
systemName: z.ZodString;
|
3377
3377
|
displayName: z.ZodString;
|
3378
3378
|
description: z.ZodNullable<z.ZodString>;
|
3379
3379
|
}, "strip", z.ZodTypeAny, {
|
3380
3380
|
id: string;
|
3381
3381
|
description: string | null;
|
3382
|
-
createdAt:
|
3383
|
-
updatedAt:
|
3384
|
-
deletedAt:
|
3382
|
+
createdAt: string;
|
3383
|
+
updatedAt: string;
|
3384
|
+
deletedAt: string | null;
|
3385
3385
|
systemName: string;
|
3386
3386
|
displayName: string;
|
3387
3387
|
}, {
|
3388
3388
|
id: string;
|
3389
3389
|
description: string | null;
|
3390
|
-
createdAt:
|
3391
|
-
updatedAt:
|
3392
|
-
deletedAt:
|
3390
|
+
createdAt: string;
|
3391
|
+
updatedAt: string;
|
3392
|
+
deletedAt: string | null;
|
3393
3393
|
systemName: string;
|
3394
3394
|
displayName: string;
|
3395
3395
|
}>, "many">;
|
3396
3396
|
}, "strip", z.ZodTypeAny, {
|
3397
3397
|
id: string;
|
3398
3398
|
description: string | null;
|
3399
|
-
createdAt:
|
3400
|
-
updatedAt:
|
3401
|
-
deletedAt:
|
3399
|
+
createdAt: string;
|
3400
|
+
updatedAt: string;
|
3401
|
+
deletedAt: string | null;
|
3402
3402
|
systemName: string;
|
3403
3403
|
displayName: string;
|
3404
3404
|
permissions: {
|
3405
3405
|
id: string;
|
3406
3406
|
description: string | null;
|
3407
|
-
createdAt:
|
3408
|
-
updatedAt:
|
3409
|
-
deletedAt:
|
3407
|
+
createdAt: string;
|
3408
|
+
updatedAt: string;
|
3409
|
+
deletedAt: string | null;
|
3410
3410
|
systemName: string;
|
3411
3411
|
displayName: string;
|
3412
3412
|
}[];
|
3413
3413
|
}, {
|
3414
3414
|
id: string;
|
3415
3415
|
description: string | null;
|
3416
|
-
createdAt:
|
3417
|
-
updatedAt:
|
3418
|
-
deletedAt:
|
3416
|
+
createdAt: string;
|
3417
|
+
updatedAt: string;
|
3418
|
+
deletedAt: string | null;
|
3419
3419
|
systemName: string;
|
3420
3420
|
displayName: string;
|
3421
3421
|
permissions: {
|
3422
3422
|
id: string;
|
3423
3423
|
description: string | null;
|
3424
|
-
createdAt:
|
3425
|
-
updatedAt:
|
3426
|
-
deletedAt:
|
3424
|
+
createdAt: string;
|
3425
|
+
updatedAt: string;
|
3426
|
+
deletedAt: string | null;
|
3427
3427
|
systemName: string;
|
3428
3428
|
displayName: string;
|
3429
3429
|
}[];
|
3430
3430
|
}>, "many">;
|
3431
3431
|
extension: z.ZodOptional<z.ZodObject<{
|
3432
3432
|
id: z.ZodString;
|
3433
|
-
createdAt: z.
|
3434
|
-
updatedAt: z.
|
3435
|
-
deletedAt: z.ZodNullable<z.
|
3433
|
+
createdAt: z.ZodString;
|
3434
|
+
updatedAt: z.ZodString;
|
3435
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3436
3436
|
userId: z.ZodNullable<z.ZodString>;
|
3437
3437
|
sipServerUrl: z.ZodString;
|
3438
3438
|
sipUserName: z.ZodString;
|
@@ -3441,9 +3441,9 @@ export declare const cxLogContract: {
|
|
3441
3441
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
3442
3442
|
}, "strip", z.ZodTypeAny, {
|
3443
3443
|
id: string;
|
3444
|
-
createdAt:
|
3445
|
-
updatedAt:
|
3446
|
-
deletedAt:
|
3444
|
+
createdAt: string;
|
3445
|
+
updatedAt: string;
|
3446
|
+
deletedAt: string | null;
|
3447
3447
|
userId: string | null;
|
3448
3448
|
sipServerUrl: string;
|
3449
3449
|
sipUserName: string;
|
@@ -3452,9 +3452,9 @@ export declare const cxLogContract: {
|
|
3452
3452
|
telephonySignature: string | null;
|
3453
3453
|
}, {
|
3454
3454
|
id: string;
|
3455
|
-
createdAt:
|
3456
|
-
updatedAt:
|
3457
|
-
deletedAt:
|
3455
|
+
createdAt: string;
|
3456
|
+
updatedAt: string;
|
3457
|
+
deletedAt: string | null;
|
3458
3458
|
userId: string | null;
|
3459
3459
|
sipServerUrl: string;
|
3460
3460
|
sipUserName: string;
|
@@ -3467,36 +3467,36 @@ export declare const cxLogContract: {
|
|
3467
3467
|
address: string | null;
|
3468
3468
|
name: string;
|
3469
3469
|
email: string;
|
3470
|
-
createdAt:
|
3471
|
-
updatedAt:
|
3472
|
-
deletedAt:
|
3473
|
-
emailVerifiedAt:
|
3470
|
+
createdAt: string;
|
3471
|
+
updatedAt: string;
|
3472
|
+
deletedAt: string | null;
|
3473
|
+
emailVerifiedAt: string | null;
|
3474
3474
|
password: string;
|
3475
3475
|
phone: string | null;
|
3476
3476
|
notificationCount: number | null;
|
3477
3477
|
roles: {
|
3478
3478
|
id: string;
|
3479
3479
|
description: string | null;
|
3480
|
-
createdAt:
|
3481
|
-
updatedAt:
|
3482
|
-
deletedAt:
|
3480
|
+
createdAt: string;
|
3481
|
+
updatedAt: string;
|
3482
|
+
deletedAt: string | null;
|
3483
3483
|
systemName: string;
|
3484
3484
|
displayName: string;
|
3485
3485
|
permissions: {
|
3486
3486
|
id: string;
|
3487
3487
|
description: string | null;
|
3488
|
-
createdAt:
|
3489
|
-
updatedAt:
|
3490
|
-
deletedAt:
|
3488
|
+
createdAt: string;
|
3489
|
+
updatedAt: string;
|
3490
|
+
deletedAt: string | null;
|
3491
3491
|
systemName: string;
|
3492
3492
|
displayName: string;
|
3493
3493
|
}[];
|
3494
3494
|
}[];
|
3495
3495
|
extension?: {
|
3496
3496
|
id: string;
|
3497
|
-
createdAt:
|
3498
|
-
updatedAt:
|
3499
|
-
deletedAt:
|
3497
|
+
createdAt: string;
|
3498
|
+
updatedAt: string;
|
3499
|
+
deletedAt: string | null;
|
3500
3500
|
userId: string | null;
|
3501
3501
|
sipServerUrl: string;
|
3502
3502
|
sipUserName: string;
|
@@ -3509,36 +3509,36 @@ export declare const cxLogContract: {
|
|
3509
3509
|
address: string | null;
|
3510
3510
|
name: string;
|
3511
3511
|
email: string;
|
3512
|
-
createdAt:
|
3513
|
-
updatedAt:
|
3514
|
-
deletedAt:
|
3515
|
-
emailVerifiedAt:
|
3512
|
+
createdAt: string;
|
3513
|
+
updatedAt: string;
|
3514
|
+
deletedAt: string | null;
|
3515
|
+
emailVerifiedAt: string | null;
|
3516
3516
|
password: string;
|
3517
3517
|
phone: string | null;
|
3518
3518
|
notificationCount: number | null;
|
3519
3519
|
roles: {
|
3520
3520
|
id: string;
|
3521
3521
|
description: string | null;
|
3522
|
-
createdAt:
|
3523
|
-
updatedAt:
|
3524
|
-
deletedAt:
|
3522
|
+
createdAt: string;
|
3523
|
+
updatedAt: string;
|
3524
|
+
deletedAt: string | null;
|
3525
3525
|
systemName: string;
|
3526
3526
|
displayName: string;
|
3527
3527
|
permissions: {
|
3528
3528
|
id: string;
|
3529
3529
|
description: string | null;
|
3530
|
-
createdAt:
|
3531
|
-
updatedAt:
|
3532
|
-
deletedAt:
|
3530
|
+
createdAt: string;
|
3531
|
+
updatedAt: string;
|
3532
|
+
deletedAt: string | null;
|
3533
3533
|
systemName: string;
|
3534
3534
|
displayName: string;
|
3535
3535
|
}[];
|
3536
3536
|
}[];
|
3537
3537
|
extension?: {
|
3538
3538
|
id: string;
|
3539
|
-
createdAt:
|
3540
|
-
updatedAt:
|
3541
|
-
deletedAt:
|
3539
|
+
createdAt: string;
|
3540
|
+
updatedAt: string;
|
3541
|
+
deletedAt: string | null;
|
3542
3542
|
userId: string | null;
|
3543
3543
|
sipServerUrl: string;
|
3544
3544
|
sipUserName: string;
|
@@ -3560,14 +3560,14 @@ export declare const cxLogContract: {
|
|
3560
3560
|
channel: string | null;
|
3561
3561
|
address: string | null;
|
3562
3562
|
name: string;
|
3563
|
-
createdAt:
|
3564
|
-
updatedAt:
|
3565
|
-
deletedAt:
|
3563
|
+
createdAt: string;
|
3564
|
+
updatedAt: string;
|
3565
|
+
deletedAt: string | null;
|
3566
3566
|
customFields: {
|
3567
3567
|
id: string;
|
3568
|
-
createdAt:
|
3569
|
-
updatedAt:
|
3570
|
-
deletedAt:
|
3568
|
+
createdAt: string;
|
3569
|
+
updatedAt: string;
|
3570
|
+
deletedAt: string | null;
|
3571
3571
|
attribute: {
|
3572
3572
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3573
3573
|
id: string;
|
@@ -3585,7 +3585,7 @@ export declare const cxLogContract: {
|
|
3585
3585
|
textValue: string | null;
|
3586
3586
|
booleanValue: boolean | null;
|
3587
3587
|
numberValue: number | null;
|
3588
|
-
dateValue:
|
3588
|
+
dateValue: string | null;
|
3589
3589
|
uploads: {
|
3590
3590
|
id: string;
|
3591
3591
|
createdAt: string;
|
@@ -3628,31 +3628,31 @@ export declare const cxLogContract: {
|
|
3628
3628
|
id: string;
|
3629
3629
|
isPrimary: boolean;
|
3630
3630
|
email: string;
|
3631
|
-
createdAt:
|
3632
|
-
updatedAt:
|
3633
|
-
deletedAt:
|
3631
|
+
createdAt: string;
|
3632
|
+
updatedAt: string;
|
3633
|
+
deletedAt: string | null;
|
3634
3634
|
}[];
|
3635
3635
|
contactPhones: {
|
3636
3636
|
id: string;
|
3637
3637
|
isPrimary: boolean;
|
3638
|
-
createdAt:
|
3639
|
-
updatedAt:
|
3640
|
-
deletedAt:
|
3638
|
+
createdAt: string;
|
3639
|
+
updatedAt: string;
|
3640
|
+
deletedAt: string | null;
|
3641
3641
|
phone: string;
|
3642
3642
|
}[];
|
3643
3643
|
activityLogs?: {
|
3644
3644
|
id: string;
|
3645
3645
|
description: string;
|
3646
|
-
createdAt:
|
3647
|
-
updatedAt:
|
3648
|
-
deletedAt:
|
3646
|
+
createdAt: string;
|
3647
|
+
updatedAt: string;
|
3648
|
+
deletedAt: string | null;
|
3649
3649
|
entityId: string;
|
3650
3650
|
entityType: {
|
3651
3651
|
id: string;
|
3652
3652
|
description: string | null;
|
3653
|
-
createdAt:
|
3654
|
-
updatedAt:
|
3655
|
-
deletedAt:
|
3653
|
+
createdAt: string;
|
3654
|
+
updatedAt: string;
|
3655
|
+
deletedAt: string | null;
|
3656
3656
|
entity: string;
|
3657
3657
|
};
|
3658
3658
|
}[] | undefined;
|
@@ -3694,44 +3694,44 @@ export declare const cxLogContract: {
|
|
3694
3694
|
room: {
|
3695
3695
|
id: string;
|
3696
3696
|
direction: "incoming" | "outgoing" | "system";
|
3697
|
-
createdAt:
|
3698
|
-
updatedAt:
|
3699
|
-
deletedAt:
|
3697
|
+
createdAt: string;
|
3698
|
+
updatedAt: string;
|
3699
|
+
deletedAt: string | null;
|
3700
3700
|
actor: {
|
3701
3701
|
id: string;
|
3702
3702
|
address: string | null;
|
3703
3703
|
name: string;
|
3704
3704
|
email: string;
|
3705
|
-
createdAt:
|
3706
|
-
updatedAt:
|
3707
|
-
deletedAt:
|
3708
|
-
emailVerifiedAt:
|
3705
|
+
createdAt: string;
|
3706
|
+
updatedAt: string;
|
3707
|
+
deletedAt: string | null;
|
3708
|
+
emailVerifiedAt: string | null;
|
3709
3709
|
password: string;
|
3710
3710
|
phone: string | null;
|
3711
3711
|
notificationCount: number | null;
|
3712
3712
|
roles: {
|
3713
3713
|
id: string;
|
3714
3714
|
description: string | null;
|
3715
|
-
createdAt:
|
3716
|
-
updatedAt:
|
3717
|
-
deletedAt:
|
3715
|
+
createdAt: string;
|
3716
|
+
updatedAt: string;
|
3717
|
+
deletedAt: string | null;
|
3718
3718
|
systemName: string;
|
3719
3719
|
displayName: string;
|
3720
3720
|
permissions: {
|
3721
3721
|
id: string;
|
3722
3722
|
description: string | null;
|
3723
|
-
createdAt:
|
3724
|
-
updatedAt:
|
3725
|
-
deletedAt:
|
3723
|
+
createdAt: string;
|
3724
|
+
updatedAt: string;
|
3725
|
+
deletedAt: string | null;
|
3726
3726
|
systemName: string;
|
3727
3727
|
displayName: string;
|
3728
3728
|
}[];
|
3729
3729
|
}[];
|
3730
3730
|
extension?: {
|
3731
3731
|
id: string;
|
3732
|
-
createdAt:
|
3733
|
-
updatedAt:
|
3734
|
-
deletedAt:
|
3732
|
+
createdAt: string;
|
3733
|
+
updatedAt: string;
|
3734
|
+
deletedAt: string | null;
|
3735
3735
|
userId: string | null;
|
3736
3736
|
sipServerUrl: string;
|
3737
3737
|
sipUserName: string;
|
@@ -3743,9 +3743,9 @@ export declare const cxLogContract: {
|
|
3743
3743
|
firstResponseTime: number;
|
3744
3744
|
lastMessage: string;
|
3745
3745
|
handleTime: number;
|
3746
|
-
closeAt:
|
3746
|
+
closeAt: string;
|
3747
3747
|
unreadCount: number;
|
3748
|
-
firstResponseAt:
|
3748
|
+
firstResponseAt: string;
|
3749
3749
|
isLatest: boolean;
|
3750
3750
|
platformContact: {
|
3751
3751
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -3764,14 +3764,14 @@ export declare const cxLogContract: {
|
|
3764
3764
|
channel: string | null;
|
3765
3765
|
address: string | null;
|
3766
3766
|
name: string;
|
3767
|
-
createdAt:
|
3768
|
-
updatedAt:
|
3769
|
-
deletedAt:
|
3767
|
+
createdAt: string;
|
3768
|
+
updatedAt: string;
|
3769
|
+
deletedAt: string | null;
|
3770
3770
|
customFields: {
|
3771
3771
|
id: string;
|
3772
|
-
createdAt:
|
3773
|
-
updatedAt:
|
3774
|
-
deletedAt:
|
3772
|
+
createdAt: string;
|
3773
|
+
updatedAt: string;
|
3774
|
+
deletedAt: string | null;
|
3775
3775
|
attribute: {
|
3776
3776
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3777
3777
|
id: string;
|
@@ -3789,7 +3789,7 @@ export declare const cxLogContract: {
|
|
3789
3789
|
textValue: string | null;
|
3790
3790
|
booleanValue: boolean | null;
|
3791
3791
|
numberValue: number | null;
|
3792
|
-
dateValue:
|
3792
|
+
dateValue: string | null;
|
3793
3793
|
uploads: {
|
3794
3794
|
id: string;
|
3795
3795
|
createdAt: string;
|
@@ -3832,31 +3832,31 @@ export declare const cxLogContract: {
|
|
3832
3832
|
id: string;
|
3833
3833
|
isPrimary: boolean;
|
3834
3834
|
email: string;
|
3835
|
-
createdAt:
|
3836
|
-
updatedAt:
|
3837
|
-
deletedAt:
|
3835
|
+
createdAt: string;
|
3836
|
+
updatedAt: string;
|
3837
|
+
deletedAt: string | null;
|
3838
3838
|
}[];
|
3839
3839
|
contactPhones: {
|
3840
3840
|
id: string;
|
3841
3841
|
isPrimary: boolean;
|
3842
|
-
createdAt:
|
3843
|
-
updatedAt:
|
3844
|
-
deletedAt:
|
3842
|
+
createdAt: string;
|
3843
|
+
updatedAt: string;
|
3844
|
+
deletedAt: string | null;
|
3845
3845
|
phone: string;
|
3846
3846
|
}[];
|
3847
3847
|
activityLogs?: {
|
3848
3848
|
id: string;
|
3849
3849
|
description: string;
|
3850
|
-
createdAt:
|
3851
|
-
updatedAt:
|
3852
|
-
deletedAt:
|
3850
|
+
createdAt: string;
|
3851
|
+
updatedAt: string;
|
3852
|
+
deletedAt: string | null;
|
3853
3853
|
entityId: string;
|
3854
3854
|
entityType: {
|
3855
3855
|
id: string;
|
3856
3856
|
description: string | null;
|
3857
|
-
createdAt:
|
3858
|
-
updatedAt:
|
3859
|
-
deletedAt:
|
3857
|
+
createdAt: string;
|
3858
|
+
updatedAt: string;
|
3859
|
+
deletedAt: string | null;
|
3860
3860
|
entity: string;
|
3861
3861
|
};
|
3862
3862
|
}[] | undefined;
|
@@ -3869,36 +3869,36 @@ export declare const cxLogContract: {
|
|
3869
3869
|
address: string | null;
|
3870
3870
|
name: string;
|
3871
3871
|
email: string;
|
3872
|
-
createdAt:
|
3873
|
-
updatedAt:
|
3874
|
-
deletedAt:
|
3875
|
-
emailVerifiedAt:
|
3872
|
+
createdAt: string;
|
3873
|
+
updatedAt: string;
|
3874
|
+
deletedAt: string | null;
|
3875
|
+
emailVerifiedAt: string | null;
|
3876
3876
|
password: string;
|
3877
3877
|
phone: string | null;
|
3878
3878
|
notificationCount: number | null;
|
3879
3879
|
roles: {
|
3880
3880
|
id: string;
|
3881
3881
|
description: string | null;
|
3882
|
-
createdAt:
|
3883
|
-
updatedAt:
|
3884
|
-
deletedAt:
|
3882
|
+
createdAt: string;
|
3883
|
+
updatedAt: string;
|
3884
|
+
deletedAt: string | null;
|
3885
3885
|
systemName: string;
|
3886
3886
|
displayName: string;
|
3887
3887
|
permissions: {
|
3888
3888
|
id: string;
|
3889
3889
|
description: string | null;
|
3890
|
-
createdAt:
|
3891
|
-
updatedAt:
|
3892
|
-
deletedAt:
|
3890
|
+
createdAt: string;
|
3891
|
+
updatedAt: string;
|
3892
|
+
deletedAt: string | null;
|
3893
3893
|
systemName: string;
|
3894
3894
|
displayName: string;
|
3895
3895
|
}[];
|
3896
3896
|
}[];
|
3897
3897
|
extension?: {
|
3898
3898
|
id: string;
|
3899
|
-
createdAt:
|
3900
|
-
updatedAt:
|
3901
|
-
deletedAt:
|
3899
|
+
createdAt: string;
|
3900
|
+
updatedAt: string;
|
3901
|
+
deletedAt: string | null;
|
3902
3902
|
userId: string | null;
|
3903
3903
|
sipServerUrl: string;
|
3904
3904
|
sipUserName: string;
|
@@ -3931,36 +3931,36 @@ export declare const cxLogContract: {
|
|
3931
3931
|
address: string | null;
|
3932
3932
|
name: string;
|
3933
3933
|
email: string;
|
3934
|
-
createdAt:
|
3935
|
-
updatedAt:
|
3936
|
-
deletedAt:
|
3937
|
-
emailVerifiedAt:
|
3934
|
+
createdAt: string;
|
3935
|
+
updatedAt: string;
|
3936
|
+
deletedAt: string | null;
|
3937
|
+
emailVerifiedAt: string | null;
|
3938
3938
|
password: string;
|
3939
3939
|
phone: string | null;
|
3940
3940
|
notificationCount: number | null;
|
3941
3941
|
roles: {
|
3942
3942
|
id: string;
|
3943
3943
|
description: string | null;
|
3944
|
-
createdAt:
|
3945
|
-
updatedAt:
|
3946
|
-
deletedAt:
|
3944
|
+
createdAt: string;
|
3945
|
+
updatedAt: string;
|
3946
|
+
deletedAt: string | null;
|
3947
3947
|
systemName: string;
|
3948
3948
|
displayName: string;
|
3949
3949
|
permissions: {
|
3950
3950
|
id: string;
|
3951
3951
|
description: string | null;
|
3952
|
-
createdAt:
|
3953
|
-
updatedAt:
|
3954
|
-
deletedAt:
|
3952
|
+
createdAt: string;
|
3953
|
+
updatedAt: string;
|
3954
|
+
deletedAt: string | null;
|
3955
3955
|
systemName: string;
|
3956
3956
|
displayName: string;
|
3957
3957
|
}[];
|
3958
3958
|
}[];
|
3959
3959
|
extension?: {
|
3960
3960
|
id: string;
|
3961
|
-
createdAt:
|
3962
|
-
updatedAt:
|
3963
|
-
deletedAt:
|
3961
|
+
createdAt: string;
|
3962
|
+
updatedAt: string;
|
3963
|
+
deletedAt: string | null;
|
3964
3964
|
userId: string | null;
|
3965
3965
|
sipServerUrl: string;
|
3966
3966
|
sipUserName: string;
|
@@ -4004,36 +4004,36 @@ export declare const cxLogContract: {
|
|
4004
4004
|
address: string | null;
|
4005
4005
|
name: string;
|
4006
4006
|
email: string;
|
4007
|
-
createdAt:
|
4008
|
-
updatedAt:
|
4009
|
-
deletedAt:
|
4010
|
-
emailVerifiedAt:
|
4007
|
+
createdAt: string;
|
4008
|
+
updatedAt: string;
|
4009
|
+
deletedAt: string | null;
|
4010
|
+
emailVerifiedAt: string | null;
|
4011
4011
|
password: string;
|
4012
4012
|
phone: string | null;
|
4013
4013
|
notificationCount: number | null;
|
4014
4014
|
roles: {
|
4015
4015
|
id: string;
|
4016
4016
|
description: string | null;
|
4017
|
-
createdAt:
|
4018
|
-
updatedAt:
|
4019
|
-
deletedAt:
|
4017
|
+
createdAt: string;
|
4018
|
+
updatedAt: string;
|
4019
|
+
deletedAt: string | null;
|
4020
4020
|
systemName: string;
|
4021
4021
|
displayName: string;
|
4022
4022
|
permissions: {
|
4023
4023
|
id: string;
|
4024
4024
|
description: string | null;
|
4025
|
-
createdAt:
|
4026
|
-
updatedAt:
|
4027
|
-
deletedAt:
|
4025
|
+
createdAt: string;
|
4026
|
+
updatedAt: string;
|
4027
|
+
deletedAt: string | null;
|
4028
4028
|
systemName: string;
|
4029
4029
|
displayName: string;
|
4030
4030
|
}[];
|
4031
4031
|
}[];
|
4032
4032
|
extension?: {
|
4033
4033
|
id: string;
|
4034
|
-
createdAt:
|
4035
|
-
updatedAt:
|
4036
|
-
deletedAt:
|
4034
|
+
createdAt: string;
|
4035
|
+
updatedAt: string;
|
4036
|
+
deletedAt: string | null;
|
4037
4037
|
userId: string | null;
|
4038
4038
|
sipServerUrl: string;
|
4039
4039
|
sipUserName: string;
|
@@ -4055,14 +4055,14 @@ export declare const cxLogContract: {
|
|
4055
4055
|
channel: string | null;
|
4056
4056
|
address: string | null;
|
4057
4057
|
name: string;
|
4058
|
-
createdAt:
|
4059
|
-
updatedAt:
|
4060
|
-
deletedAt:
|
4058
|
+
createdAt: string;
|
4059
|
+
updatedAt: string;
|
4060
|
+
deletedAt: string | null;
|
4061
4061
|
customFields: {
|
4062
4062
|
id: string;
|
4063
|
-
createdAt:
|
4064
|
-
updatedAt:
|
4065
|
-
deletedAt:
|
4063
|
+
createdAt: string;
|
4064
|
+
updatedAt: string;
|
4065
|
+
deletedAt: string | null;
|
4066
4066
|
attribute: {
|
4067
4067
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4068
4068
|
id: string;
|
@@ -4080,7 +4080,7 @@ export declare const cxLogContract: {
|
|
4080
4080
|
textValue: string | null;
|
4081
4081
|
booleanValue: boolean | null;
|
4082
4082
|
numberValue: number | null;
|
4083
|
-
dateValue:
|
4083
|
+
dateValue: string | null;
|
4084
4084
|
uploads: {
|
4085
4085
|
id: string;
|
4086
4086
|
createdAt: string;
|
@@ -4123,31 +4123,31 @@ export declare const cxLogContract: {
|
|
4123
4123
|
id: string;
|
4124
4124
|
isPrimary: boolean;
|
4125
4125
|
email: string;
|
4126
|
-
createdAt:
|
4127
|
-
updatedAt:
|
4128
|
-
deletedAt:
|
4126
|
+
createdAt: string;
|
4127
|
+
updatedAt: string;
|
4128
|
+
deletedAt: string | null;
|
4129
4129
|
}[];
|
4130
4130
|
contactPhones: {
|
4131
4131
|
id: string;
|
4132
4132
|
isPrimary: boolean;
|
4133
|
-
createdAt:
|
4134
|
-
updatedAt:
|
4135
|
-
deletedAt:
|
4133
|
+
createdAt: string;
|
4134
|
+
updatedAt: string;
|
4135
|
+
deletedAt: string | null;
|
4136
4136
|
phone: string;
|
4137
4137
|
}[];
|
4138
4138
|
activityLogs?: {
|
4139
4139
|
id: string;
|
4140
4140
|
description: string;
|
4141
|
-
createdAt:
|
4142
|
-
updatedAt:
|
4143
|
-
deletedAt:
|
4141
|
+
createdAt: string;
|
4142
|
+
updatedAt: string;
|
4143
|
+
deletedAt: string | null;
|
4144
4144
|
entityId: string;
|
4145
4145
|
entityType: {
|
4146
4146
|
id: string;
|
4147
4147
|
description: string | null;
|
4148
|
-
createdAt:
|
4149
|
-
updatedAt:
|
4150
|
-
deletedAt:
|
4148
|
+
createdAt: string;
|
4149
|
+
updatedAt: string;
|
4150
|
+
deletedAt: string | null;
|
4151
4151
|
entity: string;
|
4152
4152
|
};
|
4153
4153
|
}[] | undefined;
|
@@ -4189,44 +4189,44 @@ export declare const cxLogContract: {
|
|
4189
4189
|
room: {
|
4190
4190
|
id: string;
|
4191
4191
|
direction: "incoming" | "outgoing" | "system";
|
4192
|
-
createdAt:
|
4193
|
-
updatedAt:
|
4194
|
-
deletedAt:
|
4192
|
+
createdAt: string;
|
4193
|
+
updatedAt: string;
|
4194
|
+
deletedAt: string | null;
|
4195
4195
|
actor: {
|
4196
4196
|
id: string;
|
4197
4197
|
address: string | null;
|
4198
4198
|
name: string;
|
4199
4199
|
email: string;
|
4200
|
-
createdAt:
|
4201
|
-
updatedAt:
|
4202
|
-
deletedAt:
|
4203
|
-
emailVerifiedAt:
|
4200
|
+
createdAt: string;
|
4201
|
+
updatedAt: string;
|
4202
|
+
deletedAt: string | null;
|
4203
|
+
emailVerifiedAt: string | null;
|
4204
4204
|
password: string;
|
4205
4205
|
phone: string | null;
|
4206
4206
|
notificationCount: number | null;
|
4207
4207
|
roles: {
|
4208
4208
|
id: string;
|
4209
4209
|
description: string | null;
|
4210
|
-
createdAt:
|
4211
|
-
updatedAt:
|
4212
|
-
deletedAt:
|
4210
|
+
createdAt: string;
|
4211
|
+
updatedAt: string;
|
4212
|
+
deletedAt: string | null;
|
4213
4213
|
systemName: string;
|
4214
4214
|
displayName: string;
|
4215
4215
|
permissions: {
|
4216
4216
|
id: string;
|
4217
4217
|
description: string | null;
|
4218
|
-
createdAt:
|
4219
|
-
updatedAt:
|
4220
|
-
deletedAt:
|
4218
|
+
createdAt: string;
|
4219
|
+
updatedAt: string;
|
4220
|
+
deletedAt: string | null;
|
4221
4221
|
systemName: string;
|
4222
4222
|
displayName: string;
|
4223
4223
|
}[];
|
4224
4224
|
}[];
|
4225
4225
|
extension?: {
|
4226
4226
|
id: string;
|
4227
|
-
createdAt:
|
4228
|
-
updatedAt:
|
4229
|
-
deletedAt:
|
4227
|
+
createdAt: string;
|
4228
|
+
updatedAt: string;
|
4229
|
+
deletedAt: string | null;
|
4230
4230
|
userId: string | null;
|
4231
4231
|
sipServerUrl: string;
|
4232
4232
|
sipUserName: string;
|
@@ -4238,9 +4238,9 @@ export declare const cxLogContract: {
|
|
4238
4238
|
firstResponseTime: number;
|
4239
4239
|
lastMessage: string;
|
4240
4240
|
handleTime: number;
|
4241
|
-
closeAt:
|
4241
|
+
closeAt: string;
|
4242
4242
|
unreadCount: number;
|
4243
|
-
firstResponseAt:
|
4243
|
+
firstResponseAt: string;
|
4244
4244
|
isLatest: boolean;
|
4245
4245
|
platformContact: {
|
4246
4246
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -4259,14 +4259,14 @@ export declare const cxLogContract: {
|
|
4259
4259
|
channel: string | null;
|
4260
4260
|
address: string | null;
|
4261
4261
|
name: string;
|
4262
|
-
createdAt:
|
4263
|
-
updatedAt:
|
4264
|
-
deletedAt:
|
4262
|
+
createdAt: string;
|
4263
|
+
updatedAt: string;
|
4264
|
+
deletedAt: string | null;
|
4265
4265
|
customFields: {
|
4266
4266
|
id: string;
|
4267
|
-
createdAt:
|
4268
|
-
updatedAt:
|
4269
|
-
deletedAt:
|
4267
|
+
createdAt: string;
|
4268
|
+
updatedAt: string;
|
4269
|
+
deletedAt: string | null;
|
4270
4270
|
attribute: {
|
4271
4271
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4272
4272
|
id: string;
|
@@ -4284,7 +4284,7 @@ export declare const cxLogContract: {
|
|
4284
4284
|
textValue: string | null;
|
4285
4285
|
booleanValue: boolean | null;
|
4286
4286
|
numberValue: number | null;
|
4287
|
-
dateValue:
|
4287
|
+
dateValue: string | null;
|
4288
4288
|
uploads: {
|
4289
4289
|
id: string;
|
4290
4290
|
createdAt: string;
|
@@ -4327,31 +4327,31 @@ export declare const cxLogContract: {
|
|
4327
4327
|
id: string;
|
4328
4328
|
isPrimary: boolean;
|
4329
4329
|
email: string;
|
4330
|
-
createdAt:
|
4331
|
-
updatedAt:
|
4332
|
-
deletedAt:
|
4330
|
+
createdAt: string;
|
4331
|
+
updatedAt: string;
|
4332
|
+
deletedAt: string | null;
|
4333
4333
|
}[];
|
4334
4334
|
contactPhones: {
|
4335
4335
|
id: string;
|
4336
4336
|
isPrimary: boolean;
|
4337
|
-
createdAt:
|
4338
|
-
updatedAt:
|
4339
|
-
deletedAt:
|
4337
|
+
createdAt: string;
|
4338
|
+
updatedAt: string;
|
4339
|
+
deletedAt: string | null;
|
4340
4340
|
phone: string;
|
4341
4341
|
}[];
|
4342
4342
|
activityLogs?: {
|
4343
4343
|
id: string;
|
4344
4344
|
description: string;
|
4345
|
-
createdAt:
|
4346
|
-
updatedAt:
|
4347
|
-
deletedAt:
|
4345
|
+
createdAt: string;
|
4346
|
+
updatedAt: string;
|
4347
|
+
deletedAt: string | null;
|
4348
4348
|
entityId: string;
|
4349
4349
|
entityType: {
|
4350
4350
|
id: string;
|
4351
4351
|
description: string | null;
|
4352
|
-
createdAt:
|
4353
|
-
updatedAt:
|
4354
|
-
deletedAt:
|
4352
|
+
createdAt: string;
|
4353
|
+
updatedAt: string;
|
4354
|
+
deletedAt: string | null;
|
4355
4355
|
entity: string;
|
4356
4356
|
};
|
4357
4357
|
}[] | undefined;
|
@@ -4364,36 +4364,36 @@ export declare const cxLogContract: {
|
|
4364
4364
|
address: string | null;
|
4365
4365
|
name: string;
|
4366
4366
|
email: string;
|
4367
|
-
createdAt:
|
4368
|
-
updatedAt:
|
4369
|
-
deletedAt:
|
4370
|
-
emailVerifiedAt:
|
4367
|
+
createdAt: string;
|
4368
|
+
updatedAt: string;
|
4369
|
+
deletedAt: string | null;
|
4370
|
+
emailVerifiedAt: string | null;
|
4371
4371
|
password: string;
|
4372
4372
|
phone: string | null;
|
4373
4373
|
notificationCount: number | null;
|
4374
4374
|
roles: {
|
4375
4375
|
id: string;
|
4376
4376
|
description: string | null;
|
4377
|
-
createdAt:
|
4378
|
-
updatedAt:
|
4379
|
-
deletedAt:
|
4377
|
+
createdAt: string;
|
4378
|
+
updatedAt: string;
|
4379
|
+
deletedAt: string | null;
|
4380
4380
|
systemName: string;
|
4381
4381
|
displayName: string;
|
4382
4382
|
permissions: {
|
4383
4383
|
id: string;
|
4384
4384
|
description: string | null;
|
4385
|
-
createdAt:
|
4386
|
-
updatedAt:
|
4387
|
-
deletedAt:
|
4385
|
+
createdAt: string;
|
4386
|
+
updatedAt: string;
|
4387
|
+
deletedAt: string | null;
|
4388
4388
|
systemName: string;
|
4389
4389
|
displayName: string;
|
4390
4390
|
}[];
|
4391
4391
|
}[];
|
4392
4392
|
extension?: {
|
4393
4393
|
id: string;
|
4394
|
-
createdAt:
|
4395
|
-
updatedAt:
|
4396
|
-
deletedAt:
|
4394
|
+
createdAt: string;
|
4395
|
+
updatedAt: string;
|
4396
|
+
deletedAt: string | null;
|
4397
4397
|
userId: string | null;
|
4398
4398
|
sipServerUrl: string;
|
4399
4399
|
sipUserName: string;
|
@@ -4426,36 +4426,36 @@ export declare const cxLogContract: {
|
|
4426
4426
|
address: string | null;
|
4427
4427
|
name: string;
|
4428
4428
|
email: string;
|
4429
|
-
createdAt:
|
4430
|
-
updatedAt:
|
4431
|
-
deletedAt:
|
4432
|
-
emailVerifiedAt:
|
4429
|
+
createdAt: string;
|
4430
|
+
updatedAt: string;
|
4431
|
+
deletedAt: string | null;
|
4432
|
+
emailVerifiedAt: string | null;
|
4433
4433
|
password: string;
|
4434
4434
|
phone: string | null;
|
4435
4435
|
notificationCount: number | null;
|
4436
4436
|
roles: {
|
4437
4437
|
id: string;
|
4438
4438
|
description: string | null;
|
4439
|
-
createdAt:
|
4440
|
-
updatedAt:
|
4441
|
-
deletedAt:
|
4439
|
+
createdAt: string;
|
4440
|
+
updatedAt: string;
|
4441
|
+
deletedAt: string | null;
|
4442
4442
|
systemName: string;
|
4443
4443
|
displayName: string;
|
4444
4444
|
permissions: {
|
4445
4445
|
id: string;
|
4446
4446
|
description: string | null;
|
4447
|
-
createdAt:
|
4448
|
-
updatedAt:
|
4449
|
-
deletedAt:
|
4447
|
+
createdAt: string;
|
4448
|
+
updatedAt: string;
|
4449
|
+
deletedAt: string | null;
|
4450
4450
|
systemName: string;
|
4451
4451
|
displayName: string;
|
4452
4452
|
}[];
|
4453
4453
|
}[];
|
4454
4454
|
extension?: {
|
4455
4455
|
id: string;
|
4456
|
-
createdAt:
|
4457
|
-
updatedAt:
|
4458
|
-
deletedAt:
|
4456
|
+
createdAt: string;
|
4457
|
+
updatedAt: string;
|
4458
|
+
deletedAt: string | null;
|
4459
4459
|
userId: string | null;
|
4460
4460
|
sipServerUrl: string;
|
4461
4461
|
sipUserName: string;
|
@@ -4499,36 +4499,36 @@ export declare const cxLogContract: {
|
|
4499
4499
|
address: string | null;
|
4500
4500
|
name: string;
|
4501
4501
|
email: string;
|
4502
|
-
createdAt:
|
4503
|
-
updatedAt:
|
4504
|
-
deletedAt:
|
4505
|
-
emailVerifiedAt:
|
4502
|
+
createdAt: string;
|
4503
|
+
updatedAt: string;
|
4504
|
+
deletedAt: string | null;
|
4505
|
+
emailVerifiedAt: string | null;
|
4506
4506
|
password: string;
|
4507
4507
|
phone: string | null;
|
4508
4508
|
notificationCount: number | null;
|
4509
4509
|
roles: {
|
4510
4510
|
id: string;
|
4511
4511
|
description: string | null;
|
4512
|
-
createdAt:
|
4513
|
-
updatedAt:
|
4514
|
-
deletedAt:
|
4512
|
+
createdAt: string;
|
4513
|
+
updatedAt: string;
|
4514
|
+
deletedAt: string | null;
|
4515
4515
|
systemName: string;
|
4516
4516
|
displayName: string;
|
4517
4517
|
permissions: {
|
4518
4518
|
id: string;
|
4519
4519
|
description: string | null;
|
4520
|
-
createdAt:
|
4521
|
-
updatedAt:
|
4522
|
-
deletedAt:
|
4520
|
+
createdAt: string;
|
4521
|
+
updatedAt: string;
|
4522
|
+
deletedAt: string | null;
|
4523
4523
|
systemName: string;
|
4524
4524
|
displayName: string;
|
4525
4525
|
}[];
|
4526
4526
|
}[];
|
4527
4527
|
extension?: {
|
4528
4528
|
id: string;
|
4529
|
-
createdAt:
|
4530
|
-
updatedAt:
|
4531
|
-
deletedAt:
|
4529
|
+
createdAt: string;
|
4530
|
+
updatedAt: string;
|
4531
|
+
deletedAt: string | null;
|
4532
4532
|
userId: string | null;
|
4533
4533
|
sipServerUrl: string;
|
4534
4534
|
sipUserName: string;
|
@@ -4556,14 +4556,14 @@ export declare const cxLogContract: {
|
|
4556
4556
|
channel: string | null;
|
4557
4557
|
address: string | null;
|
4558
4558
|
name: string;
|
4559
|
-
createdAt:
|
4560
|
-
updatedAt:
|
4561
|
-
deletedAt:
|
4559
|
+
createdAt: string;
|
4560
|
+
updatedAt: string;
|
4561
|
+
deletedAt: string | null;
|
4562
4562
|
customFields: {
|
4563
4563
|
id: string;
|
4564
|
-
createdAt:
|
4565
|
-
updatedAt:
|
4566
|
-
deletedAt:
|
4564
|
+
createdAt: string;
|
4565
|
+
updatedAt: string;
|
4566
|
+
deletedAt: string | null;
|
4567
4567
|
attribute: {
|
4568
4568
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4569
4569
|
id: string;
|
@@ -4581,7 +4581,7 @@ export declare const cxLogContract: {
|
|
4581
4581
|
textValue: string | null;
|
4582
4582
|
booleanValue: boolean | null;
|
4583
4583
|
numberValue: number | null;
|
4584
|
-
dateValue:
|
4584
|
+
dateValue: string | null;
|
4585
4585
|
uploads: {
|
4586
4586
|
id: string;
|
4587
4587
|
createdAt: string;
|
@@ -4624,31 +4624,31 @@ export declare const cxLogContract: {
|
|
4624
4624
|
id: string;
|
4625
4625
|
isPrimary: boolean;
|
4626
4626
|
email: string;
|
4627
|
-
createdAt:
|
4628
|
-
updatedAt:
|
4629
|
-
deletedAt:
|
4627
|
+
createdAt: string;
|
4628
|
+
updatedAt: string;
|
4629
|
+
deletedAt: string | null;
|
4630
4630
|
}[];
|
4631
4631
|
contactPhones: {
|
4632
4632
|
id: string;
|
4633
4633
|
isPrimary: boolean;
|
4634
|
-
createdAt:
|
4635
|
-
updatedAt:
|
4636
|
-
deletedAt:
|
4634
|
+
createdAt: string;
|
4635
|
+
updatedAt: string;
|
4636
|
+
deletedAt: string | null;
|
4637
4637
|
phone: string;
|
4638
4638
|
}[];
|
4639
4639
|
activityLogs?: {
|
4640
4640
|
id: string;
|
4641
4641
|
description: string;
|
4642
|
-
createdAt:
|
4643
|
-
updatedAt:
|
4644
|
-
deletedAt:
|
4642
|
+
createdAt: string;
|
4643
|
+
updatedAt: string;
|
4644
|
+
deletedAt: string | null;
|
4645
4645
|
entityId: string;
|
4646
4646
|
entityType: {
|
4647
4647
|
id: string;
|
4648
4648
|
description: string | null;
|
4649
|
-
createdAt:
|
4650
|
-
updatedAt:
|
4651
|
-
deletedAt:
|
4649
|
+
createdAt: string;
|
4650
|
+
updatedAt: string;
|
4651
|
+
deletedAt: string | null;
|
4652
4652
|
entity: string;
|
4653
4653
|
};
|
4654
4654
|
}[] | undefined;
|
@@ -4690,44 +4690,44 @@ export declare const cxLogContract: {
|
|
4690
4690
|
room: {
|
4691
4691
|
id: string;
|
4692
4692
|
direction: "incoming" | "outgoing" | "system";
|
4693
|
-
createdAt:
|
4694
|
-
updatedAt:
|
4695
|
-
deletedAt:
|
4693
|
+
createdAt: string;
|
4694
|
+
updatedAt: string;
|
4695
|
+
deletedAt: string | null;
|
4696
4696
|
actor: {
|
4697
4697
|
id: string;
|
4698
4698
|
address: string | null;
|
4699
4699
|
name: string;
|
4700
4700
|
email: string;
|
4701
|
-
createdAt:
|
4702
|
-
updatedAt:
|
4703
|
-
deletedAt:
|
4704
|
-
emailVerifiedAt:
|
4701
|
+
createdAt: string;
|
4702
|
+
updatedAt: string;
|
4703
|
+
deletedAt: string | null;
|
4704
|
+
emailVerifiedAt: string | null;
|
4705
4705
|
password: string;
|
4706
4706
|
phone: string | null;
|
4707
4707
|
notificationCount: number | null;
|
4708
4708
|
roles: {
|
4709
4709
|
id: string;
|
4710
4710
|
description: string | null;
|
4711
|
-
createdAt:
|
4712
|
-
updatedAt:
|
4713
|
-
deletedAt:
|
4711
|
+
createdAt: string;
|
4712
|
+
updatedAt: string;
|
4713
|
+
deletedAt: string | null;
|
4714
4714
|
systemName: string;
|
4715
4715
|
displayName: string;
|
4716
4716
|
permissions: {
|
4717
4717
|
id: string;
|
4718
4718
|
description: string | null;
|
4719
|
-
createdAt:
|
4720
|
-
updatedAt:
|
4721
|
-
deletedAt:
|
4719
|
+
createdAt: string;
|
4720
|
+
updatedAt: string;
|
4721
|
+
deletedAt: string | null;
|
4722
4722
|
systemName: string;
|
4723
4723
|
displayName: string;
|
4724
4724
|
}[];
|
4725
4725
|
}[];
|
4726
4726
|
extension?: {
|
4727
4727
|
id: string;
|
4728
|
-
createdAt:
|
4729
|
-
updatedAt:
|
4730
|
-
deletedAt:
|
4728
|
+
createdAt: string;
|
4729
|
+
updatedAt: string;
|
4730
|
+
deletedAt: string | null;
|
4731
4731
|
userId: string | null;
|
4732
4732
|
sipServerUrl: string;
|
4733
4733
|
sipUserName: string;
|
@@ -4739,9 +4739,9 @@ export declare const cxLogContract: {
|
|
4739
4739
|
firstResponseTime: number;
|
4740
4740
|
lastMessage: string;
|
4741
4741
|
handleTime: number;
|
4742
|
-
closeAt:
|
4742
|
+
closeAt: string;
|
4743
4743
|
unreadCount: number;
|
4744
|
-
firstResponseAt:
|
4744
|
+
firstResponseAt: string;
|
4745
4745
|
isLatest: boolean;
|
4746
4746
|
platformContact: {
|
4747
4747
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -4760,14 +4760,14 @@ export declare const cxLogContract: {
|
|
4760
4760
|
channel: string | null;
|
4761
4761
|
address: string | null;
|
4762
4762
|
name: string;
|
4763
|
-
createdAt:
|
4764
|
-
updatedAt:
|
4765
|
-
deletedAt:
|
4763
|
+
createdAt: string;
|
4764
|
+
updatedAt: string;
|
4765
|
+
deletedAt: string | null;
|
4766
4766
|
customFields: {
|
4767
4767
|
id: string;
|
4768
|
-
createdAt:
|
4769
|
-
updatedAt:
|
4770
|
-
deletedAt:
|
4768
|
+
createdAt: string;
|
4769
|
+
updatedAt: string;
|
4770
|
+
deletedAt: string | null;
|
4771
4771
|
attribute: {
|
4772
4772
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4773
4773
|
id: string;
|
@@ -4785,7 +4785,7 @@ export declare const cxLogContract: {
|
|
4785
4785
|
textValue: string | null;
|
4786
4786
|
booleanValue: boolean | null;
|
4787
4787
|
numberValue: number | null;
|
4788
|
-
dateValue:
|
4788
|
+
dateValue: string | null;
|
4789
4789
|
uploads: {
|
4790
4790
|
id: string;
|
4791
4791
|
createdAt: string;
|
@@ -4828,31 +4828,31 @@ export declare const cxLogContract: {
|
|
4828
4828
|
id: string;
|
4829
4829
|
isPrimary: boolean;
|
4830
4830
|
email: string;
|
4831
|
-
createdAt:
|
4832
|
-
updatedAt:
|
4833
|
-
deletedAt:
|
4831
|
+
createdAt: string;
|
4832
|
+
updatedAt: string;
|
4833
|
+
deletedAt: string | null;
|
4834
4834
|
}[];
|
4835
4835
|
contactPhones: {
|
4836
4836
|
id: string;
|
4837
4837
|
isPrimary: boolean;
|
4838
|
-
createdAt:
|
4839
|
-
updatedAt:
|
4840
|
-
deletedAt:
|
4838
|
+
createdAt: string;
|
4839
|
+
updatedAt: string;
|
4840
|
+
deletedAt: string | null;
|
4841
4841
|
phone: string;
|
4842
4842
|
}[];
|
4843
4843
|
activityLogs?: {
|
4844
4844
|
id: string;
|
4845
4845
|
description: string;
|
4846
|
-
createdAt:
|
4847
|
-
updatedAt:
|
4848
|
-
deletedAt:
|
4846
|
+
createdAt: string;
|
4847
|
+
updatedAt: string;
|
4848
|
+
deletedAt: string | null;
|
4849
4849
|
entityId: string;
|
4850
4850
|
entityType: {
|
4851
4851
|
id: string;
|
4852
4852
|
description: string | null;
|
4853
|
-
createdAt:
|
4854
|
-
updatedAt:
|
4855
|
-
deletedAt:
|
4853
|
+
createdAt: string;
|
4854
|
+
updatedAt: string;
|
4855
|
+
deletedAt: string | null;
|
4856
4856
|
entity: string;
|
4857
4857
|
};
|
4858
4858
|
}[] | undefined;
|
@@ -4865,36 +4865,36 @@ export declare const cxLogContract: {
|
|
4865
4865
|
address: string | null;
|
4866
4866
|
name: string;
|
4867
4867
|
email: string;
|
4868
|
-
createdAt:
|
4869
|
-
updatedAt:
|
4870
|
-
deletedAt:
|
4871
|
-
emailVerifiedAt:
|
4868
|
+
createdAt: string;
|
4869
|
+
updatedAt: string;
|
4870
|
+
deletedAt: string | null;
|
4871
|
+
emailVerifiedAt: string | null;
|
4872
4872
|
password: string;
|
4873
4873
|
phone: string | null;
|
4874
4874
|
notificationCount: number | null;
|
4875
4875
|
roles: {
|
4876
4876
|
id: string;
|
4877
4877
|
description: string | null;
|
4878
|
-
createdAt:
|
4879
|
-
updatedAt:
|
4880
|
-
deletedAt:
|
4878
|
+
createdAt: string;
|
4879
|
+
updatedAt: string;
|
4880
|
+
deletedAt: string | null;
|
4881
4881
|
systemName: string;
|
4882
4882
|
displayName: string;
|
4883
4883
|
permissions: {
|
4884
4884
|
id: string;
|
4885
4885
|
description: string | null;
|
4886
|
-
createdAt:
|
4887
|
-
updatedAt:
|
4888
|
-
deletedAt:
|
4886
|
+
createdAt: string;
|
4887
|
+
updatedAt: string;
|
4888
|
+
deletedAt: string | null;
|
4889
4889
|
systemName: string;
|
4890
4890
|
displayName: string;
|
4891
4891
|
}[];
|
4892
4892
|
}[];
|
4893
4893
|
extension?: {
|
4894
4894
|
id: string;
|
4895
|
-
createdAt:
|
4896
|
-
updatedAt:
|
4897
|
-
deletedAt:
|
4895
|
+
createdAt: string;
|
4896
|
+
updatedAt: string;
|
4897
|
+
deletedAt: string | null;
|
4898
4898
|
userId: string | null;
|
4899
4899
|
sipServerUrl: string;
|
4900
4900
|
sipUserName: string;
|
@@ -4927,36 +4927,36 @@ export declare const cxLogContract: {
|
|
4927
4927
|
address: string | null;
|
4928
4928
|
name: string;
|
4929
4929
|
email: string;
|
4930
|
-
createdAt:
|
4931
|
-
updatedAt:
|
4932
|
-
deletedAt:
|
4933
|
-
emailVerifiedAt:
|
4930
|
+
createdAt: string;
|
4931
|
+
updatedAt: string;
|
4932
|
+
deletedAt: string | null;
|
4933
|
+
emailVerifiedAt: string | null;
|
4934
4934
|
password: string;
|
4935
4935
|
phone: string | null;
|
4936
4936
|
notificationCount: number | null;
|
4937
4937
|
roles: {
|
4938
4938
|
id: string;
|
4939
4939
|
description: string | null;
|
4940
|
-
createdAt:
|
4941
|
-
updatedAt:
|
4942
|
-
deletedAt:
|
4940
|
+
createdAt: string;
|
4941
|
+
updatedAt: string;
|
4942
|
+
deletedAt: string | null;
|
4943
4943
|
systemName: string;
|
4944
4944
|
displayName: string;
|
4945
4945
|
permissions: {
|
4946
4946
|
id: string;
|
4947
4947
|
description: string | null;
|
4948
|
-
createdAt:
|
4949
|
-
updatedAt:
|
4950
|
-
deletedAt:
|
4948
|
+
createdAt: string;
|
4949
|
+
updatedAt: string;
|
4950
|
+
deletedAt: string | null;
|
4951
4951
|
systemName: string;
|
4952
4952
|
displayName: string;
|
4953
4953
|
}[];
|
4954
4954
|
}[];
|
4955
4955
|
extension?: {
|
4956
4956
|
id: string;
|
4957
|
-
createdAt:
|
4958
|
-
updatedAt:
|
4959
|
-
deletedAt:
|
4957
|
+
createdAt: string;
|
4958
|
+
updatedAt: string;
|
4959
|
+
deletedAt: string | null;
|
4960
4960
|
userId: string | null;
|
4961
4961
|
sipServerUrl: string;
|
4962
4962
|
sipUserName: string;
|
@@ -5000,36 +5000,36 @@ export declare const cxLogContract: {
|
|
5000
5000
|
address: string | null;
|
5001
5001
|
name: string;
|
5002
5002
|
email: string;
|
5003
|
-
createdAt:
|
5004
|
-
updatedAt:
|
5005
|
-
deletedAt:
|
5006
|
-
emailVerifiedAt:
|
5003
|
+
createdAt: string;
|
5004
|
+
updatedAt: string;
|
5005
|
+
deletedAt: string | null;
|
5006
|
+
emailVerifiedAt: string | null;
|
5007
5007
|
password: string;
|
5008
5008
|
phone: string | null;
|
5009
5009
|
notificationCount: number | null;
|
5010
5010
|
roles: {
|
5011
5011
|
id: string;
|
5012
5012
|
description: string | null;
|
5013
|
-
createdAt:
|
5014
|
-
updatedAt:
|
5015
|
-
deletedAt:
|
5013
|
+
createdAt: string;
|
5014
|
+
updatedAt: string;
|
5015
|
+
deletedAt: string | null;
|
5016
5016
|
systemName: string;
|
5017
5017
|
displayName: string;
|
5018
5018
|
permissions: {
|
5019
5019
|
id: string;
|
5020
5020
|
description: string | null;
|
5021
|
-
createdAt:
|
5022
|
-
updatedAt:
|
5023
|
-
deletedAt:
|
5021
|
+
createdAt: string;
|
5022
|
+
updatedAt: string;
|
5023
|
+
deletedAt: string | null;
|
5024
5024
|
systemName: string;
|
5025
5025
|
displayName: string;
|
5026
5026
|
}[];
|
5027
5027
|
}[];
|
5028
5028
|
extension?: {
|
5029
5029
|
id: string;
|
5030
|
-
createdAt:
|
5031
|
-
updatedAt:
|
5032
|
-
deletedAt:
|
5030
|
+
createdAt: string;
|
5031
|
+
updatedAt: string;
|
5032
|
+
deletedAt: string | null;
|
5033
5033
|
userId: string | null;
|
5034
5034
|
sipServerUrl: string;
|
5035
5035
|
sipUserName: string;
|
@@ -5057,14 +5057,14 @@ export declare const cxLogContract: {
|
|
5057
5057
|
channel: string | null;
|
5058
5058
|
address: string | null;
|
5059
5059
|
name: string;
|
5060
|
-
createdAt:
|
5061
|
-
updatedAt:
|
5062
|
-
deletedAt:
|
5060
|
+
createdAt: string;
|
5061
|
+
updatedAt: string;
|
5062
|
+
deletedAt: string | null;
|
5063
5063
|
customFields: {
|
5064
5064
|
id: string;
|
5065
|
-
createdAt:
|
5066
|
-
updatedAt:
|
5067
|
-
deletedAt:
|
5065
|
+
createdAt: string;
|
5066
|
+
updatedAt: string;
|
5067
|
+
deletedAt: string | null;
|
5068
5068
|
attribute: {
|
5069
5069
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5070
5070
|
id: string;
|
@@ -5082,7 +5082,7 @@ export declare const cxLogContract: {
|
|
5082
5082
|
textValue: string | null;
|
5083
5083
|
booleanValue: boolean | null;
|
5084
5084
|
numberValue: number | null;
|
5085
|
-
dateValue:
|
5085
|
+
dateValue: string | null;
|
5086
5086
|
uploads: {
|
5087
5087
|
id: string;
|
5088
5088
|
createdAt: string;
|
@@ -5125,31 +5125,31 @@ export declare const cxLogContract: {
|
|
5125
5125
|
id: string;
|
5126
5126
|
isPrimary: boolean;
|
5127
5127
|
email: string;
|
5128
|
-
createdAt:
|
5129
|
-
updatedAt:
|
5130
|
-
deletedAt:
|
5128
|
+
createdAt: string;
|
5129
|
+
updatedAt: string;
|
5130
|
+
deletedAt: string | null;
|
5131
5131
|
}[];
|
5132
5132
|
contactPhones: {
|
5133
5133
|
id: string;
|
5134
5134
|
isPrimary: boolean;
|
5135
|
-
createdAt:
|
5136
|
-
updatedAt:
|
5137
|
-
deletedAt:
|
5135
|
+
createdAt: string;
|
5136
|
+
updatedAt: string;
|
5137
|
+
deletedAt: string | null;
|
5138
5138
|
phone: string;
|
5139
5139
|
}[];
|
5140
5140
|
activityLogs?: {
|
5141
5141
|
id: string;
|
5142
5142
|
description: string;
|
5143
|
-
createdAt:
|
5144
|
-
updatedAt:
|
5145
|
-
deletedAt:
|
5143
|
+
createdAt: string;
|
5144
|
+
updatedAt: string;
|
5145
|
+
deletedAt: string | null;
|
5146
5146
|
entityId: string;
|
5147
5147
|
entityType: {
|
5148
5148
|
id: string;
|
5149
5149
|
description: string | null;
|
5150
|
-
createdAt:
|
5151
|
-
updatedAt:
|
5152
|
-
deletedAt:
|
5150
|
+
createdAt: string;
|
5151
|
+
updatedAt: string;
|
5152
|
+
deletedAt: string | null;
|
5153
5153
|
entity: string;
|
5154
5154
|
};
|
5155
5155
|
}[] | undefined;
|
@@ -5191,44 +5191,44 @@ export declare const cxLogContract: {
|
|
5191
5191
|
room: {
|
5192
5192
|
id: string;
|
5193
5193
|
direction: "incoming" | "outgoing" | "system";
|
5194
|
-
createdAt:
|
5195
|
-
updatedAt:
|
5196
|
-
deletedAt:
|
5194
|
+
createdAt: string;
|
5195
|
+
updatedAt: string;
|
5196
|
+
deletedAt: string | null;
|
5197
5197
|
actor: {
|
5198
5198
|
id: string;
|
5199
5199
|
address: string | null;
|
5200
5200
|
name: string;
|
5201
5201
|
email: string;
|
5202
|
-
createdAt:
|
5203
|
-
updatedAt:
|
5204
|
-
deletedAt:
|
5205
|
-
emailVerifiedAt:
|
5202
|
+
createdAt: string;
|
5203
|
+
updatedAt: string;
|
5204
|
+
deletedAt: string | null;
|
5205
|
+
emailVerifiedAt: string | null;
|
5206
5206
|
password: string;
|
5207
5207
|
phone: string | null;
|
5208
5208
|
notificationCount: number | null;
|
5209
5209
|
roles: {
|
5210
5210
|
id: string;
|
5211
5211
|
description: string | null;
|
5212
|
-
createdAt:
|
5213
|
-
updatedAt:
|
5214
|
-
deletedAt:
|
5212
|
+
createdAt: string;
|
5213
|
+
updatedAt: string;
|
5214
|
+
deletedAt: string | null;
|
5215
5215
|
systemName: string;
|
5216
5216
|
displayName: string;
|
5217
5217
|
permissions: {
|
5218
5218
|
id: string;
|
5219
5219
|
description: string | null;
|
5220
|
-
createdAt:
|
5221
|
-
updatedAt:
|
5222
|
-
deletedAt:
|
5220
|
+
createdAt: string;
|
5221
|
+
updatedAt: string;
|
5222
|
+
deletedAt: string | null;
|
5223
5223
|
systemName: string;
|
5224
5224
|
displayName: string;
|
5225
5225
|
}[];
|
5226
5226
|
}[];
|
5227
5227
|
extension?: {
|
5228
5228
|
id: string;
|
5229
|
-
createdAt:
|
5230
|
-
updatedAt:
|
5231
|
-
deletedAt:
|
5229
|
+
createdAt: string;
|
5230
|
+
updatedAt: string;
|
5231
|
+
deletedAt: string | null;
|
5232
5232
|
userId: string | null;
|
5233
5233
|
sipServerUrl: string;
|
5234
5234
|
sipUserName: string;
|
@@ -5240,9 +5240,9 @@ export declare const cxLogContract: {
|
|
5240
5240
|
firstResponseTime: number;
|
5241
5241
|
lastMessage: string;
|
5242
5242
|
handleTime: number;
|
5243
|
-
closeAt:
|
5243
|
+
closeAt: string;
|
5244
5244
|
unreadCount: number;
|
5245
|
-
firstResponseAt:
|
5245
|
+
firstResponseAt: string;
|
5246
5246
|
isLatest: boolean;
|
5247
5247
|
platformContact: {
|
5248
5248
|
type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
|
@@ -5261,14 +5261,14 @@ export declare const cxLogContract: {
|
|
5261
5261
|
channel: string | null;
|
5262
5262
|
address: string | null;
|
5263
5263
|
name: string;
|
5264
|
-
createdAt:
|
5265
|
-
updatedAt:
|
5266
|
-
deletedAt:
|
5264
|
+
createdAt: string;
|
5265
|
+
updatedAt: string;
|
5266
|
+
deletedAt: string | null;
|
5267
5267
|
customFields: {
|
5268
5268
|
id: string;
|
5269
|
-
createdAt:
|
5270
|
-
updatedAt:
|
5271
|
-
deletedAt:
|
5269
|
+
createdAt: string;
|
5270
|
+
updatedAt: string;
|
5271
|
+
deletedAt: string | null;
|
5272
5272
|
attribute: {
|
5273
5273
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5274
5274
|
id: string;
|
@@ -5286,7 +5286,7 @@ export declare const cxLogContract: {
|
|
5286
5286
|
textValue: string | null;
|
5287
5287
|
booleanValue: boolean | null;
|
5288
5288
|
numberValue: number | null;
|
5289
|
-
dateValue:
|
5289
|
+
dateValue: string | null;
|
5290
5290
|
uploads: {
|
5291
5291
|
id: string;
|
5292
5292
|
createdAt: string;
|
@@ -5329,31 +5329,31 @@ export declare const cxLogContract: {
|
|
5329
5329
|
id: string;
|
5330
5330
|
isPrimary: boolean;
|
5331
5331
|
email: string;
|
5332
|
-
createdAt:
|
5333
|
-
updatedAt:
|
5334
|
-
deletedAt:
|
5332
|
+
createdAt: string;
|
5333
|
+
updatedAt: string;
|
5334
|
+
deletedAt: string | null;
|
5335
5335
|
}[];
|
5336
5336
|
contactPhones: {
|
5337
5337
|
id: string;
|
5338
5338
|
isPrimary: boolean;
|
5339
|
-
createdAt:
|
5340
|
-
updatedAt:
|
5341
|
-
deletedAt:
|
5339
|
+
createdAt: string;
|
5340
|
+
updatedAt: string;
|
5341
|
+
deletedAt: string | null;
|
5342
5342
|
phone: string;
|
5343
5343
|
}[];
|
5344
5344
|
activityLogs?: {
|
5345
5345
|
id: string;
|
5346
5346
|
description: string;
|
5347
|
-
createdAt:
|
5348
|
-
updatedAt:
|
5349
|
-
deletedAt:
|
5347
|
+
createdAt: string;
|
5348
|
+
updatedAt: string;
|
5349
|
+
deletedAt: string | null;
|
5350
5350
|
entityId: string;
|
5351
5351
|
entityType: {
|
5352
5352
|
id: string;
|
5353
5353
|
description: string | null;
|
5354
|
-
createdAt:
|
5355
|
-
updatedAt:
|
5356
|
-
deletedAt:
|
5354
|
+
createdAt: string;
|
5355
|
+
updatedAt: string;
|
5356
|
+
deletedAt: string | null;
|
5357
5357
|
entity: string;
|
5358
5358
|
};
|
5359
5359
|
}[] | undefined;
|
@@ -5366,36 +5366,36 @@ export declare const cxLogContract: {
|
|
5366
5366
|
address: string | null;
|
5367
5367
|
name: string;
|
5368
5368
|
email: string;
|
5369
|
-
createdAt:
|
5370
|
-
updatedAt:
|
5371
|
-
deletedAt:
|
5372
|
-
emailVerifiedAt:
|
5369
|
+
createdAt: string;
|
5370
|
+
updatedAt: string;
|
5371
|
+
deletedAt: string | null;
|
5372
|
+
emailVerifiedAt: string | null;
|
5373
5373
|
password: string;
|
5374
5374
|
phone: string | null;
|
5375
5375
|
notificationCount: number | null;
|
5376
5376
|
roles: {
|
5377
5377
|
id: string;
|
5378
5378
|
description: string | null;
|
5379
|
-
createdAt:
|
5380
|
-
updatedAt:
|
5381
|
-
deletedAt:
|
5379
|
+
createdAt: string;
|
5380
|
+
updatedAt: string;
|
5381
|
+
deletedAt: string | null;
|
5382
5382
|
systemName: string;
|
5383
5383
|
displayName: string;
|
5384
5384
|
permissions: {
|
5385
5385
|
id: string;
|
5386
5386
|
description: string | null;
|
5387
|
-
createdAt:
|
5388
|
-
updatedAt:
|
5389
|
-
deletedAt:
|
5387
|
+
createdAt: string;
|
5388
|
+
updatedAt: string;
|
5389
|
+
deletedAt: string | null;
|
5390
5390
|
systemName: string;
|
5391
5391
|
displayName: string;
|
5392
5392
|
}[];
|
5393
5393
|
}[];
|
5394
5394
|
extension?: {
|
5395
5395
|
id: string;
|
5396
|
-
createdAt:
|
5397
|
-
updatedAt:
|
5398
|
-
deletedAt:
|
5396
|
+
createdAt: string;
|
5397
|
+
updatedAt: string;
|
5398
|
+
deletedAt: string | null;
|
5399
5399
|
userId: string | null;
|
5400
5400
|
sipServerUrl: string;
|
5401
5401
|
sipUserName: string;
|
@@ -5428,36 +5428,36 @@ export declare const cxLogContract: {
|
|
5428
5428
|
address: string | null;
|
5429
5429
|
name: string;
|
5430
5430
|
email: string;
|
5431
|
-
createdAt:
|
5432
|
-
updatedAt:
|
5433
|
-
deletedAt:
|
5434
|
-
emailVerifiedAt:
|
5431
|
+
createdAt: string;
|
5432
|
+
updatedAt: string;
|
5433
|
+
deletedAt: string | null;
|
5434
|
+
emailVerifiedAt: string | null;
|
5435
5435
|
password: string;
|
5436
5436
|
phone: string | null;
|
5437
5437
|
notificationCount: number | null;
|
5438
5438
|
roles: {
|
5439
5439
|
id: string;
|
5440
5440
|
description: string | null;
|
5441
|
-
createdAt:
|
5442
|
-
updatedAt:
|
5443
|
-
deletedAt:
|
5441
|
+
createdAt: string;
|
5442
|
+
updatedAt: string;
|
5443
|
+
deletedAt: string | null;
|
5444
5444
|
systemName: string;
|
5445
5445
|
displayName: string;
|
5446
5446
|
permissions: {
|
5447
5447
|
id: string;
|
5448
5448
|
description: string | null;
|
5449
|
-
createdAt:
|
5450
|
-
updatedAt:
|
5451
|
-
deletedAt:
|
5449
|
+
createdAt: string;
|
5450
|
+
updatedAt: string;
|
5451
|
+
deletedAt: string | null;
|
5452
5452
|
systemName: string;
|
5453
5453
|
displayName: string;
|
5454
5454
|
}[];
|
5455
5455
|
}[];
|
5456
5456
|
extension?: {
|
5457
5457
|
id: string;
|
5458
|
-
createdAt:
|
5459
|
-
updatedAt:
|
5460
|
-
deletedAt:
|
5458
|
+
createdAt: string;
|
5459
|
+
updatedAt: string;
|
5460
|
+
deletedAt: string | null;
|
5461
5461
|
userId: string | null;
|
5462
5462
|
sipServerUrl: string;
|
5463
5463
|
sipUserName: string;
|
@@ -5501,36 +5501,36 @@ export declare const cxLogContract: {
|
|
5501
5501
|
address: string | null;
|
5502
5502
|
name: string;
|
5503
5503
|
email: string;
|
5504
|
-
createdAt:
|
5505
|
-
updatedAt:
|
5506
|
-
deletedAt:
|
5507
|
-
emailVerifiedAt:
|
5504
|
+
createdAt: string;
|
5505
|
+
updatedAt: string;
|
5506
|
+
deletedAt: string | null;
|
5507
|
+
emailVerifiedAt: string | null;
|
5508
5508
|
password: string;
|
5509
5509
|
phone: string | null;
|
5510
5510
|
notificationCount: number | null;
|
5511
5511
|
roles: {
|
5512
5512
|
id: string;
|
5513
5513
|
description: string | null;
|
5514
|
-
createdAt:
|
5515
|
-
updatedAt:
|
5516
|
-
deletedAt:
|
5514
|
+
createdAt: string;
|
5515
|
+
updatedAt: string;
|
5516
|
+
deletedAt: string | null;
|
5517
5517
|
systemName: string;
|
5518
5518
|
displayName: string;
|
5519
5519
|
permissions: {
|
5520
5520
|
id: string;
|
5521
5521
|
description: string | null;
|
5522
|
-
createdAt:
|
5523
|
-
updatedAt:
|
5524
|
-
deletedAt:
|
5522
|
+
createdAt: string;
|
5523
|
+
updatedAt: string;
|
5524
|
+
deletedAt: string | null;
|
5525
5525
|
systemName: string;
|
5526
5526
|
displayName: string;
|
5527
5527
|
}[];
|
5528
5528
|
}[];
|
5529
5529
|
extension?: {
|
5530
5530
|
id: string;
|
5531
|
-
createdAt:
|
5532
|
-
updatedAt:
|
5533
|
-
deletedAt:
|
5531
|
+
createdAt: string;
|
5532
|
+
updatedAt: string;
|
5533
|
+
deletedAt: string | null;
|
5534
5534
|
userId: string | null;
|
5535
5535
|
sipServerUrl: string;
|
5536
5536
|
sipUserName: string;
|