@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
@@ -286,9 +286,9 @@ export declare const ContactContractValidationSchema: {
286
286
  }>;
287
287
  response: z.ZodObject<{
288
288
  id: z.ZodString;
289
- createdAt: z.ZodDate;
290
- updatedAt: z.ZodDate;
291
- deletedAt: z.ZodNullable<z.ZodDate>;
289
+ createdAt: z.ZodString;
290
+ updatedAt: z.ZodString;
291
+ deletedAt: z.ZodNullable<z.ZodString>;
292
292
  name: z.ZodString;
293
293
  address: z.ZodNullable<z.ZodString>;
294
294
  channel: z.ZodNullable<z.ZodString>;
@@ -331,7 +331,7 @@ export declare const ContactContractValidationSchema: {
331
331
  textValue: z.ZodNullable<z.ZodString>;
332
332
  booleanValue: z.ZodNullable<z.ZodBoolean>;
333
333
  numberValue: z.ZodNullable<z.ZodNumber>;
334
- dateValue: z.ZodNullable<z.ZodDate>;
334
+ dateValue: z.ZodNullable<z.ZodString>;
335
335
  attribute: z.ZodObject<Omit<{
336
336
  id: z.ZodString;
337
337
  createdAt: z.ZodString;
@@ -435,7 +435,7 @@ export declare const ContactContractValidationSchema: {
435
435
  textValue: string | null;
436
436
  booleanValue: boolean | null;
437
437
  numberValue: number | null;
438
- dateValue: Date | null;
438
+ dateValue: string | null;
439
439
  }, {
440
440
  id: string;
441
441
  createdAt: string;
@@ -458,7 +458,7 @@ export declare const ContactContractValidationSchema: {
458
458
  textValue: string | null;
459
459
  booleanValue: boolean | null;
460
460
  numberValue: number | null;
461
- dateValue: Date | null;
461
+ dateValue: string | null;
462
462
  }>, "many">>;
463
463
  }, "customFields">, "strip", z.ZodTypeAny, {
464
464
  id: string;
@@ -481,13 +481,13 @@ export declare const ContactContractValidationSchema: {
481
481
  }>>;
482
482
  customFields: z.ZodArray<z.ZodObject<{
483
483
  id: z.ZodString;
484
- createdAt: z.ZodDate;
485
- updatedAt: z.ZodDate;
486
- deletedAt: z.ZodNullable<z.ZodDate>;
484
+ createdAt: z.ZodString;
485
+ updatedAt: z.ZodString;
486
+ deletedAt: z.ZodNullable<z.ZodString>;
487
487
  textValue: z.ZodNullable<z.ZodString>;
488
488
  booleanValue: z.ZodNullable<z.ZodBoolean>;
489
489
  numberValue: z.ZodNullable<z.ZodNumber>;
490
- dateValue: z.ZodNullable<z.ZodDate>;
490
+ dateValue: z.ZodNullable<z.ZodString>;
491
491
  attribute: z.ZodObject<Omit<{
492
492
  id: z.ZodString;
493
493
  createdAt: z.ZodString;
@@ -638,9 +638,9 @@ export declare const ContactContractValidationSchema: {
638
638
  }>, "many">;
639
639
  }, "strip", z.ZodTypeAny, {
640
640
  id: string;
641
- createdAt: Date;
642
- updatedAt: Date;
643
- deletedAt: Date | null;
641
+ createdAt: string;
642
+ updatedAt: string;
643
+ deletedAt: string | null;
644
644
  attribute: {
645
645
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
646
646
  id: string;
@@ -658,7 +658,7 @@ export declare const ContactContractValidationSchema: {
658
658
  textValue: string | null;
659
659
  booleanValue: boolean | null;
660
660
  numberValue: number | null;
661
- dateValue: Date | null;
661
+ dateValue: string | null;
662
662
  uploads: {
663
663
  id: string;
664
664
  createdAt: string;
@@ -678,9 +678,9 @@ export declare const ContactContractValidationSchema: {
678
678
  }[];
679
679
  }, {
680
680
  id: string;
681
- createdAt: Date;
682
- updatedAt: Date;
683
- deletedAt: Date | null;
681
+ createdAt: string;
682
+ updatedAt: string;
683
+ deletedAt: string | null;
684
684
  attribute: {
685
685
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
686
686
  id: string;
@@ -698,7 +698,7 @@ export declare const ContactContractValidationSchema: {
698
698
  textValue: string | null;
699
699
  booleanValue: boolean | null;
700
700
  numberValue: number | null;
701
- dateValue: Date | null;
701
+ dateValue: string | null;
702
702
  uploads: {
703
703
  id: string;
704
704
  createdAt: string;
@@ -719,105 +719,105 @@ export declare const ContactContractValidationSchema: {
719
719
  }>, "many">;
720
720
  contactEmails: z.ZodArray<z.ZodObject<{
721
721
  id: z.ZodString;
722
- createdAt: z.ZodDate;
723
- updatedAt: z.ZodDate;
724
- deletedAt: z.ZodNullable<z.ZodDate>;
722
+ createdAt: z.ZodString;
723
+ updatedAt: z.ZodString;
724
+ deletedAt: z.ZodNullable<z.ZodString>;
725
725
  email: z.ZodString;
726
726
  isPrimary: z.ZodBoolean;
727
727
  }, "strip", z.ZodTypeAny, {
728
728
  id: string;
729
729
  isPrimary: boolean;
730
730
  email: string;
731
- createdAt: Date;
732
- updatedAt: Date;
733
- deletedAt: Date | null;
731
+ createdAt: string;
732
+ updatedAt: string;
733
+ deletedAt: string | null;
734
734
  }, {
735
735
  id: string;
736
736
  isPrimary: boolean;
737
737
  email: string;
738
- createdAt: Date;
739
- updatedAt: Date;
740
- deletedAt: Date | null;
738
+ createdAt: string;
739
+ updatedAt: string;
740
+ deletedAt: string | null;
741
741
  }>, "many">;
742
742
  contactPhones: z.ZodArray<z.ZodObject<{
743
743
  id: z.ZodString;
744
- createdAt: z.ZodDate;
745
- updatedAt: z.ZodDate;
746
- deletedAt: z.ZodNullable<z.ZodDate>;
744
+ createdAt: z.ZodString;
745
+ updatedAt: z.ZodString;
746
+ deletedAt: z.ZodNullable<z.ZodString>;
747
747
  phone: z.ZodString;
748
748
  isPrimary: z.ZodBoolean;
749
749
  }, "strip", z.ZodTypeAny, {
750
750
  id: string;
751
751
  isPrimary: boolean;
752
- createdAt: Date;
753
- updatedAt: Date;
754
- deletedAt: Date | null;
752
+ createdAt: string;
753
+ updatedAt: string;
754
+ deletedAt: string | null;
755
755
  phone: string;
756
756
  }, {
757
757
  id: string;
758
758
  isPrimary: boolean;
759
- createdAt: Date;
760
- updatedAt: Date;
761
- deletedAt: Date | null;
759
+ createdAt: string;
760
+ updatedAt: string;
761
+ deletedAt: string | null;
762
762
  phone: string;
763
763
  }>, "many">;
764
764
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
765
765
  id: z.ZodString;
766
- createdAt: z.ZodDate;
767
- updatedAt: z.ZodDate;
768
- deletedAt: z.ZodNullable<z.ZodDate>;
766
+ createdAt: z.ZodString;
767
+ updatedAt: z.ZodString;
768
+ deletedAt: z.ZodNullable<z.ZodString>;
769
769
  entityId: z.ZodString;
770
770
  description: z.ZodString;
771
771
  entityType: z.ZodObject<{
772
772
  id: z.ZodString;
773
- createdAt: z.ZodDate;
774
- updatedAt: z.ZodDate;
775
- deletedAt: z.ZodNullable<z.ZodDate>;
773
+ createdAt: z.ZodString;
774
+ updatedAt: z.ZodString;
775
+ deletedAt: z.ZodNullable<z.ZodString>;
776
776
  entity: z.ZodString;
777
777
  description: z.ZodNullable<z.ZodString>;
778
778
  }, "strip", z.ZodTypeAny, {
779
779
  id: string;
780
780
  description: string | null;
781
- createdAt: Date;
782
- updatedAt: Date;
783
- deletedAt: Date | null;
781
+ createdAt: string;
782
+ updatedAt: string;
783
+ deletedAt: string | null;
784
784
  entity: string;
785
785
  }, {
786
786
  id: string;
787
787
  description: string | null;
788
- createdAt: Date;
789
- updatedAt: Date;
790
- deletedAt: Date | null;
788
+ createdAt: string;
789
+ updatedAt: string;
790
+ deletedAt: string | null;
791
791
  entity: string;
792
792
  }>;
793
793
  }, "strip", z.ZodTypeAny, {
794
794
  id: string;
795
795
  description: string;
796
- createdAt: Date;
797
- updatedAt: Date;
798
- deletedAt: Date | null;
796
+ createdAt: string;
797
+ updatedAt: string;
798
+ deletedAt: string | null;
799
799
  entityId: string;
800
800
  entityType: {
801
801
  id: string;
802
802
  description: string | null;
803
- createdAt: Date;
804
- updatedAt: Date;
805
- deletedAt: Date | null;
803
+ createdAt: string;
804
+ updatedAt: string;
805
+ deletedAt: string | null;
806
806
  entity: string;
807
807
  };
808
808
  }, {
809
809
  id: string;
810
810
  description: string;
811
- createdAt: Date;
812
- updatedAt: Date;
813
- deletedAt: Date | null;
811
+ createdAt: string;
812
+ updatedAt: string;
813
+ deletedAt: string | null;
814
814
  entityId: string;
815
815
  entityType: {
816
816
  id: string;
817
817
  description: string | null;
818
- createdAt: Date;
819
- updatedAt: Date;
820
- deletedAt: Date | null;
818
+ createdAt: string;
819
+ updatedAt: string;
820
+ deletedAt: string | null;
821
821
  entity: string;
822
822
  };
823
823
  }>, "many">>;
@@ -826,14 +826,14 @@ export declare const ContactContractValidationSchema: {
826
826
  channel: string | null;
827
827
  address: string | null;
828
828
  name: string;
829
- createdAt: Date;
830
- updatedAt: Date;
831
- deletedAt: Date | null;
829
+ createdAt: string;
830
+ updatedAt: string;
831
+ deletedAt: string | null;
832
832
  customFields: {
833
833
  id: string;
834
- createdAt: Date;
835
- updatedAt: Date;
836
- deletedAt: Date | null;
834
+ createdAt: string;
835
+ updatedAt: string;
836
+ deletedAt: string | null;
837
837
  attribute: {
838
838
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
839
839
  id: string;
@@ -851,7 +851,7 @@ export declare const ContactContractValidationSchema: {
851
851
  textValue: string | null;
852
852
  booleanValue: boolean | null;
853
853
  numberValue: number | null;
854
- dateValue: Date | null;
854
+ dateValue: string | null;
855
855
  uploads: {
856
856
  id: string;
857
857
  createdAt: string;
@@ -894,31 +894,31 @@ export declare const ContactContractValidationSchema: {
894
894
  id: string;
895
895
  isPrimary: boolean;
896
896
  email: string;
897
- createdAt: Date;
898
- updatedAt: Date;
899
- deletedAt: Date | null;
897
+ createdAt: string;
898
+ updatedAt: string;
899
+ deletedAt: string | null;
900
900
  }[];
901
901
  contactPhones: {
902
902
  id: string;
903
903
  isPrimary: boolean;
904
- createdAt: Date;
905
- updatedAt: Date;
906
- deletedAt: Date | null;
904
+ createdAt: string;
905
+ updatedAt: string;
906
+ deletedAt: string | null;
907
907
  phone: string;
908
908
  }[];
909
909
  activityLogs?: {
910
910
  id: string;
911
911
  description: string;
912
- createdAt: Date;
913
- updatedAt: Date;
914
- deletedAt: Date | null;
912
+ createdAt: string;
913
+ updatedAt: string;
914
+ deletedAt: string | null;
915
915
  entityId: string;
916
916
  entityType: {
917
917
  id: string;
918
918
  description: string | null;
919
- createdAt: Date;
920
- updatedAt: Date;
921
- deletedAt: Date | null;
919
+ createdAt: string;
920
+ updatedAt: string;
921
+ deletedAt: string | null;
922
922
  entity: string;
923
923
  };
924
924
  }[] | undefined;
@@ -927,14 +927,14 @@ export declare const ContactContractValidationSchema: {
927
927
  channel: string | null;
928
928
  address: string | null;
929
929
  name: string;
930
- createdAt: Date;
931
- updatedAt: Date;
932
- deletedAt: Date | null;
930
+ createdAt: string;
931
+ updatedAt: string;
932
+ deletedAt: string | null;
933
933
  customFields: {
934
934
  id: string;
935
- createdAt: Date;
936
- updatedAt: Date;
937
- deletedAt: Date | null;
935
+ createdAt: string;
936
+ updatedAt: string;
937
+ deletedAt: string | null;
938
938
  attribute: {
939
939
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
940
940
  id: string;
@@ -952,7 +952,7 @@ export declare const ContactContractValidationSchema: {
952
952
  textValue: string | null;
953
953
  booleanValue: boolean | null;
954
954
  numberValue: number | null;
955
- dateValue: Date | null;
955
+ dateValue: string | null;
956
956
  uploads: {
957
957
  id: string;
958
958
  createdAt: string;
@@ -995,31 +995,31 @@ export declare const ContactContractValidationSchema: {
995
995
  id: string;
996
996
  isPrimary: boolean;
997
997
  email: string;
998
- createdAt: Date;
999
- updatedAt: Date;
1000
- deletedAt: Date | null;
998
+ createdAt: string;
999
+ updatedAt: string;
1000
+ deletedAt: string | null;
1001
1001
  }[];
1002
1002
  contactPhones: {
1003
1003
  id: string;
1004
1004
  isPrimary: boolean;
1005
- createdAt: Date;
1006
- updatedAt: Date;
1007
- deletedAt: Date | null;
1005
+ createdAt: string;
1006
+ updatedAt: string;
1007
+ deletedAt: string | null;
1008
1008
  phone: string;
1009
1009
  }[];
1010
1010
  activityLogs?: {
1011
1011
  id: string;
1012
1012
  description: string;
1013
- createdAt: Date;
1014
- updatedAt: Date;
1015
- deletedAt: Date | null;
1013
+ createdAt: string;
1014
+ updatedAt: string;
1015
+ deletedAt: string | null;
1016
1016
  entityId: string;
1017
1017
  entityType: {
1018
1018
  id: string;
1019
1019
  description: string | null;
1020
- createdAt: Date;
1021
- updatedAt: Date;
1022
- deletedAt: Date | null;
1020
+ createdAt: string;
1021
+ updatedAt: string;
1022
+ deletedAt: string | null;
1023
1023
  entity: string;
1024
1024
  };
1025
1025
  }[] | undefined;
@@ -1106,9 +1106,9 @@ export declare const ContactContractValidationSchema: {
1106
1106
  lastPage: z.ZodNumber;
1107
1107
  data: z.ZodArray<z.ZodObject<{
1108
1108
  id: z.ZodString;
1109
- createdAt: z.ZodDate;
1110
- updatedAt: z.ZodDate;
1111
- deletedAt: z.ZodNullable<z.ZodDate>;
1109
+ createdAt: z.ZodString;
1110
+ updatedAt: z.ZodString;
1111
+ deletedAt: z.ZodNullable<z.ZodString>;
1112
1112
  name: z.ZodString;
1113
1113
  address: z.ZodNullable<z.ZodString>;
1114
1114
  channel: z.ZodNullable<z.ZodString>;
@@ -1151,7 +1151,7 @@ export declare const ContactContractValidationSchema: {
1151
1151
  textValue: z.ZodNullable<z.ZodString>;
1152
1152
  booleanValue: z.ZodNullable<z.ZodBoolean>;
1153
1153
  numberValue: z.ZodNullable<z.ZodNumber>;
1154
- dateValue: z.ZodNullable<z.ZodDate>;
1154
+ dateValue: z.ZodNullable<z.ZodString>;
1155
1155
  attribute: z.ZodObject<Omit<{
1156
1156
  id: z.ZodString;
1157
1157
  createdAt: z.ZodString;
@@ -1255,7 +1255,7 @@ export declare const ContactContractValidationSchema: {
1255
1255
  textValue: string | null;
1256
1256
  booleanValue: boolean | null;
1257
1257
  numberValue: number | null;
1258
- dateValue: Date | null;
1258
+ dateValue: string | null;
1259
1259
  }, {
1260
1260
  id: string;
1261
1261
  createdAt: string;
@@ -1278,7 +1278,7 @@ export declare const ContactContractValidationSchema: {
1278
1278
  textValue: string | null;
1279
1279
  booleanValue: boolean | null;
1280
1280
  numberValue: number | null;
1281
- dateValue: Date | null;
1281
+ dateValue: string | null;
1282
1282
  }>, "many">>;
1283
1283
  }, "customFields">, "strip", z.ZodTypeAny, {
1284
1284
  id: string;
@@ -1301,13 +1301,13 @@ export declare const ContactContractValidationSchema: {
1301
1301
  }>>;
1302
1302
  customFields: z.ZodArray<z.ZodObject<{
1303
1303
  id: z.ZodString;
1304
- createdAt: z.ZodDate;
1305
- updatedAt: z.ZodDate;
1306
- deletedAt: z.ZodNullable<z.ZodDate>;
1304
+ createdAt: z.ZodString;
1305
+ updatedAt: z.ZodString;
1306
+ deletedAt: z.ZodNullable<z.ZodString>;
1307
1307
  textValue: z.ZodNullable<z.ZodString>;
1308
1308
  booleanValue: z.ZodNullable<z.ZodBoolean>;
1309
1309
  numberValue: z.ZodNullable<z.ZodNumber>;
1310
- dateValue: z.ZodNullable<z.ZodDate>;
1310
+ dateValue: z.ZodNullable<z.ZodString>;
1311
1311
  attribute: z.ZodObject<Omit<{
1312
1312
  id: z.ZodString;
1313
1313
  createdAt: z.ZodString;
@@ -1458,9 +1458,9 @@ export declare const ContactContractValidationSchema: {
1458
1458
  }>, "many">;
1459
1459
  }, "strip", z.ZodTypeAny, {
1460
1460
  id: string;
1461
- createdAt: Date;
1462
- updatedAt: Date;
1463
- deletedAt: Date | null;
1461
+ createdAt: string;
1462
+ updatedAt: string;
1463
+ deletedAt: string | null;
1464
1464
  attribute: {
1465
1465
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1466
1466
  id: string;
@@ -1478,7 +1478,7 @@ export declare const ContactContractValidationSchema: {
1478
1478
  textValue: string | null;
1479
1479
  booleanValue: boolean | null;
1480
1480
  numberValue: number | null;
1481
- dateValue: Date | null;
1481
+ dateValue: string | null;
1482
1482
  uploads: {
1483
1483
  id: string;
1484
1484
  createdAt: string;
@@ -1498,9 +1498,9 @@ export declare const ContactContractValidationSchema: {
1498
1498
  }[];
1499
1499
  }, {
1500
1500
  id: string;
1501
- createdAt: Date;
1502
- updatedAt: Date;
1503
- deletedAt: Date | null;
1501
+ createdAt: string;
1502
+ updatedAt: string;
1503
+ deletedAt: string | null;
1504
1504
  attribute: {
1505
1505
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1506
1506
  id: string;
@@ -1518,7 +1518,7 @@ export declare const ContactContractValidationSchema: {
1518
1518
  textValue: string | null;
1519
1519
  booleanValue: boolean | null;
1520
1520
  numberValue: number | null;
1521
- dateValue: Date | null;
1521
+ dateValue: string | null;
1522
1522
  uploads: {
1523
1523
  id: string;
1524
1524
  createdAt: string;
@@ -1539,105 +1539,105 @@ export declare const ContactContractValidationSchema: {
1539
1539
  }>, "many">;
1540
1540
  contactEmails: z.ZodArray<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
  email: z.ZodString;
1546
1546
  isPrimary: z.ZodBoolean;
1547
1547
  }, "strip", z.ZodTypeAny, {
1548
1548
  id: string;
1549
1549
  isPrimary: boolean;
1550
1550
  email: string;
1551
- createdAt: Date;
1552
- updatedAt: Date;
1553
- deletedAt: Date | null;
1551
+ createdAt: string;
1552
+ updatedAt: string;
1553
+ deletedAt: string | null;
1554
1554
  }, {
1555
1555
  id: string;
1556
1556
  isPrimary: boolean;
1557
1557
  email: string;
1558
- createdAt: Date;
1559
- updatedAt: Date;
1560
- deletedAt: Date | null;
1558
+ createdAt: string;
1559
+ updatedAt: string;
1560
+ deletedAt: string | null;
1561
1561
  }>, "many">;
1562
1562
  contactPhones: z.ZodArray<z.ZodObject<{
1563
1563
  id: z.ZodString;
1564
- createdAt: z.ZodDate;
1565
- updatedAt: z.ZodDate;
1566
- deletedAt: z.ZodNullable<z.ZodDate>;
1564
+ createdAt: z.ZodString;
1565
+ updatedAt: z.ZodString;
1566
+ deletedAt: z.ZodNullable<z.ZodString>;
1567
1567
  phone: z.ZodString;
1568
1568
  isPrimary: z.ZodBoolean;
1569
1569
  }, "strip", z.ZodTypeAny, {
1570
1570
  id: string;
1571
1571
  isPrimary: boolean;
1572
- createdAt: Date;
1573
- updatedAt: Date;
1574
- deletedAt: Date | null;
1572
+ createdAt: string;
1573
+ updatedAt: string;
1574
+ deletedAt: string | null;
1575
1575
  phone: string;
1576
1576
  }, {
1577
1577
  id: string;
1578
1578
  isPrimary: boolean;
1579
- createdAt: Date;
1580
- updatedAt: Date;
1581
- deletedAt: Date | null;
1579
+ createdAt: string;
1580
+ updatedAt: string;
1581
+ deletedAt: string | null;
1582
1582
  phone: string;
1583
1583
  }>, "many">;
1584
1584
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1585
1585
  id: z.ZodString;
1586
- createdAt: z.ZodDate;
1587
- updatedAt: z.ZodDate;
1588
- deletedAt: z.ZodNullable<z.ZodDate>;
1586
+ createdAt: z.ZodString;
1587
+ updatedAt: z.ZodString;
1588
+ deletedAt: z.ZodNullable<z.ZodString>;
1589
1589
  entityId: z.ZodString;
1590
1590
  description: z.ZodString;
1591
1591
  entityType: z.ZodObject<{
1592
1592
  id: z.ZodString;
1593
- createdAt: z.ZodDate;
1594
- updatedAt: z.ZodDate;
1595
- deletedAt: z.ZodNullable<z.ZodDate>;
1593
+ createdAt: z.ZodString;
1594
+ updatedAt: z.ZodString;
1595
+ deletedAt: z.ZodNullable<z.ZodString>;
1596
1596
  entity: z.ZodString;
1597
1597
  description: z.ZodNullable<z.ZodString>;
1598
1598
  }, "strip", z.ZodTypeAny, {
1599
1599
  id: string;
1600
1600
  description: string | null;
1601
- createdAt: Date;
1602
- updatedAt: Date;
1603
- deletedAt: Date | null;
1601
+ createdAt: string;
1602
+ updatedAt: string;
1603
+ deletedAt: string | null;
1604
1604
  entity: string;
1605
1605
  }, {
1606
1606
  id: string;
1607
1607
  description: string | null;
1608
- createdAt: Date;
1609
- updatedAt: Date;
1610
- deletedAt: Date | null;
1608
+ createdAt: string;
1609
+ updatedAt: string;
1610
+ deletedAt: string | null;
1611
1611
  entity: string;
1612
1612
  }>;
1613
1613
  }, "strip", z.ZodTypeAny, {
1614
1614
  id: string;
1615
1615
  description: string;
1616
- createdAt: Date;
1617
- updatedAt: Date;
1618
- deletedAt: Date | null;
1616
+ createdAt: string;
1617
+ updatedAt: string;
1618
+ deletedAt: string | null;
1619
1619
  entityId: string;
1620
1620
  entityType: {
1621
1621
  id: string;
1622
1622
  description: string | null;
1623
- createdAt: Date;
1624
- updatedAt: Date;
1625
- deletedAt: Date | null;
1623
+ createdAt: string;
1624
+ updatedAt: string;
1625
+ deletedAt: string | null;
1626
1626
  entity: string;
1627
1627
  };
1628
1628
  }, {
1629
1629
  id: string;
1630
1630
  description: string;
1631
- createdAt: Date;
1632
- updatedAt: Date;
1633
- deletedAt: Date | null;
1631
+ createdAt: string;
1632
+ updatedAt: string;
1633
+ deletedAt: string | null;
1634
1634
  entityId: string;
1635
1635
  entityType: {
1636
1636
  id: string;
1637
1637
  description: string | null;
1638
- createdAt: Date;
1639
- updatedAt: Date;
1640
- deletedAt: Date | null;
1638
+ createdAt: string;
1639
+ updatedAt: string;
1640
+ deletedAt: string | null;
1641
1641
  entity: string;
1642
1642
  };
1643
1643
  }>, "many">>;
@@ -1646,14 +1646,14 @@ export declare const ContactContractValidationSchema: {
1646
1646
  channel: string | null;
1647
1647
  address: string | null;
1648
1648
  name: string;
1649
- createdAt: Date;
1650
- updatedAt: Date;
1651
- deletedAt: Date | null;
1649
+ createdAt: string;
1650
+ updatedAt: string;
1651
+ deletedAt: string | null;
1652
1652
  customFields: {
1653
1653
  id: string;
1654
- createdAt: Date;
1655
- updatedAt: Date;
1656
- deletedAt: Date | null;
1654
+ createdAt: string;
1655
+ updatedAt: string;
1656
+ deletedAt: string | null;
1657
1657
  attribute: {
1658
1658
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1659
1659
  id: string;
@@ -1671,7 +1671,7 @@ export declare const ContactContractValidationSchema: {
1671
1671
  textValue: string | null;
1672
1672
  booleanValue: boolean | null;
1673
1673
  numberValue: number | null;
1674
- dateValue: Date | null;
1674
+ dateValue: string | null;
1675
1675
  uploads: {
1676
1676
  id: string;
1677
1677
  createdAt: string;
@@ -1714,31 +1714,31 @@ export declare const ContactContractValidationSchema: {
1714
1714
  id: string;
1715
1715
  isPrimary: boolean;
1716
1716
  email: string;
1717
- createdAt: Date;
1718
- updatedAt: Date;
1719
- deletedAt: Date | null;
1717
+ createdAt: string;
1718
+ updatedAt: string;
1719
+ deletedAt: string | null;
1720
1720
  }[];
1721
1721
  contactPhones: {
1722
1722
  id: string;
1723
1723
  isPrimary: boolean;
1724
- createdAt: Date;
1725
- updatedAt: Date;
1726
- deletedAt: Date | null;
1724
+ createdAt: string;
1725
+ updatedAt: string;
1726
+ deletedAt: string | null;
1727
1727
  phone: string;
1728
1728
  }[];
1729
1729
  activityLogs?: {
1730
1730
  id: string;
1731
1731
  description: string;
1732
- createdAt: Date;
1733
- updatedAt: Date;
1734
- deletedAt: Date | null;
1732
+ createdAt: string;
1733
+ updatedAt: string;
1734
+ deletedAt: string | null;
1735
1735
  entityId: string;
1736
1736
  entityType: {
1737
1737
  id: string;
1738
1738
  description: string | null;
1739
- createdAt: Date;
1740
- updatedAt: Date;
1741
- deletedAt: Date | null;
1739
+ createdAt: string;
1740
+ updatedAt: string;
1741
+ deletedAt: string | null;
1742
1742
  entity: string;
1743
1743
  };
1744
1744
  }[] | undefined;
@@ -1747,14 +1747,14 @@ export declare const ContactContractValidationSchema: {
1747
1747
  channel: string | null;
1748
1748
  address: string | null;
1749
1749
  name: string;
1750
- createdAt: Date;
1751
- updatedAt: Date;
1752
- deletedAt: Date | null;
1750
+ createdAt: string;
1751
+ updatedAt: string;
1752
+ deletedAt: string | null;
1753
1753
  customFields: {
1754
1754
  id: string;
1755
- createdAt: Date;
1756
- updatedAt: Date;
1757
- deletedAt: Date | null;
1755
+ createdAt: string;
1756
+ updatedAt: string;
1757
+ deletedAt: string | null;
1758
1758
  attribute: {
1759
1759
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
1760
1760
  id: string;
@@ -1772,7 +1772,7 @@ export declare const ContactContractValidationSchema: {
1772
1772
  textValue: string | null;
1773
1773
  booleanValue: boolean | null;
1774
1774
  numberValue: number | null;
1775
- dateValue: Date | null;
1775
+ dateValue: string | null;
1776
1776
  uploads: {
1777
1777
  id: string;
1778
1778
  createdAt: string;
@@ -1815,31 +1815,31 @@ export declare const ContactContractValidationSchema: {
1815
1815
  id: string;
1816
1816
  isPrimary: boolean;
1817
1817
  email: string;
1818
- createdAt: Date;
1819
- updatedAt: Date;
1820
- deletedAt: Date | null;
1818
+ createdAt: string;
1819
+ updatedAt: string;
1820
+ deletedAt: string | null;
1821
1821
  }[];
1822
1822
  contactPhones: {
1823
1823
  id: string;
1824
1824
  isPrimary: boolean;
1825
- createdAt: Date;
1826
- updatedAt: Date;
1827
- deletedAt: Date | null;
1825
+ createdAt: string;
1826
+ updatedAt: string;
1827
+ deletedAt: string | null;
1828
1828
  phone: string;
1829
1829
  }[];
1830
1830
  activityLogs?: {
1831
1831
  id: string;
1832
1832
  description: string;
1833
- createdAt: Date;
1834
- updatedAt: Date;
1835
- deletedAt: Date | null;
1833
+ createdAt: string;
1834
+ updatedAt: string;
1835
+ deletedAt: string | null;
1836
1836
  entityId: string;
1837
1837
  entityType: {
1838
1838
  id: string;
1839
1839
  description: string | null;
1840
- createdAt: Date;
1841
- updatedAt: Date;
1842
- deletedAt: Date | null;
1840
+ createdAt: string;
1841
+ updatedAt: string;
1842
+ deletedAt: string | null;
1843
1843
  entity: string;
1844
1844
  };
1845
1845
  }[] | undefined;
@@ -1856,9 +1856,9 @@ export declare const ContactContractValidationSchema: {
1856
1856
  }>;
1857
1857
  response: z.ZodObject<{
1858
1858
  id: z.ZodString;
1859
- createdAt: z.ZodDate;
1860
- updatedAt: z.ZodDate;
1861
- deletedAt: z.ZodNullable<z.ZodDate>;
1859
+ createdAt: z.ZodString;
1860
+ updatedAt: z.ZodString;
1861
+ deletedAt: z.ZodNullable<z.ZodString>;
1862
1862
  name: z.ZodString;
1863
1863
  address: z.ZodNullable<z.ZodString>;
1864
1864
  channel: z.ZodNullable<z.ZodString>;
@@ -1901,7 +1901,7 @@ export declare const ContactContractValidationSchema: {
1901
1901
  textValue: z.ZodNullable<z.ZodString>;
1902
1902
  booleanValue: z.ZodNullable<z.ZodBoolean>;
1903
1903
  numberValue: z.ZodNullable<z.ZodNumber>;
1904
- dateValue: z.ZodNullable<z.ZodDate>;
1904
+ dateValue: z.ZodNullable<z.ZodString>;
1905
1905
  attribute: z.ZodObject<Omit<{
1906
1906
  id: z.ZodString;
1907
1907
  createdAt: z.ZodString;
@@ -2005,7 +2005,7 @@ export declare const ContactContractValidationSchema: {
2005
2005
  textValue: string | null;
2006
2006
  booleanValue: boolean | null;
2007
2007
  numberValue: number | null;
2008
- dateValue: Date | null;
2008
+ dateValue: string | null;
2009
2009
  }, {
2010
2010
  id: string;
2011
2011
  createdAt: string;
@@ -2028,7 +2028,7 @@ export declare const ContactContractValidationSchema: {
2028
2028
  textValue: string | null;
2029
2029
  booleanValue: boolean | null;
2030
2030
  numberValue: number | null;
2031
- dateValue: Date | null;
2031
+ dateValue: string | null;
2032
2032
  }>, "many">>;
2033
2033
  }, "customFields">, "strip", z.ZodTypeAny, {
2034
2034
  id: string;
@@ -2051,13 +2051,13 @@ export declare const ContactContractValidationSchema: {
2051
2051
  }>>;
2052
2052
  customFields: z.ZodArray<z.ZodObject<{
2053
2053
  id: z.ZodString;
2054
- createdAt: z.ZodDate;
2055
- updatedAt: z.ZodDate;
2056
- deletedAt: z.ZodNullable<z.ZodDate>;
2054
+ createdAt: z.ZodString;
2055
+ updatedAt: z.ZodString;
2056
+ deletedAt: z.ZodNullable<z.ZodString>;
2057
2057
  textValue: z.ZodNullable<z.ZodString>;
2058
2058
  booleanValue: z.ZodNullable<z.ZodBoolean>;
2059
2059
  numberValue: z.ZodNullable<z.ZodNumber>;
2060
- dateValue: z.ZodNullable<z.ZodDate>;
2060
+ dateValue: z.ZodNullable<z.ZodString>;
2061
2061
  attribute: z.ZodObject<Omit<{
2062
2062
  id: z.ZodString;
2063
2063
  createdAt: z.ZodString;
@@ -2208,9 +2208,9 @@ export declare const ContactContractValidationSchema: {
2208
2208
  }>, "many">;
2209
2209
  }, "strip", z.ZodTypeAny, {
2210
2210
  id: string;
2211
- createdAt: Date;
2212
- updatedAt: Date;
2213
- deletedAt: Date | null;
2211
+ createdAt: string;
2212
+ updatedAt: string;
2213
+ deletedAt: string | null;
2214
2214
  attribute: {
2215
2215
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2216
2216
  id: string;
@@ -2228,7 +2228,7 @@ export declare const ContactContractValidationSchema: {
2228
2228
  textValue: string | null;
2229
2229
  booleanValue: boolean | null;
2230
2230
  numberValue: number | null;
2231
- dateValue: Date | null;
2231
+ dateValue: string | null;
2232
2232
  uploads: {
2233
2233
  id: string;
2234
2234
  createdAt: string;
@@ -2248,9 +2248,9 @@ export declare const ContactContractValidationSchema: {
2248
2248
  }[];
2249
2249
  }, {
2250
2250
  id: string;
2251
- createdAt: Date;
2252
- updatedAt: Date;
2253
- deletedAt: Date | null;
2251
+ createdAt: string;
2252
+ updatedAt: string;
2253
+ deletedAt: string | null;
2254
2254
  attribute: {
2255
2255
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2256
2256
  id: string;
@@ -2268,7 +2268,7 @@ export declare const ContactContractValidationSchema: {
2268
2268
  textValue: string | null;
2269
2269
  booleanValue: boolean | null;
2270
2270
  numberValue: number | null;
2271
- dateValue: Date | null;
2271
+ dateValue: string | null;
2272
2272
  uploads: {
2273
2273
  id: string;
2274
2274
  createdAt: string;
@@ -2289,105 +2289,105 @@ export declare const ContactContractValidationSchema: {
2289
2289
  }>, "many">;
2290
2290
  contactEmails: z.ZodArray<z.ZodObject<{
2291
2291
  id: z.ZodString;
2292
- createdAt: z.ZodDate;
2293
- updatedAt: z.ZodDate;
2294
- deletedAt: z.ZodNullable<z.ZodDate>;
2292
+ createdAt: z.ZodString;
2293
+ updatedAt: z.ZodString;
2294
+ deletedAt: z.ZodNullable<z.ZodString>;
2295
2295
  email: z.ZodString;
2296
2296
  isPrimary: z.ZodBoolean;
2297
2297
  }, "strip", z.ZodTypeAny, {
2298
2298
  id: string;
2299
2299
  isPrimary: boolean;
2300
2300
  email: string;
2301
- createdAt: Date;
2302
- updatedAt: Date;
2303
- deletedAt: Date | null;
2301
+ createdAt: string;
2302
+ updatedAt: string;
2303
+ deletedAt: string | null;
2304
2304
  }, {
2305
2305
  id: string;
2306
2306
  isPrimary: boolean;
2307
2307
  email: string;
2308
- createdAt: Date;
2309
- updatedAt: Date;
2310
- deletedAt: Date | null;
2308
+ createdAt: string;
2309
+ updatedAt: string;
2310
+ deletedAt: string | null;
2311
2311
  }>, "many">;
2312
2312
  contactPhones: z.ZodArray<z.ZodObject<{
2313
2313
  id: z.ZodString;
2314
- createdAt: z.ZodDate;
2315
- updatedAt: z.ZodDate;
2316
- deletedAt: z.ZodNullable<z.ZodDate>;
2314
+ createdAt: z.ZodString;
2315
+ updatedAt: z.ZodString;
2316
+ deletedAt: z.ZodNullable<z.ZodString>;
2317
2317
  phone: z.ZodString;
2318
2318
  isPrimary: z.ZodBoolean;
2319
2319
  }, "strip", z.ZodTypeAny, {
2320
2320
  id: string;
2321
2321
  isPrimary: boolean;
2322
- createdAt: Date;
2323
- updatedAt: Date;
2324
- deletedAt: Date | null;
2322
+ createdAt: string;
2323
+ updatedAt: string;
2324
+ deletedAt: string | null;
2325
2325
  phone: string;
2326
2326
  }, {
2327
2327
  id: string;
2328
2328
  isPrimary: boolean;
2329
- createdAt: Date;
2330
- updatedAt: Date;
2331
- deletedAt: Date | null;
2329
+ createdAt: string;
2330
+ updatedAt: string;
2331
+ deletedAt: string | null;
2332
2332
  phone: string;
2333
2333
  }>, "many">;
2334
2334
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
2335
2335
  id: z.ZodString;
2336
- createdAt: z.ZodDate;
2337
- updatedAt: z.ZodDate;
2338
- deletedAt: z.ZodNullable<z.ZodDate>;
2336
+ createdAt: z.ZodString;
2337
+ updatedAt: z.ZodString;
2338
+ deletedAt: z.ZodNullable<z.ZodString>;
2339
2339
  entityId: z.ZodString;
2340
2340
  description: z.ZodString;
2341
2341
  entityType: z.ZodObject<{
2342
2342
  id: z.ZodString;
2343
- createdAt: z.ZodDate;
2344
- updatedAt: z.ZodDate;
2345
- deletedAt: z.ZodNullable<z.ZodDate>;
2343
+ createdAt: z.ZodString;
2344
+ updatedAt: z.ZodString;
2345
+ deletedAt: z.ZodNullable<z.ZodString>;
2346
2346
  entity: z.ZodString;
2347
2347
  description: z.ZodNullable<z.ZodString>;
2348
2348
  }, "strip", z.ZodTypeAny, {
2349
2349
  id: string;
2350
2350
  description: string | null;
2351
- createdAt: Date;
2352
- updatedAt: Date;
2353
- deletedAt: Date | null;
2351
+ createdAt: string;
2352
+ updatedAt: string;
2353
+ deletedAt: string | null;
2354
2354
  entity: string;
2355
2355
  }, {
2356
2356
  id: string;
2357
2357
  description: string | null;
2358
- createdAt: Date;
2359
- updatedAt: Date;
2360
- deletedAt: Date | null;
2358
+ createdAt: string;
2359
+ updatedAt: string;
2360
+ deletedAt: string | null;
2361
2361
  entity: string;
2362
2362
  }>;
2363
2363
  }, "strip", z.ZodTypeAny, {
2364
2364
  id: string;
2365
2365
  description: string;
2366
- createdAt: Date;
2367
- updatedAt: Date;
2368
- deletedAt: Date | null;
2366
+ createdAt: string;
2367
+ updatedAt: string;
2368
+ deletedAt: string | null;
2369
2369
  entityId: string;
2370
2370
  entityType: {
2371
2371
  id: string;
2372
2372
  description: string | null;
2373
- createdAt: Date;
2374
- updatedAt: Date;
2375
- deletedAt: Date | null;
2373
+ createdAt: string;
2374
+ updatedAt: string;
2375
+ deletedAt: string | null;
2376
2376
  entity: string;
2377
2377
  };
2378
2378
  }, {
2379
2379
  id: string;
2380
2380
  description: string;
2381
- createdAt: Date;
2382
- updatedAt: Date;
2383
- deletedAt: Date | null;
2381
+ createdAt: string;
2382
+ updatedAt: string;
2383
+ deletedAt: string | null;
2384
2384
  entityId: string;
2385
2385
  entityType: {
2386
2386
  id: string;
2387
2387
  description: string | null;
2388
- createdAt: Date;
2389
- updatedAt: Date;
2390
- deletedAt: Date | null;
2388
+ createdAt: string;
2389
+ updatedAt: string;
2390
+ deletedAt: string | null;
2391
2391
  entity: string;
2392
2392
  };
2393
2393
  }>, "many">>;
@@ -2396,14 +2396,14 @@ export declare const ContactContractValidationSchema: {
2396
2396
  channel: string | null;
2397
2397
  address: string | null;
2398
2398
  name: string;
2399
- createdAt: Date;
2400
- updatedAt: Date;
2401
- deletedAt: Date | null;
2399
+ createdAt: string;
2400
+ updatedAt: string;
2401
+ deletedAt: string | null;
2402
2402
  customFields: {
2403
2403
  id: string;
2404
- createdAt: Date;
2405
- updatedAt: Date;
2406
- deletedAt: Date | null;
2404
+ createdAt: string;
2405
+ updatedAt: string;
2406
+ deletedAt: string | null;
2407
2407
  attribute: {
2408
2408
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2409
2409
  id: string;
@@ -2421,7 +2421,7 @@ export declare const ContactContractValidationSchema: {
2421
2421
  textValue: string | null;
2422
2422
  booleanValue: boolean | null;
2423
2423
  numberValue: number | null;
2424
- dateValue: Date | null;
2424
+ dateValue: string | null;
2425
2425
  uploads: {
2426
2426
  id: string;
2427
2427
  createdAt: string;
@@ -2464,31 +2464,31 @@ export declare const ContactContractValidationSchema: {
2464
2464
  id: string;
2465
2465
  isPrimary: boolean;
2466
2466
  email: string;
2467
- createdAt: Date;
2468
- updatedAt: Date;
2469
- deletedAt: Date | null;
2467
+ createdAt: string;
2468
+ updatedAt: string;
2469
+ deletedAt: string | null;
2470
2470
  }[];
2471
2471
  contactPhones: {
2472
2472
  id: string;
2473
2473
  isPrimary: boolean;
2474
- createdAt: Date;
2475
- updatedAt: Date;
2476
- deletedAt: Date | null;
2474
+ createdAt: string;
2475
+ updatedAt: string;
2476
+ deletedAt: string | null;
2477
2477
  phone: string;
2478
2478
  }[];
2479
2479
  activityLogs?: {
2480
2480
  id: string;
2481
2481
  description: string;
2482
- createdAt: Date;
2483
- updatedAt: Date;
2484
- deletedAt: Date | null;
2482
+ createdAt: string;
2483
+ updatedAt: string;
2484
+ deletedAt: string | null;
2485
2485
  entityId: string;
2486
2486
  entityType: {
2487
2487
  id: string;
2488
2488
  description: string | null;
2489
- createdAt: Date;
2490
- updatedAt: Date;
2491
- deletedAt: Date | null;
2489
+ createdAt: string;
2490
+ updatedAt: string;
2491
+ deletedAt: string | null;
2492
2492
  entity: string;
2493
2493
  };
2494
2494
  }[] | undefined;
@@ -2497,15 +2497,15 @@ export declare const ContactContractValidationSchema: {
2497
2497
  channel: string | null;
2498
2498
  address: string | null;
2499
2499
  name: string;
2500
- createdAt: Date;
2501
- updatedAt: Date;
2502
- deletedAt: Date | null;
2500
+ createdAt: string;
2501
+ updatedAt: string;
2502
+ deletedAt: string | null;
2503
2503
  customFields: {
2504
2504
  id: string;
2505
- createdAt: Date;
2506
- updatedAt: Date;
2507
- deletedAt: Date | null;
2508
- attribute: {
2505
+ createdAt: string;
2506
+ updatedAt: string;
2507
+ deletedAt: string | null;
2508
+ attribute: {
2509
2509
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2510
2510
  id: string;
2511
2511
  position: number;
@@ -2522,7 +2522,7 @@ export declare const ContactContractValidationSchema: {
2522
2522
  textValue: string | null;
2523
2523
  booleanValue: boolean | null;
2524
2524
  numberValue: number | null;
2525
- dateValue: Date | null;
2525
+ dateValue: string | null;
2526
2526
  uploads: {
2527
2527
  id: string;
2528
2528
  createdAt: string;
@@ -2565,31 +2565,31 @@ export declare const ContactContractValidationSchema: {
2565
2565
  id: string;
2566
2566
  isPrimary: boolean;
2567
2567
  email: string;
2568
- createdAt: Date;
2569
- updatedAt: Date;
2570
- deletedAt: Date | null;
2568
+ createdAt: string;
2569
+ updatedAt: string;
2570
+ deletedAt: string | null;
2571
2571
  }[];
2572
2572
  contactPhones: {
2573
2573
  id: string;
2574
2574
  isPrimary: boolean;
2575
- createdAt: Date;
2576
- updatedAt: Date;
2577
- deletedAt: Date | null;
2575
+ createdAt: string;
2576
+ updatedAt: string;
2577
+ deletedAt: string | null;
2578
2578
  phone: string;
2579
2579
  }[];
2580
2580
  activityLogs?: {
2581
2581
  id: string;
2582
2582
  description: string;
2583
- createdAt: Date;
2584
- updatedAt: Date;
2585
- deletedAt: Date | null;
2583
+ createdAt: string;
2584
+ updatedAt: string;
2585
+ deletedAt: string | null;
2586
2586
  entityId: string;
2587
2587
  entityType: {
2588
2588
  id: string;
2589
2589
  description: string | null;
2590
- createdAt: Date;
2591
- updatedAt: Date;
2592
- deletedAt: Date | null;
2590
+ createdAt: string;
2591
+ updatedAt: string;
2592
+ deletedAt: string | null;
2593
2593
  entity: string;
2594
2594
  };
2595
2595
  }[] | undefined;
@@ -2605,9 +2605,9 @@ export declare const ContactContractValidationSchema: {
2605
2605
  }>;
2606
2606
  response: z.ZodObject<{
2607
2607
  id: z.ZodString;
2608
- createdAt: z.ZodDate;
2609
- updatedAt: z.ZodDate;
2610
- deletedAt: z.ZodNullable<z.ZodDate>;
2608
+ createdAt: z.ZodString;
2609
+ updatedAt: z.ZodString;
2610
+ deletedAt: z.ZodNullable<z.ZodString>;
2611
2611
  name: z.ZodString;
2612
2612
  address: z.ZodNullable<z.ZodString>;
2613
2613
  channel: z.ZodNullable<z.ZodString>;
@@ -2650,7 +2650,7 @@ export declare const ContactContractValidationSchema: {
2650
2650
  textValue: z.ZodNullable<z.ZodString>;
2651
2651
  booleanValue: z.ZodNullable<z.ZodBoolean>;
2652
2652
  numberValue: z.ZodNullable<z.ZodNumber>;
2653
- dateValue: z.ZodNullable<z.ZodDate>;
2653
+ dateValue: z.ZodNullable<z.ZodString>;
2654
2654
  attribute: z.ZodObject<Omit<{
2655
2655
  id: z.ZodString;
2656
2656
  createdAt: z.ZodString;
@@ -2754,7 +2754,7 @@ export declare const ContactContractValidationSchema: {
2754
2754
  textValue: string | null;
2755
2755
  booleanValue: boolean | null;
2756
2756
  numberValue: number | null;
2757
- dateValue: Date | null;
2757
+ dateValue: string | null;
2758
2758
  }, {
2759
2759
  id: string;
2760
2760
  createdAt: string;
@@ -2777,7 +2777,7 @@ export declare const ContactContractValidationSchema: {
2777
2777
  textValue: string | null;
2778
2778
  booleanValue: boolean | null;
2779
2779
  numberValue: number | null;
2780
- dateValue: Date | null;
2780
+ dateValue: string | null;
2781
2781
  }>, "many">>;
2782
2782
  }, "customFields">, "strip", z.ZodTypeAny, {
2783
2783
  id: string;
@@ -2800,13 +2800,13 @@ export declare const ContactContractValidationSchema: {
2800
2800
  }>>;
2801
2801
  customFields: z.ZodArray<z.ZodObject<{
2802
2802
  id: z.ZodString;
2803
- createdAt: z.ZodDate;
2804
- updatedAt: z.ZodDate;
2805
- deletedAt: z.ZodNullable<z.ZodDate>;
2803
+ createdAt: z.ZodString;
2804
+ updatedAt: z.ZodString;
2805
+ deletedAt: z.ZodNullable<z.ZodString>;
2806
2806
  textValue: z.ZodNullable<z.ZodString>;
2807
2807
  booleanValue: z.ZodNullable<z.ZodBoolean>;
2808
2808
  numberValue: z.ZodNullable<z.ZodNumber>;
2809
- dateValue: z.ZodNullable<z.ZodDate>;
2809
+ dateValue: z.ZodNullable<z.ZodString>;
2810
2810
  attribute: z.ZodObject<Omit<{
2811
2811
  id: z.ZodString;
2812
2812
  createdAt: z.ZodString;
@@ -2957,9 +2957,9 @@ export declare const ContactContractValidationSchema: {
2957
2957
  }>, "many">;
2958
2958
  }, "strip", z.ZodTypeAny, {
2959
2959
  id: string;
2960
- createdAt: Date;
2961
- updatedAt: Date;
2962
- deletedAt: Date | null;
2960
+ createdAt: string;
2961
+ updatedAt: string;
2962
+ deletedAt: string | null;
2963
2963
  attribute: {
2964
2964
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
2965
2965
  id: string;
@@ -2977,7 +2977,7 @@ export declare const ContactContractValidationSchema: {
2977
2977
  textValue: string | null;
2978
2978
  booleanValue: boolean | null;
2979
2979
  numberValue: number | null;
2980
- dateValue: Date | null;
2980
+ dateValue: string | null;
2981
2981
  uploads: {
2982
2982
  id: string;
2983
2983
  createdAt: string;
@@ -2997,9 +2997,9 @@ export declare const ContactContractValidationSchema: {
2997
2997
  }[];
2998
2998
  }, {
2999
2999
  id: string;
3000
- createdAt: Date;
3001
- updatedAt: Date;
3002
- deletedAt: Date | null;
3000
+ createdAt: string;
3001
+ updatedAt: string;
3002
+ deletedAt: string | null;
3003
3003
  attribute: {
3004
3004
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3005
3005
  id: string;
@@ -3017,7 +3017,7 @@ export declare const ContactContractValidationSchema: {
3017
3017
  textValue: string | null;
3018
3018
  booleanValue: boolean | null;
3019
3019
  numberValue: number | null;
3020
- dateValue: Date | null;
3020
+ dateValue: string | null;
3021
3021
  uploads: {
3022
3022
  id: string;
3023
3023
  createdAt: string;
@@ -3038,105 +3038,105 @@ export declare const ContactContractValidationSchema: {
3038
3038
  }>, "many">;
3039
3039
  contactEmails: z.ZodArray<z.ZodObject<{
3040
3040
  id: z.ZodString;
3041
- createdAt: z.ZodDate;
3042
- updatedAt: z.ZodDate;
3043
- deletedAt: z.ZodNullable<z.ZodDate>;
3041
+ createdAt: z.ZodString;
3042
+ updatedAt: z.ZodString;
3043
+ deletedAt: z.ZodNullable<z.ZodString>;
3044
3044
  email: z.ZodString;
3045
3045
  isPrimary: z.ZodBoolean;
3046
3046
  }, "strip", z.ZodTypeAny, {
3047
3047
  id: string;
3048
3048
  isPrimary: boolean;
3049
3049
  email: string;
3050
- createdAt: Date;
3051
- updatedAt: Date;
3052
- deletedAt: Date | null;
3050
+ createdAt: string;
3051
+ updatedAt: string;
3052
+ deletedAt: string | null;
3053
3053
  }, {
3054
3054
  id: string;
3055
3055
  isPrimary: boolean;
3056
3056
  email: string;
3057
- createdAt: Date;
3058
- updatedAt: Date;
3059
- deletedAt: Date | null;
3057
+ createdAt: string;
3058
+ updatedAt: string;
3059
+ deletedAt: string | null;
3060
3060
  }>, "many">;
3061
3061
  contactPhones: z.ZodArray<z.ZodObject<{
3062
3062
  id: z.ZodString;
3063
- createdAt: z.ZodDate;
3064
- updatedAt: z.ZodDate;
3065
- deletedAt: z.ZodNullable<z.ZodDate>;
3063
+ createdAt: z.ZodString;
3064
+ updatedAt: z.ZodString;
3065
+ deletedAt: z.ZodNullable<z.ZodString>;
3066
3066
  phone: z.ZodString;
3067
3067
  isPrimary: z.ZodBoolean;
3068
3068
  }, "strip", z.ZodTypeAny, {
3069
3069
  id: string;
3070
3070
  isPrimary: boolean;
3071
- createdAt: Date;
3072
- updatedAt: Date;
3073
- deletedAt: Date | null;
3071
+ createdAt: string;
3072
+ updatedAt: string;
3073
+ deletedAt: string | null;
3074
3074
  phone: string;
3075
3075
  }, {
3076
3076
  id: string;
3077
3077
  isPrimary: boolean;
3078
- createdAt: Date;
3079
- updatedAt: Date;
3080
- deletedAt: Date | null;
3078
+ createdAt: string;
3079
+ updatedAt: string;
3080
+ deletedAt: string | null;
3081
3081
  phone: string;
3082
3082
  }>, "many">;
3083
3083
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
3084
3084
  id: z.ZodString;
3085
- createdAt: z.ZodDate;
3086
- updatedAt: z.ZodDate;
3087
- deletedAt: z.ZodNullable<z.ZodDate>;
3085
+ createdAt: z.ZodString;
3086
+ updatedAt: z.ZodString;
3087
+ deletedAt: z.ZodNullable<z.ZodString>;
3088
3088
  entityId: z.ZodString;
3089
3089
  description: z.ZodString;
3090
3090
  entityType: z.ZodObject<{
3091
3091
  id: z.ZodString;
3092
- createdAt: z.ZodDate;
3093
- updatedAt: z.ZodDate;
3094
- deletedAt: z.ZodNullable<z.ZodDate>;
3092
+ createdAt: z.ZodString;
3093
+ updatedAt: z.ZodString;
3094
+ deletedAt: z.ZodNullable<z.ZodString>;
3095
3095
  entity: z.ZodString;
3096
3096
  description: z.ZodNullable<z.ZodString>;
3097
3097
  }, "strip", z.ZodTypeAny, {
3098
3098
  id: string;
3099
3099
  description: string | null;
3100
- createdAt: Date;
3101
- updatedAt: Date;
3102
- deletedAt: Date | null;
3100
+ createdAt: string;
3101
+ updatedAt: string;
3102
+ deletedAt: string | null;
3103
3103
  entity: string;
3104
3104
  }, {
3105
3105
  id: string;
3106
3106
  description: string | null;
3107
- createdAt: Date;
3108
- updatedAt: Date;
3109
- deletedAt: Date | null;
3107
+ createdAt: string;
3108
+ updatedAt: string;
3109
+ deletedAt: string | null;
3110
3110
  entity: string;
3111
3111
  }>;
3112
3112
  }, "strip", z.ZodTypeAny, {
3113
3113
  id: string;
3114
3114
  description: string;
3115
- createdAt: Date;
3116
- updatedAt: Date;
3117
- deletedAt: Date | null;
3115
+ createdAt: string;
3116
+ updatedAt: string;
3117
+ deletedAt: string | null;
3118
3118
  entityId: string;
3119
3119
  entityType: {
3120
3120
  id: string;
3121
3121
  description: string | null;
3122
- createdAt: Date;
3123
- updatedAt: Date;
3124
- deletedAt: Date | null;
3122
+ createdAt: string;
3123
+ updatedAt: string;
3124
+ deletedAt: string | null;
3125
3125
  entity: string;
3126
3126
  };
3127
3127
  }, {
3128
3128
  id: string;
3129
3129
  description: string;
3130
- createdAt: Date;
3131
- updatedAt: Date;
3132
- deletedAt: Date | null;
3130
+ createdAt: string;
3131
+ updatedAt: string;
3132
+ deletedAt: string | null;
3133
3133
  entityId: string;
3134
3134
  entityType: {
3135
3135
  id: string;
3136
3136
  description: string | null;
3137
- createdAt: Date;
3138
- updatedAt: Date;
3139
- deletedAt: Date | null;
3137
+ createdAt: string;
3138
+ updatedAt: string;
3139
+ deletedAt: string | null;
3140
3140
  entity: string;
3141
3141
  };
3142
3142
  }>, "many">>;
@@ -3145,14 +3145,14 @@ export declare const ContactContractValidationSchema: {
3145
3145
  channel: string | null;
3146
3146
  address: string | null;
3147
3147
  name: string;
3148
- createdAt: Date;
3149
- updatedAt: Date;
3150
- deletedAt: Date | null;
3148
+ createdAt: string;
3149
+ updatedAt: string;
3150
+ deletedAt: string | null;
3151
3151
  customFields: {
3152
3152
  id: string;
3153
- createdAt: Date;
3154
- updatedAt: Date;
3155
- deletedAt: Date | null;
3153
+ createdAt: string;
3154
+ updatedAt: string;
3155
+ deletedAt: string | null;
3156
3156
  attribute: {
3157
3157
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3158
3158
  id: string;
@@ -3170,7 +3170,7 @@ export declare const ContactContractValidationSchema: {
3170
3170
  textValue: string | null;
3171
3171
  booleanValue: boolean | null;
3172
3172
  numberValue: number | null;
3173
- dateValue: Date | null;
3173
+ dateValue: string | null;
3174
3174
  uploads: {
3175
3175
  id: string;
3176
3176
  createdAt: string;
@@ -3213,31 +3213,31 @@ export declare const ContactContractValidationSchema: {
3213
3213
  id: string;
3214
3214
  isPrimary: boolean;
3215
3215
  email: string;
3216
- createdAt: Date;
3217
- updatedAt: Date;
3218
- deletedAt: Date | null;
3216
+ createdAt: string;
3217
+ updatedAt: string;
3218
+ deletedAt: string | null;
3219
3219
  }[];
3220
3220
  contactPhones: {
3221
3221
  id: string;
3222
3222
  isPrimary: boolean;
3223
- createdAt: Date;
3224
- updatedAt: Date;
3225
- deletedAt: Date | null;
3223
+ createdAt: string;
3224
+ updatedAt: string;
3225
+ deletedAt: string | null;
3226
3226
  phone: string;
3227
3227
  }[];
3228
3228
  activityLogs?: {
3229
3229
  id: string;
3230
3230
  description: string;
3231
- createdAt: Date;
3232
- updatedAt: Date;
3233
- deletedAt: Date | null;
3231
+ createdAt: string;
3232
+ updatedAt: string;
3233
+ deletedAt: string | null;
3234
3234
  entityId: string;
3235
3235
  entityType: {
3236
3236
  id: string;
3237
3237
  description: string | null;
3238
- createdAt: Date;
3239
- updatedAt: Date;
3240
- deletedAt: Date | null;
3238
+ createdAt: string;
3239
+ updatedAt: string;
3240
+ deletedAt: string | null;
3241
3241
  entity: string;
3242
3242
  };
3243
3243
  }[] | undefined;
@@ -3246,14 +3246,14 @@ export declare const ContactContractValidationSchema: {
3246
3246
  channel: string | null;
3247
3247
  address: string | null;
3248
3248
  name: string;
3249
- createdAt: Date;
3250
- updatedAt: Date;
3251
- deletedAt: Date | null;
3249
+ createdAt: string;
3250
+ updatedAt: string;
3251
+ deletedAt: string | null;
3252
3252
  customFields: {
3253
3253
  id: string;
3254
- createdAt: Date;
3255
- updatedAt: Date;
3256
- deletedAt: Date | null;
3254
+ createdAt: string;
3255
+ updatedAt: string;
3256
+ deletedAt: string | null;
3257
3257
  attribute: {
3258
3258
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3259
3259
  id: string;
@@ -3271,7 +3271,7 @@ export declare const ContactContractValidationSchema: {
3271
3271
  textValue: string | null;
3272
3272
  booleanValue: boolean | null;
3273
3273
  numberValue: number | null;
3274
- dateValue: Date | null;
3274
+ dateValue: string | null;
3275
3275
  uploads: {
3276
3276
  id: string;
3277
3277
  createdAt: string;
@@ -3314,31 +3314,31 @@ export declare const ContactContractValidationSchema: {
3314
3314
  id: string;
3315
3315
  isPrimary: boolean;
3316
3316
  email: string;
3317
- createdAt: Date;
3318
- updatedAt: Date;
3319
- deletedAt: Date | null;
3317
+ createdAt: string;
3318
+ updatedAt: string;
3319
+ deletedAt: string | null;
3320
3320
  }[];
3321
3321
  contactPhones: {
3322
3322
  id: string;
3323
3323
  isPrimary: boolean;
3324
- createdAt: Date;
3325
- updatedAt: Date;
3326
- deletedAt: Date | null;
3324
+ createdAt: string;
3325
+ updatedAt: string;
3326
+ deletedAt: string | null;
3327
3327
  phone: string;
3328
3328
  }[];
3329
3329
  activityLogs?: {
3330
3330
  id: string;
3331
3331
  description: string;
3332
- createdAt: Date;
3333
- updatedAt: Date;
3334
- deletedAt: Date | null;
3332
+ createdAt: string;
3333
+ updatedAt: string;
3334
+ deletedAt: string | null;
3335
3335
  entityId: string;
3336
3336
  entityType: {
3337
3337
  id: string;
3338
3338
  description: string | null;
3339
- createdAt: Date;
3340
- updatedAt: Date;
3341
- deletedAt: Date | null;
3339
+ createdAt: string;
3340
+ updatedAt: string;
3341
+ deletedAt: string | null;
3342
3342
  entity: string;
3343
3343
  };
3344
3344
  }[] | undefined;
@@ -3357,9 +3357,9 @@ export declare const ContactContractValidationSchema: {
3357
3357
  }>;
3358
3358
  response: z.ZodObject<{
3359
3359
  id: z.ZodString;
3360
- createdAt: z.ZodDate;
3361
- updatedAt: z.ZodDate;
3362
- deletedAt: z.ZodNullable<z.ZodDate>;
3360
+ createdAt: z.ZodString;
3361
+ updatedAt: z.ZodString;
3362
+ deletedAt: z.ZodNullable<z.ZodString>;
3363
3363
  name: z.ZodString;
3364
3364
  address: z.ZodNullable<z.ZodString>;
3365
3365
  channel: z.ZodNullable<z.ZodString>;
@@ -3402,7 +3402,7 @@ export declare const ContactContractValidationSchema: {
3402
3402
  textValue: z.ZodNullable<z.ZodString>;
3403
3403
  booleanValue: z.ZodNullable<z.ZodBoolean>;
3404
3404
  numberValue: z.ZodNullable<z.ZodNumber>;
3405
- dateValue: z.ZodNullable<z.ZodDate>;
3405
+ dateValue: z.ZodNullable<z.ZodString>;
3406
3406
  attribute: z.ZodObject<Omit<{
3407
3407
  id: z.ZodString;
3408
3408
  createdAt: z.ZodString;
@@ -3506,7 +3506,7 @@ export declare const ContactContractValidationSchema: {
3506
3506
  textValue: string | null;
3507
3507
  booleanValue: boolean | null;
3508
3508
  numberValue: number | null;
3509
- dateValue: Date | null;
3509
+ dateValue: string | null;
3510
3510
  }, {
3511
3511
  id: string;
3512
3512
  createdAt: string;
@@ -3529,7 +3529,7 @@ export declare const ContactContractValidationSchema: {
3529
3529
  textValue: string | null;
3530
3530
  booleanValue: boolean | null;
3531
3531
  numberValue: number | null;
3532
- dateValue: Date | null;
3532
+ dateValue: string | null;
3533
3533
  }>, "many">>;
3534
3534
  }, "customFields">, "strip", z.ZodTypeAny, {
3535
3535
  id: string;
@@ -3552,13 +3552,13 @@ export declare const ContactContractValidationSchema: {
3552
3552
  }>>;
3553
3553
  customFields: z.ZodArray<z.ZodObject<{
3554
3554
  id: z.ZodString;
3555
- createdAt: z.ZodDate;
3556
- updatedAt: z.ZodDate;
3557
- deletedAt: z.ZodNullable<z.ZodDate>;
3555
+ createdAt: z.ZodString;
3556
+ updatedAt: z.ZodString;
3557
+ deletedAt: z.ZodNullable<z.ZodString>;
3558
3558
  textValue: z.ZodNullable<z.ZodString>;
3559
3559
  booleanValue: z.ZodNullable<z.ZodBoolean>;
3560
3560
  numberValue: z.ZodNullable<z.ZodNumber>;
3561
- dateValue: z.ZodNullable<z.ZodDate>;
3561
+ dateValue: z.ZodNullable<z.ZodString>;
3562
3562
  attribute: z.ZodObject<Omit<{
3563
3563
  id: z.ZodString;
3564
3564
  createdAt: z.ZodString;
@@ -3709,9 +3709,9 @@ export declare const ContactContractValidationSchema: {
3709
3709
  }>, "many">;
3710
3710
  }, "strip", z.ZodTypeAny, {
3711
3711
  id: string;
3712
- createdAt: Date;
3713
- updatedAt: Date;
3714
- deletedAt: Date | null;
3712
+ createdAt: string;
3713
+ updatedAt: string;
3714
+ deletedAt: string | null;
3715
3715
  attribute: {
3716
3716
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3717
3717
  id: string;
@@ -3729,7 +3729,7 @@ export declare const ContactContractValidationSchema: {
3729
3729
  textValue: string | null;
3730
3730
  booleanValue: boolean | null;
3731
3731
  numberValue: number | null;
3732
- dateValue: Date | null;
3732
+ dateValue: string | null;
3733
3733
  uploads: {
3734
3734
  id: string;
3735
3735
  createdAt: string;
@@ -3749,9 +3749,9 @@ export declare const ContactContractValidationSchema: {
3749
3749
  }[];
3750
3750
  }, {
3751
3751
  id: string;
3752
- createdAt: Date;
3753
- updatedAt: Date;
3754
- deletedAt: Date | null;
3752
+ createdAt: string;
3753
+ updatedAt: string;
3754
+ deletedAt: string | null;
3755
3755
  attribute: {
3756
3756
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3757
3757
  id: string;
@@ -3769,7 +3769,7 @@ export declare const ContactContractValidationSchema: {
3769
3769
  textValue: string | null;
3770
3770
  booleanValue: boolean | null;
3771
3771
  numberValue: number | null;
3772
- dateValue: Date | null;
3772
+ dateValue: string | null;
3773
3773
  uploads: {
3774
3774
  id: string;
3775
3775
  createdAt: string;
@@ -3790,105 +3790,105 @@ export declare const ContactContractValidationSchema: {
3790
3790
  }>, "many">;
3791
3791
  contactEmails: z.ZodArray<z.ZodObject<{
3792
3792
  id: z.ZodString;
3793
- createdAt: z.ZodDate;
3794
- updatedAt: z.ZodDate;
3795
- deletedAt: z.ZodNullable<z.ZodDate>;
3793
+ createdAt: z.ZodString;
3794
+ updatedAt: z.ZodString;
3795
+ deletedAt: z.ZodNullable<z.ZodString>;
3796
3796
  email: z.ZodString;
3797
3797
  isPrimary: z.ZodBoolean;
3798
3798
  }, "strip", z.ZodTypeAny, {
3799
3799
  id: string;
3800
3800
  isPrimary: boolean;
3801
3801
  email: string;
3802
- createdAt: Date;
3803
- updatedAt: Date;
3804
- deletedAt: Date | null;
3802
+ createdAt: string;
3803
+ updatedAt: string;
3804
+ deletedAt: string | null;
3805
3805
  }, {
3806
3806
  id: string;
3807
3807
  isPrimary: boolean;
3808
3808
  email: string;
3809
- createdAt: Date;
3810
- updatedAt: Date;
3811
- deletedAt: Date | null;
3809
+ createdAt: string;
3810
+ updatedAt: string;
3811
+ deletedAt: string | null;
3812
3812
  }>, "many">;
3813
3813
  contactPhones: z.ZodArray<z.ZodObject<{
3814
3814
  id: z.ZodString;
3815
- createdAt: z.ZodDate;
3816
- updatedAt: z.ZodDate;
3817
- deletedAt: z.ZodNullable<z.ZodDate>;
3815
+ createdAt: z.ZodString;
3816
+ updatedAt: z.ZodString;
3817
+ deletedAt: z.ZodNullable<z.ZodString>;
3818
3818
  phone: z.ZodString;
3819
3819
  isPrimary: z.ZodBoolean;
3820
3820
  }, "strip", z.ZodTypeAny, {
3821
3821
  id: string;
3822
3822
  isPrimary: boolean;
3823
- createdAt: Date;
3824
- updatedAt: Date;
3825
- deletedAt: Date | null;
3823
+ createdAt: string;
3824
+ updatedAt: string;
3825
+ deletedAt: string | null;
3826
3826
  phone: string;
3827
3827
  }, {
3828
3828
  id: string;
3829
3829
  isPrimary: boolean;
3830
- createdAt: Date;
3831
- updatedAt: Date;
3832
- deletedAt: Date | null;
3830
+ createdAt: string;
3831
+ updatedAt: string;
3832
+ deletedAt: string | null;
3833
3833
  phone: string;
3834
3834
  }>, "many">;
3835
3835
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
3836
3836
  id: z.ZodString;
3837
- createdAt: z.ZodDate;
3838
- updatedAt: z.ZodDate;
3839
- deletedAt: z.ZodNullable<z.ZodDate>;
3837
+ createdAt: z.ZodString;
3838
+ updatedAt: z.ZodString;
3839
+ deletedAt: z.ZodNullable<z.ZodString>;
3840
3840
  entityId: z.ZodString;
3841
3841
  description: z.ZodString;
3842
3842
  entityType: z.ZodObject<{
3843
3843
  id: z.ZodString;
3844
- createdAt: z.ZodDate;
3845
- updatedAt: z.ZodDate;
3846
- deletedAt: z.ZodNullable<z.ZodDate>;
3844
+ createdAt: z.ZodString;
3845
+ updatedAt: z.ZodString;
3846
+ deletedAt: z.ZodNullable<z.ZodString>;
3847
3847
  entity: z.ZodString;
3848
3848
  description: z.ZodNullable<z.ZodString>;
3849
3849
  }, "strip", z.ZodTypeAny, {
3850
3850
  id: string;
3851
3851
  description: string | null;
3852
- createdAt: Date;
3853
- updatedAt: Date;
3854
- deletedAt: Date | null;
3852
+ createdAt: string;
3853
+ updatedAt: string;
3854
+ deletedAt: string | null;
3855
3855
  entity: string;
3856
3856
  }, {
3857
3857
  id: string;
3858
3858
  description: string | null;
3859
- createdAt: Date;
3860
- updatedAt: Date;
3861
- deletedAt: Date | null;
3859
+ createdAt: string;
3860
+ updatedAt: string;
3861
+ deletedAt: string | null;
3862
3862
  entity: string;
3863
3863
  }>;
3864
3864
  }, "strip", z.ZodTypeAny, {
3865
3865
  id: string;
3866
3866
  description: string;
3867
- createdAt: Date;
3868
- updatedAt: Date;
3869
- deletedAt: Date | null;
3867
+ createdAt: string;
3868
+ updatedAt: string;
3869
+ deletedAt: string | null;
3870
3870
  entityId: string;
3871
3871
  entityType: {
3872
3872
  id: string;
3873
3873
  description: string | null;
3874
- createdAt: Date;
3875
- updatedAt: Date;
3876
- deletedAt: Date | null;
3874
+ createdAt: string;
3875
+ updatedAt: string;
3876
+ deletedAt: string | null;
3877
3877
  entity: string;
3878
3878
  };
3879
3879
  }, {
3880
3880
  id: string;
3881
3881
  description: string;
3882
- createdAt: Date;
3883
- updatedAt: Date;
3884
- deletedAt: Date | null;
3882
+ createdAt: string;
3883
+ updatedAt: string;
3884
+ deletedAt: string | null;
3885
3885
  entityId: string;
3886
3886
  entityType: {
3887
3887
  id: string;
3888
3888
  description: string | null;
3889
- createdAt: Date;
3890
- updatedAt: Date;
3891
- deletedAt: Date | null;
3889
+ createdAt: string;
3890
+ updatedAt: string;
3891
+ deletedAt: string | null;
3892
3892
  entity: string;
3893
3893
  };
3894
3894
  }>, "many">>;
@@ -3897,14 +3897,14 @@ export declare const ContactContractValidationSchema: {
3897
3897
  channel: string | null;
3898
3898
  address: string | null;
3899
3899
  name: string;
3900
- createdAt: Date;
3901
- updatedAt: Date;
3902
- deletedAt: Date | null;
3900
+ createdAt: string;
3901
+ updatedAt: string;
3902
+ deletedAt: string | null;
3903
3903
  customFields: {
3904
3904
  id: string;
3905
- createdAt: Date;
3906
- updatedAt: Date;
3907
- deletedAt: Date | null;
3905
+ createdAt: string;
3906
+ updatedAt: string;
3907
+ deletedAt: string | null;
3908
3908
  attribute: {
3909
3909
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
3910
3910
  id: string;
@@ -3922,7 +3922,7 @@ export declare const ContactContractValidationSchema: {
3922
3922
  textValue: string | null;
3923
3923
  booleanValue: boolean | null;
3924
3924
  numberValue: number | null;
3925
- dateValue: Date | null;
3925
+ dateValue: string | null;
3926
3926
  uploads: {
3927
3927
  id: string;
3928
3928
  createdAt: string;
@@ -3965,31 +3965,31 @@ export declare const ContactContractValidationSchema: {
3965
3965
  id: string;
3966
3966
  isPrimary: boolean;
3967
3967
  email: string;
3968
- createdAt: Date;
3969
- updatedAt: Date;
3970
- deletedAt: Date | null;
3968
+ createdAt: string;
3969
+ updatedAt: string;
3970
+ deletedAt: string | null;
3971
3971
  }[];
3972
3972
  contactPhones: {
3973
3973
  id: string;
3974
3974
  isPrimary: boolean;
3975
- createdAt: Date;
3976
- updatedAt: Date;
3977
- deletedAt: Date | null;
3975
+ createdAt: string;
3976
+ updatedAt: string;
3977
+ deletedAt: string | null;
3978
3978
  phone: string;
3979
3979
  }[];
3980
3980
  activityLogs?: {
3981
3981
  id: string;
3982
3982
  description: string;
3983
- createdAt: Date;
3984
- updatedAt: Date;
3985
- deletedAt: Date | null;
3983
+ createdAt: string;
3984
+ updatedAt: string;
3985
+ deletedAt: string | null;
3986
3986
  entityId: string;
3987
3987
  entityType: {
3988
3988
  id: string;
3989
3989
  description: string | null;
3990
- createdAt: Date;
3991
- updatedAt: Date;
3992
- deletedAt: Date | null;
3990
+ createdAt: string;
3991
+ updatedAt: string;
3992
+ deletedAt: string | null;
3993
3993
  entity: string;
3994
3994
  };
3995
3995
  }[] | undefined;
@@ -3998,14 +3998,14 @@ export declare const ContactContractValidationSchema: {
3998
3998
  channel: string | null;
3999
3999
  address: string | null;
4000
4000
  name: string;
4001
- createdAt: Date;
4002
- updatedAt: Date;
4003
- deletedAt: Date | null;
4001
+ createdAt: string;
4002
+ updatedAt: string;
4003
+ deletedAt: string | null;
4004
4004
  customFields: {
4005
4005
  id: string;
4006
- createdAt: Date;
4007
- updatedAt: Date;
4008
- deletedAt: Date | null;
4006
+ createdAt: string;
4007
+ updatedAt: string;
4008
+ deletedAt: string | null;
4009
4009
  attribute: {
4010
4010
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4011
4011
  id: string;
@@ -4023,7 +4023,7 @@ export declare const ContactContractValidationSchema: {
4023
4023
  textValue: string | null;
4024
4024
  booleanValue: boolean | null;
4025
4025
  numberValue: number | null;
4026
- dateValue: Date | null;
4026
+ dateValue: string | null;
4027
4027
  uploads: {
4028
4028
  id: string;
4029
4029
  createdAt: string;
@@ -4066,31 +4066,31 @@ export declare const ContactContractValidationSchema: {
4066
4066
  id: string;
4067
4067
  isPrimary: boolean;
4068
4068
  email: string;
4069
- createdAt: Date;
4070
- updatedAt: Date;
4071
- deletedAt: Date | null;
4069
+ createdAt: string;
4070
+ updatedAt: string;
4071
+ deletedAt: string | null;
4072
4072
  }[];
4073
4073
  contactPhones: {
4074
4074
  id: string;
4075
4075
  isPrimary: boolean;
4076
- createdAt: Date;
4077
- updatedAt: Date;
4078
- deletedAt: Date | null;
4076
+ createdAt: string;
4077
+ updatedAt: string;
4078
+ deletedAt: string | null;
4079
4079
  phone: string;
4080
4080
  }[];
4081
4081
  activityLogs?: {
4082
4082
  id: string;
4083
4083
  description: string;
4084
- createdAt: Date;
4085
- updatedAt: Date;
4086
- deletedAt: Date | null;
4084
+ createdAt: string;
4085
+ updatedAt: string;
4086
+ deletedAt: string | null;
4087
4087
  entityId: string;
4088
4088
  entityType: {
4089
4089
  id: string;
4090
4090
  description: string | null;
4091
- createdAt: Date;
4092
- updatedAt: Date;
4093
- deletedAt: Date | null;
4091
+ createdAt: string;
4092
+ updatedAt: string;
4093
+ deletedAt: string | null;
4094
4094
  entity: string;
4095
4095
  };
4096
4096
  }[] | undefined;
@@ -4145,9 +4145,9 @@ export declare const ContactContractValidationSchema: {
4145
4145
  }>;
4146
4146
  response: z.ZodObject<{
4147
4147
  id: z.ZodString;
4148
- createdAt: z.ZodDate;
4149
- updatedAt: z.ZodDate;
4150
- deletedAt: z.ZodNullable<z.ZodDate>;
4148
+ createdAt: z.ZodString;
4149
+ updatedAt: z.ZodString;
4150
+ deletedAt: z.ZodNullable<z.ZodString>;
4151
4151
  name: z.ZodString;
4152
4152
  address: z.ZodNullable<z.ZodString>;
4153
4153
  channel: z.ZodNullable<z.ZodString>;
@@ -4190,7 +4190,7 @@ export declare const ContactContractValidationSchema: {
4190
4190
  textValue: z.ZodNullable<z.ZodString>;
4191
4191
  booleanValue: z.ZodNullable<z.ZodBoolean>;
4192
4192
  numberValue: z.ZodNullable<z.ZodNumber>;
4193
- dateValue: z.ZodNullable<z.ZodDate>;
4193
+ dateValue: z.ZodNullable<z.ZodString>;
4194
4194
  attribute: z.ZodObject<Omit<{
4195
4195
  id: z.ZodString;
4196
4196
  createdAt: z.ZodString;
@@ -4294,7 +4294,7 @@ export declare const ContactContractValidationSchema: {
4294
4294
  textValue: string | null;
4295
4295
  booleanValue: boolean | null;
4296
4296
  numberValue: number | null;
4297
- dateValue: Date | null;
4297
+ dateValue: string | null;
4298
4298
  }, {
4299
4299
  id: string;
4300
4300
  createdAt: string;
@@ -4317,7 +4317,7 @@ export declare const ContactContractValidationSchema: {
4317
4317
  textValue: string | null;
4318
4318
  booleanValue: boolean | null;
4319
4319
  numberValue: number | null;
4320
- dateValue: Date | null;
4320
+ dateValue: string | null;
4321
4321
  }>, "many">>;
4322
4322
  }, "customFields">, "strip", z.ZodTypeAny, {
4323
4323
  id: string;
@@ -4340,13 +4340,13 @@ export declare const ContactContractValidationSchema: {
4340
4340
  }>>;
4341
4341
  customFields: z.ZodArray<z.ZodObject<{
4342
4342
  id: z.ZodString;
4343
- createdAt: z.ZodDate;
4344
- updatedAt: z.ZodDate;
4345
- deletedAt: z.ZodNullable<z.ZodDate>;
4343
+ createdAt: z.ZodString;
4344
+ updatedAt: z.ZodString;
4345
+ deletedAt: z.ZodNullable<z.ZodString>;
4346
4346
  textValue: z.ZodNullable<z.ZodString>;
4347
4347
  booleanValue: z.ZodNullable<z.ZodBoolean>;
4348
4348
  numberValue: z.ZodNullable<z.ZodNumber>;
4349
- dateValue: z.ZodNullable<z.ZodDate>;
4349
+ dateValue: z.ZodNullable<z.ZodString>;
4350
4350
  attribute: z.ZodObject<Omit<{
4351
4351
  id: z.ZodString;
4352
4352
  createdAt: z.ZodString;
@@ -4497,9 +4497,9 @@ export declare const ContactContractValidationSchema: {
4497
4497
  }>, "many">;
4498
4498
  }, "strip", z.ZodTypeAny, {
4499
4499
  id: string;
4500
- createdAt: Date;
4501
- updatedAt: Date;
4502
- deletedAt: Date | null;
4500
+ createdAt: string;
4501
+ updatedAt: string;
4502
+ deletedAt: string | null;
4503
4503
  attribute: {
4504
4504
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4505
4505
  id: string;
@@ -4517,7 +4517,7 @@ export declare const ContactContractValidationSchema: {
4517
4517
  textValue: string | null;
4518
4518
  booleanValue: boolean | null;
4519
4519
  numberValue: number | null;
4520
- dateValue: Date | null;
4520
+ dateValue: string | null;
4521
4521
  uploads: {
4522
4522
  id: string;
4523
4523
  createdAt: string;
@@ -4537,9 +4537,9 @@ export declare const ContactContractValidationSchema: {
4537
4537
  }[];
4538
4538
  }, {
4539
4539
  id: string;
4540
- createdAt: Date;
4541
- updatedAt: Date;
4542
- deletedAt: Date | null;
4540
+ createdAt: string;
4541
+ updatedAt: string;
4542
+ deletedAt: string | null;
4543
4543
  attribute: {
4544
4544
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4545
4545
  id: string;
@@ -4557,7 +4557,7 @@ export declare const ContactContractValidationSchema: {
4557
4557
  textValue: string | null;
4558
4558
  booleanValue: boolean | null;
4559
4559
  numberValue: number | null;
4560
- dateValue: Date | null;
4560
+ dateValue: string | null;
4561
4561
  uploads: {
4562
4562
  id: string;
4563
4563
  createdAt: string;
@@ -4578,105 +4578,105 @@ export declare const ContactContractValidationSchema: {
4578
4578
  }>, "many">;
4579
4579
  contactEmails: z.ZodArray<z.ZodObject<{
4580
4580
  id: z.ZodString;
4581
- createdAt: z.ZodDate;
4582
- updatedAt: z.ZodDate;
4583
- deletedAt: z.ZodNullable<z.ZodDate>;
4581
+ createdAt: z.ZodString;
4582
+ updatedAt: z.ZodString;
4583
+ deletedAt: z.ZodNullable<z.ZodString>;
4584
4584
  email: z.ZodString;
4585
4585
  isPrimary: z.ZodBoolean;
4586
4586
  }, "strip", z.ZodTypeAny, {
4587
4587
  id: string;
4588
4588
  isPrimary: boolean;
4589
4589
  email: string;
4590
- createdAt: Date;
4591
- updatedAt: Date;
4592
- deletedAt: Date | null;
4590
+ createdAt: string;
4591
+ updatedAt: string;
4592
+ deletedAt: string | null;
4593
4593
  }, {
4594
4594
  id: string;
4595
4595
  isPrimary: boolean;
4596
4596
  email: string;
4597
- createdAt: Date;
4598
- updatedAt: Date;
4599
- deletedAt: Date | null;
4597
+ createdAt: string;
4598
+ updatedAt: string;
4599
+ deletedAt: string | null;
4600
4600
  }>, "many">;
4601
4601
  contactPhones: z.ZodArray<z.ZodObject<{
4602
4602
  id: z.ZodString;
4603
- createdAt: z.ZodDate;
4604
- updatedAt: z.ZodDate;
4605
- deletedAt: z.ZodNullable<z.ZodDate>;
4603
+ createdAt: z.ZodString;
4604
+ updatedAt: z.ZodString;
4605
+ deletedAt: z.ZodNullable<z.ZodString>;
4606
4606
  phone: z.ZodString;
4607
4607
  isPrimary: z.ZodBoolean;
4608
4608
  }, "strip", z.ZodTypeAny, {
4609
4609
  id: string;
4610
4610
  isPrimary: boolean;
4611
- createdAt: Date;
4612
- updatedAt: Date;
4613
- deletedAt: Date | null;
4611
+ createdAt: string;
4612
+ updatedAt: string;
4613
+ deletedAt: string | null;
4614
4614
  phone: string;
4615
4615
  }, {
4616
4616
  id: string;
4617
4617
  isPrimary: boolean;
4618
- createdAt: Date;
4619
- updatedAt: Date;
4620
- deletedAt: Date | null;
4618
+ createdAt: string;
4619
+ updatedAt: string;
4620
+ deletedAt: string | null;
4621
4621
  phone: string;
4622
4622
  }>, "many">;
4623
4623
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
4624
4624
  id: z.ZodString;
4625
- createdAt: z.ZodDate;
4626
- updatedAt: z.ZodDate;
4627
- deletedAt: z.ZodNullable<z.ZodDate>;
4625
+ createdAt: z.ZodString;
4626
+ updatedAt: z.ZodString;
4627
+ deletedAt: z.ZodNullable<z.ZodString>;
4628
4628
  entityId: z.ZodString;
4629
4629
  description: z.ZodString;
4630
4630
  entityType: z.ZodObject<{
4631
4631
  id: z.ZodString;
4632
- createdAt: z.ZodDate;
4633
- updatedAt: z.ZodDate;
4634
- deletedAt: z.ZodNullable<z.ZodDate>;
4632
+ createdAt: z.ZodString;
4633
+ updatedAt: z.ZodString;
4634
+ deletedAt: z.ZodNullable<z.ZodString>;
4635
4635
  entity: z.ZodString;
4636
4636
  description: z.ZodNullable<z.ZodString>;
4637
4637
  }, "strip", z.ZodTypeAny, {
4638
4638
  id: string;
4639
4639
  description: string | null;
4640
- createdAt: Date;
4641
- updatedAt: Date;
4642
- deletedAt: Date | null;
4640
+ createdAt: string;
4641
+ updatedAt: string;
4642
+ deletedAt: string | null;
4643
4643
  entity: string;
4644
4644
  }, {
4645
4645
  id: string;
4646
4646
  description: string | null;
4647
- createdAt: Date;
4648
- updatedAt: Date;
4649
- deletedAt: Date | null;
4647
+ createdAt: string;
4648
+ updatedAt: string;
4649
+ deletedAt: string | null;
4650
4650
  entity: string;
4651
4651
  }>;
4652
4652
  }, "strip", z.ZodTypeAny, {
4653
4653
  id: string;
4654
4654
  description: string;
4655
- createdAt: Date;
4656
- updatedAt: Date;
4657
- deletedAt: Date | null;
4655
+ createdAt: string;
4656
+ updatedAt: string;
4657
+ deletedAt: string | null;
4658
4658
  entityId: string;
4659
4659
  entityType: {
4660
4660
  id: string;
4661
4661
  description: string | null;
4662
- createdAt: Date;
4663
- updatedAt: Date;
4664
- deletedAt: Date | null;
4662
+ createdAt: string;
4663
+ updatedAt: string;
4664
+ deletedAt: string | null;
4665
4665
  entity: string;
4666
4666
  };
4667
4667
  }, {
4668
4668
  id: string;
4669
4669
  description: string;
4670
- createdAt: Date;
4671
- updatedAt: Date;
4672
- deletedAt: Date | null;
4670
+ createdAt: string;
4671
+ updatedAt: string;
4672
+ deletedAt: string | null;
4673
4673
  entityId: string;
4674
4674
  entityType: {
4675
4675
  id: string;
4676
4676
  description: string | null;
4677
- createdAt: Date;
4678
- updatedAt: Date;
4679
- deletedAt: Date | null;
4677
+ createdAt: string;
4678
+ updatedAt: string;
4679
+ deletedAt: string | null;
4680
4680
  entity: string;
4681
4681
  };
4682
4682
  }>, "many">>;
@@ -4685,14 +4685,14 @@ export declare const ContactContractValidationSchema: {
4685
4685
  channel: string | null;
4686
4686
  address: string | null;
4687
4687
  name: string;
4688
- createdAt: Date;
4689
- updatedAt: Date;
4690
- deletedAt: Date | null;
4688
+ createdAt: string;
4689
+ updatedAt: string;
4690
+ deletedAt: string | null;
4691
4691
  customFields: {
4692
4692
  id: string;
4693
- createdAt: Date;
4694
- updatedAt: Date;
4695
- deletedAt: Date | null;
4693
+ createdAt: string;
4694
+ updatedAt: string;
4695
+ deletedAt: string | null;
4696
4696
  attribute: {
4697
4697
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4698
4698
  id: string;
@@ -4710,7 +4710,7 @@ export declare const ContactContractValidationSchema: {
4710
4710
  textValue: string | null;
4711
4711
  booleanValue: boolean | null;
4712
4712
  numberValue: number | null;
4713
- dateValue: Date | null;
4713
+ dateValue: string | null;
4714
4714
  uploads: {
4715
4715
  id: string;
4716
4716
  createdAt: string;
@@ -4753,31 +4753,31 @@ export declare const ContactContractValidationSchema: {
4753
4753
  id: string;
4754
4754
  isPrimary: boolean;
4755
4755
  email: string;
4756
- createdAt: Date;
4757
- updatedAt: Date;
4758
- deletedAt: Date | null;
4756
+ createdAt: string;
4757
+ updatedAt: string;
4758
+ deletedAt: string | null;
4759
4759
  }[];
4760
4760
  contactPhones: {
4761
4761
  id: string;
4762
4762
  isPrimary: boolean;
4763
- createdAt: Date;
4764
- updatedAt: Date;
4765
- deletedAt: Date | null;
4763
+ createdAt: string;
4764
+ updatedAt: string;
4765
+ deletedAt: string | null;
4766
4766
  phone: string;
4767
4767
  }[];
4768
4768
  activityLogs?: {
4769
4769
  id: string;
4770
4770
  description: string;
4771
- createdAt: Date;
4772
- updatedAt: Date;
4773
- deletedAt: Date | null;
4771
+ createdAt: string;
4772
+ updatedAt: string;
4773
+ deletedAt: string | null;
4774
4774
  entityId: string;
4775
4775
  entityType: {
4776
4776
  id: string;
4777
4777
  description: string | null;
4778
- createdAt: Date;
4779
- updatedAt: Date;
4780
- deletedAt: Date | null;
4778
+ createdAt: string;
4779
+ updatedAt: string;
4780
+ deletedAt: string | null;
4781
4781
  entity: string;
4782
4782
  };
4783
4783
  }[] | undefined;
@@ -4786,14 +4786,14 @@ export declare const ContactContractValidationSchema: {
4786
4786
  channel: string | null;
4787
4787
  address: string | null;
4788
4788
  name: string;
4789
- createdAt: Date;
4790
- updatedAt: Date;
4791
- deletedAt: Date | null;
4789
+ createdAt: string;
4790
+ updatedAt: string;
4791
+ deletedAt: string | null;
4792
4792
  customFields: {
4793
4793
  id: string;
4794
- createdAt: Date;
4795
- updatedAt: Date;
4796
- deletedAt: Date | null;
4794
+ createdAt: string;
4795
+ updatedAt: string;
4796
+ deletedAt: string | null;
4797
4797
  attribute: {
4798
4798
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
4799
4799
  id: string;
@@ -4811,7 +4811,7 @@ export declare const ContactContractValidationSchema: {
4811
4811
  textValue: string | null;
4812
4812
  booleanValue: boolean | null;
4813
4813
  numberValue: number | null;
4814
- dateValue: Date | null;
4814
+ dateValue: string | null;
4815
4815
  uploads: {
4816
4816
  id: string;
4817
4817
  createdAt: string;
@@ -4854,31 +4854,31 @@ export declare const ContactContractValidationSchema: {
4854
4854
  id: string;
4855
4855
  isPrimary: boolean;
4856
4856
  email: string;
4857
- createdAt: Date;
4858
- updatedAt: Date;
4859
- deletedAt: Date | null;
4857
+ createdAt: string;
4858
+ updatedAt: string;
4859
+ deletedAt: string | null;
4860
4860
  }[];
4861
4861
  contactPhones: {
4862
4862
  id: string;
4863
4863
  isPrimary: boolean;
4864
- createdAt: Date;
4865
- updatedAt: Date;
4866
- deletedAt: Date | null;
4864
+ createdAt: string;
4865
+ updatedAt: string;
4866
+ deletedAt: string | null;
4867
4867
  phone: string;
4868
4868
  }[];
4869
4869
  activityLogs?: {
4870
4870
  id: string;
4871
4871
  description: string;
4872
- createdAt: Date;
4873
- updatedAt: Date;
4874
- deletedAt: Date | null;
4872
+ createdAt: string;
4873
+ updatedAt: string;
4874
+ deletedAt: string | null;
4875
4875
  entityId: string;
4876
4876
  entityType: {
4877
4877
  id: string;
4878
4878
  description: string | null;
4879
- createdAt: Date;
4880
- updatedAt: Date;
4881
- deletedAt: Date | null;
4879
+ createdAt: string;
4880
+ updatedAt: string;
4881
+ deletedAt: string | null;
4882
4882
  entity: string;
4883
4883
  };
4884
4884
  }[] | undefined;
@@ -4931,9 +4931,9 @@ export declare const ContactContractValidationSchema: {
4931
4931
  lastPage: z.ZodNumber;
4932
4932
  data: z.ZodArray<z.ZodObject<{
4933
4933
  id: z.ZodString;
4934
- createdAt: z.ZodDate;
4935
- updatedAt: z.ZodDate;
4936
- deletedAt: z.ZodNullable<z.ZodDate>;
4934
+ createdAt: z.ZodString;
4935
+ updatedAt: z.ZodString;
4936
+ deletedAt: z.ZodNullable<z.ZodString>;
4937
4937
  name: z.ZodString;
4938
4938
  address: z.ZodNullable<z.ZodString>;
4939
4939
  channel: z.ZodNullable<z.ZodString>;
@@ -4976,7 +4976,7 @@ export declare const ContactContractValidationSchema: {
4976
4976
  textValue: z.ZodNullable<z.ZodString>;
4977
4977
  booleanValue: z.ZodNullable<z.ZodBoolean>;
4978
4978
  numberValue: z.ZodNullable<z.ZodNumber>;
4979
- dateValue: z.ZodNullable<z.ZodDate>;
4979
+ dateValue: z.ZodNullable<z.ZodString>;
4980
4980
  attribute: z.ZodObject<Omit<{
4981
4981
  id: z.ZodString;
4982
4982
  createdAt: z.ZodString;
@@ -5080,7 +5080,7 @@ export declare const ContactContractValidationSchema: {
5080
5080
  textValue: string | null;
5081
5081
  booleanValue: boolean | null;
5082
5082
  numberValue: number | null;
5083
- dateValue: Date | null;
5083
+ dateValue: string | null;
5084
5084
  }, {
5085
5085
  id: string;
5086
5086
  createdAt: string;
@@ -5103,7 +5103,7 @@ export declare const ContactContractValidationSchema: {
5103
5103
  textValue: string | null;
5104
5104
  booleanValue: boolean | null;
5105
5105
  numberValue: number | null;
5106
- dateValue: Date | null;
5106
+ dateValue: string | null;
5107
5107
  }>, "many">>;
5108
5108
  }, "customFields">, "strip", z.ZodTypeAny, {
5109
5109
  id: string;
@@ -5126,13 +5126,13 @@ export declare const ContactContractValidationSchema: {
5126
5126
  }>>;
5127
5127
  customFields: z.ZodArray<z.ZodObject<{
5128
5128
  id: z.ZodString;
5129
- createdAt: z.ZodDate;
5130
- updatedAt: z.ZodDate;
5131
- deletedAt: z.ZodNullable<z.ZodDate>;
5129
+ createdAt: z.ZodString;
5130
+ updatedAt: z.ZodString;
5131
+ deletedAt: z.ZodNullable<z.ZodString>;
5132
5132
  textValue: z.ZodNullable<z.ZodString>;
5133
5133
  booleanValue: z.ZodNullable<z.ZodBoolean>;
5134
5134
  numberValue: z.ZodNullable<z.ZodNumber>;
5135
- dateValue: z.ZodNullable<z.ZodDate>;
5135
+ dateValue: z.ZodNullable<z.ZodString>;
5136
5136
  attribute: z.ZodObject<Omit<{
5137
5137
  id: z.ZodString;
5138
5138
  createdAt: z.ZodString;
@@ -5283,9 +5283,9 @@ export declare const ContactContractValidationSchema: {
5283
5283
  }>, "many">;
5284
5284
  }, "strip", z.ZodTypeAny, {
5285
5285
  id: string;
5286
- createdAt: Date;
5287
- updatedAt: Date;
5288
- deletedAt: Date | null;
5286
+ createdAt: string;
5287
+ updatedAt: string;
5288
+ deletedAt: string | null;
5289
5289
  attribute: {
5290
5290
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
5291
5291
  id: string;
@@ -5303,7 +5303,7 @@ export declare const ContactContractValidationSchema: {
5303
5303
  textValue: string | null;
5304
5304
  booleanValue: boolean | null;
5305
5305
  numberValue: number | null;
5306
- dateValue: Date | null;
5306
+ dateValue: string | null;
5307
5307
  uploads: {
5308
5308
  id: string;
5309
5309
  createdAt: string;
@@ -5323,9 +5323,9 @@ export declare const ContactContractValidationSchema: {
5323
5323
  }[];
5324
5324
  }, {
5325
5325
  id: string;
5326
- createdAt: Date;
5327
- updatedAt: Date;
5328
- deletedAt: Date | null;
5326
+ createdAt: string;
5327
+ updatedAt: string;
5328
+ deletedAt: string | null;
5329
5329
  attribute: {
5330
5330
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
5331
5331
  id: string;
@@ -5343,7 +5343,7 @@ export declare const ContactContractValidationSchema: {
5343
5343
  textValue: string | null;
5344
5344
  booleanValue: boolean | null;
5345
5345
  numberValue: number | null;
5346
- dateValue: Date | null;
5346
+ dateValue: string | null;
5347
5347
  uploads: {
5348
5348
  id: string;
5349
5349
  createdAt: string;
@@ -5364,105 +5364,105 @@ export declare const ContactContractValidationSchema: {
5364
5364
  }>, "many">;
5365
5365
  contactEmails: z.ZodArray<z.ZodObject<{
5366
5366
  id: z.ZodString;
5367
- createdAt: z.ZodDate;
5368
- updatedAt: z.ZodDate;
5369
- deletedAt: z.ZodNullable<z.ZodDate>;
5367
+ createdAt: z.ZodString;
5368
+ updatedAt: z.ZodString;
5369
+ deletedAt: z.ZodNullable<z.ZodString>;
5370
5370
  email: z.ZodString;
5371
5371
  isPrimary: z.ZodBoolean;
5372
5372
  }, "strip", z.ZodTypeAny, {
5373
5373
  id: string;
5374
5374
  isPrimary: boolean;
5375
5375
  email: string;
5376
- createdAt: Date;
5377
- updatedAt: Date;
5378
- deletedAt: Date | null;
5376
+ createdAt: string;
5377
+ updatedAt: string;
5378
+ deletedAt: string | null;
5379
5379
  }, {
5380
5380
  id: string;
5381
5381
  isPrimary: boolean;
5382
5382
  email: string;
5383
- createdAt: Date;
5384
- updatedAt: Date;
5385
- deletedAt: Date | null;
5383
+ createdAt: string;
5384
+ updatedAt: string;
5385
+ deletedAt: string | null;
5386
5386
  }>, "many">;
5387
5387
  contactPhones: z.ZodArray<z.ZodObject<{
5388
5388
  id: z.ZodString;
5389
- createdAt: z.ZodDate;
5390
- updatedAt: z.ZodDate;
5391
- deletedAt: z.ZodNullable<z.ZodDate>;
5389
+ createdAt: z.ZodString;
5390
+ updatedAt: z.ZodString;
5391
+ deletedAt: z.ZodNullable<z.ZodString>;
5392
5392
  phone: z.ZodString;
5393
5393
  isPrimary: z.ZodBoolean;
5394
5394
  }, "strip", z.ZodTypeAny, {
5395
5395
  id: string;
5396
5396
  isPrimary: boolean;
5397
- createdAt: Date;
5398
- updatedAt: Date;
5399
- deletedAt: Date | null;
5397
+ createdAt: string;
5398
+ updatedAt: string;
5399
+ deletedAt: string | null;
5400
5400
  phone: string;
5401
5401
  }, {
5402
5402
  id: string;
5403
5403
  isPrimary: boolean;
5404
- createdAt: Date;
5405
- updatedAt: Date;
5406
- deletedAt: Date | null;
5404
+ createdAt: string;
5405
+ updatedAt: string;
5406
+ deletedAt: string | null;
5407
5407
  phone: string;
5408
5408
  }>, "many">;
5409
5409
  activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
5410
5410
  id: z.ZodString;
5411
- createdAt: z.ZodDate;
5412
- updatedAt: z.ZodDate;
5413
- deletedAt: z.ZodNullable<z.ZodDate>;
5411
+ createdAt: z.ZodString;
5412
+ updatedAt: z.ZodString;
5413
+ deletedAt: z.ZodNullable<z.ZodString>;
5414
5414
  entityId: z.ZodString;
5415
5415
  description: z.ZodString;
5416
5416
  entityType: z.ZodObject<{
5417
5417
  id: z.ZodString;
5418
- createdAt: z.ZodDate;
5419
- updatedAt: z.ZodDate;
5420
- deletedAt: z.ZodNullable<z.ZodDate>;
5418
+ createdAt: z.ZodString;
5419
+ updatedAt: z.ZodString;
5420
+ deletedAt: z.ZodNullable<z.ZodString>;
5421
5421
  entity: z.ZodString;
5422
5422
  description: z.ZodNullable<z.ZodString>;
5423
5423
  }, "strip", z.ZodTypeAny, {
5424
5424
  id: string;
5425
5425
  description: string | null;
5426
- createdAt: Date;
5427
- updatedAt: Date;
5428
- deletedAt: Date | null;
5426
+ createdAt: string;
5427
+ updatedAt: string;
5428
+ deletedAt: string | null;
5429
5429
  entity: string;
5430
5430
  }, {
5431
5431
  id: string;
5432
5432
  description: string | null;
5433
- createdAt: Date;
5434
- updatedAt: Date;
5435
- deletedAt: Date | null;
5433
+ createdAt: string;
5434
+ updatedAt: string;
5435
+ deletedAt: string | null;
5436
5436
  entity: string;
5437
5437
  }>;
5438
5438
  }, "strip", z.ZodTypeAny, {
5439
5439
  id: string;
5440
5440
  description: string;
5441
- createdAt: Date;
5442
- updatedAt: Date;
5443
- deletedAt: Date | null;
5441
+ createdAt: string;
5442
+ updatedAt: string;
5443
+ deletedAt: string | null;
5444
5444
  entityId: string;
5445
5445
  entityType: {
5446
5446
  id: string;
5447
5447
  description: string | null;
5448
- createdAt: Date;
5449
- updatedAt: Date;
5450
- deletedAt: Date | null;
5448
+ createdAt: string;
5449
+ updatedAt: string;
5450
+ deletedAt: string | null;
5451
5451
  entity: string;
5452
5452
  };
5453
5453
  }, {
5454
5454
  id: string;
5455
5455
  description: string;
5456
- createdAt: Date;
5457
- updatedAt: Date;
5458
- deletedAt: Date | null;
5456
+ createdAt: string;
5457
+ updatedAt: string;
5458
+ deletedAt: string | null;
5459
5459
  entityId: string;
5460
5460
  entityType: {
5461
5461
  id: string;
5462
5462
  description: string | null;
5463
- createdAt: Date;
5464
- updatedAt: Date;
5465
- deletedAt: Date | null;
5463
+ createdAt: string;
5464
+ updatedAt: string;
5465
+ deletedAt: string | null;
5466
5466
  entity: string;
5467
5467
  };
5468
5468
  }>, "many">>;
@@ -5471,14 +5471,14 @@ export declare const ContactContractValidationSchema: {
5471
5471
  channel: string | null;
5472
5472
  address: string | null;
5473
5473
  name: string;
5474
- createdAt: Date;
5475
- updatedAt: Date;
5476
- deletedAt: Date | null;
5474
+ createdAt: string;
5475
+ updatedAt: string;
5476
+ deletedAt: string | null;
5477
5477
  customFields: {
5478
5478
  id: string;
5479
- createdAt: Date;
5480
- updatedAt: Date;
5481
- deletedAt: Date | null;
5479
+ createdAt: string;
5480
+ updatedAt: string;
5481
+ deletedAt: string | null;
5482
5482
  attribute: {
5483
5483
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
5484
5484
  id: string;
@@ -5496,7 +5496,7 @@ export declare const ContactContractValidationSchema: {
5496
5496
  textValue: string | null;
5497
5497
  booleanValue: boolean | null;
5498
5498
  numberValue: number | null;
5499
- dateValue: Date | null;
5499
+ dateValue: string | null;
5500
5500
  uploads: {
5501
5501
  id: string;
5502
5502
  createdAt: string;
@@ -5539,31 +5539,31 @@ export declare const ContactContractValidationSchema: {
5539
5539
  id: string;
5540
5540
  isPrimary: boolean;
5541
5541
  email: string;
5542
- createdAt: Date;
5543
- updatedAt: Date;
5544
- deletedAt: Date | null;
5542
+ createdAt: string;
5543
+ updatedAt: string;
5544
+ deletedAt: string | null;
5545
5545
  }[];
5546
5546
  contactPhones: {
5547
5547
  id: string;
5548
5548
  isPrimary: boolean;
5549
- createdAt: Date;
5550
- updatedAt: Date;
5551
- deletedAt: Date | null;
5549
+ createdAt: string;
5550
+ updatedAt: string;
5551
+ deletedAt: string | null;
5552
5552
  phone: string;
5553
5553
  }[];
5554
5554
  activityLogs?: {
5555
5555
  id: string;
5556
5556
  description: string;
5557
- createdAt: Date;
5558
- updatedAt: Date;
5559
- deletedAt: Date | null;
5557
+ createdAt: string;
5558
+ updatedAt: string;
5559
+ deletedAt: string | null;
5560
5560
  entityId: string;
5561
5561
  entityType: {
5562
5562
  id: string;
5563
5563
  description: string | null;
5564
- createdAt: Date;
5565
- updatedAt: Date;
5566
- deletedAt: Date | null;
5564
+ createdAt: string;
5565
+ updatedAt: string;
5566
+ deletedAt: string | null;
5567
5567
  entity: string;
5568
5568
  };
5569
5569
  }[] | undefined;
@@ -5572,14 +5572,14 @@ export declare const ContactContractValidationSchema: {
5572
5572
  channel: string | null;
5573
5573
  address: string | null;
5574
5574
  name: string;
5575
- createdAt: Date;
5576
- updatedAt: Date;
5577
- deletedAt: Date | null;
5575
+ createdAt: string;
5576
+ updatedAt: string;
5577
+ deletedAt: string | null;
5578
5578
  customFields: {
5579
5579
  id: string;
5580
- createdAt: Date;
5581
- updatedAt: Date;
5582
- deletedAt: Date | null;
5580
+ createdAt: string;
5581
+ updatedAt: string;
5582
+ deletedAt: string | null;
5583
5583
  attribute: {
5584
5584
  type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
5585
5585
  id: string;
@@ -5597,7 +5597,7 @@ export declare const ContactContractValidationSchema: {
5597
5597
  textValue: string | null;
5598
5598
  booleanValue: boolean | null;
5599
5599
  numberValue: number | null;
5600
- dateValue: Date | null;
5600
+ dateValue: string | null;
5601
5601
  uploads: {
5602
5602
  id: string;
5603
5603
  createdAt: string;
@@ -5640,31 +5640,31 @@ export declare const ContactContractValidationSchema: {
5640
5640
  id: string;
5641
5641
  isPrimary: boolean;
5642
5642
  email: string;
5643
- createdAt: Date;
5644
- updatedAt: Date;
5645
- deletedAt: Date | null;
5643
+ createdAt: string;
5644
+ updatedAt: string;
5645
+ deletedAt: string | null;
5646
5646
  }[];
5647
5647
  contactPhones: {
5648
5648
  id: string;
5649
5649
  isPrimary: boolean;
5650
- createdAt: Date;
5651
- updatedAt: Date;
5652
- deletedAt: Date | null;
5650
+ createdAt: string;
5651
+ updatedAt: string;
5652
+ deletedAt: string | null;
5653
5653
  phone: string;
5654
5654
  }[];
5655
5655
  activityLogs?: {
5656
5656
  id: string;
5657
5657
  description: string;
5658
- createdAt: Date;
5659
- updatedAt: Date;
5660
- deletedAt: Date | null;
5658
+ createdAt: string;
5659
+ updatedAt: string;
5660
+ deletedAt: string | null;
5661
5661
  entityId: string;
5662
5662
  entityType: {
5663
5663
  id: string;
5664
5664
  description: string | null;
5665
- createdAt: Date;
5666
- updatedAt: Date;
5667
- deletedAt: Date | null;
5665
+ createdAt: string;
5666
+ updatedAt: string;
5667
+ deletedAt: string | null;
5668
5668
  entity: string;
5669
5669
  };
5670
5670
  }[] | undefined;
@@ -5715,7 +5715,7 @@ export declare const ContactContractValidationSchema: {
5715
5715
  textValue: z.ZodNullable<z.ZodString>;
5716
5716
  booleanValue: z.ZodNullable<z.ZodBoolean>;
5717
5717
  numberValue: z.ZodNullable<z.ZodNumber>;
5718
- dateValue: z.ZodNullable<z.ZodDate>;
5718
+ dateValue: z.ZodNullable<z.ZodString>;
5719
5719
  entityId: z.ZodString;
5720
5720
  attributeId: z.ZodString;
5721
5721
  }, "strip", z.ZodTypeAny, {
@@ -5727,7 +5727,7 @@ export declare const ContactContractValidationSchema: {
5727
5727
  textValue: string | null;
5728
5728
  booleanValue: boolean | null;
5729
5729
  numberValue: number | null;
5730
- dateValue: Date | null;
5730
+ dateValue: string | null;
5731
5731
  entityId: string;
5732
5732
  }, {
5733
5733
  id: string;
@@ -5738,7 +5738,7 @@ export declare const ContactContractValidationSchema: {
5738
5738
  textValue: string | null;
5739
5739
  booleanValue: boolean | null;
5740
5740
  numberValue: number | null;
5741
- dateValue: Date | null;
5741
+ dateValue: string | null;
5742
5742
  entityId: string;
5743
5743
  }>;
5744
5744
  };