@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.
Files changed (63) hide show
  1. package/dist/index.js +151 -118
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +151 -118
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/activity-log/index.d.ts +113 -113
  6. package/dist/src/activity-log/schema.d.ts +122 -122
  7. package/dist/src/auth/index.d.ts +89 -89
  8. package/dist/src/channel/index.d.ts +319 -319
  9. package/dist/src/channel/schema.d.ts +89 -92
  10. package/dist/src/channel/schema.d.ts.map +1 -1
  11. package/dist/src/channel/validation.d.ts +89 -89
  12. package/dist/src/chat/index.d.ts +8699 -8699
  13. package/dist/src/chat/schema.d.ts +1486 -1486
  14. package/dist/src/chat/validation.d.ts +2244 -2244
  15. package/dist/src/comment/index.d.ts +1005 -1005
  16. package/dist/src/comment/schema.d.ts +283 -283
  17. package/dist/src/company/index.d.ts +28 -28
  18. package/dist/src/company/schema.d.ts +8 -8
  19. package/dist/src/company/validation.d.ts +15 -15
  20. package/dist/src/contact/index.d.ts +960 -960
  21. package/dist/src/contact/schema.d.ts +161 -161
  22. package/dist/src/contact/validation.d.ts +690 -690
  23. package/dist/src/contract.d.ts +18366 -18196
  24. package/dist/src/contract.d.ts.map +1 -1
  25. package/dist/src/custom-field/schema.d.ts +3 -3
  26. package/dist/src/cx-log/index.d.ts +1023 -1023
  27. package/dist/src/cx-log/schema.d.ts +837 -837
  28. package/dist/src/dashboard/index.d.ts +6 -6
  29. package/dist/src/dashboard/index.d.ts.map +1 -1
  30. package/dist/src/dashboard/schema.d.ts +2 -2
  31. package/dist/src/dashboard/schema.d.ts.map +1 -1
  32. package/dist/src/extension/index.d.ts +115 -115
  33. package/dist/src/extension/schema.d.ts +9 -9
  34. package/dist/src/mail/account-contract.d.ts +168 -168
  35. package/dist/src/mail/mail-contract.d.ts +3336 -3336
  36. package/dist/src/mail/message-contract.d.ts +152 -152
  37. package/dist/src/mail/room-contract.d.ts +3015 -3015
  38. package/dist/src/mail/schemas/account-validation.schema.d.ts +168 -168
  39. package/dist/src/mail/schemas/account.schema.d.ts +33 -33
  40. package/dist/src/mail/schemas/message.schema.d.ts +108 -108
  41. package/dist/src/mail/schemas/room-validation.schema.d.ts +1000 -1000
  42. package/dist/src/mail/schemas/room.schema.d.ts +791 -791
  43. package/dist/src/messenger/index.d.ts +1078 -1078
  44. package/dist/src/permission/index.d.ts +15 -15
  45. package/dist/src/permission/schema.d.ts +9 -9
  46. package/dist/src/role/index.d.ts +96 -96
  47. package/dist/src/role/schema.d.ts +24 -24
  48. package/dist/src/telephony-agent-presence-status/index.d.ts +293 -293
  49. package/dist/src/telephony-agent-presence-status/schema.d.ts +89 -89
  50. package/dist/src/ticket/index.d.ts +288 -187
  51. package/dist/src/ticket/index.d.ts.map +1 -1
  52. package/dist/src/ticket/schema.d.ts +77 -77
  53. package/dist/src/ticket/validation.d.ts +66 -0
  54. package/dist/src/ticket/validation.d.ts.map +1 -1
  55. package/dist/src/user/index.d.ts +293 -293
  56. package/dist/src/user/schema.d.ts +63 -63
  57. package/dist/src/user-presence-status-log/index.d.ts +52 -52
  58. package/dist/src/user-presence-status-log/schema.d.ts +89 -89
  59. package/dist/src/widget/index.d.ts +72 -1
  60. package/dist/src/widget/index.d.ts.map +1 -1
  61. package/dist/src/widget/validation.d.ts +10 -0
  62. package/dist/src/widget/validation.d.ts.map +1 -1
  63. 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.ZodDate;
214
- updatedAt: z.ZodDate;
215
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate;
218
+ closeAt: z.ZodString;
219
219
  unreadCount: z.ZodNumber;
