@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
@@ -12,7 +12,7 @@ export declare const CxLogSchema: z.ZodObject<{
12
12
  queueId: z.ZodNullable<z.ZodString>;
13
13
  agentId: z.ZodNullable<z.ZodString>;
14
14
  direction: z.ZodNullable<z.ZodString>;
15
- startedDate: z.ZodNullable<z.ZodDate>;
15
+ startedDate: z.ZodNullable<z.ZodString>;
16
16
  handledTime: z.ZodNullable<z.ZodNumber>;
17
17
  firstResponseTime: z.ZodNullable<z.ZodNumber>;
18
18
  disposition: z.ZodNullable<z.ZodString>;
@@ -91,7 +91,7 @@ export declare const CxLogSchema: z.ZodObject<{
91
91
  entityName: string;
92
92
  queueId: string | null;
93
93
  agentId: string | null;
94
- startedDate: Date | null;
94
+ startedDate: string | null;
95
95
  handledTime: number | null;
96
96
  firstResponseTime: number | null;
97
97
  wrapUpForm: {
@@ -125,7 +125,7 @@ export declare const CxLogSchema: z.ZodObject<{
125
125
  entityName: string;
126
126
  queueId: string | null;
127
127
  agentId: string | null;
128
- startedDate: Date | null;
128
+ startedDate: string | null;
129
129
  handledTime: number | null;
130
130
  firstResponseTime: number | null;
131
131
  wrapUpForm: {
@@ -250,14 +250,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
250
250
  }>>;
251
251
  room: z.ZodNullable<z.ZodObject<{
252
252
  id: z.ZodString;
253
- createdAt: z.ZodDate;
254
- updatedAt: z.ZodDate;
255
- deletedAt: z.ZodNullable<z.ZodDate>;
253
+ createdAt: z.ZodString;
254
+ updatedAt: z.ZodString;
255
+ deletedAt: z.ZodNullable<z.ZodString>;
256
256
  lastMessage: z.ZodString;
257
257
  handleTime: z.ZodNumber;
258
- closeAt: z.ZodDate;
258
+ closeAt: z.ZodString;
259
259
  unreadCount: z.ZodNumber;
260
- firstResponseAt: z.ZodDate;
260
+ firstResponseAt: z.ZodString;
261
261
  firstResponseTime: z.ZodNumber;
262
262
  isLatest: z.ZodBoolean;
263
263
  direction: z.ZodEnum<["incoming", "outgoing", "system"]>;
@@ -287,9 +287,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
287
287
  }>;
288
288
  contact: z.ZodObject<{
289
289
  id: z.ZodString;
290
- createdAt: z.ZodDate;
291
- updatedAt: z.ZodDate;
292
- deletedAt: z.ZodNullable<z.ZodDate>;
290
+ createdAt: z.ZodString;
291
+ updatedAt: z.ZodString;
292
+ deletedAt: z.ZodNullable<z.ZodString>;
293
293
  name: z.ZodString;
294
294
  address: z.ZodNullable<z.ZodString>;
295
295
  channel: z.ZodNullable<z.ZodString>;
@@ -332,7 +332,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
332
332
  textValue: z.ZodNullable<z.ZodString>;
333
333
  booleanValue: z.ZodNullable<z.ZodBoolean>;
334
334
  numberValue: z.ZodNullable<z.ZodNumber>;
335
- dateValue: z.ZodNullable<z.ZodDate>;
335
+ dateValue: z.ZodNullable<z.ZodString>;
336
336
  attribute: z.ZodObject<Omit<{
337
337
  id: z.ZodString;
338
338
  createdAt: z.ZodString;
@@ -436,7 +436,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
436
436
  textValue: string | null;
437
437
  booleanValue: boolean | null;
438
438
  numberValue: number | null;
439
- dateValue: Date | null;
439
+ dateValue: string | null;
440
440
  }, {
441
441
  id: string;
442
442
  createdAt: string;
@@ -459,7 +459,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
459
459
  textValue: string | null;
460
460
  booleanValue: boolean | null;
461
461
  numberValue: number | null;
462
- dateValue: Date | null;
462
+ dateValue: string | null;
463
463
  }>, "many">>;
464
464
  }, "customFields">, "strip", z.ZodTypeAny, {
465
465
  id: string;
@@ -482,13 +482,13 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
482
482
  }>>;
483
483
  customFields: z.ZodArray<z.ZodObject<{
484
484
  id: z.ZodString;
485
- createdAt: z.ZodDate;
486
- updatedAt: z.ZodDate;
487
- deletedAt: z.ZodNullable<z.ZodDate>;
485
+ createdAt: z.ZodString;
486
+ updatedAt: z.ZodString;
487
+ deletedAt: z.ZodNullable<z.ZodString>;
488
488
  textValue: z.ZodNullable<z.ZodString>;
489
489
  booleanValue: z.ZodNullable<z.ZodBoolean>;
490
490
  numberValue: z.ZodNullable<z.ZodNumber>;
491
- dateValue: z.ZodNullable<z.ZodDate>;
491
+ dateValue: z.ZodNullable<z.ZodString>;
492
492
  attribute: z.ZodObject<Omit<{
493
493
  id: z.ZodString;
494
494
  createdAt: z.ZodString;
@@ -639,9 +639,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
639
639
  }>, "many">;
640
640
  }, "strip", z.ZodTypeAny, {
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 CxLogSchemaWithRelations: z.ZodObject<{
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;
@@ -679,9 +679,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
679
679
  }[];
680
680
  }, {
681
681
  id: string;
682
- createdAt: Date;
683
- updatedAt: Date;
684
- deletedAt: Date | null;
682
+ createdAt: string;
683
+ updatedAt: string;
684
+ deletedAt: string | null;
685
685
  attribute: {
686
686
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
687
687
  id: string;
@@ -699,7 +699,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
699
699
  textValue: string | null;
700
700
  booleanValue: boolean | null;
701
701
  numberValue: number | null;
702
- dateValue: Date | null;
702
+ dateValue: string | null;
703
703
  uploads: {
704
704
  id: string;
705
705
  createdAt: string;
@@ -720,105 +720,105 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
720
720
  }>, "many">;
721
721
  contactEmails: z.ZodArray<z.ZodObject<{
722
722
  id: z.ZodString;
723
- createdAt: z.ZodDate;
724
- updatedAt: z.ZodDate;
725
- deletedAt: z.ZodNullable<z.ZodDate>;
723
+ createdAt: z.ZodString;
724
+ updatedAt: z.ZodString;
725
+ deletedAt: z.ZodNullable<z.ZodString>;
726
726
  email: z.ZodString;
727
727
  isPrimary: z.ZodBoolean;
728
728
  }, "strip", z.ZodTypeAny, {
729
729
  id: string;
730
730
  isPrimary: boolean;
731
731
  email: string;
732
- createdAt: Date;
733
- updatedAt: Date;
734
- deletedAt: Date | null;
732
+ createdAt: string;
733
+ updatedAt: string;
734
+ deletedAt: string | null;
735
735
  }, {
736
736
  id: string;
737
737
  isPrimary: boolean;
738
738
  email: string;
739
- createdAt: Date;
740
- updatedAt: Date;
741
- deletedAt: Date | null;
739
+ createdAt: string;
740
+ updatedAt: string;
741
+ deletedAt: string | null;
742
742
  }>, "many">;
743
743
  contactPhones: z.ZodArray<z.ZodObject<{
744
744
  id: z.ZodString;
745
- createdAt: z.ZodDate;
746
- updatedAt: z.ZodDate;
747
- deletedAt: z.ZodNullable<z.ZodDate>;
745
+ createdAt: z.ZodString;
746
+ updatedAt: z.ZodString;
747
+ deletedAt: z.ZodNullable<z.ZodString>;
748
748
  phone: z.ZodString;
749
749
  isPrimary: z.ZodBoolean;
750
750
  }, "strip", z.ZodTypeAny, {
751
751
  id: string;
752
752
  isPrimary: boolean;
753
- createdAt: Date;
754
- updatedAt: Date;
755
- deletedAt: Date | null;
753
+ createdAt: string;
754
+ updatedAt: string;
755
+ deletedAt: string | null;
756
756
  phone: string;
757
757
  }, {
758
758
  id: string;
759
759
  isPrimary: boolean;
760
- createdAt: Date;
761
- updatedAt: Date;
762
- deletedAt: Date | null;
760
+ createdAt: string;
761
+ updatedAt: string;
762
+ deletedAt: string | null;
763
763
  phone: string;
764
764
  }>, "many">;
765
765
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
766
766
  id: z.ZodString;
767
- createdAt: z.ZodDate;
768
- updatedAt: z.ZodDate;
769
- deletedAt: z.ZodNullable<z.ZodDate>;
767
+ createdAt: z.ZodString;
768
+ updatedAt: z.ZodString;
769
+ deletedAt: z.ZodNullable<z.ZodString>;
770
770
  entityId: z.ZodString;
771
771
  description: z.ZodString;
772
772
  entityType: z.ZodObject<{
773
773
  id: z.ZodString;
774
- createdAt: z.ZodDate;
775
- updatedAt: z.ZodDate;
776
- deletedAt: z.ZodNullable<z.ZodDate>;
774
+ createdAt: z.ZodString;
775
+ updatedAt: z.ZodString;
776
+ deletedAt: z.ZodNullable<z.ZodString>;
777
777
  entity: z.ZodString;
778
778
  description: z.ZodNullable<z.ZodString>;
779
779
  }, "strip", z.ZodTypeAny, {
780
780
  id: string;
781
781
  description: string | null;
782
- createdAt: Date;
783
- updatedAt: Date;
784
- deletedAt: Date | null;
782
+ createdAt: string;
783
+ updatedAt: string;
784
+ deletedAt: string | null;
785
785
  entity: string;
786
786
  }, {
787
787
  id: string;
788
788
  description: string | null;
789
- createdAt: Date;
790
- updatedAt: Date;
791
- deletedAt: Date | null;
789
+ createdAt: string;
790
+ updatedAt: string;
791
+ deletedAt: string | null;
792
792
  entity: string;
793
793
  }>;
794
794
  }, "strip", z.ZodTypeAny, {
795
795
  id: string;
796
796
  description: string;
797
- createdAt: Date;
798
- updatedAt: Date;
799
- deletedAt: Date | null;
797
+ createdAt: string;
798
+ updatedAt: string;
799
+ deletedAt: string | null;
800
800
  entityId: string;
801
801
  entityType: {
802
802
  id: string;
803
803
  description: string | null;
804
- createdAt: Date;
805
- updatedAt: Date;
806
- deletedAt: Date | null;
804
+ createdAt: string;
805
+ updatedAt: string;
806
+ deletedAt: string | null;
807
807
  entity: string;
808
808
  };
809
809
  }, {
810
810
  id: string;
811
811
  description: string;
812
- createdAt: Date;
813
- updatedAt: Date;
814
- deletedAt: Date | null;
812
+ createdAt: string;
813
+ updatedAt: string;
814
+ deletedAt: string | null;
815
815
  entityId: string;
816
816
  entityType: {
817
817
  id: string;
818
818
  description: string | null;
819
- createdAt: Date;
820
- updatedAt: Date;
821
- deletedAt: Date | null;
819
+ createdAt: string;
820
+ updatedAt: string;
821
+ deletedAt: string | null;
822
822
  entity: string;
823
823
  };
824
824
  }>, "many">>;
@@ -827,14 +827,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
827
827
  channel: string | null;
828
828
  address: string | null;
829
829
  name: string;
830
- createdAt: Date;
831
- updatedAt: Date;
832
- deletedAt: Date | null;
830
+ createdAt: string;
831
+ updatedAt: string;
832
+ deletedAt: string | null;
833
833
  customFields: {
834
834
  id: string;
835
- createdAt: Date;
836
- updatedAt: Date;
837
- deletedAt: Date | null;
835
+ createdAt: string;
836
+ updatedAt: string;
837
+ deletedAt: string | null;
838
838
  attribute: {
839
839
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
840
840
  id: string;
@@ -852,7 +852,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
852
852
  textValue: string | null;
853
853
  booleanValue: boolean | null;
854
854
  numberValue: number | null;
855
- dateValue: Date | null;
855
+ dateValue: string | null;
856
856
  uploads: {
857
857
  id: string;
858
858
  createdAt: string;
@@ -895,31 +895,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
895
895
  id: string;
896
896
  isPrimary: boolean;
897
897
  email: string;
898
- createdAt: Date;
899
- updatedAt: Date;
900
- deletedAt: Date | null;
898
+ createdAt: string;
899
+ updatedAt: string;
900
+ deletedAt: string | null;
901
901
  }[];
902
902
  contactPhones: {
903
903
  id: string;
904
904
  isPrimary: boolean;
905
- createdAt: Date;
906
- updatedAt: Date;
907
- deletedAt: Date | null;
905
+ createdAt: string;
906
+ updatedAt: string;
907
+ deletedAt: string | null;
908
908
  phone: string;
909
909
  }[];
910
910
  activityLogs?: {
911
911
  id: string;
912
912
  description: string;
913
- createdAt: Date;
914
- updatedAt: Date;
915
- deletedAt: Date | null;
913
+ createdAt: string;
914
+ updatedAt: string;
915
+ deletedAt: string | null;
916
916
  entityId: string;
917
917
  entityType: {
918
918
  id: string;
919
919
  description: string | null;
920
- createdAt: Date;
921
- updatedAt: Date;
922
- deletedAt: Date | null;
920
+ createdAt: string;
921
+ updatedAt: string;
922
+ deletedAt: string | null;
923
923
  entity: string;
924
924
  };
925
925
  }[] | undefined;
@@ -928,14 +928,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
928
928
  channel: string | null;
929
929
  address: string | null;
930
930
  name: string;
931
- createdAt: Date;
932
- updatedAt: Date;
933
- deletedAt: Date | null;
931
+ createdAt: string;
932
+ updatedAt: string;
933
+ deletedAt: string | null;
934
934
  customFields: {
935
935
  id: string;
936
- createdAt: Date;
937
- updatedAt: Date;
938
- deletedAt: Date | null;
936
+ createdAt: string;
937
+ updatedAt: string;
938
+ deletedAt: string | null;
939
939
  attribute: {
940
940
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
941
941
  id: string;
@@ -953,7 +953,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
953
953
  textValue: string | null;
954
954
  booleanValue: boolean | null;
955
955
  numberValue: number | null;
956
- dateValue: Date | null;
956
+ dateValue: string | null;
957
957
  uploads: {
958
958
  id: string;
959
959
  createdAt: string;
@@ -996,31 +996,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
996
996
  id: string;
997
997
  isPrimary: boolean;
998
998
  email: string;
999
- createdAt: Date;
1000
- updatedAt: Date;
1001
- deletedAt: Date | null;
999
+ createdAt: string;
1000
+ updatedAt: string;
1001
+ deletedAt: string | null;
1002
1002
  }[];
1003
1003
  contactPhones: {
1004
1004
  id: string;
1005
1005
  isPrimary: boolean;
1006
- createdAt: Date;
1007
- updatedAt: Date;
1008
- deletedAt: Date | null;
1006
+ createdAt: string;
1007
+ updatedAt: string;
1008
+ deletedAt: string | null;
1009
1009
  phone: string;
1010
1010
  }[];
1011
1011
  activityLogs?: {
1012
1012
  id: string;
1013
1013
  description: string;
1014
- createdAt: Date;
1015
- updatedAt: Date;
1016
- deletedAt: Date | null;
1014
+ createdAt: string;
1015
+ updatedAt: string;
1016
+ deletedAt: string | null;
1017
1017
  entityId: string;
1018
1018
  entityType: {
1019
1019
  id: string;
1020
1020
  description: string | null;
1021
- createdAt: Date;
1022
- updatedAt: Date;
1023
- deletedAt: Date | null;
1021
+ createdAt: string;
1022
+ updatedAt: string;
1023
+ deletedAt: string | null;
1024
1024
  entity: string;
1025
1025
  };
1026
1026
  }[] | undefined;
@@ -1042,14 +1042,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1042
1042
  channel: string | null;
1043
1043
  address: string | null;
1044
1044
  name: string;
1045
- createdAt: Date;
1046
- updatedAt: Date;
1047
- deletedAt: Date | null;
1045
+ createdAt: string;
1046
+ updatedAt: string;
1047
+ deletedAt: string | null;
1048
1048
  customFields: {
1049
1049
  id: string;
1050
- createdAt: Date;
1051
- updatedAt: Date;
1052
- deletedAt: Date | null;
1050
+ createdAt: string;
1051
+ updatedAt: string;
1052
+ deletedAt: string | null;
1053
1053
  attribute: {
1054
1054
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1055
1055
  id: string;
@@ -1067,7 +1067,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1067
1067
  textValue: string | null;
1068
1068
  booleanValue: boolean | null;
1069
1069
  numberValue: number | null;
1070
- dateValue: Date | null;
1070
+ dateValue: string | null;
1071
1071
  uploads: {
1072
1072
  id: string;
1073
1073
  createdAt: string;
@@ -1110,31 +1110,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1110
1110
  id: string;
1111
1111
  isPrimary: boolean;
1112
1112
  email: string;
1113
- createdAt: Date;
1114
- updatedAt: Date;
1115
- deletedAt: Date | null;
1113
+ createdAt: string;
1114
+ updatedAt: string;
1115
+ deletedAt: string | null;
1116
1116
  }[];
1117
1117
  contactPhones: {
1118
1118
  id: string;
1119
1119
  isPrimary: boolean;
1120
- createdAt: Date;
1121
- updatedAt: Date;
1122
- deletedAt: Date | null;
1120
+ createdAt: string;
1121
+ updatedAt: string;
1122
+ deletedAt: string | null;
1123
1123
  phone: string;
1124
1124
  }[];
1125
1125
  activityLogs?: {
1126
1126
  id: string;
1127
1127
  description: string;
1128
- createdAt: Date;
1129
- updatedAt: Date;
1130
- deletedAt: Date | null;
1128
+ createdAt: string;
1129
+ updatedAt: string;
1130
+ deletedAt: string | null;
1131
1131
  entityId: string;
1132
1132
  entityType: {
1133
1133
  id: string;
1134
1134
  description: string | null;
1135
- createdAt: Date;
1136
- updatedAt: Date;
1137
- deletedAt: Date | null;
1135
+ createdAt: string;
1136
+ updatedAt: string;
1137
+ deletedAt: string | null;
1138
1138
  entity: string;
1139
1139
  };
1140
1140
  }[] | undefined;
@@ -1158,14 +1158,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1158
1158
  channel: string | null;
1159
1159
  address: string | null;
1160
1160
  name: string;
1161
- createdAt: Date;
1162
- updatedAt: Date;
1163
- deletedAt: Date | null;
1161
+ createdAt: string;
1162
+ updatedAt: string;
1163
+ deletedAt: string | null;
1164
1164
  customFields: {
1165
1165
  id: string;
1166
- createdAt: Date;
1167
- updatedAt: Date;
1168
- deletedAt: Date | null;
1166
+ createdAt: string;
1167
+ updatedAt: string;
1168
+ deletedAt: string | null;
1169
1169
  attribute: {
1170
1170
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1171
1171
  id: string;
@@ -1183,7 +1183,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1183
1183
  textValue: string | null;
1184
1184
  booleanValue: boolean | null;
1185
1185
  numberValue: number | null;
1186
- dateValue: Date | null;
1186
+ dateValue: string | null;
1187
1187
  uploads: {
1188
1188
  id: string;
1189
1189
  createdAt: string;
@@ -1226,31 +1226,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1226
1226
  id: string;
1227
1227
  isPrimary: boolean;
1228
1228
  email: string;
1229
- createdAt: Date;
1230
- updatedAt: Date;
1231
- deletedAt: Date | null;
1229
+ createdAt: string;
1230
+ updatedAt: string;
1231
+ deletedAt: string | null;
1232
1232
  }[];
1233
1233
  contactPhones: {
1234
1234
  id: string;
1235
1235
  isPrimary: boolean;
1236
- createdAt: Date;
1237
- updatedAt: Date;
1238
- deletedAt: Date | null;
1236
+ createdAt: string;
1237
+ updatedAt: string;
1238
+ deletedAt: string | null;
1239
1239
  phone: string;
1240
1240
  }[];
1241
1241
  activityLogs?: {
1242
1242
  id: string;
1243
1243
  description: string;
1244
- createdAt: Date;
1245
- updatedAt: Date;
1246
- deletedAt: Date | null;
1244
+ createdAt: string;
1245
+ updatedAt: string;
1246
+ deletedAt: string | null;
1247
1247
  entityId: string;
1248
1248
  entityType: {
1249
1249
  id: string;
1250
1250
  description: string | null;
1251
- createdAt: Date;
1252
- updatedAt: Date;
1253
- deletedAt: Date | null;
1251
+ createdAt: string;
1252
+ updatedAt: string;
1253
+ deletedAt: string | null;
1254
1254
  entity: string;
1255
1255
  };
1256
1256
  }[] | undefined;
@@ -1260,89 +1260,89 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1260
1260
  }>;
1261
1261
  actor: z.ZodObject<{
1262
1262
  id: z.ZodString;
1263
- createdAt: z.ZodDate;
1264
- updatedAt: z.ZodDate;
1265
- deletedAt: z.ZodNullable<z.ZodDate>;
1263
+ createdAt: z.ZodString;
1264
+ updatedAt: z.ZodString;
1265
+ deletedAt: z.ZodNullable<z.ZodString>;
1266
1266
  name: z.ZodString;
1267
1267
  email: z.ZodString;
1268
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
1268
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
1269
1269
  password: z.ZodString;
1270
1270
  address: z.ZodNullable<z.ZodString>;
1271
1271
  phone: z.ZodNullable<z.ZodString>;
1272
1272
  notificationCount: z.ZodNullable<z.ZodNumber>;
1273
1273
  roles: z.ZodArray<z.ZodObject<{
1274
1274
  id: z.ZodString;
1275
- createdAt: z.ZodDate;
1276
- updatedAt: z.ZodDate;
1277
- deletedAt: z.ZodNullable<z.ZodDate>;
1275
+ createdAt: z.ZodString;
1276
+ updatedAt: z.ZodString;
1277
+ deletedAt: z.ZodNullable<z.ZodString>;
1278
1278
  systemName: z.ZodString;
1279
1279
  displayName: z.ZodString;
1280
1280
  description: z.ZodNullable<z.ZodString>;
1281
1281
  permissions: z.ZodArray<z.ZodObject<{
1282
1282
  id: z.ZodString;
1283
- createdAt: z.ZodDate;
1284
- updatedAt: z.ZodDate;
1285
- deletedAt: z.ZodNullable<z.ZodDate>;
1283
+ createdAt: z.ZodString;
1284
+ updatedAt: z.ZodString;
1285
+ deletedAt: z.ZodNullable<z.ZodString>;
1286
1286
  systemName: z.ZodString;
1287
1287
  displayName: z.ZodString;
1288
1288
  description: z.ZodNullable<z.ZodString>;
1289
1289
  }, "strip", z.ZodTypeAny, {
1290
1290
  id: string;
1291
1291
  description: string | null;
1292
- createdAt: Date;
1293
- updatedAt: Date;
1294
- deletedAt: Date | null;
1292
+ createdAt: string;
1293
+ updatedAt: string;
1294
+ deletedAt: string | null;
1295
1295
  systemName: string;
1296
1296
  displayName: string;
1297
1297
  }, {
1298
1298
  id: string;
1299
1299
  description: string | null;
1300
- createdAt: Date;
1301
- updatedAt: Date;
1302
- deletedAt: Date | null;
1300
+ createdAt: string;
1301
+ updatedAt: string;
1302
+ deletedAt: string | null;
1303
1303
  systemName: string;
1304
1304
  displayName: string;
1305
1305
  }>, "many">;
1306
1306
  }, "strip", z.ZodTypeAny, {
1307
1307
  id: string;
1308
1308
  description: string | null;
1309
- createdAt: Date;
1310
- updatedAt: Date;
1311
- deletedAt: Date | null;
1309
+ createdAt: string;
1310
+ updatedAt: string;
1311
+ deletedAt: string | null;
1312
1312
  systemName: string;
1313
1313
  displayName: string;
1314
1314
  permissions: {
1315
1315
  id: string;
1316
1316
  description: string | null;
1317
- createdAt: Date;
1318
- updatedAt: Date;
1319
- deletedAt: Date | null;
1317
+ createdAt: string;
1318
+ updatedAt: string;
1319
+ deletedAt: string | null;
1320
1320
  systemName: string;
1321
1321
  displayName: string;
1322
1322
  }[];
1323
1323
  }, {
1324
1324
  id: string;
1325
1325
  description: string | null;
1326
- createdAt: Date;
1327
- updatedAt: Date;
1328
- deletedAt: Date | null;
1326
+ createdAt: string;
1327
+ updatedAt: string;
1328
+ deletedAt: string | null;
1329
1329
  systemName: string;
1330
1330
  displayName: string;
1331
1331
  permissions: {
1332
1332
  id: string;
1333
1333
  description: string | null;
1334
- createdAt: Date;
1335
- updatedAt: Date;
1336
- deletedAt: Date | null;
1334
+ createdAt: string;
1335
+ updatedAt: string;
1336
+ deletedAt: string | null;
1337
1337
  systemName: string;
1338
1338
  displayName: string;
1339
1339
  }[];
1340
1340
  }>, "many">;
1341
1341
  extension: z.ZodOptional<z.ZodObject<{
1342
1342
  id: z.ZodString;
1343
- createdAt: z.ZodDate;
1344
- updatedAt: z.ZodDate;
1345
- deletedAt: z.ZodNullable<z.ZodDate>;
1343
+ createdAt: z.ZodString;
1344
+ updatedAt: z.ZodString;
1345
+ deletedAt: z.ZodNullable<z.ZodString>;
1346
1346
  userId: z.ZodNullable<z.ZodString>;
1347
1347
  sipServerUrl: z.ZodString;
1348
1348
  sipUserName: z.ZodString;
@@ -1351,9 +1351,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1351
1351
  telephonySignature: z.ZodNullable<z.ZodString>;
1352
1352
  }, "strip", z.ZodTypeAny, {
1353
1353
  id: string;
1354
- createdAt: Date;
1355
- updatedAt: Date;
1356
- deletedAt: Date | null;
1354
+ createdAt: string;
1355
+ updatedAt: string;
1356
+ deletedAt: string | null;
1357
1357
  userId: string | null;
1358
1358
  sipServerUrl: string;
1359
1359
  sipUserName: string;
@@ -1362,9 +1362,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1362
1362
  telephonySignature: string | null;
1363
1363
  }, {
1364
1364
  id: string;
1365
- createdAt: Date;
1366
- updatedAt: Date;
1367
- deletedAt: Date | null;
1365
+ createdAt: string;
1366
+ updatedAt: string;
1367
+ deletedAt: string | null;
1368
1368
  userId: string | null;
1369
1369
  sipServerUrl: string;
1370
1370
  sipUserName: string;
@@ -1377,36 +1377,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1377
1377
  address: string | null;
1378
1378
  name: string;
1379
1379
  email: string;
1380
- createdAt: Date;
1381
- updatedAt: Date;
1382
- deletedAt: Date | null;
1383
- emailVerifiedAt: Date | null;
1380
+ createdAt: string;
1381
+ updatedAt: string;
1382
+ deletedAt: string | null;
1383
+ emailVerifiedAt: string | null;
1384
1384
  password: string;
1385
1385
  phone: string | null;
1386
1386
  notificationCount: number | null;
1387
1387
  roles: {
1388
1388
  id: string;
1389
1389
  description: string | null;
1390
- createdAt: Date;
1391
- updatedAt: Date;
1392
- deletedAt: Date | null;
1390
+ createdAt: string;
1391
+ updatedAt: string;
1392
+ deletedAt: string | null;
1393
1393
  systemName: string;
1394
1394
  displayName: string;
1395
1395
  permissions: {
1396
1396
  id: string;
1397
1397
  description: string | null;
1398
- createdAt: Date;
1399
- updatedAt: Date;
1400
- deletedAt: Date | null;
1398
+ createdAt: string;
1399
+ updatedAt: string;
1400
+ deletedAt: string | null;
1401
1401
  systemName: string;
1402
1402
  displayName: string;
1403
1403
  }[];
1404
1404
  }[];
1405
1405
  extension?: {
1406
1406
  id: string;
1407
- createdAt: Date;
1408
- updatedAt: Date;
1409
- deletedAt: Date | null;
1407
+ createdAt: string;
1408
+ updatedAt: string;
1409
+ deletedAt: string | null;
1410
1410
  userId: string | null;
1411
1411
  sipServerUrl: string;
1412
1412
  sipUserName: string;
@@ -1419,36 +1419,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1419
1419
  address: string | null;
1420
1420
  name: string;
1421
1421
  email: string;
1422
- createdAt: Date;
1423
- updatedAt: Date;
1424
- deletedAt: Date | null;
1425
- emailVerifiedAt: Date | null;
1422
+ createdAt: string;
1423
+ updatedAt: string;
1424
+ deletedAt: string | null;
1425
+ emailVerifiedAt: string | null;
1426
1426
  password: string;
1427
1427
  phone: string | null;
1428
1428
  notificationCount: number | null;
1429
1429
  roles: {
1430
1430
  id: string;
1431
1431
  description: string | null;
1432
- createdAt: Date;
1433
- updatedAt: Date;
1434
- deletedAt: Date | null;
1432
+ createdAt: string;
1433
+ updatedAt: string;
1434
+ deletedAt: string | null;
1435
1435
  systemName: string;
1436
1436
  displayName: string;
1437
1437
  permissions: {
1438
1438
  id: string;
1439
1439
  description: string | null;
1440
- createdAt: Date;
1441
- updatedAt: Date;
1442
- deletedAt: Date | null;
1440
+ createdAt: string;
1441
+ updatedAt: string;
1442
+ deletedAt: string | null;
1443
1443
  systemName: string;
1444
1444
  displayName: string;
1445
1445
  }[];
1446
1446
  }[];
1447
1447
  extension?: {
1448
1448
  id: string;
1449
- createdAt: Date;
1450
- updatedAt: Date;
1451
- deletedAt: Date | null;
1449
+ createdAt: string;
1450
+ updatedAt: string;
1451
+ deletedAt: string | null;
1452
1452
  userId: string | null;
1453
1453
  sipServerUrl: string;
1454
1454
  sipUserName: string;
@@ -1459,89 +1459,89 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1459
1459
  }>;
1460
1460
  assignee: z.ZodObject<{
1461
1461
  id: z.ZodString;
1462
- createdAt: z.ZodDate;
1463
- updatedAt: z.ZodDate;
1464
- deletedAt: z.ZodNullable<z.ZodDate>;
1462
+ createdAt: z.ZodString;
1463
+ updatedAt: z.ZodString;
1464
+ deletedAt: z.ZodNullable<z.ZodString>;
1465
1465
  name: z.ZodString;
1466
1466
  email: z.ZodString;
1467
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
1467
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
1468
1468
  password: z.ZodString;
1469
1469
  address: z.ZodNullable<z.ZodString>;
1470
1470
  phone: z.ZodNullable<z.ZodString>;
1471
1471
  notificationCount: z.ZodNullable<z.ZodNumber>;
1472
1472
  roles: z.ZodArray<z.ZodObject<{
1473
1473
  id: z.ZodString;
1474
- createdAt: z.ZodDate;
1475
- updatedAt: z.ZodDate;
1476
- deletedAt: z.ZodNullable<z.ZodDate>;
1474
+ createdAt: z.ZodString;
1475
+ updatedAt: z.ZodString;
1476
+ deletedAt: z.ZodNullable<z.ZodString>;
1477
1477
  systemName: z.ZodString;
1478
1478
  displayName: z.ZodString;
1479
1479
  description: z.ZodNullable<z.ZodString>;
1480
1480
  permissions: z.ZodArray<z.ZodObject<{
1481
1481
  id: z.ZodString;
1482
- createdAt: z.ZodDate;
1483
- updatedAt: z.ZodDate;
1484
- deletedAt: z.ZodNullable<z.ZodDate>;
1482
+ createdAt: z.ZodString;
1483
+ updatedAt: z.ZodString;
1484
+ deletedAt: z.ZodNullable<z.ZodString>;
1485
1485
  systemName: z.ZodString;
1486
1486
  displayName: z.ZodString;
1487
1487
  description: z.ZodNullable<z.ZodString>;
1488
1488
  }, "strip", z.ZodTypeAny, {
1489
1489
  id: string;
1490
1490
  description: string | null;
1491
- createdAt: Date;
1492
- updatedAt: Date;
1493
- deletedAt: Date | null;
1491
+ createdAt: string;
1492
+ updatedAt: string;
1493
+ deletedAt: string | null;
1494
1494
  systemName: string;
1495
1495
  displayName: string;
1496
1496
  }, {
1497
1497
  id: string;
1498
1498
  description: string | null;
1499
- createdAt: Date;
1500
- updatedAt: Date;
1501
- deletedAt: Date | null;
1499
+ createdAt: string;
1500
+ updatedAt: string;
1501
+ deletedAt: string | null;
1502
1502
  systemName: string;
1503
1503
  displayName: string;
1504
1504
  }>, "many">;
1505
1505
  }, "strip", z.ZodTypeAny, {
1506
1506
  id: string;
1507
1507
  description: string | null;
1508
- createdAt: Date;
1509
- updatedAt: Date;
1510
- deletedAt: Date | null;
1508
+ createdAt: string;
1509
+ updatedAt: string;
1510
+ deletedAt: string | null;
1511
1511
  systemName: string;
1512
1512
  displayName: string;
1513
1513
  permissions: {
1514
1514
  id: string;
1515
1515
  description: string | null;
1516
- createdAt: Date;
1517
- updatedAt: Date;
1518
- deletedAt: Date | null;
1516
+ createdAt: string;
1517
+ updatedAt: string;
1518
+ deletedAt: string | null;
1519
1519
  systemName: string;
1520
1520
  displayName: string;
1521
1521
  }[];
1522
1522
  }, {
1523
1523
  id: string;
1524
1524
  description: string | null;
1525
- createdAt: Date;
1526
- updatedAt: Date;
1527
- deletedAt: Date | null;
1525
+ createdAt: string;
1526
+ updatedAt: string;
1527
+ deletedAt: string | null;
1528
1528
  systemName: string;
1529
1529
  displayName: string;
1530
1530
  permissions: {
1531
1531
  id: string;
1532
1532
  description: string | null;
1533
- createdAt: Date;
1534
- updatedAt: Date;
1535
- deletedAt: Date | null;
1533
+ createdAt: string;
1534
+ updatedAt: string;
1535
+ deletedAt: string | null;
1536
1536
  systemName: string;
1537
1537
  displayName: string;
1538
1538
  }[];
1539
1539
  }>, "many">;
1540
1540
  extension: z.ZodOptional<z.ZodObject<{
1541
1541
  id: z.ZodString;
1542
- createdAt: z.ZodDate;
1543
- updatedAt: z.ZodDate;
1544
- deletedAt: z.ZodNullable<z.ZodDate>;
1542
+ createdAt: z.ZodString;
1543
+ updatedAt: z.ZodString;
1544
+ deletedAt: z.ZodNullable<z.ZodString>;
1545
1545
  userId: z.ZodNullable<z.ZodString>;
1546
1546
  sipServerUrl: z.ZodString;
1547
1547
  sipUserName: z.ZodString;
@@ -1550,9 +1550,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1550
1550
  telephonySignature: z.ZodNullable<z.ZodString>;
1551
1551
  }, "strip", z.ZodTypeAny, {
1552
1552
  id: string;
1553
- createdAt: Date;
1554
- updatedAt: Date;
1555
- deletedAt: Date | null;
1553
+ createdAt: string;
1554
+ updatedAt: string;
1555
+ deletedAt: string | null;
1556
1556
  userId: string | null;
1557
1557
  sipServerUrl: string;
1558
1558
  sipUserName: string;
@@ -1561,9 +1561,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1561
1561
  telephonySignature: string | null;
1562
1562
  }, {
1563
1563
  id: string;
1564
- createdAt: Date;
1565
- updatedAt: Date;
1566
- deletedAt: Date | null;
1564
+ createdAt: string;
1565
+ updatedAt: string;
1566
+ deletedAt: string | null;
1567
1567
  userId: string | null;
1568
1568
  sipServerUrl: string;
1569
1569
  sipUserName: string;
@@ -1576,36 +1576,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1576
1576
  address: string | null;
1577
1577
  name: string;
1578
1578
  email: string;
1579
- createdAt: Date;
1580
- updatedAt: Date;
1581
- deletedAt: Date | null;
1582
- emailVerifiedAt: Date | null;
1579
+ createdAt: string;
1580
+ updatedAt: string;
1581
+ deletedAt: string | null;
1582
+ emailVerifiedAt: string | null;
1583
1583
  password: string;
1584
1584
  phone: string | null;
1585
1585
  notificationCount: number | null;
1586
1586
  roles: {
1587
1587
  id: string;
1588
1588
  description: string | null;
1589
- createdAt: Date;
1590
- updatedAt: Date;
1591
- deletedAt: Date | null;
1589
+ createdAt: string;
1590
+ updatedAt: string;
1591
+ deletedAt: string | null;
1592
1592
  systemName: string;
1593
1593
  displayName: string;
1594
1594
  permissions: {
1595
1595
  id: string;
1596
1596
  description: string | null;
1597
- createdAt: Date;
1598
- updatedAt: Date;
1599
- deletedAt: Date | null;
1597
+ createdAt: string;
1598
+ updatedAt: string;
1599
+ deletedAt: string | null;
1600
1600
  systemName: string;
1601
1601
  displayName: string;
1602
1602
  }[];
1603
1603
  }[];
1604
1604
  extension?: {
1605
1605
  id: string;
1606
- createdAt: Date;
1607
- updatedAt: Date;
1608
- deletedAt: Date | null;
1606
+ createdAt: string;
1607
+ updatedAt: string;
1608
+ deletedAt: string | null;
1609
1609
  userId: string | null;
1610
1610
  sipServerUrl: string;
1611
1611
  sipUserName: string;
@@ -1618,36 +1618,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1618
1618
  address: string | null;
1619
1619
  name: string;
1620
1620
  email: string;
1621
- createdAt: Date;
1622
- updatedAt: Date;
1623
- deletedAt: Date | null;
1624
- emailVerifiedAt: Date | null;
1621
+ createdAt: string;
1622
+ updatedAt: string;
1623
+ deletedAt: string | null;
1624
+ emailVerifiedAt: string | null;
1625
1625
  password: string;
1626
1626
  phone: string | null;
1627
1627
  notificationCount: number | null;
1628
1628
  roles: {
1629
1629
  id: string;
1630
1630
  description: string | null;
1631
- createdAt: Date;
1632
- updatedAt: Date;
1633
- deletedAt: Date | null;
1631
+ createdAt: string;
1632
+ updatedAt: string;
1633
+ deletedAt: string | null;
1634
1634
  systemName: string;
1635
1635
  displayName: string;
1636
1636
  permissions: {
1637
1637
  id: string;
1638
1638
  description: string | null;
1639
- createdAt: Date;
1640
- updatedAt: Date;
1641
- deletedAt: Date | null;
1639
+ createdAt: string;
1640
+ updatedAt: string;
1641
+ deletedAt: string | null;
1642
1642
  systemName: string;
1643
1643
  displayName: string;
1644
1644
  }[];
1645
1645
  }[];
1646
1646
  extension?: {
1647
1647
  id: string;
1648
- createdAt: Date;
1649
- updatedAt: Date;
1650
- deletedAt: Date | null;
1648
+ createdAt: string;
1649
+ updatedAt: string;
1650
+ deletedAt: string | null;
1651
1651
  userId: string | null;
1652
1652
  sipServerUrl: string;
1653
1653
  sipUserName: string;
@@ -1687,89 +1687,89 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1687
1687
  connectedUserId: z.ZodOptional<z.ZodString>;
1688
1688
  actor: z.ZodOptional<z.ZodObject<{
1689
1689
  id: z.ZodString;
1690
- createdAt: z.ZodDate;
1691
- updatedAt: z.ZodDate;
1692
- deletedAt: z.ZodNullable<z.ZodDate>;
1690
+ createdAt: z.ZodString;
1691
+ updatedAt: z.ZodString;
1692
+ deletedAt: z.ZodNullable<z.ZodString>;
1693
1693
  name: z.ZodString;
1694
1694
  email: z.ZodString;
1695
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
1695
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
1696
1696
  password: z.ZodString;
1697
1697
  address: z.ZodNullable<z.ZodString>;
1698
1698
  phone: z.ZodNullable<z.ZodString>;
1699
1699
  notificationCount: z.ZodNullable<z.ZodNumber>;
1700
1700
  roles: z.ZodArray<z.ZodObject<{
1701
1701
  id: z.ZodString;
1702
- createdAt: z.ZodDate;
1703
- updatedAt: z.ZodDate;
1704
- deletedAt: z.ZodNullable<z.ZodDate>;
1705
- systemName: z.ZodString;
1702
+ createdAt: z.ZodString;
1703
+ updatedAt: z.ZodString;
1704
+ deletedAt: z.ZodNullable<z.ZodString>;
1705
+ systemName: z.ZodString;
1706
1706
  displayName: z.ZodString;
1707
1707
  description: z.ZodNullable<z.ZodString>;
1708
1708
  permissions: z.ZodArray<z.ZodObject<{
1709
1709
  id: z.ZodString;
1710
- createdAt: z.ZodDate;
1711
- updatedAt: z.ZodDate;
1712
- deletedAt: z.ZodNullable<z.ZodDate>;
1710
+ createdAt: z.ZodString;
1711
+ updatedAt: z.ZodString;
1712
+ deletedAt: z.ZodNullable<z.ZodString>;
1713
1713
  systemName: z.ZodString;
1714
1714
  displayName: z.ZodString;
1715
1715
  description: z.ZodNullable<z.ZodString>;
1716
1716
  }, "strip", z.ZodTypeAny, {
1717
1717
  id: string;
1718
1718
  description: string | null;
1719
- createdAt: Date;
1720
- updatedAt: Date;
1721
- deletedAt: Date | null;
1719
+ createdAt: string;
1720
+ updatedAt: string;
1721
+ deletedAt: string | null;
1722
1722
  systemName: string;
1723
1723
  displayName: string;
1724
1724
  }, {
1725
1725
  id: string;
1726
1726
  description: string | null;
1727
- createdAt: Date;
1728
- updatedAt: Date;
1729
- deletedAt: Date | null;
1727
+ createdAt: string;
1728
+ updatedAt: string;
1729
+ deletedAt: string | null;
1730
1730
  systemName: string;
1731
1731
  displayName: string;
1732
1732
  }>, "many">;
1733
1733
  }, "strip", z.ZodTypeAny, {
1734
1734
  id: string;
1735
1735
  description: string | null;
1736
- createdAt: Date;
1737
- updatedAt: Date;
1738
- deletedAt: Date | null;
1736
+ createdAt: string;
1737
+ updatedAt: string;
1738
+ deletedAt: string | null;
1739
1739
  systemName: string;
1740
1740
  displayName: string;
1741
1741
  permissions: {
1742
1742
  id: string;
1743
1743
  description: string | null;
1744
- createdAt: Date;
1745
- updatedAt: Date;
1746
- deletedAt: Date | null;
1744
+ createdAt: string;
1745
+ updatedAt: string;
1746
+ deletedAt: string | null;
1747
1747
  systemName: string;
1748
1748
  displayName: string;
1749
1749
  }[];
1750
1750
  }, {
1751
1751
  id: string;
1752
1752
  description: string | null;
1753
- createdAt: Date;
1754
- updatedAt: Date;
1755
- deletedAt: Date | null;
1753
+ createdAt: string;
1754
+ updatedAt: string;
1755
+ deletedAt: string | null;
1756
1756
  systemName: string;
1757
1757
  displayName: string;
1758
1758
  permissions: {
1759
1759
  id: string;
1760
1760
  description: string | null;
1761
- createdAt: Date;
1762
- updatedAt: Date;
1763
- deletedAt: Date | null;
1761
+ createdAt: string;
1762
+ updatedAt: string;
1763
+ deletedAt: string | null;
1764
1764
  systemName: string;
1765
1765
  displayName: string;
1766
1766
  }[];
1767
1767
  }>, "many">;
1768
1768
  extension: z.ZodOptional<z.ZodObject<{
1769
1769
  id: z.ZodString;
1770
- createdAt: z.ZodDate;
1771
- updatedAt: z.ZodDate;
1772
- deletedAt: z.ZodNullable<z.ZodDate>;
1770
+ createdAt: z.ZodString;
1771
+ updatedAt: z.ZodString;
1772
+ deletedAt: z.ZodNullable<z.ZodString>;
1773
1773
  userId: z.ZodNullable<z.ZodString>;
1774
1774
  sipServerUrl: z.ZodString;
1775
1775
  sipUserName: z.ZodString;
@@ -1778,9 +1778,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1778
1778
  telephonySignature: z.ZodNullable<z.ZodString>;
1779
1779
  }, "strip", z.ZodTypeAny, {
1780
1780
  id: string;
1781
- createdAt: Date;
1782
- updatedAt: Date;
1783
- deletedAt: Date | null;
1781
+ createdAt: string;
1782
+ updatedAt: string;
1783
+ deletedAt: string | null;
1784
1784
  userId: string | null;
1785
1785
  sipServerUrl: string;
1786
1786
  sipUserName: string;
@@ -1789,9 +1789,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1789
1789
  telephonySignature: string | null;
1790
1790
  }, {
1791
1791
  id: string;
1792
- createdAt: Date;
1793
- updatedAt: Date;
1794
- deletedAt: Date | null;
1792
+ createdAt: string;
1793
+ updatedAt: string;
1794
+ deletedAt: string | null;
1795
1795
  userId: string | null;
1796
1796
  sipServerUrl: string;
1797
1797
  sipUserName: string;
@@ -1804,36 +1804,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1804
1804
  address: string | null;
1805
1805
  name: string;
1806
1806
  email: string;
1807
- createdAt: Date;
1808
- updatedAt: Date;
1809
- deletedAt: Date | null;
1810
- emailVerifiedAt: Date | null;
1807
+ createdAt: string;
1808
+ updatedAt: string;
1809
+ deletedAt: string | null;
1810
+ emailVerifiedAt: string | null;
1811
1811
  password: string;
1812
1812
  phone: string | null;
1813
1813
  notificationCount: number | null;
1814
1814
  roles: {
1815
1815
  id: string;
1816
1816
  description: string | null;
1817
- createdAt: Date;
1818
- updatedAt: Date;
1819
- deletedAt: Date | null;
1817
+ createdAt: string;
1818
+ updatedAt: string;
1819
+ deletedAt: string | null;
1820
1820
  systemName: string;
1821
1821
  displayName: string;
1822
1822
  permissions: {
1823
1823
  id: string;
1824
1824
  description: string | null;
1825
- createdAt: Date;
1826
- updatedAt: Date;
1827
- deletedAt: Date | null;
1825
+ createdAt: string;
1826
+ updatedAt: string;
1827
+ deletedAt: string | null;
1828
1828
  systemName: string;
1829
1829
  displayName: string;
1830
1830
  }[];
1831
1831
  }[];
1832
1832
  extension?: {
1833
1833
  id: string;
1834
- createdAt: Date;
1835
- updatedAt: Date;
1836
- deletedAt: Date | null;
1834
+ createdAt: string;
1835
+ updatedAt: string;
1836
+ deletedAt: string | null;
1837
1837
  userId: string | null;
1838
1838
  sipServerUrl: string;
1839
1839
  sipUserName: string;
@@ -1846,36 +1846,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1846
1846
  address: string | null;
1847
1847
  name: string;
1848
1848
  email: string;
1849
- createdAt: Date;
1850
- updatedAt: Date;
1851
- deletedAt: Date | null;
1852
- emailVerifiedAt: Date | null;
1849
+ createdAt: string;
1850
+ updatedAt: string;
1851
+ deletedAt: string | null;
1852
+ emailVerifiedAt: string | null;
1853
1853
  password: string;
1854
1854
  phone: string | null;
1855
1855
  notificationCount: number | null;
1856
1856
  roles: {
1857
1857
  id: string;
1858
1858
  description: string | null;
1859
- createdAt: Date;
1860
- updatedAt: Date;
1861
- deletedAt: Date | null;
1859
+ createdAt: string;
1860
+ updatedAt: string;
1861
+ deletedAt: string | null;
1862
1862
  systemName: string;
1863
1863
  displayName: string;
1864
1864
  permissions: {
1865
1865
  id: string;
1866
1866
  description: string | null;
1867
- createdAt: Date;
1868
- updatedAt: Date;
1869
- deletedAt: Date | null;
1867
+ createdAt: string;
1868
+ updatedAt: string;
1869
+ deletedAt: string | null;
1870
1870
  systemName: string;
1871
1871
  displayName: string;
1872
1872
  }[];
1873
1873
  }[];
1874
1874
  extension?: {
1875
1875
  id: string;
1876
- createdAt: Date;
1877
- updatedAt: Date;
1878
- deletedAt: Date | null;
1876
+ createdAt: string;
1877
+ updatedAt: string;
1878
+ deletedAt: string | null;
1879
1879
  userId: string | null;
1880
1880
  sipServerUrl: string;
1881
1881
  sipUserName: string;
@@ -1908,36 +1908,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1908
1908
  address: string | null;
1909
1909
  name: string;
1910
1910
  email: string;
1911
- createdAt: Date;
1912
- updatedAt: Date;
1913
- deletedAt: Date | null;
1914
- emailVerifiedAt: Date | null;
1911
+ createdAt: string;
1912
+ updatedAt: string;
1913
+ deletedAt: string | null;
1914
+ emailVerifiedAt: string | null;
1915
1915
  password: string;
1916
1916
  phone: string | null;
1917
1917
  notificationCount: number | null;
1918
1918
  roles: {
1919
1919
  id: string;
1920
1920
  description: string | null;
1921
- createdAt: Date;
1922
- updatedAt: Date;
1923
- deletedAt: Date | null;
1921
+ createdAt: string;
1922
+ updatedAt: string;
1923
+ deletedAt: string | null;
1924
1924
  systemName: string;
1925
1925
  displayName: string;
1926
1926
  permissions: {
1927
1927
  id: string;
1928
1928
  description: string | null;
1929
- createdAt: Date;
1930
- updatedAt: Date;
1931
- deletedAt: Date | null;
1929
+ createdAt: string;
1930
+ updatedAt: string;
1931
+ deletedAt: string | null;
1932
1932
  systemName: string;
1933
1933
  displayName: string;
1934
1934
  }[];
1935
1935
  }[];
1936
1936
  extension?: {
1937
1937
  id: string;
1938
- createdAt: Date;
1939
- updatedAt: Date;
1940
- deletedAt: Date | null;
1938
+ createdAt: string;
1939
+ updatedAt: string;
1940
+ deletedAt: string | null;
1941
1941
  userId: string | null;
1942
1942
  sipServerUrl: string;
1943
1943
  sipUserName: string;
@@ -1970,36 +1970,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
1970
1970
  address: string | null;
1971
1971
  name: string;
1972
1972
  email: string;
1973
- createdAt: Date;
1974
- updatedAt: Date;
1975
- deletedAt: Date | null;
1976
- emailVerifiedAt: Date | null;
1973
+ createdAt: string;
1974
+ updatedAt: string;
1975
+ deletedAt: string | null;
1976
+ emailVerifiedAt: string | null;
1977
1977
  password: string;
1978
1978
  phone: string | null;
1979
1979
  notificationCount: number | null;
1980
1980
  roles: {
1981
1981
  id: string;
1982
1982
  description: string | null;
1983
- createdAt: Date;
1984
- updatedAt: Date;
1985
- deletedAt: Date | null;
1983
+ createdAt: string;
1984
+ updatedAt: string;
1985
+ deletedAt: string | null;
1986
1986
  systemName: string;
1987
1987
  displayName: string;
1988
1988
  permissions: {
1989
1989
  id: string;
1990
1990
  description: string | null;
1991
- createdAt: Date;
1992
- updatedAt: Date;
1993
- deletedAt: Date | null;
1991
+ createdAt: string;
1992
+ updatedAt: string;
1993
+ deletedAt: string | null;
1994
1994
  systemName: string;
1995
1995
  displayName: string;
1996
1996
  }[];
1997
1997
  }[];
1998
1998
  extension?: {
1999
1999
  id: string;
2000
- createdAt: Date;
2001
- updatedAt: Date;
2002
- deletedAt: Date | null;
2000
+ createdAt: string;
2001
+ updatedAt: string;
2002
+ deletedAt: string | null;
2003
2003
  userId: string | null;
2004
2004
  sipServerUrl: string;
2005
2005
  sipUserName: string;
@@ -2012,44 +2012,44 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2012
2012
  }, "strip", z.ZodTypeAny, {
2013
2013
  id: string;
2014
2014
  direction: "incoming" | "outgoing" | "system";
2015
- createdAt: Date;
2016
- updatedAt: Date;
2017
- deletedAt: Date | null;
2015
+ createdAt: string;
2016
+ updatedAt: string;
2017
+ deletedAt: string | null;
2018
2018
  actor: {
2019
2019
  id: string;
2020
2020
  address: string | null;
2021
2021
  name: string;
2022
2022
  email: string;
2023
- createdAt: Date;
2024
- updatedAt: Date;
2025
- deletedAt: Date | null;
2026
- emailVerifiedAt: Date | null;
2023
+ createdAt: string;
2024
+ updatedAt: string;
2025
+ deletedAt: string | null;
2026
+ emailVerifiedAt: string | null;
2027
2027
  password: string;
2028
2028
  phone: string | null;
2029
2029
  notificationCount: number | null;
2030
2030
  roles: {
2031
2031
  id: string;
2032
2032
  description: string | null;
2033
- createdAt: Date;
2034
- updatedAt: Date;
2035
- deletedAt: Date | null;
2033
+ createdAt: string;
2034
+ updatedAt: string;
2035
+ deletedAt: string | null;
2036
2036
  systemName: string;
2037
2037
  displayName: string;
2038
2038
  permissions: {
2039
2039
  id: string;
2040
2040
  description: string | null;
2041
- createdAt: Date;
2042
- updatedAt: Date;
2043
- deletedAt: Date | null;
2041
+ createdAt: string;
2042
+ updatedAt: string;
2043
+ deletedAt: string | null;
2044
2044
  systemName: string;
2045
2045
  displayName: string;
2046
2046
  }[];
2047
2047
  }[];
2048
2048
  extension?: {
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
  userId: string | null;
2054
2054
  sipServerUrl: string;
2055
2055
  sipUserName: string;
@@ -2061,9 +2061,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2061
2061
  firstResponseTime: number;
2062
2062
  lastMessage: string;
2063
2063
  handleTime: number;
2064
- closeAt: Date;
2064
+ closeAt: string;
2065
2065
  unreadCount: number;
2066
- firstResponseAt: Date;
2066
+ firstResponseAt: string;
2067
2067
  isLatest: boolean;
2068
2068
  platformContact: {
2069
2069
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -2082,14 +2082,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2082
2082
  channel: string | null;
2083
2083
  address: string | null;
2084
2084
  name: string;
2085
- createdAt: Date;
2086
- updatedAt: Date;
2087
- deletedAt: Date | null;
2085
+ createdAt: string;
2086
+ updatedAt: string;
2087
+ deletedAt: string | null;
2088
2088
  customFields: {
2089
2089
  id: string;
2090
- createdAt: Date;
2091
- updatedAt: Date;
2092
- deletedAt: Date | null;
2090
+ createdAt: string;
2091
+ updatedAt: string;
2092
+ deletedAt: string | null;
2093
2093
  attribute: {
2094
2094
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2095
2095
  id: string;
@@ -2107,7 +2107,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2107
2107
  textValue: string | null;
2108
2108
  booleanValue: boolean | null;
2109
2109
  numberValue: number | null;
2110
- dateValue: Date | null;
2110
+ dateValue: string | null;
2111
2111
  uploads: {
2112
2112
  id: string;
2113
2113
  createdAt: string;
@@ -2150,31 +2150,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2150
2150
  id: string;
2151
2151
  isPrimary: boolean;
2152
2152
  email: string;
2153
- createdAt: Date;
2154
- updatedAt: Date;
2155
- deletedAt: Date | null;
2153
+ createdAt: string;
2154
+ updatedAt: string;
2155
+ deletedAt: string | null;
2156
2156
  }[];
2157
2157
  contactPhones: {
2158
2158
  id: string;
2159
2159
  isPrimary: boolean;
2160
- createdAt: Date;
2161
- updatedAt: Date;
2162
- deletedAt: Date | null;
2160
+ createdAt: string;
2161
+ updatedAt: string;
2162
+ deletedAt: string | null;
2163
2163
  phone: string;
2164
2164
  }[];
2165
2165
  activityLogs?: {
2166
2166
  id: string;
2167
2167
  description: string;
2168
- createdAt: Date;
2169
- updatedAt: Date;
2170
- deletedAt: Date | null;
2168
+ createdAt: string;
2169
+ updatedAt: string;
2170
+ deletedAt: string | null;
2171
2171
  entityId: string;
2172
2172
  entityType: {
2173
2173
  id: string;
2174
2174
  description: string | null;
2175
- createdAt: Date;
2176
- updatedAt: Date;
2177
- deletedAt: Date | null;
2175
+ createdAt: string;
2176
+ updatedAt: string;
2177
+ deletedAt: string | null;
2178
2178
  entity: string;
2179
2179
  };
2180
2180
  }[] | undefined;
@@ -2187,36 +2187,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2187
2187
  address: string | null;
2188
2188
  name: string;
2189
2189
  email: string;
2190
- createdAt: Date;
2191
- updatedAt: Date;
2192
- deletedAt: Date | null;
2193
- emailVerifiedAt: Date | null;
2190
+ createdAt: string;
2191
+ updatedAt: string;
2192
+ deletedAt: string | null;
2193
+ emailVerifiedAt: string | null;
2194
2194
  password: string;
2195
2195
  phone: string | null;
2196
2196
  notificationCount: number | null;
2197
2197
  roles: {
2198
2198
  id: string;
2199
2199
  description: string | null;
2200
- createdAt: Date;
2201
- updatedAt: Date;
2202
- deletedAt: Date | null;
2200
+ createdAt: string;
2201
+ updatedAt: string;
2202
+ deletedAt: string | null;
2203
2203
  systemName: string;
2204
2204
  displayName: string;
2205
2205
  permissions: {
2206
2206
  id: string;
2207
2207
  description: string | null;
2208
- createdAt: Date;
2209
- updatedAt: Date;
2210
- deletedAt: Date | null;
2208
+ createdAt: string;
2209
+ updatedAt: string;
2210
+ deletedAt: string | null;
2211
2211
  systemName: string;
2212
2212
  displayName: string;
2213
2213
  }[];
2214
2214
  }[];
2215
2215
  extension?: {
2216
2216
  id: string;
2217
- createdAt: Date;
2218
- updatedAt: Date;
2219
- deletedAt: Date | null;
2217
+ createdAt: string;
2218
+ updatedAt: string;
2219
+ deletedAt: string | null;
2220
2220
  userId: string | null;
2221
2221
  sipServerUrl: string;
2222
2222
  sipUserName: string;
@@ -2249,36 +2249,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2249
2249
  address: string | null;
2250
2250
  name: string;
2251
2251
  email: string;
2252
- createdAt: Date;
2253
- updatedAt: Date;
2254
- deletedAt: Date | null;
2255
- emailVerifiedAt: Date | null;
2252
+ createdAt: string;
2253
+ updatedAt: string;
2254
+ deletedAt: string | null;
2255
+ emailVerifiedAt: string | null;
2256
2256
  password: string;
2257
2257
  phone: string | null;
2258
2258
  notificationCount: number | null;
2259
2259
  roles: {
2260
2260
  id: string;
2261
2261
  description: string | null;
2262
- createdAt: Date;
2263
- updatedAt: Date;
2264
- deletedAt: Date | null;
2262
+ createdAt: string;
2263
+ updatedAt: string;
2264
+ deletedAt: string | null;
2265
2265
  systemName: string;
2266
2266
  displayName: string;
2267
2267
  permissions: {
2268
2268
  id: string;
2269
2269
  description: string | null;
2270
- createdAt: Date;
2271
- updatedAt: Date;
2272
- deletedAt: Date | null;
2270
+ createdAt: string;
2271
+ updatedAt: string;
2272
+ deletedAt: string | null;
2273
2273
  systemName: string;
2274
2274
  displayName: string;
2275
2275
  }[];
2276
2276
  }[];
2277
2277
  extension?: {
2278
2278
  id: string;
2279
- createdAt: Date;
2280
- updatedAt: Date;
2281
- deletedAt: Date | null;
2279
+ createdAt: string;
2280
+ updatedAt: string;
2281
+ deletedAt: string | null;
2282
2282
  userId: string | null;
2283
2283
  sipServerUrl: string;
2284
2284
  sipUserName: string;
@@ -2291,44 +2291,44 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2291
2291
  }, {
2292
2292
  id: string;
2293
2293
  direction: "incoming" | "outgoing" | "system";
2294
- createdAt: Date;
2295
- updatedAt: Date;
2296
- deletedAt: Date | null;
2294
+ createdAt: string;
2295
+ updatedAt: string;
2296
+ deletedAt: string | null;
2297
2297
  actor: {
2298
2298
  id: string;
2299
2299
  address: string | null;
2300
2300
  name: string;
2301
2301
  email: string;
2302
- createdAt: Date;
2303
- updatedAt: Date;
2304
- deletedAt: Date | null;
2305
- emailVerifiedAt: Date | null;
2302
+ createdAt: string;
2303
+ updatedAt: string;
2304
+ deletedAt: string | null;
2305
+ emailVerifiedAt: string | null;
2306
2306
  password: string;
2307
2307
  phone: string | null;
2308
2308
  notificationCount: number | null;
2309
2309
  roles: {
2310
2310
  id: string;
2311
2311
  description: string | null;
2312
- createdAt: Date;
2313
- updatedAt: Date;
2314
- deletedAt: Date | null;
2312
+ createdAt: string;
2313
+ updatedAt: string;
2314
+ deletedAt: string | null;
2315
2315
  systemName: string;
2316
2316
  displayName: string;
2317
2317
  permissions: {
2318
2318
  id: string;
2319
2319
  description: string | null;
2320
- createdAt: Date;
2321
- updatedAt: Date;
2322
- deletedAt: Date | null;
2320
+ createdAt: string;
2321
+ updatedAt: string;
2322
+ deletedAt: string | null;
2323
2323
  systemName: string;
2324
2324
  displayName: string;
2325
2325
  }[];
2326
2326
  }[];
2327
2327
  extension?: {
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
  userId: string | null;
2333
2333
  sipServerUrl: string;
2334
2334
  sipUserName: string;
@@ -2340,9 +2340,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2340
2340
  firstResponseTime: number;
2341
2341
  lastMessage: string;
2342
2342
  handleTime: number;
2343
- closeAt: Date;
2343
+ closeAt: string;
2344
2344
  unreadCount: number;
2345
- firstResponseAt: Date;
2345
+ firstResponseAt: string;
2346
2346
  isLatest: boolean;
2347
2347
  platformContact: {
2348
2348
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -2361,14 +2361,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2361
2361
  channel: string | null;
2362
2362
  address: string | null;
2363
2363
  name: string;
2364
- createdAt: Date;
2365
- updatedAt: Date;
2366
- deletedAt: Date | null;
2364
+ createdAt: string;
2365
+ updatedAt: string;
2366
+ deletedAt: string | null;
2367
2367
  customFields: {
2368
2368
  id: string;
2369
- createdAt: Date;
2370
- updatedAt: Date;
2371
- deletedAt: Date | null;
2369
+ createdAt: string;
2370
+ updatedAt: string;
2371
+ deletedAt: string | null;
2372
2372
  attribute: {
2373
2373
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2374
2374
  id: string;
@@ -2386,7 +2386,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2386
2386
  textValue: string | null;
2387
2387
  booleanValue: boolean | null;
2388
2388
  numberValue: number | null;
2389
- dateValue: Date | null;
2389
+ dateValue: string | null;
2390
2390
  uploads: {
2391
2391
  id: string;
2392
2392
  createdAt: string;
@@ -2429,31 +2429,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2429
2429
  id: string;
2430
2430
  isPrimary: boolean;
2431
2431
  email: string;
2432
- createdAt: Date;
2433
- updatedAt: Date;
2434
- deletedAt: Date | null;
2432
+ createdAt: string;
2433
+ updatedAt: string;
2434
+ deletedAt: string | null;
2435
2435
  }[];
2436
2436
  contactPhones: {
2437
2437
  id: string;
2438
2438
  isPrimary: boolean;
2439
- createdAt: Date;
2440
- updatedAt: Date;
2441
- deletedAt: Date | null;
2439
+ createdAt: string;
2440
+ updatedAt: string;
2441
+ deletedAt: string | null;
2442
2442
  phone: string;
2443
2443
  }[];
2444
2444
  activityLogs?: {
2445
2445
  id: string;
2446
2446
  description: string;
2447
- createdAt: Date;
2448
- updatedAt: Date;
2449
- deletedAt: Date | null;
2447
+ createdAt: string;
2448
+ updatedAt: string;
2449
+ deletedAt: string | null;
2450
2450
  entityId: string;
2451
2451
  entityType: {
2452
2452
  id: string;
2453
2453
  description: string | null;
2454
- createdAt: Date;
2455
- updatedAt: Date;
2456
- deletedAt: Date | null;
2454
+ createdAt: string;
2455
+ updatedAt: string;
2456
+ deletedAt: string | null;
2457
2457
  entity: string;
2458
2458
  };
2459
2459
  }[] | undefined;
@@ -2466,36 +2466,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2466
2466
  address: string | null;
2467
2467
  name: string;
2468
2468
  email: string;
2469
- createdAt: Date;
2470
- updatedAt: Date;
2471
- deletedAt: Date | null;
2472
- emailVerifiedAt: Date | null;
2469
+ createdAt: string;
2470
+ updatedAt: string;
2471
+ deletedAt: string | null;
2472
+ emailVerifiedAt: string | null;
2473
2473
  password: string;
2474
2474
  phone: string | null;
2475
2475
  notificationCount: number | null;
2476
2476
  roles: {
2477
2477
  id: string;
2478
2478
  description: string | null;
2479
- createdAt: Date;
2480
- updatedAt: Date;
2481
- deletedAt: Date | null;
2479
+ createdAt: string;
2480
+ updatedAt: string;
2481
+ deletedAt: string | null;
2482
2482
  systemName: string;
2483
2483
  displayName: string;
2484
2484
  permissions: {
2485
2485
  id: string;
2486
2486
  description: string | null;
2487
- createdAt: Date;
2488
- updatedAt: Date;
2489
- deletedAt: Date | null;
2487
+ createdAt: string;
2488
+ updatedAt: string;
2489
+ deletedAt: string | null;
2490
2490
  systemName: string;
2491
2491
  displayName: string;
2492
2492
  }[];
2493
2493
  }[];
2494
2494
  extension?: {
2495
2495
  id: string;
2496
- createdAt: Date;
2497
- updatedAt: Date;
2498
- deletedAt: Date | null;
2496
+ createdAt: string;
2497
+ updatedAt: string;
2498
+ deletedAt: string | null;
2499
2499
  userId: string | null;
2500
2500
  sipServerUrl: string;
2501
2501
  sipUserName: string;
@@ -2528,36 +2528,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2528
2528
  address: string | null;
2529
2529
  name: string;
2530
2530
  email: string;
2531
- createdAt: Date;
2532
- updatedAt: Date;
2533
- deletedAt: Date | null;
2534
- emailVerifiedAt: Date | null;
2531
+ createdAt: string;
2532
+ updatedAt: string;
2533
+ deletedAt: string | null;
2534
+ emailVerifiedAt: string | null;
2535
2535
  password: string;
2536
2536
  phone: string | null;
2537
2537
  notificationCount: number | null;
2538
2538
  roles: {
2539
2539
  id: string;
2540
2540
  description: string | null;
2541
- createdAt: Date;
2542
- updatedAt: Date;
2543
- deletedAt: Date | null;
2541
+ createdAt: string;
2542
+ updatedAt: string;
2543
+ deletedAt: string | null;
2544
2544
  systemName: string;
2545
2545
  displayName: string;
2546
2546
  permissions: {
2547
2547
  id: string;
2548
2548
  description: string | null;
2549
- createdAt: Date;
2550
- updatedAt: Date;
2551
- deletedAt: Date | null;
2549
+ createdAt: string;
2550
+ updatedAt: string;
2551
+ deletedAt: string | null;
2552
2552
  systemName: string;
2553
2553
  displayName: string;
2554
2554
  }[];
2555
2555
  }[];
2556
2556
  extension?: {
2557
2557
  id: string;
2558
- createdAt: Date;
2559
- updatedAt: Date;
2560
- deletedAt: Date | null;
2558
+ createdAt: string;
2559
+ updatedAt: string;
2560
+ deletedAt: string | null;
2561
2561
  userId: string | null;
2562
2562
  sipServerUrl: string;
2563
2563
  sipUserName: string;
@@ -2650,9 +2650,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2650
2650
  }>>;
2651
2651
  contact: z.ZodNullable<z.ZodObject<{
2652
2652
  id: z.ZodString;
2653
- createdAt: z.ZodDate;
2654
- updatedAt: z.ZodDate;
2655
- deletedAt: z.ZodNullable<z.ZodDate>;
2653
+ createdAt: z.ZodString;
2654
+ updatedAt: z.ZodString;
2655
+ deletedAt: z.ZodNullable<z.ZodString>;
2656
2656
  name: z.ZodString;
2657
2657
  address: z.ZodNullable<z.ZodString>;
2658
2658
  channel: z.ZodNullable<z.ZodString>;
@@ -2695,7 +2695,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2695
2695
  textValue: z.ZodNullable<z.ZodString>;
2696
2696
  booleanValue: z.ZodNullable<z.ZodBoolean>;
2697
2697
  numberValue: z.ZodNullable<z.ZodNumber>;
2698
- dateValue: z.ZodNullable<z.ZodDate>;
2698
+ dateValue: z.ZodNullable<z.ZodString>;
2699
2699
  attribute: z.ZodObject<Omit<{
2700
2700
  id: z.ZodString;
2701
2701
  createdAt: z.ZodString;
@@ -2799,7 +2799,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2799
2799
  textValue: string | null;
2800
2800
  booleanValue: boolean | null;
2801
2801
  numberValue: number | null;
2802
- dateValue: Date | null;
2802
+ dateValue: string | null;
2803
2803
  }, {
2804
2804
  id: string;
2805
2805
  createdAt: string;
@@ -2822,7 +2822,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2822
2822
  textValue: string | null;
2823
2823
  booleanValue: boolean | null;
2824
2824
  numberValue: number | null;
2825
- dateValue: Date | null;
2825
+ dateValue: string | null;
2826
2826
  }>, "many">>;
2827
2827
  }, "customFields">, "strip", z.ZodTypeAny, {
2828
2828
  id: string;
@@ -2845,13 +2845,13 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
2845
2845
  }>>;
2846
2846
  customFields: z.ZodArray<z.ZodObject<{
2847
2847
  id: z.ZodString;
2848
- createdAt: z.ZodDate;
2849
- updatedAt: z.ZodDate;
2850
- deletedAt: z.ZodNullable<z.ZodDate>;
2848
+ createdAt: z.ZodString;
2849
+ updatedAt: z.ZodString;
2850
+ deletedAt: z.ZodNullable<z.ZodString>;
2851
2851
  textValue: z.ZodNullable<z.ZodString>;
2852
2852
  booleanValue: z.ZodNullable<z.ZodBoolean>;
2853
2853
  numberValue: z.ZodNullable<z.ZodNumber>;
2854
- dateValue: z.ZodNullable<z.ZodDate>;
2854
+ dateValue: z.ZodNullable<z.ZodString>;
2855
2855
  attribute: z.ZodObject<Omit<{
2856
2856
  id: z.ZodString;
2857
2857
  createdAt: z.ZodString;
@@ -3002,9 +3002,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3002
3002
  }>, "many">;
3003
3003
  }, "strip", z.ZodTypeAny, {
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 CxLogSchemaWithRelations: z.ZodObject<{
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;
@@ -3042,9 +3042,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3042
3042
  }[];
3043
3043
  }, {
3044
3044
  id: string;
3045
- createdAt: Date;
3046
- updatedAt: Date;
3047
- deletedAt: Date | null;
3045
+ createdAt: string;
3046
+ updatedAt: string;
3047
+ deletedAt: string | null;
3048
3048
  attribute: {
3049
3049
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3050
3050
  id: string;
@@ -3062,7 +3062,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3062
3062
  textValue: string | null;
3063
3063
  booleanValue: boolean | null;
3064
3064
  numberValue: number | null;
3065
- dateValue: Date | null;
3065
+ dateValue: string | null;
3066
3066
  uploads: {
3067
3067
  id: string;
3068
3068
  createdAt: string;
@@ -3083,105 +3083,105 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3083
3083
  }>, "many">;
3084
3084
  contactEmails: z.ZodArray<z.ZodObject<{
3085
3085
  id: z.ZodString;
3086
- createdAt: z.ZodDate;
3087
- updatedAt: z.ZodDate;
3088
- deletedAt: z.ZodNullable<z.ZodDate>;
3086
+ createdAt: z.ZodString;
3087
+ updatedAt: z.ZodString;
3088
+ deletedAt: z.ZodNullable<z.ZodString>;
3089
3089
  email: z.ZodString;
3090
3090
  isPrimary: z.ZodBoolean;
3091
3091
  }, "strip", z.ZodTypeAny, {
3092
3092
  id: string;
3093
3093
  isPrimary: boolean;
3094
3094
  email: string;
3095
- createdAt: Date;
3096
- updatedAt: Date;
3097
- deletedAt: Date | null;
3095
+ createdAt: string;
3096
+ updatedAt: string;
3097
+ deletedAt: string | null;
3098
3098
  }, {
3099
3099
  id: string;
3100
3100
  isPrimary: boolean;
3101
3101
  email: string;
3102
- createdAt: Date;
3103
- updatedAt: Date;
3104
- deletedAt: Date | null;
3102
+ createdAt: string;
3103
+ updatedAt: string;
3104
+ deletedAt: string | null;
3105
3105
  }>, "many">;
3106
3106
  contactPhones: z.ZodArray<z.ZodObject<{
3107
3107
  id: z.ZodString;
3108
- createdAt: z.ZodDate;
3109
- updatedAt: z.ZodDate;
3110
- deletedAt: z.ZodNullable<z.ZodDate>;
3108
+ createdAt: z.ZodString;
3109
+ updatedAt: z.ZodString;
3110
+ deletedAt: z.ZodNullable<z.ZodString>;
3111
3111
  phone: z.ZodString;
3112
3112
  isPrimary: z.ZodBoolean;
3113
3113
  }, "strip", z.ZodTypeAny, {
3114
3114
  id: string;
3115
3115
  isPrimary: boolean;
3116
- createdAt: Date;
3117
- updatedAt: Date;
3118
- deletedAt: Date | null;
3116
+ createdAt: string;
3117
+ updatedAt: string;
3118
+ deletedAt: string | null;
3119
3119
  phone: string;
3120
3120
  }, {
3121
3121
  id: string;
3122
3122
  isPrimary: boolean;
3123
- createdAt: Date;
3124
- updatedAt: Date;
3125
- deletedAt: Date | null;
3123
+ createdAt: string;
3124
+ updatedAt: string;
3125
+ deletedAt: string | null;
3126
3126
  phone: string;
3127
3127
  }>, "many">;
3128
3128
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
3129
3129
  id: z.ZodString;
3130
- createdAt: z.ZodDate;
3131
- updatedAt: z.ZodDate;
3132
- deletedAt: z.ZodNullable<z.ZodDate>;
3130
+ createdAt: z.ZodString;
3131
+ updatedAt: z.ZodString;
3132
+ deletedAt: z.ZodNullable<z.ZodString>;
3133
3133
  entityId: z.ZodString;
3134
3134
  description: z.ZodString;
3135
3135
  entityType: z.ZodObject<{
3136
3136
  id: z.ZodString;
3137
- createdAt: z.ZodDate;
3138
- updatedAt: z.ZodDate;
3139
- deletedAt: z.ZodNullable<z.ZodDate>;
3137
+ createdAt: z.ZodString;
3138
+ updatedAt: z.ZodString;
3139
+ deletedAt: z.ZodNullable<z.ZodString>;
3140
3140
  entity: z.ZodString;
3141
3141
  description: z.ZodNullable<z.ZodString>;
3142
3142
  }, "strip", z.ZodTypeAny, {
3143
3143
  id: string;
3144
3144
  description: string | null;
3145
- createdAt: Date;
3146
- updatedAt: Date;
3147
- deletedAt: Date | null;
3145
+ createdAt: string;
3146
+ updatedAt: string;
3147
+ deletedAt: string | null;
3148
3148
  entity: string;
3149
3149
  }, {
3150
3150
  id: string;
3151
3151
  description: string | null;
3152
- createdAt: Date;
3153
- updatedAt: Date;
3154
- deletedAt: Date | null;
3152
+ createdAt: string;
3153
+ updatedAt: string;
3154
+ deletedAt: string | null;
3155
3155
  entity: string;
3156
3156
  }>;
3157
3157
  }, "strip", z.ZodTypeAny, {
3158
3158
  id: string;
3159
3159
  description: string;
3160
- createdAt: Date;
3161
- updatedAt: Date;
3162
- deletedAt: Date | null;
3160
+ createdAt: string;
3161
+ updatedAt: string;
3162
+ deletedAt: string | null;
3163
3163
  entityId: string;
3164
3164
  entityType: {
3165
3165
  id: string;
3166
3166
  description: string | null;
3167
- createdAt: Date;
3168
- updatedAt: Date;
3169
- deletedAt: Date | null;
3167
+ createdAt: string;
3168
+ updatedAt: string;
3169
+ deletedAt: string | null;
3170
3170
  entity: string;
3171
3171
  };
3172
3172
  }, {
3173
3173
  id: string;
3174
3174
  description: string;
3175
- createdAt: Date;
3176
- updatedAt: Date;
3177
- deletedAt: Date | null;
3175
+ createdAt: string;
3176
+ updatedAt: string;
3177
+ deletedAt: string | null;
3178
3178
  entityId: string;
3179
3179
  entityType: {
3180
3180
  id: string;
3181
3181
  description: string | null;
3182
- createdAt: Date;
3183
- updatedAt: Date;
3184
- deletedAt: Date | null;
3182
+ createdAt: string;
3183
+ updatedAt: string;
3184
+ deletedAt: string | null;
3185
3185
  entity: string;
3186
3186
  };
3187
3187
  }>, "many">>;
@@ -3190,14 +3190,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3190
3190
  channel: string | null;
3191
3191
  address: string | null;
3192
3192
  name: string;
3193
- createdAt: Date;
3194
- updatedAt: Date;
3195
- deletedAt: Date | null;
3193
+ createdAt: string;
3194
+ updatedAt: string;
3195
+ deletedAt: string | null;
3196
3196
  customFields: {
3197
3197
  id: string;
3198
- createdAt: Date;
3199
- updatedAt: Date;
3200
- deletedAt: Date | null;
3198
+ createdAt: string;
3199
+ updatedAt: string;
3200
+ deletedAt: string | null;
3201
3201
  attribute: {
3202
3202
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3203
3203
  id: string;
@@ -3215,7 +3215,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3215
3215
  textValue: string | null;
3216
3216
  booleanValue: boolean | null;
3217
3217
  numberValue: number | null;
3218
- dateValue: Date | null;
3218
+ dateValue: string | null;
3219
3219
  uploads: {
3220
3220
  id: string;
3221
3221
  createdAt: string;
@@ -3258,31 +3258,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3258
3258
  id: string;
3259
3259
  isPrimary: boolean;
3260
3260
  email: string;
3261
- createdAt: Date;
3262
- updatedAt: Date;
3263
- deletedAt: Date | null;
3261
+ createdAt: string;
3262
+ updatedAt: string;
3263
+ deletedAt: string | null;
3264
3264
  }[];
3265
3265
  contactPhones: {
3266
3266
  id: string;
3267
3267
  isPrimary: boolean;
3268
- createdAt: Date;
3269
- updatedAt: Date;
3270
- deletedAt: Date | null;
3268
+ createdAt: string;
3269
+ updatedAt: string;
3270
+ deletedAt: string | null;
3271
3271
  phone: string;
3272
3272
  }[];
3273
3273
  activityLogs?: {
3274
3274
  id: string;
3275
3275
  description: string;
3276
- createdAt: Date;
3277
- updatedAt: Date;
3278
- deletedAt: Date | null;
3276
+ createdAt: string;
3277
+ updatedAt: string;
3278
+ deletedAt: string | null;
3279
3279
  entityId: string;
3280
3280
  entityType: {
3281
3281
  id: string;
3282
3282
  description: string | null;
3283
- createdAt: Date;
3284
- updatedAt: Date;
3285
- deletedAt: Date | null;
3283
+ createdAt: string;
3284
+ updatedAt: string;
3285
+ deletedAt: string | null;
3286
3286
  entity: string;
3287
3287
  };
3288
3288
  }[] | undefined;
@@ -3291,14 +3291,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3291
3291
  channel: string | null;
3292
3292
  address: string | null;
3293
3293
  name: string;
3294
- createdAt: Date;
3295
- updatedAt: Date;
3296
- deletedAt: Date | null;
3294
+ createdAt: string;
3295
+ updatedAt: string;
3296
+ deletedAt: string | null;
3297
3297
  customFields: {
3298
3298
  id: string;
3299
- createdAt: Date;
3300
- updatedAt: Date;
3301
- deletedAt: Date | null;
3299
+ createdAt: string;
3300
+ updatedAt: string;
3301
+ deletedAt: string | null;
3302
3302
  attribute: {
3303
3303
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3304
3304
  id: string;
@@ -3316,7 +3316,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3316
3316
  textValue: string | null;
3317
3317
  booleanValue: boolean | null;
3318
3318
  numberValue: number | null;
3319
- dateValue: Date | null;
3319
+ dateValue: string | null;
3320
3320
  uploads: {
3321
3321
  id: string;
3322
3322
  createdAt: string;
@@ -3359,120 +3359,120 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3359
3359
  id: string;
3360
3360
  isPrimary: boolean;
3361
3361
  email: string;
3362
- createdAt: Date;
3363
- updatedAt: Date;
3364
- deletedAt: Date | null;
3362
+ createdAt: string;
3363
+ updatedAt: string;
3364
+ deletedAt: string | null;
3365
3365
  }[];
3366
3366
  contactPhones: {
3367
3367
  id: string;
3368
3368
  isPrimary: boolean;
3369
- createdAt: Date;
3370
- updatedAt: Date;
3371
- deletedAt: Date | null;
3369
+ createdAt: string;
3370
+ updatedAt: string;
3371
+ deletedAt: string | null;
3372
3372
  phone: string;
3373
3373
  }[];
3374
3374
  activityLogs?: {
3375
3375
  id: string;
3376
3376
  description: string;
3377
- createdAt: Date;
3378
- updatedAt: Date;
3379
- deletedAt: Date | null;
3377
+ createdAt: string;
3378
+ updatedAt: string;
3379
+ deletedAt: string | null;
3380
3380
  entityId: string;
3381
3381
  entityType: {
3382
3382
  id: string;
3383
3383
  description: string | null;
3384
- createdAt: Date;
3385
- updatedAt: Date;
3386
- deletedAt: Date | null;
3384
+ createdAt: string;
3385
+ updatedAt: string;
3386
+ deletedAt: string | null;
3387
3387
  entity: string;
3388
3388
  };
3389
3389
  }[] | undefined;
3390
3390
  }>>;
3391
3391
  agent: z.ZodNullable<z.ZodObject<{
3392
3392
  id: z.ZodString;
3393
- createdAt: z.ZodDate;
3394
- updatedAt: z.ZodDate;
3395
- deletedAt: z.ZodNullable<z.ZodDate>;
3393
+ createdAt: z.ZodString;
3394
+ updatedAt: z.ZodString;
3395
+ deletedAt: z.ZodNullable<z.ZodString>;
3396
3396
  name: z.ZodString;
3397
3397
  email: z.ZodString;
3398
- emailVerifiedAt: z.ZodNullable<z.ZodDate>;
3398
+ emailVerifiedAt: z.ZodNullable<z.ZodString>;
3399
3399
  password: z.ZodString;
3400
3400
  address: z.ZodNullable<z.ZodString>;
3401
3401
  phone: z.ZodNullable<z.ZodString>;
3402
3402
  notificationCount: z.ZodNullable<z.ZodNumber>;
3403
3403
  roles: z.ZodArray<z.ZodObject<{
3404
3404
  id: z.ZodString;
3405
- createdAt: z.ZodDate;
3406
- updatedAt: z.ZodDate;
3407
- deletedAt: z.ZodNullable<z.ZodDate>;
3405
+ createdAt: z.ZodString;
3406
+ updatedAt: z.ZodString;
3407
+ deletedAt: z.ZodNullable<z.ZodString>;
3408
3408
  systemName: z.ZodString;
3409
3409
  displayName: z.ZodString;
3410
3410
  description: z.ZodNullable<z.ZodString>;
3411
3411
  permissions: z.ZodArray<z.ZodObject<{
3412
3412
  id: z.ZodString;
3413
- createdAt: z.ZodDate;
3414
- updatedAt: z.ZodDate;
3415
- deletedAt: z.ZodNullable<z.ZodDate>;
3413
+ createdAt: z.ZodString;
3414
+ updatedAt: z.ZodString;
3415
+ deletedAt: z.ZodNullable<z.ZodString>;
3416
3416
  systemName: z.ZodString;
3417
3417
  displayName: z.ZodString;
3418
3418
  description: z.ZodNullable<z.ZodString>;
3419
3419
  }, "strip", z.ZodTypeAny, {
3420
3420
  id: string;
3421
3421
  description: string | null;
3422
- createdAt: Date;
3423
- updatedAt: Date;
3424
- deletedAt: Date | null;
3422
+ createdAt: string;
3423
+ updatedAt: string;
3424
+ deletedAt: string | null;
3425
3425
  systemName: string;
3426
3426
  displayName: string;
3427
3427
  }, {
3428
3428
  id: string;
3429
3429
  description: string | null;
3430
- createdAt: Date;
3431
- updatedAt: Date;
3432
- deletedAt: Date | null;
3430
+ createdAt: string;
3431
+ updatedAt: string;
3432
+ deletedAt: string | null;
3433
3433
  systemName: string;
3434
3434
  displayName: string;
3435
3435
  }>, "many">;
3436
3436
  }, "strip", z.ZodTypeAny, {
3437
3437
  id: string;
3438
3438
  description: string | null;
3439
- createdAt: Date;
3440
- updatedAt: Date;
3441
- deletedAt: Date | null;
3439
+ createdAt: string;
3440
+ updatedAt: string;
3441
+ deletedAt: string | null;
3442
3442
  systemName: string;
3443
3443
  displayName: string;
3444
3444
  permissions: {
3445
3445
  id: string;
3446
3446
  description: string | null;
3447
- createdAt: Date;
3448
- updatedAt: Date;
3449
- deletedAt: Date | null;
3447
+ createdAt: string;
3448
+ updatedAt: string;
3449
+ deletedAt: string | null;
3450
3450
  systemName: string;
3451
3451
  displayName: string;
3452
3452
  }[];
3453
3453
  }, {
3454
3454
  id: string;
3455
3455
  description: string | null;
3456
- createdAt: Date;
3457
- updatedAt: Date;
3458
- deletedAt: Date | null;
3456
+ createdAt: string;
3457
+ updatedAt: string;
3458
+ deletedAt: string | null;
3459
3459
  systemName: string;
3460
3460
  displayName: string;
3461
3461
  permissions: {
3462
3462
  id: string;
3463
3463
  description: string | null;
3464
- createdAt: Date;
3465
- updatedAt: Date;
3466
- deletedAt: Date | null;
3464
+ createdAt: string;
3465
+ updatedAt: string;
3466
+ deletedAt: string | null;
3467
3467
  systemName: string;
3468
3468
  displayName: string;
3469
3469
  }[];
3470
3470
  }>, "many">;
3471
3471
  extension: z.ZodOptional<z.ZodObject<{
3472
3472
  id: z.ZodString;
3473
- createdAt: z.ZodDate;
3474
- updatedAt: z.ZodDate;
3475
- deletedAt: z.ZodNullable<z.ZodDate>;
3473
+ createdAt: z.ZodString;
3474
+ updatedAt: z.ZodString;
3475
+ deletedAt: z.ZodNullable<z.ZodString>;
3476
3476
  userId: z.ZodNullable<z.ZodString>;
3477
3477
  sipServerUrl: z.ZodString;
3478
3478
  sipUserName: z.ZodString;
@@ -3481,9 +3481,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3481
3481
  telephonySignature: z.ZodNullable<z.ZodString>;
3482
3482
  }, "strip", z.ZodTypeAny, {
3483
3483
  id: string;
3484
- createdAt: Date;
3485
- updatedAt: Date;
3486
- deletedAt: Date | null;
3484
+ createdAt: string;
3485
+ updatedAt: string;
3486
+ deletedAt: string | null;
3487
3487
  userId: string | null;
3488
3488
  sipServerUrl: string;
3489
3489
  sipUserName: string;
@@ -3492,9 +3492,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3492
3492
  telephonySignature: string | null;
3493
3493
  }, {
3494
3494
  id: string;
3495
- createdAt: Date;
3496
- updatedAt: Date;
3497
- deletedAt: Date | null;
3495
+ createdAt: string;
3496
+ updatedAt: string;
3497
+ deletedAt: string | null;
3498
3498
  userId: string | null;
3499
3499
  sipServerUrl: string;
3500
3500
  sipUserName: string;
@@ -3507,36 +3507,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3507
3507
  address: string | null;
3508
3508
  name: string;
3509
3509
  email: string;
3510
- createdAt: Date;
3511
- updatedAt: Date;
3512
- deletedAt: Date | null;
3513
- emailVerifiedAt: Date | null;
3510
+ createdAt: string;
3511
+ updatedAt: string;
3512
+ deletedAt: string | null;
3513
+ emailVerifiedAt: string | null;
3514
3514
  password: string;
3515
3515
  phone: string | null;
3516
3516
  notificationCount: number | null;
3517
3517
  roles: {
3518
3518
  id: string;
3519
3519
  description: string | null;
3520
- createdAt: Date;
3521
- updatedAt: Date;
3522
- deletedAt: Date | null;
3520
+ createdAt: string;
3521
+ updatedAt: string;
3522
+ deletedAt: string | null;
3523
3523
  systemName: string;
3524
3524
  displayName: string;
3525
3525
  permissions: {
3526
3526
  id: string;
3527
3527
  description: string | null;
3528
- createdAt: Date;
3529
- updatedAt: Date;
3530
- deletedAt: Date | null;
3528
+ createdAt: string;
3529
+ updatedAt: string;
3530
+ deletedAt: string | null;
3531
3531
  systemName: string;
3532
3532
  displayName: string;
3533
3533
  }[];
3534
3534
  }[];
3535
3535
  extension?: {
3536
3536
  id: string;
3537
- createdAt: Date;
3538
- updatedAt: Date;
3539
- deletedAt: Date | null;
3537
+ createdAt: string;
3538
+ updatedAt: string;
3539
+ deletedAt: string | null;
3540
3540
  userId: string | null;
3541
3541
  sipServerUrl: string;
3542
3542
  sipUserName: string;
@@ -3549,36 +3549,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3549
3549
  address: string | null;
3550
3550
  name: string;
3551
3551
  email: string;
3552
- createdAt: Date;
3553
- updatedAt: Date;
3554
- deletedAt: Date | null;
3555
- emailVerifiedAt: Date | null;
3552
+ createdAt: string;
3553
+ updatedAt: string;
3554
+ deletedAt: string | null;
3555
+ emailVerifiedAt: string | null;
3556
3556
  password: string;
3557
3557
  phone: string | null;
3558
3558
  notificationCount: number | null;
3559
3559
  roles: {
3560
3560
  id: string;
3561
3561
  description: string | null;
3562
- createdAt: Date;
3563
- updatedAt: Date;
3564
- deletedAt: Date | null;
3562
+ createdAt: string;
3563
+ updatedAt: string;
3564
+ deletedAt: string | null;
3565
3565
  systemName: string;
3566
3566
  displayName: string;
3567
3567
  permissions: {
3568
3568
  id: string;
3569
3569
  description: string | null;
3570
- createdAt: Date;
3571
- updatedAt: Date;
3572
- deletedAt: Date | null;
3570
+ createdAt: string;
3571
+ updatedAt: string;
3572
+ deletedAt: string | null;
3573
3573
  systemName: string;
3574
3574
  displayName: string;
3575
3575
  }[];
3576
3576
  }[];
3577
3577
  extension?: {
3578
3578
  id: string;
3579
- createdAt: Date;
3580
- updatedAt: Date;
3581
- deletedAt: Date | null;
3579
+ createdAt: string;
3580
+ updatedAt: string;
3581
+ deletedAt: string | null;
3582
3582
  userId: string | null;
3583
3583
  sipServerUrl: string;
3584
3584
  sipUserName: string;
@@ -3600,14 +3600,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3600
3600
  channel: string | null;
3601
3601
  address: string | null;
3602
3602
  name: string;
3603
- createdAt: Date;
3604
- updatedAt: Date;
3605
- deletedAt: Date | null;
3603
+ createdAt: string;
3604
+ updatedAt: string;
3605
+ deletedAt: string | null;
3606
3606
  customFields: {
3607
3607
  id: string;
3608
- createdAt: Date;
3609
- updatedAt: Date;
3610
- deletedAt: Date | null;
3608
+ createdAt: string;
3609
+ updatedAt: string;
3610
+ deletedAt: string | null;
3611
3611
  attribute: {
3612
3612
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3613
3613
  id: string;
@@ -3625,7 +3625,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3625
3625
  textValue: string | null;
3626
3626
  booleanValue: boolean | null;
3627
3627
  numberValue: number | null;
3628
- dateValue: Date | null;
3628
+ dateValue: string | null;
3629
3629
  uploads: {
3630
3630
  id: string;
3631
3631
  createdAt: string;
@@ -3668,31 +3668,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3668
3668
  id: string;
3669
3669
  isPrimary: boolean;
3670
3670
  email: string;
3671
- createdAt: Date;
3672
- updatedAt: Date;
3673
- deletedAt: Date | null;
3671
+ createdAt: string;
3672
+ updatedAt: string;
3673
+ deletedAt: string | null;
3674
3674
  }[];
3675
3675
  contactPhones: {
3676
3676
  id: string;
3677
3677
  isPrimary: boolean;
3678
- createdAt: Date;
3679
- updatedAt: Date;
3680
- deletedAt: Date | null;
3678
+ createdAt: string;
3679
+ updatedAt: string;
3680
+ deletedAt: string | null;
3681
3681
  phone: string;
3682
3682
  }[];
3683
3683
  activityLogs?: {
3684
3684
  id: string;
3685
3685
  description: string;
3686
- createdAt: Date;
3687
- updatedAt: Date;
3688
- deletedAt: Date | null;
3686
+ createdAt: string;
3687
+ updatedAt: string;
3688
+ deletedAt: string | null;
3689
3689
  entityId: string;
3690
3690
  entityType: {
3691
3691
  id: string;
3692
3692
  description: string | null;
3693
- createdAt: Date;
3694
- updatedAt: Date;
3695
- deletedAt: Date | null;
3693
+ createdAt: string;
3694
+ updatedAt: string;
3695
+ deletedAt: string | null;
3696
3696
  entity: string;
3697
3697
  };
3698
3698
  }[] | undefined;
@@ -3734,44 +3734,44 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3734
3734
  room: {
3735
3735
  id: string;
3736
3736
  direction: "incoming" | "outgoing" | "system";
3737
- createdAt: Date;
3738
- updatedAt: Date;
3739
- deletedAt: Date | null;
3737
+ createdAt: string;
3738
+ updatedAt: string;
3739
+ deletedAt: string | null;
3740
3740
  actor: {
3741
3741
  id: string;
3742
3742
  address: string | null;
3743
3743
  name: string;
3744
3744
  email: string;
3745
- createdAt: Date;
3746
- updatedAt: Date;
3747
- deletedAt: Date | null;
3748
- emailVerifiedAt: Date | null;
3745
+ createdAt: string;
3746
+ updatedAt: string;
3747
+ deletedAt: string | null;
3748
+ emailVerifiedAt: string | null;
3749
3749
  password: string;
3750
3750
  phone: string | null;
3751
3751
  notificationCount: number | null;
3752
3752
  roles: {
3753
3753
  id: string;
3754
3754
  description: string | null;
3755
- createdAt: Date;
3756
- updatedAt: Date;
3757
- deletedAt: Date | null;
3755
+ createdAt: string;
3756
+ updatedAt: string;
3757
+ deletedAt: string | null;
3758
3758
  systemName: string;
3759
3759
  displayName: string;
3760
3760
  permissions: {
3761
3761
  id: string;
3762
3762
  description: string | null;
3763
- createdAt: Date;
3764
- updatedAt: Date;
3765
- deletedAt: Date | null;
3763
+ createdAt: string;
3764
+ updatedAt: string;
3765
+ deletedAt: string | null;
3766
3766
  systemName: string;
3767
3767
  displayName: string;
3768
3768
  }[];
3769
3769
  }[];
3770
3770
  extension?: {
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
  userId: string | null;
3776
3776
  sipServerUrl: string;
3777
3777
  sipUserName: string;
@@ -3783,9 +3783,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3783
3783
  firstResponseTime: number;
3784
3784
  lastMessage: string;
3785
3785
  handleTime: number;
3786
- closeAt: Date;
3786
+ closeAt: string;
3787
3787
  unreadCount: number;
3788
- firstResponseAt: Date;
3788
+ firstResponseAt: string;
3789
3789
  isLatest: boolean;
3790
3790
  platformContact: {
3791
3791
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -3804,14 +3804,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3804
3804
  channel: string | null;
3805
3805
  address: string | null;
3806
3806
  name: string;
3807
- createdAt: Date;
3808
- updatedAt: Date;
3809
- deletedAt: Date | null;
3807
+ createdAt: string;
3808
+ updatedAt: string;
3809
+ deletedAt: string | null;
3810
3810
  customFields: {
3811
3811
  id: string;
3812
- createdAt: Date;
3813
- updatedAt: Date;
3814
- deletedAt: Date | null;
3812
+ createdAt: string;
3813
+ updatedAt: string;
3814
+ deletedAt: string | null;
3815
3815
  attribute: {
3816
3816
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3817
3817
  id: string;
@@ -3829,7 +3829,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3829
3829
  textValue: string | null;
3830
3830
  booleanValue: boolean | null;
3831
3831
  numberValue: number | null;
3832
- dateValue: Date | null;
3832
+ dateValue: string | null;
3833
3833
  uploads: {
3834
3834
  id: string;
3835
3835
  createdAt: string;
@@ -3872,31 +3872,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3872
3872
  id: string;
3873
3873
  isPrimary: boolean;
3874
3874
  email: string;
3875
- createdAt: Date;
3876
- updatedAt: Date;
3877
- deletedAt: Date | null;
3875
+ createdAt: string;
3876
+ updatedAt: string;
3877
+ deletedAt: string | null;
3878
3878
  }[];
3879
3879
  contactPhones: {
3880
3880
  id: string;
3881
3881
  isPrimary: boolean;
3882
- createdAt: Date;
3883
- updatedAt: Date;
3884
- deletedAt: Date | null;
3882
+ createdAt: string;
3883
+ updatedAt: string;
3884
+ deletedAt: string | null;
3885
3885
  phone: string;
3886
3886
  }[];
3887
3887
  activityLogs?: {
3888
3888
  id: string;
3889
3889
  description: string;
3890
- createdAt: Date;
3891
- updatedAt: Date;
3892
- deletedAt: Date | null;
3890
+ createdAt: string;
3891
+ updatedAt: string;
3892
+ deletedAt: string | null;
3893
3893
  entityId: string;
3894
3894
  entityType: {
3895
3895
  id: string;
3896
3896
  description: string | null;
3897
- createdAt: Date;
3898
- updatedAt: Date;
3899
- deletedAt: Date | null;
3897
+ createdAt: string;
3898
+ updatedAt: string;
3899
+ deletedAt: string | null;
3900
3900
  entity: string;
3901
3901
  };
3902
3902
  }[] | undefined;
@@ -3909,36 +3909,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3909
3909
  address: string | null;
3910
3910
  name: string;
3911
3911
  email: string;
3912
- createdAt: Date;
3913
- updatedAt: Date;
3914
- deletedAt: Date | null;
3915
- emailVerifiedAt: Date | null;
3912
+ createdAt: string;
3913
+ updatedAt: string;
3914
+ deletedAt: string | null;
3915
+ emailVerifiedAt: string | null;
3916
3916
  password: string;
3917
3917
  phone: string | null;
3918
3918
  notificationCount: number | null;
3919
3919
  roles: {
3920
3920
  id: string;
3921
3921
  description: string | null;
3922
- createdAt: Date;
3923
- updatedAt: Date;
3924
- deletedAt: Date | null;
3922
+ createdAt: string;
3923
+ updatedAt: string;
3924
+ deletedAt: string | null;
3925
3925
  systemName: string;
3926
3926
  displayName: string;
3927
3927
  permissions: {
3928
3928
  id: string;
3929
3929
  description: string | null;
3930
- createdAt: Date;
3931
- updatedAt: Date;
3932
- deletedAt: Date | null;
3930
+ createdAt: string;
3931
+ updatedAt: string;
3932
+ deletedAt: string | null;
3933
3933
  systemName: string;
3934
3934
  displayName: string;
3935
3935
  }[];
3936
3936
  }[];
3937
3937
  extension?: {
3938
3938
  id: string;
3939
- createdAt: Date;
3940
- updatedAt: Date;
3941
- deletedAt: Date | null;
3939
+ createdAt: string;
3940
+ updatedAt: string;
3941
+ deletedAt: string | null;
3942
3942
  userId: string | null;
3943
3943
  sipServerUrl: string;
3944
3944
  sipUserName: string;
@@ -3971,36 +3971,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
3971
3971
  address: string | null;
3972
3972
  name: string;
3973
3973
  email: string;
3974
- createdAt: Date;
3975
- updatedAt: Date;
3976
- deletedAt: Date | null;
3977
- emailVerifiedAt: Date | null;
3974
+ createdAt: string;
3975
+ updatedAt: string;
3976
+ deletedAt: string | null;
3977
+ emailVerifiedAt: string | null;
3978
3978
  password: string;
3979
3979
  phone: string | null;
3980
3980
  notificationCount: number | null;
3981
3981
  roles: {
3982
3982
  id: string;
3983
3983
  description: string | null;
3984
- createdAt: Date;
3985
- updatedAt: Date;
3986
- deletedAt: Date | null;
3984
+ createdAt: string;
3985
+ updatedAt: string;
3986
+ deletedAt: string | null;
3987
3987
  systemName: string;
3988
3988
  displayName: string;
3989
3989
  permissions: {
3990
3990
  id: string;
3991
3991
  description: string | null;
3992
- createdAt: Date;
3993
- updatedAt: Date;
3994
- deletedAt: Date | null;
3992
+ createdAt: string;
3993
+ updatedAt: string;
3994
+ deletedAt: string | null;
3995
3995
  systemName: string;
3996
3996
  displayName: string;
3997
3997
  }[];
3998
3998
  }[];
3999
3999
  extension?: {
4000
4000
  id: string;
4001
- createdAt: Date;
4002
- updatedAt: Date;
4003
- deletedAt: Date | null;
4001
+ createdAt: string;
4002
+ updatedAt: string;
4003
+ deletedAt: string | null;
4004
4004
  userId: string | null;
4005
4005
  sipServerUrl: string;
4006
4006
  sipUserName: string;
@@ -4044,36 +4044,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4044
4044
  address: string | null;
4045
4045
  name: string;
4046
4046
  email: string;
4047
- createdAt: Date;
4048
- updatedAt: Date;
4049
- deletedAt: Date | null;
4050
- emailVerifiedAt: Date | null;
4047
+ createdAt: string;
4048
+ updatedAt: string;
4049
+ deletedAt: string | null;
4050
+ emailVerifiedAt: string | null;
4051
4051
  password: string;
4052
4052
  phone: string | null;
4053
4053
  notificationCount: number | null;
4054
4054
  roles: {
4055
4055
  id: string;
4056
4056
  description: string | null;
4057
- createdAt: Date;
4058
- updatedAt: Date;
4059
- deletedAt: Date | null;
4057
+ createdAt: string;
4058
+ updatedAt: string;
4059
+ deletedAt: string | null;
4060
4060
  systemName: string;
4061
4061
  displayName: string;
4062
4062
  permissions: {
4063
4063
  id: string;
4064
4064
  description: string | null;
4065
- createdAt: Date;
4066
- updatedAt: Date;
4067
- deletedAt: Date | null;
4065
+ createdAt: string;
4066
+ updatedAt: string;
4067
+ deletedAt: string | null;
4068
4068
  systemName: string;
4069
4069
  displayName: string;
4070
4070
  }[];
4071
4071
  }[];
4072
4072
  extension?: {
4073
4073
  id: string;
4074
- createdAt: Date;
4075
- updatedAt: Date;
4076
- deletedAt: Date | null;
4074
+ createdAt: string;
4075
+ updatedAt: string;
4076
+ deletedAt: string | null;
4077
4077
  userId: string | null;
4078
4078
  sipServerUrl: string;
4079
4079
  sipUserName: string;
@@ -4095,14 +4095,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4095
4095
  channel: string | null;
4096
4096
  address: string | null;
4097
4097
  name: string;
4098
- createdAt: Date;
4099
- updatedAt: Date;
4100
- deletedAt: Date | null;
4098
+ createdAt: string;
4099
+ updatedAt: string;
4100
+ deletedAt: string | null;
4101
4101
  customFields: {
4102
4102
  id: string;
4103
- createdAt: Date;
4104
- updatedAt: Date;
4105
- deletedAt: Date | null;
4103
+ createdAt: string;
4104
+ updatedAt: string;
4105
+ deletedAt: string | null;
4106
4106
  attribute: {
4107
4107
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4108
4108
  id: string;
@@ -4120,7 +4120,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4120
4120
  textValue: string | null;
4121
4121
  booleanValue: boolean | null;
4122
4122
  numberValue: number | null;
4123
- dateValue: Date | null;
4123
+ dateValue: string | null;
4124
4124
  uploads: {
4125
4125
  id: string;
4126
4126
  createdAt: string;
@@ -4163,31 +4163,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4163
4163
  id: string;
4164
4164
  isPrimary: boolean;
4165
4165
  email: string;
4166
- createdAt: Date;
4167
- updatedAt: Date;
4168
- deletedAt: Date | null;
4166
+ createdAt: string;
4167
+ updatedAt: string;
4168
+ deletedAt: string | null;
4169
4169
  }[];
4170
4170
  contactPhones: {
4171
4171
  id: string;
4172
4172
  isPrimary: boolean;
4173
- createdAt: Date;
4174
- updatedAt: Date;
4175
- deletedAt: Date | null;
4173
+ createdAt: string;
4174
+ updatedAt: string;
4175
+ deletedAt: string | null;
4176
4176
  phone: string;
4177
4177
  }[];
4178
4178
  activityLogs?: {
4179
4179
  id: string;
4180
4180
  description: string;
4181
- createdAt: Date;
4182
- updatedAt: Date;
4183
- deletedAt: Date | null;
4181
+ createdAt: string;
4182
+ updatedAt: string;
4183
+ deletedAt: string | null;
4184
4184
  entityId: string;
4185
4185
  entityType: {
4186
4186
  id: string;
4187
4187
  description: string | null;
4188
- createdAt: Date;
4189
- updatedAt: Date;
4190
- deletedAt: Date | null;
4188
+ createdAt: string;
4189
+ updatedAt: string;
4190
+ deletedAt: string | null;
4191
4191
  entity: string;
4192
4192
  };
4193
4193
  }[] | undefined;
@@ -4229,44 +4229,44 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4229
4229
  room: {
4230
4230
  id: string;
4231
4231
  direction: "incoming" | "outgoing" | "system";
4232
- createdAt: Date;
4233
- updatedAt: Date;
4234
- deletedAt: Date | null;
4232
+ createdAt: string;
4233
+ updatedAt: string;
4234
+ deletedAt: string | null;
4235
4235
  actor: {
4236
4236
  id: string;
4237
4237
  address: string | null;
4238
4238
  name: string;
4239
4239
  email: string;
4240
- createdAt: Date;
4241
- updatedAt: Date;
4242
- deletedAt: Date | null;
4243
- emailVerifiedAt: Date | null;
4240
+ createdAt: string;
4241
+ updatedAt: string;
4242
+ deletedAt: string | null;
4243
+ emailVerifiedAt: string | null;
4244
4244
  password: string;
4245
4245
  phone: string | null;
4246
4246
  notificationCount: number | null;
4247
4247
  roles: {
4248
4248
  id: string;
4249
4249
  description: string | null;
4250
- createdAt: Date;
4251
- updatedAt: Date;
4252
- deletedAt: Date | null;
4250
+ createdAt: string;
4251
+ updatedAt: string;
4252
+ deletedAt: string | null;
4253
4253
  systemName: string;
4254
4254
  displayName: string;
4255
4255
  permissions: {
4256
4256
  id: string;
4257
4257
  description: string | null;
4258
- createdAt: Date;
4259
- updatedAt: Date;
4260
- deletedAt: Date | null;
4258
+ createdAt: string;
4259
+ updatedAt: string;
4260
+ deletedAt: string | null;
4261
4261
  systemName: string;
4262
4262
  displayName: string;
4263
4263
  }[];
4264
4264
  }[];
4265
4265
  extension?: {
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
  userId: string | null;
4271
4271
  sipServerUrl: string;
4272
4272
  sipUserName: string;
@@ -4278,9 +4278,9 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4278
4278
  firstResponseTime: number;
4279
4279
  lastMessage: string;
4280
4280
  handleTime: number;
4281
- closeAt: Date;
4281
+ closeAt: string;
4282
4282
  unreadCount: number;
4283
- firstResponseAt: Date;
4283
+ firstResponseAt: string;
4284
4284
  isLatest: boolean;
4285
4285
  platformContact: {
4286
4286
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -4299,14 +4299,14 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4299
4299
  channel: string | null;
4300
4300
  address: string | null;
4301
4301
  name: string;
4302
- createdAt: Date;
4303
- updatedAt: Date;
4304
- deletedAt: Date | null;
4302
+ createdAt: string;
4303
+ updatedAt: string;
4304
+ deletedAt: string | null;
4305
4305
  customFields: {
4306
4306
  id: string;
4307
- createdAt: Date;
4308
- updatedAt: Date;
4309
- deletedAt: Date | null;
4307
+ createdAt: string;
4308
+ updatedAt: string;
4309
+ deletedAt: string | null;
4310
4310
  attribute: {
4311
4311
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4312
4312
  id: string;
@@ -4324,7 +4324,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4324
4324
  textValue: string | null;
4325
4325
  booleanValue: boolean | null;
4326
4326
  numberValue: number | null;
4327
- dateValue: Date | null;
4327
+ dateValue: string | null;
4328
4328
  uploads: {
4329
4329
  id: string;
4330
4330
  createdAt: string;
@@ -4367,31 +4367,31 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4367
4367
  id: string;
4368
4368
  isPrimary: boolean;
4369
4369
  email: string;
4370
- createdAt: Date;
4371
- updatedAt: Date;
4372
- deletedAt: Date | null;
4370
+ createdAt: string;
4371
+ updatedAt: string;
4372
+ deletedAt: string | null;
4373
4373
  }[];
4374
4374
  contactPhones: {
4375
4375
  id: string;
4376
4376
  isPrimary: boolean;
4377
- createdAt: Date;
4378
- updatedAt: Date;
4379
- deletedAt: Date | null;
4377
+ createdAt: string;
4378
+ updatedAt: string;
4379
+ deletedAt: string | null;
4380
4380
  phone: string;
4381
4381
  }[];
4382
4382
  activityLogs?: {
4383
4383
  id: string;
4384
4384
  description: string;
4385
- createdAt: Date;
4386
- updatedAt: Date;
4387
- deletedAt: Date | null;
4385
+ createdAt: string;
4386
+ updatedAt: string;
4387
+ deletedAt: string | null;
4388
4388
  entityId: string;
4389
4389
  entityType: {
4390
4390
  id: string;
4391
4391
  description: string | null;
4392
- createdAt: Date;
4393
- updatedAt: Date;
4394
- deletedAt: Date | null;
4392
+ createdAt: string;
4393
+ updatedAt: string;
4394
+ deletedAt: string | null;
4395
4395
  entity: string;
4396
4396
  };
4397
4397
  }[] | undefined;
@@ -4404,36 +4404,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4404
4404
  address: string | null;
4405
4405
  name: string;
4406
4406
  email: string;
4407
- createdAt: Date;
4408
- updatedAt: Date;
4409
- deletedAt: Date | null;
4410
- emailVerifiedAt: Date | null;
4407
+ createdAt: string;
4408
+ updatedAt: string;
4409
+ deletedAt: string | null;
4410
+ emailVerifiedAt: string | null;
4411
4411
  password: string;
4412
4412
  phone: string | null;
4413
4413
  notificationCount: number | null;
4414
4414
  roles: {
4415
4415
  id: string;
4416
4416
  description: string | null;
4417
- createdAt: Date;
4418
- updatedAt: Date;
4419
- deletedAt: Date | null;
4417
+ createdAt: string;
4418
+ updatedAt: string;
4419
+ deletedAt: string | null;
4420
4420
  systemName: string;
4421
4421
  displayName: string;
4422
4422
  permissions: {
4423
4423
  id: string;
4424
4424
  description: string | null;
4425
- createdAt: Date;
4426
- updatedAt: Date;
4427
- deletedAt: Date | null;
4425
+ createdAt: string;
4426
+ updatedAt: string;
4427
+ deletedAt: string | null;
4428
4428
  systemName: string;
4429
4429
  displayName: string;
4430
4430
  }[];
4431
4431
  }[];
4432
4432
  extension?: {
4433
4433
  id: string;
4434
- createdAt: Date;
4435
- updatedAt: Date;
4436
- deletedAt: Date | null;
4434
+ createdAt: string;
4435
+ updatedAt: string;
4436
+ deletedAt: string | null;
4437
4437
  userId: string | null;
4438
4438
  sipServerUrl: string;
4439
4439
  sipUserName: string;
@@ -4466,36 +4466,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4466
4466
  address: string | null;
4467
4467
  name: string;
4468
4468
  email: string;
4469
- createdAt: Date;
4470
- updatedAt: Date;
4471
- deletedAt: Date | null;
4472
- emailVerifiedAt: Date | null;
4469
+ createdAt: string;
4470
+ updatedAt: string;
4471
+ deletedAt: string | null;
4472
+ emailVerifiedAt: string | null;
4473
4473
  password: string;
4474
4474
  phone: string | null;
4475
4475
  notificationCount: number | null;
4476
4476
  roles: {
4477
4477
  id: string;
4478
4478
  description: string | null;
4479
- createdAt: Date;
4480
- updatedAt: Date;
4481
- deletedAt: Date | null;
4479
+ createdAt: string;
4480
+ updatedAt: string;
4481
+ deletedAt: string | null;
4482
4482
  systemName: string;
4483
4483
  displayName: string;
4484
4484
  permissions: {
4485
4485
  id: string;
4486
4486
  description: string | null;
4487
- createdAt: Date;
4488
- updatedAt: Date;
4489
- deletedAt: Date | null;
4487
+ createdAt: string;
4488
+ updatedAt: string;
4489
+ deletedAt: string | null;
4490
4490
  systemName: string;
4491
4491
  displayName: string;
4492
4492
  }[];
4493
4493
  }[];
4494
4494
  extension?: {
4495
4495
  id: string;
4496
- createdAt: Date;
4497
- updatedAt: Date;
4498
- deletedAt: Date | null;
4496
+ createdAt: string;
4497
+ updatedAt: string;
4498
+ deletedAt: string | null;
4499
4499
  userId: string | null;
4500
4500
  sipServerUrl: string;
4501
4501
  sipUserName: string;
@@ -4539,36 +4539,36 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
4539
4539
  address: string | null;
4540
4540
  name: string;
4541
4541
  email: string;
4542
- createdAt: Date;
4543
- updatedAt: Date;
4544
- deletedAt: Date | null;
4545
- emailVerifiedAt: Date | null;
4542
+ createdAt: string;
4543
+ updatedAt: string;
4544
+ deletedAt: string | null;
4545
+ emailVerifiedAt: string | null;
4546
4546
  password: string;
4547
4547
  phone: string | null;
4548
4548
  notificationCount: number | null;
4549
4549
  roles: {
4550
4550
  id: string;
4551
4551
  description: string | null;
4552
- createdAt: Date;
4553
- updatedAt: Date;
4554
- deletedAt: Date | null;
4552
+ createdAt: string;
4553
+ updatedAt: string;
4554
+ deletedAt: string | null;
4555
4555
  systemName: string;
4556
4556
  displayName: string;
4557
4557
  permissions: {
4558
4558
  id: string;
4559
4559
  description: string | null;
4560
- createdAt: Date;
4561
- updatedAt: Date;
4562
- deletedAt: Date | null;
4560
+ createdAt: string;
4561
+ updatedAt: string;
4562
+ deletedAt: string | null;
4563
4563
  systemName: string;
4564
4564
  displayName: string;
4565
4565
  }[];
4566
4566
  }[];
4567
4567
  extension?: {
4568
4568
  id: string;
4569
- createdAt: Date;
4570
- updatedAt: Date;
4571
- deletedAt: Date | null;
4569
+ createdAt: string;
4570
+ updatedAt: string;
4571
+ deletedAt: string | null;
4572
4572
  userId: string | null;
4573
4573
  sipServerUrl: string;
4574
4574
  sipUserName: string;