220
- firstResponseAt: z.ZodDate;
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.ZodDate;
251
- updatedAt: z.ZodDate;
252
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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: Date | null;
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: Date | null;
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.ZodDate;
446
- updatedAt: z.ZodDate;
447
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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: Date;
603
- updatedAt: Date;
604
- deletedAt: Date | null;
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: Date | null;
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: Date;
643
- updatedAt: Date;
644
- deletedAt: Date | null;
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: Date | null;
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.ZodDate;
684
- updatedAt: z.ZodDate;
685
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
693
- updatedAt: Date;
694
- deletedAt: Date | null;
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: Date;
700
- updatedAt: Date;
701
- deletedAt: Date | null;
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.ZodDate;
706
- updatedAt: z.ZodDate;
707
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
714
- updatedAt: Date;
715
- deletedAt: Date | null;
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: Date;
721
- updatedAt: Date;
722
- deletedAt: Date | null;
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.ZodDate;
728
- updatedAt: z.ZodDate;
729
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate;
735
- updatedAt: z.ZodDate;
736
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
743
- updatedAt: Date;
744
- deletedAt: Date | null;
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: Date;
750
- updatedAt: Date;
751
- deletedAt: Date | null;
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: Date;
758
- updatedAt: Date;
759
- deletedAt: Date | null;
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: Date;
765
- updatedAt: Date;
766
- deletedAt: Date | null;
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: Date;
773
- updatedAt: Date;
774
- deletedAt: Date | null;
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: Date;
780
- updatedAt: Date;
781
- deletedAt: Date | null;
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: Date;
791
- updatedAt: Date;
792
- deletedAt: Date | null;
790
+ createdAt: string;
791
+ updatedAt: string;
792
+ deletedAt: string | null;
793
793
  customFields: {
794
794
  id: string;
795
- createdAt: Date;
796
- updatedAt: Date;
797
- deletedAt: Date | null;
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: Date | null;
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: Date;
859
- updatedAt: Date;
860
- deletedAt: Date | null;
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: Date;
866
- updatedAt: Date;
867
- deletedAt: Date | null;
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: Date;
874
- updatedAt: Date;
875
- deletedAt: Date | null;
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: Date;
881
- updatedAt: Date;
882
- deletedAt: Date | null;
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: Date;
892
- updatedAt: Date;
893
- deletedAt: Date | null;
891
+ createdAt: string;
892
+ updatedAt: string;
893
+ deletedAt: string | null;
894
894
  customFields: {
895
895
  id: string;
896
- createdAt: Date;
897
- updatedAt: Date;
898
- deletedAt: Date | null;
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: Date | null;
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: Date;
960
- updatedAt: Date;
961
- deletedAt: Date | null;
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: Date;
967
- updatedAt: Date;
968
- deletedAt: Date | null;
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: Date;
975
- updatedAt: Date;
976
- deletedAt: Date | null;
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: Date;
982
- updatedAt: Date;
983
- deletedAt: Date | null;
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: Date;
1006
- updatedAt: Date;
1007
- deletedAt: Date | null;
1005
+ createdAt: string;
1006
+ updatedAt: string;
1007
+ deletedAt: string | null;
1008
1008
  customFields: {
1009
1009
  id: string;
1010
- createdAt: Date;
1011
- updatedAt: Date;
1012
- deletedAt: Date | null;
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: Date | null;
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: Date;
1074
- updatedAt: Date;
1075
- deletedAt: Date | null;
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: Date;
1081
- updatedAt: Date;
1082
- deletedAt: Date | null;
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: Date;
1089
- updatedAt: Date;
1090
- deletedAt: Date | null;
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: Date;
1096
- updatedAt: Date;
1097
- deletedAt: Date | null;
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: Date;
1122
- updatedAt: Date;
1123
- deletedAt: Date | null;
1121
+ createdAt: string;
1122
+ updatedAt: string;
1123
+ deletedAt: string | null;
1124
1124
  customFields: {
1125
1125
  id: string;
1126
- createdAt: Date;
1127
- updatedAt: Date;
1128
- deletedAt: Date | null;
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: Date | null;
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: Date;
1190
- updatedAt: Date;
1191
- deletedAt: Date | null;
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: Date;
1197
- updatedAt: Date;
1198
- deletedAt: Date | null;
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: Date;
1205
- updatedAt: Date;
1206
- deletedAt: Date | null;
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: Date;
1212
- updatedAt: Date;
1213
- deletedAt: Date | null;
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.ZodDate;
1224
- updatedAt: z.ZodDate;
1225
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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.ZodDate;
1236
- updatedAt: z.ZodDate;
1237
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate;
1244
- updatedAt: z.ZodDate;
1245
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
1253
- updatedAt: Date;
1254
- deletedAt: Date | null;
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: Date;
1261
- updatedAt: Date;
1262
- deletedAt: Date | null;
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: Date;
1270
- updatedAt: Date;
1271
- deletedAt: Date | null;
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: Date;
1278
- updatedAt: Date;
1279
- deletedAt: Date | null;
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: Date;
1287
- updatedAt: Date;
1288
- deletedAt: Date | null;
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: Date;
1295
- updatedAt: Date;
1296
- deletedAt: Date | null;
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.ZodDate;
1304
- updatedAt: z.ZodDate;
1305
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
1315
- updatedAt: Date;
1316
- deletedAt: Date | null;
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: Date;
1326
- updatedAt: Date;
1327
- deletedAt: Date | null;
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: Date;
1341
- updatedAt: Date;
1342
- deletedAt: Date | null;
1343
- emailVerifiedAt: Date | null;
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: Date;
1351
- updatedAt: Date;
1352
- deletedAt: Date | null;
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: Date;
1359
- updatedAt: Date;
1360
- deletedAt: Date | null;
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: Date;
1368
- updatedAt: Date;
1369
- deletedAt: Date | null;
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: Date;
1383
- updatedAt: Date;
1384
- deletedAt: Date | null;
1385
- emailVerifiedAt: Date | null;
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: Date;
1393
- updatedAt: Date;
1394
- deletedAt: Date | null;
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: Date;
1401
- updatedAt: Date;
1402
- deletedAt: Date | null;
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: Date;
1410
- updatedAt: Date;
1411
- deletedAt: Date | null;
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.ZodDate;
1423
- updatedAt: z.ZodDate;
1424
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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.ZodDate;
1435
- updatedAt: z.ZodDate;
1436
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate;
1443
- updatedAt: z.ZodDate;
1444
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
1452
- updatedAt: Date;
1453
- deletedAt: Date | null;
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: Date;
1460
- updatedAt: Date;
1461
- deletedAt: Date | null;
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: Date;
1469
- updatedAt: Date;
1470
- deletedAt: Date | null;
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: Date;
1477
- updatedAt: Date;
1478
- deletedAt: Date | null;
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: Date;
1486
- updatedAt: Date;
1487
- deletedAt: Date | null;
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: Date;
1494
- updatedAt: Date;
1495
- deletedAt: Date | null;
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.ZodDate;
1503
- updatedAt: z.ZodDate;
1504
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
1514
- updatedAt: Date;
1515
- deletedAt: Date | null;
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: Date;
1525
- updatedAt: Date;
1526
- deletedAt: Date | null;
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: Date;
1540
- updatedAt: Date;
1541
- deletedAt: Date | null;
1542
- emailVerifiedAt: Date | null;
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: Date;
1550
- updatedAt: Date;
1551
- deletedAt: Date | null;
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: Date;
1558
- updatedAt: Date;
1559
- deletedAt: Date | null;
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: Date;
1567
- updatedAt: Date;
1568
- deletedAt: Date | null;
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: Date;
1582
- updatedAt: Date;
1583
- deletedAt: Date | null;
1584
- emailVerifiedAt: Date | null;
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: Date;
1592
- updatedAt: Date;
1593
- deletedAt: Date | null;
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: Date;
1600
- updatedAt: Date;
1601
- deletedAt: Date | null;
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: Date;
1609
- updatedAt: Date;
1610
- deletedAt: Date | null;
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.ZodDate;
1651
- updatedAt: z.ZodDate;
1652
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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.ZodDate;
1663
- updatedAt: z.ZodDate;
1664
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate;
1671
- updatedAt: z.ZodDate;
1672
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
1680
- updatedAt: Date;
1681
- deletedAt: Date | null;
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: Date;
1688
- updatedAt: Date;
1689
- deletedAt: Date | null;
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: Date;
1697
- updatedAt: Date;
1698
- deletedAt: Date | null;
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: Date;
1705
- updatedAt: Date;
1706
- deletedAt: Date | null;
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: Date;
1714
- updatedAt: Date;
1715
- deletedAt: Date | null;
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: Date;
1722
- updatedAt: Date;
1723
- deletedAt: Date | null;
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.ZodDate;
1731
- updatedAt: z.ZodDate;
1732
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
1742
- updatedAt: Date;
1743
- deletedAt: Date | null;
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: Date;
1753
- updatedAt: Date;
1754
- deletedAt: Date | null;
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: Date;
1768
- updatedAt: Date;
1769
- deletedAt: Date | null;
1770
- emailVerifiedAt: Date | null;
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: Date;
1778
- updatedAt: Date;
1779
- deletedAt: Date | null;
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: Date;
1786
- updatedAt: Date;
1787
- deletedAt: Date | null;
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: Date;
1795
- updatedAt: Date;
1796
- deletedAt: Date | null;
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: Date;
1810
- updatedAt: Date;
1811
- deletedAt: Date | null;
1812
- emailVerifiedAt: Date | null;
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: Date;
1820
- updatedAt: Date;
1821
- deletedAt: Date | null;
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: Date;
1828
- updatedAt: Date;
1829
- deletedAt: Date | null;
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: Date;
1837
- updatedAt: Date;
1838
- deletedAt: Date | null;
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: Date;
1872
- updatedAt: Date;
1873
- deletedAt: Date | null;
1874
- emailVerifiedAt: Date | null;
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: Date;
1882
- updatedAt: Date;
1883
- deletedAt: Date | null;
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: Date;
1890
- updatedAt: Date;
1891
- deletedAt: Date | null;
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: Date;
1899
- updatedAt: Date;
1900
- deletedAt: Date | null;
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: Date;
1934
- updatedAt: Date;
1935
- deletedAt: Date | null;
1936
- emailVerifiedAt: Date | null;
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: Date;
1944
- updatedAt: Date;
1945
- deletedAt: Date | null;
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: Date;
1952
- updatedAt: Date;
1953
- deletedAt: Date | null;
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: Date;
1961
- updatedAt: Date;
1962
- deletedAt: Date | null;
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: Date;
1976
- updatedAt: Date;
1977
- deletedAt: Date | null;
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: Date;
1984
- updatedAt: Date;
1985
- deletedAt: Date | null;
1986
- emailVerifiedAt: Date | null;
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: Date;
1994
- updatedAt: Date;
1995
- deletedAt: Date | null;
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: Date;
2002
- updatedAt: Date;
2003
- deletedAt: Date | null;
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: Date;
2011
- updatedAt: Date;
2012
- deletedAt: Date | null;
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: Date;
2024
+ closeAt: string;
2025
2025
  unreadCount: number;
2026
- firstResponseAt: Date;
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: Date;
2046
- updatedAt: Date;
2047
- deletedAt: Date | null;
2045
+ createdAt: string;
2046
+ updatedAt: string;
2047
+ deletedAt: string | null;
2048
2048
  customFields: {
2049
2049
  id: string;
2050
- createdAt: Date;
2051
- updatedAt: Date;
2052
- deletedAt: Date | null;
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: Date | null;
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: Date;
2114
- updatedAt: Date;
2115
- deletedAt: Date | null;
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: Date;
2121
- updatedAt: Date;
2122
- deletedAt: Date | null;
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: Date;
2129
- updatedAt: Date;
2130
- deletedAt: Date | null;
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: Date;
2136
- updatedAt: Date;
2137
- deletedAt: Date | null;
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: Date;
2151
- updatedAt: Date;
2152
- deletedAt: Date | null;
2153
- emailVerifiedAt: Date | null;
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: Date;
2161
- updatedAt: Date;
2162
- deletedAt: Date | null;
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: Date;
2169
- updatedAt: Date;
2170
- deletedAt: Date | null;
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: Date;
2178
- updatedAt: Date;
2179
- deletedAt: Date | null;
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: Date;
2213
- updatedAt: Date;
2214
- deletedAt: Date | null;
2215
- emailVerifiedAt: Date | null;
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: Date;
2223
- updatedAt: Date;
2224
- deletedAt: Date | null;
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: Date;
2231
- updatedAt: Date;
2232
- deletedAt: Date | null;
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: Date;
2240
- updatedAt: Date;
2241
- deletedAt: Date | null;
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: Date;
2255
- updatedAt: Date;
2256
- deletedAt: Date | null;
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: Date;
2263
- updatedAt: Date;
2264
- deletedAt: Date | null;
2265
- emailVerifiedAt: Date | null;
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: Date;
2273
- updatedAt: Date;
2274
- deletedAt: Date | null;
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: Date;
2281
- updatedAt: Date;
2282
- deletedAt: Date | null;
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: Date;
2290
- updatedAt: Date;
2291
- deletedAt: Date | null;
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: Date;
2303
+ closeAt: string;
2304
2304
  unreadCount: number;
2305
- firstResponseAt: Date;
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: Date;
2325
- updatedAt: Date;
2326
- deletedAt: Date | null;
2324
+ createdAt: string;
2325
+ updatedAt: string;
2326
+ deletedAt: string | null;
2327
2327
  customFields: {
2328
2328
  id: string;
2329
- createdAt: Date;
2330
- updatedAt: Date;
2331
- deletedAt: Date | null;
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: Date | null;
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: Date;
2393
- updatedAt: Date;
2394
- deletedAt: Date | null;
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: Date;
2400
- updatedAt: Date;
2401
- deletedAt: Date | null;
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: Date;
2408
- updatedAt: Date;
2409
- deletedAt: Date | null;
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: Date;
2415
- updatedAt: Date;
2416
- deletedAt: Date | null;
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: Date;
2430
- updatedAt: Date;
2431
- deletedAt: Date | null;
2432
- emailVerifiedAt: Date | null;
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: Date;
2440
- updatedAt: Date;
2441
- deletedAt: Date | null;
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: Date;
2448
- updatedAt: Date;
2449
- deletedAt: Date | null;
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: Date;
2457
- updatedAt: Date;
2458
- deletedAt: Date | null;
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: Date;
2492
- updatedAt: Date;
2493
- deletedAt: Date | null;
2494
- emailVerifiedAt: Date | null;
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: Date;
2502
- updatedAt: Date;
2503
- deletedAt: Date | null;
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: Date;
2510
- updatedAt: Date;
2511
- deletedAt: Date | null;
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: Date;
2519
- updatedAt: Date;
2520
- deletedAt: Date | null;
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.ZodDate;
2614
- updatedAt: z.ZodDate;
2615
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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: Date | null;
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: Date | null;
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.ZodDate;
2809
- updatedAt: z.ZodDate;
2810
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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: Date;
2966
- updatedAt: Date;
2967
- deletedAt: Date | null;
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: Date | null;
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: Date;
3006
- updatedAt: Date;
3007
- deletedAt: Date | null;
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: Date | null;
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.ZodDate;
3047
- updatedAt: z.ZodDate;
3048
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
3056
- updatedAt: Date;
3057
- deletedAt: Date | null;
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: Date;
3063
- updatedAt: Date;
3064
- deletedAt: Date | null;
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.ZodDate;
3069
- updatedAt: z.ZodDate;
3070
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
3077
- updatedAt: Date;
3078
- deletedAt: Date | null;
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: Date;
3084
- updatedAt: Date;
3085
- deletedAt: Date | null;
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.ZodDate;
3091
- updatedAt: z.ZodDate;
3092
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate;
3098
- updatedAt: z.ZodDate;
3099
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
3106
- updatedAt: Date;
3107
- deletedAt: Date | null;
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: Date;
3113
- updatedAt: Date;
3114
- deletedAt: Date | null;
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: Date;
3121
- updatedAt: Date;
3122
- deletedAt: Date | null;
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: Date;
3128
- updatedAt: Date;
3129
- deletedAt: Date | null;
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: Date;
3136
- updatedAt: Date;
3137
- deletedAt: Date | null;
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: Date;
3143
- updatedAt: Date;
3144
- deletedAt: Date | null;
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: Date;
3154
- updatedAt: Date;
3155
- deletedAt: Date | null;
3153
+ createdAt: string;
3154
+ updatedAt: string;
3155
+ deletedAt: string | null;
3156
3156
  customFields: {
3157
3157
  id: string;
3158
- createdAt: Date;
3159
- updatedAt: Date;
3160
- deletedAt: Date | null;
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: Date | null;
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: Date;
3222
- updatedAt: Date;
3223
- deletedAt: Date | null;
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: Date;
3229
- updatedAt: Date;
3230
- deletedAt: Date | null;
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: Date;
3237
- updatedAt: Date;
3238
- deletedAt: Date | null;
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: Date;
3244
- updatedAt: Date;
3245
- deletedAt: Date | null;
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: Date;
3255
- updatedAt: Date;
3256
- deletedAt: Date | null;
3254
+ createdAt: string;
3255
+ updatedAt: string;
3256
+ deletedAt: string | null;
3257
3257
  customFields: {
3258
3258
  id: string;
3259
- createdAt: Date;
3260
- updatedAt: Date;
3261
- deletedAt: Date | null;
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: Date | null;
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: Date;
3323
- updatedAt: Date;
3324
- deletedAt: Date | null;
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: Date;
3330
- updatedAt: Date;
3331
- deletedAt: Date | null;
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: Date;
3338
- updatedAt: Date;
3339
- deletedAt: Date | null;
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: Date;
3345
- updatedAt: Date;
3346
- deletedAt: Date | null;
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.ZodDate;
3354
- updatedAt: z.ZodDate;
3355
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate>;
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.ZodDate;
3366
- updatedAt: z.ZodDate;
3367
- deletedAt: z.ZodNullable<z.ZodDate>;
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.ZodDate;
3374
- updatedAt: z.ZodDate;
3375
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
3383
- updatedAt: Date;
3384
- deletedAt: Date | null;
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: Date;
3391
- updatedAt: Date;
3392
- deletedAt: Date | null;
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: Date;
3400
- updatedAt: Date;
3401
- deletedAt: Date | null;
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: Date;
3408
- updatedAt: Date;
3409
- deletedAt: Date | null;
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: Date;
3417
- updatedAt: Date;
3418
- deletedAt: Date | null;
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: Date;
3425
- updatedAt: Date;
3426
- deletedAt: Date | null;
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.ZodDate;
3434
- updatedAt: z.ZodDate;
3435
- deletedAt: z.ZodNullable<z.ZodDate>;
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: Date;
3445
- updatedAt: Date;
3446
- deletedAt: Date | null;
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: Date;
3456
- updatedAt: Date;
3457
- deletedAt: Date | null;
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: Date;
3471
- updatedAt: Date;
3472
- deletedAt: Date | null;
3473
- emailVerifiedAt: Date | null;
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: Date;
3481
- updatedAt: Date;
3482
- deletedAt: Date | null;
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: Date;
3489
- updatedAt: Date;
3490
- deletedAt: Date | null;
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: Date;
3498
- updatedAt: Date;
3499
- deletedAt: Date | null;
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: Date;
3513
- updatedAt: Date;
3514
- deletedAt: Date | null;
3515
- emailVerifiedAt: Date | null;
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: Date;
3523
- updatedAt: Date;
3524
- deletedAt: Date | null;
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: Date;
3531
- updatedAt: Date;
3532
- deletedAt: Date | null;
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: Date;
3540
- updatedAt: Date;
3541
- deletedAt: Date | null;
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: Date;
3564
- updatedAt: Date;
3565
- deletedAt: Date | null;
3563
+ createdAt: string;
3564
+ updatedAt: string;
3565
+ deletedAt: string | null;
3566
3566
  customFields: {
3567
3567
  id: string;
3568
- createdAt: Date;
3569
- updatedAt: Date;
3570
- deletedAt: Date | null;
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: Date | null;
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: Date;
3632
- updatedAt: Date;
3633
- deletedAt: Date | null;
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: Date;
3639
- updatedAt: Date;
3640
- deletedAt: Date | null;
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: Date;
3647
- updatedAt: Date;
3648
- deletedAt: Date | null;
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: Date;
3654
- updatedAt: Date;
3655
- deletedAt: Date | null;
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: Date;
3698
- updatedAt: Date;
3699
- deletedAt: Date | null;
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: Date;
3706
- updatedAt: Date;
3707
- deletedAt: Date | null;
3708
- emailVerifiedAt: Date | null;
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: Date;
3716
- updatedAt: Date;
3717
- deletedAt: Date | null;
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: Date;
3724
- updatedAt: Date;
3725
- deletedAt: Date | null;
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: Date;
3733
- updatedAt: Date;
3734
- deletedAt: Date | null;
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: Date;
3746
+ closeAt: string;
3747
3747
  unreadCount: number;
3748
- firstResponseAt: Date;
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: Date;
3768
- updatedAt: Date;
3769
- deletedAt: Date | null;
3767
+ createdAt: string;
3768
+ updatedAt: string;
3769
+ deletedAt: string | null;
3770
3770
  customFields: {
3771
3771
  id: string;
3772
- createdAt: Date;
3773
- updatedAt: Date;
3774
- deletedAt: Date | null;
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: Date | null;
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: Date;
3836
- updatedAt: Date;
3837
- deletedAt: Date | null;
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: Date;
3843
- updatedAt: Date;
3844
- deletedAt: Date | null;
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: Date;
3851
- updatedAt: Date;
3852
- deletedAt: Date | null;
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: Date;
3858
- updatedAt: Date;
3859
- deletedAt: Date | null;
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: Date;
3873
- updatedAt: Date;
3874
- deletedAt: Date | null;
3875
- emailVerifiedAt: Date | null;
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: Date;
3883
- updatedAt: Date;
3884
- deletedAt: Date | null;
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: Date;
3891
- updatedAt: Date;
3892
- deletedAt: Date | null;
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: Date;
3900
- updatedAt: Date;
3901
- deletedAt: Date | null;
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: Date;
3935
- updatedAt: Date;
3936
- deletedAt: Date | null;
3937
- emailVerifiedAt: Date | null;
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: Date;
3945
- updatedAt: Date;
3946
- deletedAt: Date | null;
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: Date;
3953
- updatedAt: Date;
3954
- deletedAt: Date | null;
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: Date;
3962
- updatedAt: Date;
3963
- deletedAt: Date | null;
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: Date;
4008
- updatedAt: Date;
4009
- deletedAt: Date | null;
4010
- emailVerifiedAt: Date | null;
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: Date;
4018
- updatedAt: Date;
4019
- deletedAt: Date | null;
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: Date;
4026
- updatedAt: Date;
4027
- deletedAt: Date | null;
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: Date;
4035
- updatedAt: Date;
4036
- deletedAt: Date | null;
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: Date;
4059
- updatedAt: Date;
4060
- deletedAt: Date | null;
4058
+ createdAt: string;
4059
+ updatedAt: string;
4060
+ deletedAt: string | null;
4061
4061
  customFields: {
4062
4062
  id: string;
4063
- createdAt: Date;
4064
- updatedAt: Date;
4065
- deletedAt: Date | null;
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: Date | null;
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: Date;
4127
- updatedAt: Date;
4128
- deletedAt: Date | null;
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: Date;
4134
- updatedAt: Date;
4135
- deletedAt: Date | null;
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: Date;
4142
- updatedAt: Date;
4143
- deletedAt: Date | null;
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: Date;
4149
- updatedAt: Date;
4150
- deletedAt: Date | null;
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: Date;
4193
- updatedAt: Date;
4194
- deletedAt: Date | null;
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: Date;
4201
- updatedAt: Date;
4202
- deletedAt: Date | null;
4203
- emailVerifiedAt: Date | null;
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: Date;
4211
- updatedAt: Date;
4212
- deletedAt: Date | null;
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: Date;
4219
- updatedAt: Date;
4220
- deletedAt: Date | null;
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: Date;
4228
- updatedAt: Date;
4229
- deletedAt: Date | null;
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: Date;
4241
+ closeAt: string;
4242
4242
  unreadCount: number;
4243
- firstResponseAt: Date;
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: Date;
4263
- updatedAt: Date;
4264
- deletedAt: Date | null;
4262
+ createdAt: string;
4263
+ updatedAt: string;
4264
+ deletedAt: string | null;
4265
4265
  customFields: {
4266
4266
  id: string;
4267
- createdAt: Date;
4268
- updatedAt: Date;
4269
- deletedAt: Date | null;
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: Date | null;
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: Date;
4331
- updatedAt: Date;
4332
- deletedAt: Date | null;
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: Date;
4338
- updatedAt: Date;
4339
- deletedAt: Date | null;
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: Date;
4346
- updatedAt: Date;
4347
- deletedAt: Date | null;
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: Date;
4353
- updatedAt: Date;
4354
- deletedAt: Date | null;
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: Date;
4368
- updatedAt: Date;
4369
- deletedAt: Date | null;
4370
- emailVerifiedAt: Date | null;
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: Date;
4378
- updatedAt: Date;
4379
- deletedAt: Date | null;
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: Date;
4386
- updatedAt: Date;
4387
- deletedAt: Date | null;
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: Date;
4395
- updatedAt: Date;
4396
- deletedAt: Date | null;
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: Date;
4430
- updatedAt: Date;
4431
- deletedAt: Date | null;
4432
- emailVerifiedAt: Date | null;
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: Date;
4440
- updatedAt: Date;
4441
- deletedAt: Date | null;
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: Date;
4448
- updatedAt: Date;
4449
- deletedAt: Date | null;
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: Date;
4457
- updatedAt: Date;
4458
- deletedAt: Date | null;
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: Date;
4503
- updatedAt: Date;
4504
- deletedAt: Date | null;
4505
- emailVerifiedAt: Date | null;
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: Date;
4513
- updatedAt: Date;
4514
- deletedAt: Date | null;
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: Date;
4521
- updatedAt: Date;
4522
- deletedAt: Date | null;
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: Date;
4530
- updatedAt: Date;
4531
- deletedAt: Date | null;
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: Date;
4560
- updatedAt: Date;
4561
- deletedAt: Date | null;
4559
+ createdAt: string;
4560
+ updatedAt: string;
4561
+ deletedAt: string | null;
4562
4562
  customFields: {
4563
4563
  id: string;
4564
- createdAt: Date;
4565
- updatedAt: Date;
4566
- deletedAt: Date | null;
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: Date | null;
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: Date;
4628
- updatedAt: Date;
4629
- deletedAt: Date | null;
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: Date;
4635
- updatedAt: Date;
4636
- deletedAt: Date | null;
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: Date;
4643
- updatedAt: Date;
4644
- deletedAt: Date | null;
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: Date;
4650
- updatedAt: Date;
4651
- deletedAt: Date | null;
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: Date;
4694
- updatedAt: Date;
4695
- deletedAt: Date | null;
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: Date;
4702
- updatedAt: Date;
4703
- deletedAt: Date | null;
4704
- emailVerifiedAt: Date | null;
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: Date;
4712
- updatedAt: Date;
4713
- deletedAt: Date | null;
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: Date;
4720
- updatedAt: Date;
4721
- deletedAt: Date | null;
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: Date;
4729
- updatedAt: Date;
4730
- deletedAt: Date | null;
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: Date;
4742
+ closeAt: string;
4743
4743
  unreadCount: number;
4744
- firstResponseAt: Date;
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: Date;
4764
- updatedAt: Date;
4765
- deletedAt: Date | null;
4763
+ createdAt: string;
4764
+ updatedAt: string;
4765
+ deletedAt: string | null;
4766
4766
  customFields: {
4767
4767
  id: string;
4768
- createdAt: Date;
4769
- updatedAt: Date;
4770
- deletedAt: Date | null;
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: Date | null;
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: Date;
4832
- updatedAt: Date;
4833
- deletedAt: Date | null;
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: Date;
4839
- updatedAt: Date;
4840
- deletedAt: Date | null;
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: Date;
4847
- updatedAt: Date;
4848
- deletedAt: Date | null;
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: Date;
4854
- updatedAt: Date;
4855
- deletedAt: Date | null;
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: Date;
4869
- updatedAt: Date;
4870
- deletedAt: Date | null;
4871
- emailVerifiedAt: Date | null;
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: Date;
4879
- updatedAt: Date;
4880
- deletedAt: Date | null;
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: Date;
4887
- updatedAt: Date;
4888
- deletedAt: Date | null;
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: Date;
4896
- updatedAt: Date;
4897
- deletedAt: Date | null;
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: Date;
4931
- updatedAt: Date;
4932
- deletedAt: Date | null;
4933
- emailVerifiedAt: Date | null;
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: Date;
4941
- updatedAt: Date;
4942
- deletedAt: Date | null;
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: Date;
4949
- updatedAt: Date;
4950
- deletedAt: Date | null;
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: Date;
4958
- updatedAt: Date;
4959
- deletedAt: Date | null;
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: Date;
5004
- updatedAt: Date;
5005
- deletedAt: Date | null;
5006
- emailVerifiedAt: Date | null;
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: Date;
5014
- updatedAt: Date;
5015
- deletedAt: Date | null;
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: Date;
5022
- updatedAt: Date;
5023
- deletedAt: Date | null;
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: Date;
5031
- updatedAt: Date;
5032
- deletedAt: Date | null;
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: Date;
5061
- updatedAt: Date;
5062
- deletedAt: Date | null;
5060
+ createdAt: string;
5061
+ updatedAt: string;
5062
+ deletedAt: string | null;
5063
5063
  customFields: {
5064
5064
  id: string;
5065
- createdAt: Date;
5066
- updatedAt: Date;
5067
- deletedAt: Date | null;
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: Date | null;
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: Date;
5129
- updatedAt: Date;
5130
- deletedAt: Date | null;
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: Date;
5136
- updatedAt: Date;
5137
- deletedAt: Date | null;
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: Date;
5144
- updatedAt: Date;
5145
- deletedAt: Date | null;
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: Date;
5151
- updatedAt: Date;
5152
- deletedAt: Date | null;
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: Date;
5195
- updatedAt: Date;
5196
- deletedAt: Date | null;
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: Date;
5203
- updatedAt: Date;
5204
- deletedAt: Date | null;
5205
- emailVerifiedAt: Date | null;
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: Date;
5213
- updatedAt: Date;
5214
- deletedAt: Date | null;
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: Date;
5221
- updatedAt: Date;
5222
- deletedAt: Date | null;
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: Date;
5230
- updatedAt: Date;
5231
- deletedAt: Date | null;
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: Date;
5243
+ closeAt: string;
5244
5244
  unreadCount: number;
5245
- firstResponseAt: Date;
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: Date;
5265
- updatedAt: Date;
5266
- deletedAt: Date | null;
5264
+ createdAt: string;
5265
+ updatedAt: string;
5266
+ deletedAt: string | null;
5267
5267
  customFields: {
5268
5268
  id: string;
5269
- createdAt: Date;
5270
- updatedAt: Date;
5271
- deletedAt: Date | null;
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: Date | null;
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: Date;
5333
- updatedAt: Date;
5334
- deletedAt: Date | null;
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: Date;
5340
- updatedAt: Date;
5341
- deletedAt: Date | null;
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: Date;
5348
- updatedAt: Date;
5349
- deletedAt: Date | null;
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: Date;
5355
- updatedAt: Date;
5356
- deletedAt: Date | null;
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: Date;
5370
- updatedAt: Date;
5371
- deletedAt: Date | null;
5372
- emailVerifiedAt: Date | null;
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: Date;
5380
- updatedAt: Date;
5381
- deletedAt: Date | null;
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: Date;
5388
- updatedAt: Date;
5389
- deletedAt: Date | null;
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: Date;
5397
- updatedAt: Date;
5398
- deletedAt: Date | null;
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: Date;
5432
- updatedAt: Date;
5433
- deletedAt: Date | null;
5434
- emailVerifiedAt: Date | null;
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: Date;
5442
- updatedAt: Date;
5443
- deletedAt: Date | null;
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: Date;
5450
- updatedAt: Date;
5451
- deletedAt: Date | null;
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: Date;
5459
- updatedAt: Date;
5460
- deletedAt: Date | null;
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: Date;
5505
- updatedAt: Date;
5506
- deletedAt: Date | null;
5507
- emailVerifiedAt: Date | null;
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: Date;
5515
- updatedAt: Date;
5516
- deletedAt: Date | null;
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: Date;
5523
- updatedAt: Date;
5524
- deletedAt: Date | null;
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: Date;
5532
- updatedAt: Date;
5533
- deletedAt: Date | null;
5531
+ createdAt: string;
5532
+ updatedAt: string;
5533
+ deletedAt: string | null;
5534
5534
  userId: string | null;
5535
5535
  sipServerUrl: string;
5536
5536
  sipUserName: string;