@kl1/contracts 1.0.27 → 1.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +151 -118
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +151 -118
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +113 -113
- package/dist/src/activity-log/schema.d.ts +122 -122
- package/dist/src/auth/index.d.ts +89 -89
- package/dist/src/channel/index.d.ts +319 -319
- package/dist/src/channel/schema.d.ts +89 -92
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +89 -89
- package/dist/src/chat/index.d.ts +8699 -8699
- package/dist/src/chat/schema.d.ts +1486 -1486
- package/dist/src/chat/validation.d.ts +2244 -2244
- package/dist/src/comment/index.d.ts +1005 -1005
- package/dist/src/comment/schema.d.ts +283 -283
- package/dist/src/company/index.d.ts +28 -28
- package/dist/src/company/schema.d.ts +8 -8
- package/dist/src/company/validation.d.ts +15 -15
- package/dist/src/contact/index.d.ts +960 -960
- package/dist/src/contact/schema.d.ts +161 -161
- package/dist/src/contact/validation.d.ts +690 -690
- package/dist/src/contract.d.ts +18366 -18196
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field/schema.d.ts +3 -3
- package/dist/src/cx-log/index.d.ts +1023 -1023
- package/dist/src/cx-log/schema.d.ts +837 -837
- package/dist/src/dashboard/index.d.ts +6 -6
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +2 -2
- package/dist/src/dashboard/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +115 -115
- package/dist/src/extension/schema.d.ts +9 -9
- package/dist/src/mail/account-contract.d.ts +168 -168
- package/dist/src/mail/mail-contract.d.ts +3336 -3336
- package/dist/src/mail/message-contract.d.ts +152 -152
- package/dist/src/mail/room-contract.d.ts +3015 -3015
- package/dist/src/mail/schemas/account-validation.schema.d.ts +168 -168
- package/dist/src/mail/schemas/account.schema.d.ts +33 -33
- package/dist/src/mail/schemas/message.schema.d.ts +108 -108
- package/dist/src/mail/schemas/room-validation.schema.d.ts +1000 -1000
- package/dist/src/mail/schemas/room.schema.d.ts +791 -791
- package/dist/src/messenger/index.d.ts +1078 -1078
- package/dist/src/permission/index.d.ts +15 -15
- package/dist/src/permission/schema.d.ts +9 -9
- package/dist/src/role/index.d.ts +96 -96
- package/dist/src/role/schema.d.ts +24 -24
- package/dist/src/telephony-agent-presence-status/index.d.ts +293 -293
- package/dist/src/telephony-agent-presence-status/schema.d.ts +89 -89
- package/dist/src/ticket/index.d.ts +288 -187
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +77 -77
- package/dist/src/ticket/validation.d.ts +66 -0
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +293 -293
- package/dist/src/user/schema.d.ts +63 -63
- package/dist/src/user-presence-status-log/index.d.ts +52 -52
- package/dist/src/user-presence-status-log/schema.d.ts +89 -89
- package/dist/src/widget/index.d.ts +72 -1
- package/dist/src/widget/index.d.ts.map +1 -1
- package/dist/src/widget/validation.d.ts +10 -0
- package/dist/src/widget/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -378,9 +378,9 @@ export declare const contactContract: {
|
|
378
378
|
requestId: z.ZodString;
|
379
379
|
data: z.ZodObject<{
|
380
380
|
id: z.ZodString;
|
381
|
-
createdAt: z.
|
382
|
-
updatedAt: z.
|
383
|
-
deletedAt: z.ZodNullable<z.
|
381
|
+
createdAt: z.ZodString;
|
382
|
+
updatedAt: z.ZodString;
|
383
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
384
384
|
name: z.ZodString;
|
385
385
|
address: z.ZodNullable<z.ZodString>;
|
386
386
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -423,7 +423,7 @@ export declare const contactContract: {
|
|
423
423
|
textValue: z.ZodNullable<z.ZodString>;
|
424
424
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
425
425
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
426
|
-
dateValue: z.ZodNullable<z.
|
426
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
427
427
|
attribute: z.ZodObject<Omit<{
|
428
428
|
id: z.ZodString;
|
429
429
|
createdAt: z.ZodString;
|
@@ -527,7 +527,7 @@ export declare const contactContract: {
|
|
527
527
|
textValue: string | null;
|
528
528
|
booleanValue: boolean | null;
|
529
529
|
numberValue: number | null;
|
530
|
-
dateValue:
|
530
|
+
dateValue: string | null;
|
531
531
|
}, {
|
532
532
|
id: string;
|
533
533
|
createdAt: string;
|
@@ -550,7 +550,7 @@ export declare const contactContract: {
|
|
550
550
|
textValue: string | null;
|
551
551
|
booleanValue: boolean | null;
|
552
552
|
numberValue: number | null;
|
553
|
-
dateValue:
|
553
|
+
dateValue: string | null;
|
554
554
|
}>, "many">>;
|
555
555
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
556
556
|
id: string;
|
@@ -573,13 +573,13 @@ export declare const contactContract: {
|
|
573
573
|
}>>;
|
574
574
|
customFields: z.ZodArray<z.ZodObject<{
|
575
575
|
id: z.ZodString;
|
576
|
-
createdAt: z.
|
577
|
-
updatedAt: z.
|
578
|
-
deletedAt: z.ZodNullable<z.
|
576
|
+
createdAt: z.ZodString;
|
577
|
+
updatedAt: z.ZodString;
|
578
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
579
579
|
textValue: z.ZodNullable<z.ZodString>;
|
580
580
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
581
581
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
582
|
-
dateValue: z.ZodNullable<z.
|
582
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
583
583
|
attribute: z.ZodObject<Omit<{
|
584
584
|
id: z.ZodString;
|
585
585
|
createdAt: z.ZodString;
|
@@ -730,9 +730,9 @@ export declare const contactContract: {
|
|
730
730
|
}>, "many">;
|
731
731
|
}, "strip", z.ZodTypeAny, {
|
732
732
|
id: string;
|
733
|
-
createdAt:
|
734
|
-
updatedAt:
|
735
|
-
deletedAt:
|
733
|
+
createdAt: string;
|
734
|
+
updatedAt: string;
|
735
|
+
deletedAt: string | null;
|
736
736
|
attribute: {
|
737
737
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
738
738
|
id: string;
|
@@ -750,7 +750,7 @@ export declare const contactContract: {
|
|
750
750
|
textValue: string | null;
|
751
751
|
booleanValue: boolean | null;
|
752
752
|
numberValue: number | null;
|
753
|
-
dateValue:
|
753
|
+
dateValue: string | null;
|
754
754
|
uploads: {
|
755
755
|
id: string;
|
756
756
|
createdAt: string;
|
@@ -770,9 +770,9 @@ export declare const contactContract: {
|
|
770
770
|
}[];
|
771
771
|
}, {
|
772
772
|
id: string;
|
773
|
-
createdAt:
|
774
|
-
updatedAt:
|
775
|
-
deletedAt:
|
773
|
+
createdAt: string;
|
774
|
+
updatedAt: string;
|
775
|
+
deletedAt: string | null;
|
776
776
|
attribute: {
|
777
777
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
778
778
|
id: string;
|
@@ -790,7 +790,7 @@ export declare const contactContract: {
|
|
790
790
|
textValue: string | null;
|
791
791
|
booleanValue: boolean | null;
|
792
792
|
numberValue: number | null;
|
793
|
-
dateValue:
|
793
|
+
dateValue: string | null;
|
794
794
|
uploads: {
|
795
795
|
id: string;
|
796
796
|
createdAt: string;
|
@@ -811,105 +811,105 @@ export declare const contactContract: {
|
|
811
811
|
}>, "many">;
|
812
812
|
contactEmails: z.ZodArray<z.ZodObject<{
|
813
813
|
id: z.ZodString;
|
814
|
-
createdAt: z.
|
815
|
-
updatedAt: z.
|
816
|
-
deletedAt: z.ZodNullable<z.
|
814
|
+
createdAt: z.ZodString;
|
815
|
+
updatedAt: z.ZodString;
|
816
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
817
817
|
email: z.ZodString;
|
818
818
|
isPrimary: z.ZodBoolean;
|
819
819
|
}, "strip", z.ZodTypeAny, {
|
820
820
|
id: string;
|
821
821
|
isPrimary: boolean;
|
822
822
|
email: string;
|
823
|
-
createdAt:
|
824
|
-
updatedAt:
|
825
|
-
deletedAt:
|
823
|
+
createdAt: string;
|
824
|
+
updatedAt: string;
|
825
|
+
deletedAt: string | null;
|
826
826
|
}, {
|
827
827
|
id: string;
|
828
828
|
isPrimary: boolean;
|
829
829
|
email: string;
|
830
|
-
createdAt:
|
831
|
-
updatedAt:
|
832
|
-
deletedAt:
|
830
|
+
createdAt: string;
|
831
|
+
updatedAt: string;
|
832
|
+
deletedAt: string | null;
|
833
833
|
}>, "many">;
|
834
834
|
contactPhones: z.ZodArray<z.ZodObject<{
|
835
835
|
id: z.ZodString;
|
836
|
-
createdAt: z.
|
837
|
-
updatedAt: z.
|
838
|
-
deletedAt: z.ZodNullable<z.
|
836
|
+
createdAt: z.ZodString;
|
837
|
+
updatedAt: z.ZodString;
|
838
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
839
839
|
phone: z.ZodString;
|
840
840
|
isPrimary: z.ZodBoolean;
|
841
841
|
}, "strip", z.ZodTypeAny, {
|
842
842
|
id: string;
|
843
843
|
isPrimary: boolean;
|
844
|
-
createdAt:
|
845
|
-
updatedAt:
|
846
|
-
deletedAt:
|
844
|
+
createdAt: string;
|
845
|
+
updatedAt: string;
|
846
|
+
deletedAt: string | null;
|
847
847
|
phone: string;
|
848
848
|
}, {
|
849
849
|
id: string;
|
850
850
|
isPrimary: boolean;
|
851
|
-
createdAt:
|
852
|
-
updatedAt:
|
853
|
-
deletedAt:
|
851
|
+
createdAt: string;
|
852
|
+
updatedAt: string;
|
853
|
+
deletedAt: string | null;
|
854
854
|
phone: string;
|
855
855
|
}>, "many">;
|
856
856
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
857
857
|
id: z.ZodString;
|
858
|
-
createdAt: z.
|
859
|
-
updatedAt: z.
|
860
|
-
deletedAt: z.ZodNullable<z.
|
858
|
+
createdAt: z.ZodString;
|
859
|
+
updatedAt: z.ZodString;
|
860
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
861
861
|
entityId: z.ZodString;
|
862
862
|
description: z.ZodString;
|
863
863
|
entityType: z.ZodObject<{
|
864
864
|
id: z.ZodString;
|
865
|
-
createdAt: z.
|
866
|
-
updatedAt: z.
|
867
|
-
deletedAt: z.ZodNullable<z.
|
865
|
+
createdAt: z.ZodString;
|
866
|
+
updatedAt: z.ZodString;
|
867
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
868
868
|
entity: z.ZodString;
|
869
869
|
description: z.ZodNullable<z.ZodString>;
|
870
870
|
}, "strip", z.ZodTypeAny, {
|
871
871
|
id: string;
|
872
872
|
description: string | null;
|
873
|
-
createdAt:
|
874
|
-
updatedAt:
|
875
|
-
deletedAt:
|
873
|
+
createdAt: string;
|
874
|
+
updatedAt: string;
|
875
|
+
deletedAt: string | null;
|
876
876
|
entity: string;
|
877
877
|
}, {
|
878
878
|
id: string;
|
879
879
|
description: string | null;
|
880
|
-
createdAt:
|
881
|
-
updatedAt:
|
882
|
-
deletedAt:
|
880
|
+
createdAt: string;
|
881
|
+
updatedAt: string;
|
882
|
+
deletedAt: string | null;
|
883
883
|
entity: string;
|
884
884
|
}>;
|
885
885
|
}, "strip", z.ZodTypeAny, {
|
886
886
|
id: string;
|
887
887
|
description: string;
|
888
|
-
createdAt:
|
889
|
-
updatedAt:
|
890
|
-
deletedAt:
|
888
|
+
createdAt: string;
|
889
|
+
updatedAt: string;
|
890
|
+
deletedAt: string | null;
|
891
891
|
entityId: string;
|
892
892
|
entityType: {
|
893
893
|
id: string;
|
894
894
|
description: string | null;
|
895
|
-
createdAt:
|
896
|
-
updatedAt:
|
897
|
-
deletedAt:
|
895
|
+
createdAt: string;
|
896
|
+
updatedAt: string;
|
897
|
+
deletedAt: string | null;
|
898
898
|
entity: string;
|
899
899
|
};
|
900
900
|
}, {
|
901
901
|
id: string;
|
902
902
|
description: string;
|
903
|
-
createdAt:
|
904
|
-
updatedAt:
|
905
|
-
deletedAt:
|
903
|
+
createdAt: string;
|
904
|
+
updatedAt: string;
|
905
|
+
deletedAt: string | null;
|
906
906
|
entityId: string;
|
907
907
|
entityType: {
|
908
908
|
id: string;
|
909
909
|
description: string | null;
|
910
|
-
createdAt:
|
911
|
-
updatedAt:
|
912
|
-
deletedAt:
|
910
|
+
createdAt: string;
|
911
|
+
updatedAt: string;
|
912
|
+
deletedAt: string | null;
|
913
913
|
entity: string;
|
914
914
|
};
|
915
915
|
}>, "many">>;
|
@@ -918,14 +918,14 @@ export declare const contactContract: {
|
|
918
918
|
channel: string | null;
|
919
919
|
address: string | null;
|
920
920
|
name: string;
|
921
|
-
createdAt:
|
922
|
-
updatedAt:
|
923
|
-
deletedAt:
|
921
|
+
createdAt: string;
|
922
|
+
updatedAt: string;
|
923
|
+
deletedAt: string | null;
|
924
924
|
customFields: {
|
925
925
|
id: string;
|
926
|
-
createdAt:
|
927
|
-
updatedAt:
|
928
|
-
deletedAt:
|
926
|
+
createdAt: string;
|
927
|
+
updatedAt: string;
|
928
|
+
deletedAt: string | null;
|
929
929
|
attribute: {
|
930
930
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
931
931
|
id: string;
|
@@ -943,7 +943,7 @@ export declare const contactContract: {
|
|
943
943
|
textValue: string | null;
|
944
944
|
booleanValue: boolean | null;
|
945
945
|
numberValue: number | null;
|
946
|
-
dateValue:
|
946
|
+
dateValue: string | null;
|
947
947
|
uploads: {
|
948
948
|
id: string;
|
949
949
|
createdAt: string;
|
@@ -986,31 +986,31 @@ export declare const contactContract: {
|
|
986
986
|
id: string;
|
987
987
|
isPrimary: boolean;
|
988
988
|
email: string;
|
989
|
-
createdAt:
|
990
|
-
updatedAt:
|
991
|
-
deletedAt:
|
989
|
+
createdAt: string;
|
990
|
+
updatedAt: string;
|
991
|
+
deletedAt: string | null;
|
992
992
|
}[];
|
993
993
|
contactPhones: {
|
994
994
|
id: string;
|
995
995
|
isPrimary: boolean;
|
996
|
-
createdAt:
|
997
|
-
updatedAt:
|
998
|
-
deletedAt:
|
996
|
+
createdAt: string;
|
997
|
+
updatedAt: string;
|
998
|
+
deletedAt: string | null;
|
999
999
|
phone: string;
|
1000
1000
|
}[];
|
1001
1001
|
activityLogs?: {
|
1002
1002
|
id: string;
|
1003
1003
|
description: string;
|
1004
|
-
createdAt:
|
1005
|
-
updatedAt:
|
1006
|
-
deletedAt:
|
1004
|
+
createdAt: string;
|
1005
|
+
updatedAt: string;
|
1006
|
+
deletedAt: string | null;
|
1007
1007
|
entityId: string;
|
1008
1008
|
entityType: {
|
1009
1009
|
id: string;
|
1010
1010
|
description: string | null;
|
1011
|
-
createdAt:
|
1012
|
-
updatedAt:
|
1013
|
-
deletedAt:
|
1011
|
+
createdAt: string;
|
1012
|
+
updatedAt: string;
|
1013
|
+
deletedAt: string | null;
|
1014
1014
|
entity: string;
|
1015
1015
|
};
|
1016
1016
|
}[] | undefined;
|
@@ -1019,14 +1019,14 @@ export declare const contactContract: {
|
|
1019
1019
|
channel: string | null;
|
1020
1020
|
address: string | null;
|
1021
1021
|
name: string;
|
1022
|
-
createdAt:
|
1023
|
-
updatedAt:
|
1024
|
-
deletedAt:
|
1022
|
+
createdAt: string;
|
1023
|
+
updatedAt: string;
|
1024
|
+
deletedAt: string | null;
|
1025
1025
|
customFields: {
|
1026
1026
|
id: string;
|
1027
|
-
createdAt:
|
1028
|
-
updatedAt:
|
1029
|
-
deletedAt:
|
1027
|
+
createdAt: string;
|
1028
|
+
updatedAt: string;
|
1029
|
+
deletedAt: string | null;
|
1030
1030
|
attribute: {
|
1031
1031
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1032
1032
|
id: string;
|
@@ -1044,7 +1044,7 @@ export declare const contactContract: {
|
|
1044
1044
|
textValue: string | null;
|
1045
1045
|
booleanValue: boolean | null;
|
1046
1046
|
numberValue: number | null;
|
1047
|
-
dateValue:
|
1047
|
+
dateValue: string | null;
|
1048
1048
|
uploads: {
|
1049
1049
|
id: string;
|
1050
1050
|
createdAt: string;
|
@@ -1087,31 +1087,31 @@ export declare const contactContract: {
|
|
1087
1087
|
id: string;
|
1088
1088
|
isPrimary: boolean;
|
1089
1089
|
email: string;
|
1090
|
-
createdAt:
|
1091
|
-
updatedAt:
|
1092
|
-
deletedAt:
|
1090
|
+
createdAt: string;
|
1091
|
+
updatedAt: string;
|
1092
|
+
deletedAt: string | null;
|
1093
1093
|
}[];
|
1094
1094
|
contactPhones: {
|
1095
1095
|
id: string;
|
1096
1096
|
isPrimary: boolean;
|
1097
|
-
createdAt:
|
1098
|
-
updatedAt:
|
1099
|
-
deletedAt:
|
1097
|
+
createdAt: string;
|
1098
|
+
updatedAt: string;
|
1099
|
+
deletedAt: string | null;
|
1100
1100
|
phone: string;
|
1101
1101
|
}[];
|
1102
1102
|
activityLogs?: {
|
1103
1103
|
id: string;
|
1104
1104
|
description: string;
|
1105
|
-
createdAt:
|
1106
|
-
updatedAt:
|
1107
|
-
deletedAt:
|
1105
|
+
createdAt: string;
|
1106
|
+
updatedAt: string;
|
1107
|
+
deletedAt: string | null;
|
1108
1108
|
entityId: string;
|
1109
1109
|
entityType: {
|
1110
1110
|
id: string;
|
1111
1111
|
description: string | null;
|
1112
|
-
createdAt:
|
1113
|
-
updatedAt:
|
1114
|
-
deletedAt:
|
1112
|
+
createdAt: string;
|
1113
|
+
updatedAt: string;
|
1114
|
+
deletedAt: string | null;
|
1115
1115
|
entity: string;
|
1116
1116
|
};
|
1117
1117
|
}[] | undefined;
|
@@ -1122,14 +1122,14 @@ export declare const contactContract: {
|
|
1122
1122
|
channel: string | null;
|
1123
1123
|
address: string | null;
|
1124
1124
|
name: string;
|
1125
|
-
createdAt:
|
1126
|
-
updatedAt:
|
1127
|
-
deletedAt:
|
1125
|
+
createdAt: string;
|
1126
|
+
updatedAt: string;
|
1127
|
+
deletedAt: string | null;
|
1128
1128
|
customFields: {
|
1129
1129
|
id: string;
|
1130
|
-
createdAt:
|
1131
|
-
updatedAt:
|
1132
|
-
deletedAt:
|
1130
|
+
createdAt: string;
|
1131
|
+
updatedAt: string;
|
1132
|
+
deletedAt: string | null;
|
1133
1133
|
attribute: {
|
1134
1134
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1135
1135
|
id: string;
|
@@ -1147,7 +1147,7 @@ export declare const contactContract: {
|
|
1147
1147
|
textValue: string | null;
|
1148
1148
|
booleanValue: boolean | null;
|
1149
1149
|
numberValue: number | null;
|
1150
|
-
dateValue:
|
1150
|
+
dateValue: string | null;
|
1151
1151
|
uploads: {
|
1152
1152
|
id: string;
|
1153
1153
|
createdAt: string;
|
@@ -1190,31 +1190,31 @@ export declare const contactContract: {
|
|
1190
1190
|
id: string;
|
1191
1191
|
isPrimary: boolean;
|
1192
1192
|
email: string;
|
1193
|
-
createdAt:
|
1194
|
-
updatedAt:
|
1195
|
-
deletedAt:
|
1193
|
+
createdAt: string;
|
1194
|
+
updatedAt: string;
|
1195
|
+
deletedAt: string | null;
|
1196
1196
|
}[];
|
1197
1197
|
contactPhones: {
|
1198
1198
|
id: string;
|
1199
1199
|
isPrimary: boolean;
|
1200
|
-
createdAt:
|
1201
|
-
updatedAt:
|
1202
|
-
deletedAt:
|
1200
|
+
createdAt: string;
|
1201
|
+
updatedAt: string;
|
1202
|
+
deletedAt: string | null;
|
1203
1203
|
phone: string;
|
1204
1204
|
}[];
|
1205
1205
|
activityLogs?: {
|
1206
1206
|
id: string;
|
1207
1207
|
description: string;
|
1208
|
-
createdAt:
|
1209
|
-
updatedAt:
|
1210
|
-
deletedAt:
|
1208
|
+
createdAt: string;
|
1209
|
+
updatedAt: string;
|
1210
|
+
deletedAt: string | null;
|
1211
1211
|
entityId: string;
|
1212
1212
|
entityType: {
|
1213
1213
|
id: string;
|
1214
1214
|
description: string | null;
|
1215
|
-
createdAt:
|
1216
|
-
updatedAt:
|
1217
|
-
deletedAt:
|
1215
|
+
createdAt: string;
|
1216
|
+
updatedAt: string;
|
1217
|
+
deletedAt: string | null;
|
1218
1218
|
entity: string;
|
1219
1219
|
};
|
1220
1220
|
}[] | undefined;
|
@@ -1226,14 +1226,14 @@ export declare const contactContract: {
|
|
1226
1226
|
channel: string | null;
|
1227
1227
|
address: string | null;
|
1228
1228
|
name: string;
|
1229
|
-
createdAt:
|
1230
|
-
updatedAt:
|
1231
|
-
deletedAt:
|
1229
|
+
createdAt: string;
|
1230
|
+
updatedAt: string;
|
1231
|
+
deletedAt: string | null;
|
1232
1232
|
customFields: {
|
1233
1233
|
id: string;
|
1234
|
-
createdAt:
|
1235
|
-
updatedAt:
|
1236
|
-
deletedAt:
|
1234
|
+
createdAt: string;
|
1235
|
+
updatedAt: string;
|
1236
|
+
deletedAt: string | null;
|
1237
1237
|
attribute: {
|
1238
1238
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1239
1239
|
id: string;
|
@@ -1251,7 +1251,7 @@ export declare const contactContract: {
|
|
1251
1251
|
textValue: string | null;
|
1252
1252
|
booleanValue: boolean | null;
|
1253
1253
|
numberValue: number | null;
|
1254
|
-
dateValue:
|
1254
|
+
dateValue: string | null;
|
1255
1255
|
uploads: {
|
1256
1256
|
id: string;
|
1257
1257
|
createdAt: string;
|
@@ -1294,31 +1294,31 @@ export declare const contactContract: {
|
|
1294
1294
|
id: string;
|
1295
1295
|
isPrimary: boolean;
|
1296
1296
|
email: string;
|
1297
|
-
createdAt:
|
1298
|
-
updatedAt:
|
1299
|
-
deletedAt:
|
1297
|
+
createdAt: string;
|
1298
|
+
updatedAt: string;
|
1299
|
+
deletedAt: string | null;
|
1300
1300
|
}[];
|
1301
1301
|
contactPhones: {
|
1302
1302
|
id: string;
|
1303
1303
|
isPrimary: boolean;
|
1304
|
-
createdAt:
|
1305
|
-
updatedAt:
|
1306
|
-
deletedAt:
|
1304
|
+
createdAt: string;
|
1305
|
+
updatedAt: string;
|
1306
|
+
deletedAt: string | null;
|
1307
1307
|
phone: string;
|
1308
1308
|
}[];
|
1309
1309
|
activityLogs?: {
|
1310
1310
|
id: string;
|
1311
1311
|
description: string;
|
1312
|
-
createdAt:
|
1313
|
-
updatedAt:
|
1314
|
-
deletedAt:
|
1312
|
+
createdAt: string;
|
1313
|
+
updatedAt: string;
|
1314
|
+
deletedAt: string | null;
|
1315
1315
|
entityId: string;
|
1316
1316
|
entityType: {
|
1317
1317
|
id: string;
|
1318
1318
|
description: string | null;
|
1319
|
-
createdAt:
|
1320
|
-
updatedAt:
|
1321
|
-
deletedAt:
|
1319
|
+
createdAt: string;
|
1320
|
+
updatedAt: string;
|
1321
|
+
deletedAt: string | null;
|
1322
1322
|
entity: string;
|
1323
1323
|
};
|
1324
1324
|
}[] | undefined;
|
@@ -1470,9 +1470,9 @@ export declare const contactContract: {
|
|
1470
1470
|
lastPage: z.ZodNumber;
|
1471
1471
|
data: z.ZodArray<z.ZodObject<{
|
1472
1472
|
id: z.ZodString;
|
1473
|
-
createdAt: z.
|
1474
|
-
updatedAt: z.
|
1475
|
-
deletedAt: z.ZodNullable<z.
|
1473
|
+
createdAt: z.ZodString;
|
1474
|
+
updatedAt: z.ZodString;
|
1475
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1476
1476
|
name: z.ZodString;
|
1477
1477
|
address: z.ZodNullable<z.ZodString>;
|
1478
1478
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -1515,7 +1515,7 @@ export declare const contactContract: {
|
|
1515
1515
|
textValue: z.ZodNullable<z.ZodString>;
|
1516
1516
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
1517
1517
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
1518
|
-
dateValue: z.ZodNullable<z.
|
1518
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
1519
1519
|
attribute: z.ZodObject<Omit<{
|
1520
1520
|
id: z.ZodString;
|
1521
1521
|
createdAt: z.ZodString;
|
@@ -1619,7 +1619,7 @@ export declare const contactContract: {
|
|
1619
1619
|
textValue: string | null;
|
1620
1620
|
booleanValue: boolean | null;
|
1621
1621
|
numberValue: number | null;
|
1622
|
-
dateValue:
|
1622
|
+
dateValue: string | null;
|
1623
1623
|
}, {
|
1624
1624
|
id: string;
|
1625
1625
|
createdAt: string;
|
@@ -1642,7 +1642,7 @@ export declare const contactContract: {
|
|
1642
1642
|
textValue: string | null;
|
1643
1643
|
booleanValue: boolean | null;
|
1644
1644
|
numberValue: number | null;
|
1645
|
-
dateValue:
|
1645
|
+
dateValue: string | null;
|
1646
1646
|
}>, "many">>;
|
1647
1647
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
1648
1648
|
id: string;
|
@@ -1665,13 +1665,13 @@ export declare const contactContract: {
|
|
1665
1665
|
}>>;
|
1666
1666
|
customFields: z.ZodArray<z.ZodObject<{
|
1667
1667
|
id: z.ZodString;
|
1668
|
-
createdAt: z.
|
1669
|
-
updatedAt: z.
|
1670
|
-
deletedAt: z.ZodNullable<z.
|
1668
|
+
createdAt: z.ZodString;
|
1669
|
+
updatedAt: z.ZodString;
|
1670
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1671
1671
|
textValue: z.ZodNullable<z.ZodString>;
|
1672
1672
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
1673
1673
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
1674
|
-
dateValue: z.ZodNullable<z.
|
1674
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
1675
1675
|
attribute: z.ZodObject<Omit<{
|
1676
1676
|
id: z.ZodString;
|
1677
1677
|
createdAt: z.ZodString;
|
@@ -1822,9 +1822,9 @@ export declare const contactContract: {
|
|
1822
1822
|
}>, "many">;
|
1823
1823
|
}, "strip", z.ZodTypeAny, {
|
1824
1824
|
id: string;
|
1825
|
-
createdAt:
|
1826
|
-
updatedAt:
|
1827
|
-
deletedAt:
|
1825
|
+
createdAt: string;
|
1826
|
+
updatedAt: string;
|
1827
|
+
deletedAt: string | null;
|
1828
1828
|
attribute: {
|
1829
1829
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1830
1830
|
id: string;
|
@@ -1842,7 +1842,7 @@ export declare const contactContract: {
|
|
1842
1842
|
textValue: string | null;
|
1843
1843
|
booleanValue: boolean | null;
|
1844
1844
|
numberValue: number | null;
|
1845
|
-
dateValue:
|
1845
|
+
dateValue: string | null;
|
1846
1846
|
uploads: {
|
1847
1847
|
id: string;
|
1848
1848
|
createdAt: string;
|
@@ -1862,9 +1862,9 @@ export declare const contactContract: {
|
|
1862
1862
|
}[];
|
1863
1863
|
}, {
|
1864
1864
|
id: string;
|
1865
|
-
createdAt:
|
1866
|
-
updatedAt:
|
1867
|
-
deletedAt:
|
1865
|
+
createdAt: string;
|
1866
|
+
updatedAt: string;
|
1867
|
+
deletedAt: string | null;
|
1868
1868
|
attribute: {
|
1869
1869
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
1870
1870
|
id: string;
|
@@ -1882,7 +1882,7 @@ export declare const contactContract: {
|
|
1882
1882
|
textValue: string | null;
|
1883
1883
|
booleanValue: boolean | null;
|
1884
1884
|
numberValue: number | null;
|
1885
|
-
dateValue:
|
1885
|
+
dateValue: string | null;
|
1886
1886
|
uploads: {
|
1887
1887
|
id: string;
|
1888
1888
|
createdAt: string;
|
@@ -1903,105 +1903,105 @@ export declare const contactContract: {
|
|
1903
1903
|
}>, "many">;
|
1904
1904
|
contactEmails: z.ZodArray<z.ZodObject<{
|
1905
1905
|
id: z.ZodString;
|
1906
|
-
createdAt: z.
|
1907
|
-
updatedAt: z.
|
1908
|
-
deletedAt: z.ZodNullable<z.
|
1906
|
+
createdAt: z.ZodString;
|
1907
|
+
updatedAt: z.ZodString;
|
1908
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1909
1909
|
email: z.ZodString;
|
1910
1910
|
isPrimary: z.ZodBoolean;
|
1911
1911
|
}, "strip", z.ZodTypeAny, {
|
1912
1912
|
id: string;
|
1913
1913
|
isPrimary: boolean;
|
1914
1914
|
email: string;
|
1915
|
-
createdAt:
|
1916
|
-
updatedAt:
|
1917
|
-
deletedAt:
|
1915
|
+
createdAt: string;
|
1916
|
+
updatedAt: string;
|
1917
|
+
deletedAt: string | null;
|
1918
1918
|
}, {
|
1919
1919
|
id: string;
|
1920
1920
|
isPrimary: boolean;
|
1921
1921
|
email: string;
|
1922
|
-
createdAt:
|
1923
|
-
updatedAt:
|
1924
|
-
deletedAt:
|
1922
|
+
createdAt: string;
|
1923
|
+
updatedAt: string;
|
1924
|
+
deletedAt: string | null;
|
1925
1925
|
}>, "many">;
|
1926
1926
|
contactPhones: z.ZodArray<z.ZodObject<{
|
1927
1927
|
id: z.ZodString;
|
1928
|
-
createdAt: z.
|
1929
|
-
updatedAt: z.
|
1930
|
-
deletedAt: z.ZodNullable<z.
|
1928
|
+
createdAt: z.ZodString;
|
1929
|
+
updatedAt: z.ZodString;
|
1930
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1931
1931
|
phone: z.ZodString;
|
1932
1932
|
isPrimary: z.ZodBoolean;
|
1933
1933
|
}, "strip", z.ZodTypeAny, {
|
1934
1934
|
id: string;
|
1935
1935
|
isPrimary: boolean;
|
1936
|
-
createdAt:
|
1937
|
-
updatedAt:
|
1938
|
-
deletedAt:
|
1936
|
+
createdAt: string;
|
1937
|
+
updatedAt: string;
|
1938
|
+
deletedAt: string | null;
|
1939
1939
|
phone: string;
|
1940
1940
|
}, {
|
1941
1941
|
id: string;
|
1942
1942
|
isPrimary: boolean;
|
1943
|
-
createdAt:
|
1944
|
-
updatedAt:
|
1945
|
-
deletedAt:
|
1943
|
+
createdAt: string;
|
1944
|
+
updatedAt: string;
|
1945
|
+
deletedAt: string | null;
|
1946
1946
|
phone: string;
|
1947
1947
|
}>, "many">;
|
1948
1948
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1949
1949
|
id: z.ZodString;
|
1950
|
-
createdAt: z.
|
1951
|
-
updatedAt: z.
|
1952
|
-
deletedAt: z.ZodNullable<z.
|
1950
|
+
createdAt: z.ZodString;
|
1951
|
+
updatedAt: z.ZodString;
|
1952
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1953
1953
|
entityId: z.ZodString;
|
1954
1954
|
description: z.ZodString;
|
1955
1955
|
entityType: z.ZodObject<{
|
1956
1956
|
id: z.ZodString;
|
1957
|
-
createdAt: z.
|
1958
|
-
updatedAt: z.
|
1959
|
-
deletedAt: z.ZodNullable<z.
|
1957
|
+
createdAt: z.ZodString;
|
1958
|
+
updatedAt: z.ZodString;
|
1959
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
1960
1960
|
entity: z.ZodString;
|
1961
1961
|
description: z.ZodNullable<z.ZodString>;
|
1962
1962
|
}, "strip", z.ZodTypeAny, {
|
1963
1963
|
id: string;
|
1964
1964
|
description: string | null;
|
1965
|
-
createdAt:
|
1966
|
-
updatedAt:
|
1967
|
-
deletedAt:
|
1965
|
+
createdAt: string;
|
1966
|
+
updatedAt: string;
|
1967
|
+
deletedAt: string | null;
|
1968
1968
|
entity: string;
|
1969
1969
|
}, {
|
1970
1970
|
id: string;
|
1971
1971
|
description: string | null;
|
1972
|
-
createdAt:
|
1973
|
-
updatedAt:
|
1974
|
-
deletedAt:
|
1972
|
+
createdAt: string;
|
1973
|
+
updatedAt: string;
|
1974
|
+
deletedAt: string | null;
|
1975
1975
|
entity: string;
|
1976
1976
|
}>;
|
1977
1977
|
}, "strip", z.ZodTypeAny, {
|
1978
1978
|
id: string;
|
1979
1979
|
description: string;
|
1980
|
-
createdAt:
|
1981
|
-
updatedAt:
|
1982
|
-
deletedAt:
|
1980
|
+
createdAt: string;
|
1981
|
+
updatedAt: string;
|
1982
|
+
deletedAt: string | null;
|
1983
1983
|
entityId: string;
|
1984
1984
|
entityType: {
|
1985
1985
|
id: string;
|
1986
1986
|
description: string | null;
|
1987
|
-
createdAt:
|
1988
|
-
updatedAt:
|
1989
|
-
deletedAt:
|
1987
|
+
createdAt: string;
|
1988
|
+
updatedAt: string;
|
1989
|
+
deletedAt: string | null;
|
1990
1990
|
entity: string;
|
1991
1991
|
};
|
1992
1992
|
}, {
|
1993
1993
|
id: string;
|
1994
1994
|
description: string;
|
1995
|
-
createdAt:
|
1996
|
-
updatedAt:
|
1997
|
-
deletedAt:
|
1995
|
+
createdAt: string;
|
1996
|
+
updatedAt: string;
|
1997
|
+
deletedAt: string | null;
|
1998
1998
|
entityId: string;
|
1999
1999
|
entityType: {
|
2000
2000
|
id: string;
|
2001
2001
|
description: string | null;
|
2002
|
-
createdAt:
|
2003
|
-
updatedAt:
|
2004
|
-
deletedAt:
|
2002
|
+
createdAt: string;
|
2003
|
+
updatedAt: string;
|
2004
|
+
deletedAt: string | null;
|
2005
2005
|
entity: string;
|
2006
2006
|
};
|
2007
2007
|
}>, "many">>;
|
@@ -2010,14 +2010,14 @@ export declare const contactContract: {
|
|
2010
2010
|
channel: string | null;
|
2011
2011
|
address: string | null;
|
2012
2012
|
name: string;
|
2013
|
-
createdAt:
|
2014
|
-
updatedAt:
|
2015
|
-
deletedAt:
|
2013
|
+
createdAt: string;
|
2014
|
+
updatedAt: string;
|
2015
|
+
deletedAt: string | null;
|
2016
2016
|
customFields: {
|
2017
2017
|
id: string;
|
2018
|
-
createdAt:
|
2019
|
-
updatedAt:
|
2020
|
-
deletedAt:
|
2018
|
+
createdAt: string;
|
2019
|
+
updatedAt: string;
|
2020
|
+
deletedAt: string | null;
|
2021
2021
|
attribute: {
|
2022
2022
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2023
2023
|
id: string;
|
@@ -2035,7 +2035,7 @@ export declare const contactContract: {
|
|
2035
2035
|
textValue: string | null;
|
2036
2036
|
booleanValue: boolean | null;
|
2037
2037
|
numberValue: number | null;
|
2038
|
-
dateValue:
|
2038
|
+
dateValue: string | null;
|
2039
2039
|
uploads: {
|
2040
2040
|
id: string;
|
2041
2041
|
createdAt: string;
|
@@ -2078,31 +2078,31 @@ export declare const contactContract: {
|
|
2078
2078
|
id: string;
|
2079
2079
|
isPrimary: boolean;
|
2080
2080
|
email: string;
|
2081
|
-
createdAt:
|
2082
|
-
updatedAt:
|
2083
|
-
deletedAt:
|
2081
|
+
createdAt: string;
|
2082
|
+
updatedAt: string;
|
2083
|
+
deletedAt: string | null;
|
2084
2084
|
}[];
|
2085
2085
|
contactPhones: {
|
2086
2086
|
id: string;
|
2087
2087
|
isPrimary: boolean;
|
2088
|
-
createdAt:
|
2089
|
-
updatedAt:
|
2090
|
-
deletedAt:
|
2088
|
+
createdAt: string;
|
2089
|
+
updatedAt: string;
|
2090
|
+
deletedAt: string | null;
|
2091
2091
|
phone: string;
|
2092
2092
|
}[];
|
2093
2093
|
activityLogs?: {
|
2094
2094
|
id: string;
|
2095
2095
|
description: string;
|
2096
|
-
createdAt:
|
2097
|
-
updatedAt:
|
2098
|
-
deletedAt:
|
2096
|
+
createdAt: string;
|
2097
|
+
updatedAt: string;
|
2098
|
+
deletedAt: string | null;
|
2099
2099
|
entityId: string;
|
2100
2100
|
entityType: {
|
2101
2101
|
id: string;
|
2102
2102
|
description: string | null;
|
2103
|
-
createdAt:
|
2104
|
-
updatedAt:
|
2105
|
-
deletedAt:
|
2103
|
+
createdAt: string;
|
2104
|
+
updatedAt: string;
|
2105
|
+
deletedAt: string | null;
|
2106
2106
|
entity: string;
|
2107
2107
|
};
|
2108
2108
|
}[] | undefined;
|
@@ -2111,14 +2111,14 @@ export declare const contactContract: {
|
|
2111
2111
|
channel: string | null;
|
2112
2112
|
address: string | null;
|
2113
2113
|
name: string;
|
2114
|
-
createdAt:
|
2115
|
-
updatedAt:
|
2116
|
-
deletedAt:
|
2114
|
+
createdAt: string;
|
2115
|
+
updatedAt: string;
|
2116
|
+
deletedAt: string | null;
|
2117
2117
|
customFields: {
|
2118
2118
|
id: string;
|
2119
|
-
createdAt:
|
2120
|
-
updatedAt:
|
2121
|
-
deletedAt:
|
2119
|
+
createdAt: string;
|
2120
|
+
updatedAt: string;
|
2121
|
+
deletedAt: string | null;
|
2122
2122
|
attribute: {
|
2123
2123
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2124
2124
|
id: string;
|
@@ -2136,7 +2136,7 @@ export declare const contactContract: {
|
|
2136
2136
|
textValue: string | null;
|
2137
2137
|
booleanValue: boolean | null;
|
2138
2138
|
numberValue: number | null;
|
2139
|
-
dateValue:
|
2139
|
+
dateValue: string | null;
|
2140
2140
|
uploads: {
|
2141
2141
|
id: string;
|
2142
2142
|
createdAt: string;
|
@@ -2179,31 +2179,31 @@ export declare const contactContract: {
|
|
2179
2179
|
id: string;
|
2180
2180
|
isPrimary: boolean;
|
2181
2181
|
email: string;
|
2182
|
-
createdAt:
|
2183
|
-
updatedAt:
|
2184
|
-
deletedAt:
|
2182
|
+
createdAt: string;
|
2183
|
+
updatedAt: string;
|
2184
|
+
deletedAt: string | null;
|
2185
2185
|
}[];
|
2186
2186
|
contactPhones: {
|
2187
2187
|
id: string;
|
2188
2188
|
isPrimary: boolean;
|
2189
|
-
createdAt:
|
2190
|
-
updatedAt:
|
2191
|
-
deletedAt:
|
2189
|
+
createdAt: string;
|
2190
|
+
updatedAt: string;
|
2191
|
+
deletedAt: string | null;
|
2192
2192
|
phone: string;
|
2193
2193
|
}[];
|
2194
2194
|
activityLogs?: {
|
2195
2195
|
id: string;
|
2196
2196
|
description: string;
|
2197
|
-
createdAt:
|
2198
|
-
updatedAt:
|
2199
|
-
deletedAt:
|
2197
|
+
createdAt: string;
|
2198
|
+
updatedAt: string;
|
2199
|
+
deletedAt: string | null;
|
2200
2200
|
entityId: string;
|
2201
2201
|
entityType: {
|
2202
2202
|
id: string;
|
2203
2203
|
description: string | null;
|
2204
|
-
createdAt:
|
2205
|
-
updatedAt:
|
2206
|
-
deletedAt:
|
2204
|
+
createdAt: string;
|
2205
|
+
updatedAt: string;
|
2206
|
+
deletedAt: string | null;
|
2207
2207
|
entity: string;
|
2208
2208
|
};
|
2209
2209
|
}[] | undefined;
|
@@ -2214,14 +2214,14 @@ export declare const contactContract: {
|
|
2214
2214
|
channel: string | null;
|
2215
2215
|
address: string | null;
|
2216
2216
|
name: string;
|
2217
|
-
createdAt:
|
2218
|
-
updatedAt:
|
2219
|
-
deletedAt:
|
2217
|
+
createdAt: string;
|
2218
|
+
updatedAt: string;
|
2219
|
+
deletedAt: string | null;
|
2220
2220
|
customFields: {
|
2221
2221
|
id: string;
|
2222
|
-
createdAt:
|
2223
|
-
updatedAt:
|
2224
|
-
deletedAt:
|
2222
|
+
createdAt: string;
|
2223
|
+
updatedAt: string;
|
2224
|
+
deletedAt: string | null;
|
2225
2225
|
attribute: {
|
2226
2226
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2227
2227
|
id: string;
|
@@ -2239,7 +2239,7 @@ export declare const contactContract: {
|
|
2239
2239
|
textValue: string | null;
|
2240
2240
|
booleanValue: boolean | null;
|
2241
2241
|
numberValue: number | null;
|
2242
|
-
dateValue:
|
2242
|
+
dateValue: string | null;
|
2243
2243
|
uploads: {
|
2244
2244
|
id: string;
|
2245
2245
|
createdAt: string;
|
@@ -2282,31 +2282,31 @@ export declare const contactContract: {
|
|
2282
2282
|
id: string;
|
2283
2283
|
isPrimary: boolean;
|
2284
2284
|
email: string;
|
2285
|
-
createdAt:
|
2286
|
-
updatedAt:
|
2287
|
-
deletedAt:
|
2285
|
+
createdAt: string;
|
2286
|
+
updatedAt: string;
|
2287
|
+
deletedAt: string | null;
|
2288
2288
|
}[];
|
2289
2289
|
contactPhones: {
|
2290
2290
|
id: string;
|
2291
2291
|
isPrimary: boolean;
|
2292
|
-
createdAt:
|
2293
|
-
updatedAt:
|
2294
|
-
deletedAt:
|
2292
|
+
createdAt: string;
|
2293
|
+
updatedAt: string;
|
2294
|
+
deletedAt: string | null;
|
2295
2295
|
phone: string;
|
2296
2296
|
}[];
|
2297
2297
|
activityLogs?: {
|
2298
2298
|
id: string;
|
2299
2299
|
description: string;
|
2300
|
-
createdAt:
|
2301
|
-
updatedAt:
|
2302
|
-
deletedAt:
|
2300
|
+
createdAt: string;
|
2301
|
+
updatedAt: string;
|
2302
|
+
deletedAt: string | null;
|
2303
2303
|
entityId: string;
|
2304
2304
|
entityType: {
|
2305
2305
|
id: string;
|
2306
2306
|
description: string | null;
|
2307
|
-
createdAt:
|
2308
|
-
updatedAt:
|
2309
|
-
deletedAt:
|
2307
|
+
createdAt: string;
|
2308
|
+
updatedAt: string;
|
2309
|
+
deletedAt: string | null;
|
2310
2310
|
entity: string;
|
2311
2311
|
};
|
2312
2312
|
}[] | undefined;
|
@@ -2322,14 +2322,14 @@ export declare const contactContract: {
|
|
2322
2322
|
channel: string | null;
|
2323
2323
|
address: string | null;
|
2324
2324
|
name: string;
|
2325
|
-
createdAt:
|
2326
|
-
updatedAt:
|
2327
|
-
deletedAt:
|
2325
|
+
createdAt: string;
|
2326
|
+
updatedAt: string;
|
2327
|
+
deletedAt: string | null;
|
2328
2328
|
customFields: {
|
2329
2329
|
id: string;
|
2330
|
-
createdAt:
|
2331
|
-
updatedAt:
|
2332
|
-
deletedAt:
|
2330
|
+
createdAt: string;
|
2331
|
+
updatedAt: string;
|
2332
|
+
deletedAt: string | null;
|
2333
2333
|
attribute: {
|
2334
2334
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2335
2335
|
id: string;
|
@@ -2347,7 +2347,7 @@ export declare const contactContract: {
|
|
2347
2347
|
textValue: string | null;
|
2348
2348
|
booleanValue: boolean | null;
|
2349
2349
|
numberValue: number | null;
|
2350
|
-
dateValue:
|
2350
|
+
dateValue: string | null;
|
2351
2351
|
uploads: {
|
2352
2352
|
id: string;
|
2353
2353
|
createdAt: string;
|
@@ -2390,31 +2390,31 @@ export declare const contactContract: {
|
|
2390
2390
|
id: string;
|
2391
2391
|
isPrimary: boolean;
|
2392
2392
|
email: string;
|
2393
|
-
createdAt:
|
2394
|
-
updatedAt:
|
2395
|
-
deletedAt:
|
2393
|
+
createdAt: string;
|
2394
|
+
updatedAt: string;
|
2395
|
+
deletedAt: string | null;
|
2396
2396
|
}[];
|
2397
2397
|
contactPhones: {
|
2398
2398
|
id: string;
|
2399
2399
|
isPrimary: boolean;
|
2400
|
-
createdAt:
|
2401
|
-
updatedAt:
|
2402
|
-
deletedAt:
|
2400
|
+
createdAt: string;
|
2401
|
+
updatedAt: string;
|
2402
|
+
deletedAt: string | null;
|
2403
2403
|
phone: string;
|
2404
2404
|
}[];
|
2405
2405
|
activityLogs?: {
|
2406
2406
|
id: string;
|
2407
2407
|
description: string;
|
2408
|
-
createdAt:
|
2409
|
-
updatedAt:
|
2410
|
-
deletedAt:
|
2408
|
+
createdAt: string;
|
2409
|
+
updatedAt: string;
|
2410
|
+
deletedAt: string | null;
|
2411
2411
|
entityId: string;
|
2412
2412
|
entityType: {
|
2413
2413
|
id: string;
|
2414
2414
|
description: string | null;
|
2415
|
-
createdAt:
|
2416
|
-
updatedAt:
|
2417
|
-
deletedAt:
|
2415
|
+
createdAt: string;
|
2416
|
+
updatedAt: string;
|
2417
|
+
deletedAt: string | null;
|
2418
2418
|
entity: string;
|
2419
2419
|
};
|
2420
2420
|
}[] | undefined;
|
@@ -2520,9 +2520,9 @@ export declare const contactContract: {
|
|
2520
2520
|
lastPage: z.ZodNumber;
|
2521
2521
|
data: z.ZodArray<z.ZodObject<{
|
2522
2522
|
id: z.ZodString;
|
2523
|
-
createdAt: z.
|
2524
|
-
updatedAt: z.
|
2525
|
-
deletedAt: z.ZodNullable<z.
|
2523
|
+
createdAt: z.ZodString;
|
2524
|
+
updatedAt: z.ZodString;
|
2525
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2526
2526
|
name: z.ZodString;
|
2527
2527
|
address: z.ZodNullable<z.ZodString>;
|
2528
2528
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -2565,7 +2565,7 @@ export declare const contactContract: {
|
|
2565
2565
|
textValue: z.ZodNullable<z.ZodString>;
|
2566
2566
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2567
2567
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
2568
|
-
dateValue: z.ZodNullable<z.
|
2568
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
2569
2569
|
attribute: z.ZodObject<Omit<{
|
2570
2570
|
id: z.ZodString;
|
2571
2571
|
createdAt: z.ZodString;
|
@@ -2669,7 +2669,7 @@ export declare const contactContract: {
|
|
2669
2669
|
textValue: string | null;
|
2670
2670
|
booleanValue: boolean | null;
|
2671
2671
|
numberValue: number | null;
|
2672
|
-
dateValue:
|
2672
|
+
dateValue: string | null;
|
2673
2673
|
}, {
|
2674
2674
|
id: string;
|
2675
2675
|
createdAt: string;
|
@@ -2692,7 +2692,7 @@ export declare const contactContract: {
|
|
2692
2692
|
textValue: string | null;
|
2693
2693
|
booleanValue: boolean | null;
|
2694
2694
|
numberValue: number | null;
|
2695
|
-
dateValue:
|
2695
|
+
dateValue: string | null;
|
2696
2696
|
}>, "many">>;
|
2697
2697
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
2698
2698
|
id: string;
|
@@ -2715,13 +2715,13 @@ export declare const contactContract: {
|
|
2715
2715
|
}>>;
|
2716
2716
|
customFields: z.ZodArray<z.ZodObject<{
|
2717
2717
|
id: z.ZodString;
|
2718
|
-
createdAt: z.
|
2719
|
-
updatedAt: z.
|
2720
|
-
deletedAt: z.ZodNullable<z.
|
2721
|
-
textValue: z.ZodNullable<z.ZodString>;
|
2718
|
+
createdAt: z.ZodString;
|
2719
|
+
updatedAt: z.ZodString;
|
2720
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2721
|
+
textValue: z.ZodNullable<z.ZodString>;
|
2722
2722
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
2723
2723
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
2724
|
-
dateValue: z.ZodNullable<z.
|
2724
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
2725
2725
|
attribute: z.ZodObject<Omit<{
|
2726
2726
|
id: z.ZodString;
|
2727
2727
|
createdAt: z.ZodString;
|
@@ -2872,9 +2872,9 @@ export declare const contactContract: {
|
|
2872
2872
|
}>, "many">;
|
2873
2873
|
}, "strip", z.ZodTypeAny, {
|
2874
2874
|
id: string;
|
2875
|
-
createdAt:
|
2876
|
-
updatedAt:
|
2877
|
-
deletedAt:
|
2875
|
+
createdAt: string;
|
2876
|
+
updatedAt: string;
|
2877
|
+
deletedAt: string | null;
|
2878
2878
|
attribute: {
|
2879
2879
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2880
2880
|
id: string;
|
@@ -2892,7 +2892,7 @@ export declare const contactContract: {
|
|
2892
2892
|
textValue: string | null;
|
2893
2893
|
booleanValue: boolean | null;
|
2894
2894
|
numberValue: number | null;
|
2895
|
-
dateValue:
|
2895
|
+
dateValue: string | null;
|
2896
2896
|
uploads: {
|
2897
2897
|
id: string;
|
2898
2898
|
createdAt: string;
|
@@ -2912,9 +2912,9 @@ export declare const contactContract: {
|
|
2912
2912
|
}[];
|
2913
2913
|
}, {
|
2914
2914
|
id: string;
|
2915
|
-
createdAt:
|
2916
|
-
updatedAt:
|
2917
|
-
deletedAt:
|
2915
|
+
createdAt: string;
|
2916
|
+
updatedAt: string;
|
2917
|
+
deletedAt: string | null;
|
2918
2918
|
attribute: {
|
2919
2919
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
2920
2920
|
id: string;
|
@@ -2932,7 +2932,7 @@ export declare const contactContract: {
|
|
2932
2932
|
textValue: string | null;
|
2933
2933
|
booleanValue: boolean | null;
|
2934
2934
|
numberValue: number | null;
|
2935
|
-
dateValue:
|
2935
|
+
dateValue: string | null;
|
2936
2936
|
uploads: {
|
2937
2937
|
id: string;
|
2938
2938
|
createdAt: string;
|
@@ -2953,105 +2953,105 @@ export declare const contactContract: {
|
|
2953
2953
|
}>, "many">;
|
2954
2954
|
contactEmails: z.ZodArray<z.ZodObject<{
|
2955
2955
|
id: z.ZodString;
|
2956
|
-
createdAt: z.
|
2957
|
-
updatedAt: z.
|
2958
|
-
deletedAt: z.ZodNullable<z.
|
2956
|
+
createdAt: z.ZodString;
|
2957
|
+
updatedAt: z.ZodString;
|
2958
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2959
2959
|
email: z.ZodString;
|
2960
2960
|
isPrimary: z.ZodBoolean;
|
2961
2961
|
}, "strip", z.ZodTypeAny, {
|
2962
2962
|
id: string;
|
2963
2963
|
isPrimary: boolean;
|
2964
2964
|
email: string;
|
2965
|
-
createdAt:
|
2966
|
-
updatedAt:
|
2967
|
-
deletedAt:
|
2965
|
+
createdAt: string;
|
2966
|
+
updatedAt: string;
|
2967
|
+
deletedAt: string | null;
|
2968
2968
|
}, {
|
2969
2969
|
id: string;
|
2970
2970
|
isPrimary: boolean;
|
2971
2971
|
email: string;
|
2972
|
-
createdAt:
|
2973
|
-
updatedAt:
|
2974
|
-
deletedAt:
|
2972
|
+
createdAt: string;
|
2973
|
+
updatedAt: string;
|
2974
|
+
deletedAt: string | null;
|
2975
2975
|
}>, "many">;
|
2976
2976
|
contactPhones: z.ZodArray<z.ZodObject<{
|
2977
2977
|
id: z.ZodString;
|
2978
|
-
createdAt: z.
|
2979
|
-
updatedAt: z.
|
2980
|
-
deletedAt: z.ZodNullable<z.
|
2978
|
+
createdAt: z.ZodString;
|
2979
|
+
updatedAt: z.ZodString;
|
2980
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
2981
2981
|
phone: z.ZodString;
|
2982
2982
|
isPrimary: z.ZodBoolean;
|
2983
2983
|
}, "strip", z.ZodTypeAny, {
|
2984
2984
|
id: string;
|
2985
2985
|
isPrimary: boolean;
|
2986
|
-
createdAt:
|
2987
|
-
updatedAt:
|
2988
|
-
deletedAt:
|
2986
|
+
createdAt: string;
|
2987
|
+
updatedAt: string;
|
2988
|
+
deletedAt: string | null;
|
2989
2989
|
phone: string;
|
2990
2990
|
}, {
|
2991
2991
|
id: string;
|
2992
2992
|
isPrimary: boolean;
|
2993
|
-
createdAt:
|
2994
|
-
updatedAt:
|
2995
|
-
deletedAt:
|
2993
|
+
createdAt: string;
|
2994
|
+
updatedAt: string;
|
2995
|
+
deletedAt: string | null;
|
2996
2996
|
phone: string;
|
2997
2997
|
}>, "many">;
|
2998
2998
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2999
2999
|
id: z.ZodString;
|
3000
|
-
createdAt: z.
|
3001
|
-
updatedAt: z.
|
3002
|
-
deletedAt: z.ZodNullable<z.
|
3000
|
+
createdAt: z.ZodString;
|
3001
|
+
updatedAt: z.ZodString;
|
3002
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3003
3003
|
entityId: z.ZodString;
|
3004
3004
|
description: z.ZodString;
|
3005
3005
|
entityType: z.ZodObject<{
|
3006
3006
|
id: z.ZodString;
|
3007
|
-
createdAt: z.
|
3008
|
-
updatedAt: z.
|
3009
|
-
deletedAt: z.ZodNullable<z.
|
3007
|
+
createdAt: z.ZodString;
|
3008
|
+
updatedAt: z.ZodString;
|
3009
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3010
3010
|
entity: z.ZodString;
|
3011
3011
|
description: z.ZodNullable<z.ZodString>;
|
3012
3012
|
}, "strip", z.ZodTypeAny, {
|
3013
3013
|
id: string;
|
3014
3014
|
description: string | null;
|
3015
|
-
createdAt:
|
3016
|
-
updatedAt:
|
3017
|
-
deletedAt:
|
3015
|
+
createdAt: string;
|
3016
|
+
updatedAt: string;
|
3017
|
+
deletedAt: string | null;
|
3018
3018
|
entity: string;
|
3019
3019
|
}, {
|
3020
3020
|
id: string;
|
3021
3021
|
description: string | null;
|
3022
|
-
createdAt:
|
3023
|
-
updatedAt:
|
3024
|
-
deletedAt:
|
3022
|
+
createdAt: string;
|
3023
|
+
updatedAt: string;
|
3024
|
+
deletedAt: string | null;
|
3025
3025
|
entity: string;
|
3026
3026
|
}>;
|
3027
3027
|
}, "strip", z.ZodTypeAny, {
|
3028
3028
|
id: string;
|
3029
3029
|
description: string;
|
3030
|
-
createdAt:
|
3031
|
-
updatedAt:
|
3032
|
-
deletedAt:
|
3030
|
+
createdAt: string;
|
3031
|
+
updatedAt: string;
|
3032
|
+
deletedAt: string | null;
|
3033
3033
|
entityId: string;
|
3034
3034
|
entityType: {
|
3035
3035
|
id: string;
|
3036
3036
|
description: string | null;
|
3037
|
-
createdAt:
|
3038
|
-
updatedAt:
|
3039
|
-
deletedAt:
|
3037
|
+
createdAt: string;
|
3038
|
+
updatedAt: string;
|
3039
|
+
deletedAt: string | null;
|
3040
3040
|
entity: string;
|
3041
3041
|
};
|
3042
3042
|
}, {
|
3043
3043
|
id: string;
|
3044
3044
|
description: string;
|
3045
|
-
createdAt:
|
3046
|
-
updatedAt:
|
3047
|
-
deletedAt:
|
3045
|
+
createdAt: string;
|
3046
|
+
updatedAt: string;
|
3047
|
+
deletedAt: string | null;
|
3048
3048
|
entityId: string;
|
3049
3049
|
entityType: {
|
3050
3050
|
id: string;
|
3051
3051
|
description: string | null;
|
3052
|
-
createdAt:
|
3053
|
-
updatedAt:
|
3054
|
-
deletedAt:
|
3052
|
+
createdAt: string;
|
3053
|
+
updatedAt: string;
|
3054
|
+
deletedAt: string | null;
|
3055
3055
|
entity: string;
|
3056
3056
|
};
|
3057
3057
|
}>, "many">>;
|
@@ -3060,14 +3060,14 @@ export declare const contactContract: {
|
|
3060
3060
|
channel: string | null;
|
3061
3061
|
address: string | null;
|
3062
3062
|
name: string;
|
3063
|
-
createdAt:
|
3064
|
-
updatedAt:
|
3065
|
-
deletedAt:
|
3063
|
+
createdAt: string;
|
3064
|
+
updatedAt: string;
|
3065
|
+
deletedAt: string | null;
|
3066
3066
|
customFields: {
|
3067
3067
|
id: string;
|
3068
|
-
createdAt:
|
3069
|
-
updatedAt:
|
3070
|
-
deletedAt:
|
3068
|
+
createdAt: string;
|
3069
|
+
updatedAt: string;
|
3070
|
+
deletedAt: string | null;
|
3071
3071
|
attribute: {
|
3072
3072
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3073
3073
|
id: string;
|
@@ -3085,7 +3085,7 @@ export declare const contactContract: {
|
|
3085
3085
|
textValue: string | null;
|
3086
3086
|
booleanValue: boolean | null;
|
3087
3087
|
numberValue: number | null;
|
3088
|
-
dateValue:
|
3088
|
+
dateValue: string | null;
|
3089
3089
|
uploads: {
|
3090
3090
|
id: string;
|
3091
3091
|
createdAt: string;
|
@@ -3128,31 +3128,31 @@ export declare const contactContract: {
|
|
3128
3128
|
id: string;
|
3129
3129
|
isPrimary: boolean;
|
3130
3130
|
email: string;
|
3131
|
-
createdAt:
|
3132
|
-
updatedAt:
|
3133
|
-
deletedAt:
|
3131
|
+
createdAt: string;
|
3132
|
+
updatedAt: string;
|
3133
|
+
deletedAt: string | null;
|
3134
3134
|
}[];
|
3135
3135
|
contactPhones: {
|
3136
3136
|
id: string;
|
3137
3137
|
isPrimary: boolean;
|
3138
|
-
createdAt:
|
3139
|
-
updatedAt:
|
3140
|
-
deletedAt:
|
3138
|
+
createdAt: string;
|
3139
|
+
updatedAt: string;
|
3140
|
+
deletedAt: string | null;
|
3141
3141
|
phone: string;
|
3142
3142
|
}[];
|
3143
3143
|
activityLogs?: {
|
3144
3144
|
id: string;
|
3145
3145
|
description: string;
|
3146
|
-
createdAt:
|
3147
|
-
updatedAt:
|
3148
|
-
deletedAt:
|
3146
|
+
createdAt: string;
|
3147
|
+
updatedAt: string;
|
3148
|
+
deletedAt: string | null;
|
3149
3149
|
entityId: string;
|
3150
3150
|
entityType: {
|
3151
3151
|
id: string;
|
3152
3152
|
description: string | null;
|
3153
|
-
createdAt:
|
3154
|
-
updatedAt:
|
3155
|
-
deletedAt:
|
3153
|
+
createdAt: string;
|
3154
|
+
updatedAt: string;
|
3155
|
+
deletedAt: string | null;
|
3156
3156
|
entity: string;
|
3157
3157
|
};
|
3158
3158
|
}[] | undefined;
|
@@ -3161,14 +3161,14 @@ export declare const contactContract: {
|
|
3161
3161
|
channel: string | null;
|
3162
3162
|
address: string | null;
|
3163
3163
|
name: string;
|
3164
|
-
createdAt:
|
3165
|
-
updatedAt:
|
3166
|
-
deletedAt:
|
3164
|
+
createdAt: string;
|
3165
|
+
updatedAt: string;
|
3166
|
+
deletedAt: string | null;
|
3167
3167
|
customFields: {
|
3168
3168
|
id: string;
|
3169
|
-
createdAt:
|
3170
|
-
updatedAt:
|
3171
|
-
deletedAt:
|
3169
|
+
createdAt: string;
|
3170
|
+
updatedAt: string;
|
3171
|
+
deletedAt: string | null;
|
3172
3172
|
attribute: {
|
3173
3173
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3174
3174
|
id: string;
|
@@ -3186,7 +3186,7 @@ export declare const contactContract: {
|
|
3186
3186
|
textValue: string | null;
|
3187
3187
|
booleanValue: boolean | null;
|
3188
3188
|
numberValue: number | null;
|
3189
|
-
dateValue:
|
3189
|
+
dateValue: string | null;
|
3190
3190
|
uploads: {
|
3191
3191
|
id: string;
|
3192
3192
|
createdAt: string;
|
@@ -3229,31 +3229,31 @@ export declare const contactContract: {
|
|
3229
3229
|
id: string;
|
3230
3230
|
isPrimary: boolean;
|
3231
3231
|
email: string;
|
3232
|
-
createdAt:
|
3233
|
-
updatedAt:
|
3234
|
-
deletedAt:
|
3232
|
+
createdAt: string;
|
3233
|
+
updatedAt: string;
|
3234
|
+
deletedAt: string | null;
|
3235
3235
|
}[];
|
3236
3236
|
contactPhones: {
|
3237
3237
|
id: string;
|
3238
3238
|
isPrimary: boolean;
|
3239
|
-
createdAt:
|
3240
|
-
updatedAt:
|
3241
|
-
deletedAt:
|
3239
|
+
createdAt: string;
|
3240
|
+
updatedAt: string;
|
3241
|
+
deletedAt: string | null;
|
3242
3242
|
phone: string;
|
3243
3243
|
}[];
|
3244
3244
|
activityLogs?: {
|
3245
3245
|
id: string;
|
3246
3246
|
description: string;
|
3247
|
-
createdAt:
|
3248
|
-
updatedAt:
|
3249
|
-
deletedAt:
|
3247
|
+
createdAt: string;
|
3248
|
+
updatedAt: string;
|
3249
|
+
deletedAt: string | null;
|
3250
3250
|
entityId: string;
|
3251
3251
|
entityType: {
|
3252
3252
|
id: string;
|
3253
3253
|
description: string | null;
|
3254
|
-
createdAt:
|
3255
|
-
updatedAt:
|
3256
|
-
deletedAt:
|
3254
|
+
createdAt: string;
|
3255
|
+
updatedAt: string;
|
3256
|
+
deletedAt: string | null;
|
3257
3257
|
entity: string;
|
3258
3258
|
};
|
3259
3259
|
}[] | undefined;
|
@@ -3264,14 +3264,14 @@ export declare const contactContract: {
|
|
3264
3264
|
channel: string | null;
|
3265
3265
|
address: string | null;
|
3266
3266
|
name: string;
|
3267
|
-
createdAt:
|
3268
|
-
updatedAt:
|
3269
|
-
deletedAt:
|
3267
|
+
createdAt: string;
|
3268
|
+
updatedAt: string;
|
3269
|
+
deletedAt: string | null;
|
3270
3270
|
customFields: {
|
3271
3271
|
id: string;
|
3272
|
-
createdAt:
|
3273
|
-
updatedAt:
|
3274
|
-
deletedAt:
|
3272
|
+
createdAt: string;
|
3273
|
+
updatedAt: string;
|
3274
|
+
deletedAt: string | null;
|
3275
3275
|
attribute: {
|
3276
3276
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3277
3277
|
id: string;
|
@@ -3289,7 +3289,7 @@ export declare const contactContract: {
|
|
3289
3289
|
textValue: string | null;
|
3290
3290
|
booleanValue: boolean | null;
|
3291
3291
|
numberValue: number | null;
|
3292
|
-
dateValue:
|
3292
|
+
dateValue: string | null;
|
3293
3293
|
uploads: {
|
3294
3294
|
id: string;
|
3295
3295
|
createdAt: string;
|
@@ -3332,31 +3332,31 @@ export declare const contactContract: {
|
|
3332
3332
|
id: string;
|
3333
3333
|
isPrimary: boolean;
|
3334
3334
|
email: string;
|
3335
|
-
createdAt:
|
3336
|
-
updatedAt:
|
3337
|
-
deletedAt:
|
3335
|
+
createdAt: string;
|
3336
|
+
updatedAt: string;
|
3337
|
+
deletedAt: string | null;
|
3338
3338
|
}[];
|
3339
3339
|
contactPhones: {
|
3340
3340
|
id: string;
|
3341
3341
|
isPrimary: boolean;
|
3342
|
-
createdAt:
|
3343
|
-
updatedAt:
|
3344
|
-
deletedAt:
|
3342
|
+
createdAt: string;
|
3343
|
+
updatedAt: string;
|
3344
|
+
deletedAt: string | null;
|
3345
3345
|
phone: string;
|
3346
3346
|
}[];
|
3347
3347
|
activityLogs?: {
|
3348
3348
|
id: string;
|
3349
3349
|
description: string;
|
3350
|
-
createdAt:
|
3351
|
-
updatedAt:
|
3352
|
-
deletedAt:
|
3350
|
+
createdAt: string;
|
3351
|
+
updatedAt: string;
|
3352
|
+
deletedAt: string | null;
|
3353
3353
|
entityId: string;
|
3354
3354
|
entityType: {
|
3355
3355
|
id: string;
|
3356
3356
|
description: string | null;
|
3357
|
-
createdAt:
|
3358
|
-
updatedAt:
|
3359
|
-
deletedAt:
|
3357
|
+
createdAt: string;
|
3358
|
+
updatedAt: string;
|
3359
|
+
deletedAt: string | null;
|
3360
3360
|
entity: string;
|
3361
3361
|
};
|
3362
3362
|
}[] | undefined;
|
@@ -3372,14 +3372,14 @@ export declare const contactContract: {
|
|
3372
3372
|
channel: string | null;
|
3373
3373
|
address: string | null;
|
3374
3374
|
name: string;
|
3375
|
-
createdAt:
|
3376
|
-
updatedAt:
|
3377
|
-
deletedAt:
|
3375
|
+
createdAt: string;
|
3376
|
+
updatedAt: string;
|
3377
|
+
deletedAt: string | null;
|
3378
3378
|
customFields: {
|
3379
3379
|
id: string;
|
3380
|
-
createdAt:
|
3381
|
-
updatedAt:
|
3382
|
-
deletedAt:
|
3380
|
+
createdAt: string;
|
3381
|
+
updatedAt: string;
|
3382
|
+
deletedAt: string | null;
|
3383
3383
|
attribute: {
|
3384
3384
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
3385
3385
|
id: string;
|
@@ -3397,7 +3397,7 @@ export declare const contactContract: {
|
|
3397
3397
|
textValue: string | null;
|
3398
3398
|
booleanValue: boolean | null;
|
3399
3399
|
numberValue: number | null;
|
3400
|
-
dateValue:
|
3400
|
+
dateValue: string | null;
|
3401
3401
|
uploads: {
|
3402
3402
|
id: string;
|
3403
3403
|
createdAt: string;
|
@@ -3440,31 +3440,31 @@ export declare const contactContract: {
|
|
3440
3440
|
id: string;
|
3441
3441
|
isPrimary: boolean;
|
3442
3442
|
email: string;
|
3443
|
-
createdAt:
|
3444
|
-
updatedAt:
|
3445
|
-
deletedAt:
|
3443
|
+
createdAt: string;
|
3444
|
+
updatedAt: string;
|
3445
|
+
deletedAt: string | null;
|
3446
3446
|
}[];
|
3447
3447
|
contactPhones: {
|
3448
3448
|
id: string;
|
3449
3449
|
isPrimary: boolean;
|
3450
|
-
createdAt:
|
3451
|
-
updatedAt:
|
3452
|
-
deletedAt:
|
3450
|
+
createdAt: string;
|
3451
|
+
updatedAt: string;
|
3452
|
+
deletedAt: string | null;
|
3453
3453
|
phone: string;
|
3454
3454
|
}[];
|
3455
3455
|
activityLogs?: {
|
3456
3456
|
id: string;
|
3457
3457
|
description: string;
|
3458
|
-
createdAt:
|
3459
|
-
updatedAt:
|
3460
|
-
deletedAt:
|
3458
|
+
createdAt: string;
|
3459
|
+
updatedAt: string;
|
3460
|
+
deletedAt: string | null;
|
3461
3461
|
entityId: string;
|
3462
3462
|
entityType: {
|
3463
3463
|
id: string;
|
3464
3464
|
description: string | null;
|
3465
|
-
createdAt:
|
3466
|
-
updatedAt:
|
3467
|
-
deletedAt:
|
3465
|
+
createdAt: string;
|
3466
|
+
updatedAt: string;
|
3467
|
+
deletedAt: string | null;
|
3468
3468
|
entity: string;
|
3469
3469
|
};
|
3470
3470
|
}[] | undefined;
|
@@ -3527,7 +3527,7 @@ export declare const contactContract: {
|
|
3527
3527
|
error?: any;
|
3528
3528
|
}>;
|
3529
3529
|
};
|
3530
|
-
path: "
|
3530
|
+
path: "contactfilter";
|
3531
3531
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
3532
3532
|
'x-tenant': z.ZodString;
|
3533
3533
|
authorization: z.ZodString;
|
@@ -3823,9 +3823,9 @@ export declare const contactContract: {
|
|
3823
3823
|
requestId: z.ZodString;
|
3824
3824
|
data: z.ZodObject<{
|
3825
3825
|
id: z.ZodString;
|
3826
|
-
createdAt: z.
|
3827
|
-
updatedAt: z.
|
3828
|
-
deletedAt: z.ZodNullable<z.
|
3826
|
+
createdAt: z.ZodString;
|
3827
|
+
updatedAt: z.ZodString;
|
3828
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
3829
3829
|
name: z.ZodString;
|
3830
3830
|
address: z.ZodNullable<z.ZodString>;
|
3831
3831
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -3868,7 +3868,7 @@ export declare const contactContract: {
|
|
3868
3868
|
textValue: z.ZodNullable<z.ZodString>;
|
3869
3869
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
3870
3870
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
3871
|
-
dateValue: z.ZodNullable<z.
|
3871
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
3872
3872
|
attribute: z.ZodObject<Omit<{
|
3873
3873
|
id: z.ZodString;
|
3874
3874
|
createdAt: z.ZodString;
|
@@ -3972,7 +3972,7 @@ export declare const contactContract: {
|
|
3972
3972
|
textValue: string | null;
|
3973
3973
|
booleanValue: boolean | null;
|
3974
3974
|
numberValue: number | null;
|
3975
|
-
dateValue:
|
3975
|
+
dateValue: string | null;
|
3976
3976
|
}, {
|
3977
3977
|
id: string;
|
3978
3978
|
createdAt: string;
|
@@ -3995,7 +3995,7 @@ export declare const contactContract: {
|
|
3995
3995
|
textValue: string | null;
|
3996
3996
|
booleanValue: boolean | null;
|
3997
3997
|
numberValue: number | null;
|
3998
|
-
dateValue:
|
3998
|
+
dateValue: string | null;
|
3999
3999
|
}>, "many">>;
|
4000
4000
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
4001
4001
|
id: string;
|
@@ -4018,13 +4018,13 @@ export declare const contactContract: {
|
|
4018
4018
|
}>>;
|
4019
4019
|
customFields: z.ZodArray<z.ZodObject<{
|
4020
4020
|
id: z.ZodString;
|
4021
|
-
createdAt: z.
|
4022
|
-
updatedAt: z.
|
4023
|
-
deletedAt: z.ZodNullable<z.
|
4021
|
+
createdAt: z.ZodString;
|
4022
|
+
updatedAt: z.ZodString;
|
4023
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4024
4024
|
textValue: z.ZodNullable<z.ZodString>;
|
4025
4025
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
4026
4026
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
4027
|
-
dateValue: z.ZodNullable<z.
|
4027
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
4028
4028
|
attribute: z.ZodObject<Omit<{
|
4029
4029
|
id: z.ZodString;
|
4030
4030
|
createdAt: z.ZodString;
|
@@ -4175,9 +4175,9 @@ export declare const contactContract: {
|
|
4175
4175
|
}>, "many">;
|
4176
4176
|
}, "strip", z.ZodTypeAny, {
|
4177
4177
|
id: string;
|
4178
|
-
createdAt:
|
4179
|
-
updatedAt:
|
4180
|
-
deletedAt:
|
4178
|
+
createdAt: string;
|
4179
|
+
updatedAt: string;
|
4180
|
+
deletedAt: string | null;
|
4181
4181
|
attribute: {
|
4182
4182
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4183
4183
|
id: string;
|
@@ -4195,7 +4195,7 @@ export declare const contactContract: {
|
|
4195
4195
|
textValue: string | null;
|
4196
4196
|
booleanValue: boolean | null;
|
4197
4197
|
numberValue: number | null;
|
4198
|
-
dateValue:
|
4198
|
+
dateValue: string | null;
|
4199
4199
|
uploads: {
|
4200
4200
|
id: string;
|
4201
4201
|
createdAt: string;
|
@@ -4215,9 +4215,9 @@ export declare const contactContract: {
|
|
4215
4215
|
}[];
|
4216
4216
|
}, {
|
4217
4217
|
id: string;
|
4218
|
-
createdAt:
|
4219
|
-
updatedAt:
|
4220
|
-
deletedAt:
|
4218
|
+
createdAt: string;
|
4219
|
+
updatedAt: string;
|
4220
|
+
deletedAt: string | null;
|
4221
4221
|
attribute: {
|
4222
4222
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4223
4223
|
id: string;
|
@@ -4235,7 +4235,7 @@ export declare const contactContract: {
|
|
4235
4235
|
textValue: string | null;
|
4236
4236
|
booleanValue: boolean | null;
|
4237
4237
|
numberValue: number | null;
|
4238
|
-
dateValue:
|
4238
|
+
dateValue: string | null;
|
4239
4239
|
uploads: {
|
4240
4240
|
id: string;
|
4241
4241
|
createdAt: string;
|
@@ -4256,105 +4256,105 @@ export declare const contactContract: {
|
|
4256
4256
|
}>, "many">;
|
4257
4257
|
contactEmails: z.ZodArray<z.ZodObject<{
|
4258
4258
|
id: z.ZodString;
|
4259
|
-
createdAt: z.
|
4260
|
-
updatedAt: z.
|
4261
|
-
deletedAt: z.ZodNullable<z.
|
4259
|
+
createdAt: z.ZodString;
|
4260
|
+
updatedAt: z.ZodString;
|
4261
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4262
4262
|
email: z.ZodString;
|
4263
4263
|
isPrimary: z.ZodBoolean;
|
4264
4264
|
}, "strip", z.ZodTypeAny, {
|
4265
4265
|
id: string;
|
4266
4266
|
isPrimary: boolean;
|
4267
4267
|
email: string;
|
4268
|
-
createdAt:
|
4269
|
-
updatedAt:
|
4270
|
-
deletedAt:
|
4268
|
+
createdAt: string;
|
4269
|
+
updatedAt: string;
|
4270
|
+
deletedAt: string | null;
|
4271
4271
|
}, {
|
4272
4272
|
id: string;
|
4273
4273
|
isPrimary: boolean;
|
4274
4274
|
email: string;
|
4275
|
-
createdAt:
|
4276
|
-
updatedAt:
|
4277
|
-
deletedAt:
|
4275
|
+
createdAt: string;
|
4276
|
+
updatedAt: string;
|
4277
|
+
deletedAt: string | null;
|
4278
4278
|
}>, "many">;
|
4279
4279
|
contactPhones: z.ZodArray<z.ZodObject<{
|
4280
4280
|
id: z.ZodString;
|
4281
|
-
createdAt: z.
|
4282
|
-
updatedAt: z.
|
4283
|
-
deletedAt: z.ZodNullable<z.
|
4281
|
+
createdAt: z.ZodString;
|
4282
|
+
updatedAt: z.ZodString;
|
4283
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4284
4284
|
phone: z.ZodString;
|
4285
4285
|
isPrimary: z.ZodBoolean;
|
4286
4286
|
}, "strip", z.ZodTypeAny, {
|
4287
4287
|
id: string;
|
4288
4288
|
isPrimary: boolean;
|
4289
|
-
createdAt:
|
4290
|
-
updatedAt:
|
4291
|
-
deletedAt:
|
4289
|
+
createdAt: string;
|
4290
|
+
updatedAt: string;
|
4291
|
+
deletedAt: string | null;
|
4292
4292
|
phone: string;
|
4293
4293
|
}, {
|
4294
4294
|
id: string;
|
4295
4295
|
isPrimary: boolean;
|
4296
|
-
createdAt:
|
4297
|
-
updatedAt:
|
4298
|
-
deletedAt:
|
4296
|
+
createdAt: string;
|
4297
|
+
updatedAt: string;
|
4298
|
+
deletedAt: string | null;
|
4299
4299
|
phone: string;
|
4300
4300
|
}>, "many">;
|
4301
4301
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
4302
4302
|
id: z.ZodString;
|
4303
|
-
createdAt: z.
|
4304
|
-
updatedAt: z.
|
4305
|
-
deletedAt: z.ZodNullable<z.
|
4303
|
+
createdAt: z.ZodString;
|
4304
|
+
updatedAt: z.ZodString;
|
4305
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4306
4306
|
entityId: z.ZodString;
|
4307
4307
|
description: z.ZodString;
|
4308
4308
|
entityType: z.ZodObject<{
|
4309
4309
|
id: z.ZodString;
|
4310
|
-
createdAt: z.
|
4311
|
-
updatedAt: z.
|
4312
|
-
deletedAt: z.ZodNullable<z.
|
4310
|
+
createdAt: z.ZodString;
|
4311
|
+
updatedAt: z.ZodString;
|
4312
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4313
4313
|
entity: z.ZodString;
|
4314
4314
|
description: z.ZodNullable<z.ZodString>;
|
4315
4315
|
}, "strip", z.ZodTypeAny, {
|
4316
4316
|
id: string;
|
4317
4317
|
description: string | null;
|
4318
|
-
createdAt:
|
4319
|
-
updatedAt:
|
4320
|
-
deletedAt:
|
4318
|
+
createdAt: string;
|
4319
|
+
updatedAt: string;
|
4320
|
+
deletedAt: string | null;
|
4321
4321
|
entity: string;
|
4322
4322
|
}, {
|
4323
4323
|
id: string;
|
4324
4324
|
description: string | null;
|
4325
|
-
createdAt:
|
4326
|
-
updatedAt:
|
4327
|
-
deletedAt:
|
4325
|
+
createdAt: string;
|
4326
|
+
updatedAt: string;
|
4327
|
+
deletedAt: string | null;
|
4328
4328
|
entity: string;
|
4329
4329
|
}>;
|
4330
4330
|
}, "strip", z.ZodTypeAny, {
|
4331
4331
|
id: string;
|
4332
4332
|
description: string;
|
4333
|
-
createdAt:
|
4334
|
-
updatedAt:
|
4335
|
-
deletedAt:
|
4333
|
+
createdAt: string;
|
4334
|
+
updatedAt: string;
|
4335
|
+
deletedAt: string | null;
|
4336
4336
|
entityId: string;
|
4337
4337
|
entityType: {
|
4338
4338
|
id: string;
|
4339
4339
|
description: string | null;
|
4340
|
-
createdAt:
|
4341
|
-
updatedAt:
|
4342
|
-
deletedAt:
|
4340
|
+
createdAt: string;
|
4341
|
+
updatedAt: string;
|
4342
|
+
deletedAt: string | null;
|
4343
4343
|
entity: string;
|
4344
4344
|
};
|
4345
4345
|
}, {
|
4346
4346
|
id: string;
|
4347
4347
|
description: string;
|
4348
|
-
createdAt:
|
4349
|
-
updatedAt:
|
4350
|
-
deletedAt:
|
4348
|
+
createdAt: string;
|
4349
|
+
updatedAt: string;
|
4350
|
+
deletedAt: string | null;
|
4351
4351
|
entityId: string;
|
4352
4352
|
entityType: {
|
4353
4353
|
id: string;
|
4354
4354
|
description: string | null;
|
4355
|
-
createdAt:
|
4356
|
-
updatedAt:
|
4357
|
-
deletedAt:
|
4355
|
+
createdAt: string;
|
4356
|
+
updatedAt: string;
|
4357
|
+
deletedAt: string | null;
|
4358
4358
|
entity: string;
|
4359
4359
|
};
|
4360
4360
|
}>, "many">>;
|
@@ -4363,14 +4363,14 @@ export declare const contactContract: {
|
|
4363
4363
|
channel: string | null;
|
4364
4364
|
address: string | null;
|
4365
4365
|
name: string;
|
4366
|
-
createdAt:
|
4367
|
-
updatedAt:
|
4368
|
-
deletedAt:
|
4366
|
+
createdAt: string;
|
4367
|
+
updatedAt: string;
|
4368
|
+
deletedAt: string | null;
|
4369
4369
|
customFields: {
|
4370
4370
|
id: string;
|
4371
|
-
createdAt:
|
4372
|
-
updatedAt:
|
4373
|
-
deletedAt:
|
4371
|
+
createdAt: string;
|
4372
|
+
updatedAt: string;
|
4373
|
+
deletedAt: string | null;
|
4374
4374
|
attribute: {
|
4375
4375
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4376
4376
|
id: string;
|
@@ -4388,7 +4388,7 @@ export declare const contactContract: {
|
|
4388
4388
|
textValue: string | null;
|
4389
4389
|
booleanValue: boolean | null;
|
4390
4390
|
numberValue: number | null;
|
4391
|
-
dateValue:
|
4391
|
+
dateValue: string | null;
|
4392
4392
|
uploads: {
|
4393
4393
|
id: string;
|
4394
4394
|
createdAt: string;
|
@@ -4431,31 +4431,31 @@ export declare const contactContract: {
|
|
4431
4431
|
id: string;
|
4432
4432
|
isPrimary: boolean;
|
4433
4433
|
email: string;
|
4434
|
-
createdAt:
|
4435
|
-
updatedAt:
|
4436
|
-
deletedAt:
|
4434
|
+
createdAt: string;
|
4435
|
+
updatedAt: string;
|
4436
|
+
deletedAt: string | null;
|
4437
4437
|
}[];
|
4438
4438
|
contactPhones: {
|
4439
4439
|
id: string;
|
4440
4440
|
isPrimary: boolean;
|
4441
|
-
createdAt:
|
4442
|
-
updatedAt:
|
4443
|
-
deletedAt:
|
4441
|
+
createdAt: string;
|
4442
|
+
updatedAt: string;
|
4443
|
+
deletedAt: string | null;
|
4444
4444
|
phone: string;
|
4445
4445
|
}[];
|
4446
4446
|
activityLogs?: {
|
4447
4447
|
id: string;
|
4448
4448
|
description: string;
|
4449
|
-
createdAt:
|
4450
|
-
updatedAt:
|
4451
|
-
deletedAt:
|
4449
|
+
createdAt: string;
|
4450
|
+
updatedAt: string;
|
4451
|
+
deletedAt: string | null;
|
4452
4452
|
entityId: string;
|
4453
4453
|
entityType: {
|
4454
4454
|
id: string;
|
4455
4455
|
description: string | null;
|
4456
|
-
createdAt:
|
4457
|
-
updatedAt:
|
4458
|
-
deletedAt:
|
4456
|
+
createdAt: string;
|
4457
|
+
updatedAt: string;
|
4458
|
+
deletedAt: string | null;
|
4459
4459
|
entity: string;
|
4460
4460
|
};
|
4461
4461
|
}[] | undefined;
|
@@ -4464,14 +4464,14 @@ export declare const contactContract: {
|
|
4464
4464
|
channel: string | null;
|
4465
4465
|
address: string | null;
|
4466
4466
|
name: string;
|
4467
|
-
createdAt:
|
4468
|
-
updatedAt:
|
4469
|
-
deletedAt:
|
4467
|
+
createdAt: string;
|
4468
|
+
updatedAt: string;
|
4469
|
+
deletedAt: string | null;
|
4470
4470
|
customFields: {
|
4471
4471
|
id: string;
|
4472
|
-
createdAt:
|
4473
|
-
updatedAt:
|
4474
|
-
deletedAt:
|
4472
|
+
createdAt: string;
|
4473
|
+
updatedAt: string;
|
4474
|
+
deletedAt: string | null;
|
4475
4475
|
attribute: {
|
4476
4476
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4477
4477
|
id: string;
|
@@ -4489,7 +4489,7 @@ export declare const contactContract: {
|
|
4489
4489
|
textValue: string | null;
|
4490
4490
|
booleanValue: boolean | null;
|
4491
4491
|
numberValue: number | null;
|
4492
|
-
dateValue:
|
4492
|
+
dateValue: string | null;
|
4493
4493
|
uploads: {
|
4494
4494
|
id: string;
|
4495
4495
|
createdAt: string;
|
@@ -4532,31 +4532,31 @@ export declare const contactContract: {
|
|
4532
4532
|
id: string;
|
4533
4533
|
isPrimary: boolean;
|
4534
4534
|
email: string;
|
4535
|
-
createdAt:
|
4536
|
-
updatedAt:
|
4537
|
-
deletedAt:
|
4535
|
+
createdAt: string;
|
4536
|
+
updatedAt: string;
|
4537
|
+
deletedAt: string | null;
|
4538
4538
|
}[];
|
4539
4539
|
contactPhones: {
|
4540
4540
|
id: string;
|
4541
4541
|
isPrimary: boolean;
|
4542
|
-
createdAt:
|
4543
|
-
updatedAt:
|
4544
|
-
deletedAt:
|
4542
|
+
createdAt: string;
|
4543
|
+
updatedAt: string;
|
4544
|
+
deletedAt: string | null;
|
4545
4545
|
phone: string;
|
4546
4546
|
}[];
|
4547
4547
|
activityLogs?: {
|
4548
4548
|
id: string;
|
4549
4549
|
description: string;
|
4550
|
-
createdAt:
|
4551
|
-
updatedAt:
|
4552
|
-
deletedAt:
|
4550
|
+
createdAt: string;
|
4551
|
+
updatedAt: string;
|
4552
|
+
deletedAt: string | null;
|
4553
4553
|
entityId: string;
|
4554
4554
|
entityType: {
|
4555
4555
|
id: string;
|
4556
4556
|
description: string | null;
|
4557
|
-
createdAt:
|
4558
|
-
updatedAt:
|
4559
|
-
deletedAt:
|
4557
|
+
createdAt: string;
|
4558
|
+
updatedAt: string;
|
4559
|
+
deletedAt: string | null;
|
4560
4560
|
entity: string;
|
4561
4561
|
};
|
4562
4562
|
}[] | undefined;
|
@@ -4567,14 +4567,14 @@ export declare const contactContract: {
|
|
4567
4567
|
channel: string | null;
|
4568
4568
|
address: string | null;
|
4569
4569
|
name: string;
|
4570
|
-
createdAt:
|
4571
|
-
updatedAt:
|
4572
|
-
deletedAt:
|
4570
|
+
createdAt: string;
|
4571
|
+
updatedAt: string;
|
4572
|
+
deletedAt: string | null;
|
4573
4573
|
customFields: {
|
4574
4574
|
id: string;
|
4575
|
-
createdAt:
|
4576
|
-
updatedAt:
|
4577
|
-
deletedAt:
|
4575
|
+
createdAt: string;
|
4576
|
+
updatedAt: string;
|
4577
|
+
deletedAt: string | null;
|
4578
4578
|
attribute: {
|
4579
4579
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4580
4580
|
id: string;
|
@@ -4592,7 +4592,7 @@ export declare const contactContract: {
|
|
4592
4592
|
textValue: string | null;
|
4593
4593
|
booleanValue: boolean | null;
|
4594
4594
|
numberValue: number | null;
|
4595
|
-
dateValue:
|
4595
|
+
dateValue: string | null;
|
4596
4596
|
uploads: {
|
4597
4597
|
id: string;
|
4598
4598
|
createdAt: string;
|
@@ -4635,31 +4635,31 @@ export declare const contactContract: {
|
|
4635
4635
|
id: string;
|
4636
4636
|
isPrimary: boolean;
|
4637
4637
|
email: string;
|
4638
|
-
createdAt:
|
4639
|
-
updatedAt:
|
4640
|
-
deletedAt:
|
4638
|
+
createdAt: string;
|
4639
|
+
updatedAt: string;
|
4640
|
+
deletedAt: string | null;
|
4641
4641
|
}[];
|
4642
4642
|
contactPhones: {
|
4643
4643
|
id: string;
|
4644
4644
|
isPrimary: boolean;
|
4645
|
-
createdAt:
|
4646
|
-
updatedAt:
|
4647
|
-
deletedAt:
|
4645
|
+
createdAt: string;
|
4646
|
+
updatedAt: string;
|
4647
|
+
deletedAt: string | null;
|
4648
4648
|
phone: string;
|
4649
4649
|
}[];
|
4650
4650
|
activityLogs?: {
|
4651
4651
|
id: string;
|
4652
4652
|
description: string;
|
4653
|
-
createdAt:
|
4654
|
-
updatedAt:
|
4655
|
-
deletedAt:
|
4653
|
+
createdAt: string;
|
4654
|
+
updatedAt: string;
|
4655
|
+
deletedAt: string | null;
|
4656
4656
|
entityId: string;
|
4657
4657
|
entityType: {
|
4658
4658
|
id: string;
|
4659
4659
|
description: string | null;
|
4660
|
-
createdAt:
|
4661
|
-
updatedAt:
|
4662
|
-
deletedAt:
|
4660
|
+
createdAt: string;
|
4661
|
+
updatedAt: string;
|
4662
|
+
deletedAt: string | null;
|
4663
4663
|
entity: string;
|
4664
4664
|
};
|
4665
4665
|
}[] | undefined;
|
@@ -4671,14 +4671,14 @@ export declare const contactContract: {
|
|
4671
4671
|
channel: string | null;
|
4672
4672
|
address: string | null;
|
4673
4673
|
name: string;
|
4674
|
-
createdAt:
|
4675
|
-
updatedAt:
|
4676
|
-
deletedAt:
|
4674
|
+
createdAt: string;
|
4675
|
+
updatedAt: string;
|
4676
|
+
deletedAt: string | null;
|
4677
4677
|
customFields: {
|
4678
4678
|
id: string;
|
4679
|
-
createdAt:
|
4680
|
-
updatedAt:
|
4681
|
-
deletedAt:
|
4679
|
+
createdAt: string;
|
4680
|
+
updatedAt: string;
|
4681
|
+
deletedAt: string | null;
|
4682
4682
|
attribute: {
|
4683
4683
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
4684
4684
|
id: string;
|
@@ -4696,7 +4696,7 @@ export declare const contactContract: {
|
|
4696
4696
|
textValue: string | null;
|
4697
4697
|
booleanValue: boolean | null;
|
4698
4698
|
numberValue: number | null;
|
4699
|
-
dateValue:
|
4699
|
+
dateValue: string | null;
|
4700
4700
|
uploads: {
|
4701
4701
|
id: string;
|
4702
4702
|
createdAt: string;
|
@@ -4739,31 +4739,31 @@ export declare const contactContract: {
|
|
4739
4739
|
id: string;
|
4740
4740
|
isPrimary: boolean;
|
4741
4741
|
email: string;
|
4742
|
-
createdAt:
|
4743
|
-
updatedAt:
|
4744
|
-
deletedAt:
|
4742
|
+
createdAt: string;
|
4743
|
+
updatedAt: string;
|
4744
|
+
deletedAt: string | null;
|
4745
4745
|
}[];
|
4746
4746
|
contactPhones: {
|
4747
4747
|
id: string;
|
4748
4748
|
isPrimary: boolean;
|
4749
|
-
createdAt:
|
4750
|
-
updatedAt:
|
4751
|
-
deletedAt:
|
4749
|
+
createdAt: string;
|
4750
|
+
updatedAt: string;
|
4751
|
+
deletedAt: string | null;
|
4752
4752
|
phone: string;
|
4753
4753
|
}[];
|
4754
4754
|
activityLogs?: {
|
4755
4755
|
id: string;
|
4756
4756
|
description: string;
|
4757
|
-
createdAt:
|
4758
|
-
updatedAt:
|
4759
|
-
deletedAt:
|
4757
|
+
createdAt: string;
|
4758
|
+
updatedAt: string;
|
4759
|
+
deletedAt: string | null;
|
4760
4760
|
entityId: string;
|
4761
4761
|
entityType: {
|
4762
4762
|
id: string;
|
4763
4763
|
description: string | null;
|
4764
|
-
createdAt:
|
4765
|
-
updatedAt:
|
4766
|
-
deletedAt:
|
4764
|
+
createdAt: string;
|
4765
|
+
updatedAt: string;
|
4766
|
+
deletedAt: string | null;
|
4767
4767
|
entity: string;
|
4768
4768
|
};
|
4769
4769
|
}[] | undefined;
|
@@ -4947,9 +4947,9 @@ export declare const contactContract: {
|
|
4947
4947
|
requestId: z.ZodString;
|
4948
4948
|
data: z.ZodObject<{
|
4949
4949
|
id: z.ZodString;
|
4950
|
-
createdAt: z.
|
4951
|
-
updatedAt: z.
|
4952
|
-
deletedAt: z.ZodNullable<z.
|
4950
|
+
createdAt: z.ZodString;
|
4951
|
+
updatedAt: z.ZodString;
|
4952
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
4953
4953
|
name: z.ZodString;
|
4954
4954
|
address: z.ZodNullable<z.ZodString>;
|
4955
4955
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -4992,7 +4992,7 @@ export declare const contactContract: {
|
|
4992
4992
|
textValue: z.ZodNullable<z.ZodString>;
|
4993
4993
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
4994
4994
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
4995
|
-
dateValue: z.ZodNullable<z.
|
4995
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
4996
4996
|
attribute: z.ZodObject<Omit<{
|
4997
4997
|
id: z.ZodString;
|
4998
4998
|
createdAt: z.ZodString;
|
@@ -5096,7 +5096,7 @@ export declare const contactContract: {
|
|
5096
5096
|
textValue: string | null;
|
5097
5097
|
booleanValue: boolean | null;
|
5098
5098
|
numberValue: number | null;
|
5099
|
-
dateValue:
|
5099
|
+
dateValue: string | null;
|
5100
5100
|
}, {
|
5101
5101
|
id: string;
|
5102
5102
|
createdAt: string;
|
@@ -5119,7 +5119,7 @@ export declare const contactContract: {
|
|
5119
5119
|
textValue: string | null;
|
5120
5120
|
booleanValue: boolean | null;
|
5121
5121
|
numberValue: number | null;
|
5122
|
-
dateValue:
|
5122
|
+
dateValue: string | null;
|
5123
5123
|
}>, "many">>;
|
5124
5124
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
5125
5125
|
id: string;
|
@@ -5142,13 +5142,13 @@ export declare const contactContract: {
|
|
5142
5142
|
}>>;
|
5143
5143
|
customFields: z.ZodArray<z.ZodObject<{
|
5144
5144
|
id: z.ZodString;
|
5145
|
-
createdAt: z.
|
5146
|
-
updatedAt: z.
|
5147
|
-
deletedAt: z.ZodNullable<z.
|
5145
|
+
createdAt: z.ZodString;
|
5146
|
+
updatedAt: z.ZodString;
|
5147
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5148
5148
|
textValue: z.ZodNullable<z.ZodString>;
|
5149
5149
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
5150
5150
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
5151
|
-
dateValue: z.ZodNullable<z.
|
5151
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
5152
5152
|
attribute: z.ZodObject<Omit<{
|
5153
5153
|
id: z.ZodString;
|
5154
5154
|
createdAt: z.ZodString;
|
@@ -5299,9 +5299,9 @@ export declare const contactContract: {
|
|
5299
5299
|
}>, "many">;
|
5300
5300
|
}, "strip", z.ZodTypeAny, {
|
5301
5301
|
id: string;
|
5302
|
-
createdAt:
|
5303
|
-
updatedAt:
|
5304
|
-
deletedAt:
|
5302
|
+
createdAt: string;
|
5303
|
+
updatedAt: string;
|
5304
|
+
deletedAt: string | null;
|
5305
5305
|
attribute: {
|
5306
5306
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5307
5307
|
id: string;
|
@@ -5319,7 +5319,7 @@ export declare const contactContract: {
|
|
5319
5319
|
textValue: string | null;
|
5320
5320
|
booleanValue: boolean | null;
|
5321
5321
|
numberValue: number | null;
|
5322
|
-
dateValue:
|
5322
|
+
dateValue: string | null;
|
5323
5323
|
uploads: {
|
5324
5324
|
id: string;
|
5325
5325
|
createdAt: string;
|
@@ -5339,9 +5339,9 @@ export declare const contactContract: {
|
|
5339
5339
|
}[];
|
5340
5340
|
}, {
|
5341
5341
|
id: string;
|
5342
|
-
createdAt:
|
5343
|
-
updatedAt:
|
5344
|
-
deletedAt:
|
5342
|
+
createdAt: string;
|
5343
|
+
updatedAt: string;
|
5344
|
+
deletedAt: string | null;
|
5345
5345
|
attribute: {
|
5346
5346
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5347
5347
|
id: string;
|
@@ -5359,7 +5359,7 @@ export declare const contactContract: {
|
|
5359
5359
|
textValue: string | null;
|
5360
5360
|
booleanValue: boolean | null;
|
5361
5361
|
numberValue: number | null;
|
5362
|
-
dateValue:
|
5362
|
+
dateValue: string | null;
|
5363
5363
|
uploads: {
|
5364
5364
|
id: string;
|
5365
5365
|
createdAt: string;
|
@@ -5380,105 +5380,105 @@ export declare const contactContract: {
|
|
5380
5380
|
}>, "many">;
|
5381
5381
|
contactEmails: z.ZodArray<z.ZodObject<{
|
5382
5382
|
id: z.ZodString;
|
5383
|
-
createdAt: z.
|
5384
|
-
updatedAt: z.
|
5385
|
-
deletedAt: z.ZodNullable<z.
|
5383
|
+
createdAt: z.ZodString;
|
5384
|
+
updatedAt: z.ZodString;
|
5385
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5386
5386
|
email: z.ZodString;
|
5387
5387
|
isPrimary: z.ZodBoolean;
|
5388
5388
|
}, "strip", z.ZodTypeAny, {
|
5389
5389
|
id: string;
|
5390
5390
|
isPrimary: boolean;
|
5391
5391
|
email: string;
|
5392
|
-
createdAt:
|
5393
|
-
updatedAt:
|
5394
|
-
deletedAt:
|
5392
|
+
createdAt: string;
|
5393
|
+
updatedAt: string;
|
5394
|
+
deletedAt: string | null;
|
5395
5395
|
}, {
|
5396
5396
|
id: string;
|
5397
5397
|
isPrimary: boolean;
|
5398
5398
|
email: string;
|
5399
|
-
createdAt:
|
5400
|
-
updatedAt:
|
5401
|
-
deletedAt:
|
5399
|
+
createdAt: string;
|
5400
|
+
updatedAt: string;
|
5401
|
+
deletedAt: string | null;
|
5402
5402
|
}>, "many">;
|
5403
5403
|
contactPhones: z.ZodArray<z.ZodObject<{
|
5404
5404
|
id: z.ZodString;
|
5405
|
-
createdAt: z.
|
5406
|
-
updatedAt: z.
|
5407
|
-
deletedAt: z.ZodNullable<z.
|
5405
|
+
createdAt: z.ZodString;
|
5406
|
+
updatedAt: z.ZodString;
|
5407
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5408
5408
|
phone: z.ZodString;
|
5409
5409
|
isPrimary: z.ZodBoolean;
|
5410
5410
|
}, "strip", z.ZodTypeAny, {
|
5411
5411
|
id: string;
|
5412
5412
|
isPrimary: boolean;
|
5413
|
-
createdAt:
|
5414
|
-
updatedAt:
|
5415
|
-
deletedAt:
|
5413
|
+
createdAt: string;
|
5414
|
+
updatedAt: string;
|
5415
|
+
deletedAt: string | null;
|
5416
5416
|
phone: string;
|
5417
5417
|
}, {
|
5418
5418
|
id: string;
|
5419
5419
|
isPrimary: boolean;
|
5420
|
-
createdAt:
|
5421
|
-
updatedAt:
|
5422
|
-
deletedAt:
|
5420
|
+
createdAt: string;
|
5421
|
+
updatedAt: string;
|
5422
|
+
deletedAt: string | null;
|
5423
5423
|
phone: string;
|
5424
5424
|
}>, "many">;
|
5425
5425
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5426
5426
|
id: z.ZodString;
|
5427
|
-
createdAt: z.
|
5428
|
-
updatedAt: z.
|
5429
|
-
deletedAt: z.ZodNullable<z.
|
5427
|
+
createdAt: z.ZodString;
|
5428
|
+
updatedAt: z.ZodString;
|
5429
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5430
5430
|
entityId: z.ZodString;
|
5431
5431
|
description: z.ZodString;
|
5432
5432
|
entityType: z.ZodObject<{
|
5433
5433
|
id: z.ZodString;
|
5434
|
-
createdAt: z.
|
5435
|
-
updatedAt: z.
|
5436
|
-
deletedAt: z.ZodNullable<z.
|
5434
|
+
createdAt: z.ZodString;
|
5435
|
+
updatedAt: z.ZodString;
|
5436
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5437
5437
|
entity: z.ZodString;
|
5438
5438
|
description: z.ZodNullable<z.ZodString>;
|
5439
5439
|
}, "strip", z.ZodTypeAny, {
|
5440
5440
|
id: string;
|
5441
5441
|
description: string | null;
|
5442
|
-
createdAt:
|
5443
|
-
updatedAt:
|
5444
|
-
deletedAt:
|
5442
|
+
createdAt: string;
|
5443
|
+
updatedAt: string;
|
5444
|
+
deletedAt: string | null;
|
5445
5445
|
entity: string;
|
5446
5446
|
}, {
|
5447
5447
|
id: string;
|
5448
5448
|
description: string | null;
|
5449
|
-
createdAt:
|
5450
|
-
updatedAt:
|
5451
|
-
deletedAt:
|
5449
|
+
createdAt: string;
|
5450
|
+
updatedAt: string;
|
5451
|
+
deletedAt: string | null;
|
5452
5452
|
entity: string;
|
5453
5453
|
}>;
|
5454
5454
|
}, "strip", z.ZodTypeAny, {
|
5455
5455
|
id: string;
|
5456
5456
|
description: string;
|
5457
|
-
createdAt:
|
5458
|
-
updatedAt:
|
5459
|
-
deletedAt:
|
5457
|
+
createdAt: string;
|
5458
|
+
updatedAt: string;
|
5459
|
+
deletedAt: string | null;
|
5460
5460
|
entityId: string;
|
5461
5461
|
entityType: {
|
5462
5462
|
id: string;
|
5463
5463
|
description: string | null;
|
5464
|
-
createdAt:
|
5465
|
-
updatedAt:
|
5466
|
-
deletedAt:
|
5464
|
+
createdAt: string;
|
5465
|
+
updatedAt: string;
|
5466
|
+
deletedAt: string | null;
|
5467
5467
|
entity: string;
|
5468
5468
|
};
|
5469
5469
|
}, {
|
5470
5470
|
id: string;
|
5471
5471
|
description: string;
|
5472
|
-
createdAt:
|
5473
|
-
updatedAt:
|
5474
|
-
deletedAt:
|
5472
|
+
createdAt: string;
|
5473
|
+
updatedAt: string;
|
5474
|
+
deletedAt: string | null;
|
5475
5475
|
entityId: string;
|
5476
5476
|
entityType: {
|
5477
5477
|
id: string;
|
5478
5478
|
description: string | null;
|
5479
|
-
createdAt:
|
5480
|
-
updatedAt:
|
5481
|
-
deletedAt:
|
5479
|
+
createdAt: string;
|
5480
|
+
updatedAt: string;
|
5481
|
+
deletedAt: string | null;
|
5482
5482
|
entity: string;
|
5483
5483
|
};
|
5484
5484
|
}>, "many">>;
|
@@ -5487,14 +5487,14 @@ export declare const contactContract: {
|
|
5487
5487
|
channel: string | null;
|
5488
5488
|
address: string | null;
|
5489
5489
|
name: string;
|
5490
|
-
createdAt:
|
5491
|
-
updatedAt:
|
5492
|
-
deletedAt:
|
5490
|
+
createdAt: string;
|
5491
|
+
updatedAt: string;
|
5492
|
+
deletedAt: string | null;
|
5493
5493
|
customFields: {
|
5494
5494
|
id: string;
|
5495
|
-
createdAt:
|
5496
|
-
updatedAt:
|
5497
|
-
deletedAt:
|
5495
|
+
createdAt: string;
|
5496
|
+
updatedAt: string;
|
5497
|
+
deletedAt: string | null;
|
5498
5498
|
attribute: {
|
5499
5499
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5500
5500
|
id: string;
|
@@ -5512,7 +5512,7 @@ export declare const contactContract: {
|
|
5512
5512
|
textValue: string | null;
|
5513
5513
|
booleanValue: boolean | null;
|
5514
5514
|
numberValue: number | null;
|
5515
|
-
dateValue:
|
5515
|
+
dateValue: string | null;
|
5516
5516
|
uploads: {
|
5517
5517
|
id: string;
|
5518
5518
|
createdAt: string;
|
@@ -5555,31 +5555,31 @@ export declare const contactContract: {
|
|
5555
5555
|
id: string;
|
5556
5556
|
isPrimary: boolean;
|
5557
5557
|
email: string;
|
5558
|
-
createdAt:
|
5559
|
-
updatedAt:
|
5560
|
-
deletedAt:
|
5558
|
+
createdAt: string;
|
5559
|
+
updatedAt: string;
|
5560
|
+
deletedAt: string | null;
|
5561
5561
|
}[];
|
5562
5562
|
contactPhones: {
|
5563
5563
|
id: string;
|
5564
5564
|
isPrimary: boolean;
|
5565
|
-
createdAt:
|
5566
|
-
updatedAt:
|
5567
|
-
deletedAt:
|
5565
|
+
createdAt: string;
|
5566
|
+
updatedAt: string;
|
5567
|
+
deletedAt: string | null;
|
5568
5568
|
phone: string;
|
5569
5569
|
}[];
|
5570
5570
|
activityLogs?: {
|
5571
5571
|
id: string;
|
5572
5572
|
description: string;
|
5573
|
-
createdAt:
|
5574
|
-
updatedAt:
|
5575
|
-
deletedAt:
|
5573
|
+
createdAt: string;
|
5574
|
+
updatedAt: string;
|
5575
|
+
deletedAt: string | null;
|
5576
5576
|
entityId: string;
|
5577
5577
|
entityType: {
|
5578
5578
|
id: string;
|
5579
5579
|
description: string | null;
|
5580
|
-
createdAt:
|
5581
|
-
updatedAt:
|
5582
|
-
deletedAt:
|
5580
|
+
createdAt: string;
|
5581
|
+
updatedAt: string;
|
5582
|
+
deletedAt: string | null;
|
5583
5583
|
entity: string;
|
5584
5584
|
};
|
5585
5585
|
}[] | undefined;
|
@@ -5588,14 +5588,14 @@ export declare const contactContract: {
|
|
5588
5588
|
channel: string | null;
|
5589
5589
|
address: string | null;
|
5590
5590
|
name: string;
|
5591
|
-
createdAt:
|
5592
|
-
updatedAt:
|
5593
|
-
deletedAt:
|
5591
|
+
createdAt: string;
|
5592
|
+
updatedAt: string;
|
5593
|
+
deletedAt: string | null;
|
5594
5594
|
customFields: {
|
5595
5595
|
id: string;
|
5596
|
-
createdAt:
|
5597
|
-
updatedAt:
|
5598
|
-
deletedAt:
|
5596
|
+
createdAt: string;
|
5597
|
+
updatedAt: string;
|
5598
|
+
deletedAt: string | null;
|
5599
5599
|
attribute: {
|
5600
5600
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5601
5601
|
id: string;
|
@@ -5613,7 +5613,7 @@ export declare const contactContract: {
|
|
5613
5613
|
textValue: string | null;
|
5614
5614
|
booleanValue: boolean | null;
|
5615
5615
|
numberValue: number | null;
|
5616
|
-
dateValue:
|
5616
|
+
dateValue: string | null;
|
5617
5617
|
uploads: {
|
5618
5618
|
id: string;
|
5619
5619
|
createdAt: string;
|
@@ -5656,31 +5656,31 @@ export declare const contactContract: {
|
|
5656
5656
|
id: string;
|
5657
5657
|
isPrimary: boolean;
|
5658
5658
|
email: string;
|
5659
|
-
createdAt:
|
5660
|
-
updatedAt:
|
5661
|
-
deletedAt:
|
5659
|
+
createdAt: string;
|
5660
|
+
updatedAt: string;
|
5661
|
+
deletedAt: string | null;
|
5662
5662
|
}[];
|
5663
5663
|
contactPhones: {
|
5664
5664
|
id: string;
|
5665
5665
|
isPrimary: boolean;
|
5666
|
-
createdAt:
|
5667
|
-
updatedAt:
|
5668
|
-
deletedAt:
|
5666
|
+
createdAt: string;
|
5667
|
+
updatedAt: string;
|
5668
|
+
deletedAt: string | null;
|
5669
5669
|
phone: string;
|
5670
5670
|
}[];
|
5671
5671
|
activityLogs?: {
|
5672
5672
|
id: string;
|
5673
5673
|
description: string;
|
5674
|
-
createdAt:
|
5675
|
-
updatedAt:
|
5676
|
-
deletedAt:
|
5674
|
+
createdAt: string;
|
5675
|
+
updatedAt: string;
|
5676
|
+
deletedAt: string | null;
|
5677
5677
|
entityId: string;
|
5678
5678
|
entityType: {
|
5679
5679
|
id: string;
|
5680
5680
|
description: string | null;
|
5681
|
-
createdAt:
|
5682
|
-
updatedAt:
|
5683
|
-
deletedAt:
|
5681
|
+
createdAt: string;
|
5682
|
+
updatedAt: string;
|
5683
|
+
deletedAt: string | null;
|
5684
5684
|
entity: string;
|
5685
5685
|
};
|
5686
5686
|
}[] | undefined;
|
@@ -5691,14 +5691,14 @@ export declare const contactContract: {
|
|
5691
5691
|
channel: string | null;
|
5692
5692
|
address: string | null;
|
5693
5693
|
name: string;
|
5694
|
-
createdAt:
|
5695
|
-
updatedAt:
|
5696
|
-
deletedAt:
|
5694
|
+
createdAt: string;
|
5695
|
+
updatedAt: string;
|
5696
|
+
deletedAt: string | null;
|
5697
5697
|
customFields: {
|
5698
5698
|
id: string;
|
5699
|
-
createdAt:
|
5700
|
-
updatedAt:
|
5701
|
-
deletedAt:
|
5699
|
+
createdAt: string;
|
5700
|
+
updatedAt: string;
|
5701
|
+
deletedAt: string | null;
|
5702
5702
|
attribute: {
|
5703
5703
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5704
5704
|
id: string;
|
@@ -5716,7 +5716,7 @@ export declare const contactContract: {
|
|
5716
5716
|
textValue: string | null;
|
5717
5717
|
booleanValue: boolean | null;
|
5718
5718
|
numberValue: number | null;
|
5719
|
-
dateValue:
|
5719
|
+
dateValue: string | null;
|
5720
5720
|
uploads: {
|
5721
5721
|
id: string;
|
5722
5722
|
createdAt: string;
|
@@ -5759,31 +5759,31 @@ export declare const contactContract: {
|
|
5759
5759
|
id: string;
|
5760
5760
|
isPrimary: boolean;
|
5761
5761
|
email: string;
|
5762
|
-
createdAt:
|
5763
|
-
updatedAt:
|
5764
|
-
deletedAt:
|
5762
|
+
createdAt: string;
|
5763
|
+
updatedAt: string;
|
5764
|
+
deletedAt: string | null;
|
5765
5765
|
}[];
|
5766
5766
|
contactPhones: {
|
5767
5767
|
id: string;
|
5768
5768
|
isPrimary: boolean;
|
5769
|
-
createdAt:
|
5770
|
-
updatedAt:
|
5771
|
-
deletedAt:
|
5769
|
+
createdAt: string;
|
5770
|
+
updatedAt: string;
|
5771
|
+
deletedAt: string | null;
|
5772
5772
|
phone: string;
|
5773
5773
|
}[];
|
5774
5774
|
activityLogs?: {
|
5775
5775
|
id: string;
|
5776
5776
|
description: string;
|
5777
|
-
createdAt:
|
5778
|
-
updatedAt:
|
5779
|
-
deletedAt:
|
5777
|
+
createdAt: string;
|
5778
|
+
updatedAt: string;
|
5779
|
+
deletedAt: string | null;
|
5780
5780
|
entityId: string;
|
5781
5781
|
entityType: {
|
5782
5782
|
id: string;
|
5783
5783
|
description: string | null;
|
5784
|
-
createdAt:
|
5785
|
-
updatedAt:
|
5786
|
-
deletedAt:
|
5784
|
+
createdAt: string;
|
5785
|
+
updatedAt: string;
|
5786
|
+
deletedAt: string | null;
|
5787
5787
|
entity: string;
|
5788
5788
|
};
|
5789
5789
|
}[] | undefined;
|
@@ -5795,14 +5795,14 @@ export declare const contactContract: {
|
|
5795
5795
|
channel: string | null;
|
5796
5796
|
address: string | null;
|
5797
5797
|
name: string;
|
5798
|
-
createdAt:
|
5799
|
-
updatedAt:
|
5800
|
-
deletedAt:
|
5798
|
+
createdAt: string;
|
5799
|
+
updatedAt: string;
|
5800
|
+
deletedAt: string | null;
|
5801
5801
|
customFields: {
|
5802
5802
|
id: string;
|
5803
|
-
createdAt:
|
5804
|
-
updatedAt:
|
5805
|
-
deletedAt:
|
5803
|
+
createdAt: string;
|
5804
|
+
updatedAt: string;
|
5805
|
+
deletedAt: string | null;
|
5806
5806
|
attribute: {
|
5807
5807
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
5808
5808
|
id: string;
|
@@ -5820,7 +5820,7 @@ export declare const contactContract: {
|
|
5820
5820
|
textValue: string | null;
|
5821
5821
|
booleanValue: boolean | null;
|
5822
5822
|
numberValue: number | null;
|
5823
|
-
dateValue:
|
5823
|
+
dateValue: string | null;
|
5824
5824
|
uploads: {
|
5825
5825
|
id: string;
|
5826
5826
|
createdAt: string;
|
@@ -5863,31 +5863,31 @@ export declare const contactContract: {
|
|
5863
5863
|
id: string;
|
5864
5864
|
isPrimary: boolean;
|
5865
5865
|
email: string;
|
5866
|
-
createdAt:
|
5867
|
-
updatedAt:
|
5868
|
-
deletedAt:
|
5866
|
+
createdAt: string;
|
5867
|
+
updatedAt: string;
|
5868
|
+
deletedAt: string | null;
|
5869
5869
|
}[];
|
5870
5870
|
contactPhones: {
|
5871
5871
|
id: string;
|
5872
5872
|
isPrimary: boolean;
|
5873
|
-
createdAt:
|
5874
|
-
updatedAt:
|
5875
|
-
deletedAt:
|
5873
|
+
createdAt: string;
|
5874
|
+
updatedAt: string;
|
5875
|
+
deletedAt: string | null;
|
5876
5876
|
phone: string;
|
5877
5877
|
}[];
|
5878
5878
|
activityLogs?: {
|
5879
5879
|
id: string;
|
5880
5880
|
description: string;
|
5881
|
-
createdAt:
|
5882
|
-
updatedAt:
|
5883
|
-
deletedAt:
|
5881
|
+
createdAt: string;
|
5882
|
+
updatedAt: string;
|
5883
|
+
deletedAt: string | null;
|
5884
5884
|
entityId: string;
|
5885
5885
|
entityType: {
|
5886
5886
|
id: string;
|
5887
5887
|
description: string | null;
|
5888
|
-
createdAt:
|
5889
|
-
updatedAt:
|
5890
|
-
deletedAt:
|
5888
|
+
createdAt: string;
|
5889
|
+
updatedAt: string;
|
5890
|
+
deletedAt: string | null;
|
5891
5891
|
entity: string;
|
5892
5892
|
};
|
5893
5893
|
}[] | undefined;
|
@@ -5946,7 +5946,7 @@ export declare const contactContract: {
|
|
5946
5946
|
error?: any;
|
5947
5947
|
}>;
|
5948
5948
|
};
|
5949
|
-
path: "
|
5949
|
+
path: "contactphone";
|
5950
5950
|
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
5951
5951
|
'x-tenant': z.ZodString;
|
5952
5952
|
authorization: z.ZodString;
|
@@ -5982,9 +5982,9 @@ export declare const contactContract: {
|
|
5982
5982
|
requestId: z.ZodString;
|
5983
5983
|
data: z.ZodObject<{
|
5984
5984
|
id: z.ZodString;
|
5985
|
-
createdAt: z.
|
5986
|
-
updatedAt: z.
|
5987
|
-
deletedAt: z.ZodNullable<z.
|
5985
|
+
createdAt: z.ZodString;
|
5986
|
+
updatedAt: z.ZodString;
|
5987
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
5988
5988
|
name: z.ZodString;
|
5989
5989
|
address: z.ZodNullable<z.ZodString>;
|
5990
5990
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -6027,7 +6027,7 @@ export declare const contactContract: {
|
|
6027
6027
|
textValue: z.ZodNullable<z.ZodString>;
|
6028
6028
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
6029
6029
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
6030
|
-
dateValue: z.ZodNullable<z.
|
6030
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
6031
6031
|
attribute: z.ZodObject<Omit<{
|
6032
6032
|
id: z.ZodString;
|
6033
6033
|
createdAt: z.ZodString;
|
@@ -6131,7 +6131,7 @@ export declare const contactContract: {
|
|
6131
6131
|
textValue: string | null;
|
6132
6132
|
booleanValue: boolean | null;
|
6133
6133
|
numberValue: number | null;
|
6134
|
-
dateValue:
|
6134
|
+
dateValue: string | null;
|
6135
6135
|
}, {
|
6136
6136
|
id: string;
|
6137
6137
|
createdAt: string;
|
@@ -6154,7 +6154,7 @@ export declare const contactContract: {
|
|
6154
6154
|
textValue: string | null;
|
6155
6155
|
booleanValue: boolean | null;
|
6156
6156
|
numberValue: number | null;
|
6157
|
-
dateValue:
|
6157
|
+
dateValue: string | null;
|
6158
6158
|
}>, "many">>;
|
6159
6159
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
6160
6160
|
id: string;
|
@@ -6177,13 +6177,13 @@ export declare const contactContract: {
|
|
6177
6177
|
}>>;
|
6178
6178
|
customFields: z.ZodArray<z.ZodObject<{
|
6179
6179
|
id: z.ZodString;
|
6180
|
-
createdAt: z.
|
6181
|
-
updatedAt: z.
|
6182
|
-
deletedAt: z.ZodNullable<z.
|
6180
|
+
createdAt: z.ZodString;
|
6181
|
+
updatedAt: z.ZodString;
|
6182
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
6183
6183
|
textValue: z.ZodNullable<z.ZodString>;
|
6184
6184
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
6185
6185
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
6186
|
-
dateValue: z.ZodNullable<z.
|
6186
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
6187
6187
|
attribute: z.ZodObject<Omit<{
|
6188
6188
|
id: z.ZodString;
|
6189
6189
|
createdAt: z.ZodString;
|
@@ -6334,9 +6334,9 @@ export declare const contactContract: {
|
|
6334
6334
|
}>, "many">;
|
6335
6335
|
}, "strip", z.ZodTypeAny, {
|
6336
6336
|
id: string;
|
6337
|
-
createdAt:
|
6338
|
-
updatedAt:
|
6339
|
-
deletedAt:
|
6337
|
+
createdAt: string;
|
6338
|
+
updatedAt: string;
|
6339
|
+
deletedAt: string | null;
|
6340
6340
|
attribute: {
|
6341
6341
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
6342
6342
|
id: string;
|
@@ -6354,7 +6354,7 @@ export declare const contactContract: {
|
|
6354
6354
|
textValue: string | null;
|
6355
6355
|
booleanValue: boolean | null;
|
6356
6356
|
numberValue: number | null;
|
6357
|
-
dateValue:
|
6357
|
+
dateValue: string | null;
|
6358
6358
|
uploads: {
|
6359
6359
|
id: string;
|
6360
6360
|
createdAt: string;
|
@@ -6374,9 +6374,9 @@ export declare const contactContract: {
|
|
6374
6374
|
}[];
|
6375
6375
|
}, {
|
6376
6376
|
id: string;
|
6377
|
-
createdAt:
|
6378
|
-
updatedAt:
|
6379
|
-
deletedAt:
|
6377
|
+
createdAt: string;
|
6378
|
+
updatedAt: string;
|
6379
|
+
deletedAt: string | null;
|
6380
6380
|
attribute: {
|
6381
6381
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
6382
6382
|
id: string;
|
@@ -6394,7 +6394,7 @@ export declare const contactContract: {
|
|
6394
6394
|
textValue: string | null;
|
6395
6395
|
booleanValue: boolean | null;
|
6396
6396
|
numberValue: number | null;
|
6397
|
-
dateValue:
|
6397
|
+
dateValue: string | null;
|
6398
6398
|
uploads: {
|
6399
6399
|
id: string;
|
6400
6400
|
createdAt: string;
|
@@ -6415,105 +6415,105 @@ export declare const contactContract: {
|
|
6415
6415
|
}>, "many">;
|
6416
6416
|
contactEmails: z.ZodArray<z.ZodObject<{
|
6417
6417
|
id: z.ZodString;
|
6418
|
-
createdAt: z.
|
6419
|
-
updatedAt: z.
|
6420
|
-
deletedAt: z.ZodNullable<z.
|
6418
|
+
createdAt: z.ZodString;
|
6419
|
+
updatedAt: z.ZodString;
|
6420
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
6421
6421
|
email: z.ZodString;
|
6422
6422
|
isPrimary: z.ZodBoolean;
|
6423
6423
|
}, "strip", z.ZodTypeAny, {
|
6424
6424
|
id: string;
|
6425
6425
|
isPrimary: boolean;
|
6426
6426
|
email: string;
|
6427
|
-
createdAt:
|
6428
|
-
updatedAt:
|
6429
|
-
deletedAt:
|
6427
|
+
createdAt: string;
|
6428
|
+
updatedAt: string;
|
6429
|
+
deletedAt: string | null;
|
6430
6430
|
}, {
|
6431
6431
|
id: string;
|
6432
6432
|
isPrimary: boolean;
|
6433
6433
|
email: string;
|
6434
|
-
createdAt:
|
6435
|
-
updatedAt:
|
6436
|
-
deletedAt:
|
6434
|
+
createdAt: string;
|
6435
|
+
updatedAt: string;
|
6436
|
+
deletedAt: string | null;
|
6437
6437
|
}>, "many">;
|
6438
6438
|
contactPhones: z.ZodArray<z.ZodObject<{
|
6439
6439
|
id: z.ZodString;
|
6440
|
-
createdAt: z.
|
6441
|
-
updatedAt: z.
|
6442
|
-
deletedAt: z.ZodNullable<z.
|
6440
|
+
createdAt: z.ZodString;
|
6441
|
+
updatedAt: z.ZodString;
|
6442
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
6443
6443
|
phone: z.ZodString;
|
6444
6444
|
isPrimary: z.ZodBoolean;
|
6445
6445
|
}, "strip", z.ZodTypeAny, {
|
6446
6446
|
id: string;
|
6447
6447
|
isPrimary: boolean;
|
6448
|
-
createdAt:
|
6449
|
-
updatedAt:
|
6450
|
-
deletedAt:
|
6448
|
+
createdAt: string;
|
6449
|
+
updatedAt: string;
|
6450
|
+
deletedAt: string | null;
|
6451
6451
|
phone: string;
|
6452
6452
|
}, {
|
6453
6453
|
id: string;
|
6454
6454
|
isPrimary: boolean;
|
6455
|
-
createdAt:
|
6456
|
-
updatedAt:
|
6457
|
-
deletedAt:
|
6455
|
+
createdAt: string;
|
6456
|
+
updatedAt: string;
|
6457
|
+
deletedAt: string | null;
|
6458
6458
|
phone: string;
|
6459
6459
|
}>, "many">;
|
6460
6460
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
6461
6461
|
id: z.ZodString;
|
6462
|
-
createdAt: z.
|
6463
|
-
updatedAt: z.
|
6464
|
-
deletedAt: z.ZodNullable<z.
|
6462
|
+
createdAt: z.ZodString;
|
6463
|
+
updatedAt: z.ZodString;
|
6464
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
6465
6465
|
entityId: z.ZodString;
|
6466
6466
|
description: z.ZodString;
|
6467
6467
|
entityType: z.ZodObject<{
|
6468
6468
|
id: z.ZodString;
|
6469
|
-
createdAt: z.
|
6470
|
-
updatedAt: z.
|
6471
|
-
deletedAt: z.ZodNullable<z.
|
6469
|
+
createdAt: z.ZodString;
|
6470
|
+
updatedAt: z.ZodString;
|
6471
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
6472
6472
|
entity: z.ZodString;
|
6473
6473
|
description: z.ZodNullable<z.ZodString>;
|
6474
6474
|
}, "strip", z.ZodTypeAny, {
|
6475
6475
|
id: string;
|
6476
6476
|
description: string | null;
|
6477
|
-
createdAt:
|
6478
|
-
updatedAt:
|
6479
|
-
deletedAt:
|
6477
|
+
createdAt: string;
|
6478
|
+
updatedAt: string;
|
6479
|
+
deletedAt: string | null;
|
6480
6480
|
entity: string;
|
6481
6481
|
}, {
|
6482
6482
|
id: string;
|
6483
6483
|
description: string | null;
|
6484
|
-
createdAt:
|
6485
|
-
updatedAt:
|
6486
|
-
deletedAt:
|
6484
|
+
createdAt: string;
|
6485
|
+
updatedAt: string;
|
6486
|
+
deletedAt: string | null;
|
6487
6487
|
entity: string;
|
6488
6488
|
}>;
|
6489
6489
|
}, "strip", z.ZodTypeAny, {
|
6490
6490
|
id: string;
|
6491
6491
|
description: string;
|
6492
|
-
createdAt:
|
6493
|
-
updatedAt:
|
6494
|
-
deletedAt:
|
6492
|
+
createdAt: string;
|
6493
|
+
updatedAt: string;
|
6494
|
+
deletedAt: string | null;
|
6495
6495
|
entityId: string;
|
6496
6496
|
entityType: {
|
6497
6497
|
id: string;
|
6498
6498
|
description: string | null;
|
6499
|
-
createdAt:
|
6500
|
-
updatedAt:
|
6501
|
-
deletedAt:
|
6499
|
+
createdAt: string;
|
6500
|
+
updatedAt: string;
|
6501
|
+
deletedAt: string | null;
|
6502
6502
|
entity: string;
|
6503
6503
|
};
|
6504
6504
|
}, {
|
6505
6505
|
id: string;
|
6506
6506
|
description: string;
|
6507
|
-
createdAt:
|
6508
|
-
updatedAt:
|
6509
|
-
deletedAt:
|
6507
|
+
createdAt: string;
|
6508
|
+
updatedAt: string;
|
6509
|
+
deletedAt: string | null;
|
6510
6510
|
entityId: string;
|
6511
6511
|
entityType: {
|
6512
6512
|
id: string;
|
6513
6513
|
description: string | null;
|
6514
|
-
createdAt:
|
6515
|
-
updatedAt:
|
6516
|
-
deletedAt:
|
6514
|
+
createdAt: string;
|
6515
|
+
updatedAt: string;
|
6516
|
+
deletedAt: string | null;
|
6517
6517
|
entity: string;
|
6518
6518
|
};
|
6519
6519
|
}>, "many">>;
|
@@ -6522,14 +6522,14 @@ export declare const contactContract: {
|
|
6522
6522
|
channel: string | null;
|
6523
6523
|
address: string | null;
|
6524
6524
|
name: string;
|
6525
|
-
createdAt:
|
6526
|
-
updatedAt:
|
6527
|
-
deletedAt:
|
6525
|
+
createdAt: string;
|
6526
|
+
updatedAt: string;
|
6527
|
+
deletedAt: string | null;
|
6528
6528
|
customFields: {
|
6529
6529
|
id: string;
|
6530
|
-
createdAt:
|
6531
|
-
updatedAt:
|
6532
|
-
deletedAt:
|
6530
|
+
createdAt: string;
|
6531
|
+
updatedAt: string;
|
6532
|
+
deletedAt: string | null;
|
6533
6533
|
attribute: {
|
6534
6534
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
6535
6535
|
id: string;
|
@@ -6547,7 +6547,7 @@ export declare const contactContract: {
|
|
6547
6547
|
textValue: string | null;
|
6548
6548
|
booleanValue: boolean | null;
|
6549
6549
|
numberValue: number | null;
|
6550
|
-
dateValue:
|
6550
|
+
dateValue: string | null;
|
6551
6551
|
uploads: {
|
6552
6552
|
id: string;
|
6553
6553
|
createdAt: string;
|
@@ -6590,31 +6590,31 @@ export declare const contactContract: {
|
|
6590
6590
|
id: string;
|
6591
6591
|
isPrimary: boolean;
|
6592
6592
|
email: string;
|
6593
|
-
createdAt:
|
6594
|
-
updatedAt:
|
6595
|
-
deletedAt:
|
6593
|
+
createdAt: string;
|
6594
|
+
updatedAt: string;
|
6595
|
+
deletedAt: string | null;
|
6596
6596
|
}[];
|
6597
6597
|
contactPhones: {
|
6598
6598
|
id: string;
|
6599
6599
|
isPrimary: boolean;
|
6600
|
-
createdAt:
|
6601
|
-
updatedAt:
|
6602
|
-
deletedAt:
|
6600
|
+
createdAt: string;
|
6601
|
+
updatedAt: string;
|
6602
|
+
deletedAt: string | null;
|
6603
6603
|
phone: string;
|
6604
6604
|
}[];
|
6605
6605
|
activityLogs?: {
|
6606
6606
|
id: string;
|
6607
6607
|
description: string;
|
6608
|
-
createdAt:
|
6609
|
-
updatedAt:
|
6610
|
-
deletedAt:
|
6608
|
+
createdAt: string;
|
6609
|
+
updatedAt: string;
|
6610
|
+
deletedAt: string | null;
|
6611
6611
|
entityId: string;
|
6612
6612
|
entityType: {
|
6613
6613
|
id: string;
|
6614
6614
|
description: string | null;
|
6615
|
-
createdAt:
|
6616
|
-
updatedAt:
|
6617
|
-
deletedAt:
|
6615
|
+
createdAt: string;
|
6616
|
+
updatedAt: string;
|
6617
|
+
deletedAt: string | null;
|
6618
6618
|
entity: string;
|
6619
6619
|
};
|
6620
6620
|
}[] | undefined;
|
@@ -6623,14 +6623,14 @@ export declare const contactContract: {
|
|
6623
6623
|
channel: string | null;
|
6624
6624
|
address: string | null;
|
6625
6625
|
name: string;
|
6626
|
-
createdAt:
|
6627
|
-
updatedAt:
|
6628
|
-
deletedAt:
|
6626
|
+
createdAt: string;
|
6627
|
+
updatedAt: string;
|
6628
|
+
deletedAt: string | null;
|
6629
6629
|
customFields: {
|
6630
6630
|
id: string;
|
6631
|
-
createdAt:
|
6632
|
-
updatedAt:
|
6633
|
-
deletedAt:
|
6631
|
+
createdAt: string;
|
6632
|
+
updatedAt: string;
|
6633
|
+
deletedAt: string | null;
|
6634
6634
|
attribute: {
|
6635
6635
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
6636
6636
|
id: string;
|
@@ -6648,7 +6648,7 @@ export declare const contactContract: {
|
|
6648
6648
|
textValue: string | null;
|
6649
6649
|
booleanValue: boolean | null;
|
6650
6650
|
numberValue: number | null;
|
6651
|
-
dateValue:
|
6651
|
+
dateValue: string | null;
|
6652
6652
|
uploads: {
|
6653
6653
|
id: string;
|
6654
6654
|
createdAt: string;
|
@@ -6691,31 +6691,31 @@ export declare const contactContract: {
|
|
6691
6691
|
id: string;
|
6692
6692
|
isPrimary: boolean;
|
6693
6693
|
email: string;
|
6694
|
-
createdAt:
|
6695
|
-
updatedAt:
|
6696
|
-
deletedAt:
|
6694
|
+
createdAt: string;
|
6695
|
+
updatedAt: string;
|
6696
|
+
deletedAt: string | null;
|
6697
6697
|
}[];
|
6698
6698
|
contactPhones: {
|
6699
6699
|
id: string;
|
6700
6700
|
isPrimary: boolean;
|
6701
|
-
createdAt:
|
6702
|
-
updatedAt:
|
6703
|
-
deletedAt:
|
6701
|
+
createdAt: string;
|
6702
|
+
updatedAt: string;
|
6703
|
+
deletedAt: string | null;
|
6704
6704
|
phone: string;
|
6705
6705
|
}[];
|
6706
6706
|
activityLogs?: {
|
6707
6707
|
id: string;
|
6708
6708
|
description: string;
|
6709
|
-
createdAt:
|
6710
|
-
updatedAt:
|
6711
|
-
deletedAt:
|
6709
|
+
createdAt: string;
|
6710
|
+
updatedAt: string;
|
6711
|
+
deletedAt: string | null;
|
6712
6712
|
entityId: string;
|
6713
6713
|
entityType: {
|
6714
6714
|
id: string;
|
6715
6715
|
description: string | null;
|
6716
|
-
createdAt:
|
6717
|
-
updatedAt:
|
6718
|
-
deletedAt:
|
6716
|
+
createdAt: string;
|
6717
|
+
updatedAt: string;
|
6718
|
+
deletedAt: string | null;
|
6719
6719
|
entity: string;
|
6720
6720
|
};
|
6721
6721
|
}[] | undefined;
|
@@ -6726,14 +6726,14 @@ export declare const contactContract: {
|
|
6726
6726
|
channel: string | null;
|
6727
6727
|
address: string | null;
|
6728
6728
|
name: string;
|
6729
|
-
createdAt:
|
6730
|
-
updatedAt:
|
6731
|
-
deletedAt:
|
6729
|
+
createdAt: string;
|
6730
|
+
updatedAt: string;
|
6731
|
+
deletedAt: string | null;
|
6732
6732
|
customFields: {
|
6733
6733
|
id: string;
|
6734
|
-
createdAt:
|
6735
|
-
updatedAt:
|
6736
|
-
deletedAt:
|
6734
|
+
createdAt: string;
|
6735
|
+
updatedAt: string;
|
6736
|
+
deletedAt: string | null;
|
6737
6737
|
attribute: {
|
6738
6738
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
6739
6739
|
id: string;
|
@@ -6751,7 +6751,7 @@ export declare const contactContract: {
|
|
6751
6751
|
textValue: string | null;
|
6752
6752
|
booleanValue: boolean | null;
|
6753
6753
|
numberValue: number | null;
|
6754
|
-
dateValue:
|
6754
|
+
dateValue: string | null;
|
6755
6755
|
uploads: {
|
6756
6756
|
id: string;
|
6757
6757
|
createdAt: string;
|
@@ -6794,31 +6794,31 @@ export declare const contactContract: {
|
|
6794
6794
|
id: string;
|
6795
6795
|
isPrimary: boolean;
|
6796
6796
|
email: string;
|
6797
|
-
createdAt:
|
6798
|
-
updatedAt:
|
6799
|
-
deletedAt:
|
6797
|
+
createdAt: string;
|
6798
|
+
updatedAt: string;
|
6799
|
+
deletedAt: string | null;
|
6800
6800
|
}[];
|
6801
6801
|
contactPhones: {
|
6802
6802
|
id: string;
|
6803
6803
|
isPrimary: boolean;
|
6804
|
-
createdAt:
|
6805
|
-
updatedAt:
|
6806
|
-
deletedAt:
|
6804
|
+
createdAt: string;
|
6805
|
+
updatedAt: string;
|
6806
|
+
deletedAt: string | null;
|
6807
6807
|
phone: string;
|
6808
6808
|
}[];
|
6809
6809
|
activityLogs?: {
|
6810
6810
|
id: string;
|
6811
6811
|
description: string;
|
6812
|
-
createdAt:
|
6813
|
-
updatedAt:
|
6814
|
-
deletedAt:
|
6812
|
+
createdAt: string;
|
6813
|
+
updatedAt: string;
|
6814
|
+
deletedAt: string | null;
|
6815
6815
|
entityId: string;
|
6816
6816
|
entityType: {
|
6817
6817
|
id: string;
|
6818
6818
|
description: string | null;
|
6819
|
-
createdAt:
|
6820
|
-
updatedAt:
|
6821
|
-
deletedAt:
|
6819
|
+
createdAt: string;
|
6820
|
+
updatedAt: string;
|
6821
|
+
deletedAt: string | null;
|
6822
6822
|
entity: string;
|
6823
6823
|
};
|
6824
6824
|
}[] | undefined;
|
@@ -6830,14 +6830,14 @@ export declare const contactContract: {
|
|
6830
6830
|
channel: string | null;
|
6831
6831
|
address: string | null;
|
6832
6832
|
name: string;
|
6833
|
-
createdAt:
|
6834
|
-
updatedAt:
|
6835
|
-
deletedAt:
|
6833
|
+
createdAt: string;
|
6834
|
+
updatedAt: string;
|
6835
|
+
deletedAt: string | null;
|
6836
6836
|
customFields: {
|
6837
6837
|
id: string;
|
6838
|
-
createdAt:
|
6839
|
-
updatedAt:
|
6840
|
-
deletedAt:
|
6838
|
+
createdAt: string;
|
6839
|
+
updatedAt: string;
|
6840
|
+
deletedAt: string | null;
|
6841
6841
|
attribute: {
|
6842
6842
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
6843
6843
|
id: string;
|
@@ -6855,7 +6855,7 @@ export declare const contactContract: {
|
|
6855
6855
|
textValue: string | null;
|
6856
6856
|
booleanValue: boolean | null;
|
6857
6857
|
numberValue: number | null;
|
6858
|
-
dateValue:
|
6858
|
+
dateValue: string | null;
|
6859
6859
|
uploads: {
|
6860
6860
|
id: string;
|
6861
6861
|
createdAt: string;
|
@@ -6898,31 +6898,31 @@ export declare const contactContract: {
|
|
6898
6898
|
id: string;
|
6899
6899
|
isPrimary: boolean;
|
6900
6900
|
email: string;
|
6901
|
-
createdAt:
|
6902
|
-
updatedAt:
|
6903
|
-
deletedAt:
|
6901
|
+
createdAt: string;
|
6902
|
+
updatedAt: string;
|
6903
|
+
deletedAt: string | null;
|
6904
6904
|
}[];
|
6905
6905
|
contactPhones: {
|
6906
6906
|
id: string;
|
6907
6907
|
isPrimary: boolean;
|
6908
|
-
createdAt:
|
6909
|
-
updatedAt:
|
6910
|
-
deletedAt:
|
6908
|
+
createdAt: string;
|
6909
|
+
updatedAt: string;
|
6910
|
+
deletedAt: string | null;
|
6911
6911
|
phone: string;
|
6912
6912
|
}[];
|
6913
6913
|
activityLogs?: {
|
6914
6914
|
id: string;
|
6915
6915
|
description: string;
|
6916
|
-
createdAt:
|
6917
|
-
updatedAt:
|
6918
|
-
deletedAt:
|
6916
|
+
createdAt: string;
|
6917
|
+
updatedAt: string;
|
6918
|
+
deletedAt: string | null;
|
6919
6919
|
entityId: string;
|
6920
6920
|
entityType: {
|
6921
6921
|
id: string;
|
6922
6922
|
description: string | null;
|
6923
|
-
createdAt:
|
6924
|
-
updatedAt:
|
6925
|
-
deletedAt:
|
6923
|
+
createdAt: string;
|
6924
|
+
updatedAt: string;
|
6925
|
+
deletedAt: string | null;
|
6926
6926
|
entity: string;
|
6927
6927
|
};
|
6928
6928
|
}[] | undefined;
|
@@ -7053,9 +7053,9 @@ export declare const contactContract: {
|
|
7053
7053
|
requestId: z.ZodString;
|
7054
7054
|
data: z.ZodObject<{
|
7055
7055
|
id: z.ZodString;
|
7056
|
-
createdAt: z.
|
7057
|
-
updatedAt: z.
|
7058
|
-
deletedAt: z.ZodNullable<z.
|
7056
|
+
createdAt: z.ZodString;
|
7057
|
+
updatedAt: z.ZodString;
|
7058
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7059
7059
|
name: z.ZodString;
|
7060
7060
|
address: z.ZodNullable<z.ZodString>;
|
7061
7061
|
channel: z.ZodNullable<z.ZodString>;
|
@@ -7098,7 +7098,7 @@ export declare const contactContract: {
|
|
7098
7098
|
textValue: z.ZodNullable<z.ZodString>;
|
7099
7099
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
7100
7100
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
7101
|
-
dateValue: z.ZodNullable<z.
|
7101
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
7102
7102
|
attribute: z.ZodObject<Omit<{
|
7103
7103
|
id: z.ZodString;
|
7104
7104
|
createdAt: z.ZodString;
|
@@ -7202,7 +7202,7 @@ export declare const contactContract: {
|
|
7202
7202
|
textValue: string | null;
|
7203
7203
|
booleanValue: boolean | null;
|
7204
7204
|
numberValue: number | null;
|
7205
|
-
dateValue:
|
7205
|
+
dateValue: string | null;
|
7206
7206
|
}, {
|
7207
7207
|
id: string;
|
7208
7208
|
createdAt: string;
|
@@ -7225,7 +7225,7 @@ export declare const contactContract: {
|
|
7225
7225
|
textValue: string | null;
|
7226
7226
|
booleanValue: boolean | null;
|
7227
7227
|
numberValue: number | null;
|
7228
|
-
dateValue:
|
7228
|
+
dateValue: string | null;
|
7229
7229
|
}>, "many">>;
|
7230
7230
|
}, "customFields">, "strip", z.ZodTypeAny, {
|
7231
7231
|
id: string;
|
@@ -7248,13 +7248,13 @@ export declare const contactContract: {
|
|
7248
7248
|
}>>;
|
7249
7249
|
customFields: z.ZodArray<z.ZodObject<{
|
7250
7250
|
id: z.ZodString;
|
7251
|
-
createdAt: z.
|
7252
|
-
updatedAt: z.
|
7253
|
-
deletedAt: z.ZodNullable<z.
|
7251
|
+
createdAt: z.ZodString;
|
7252
|
+
updatedAt: z.ZodString;
|
7253
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7254
7254
|
textValue: z.ZodNullable<z.ZodString>;
|
7255
7255
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
7256
7256
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
7257
|
-
dateValue: z.ZodNullable<z.
|
7257
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
7258
7258
|
attribute: z.ZodObject<Omit<{
|
7259
7259
|
id: z.ZodString;
|
7260
7260
|
createdAt: z.ZodString;
|
@@ -7405,9 +7405,9 @@ export declare const contactContract: {
|
|
7405
7405
|
}>, "many">;
|
7406
7406
|
}, "strip", z.ZodTypeAny, {
|
7407
7407
|
id: string;
|
7408
|
-
createdAt:
|
7409
|
-
updatedAt:
|
7410
|
-
deletedAt:
|
7408
|
+
createdAt: string;
|
7409
|
+
updatedAt: string;
|
7410
|
+
deletedAt: string | null;
|
7411
7411
|
attribute: {
|
7412
7412
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7413
7413
|
id: string;
|
@@ -7425,7 +7425,7 @@ export declare const contactContract: {
|
|
7425
7425
|
textValue: string | null;
|
7426
7426
|
booleanValue: boolean | null;
|
7427
7427
|
numberValue: number | null;
|
7428
|
-
dateValue:
|
7428
|
+
dateValue: string | null;
|
7429
7429
|
uploads: {
|
7430
7430
|
id: string;
|
7431
7431
|
createdAt: string;
|
@@ -7445,9 +7445,9 @@ export declare const contactContract: {
|
|
7445
7445
|
}[];
|
7446
7446
|
}, {
|
7447
7447
|
id: string;
|
7448
|
-
createdAt:
|
7449
|
-
updatedAt:
|
7450
|
-
deletedAt:
|
7448
|
+
createdAt: string;
|
7449
|
+
updatedAt: string;
|
7450
|
+
deletedAt: string | null;
|
7451
7451
|
attribute: {
|
7452
7452
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7453
7453
|
id: string;
|
@@ -7465,7 +7465,7 @@ export declare const contactContract: {
|
|
7465
7465
|
textValue: string | null;
|
7466
7466
|
booleanValue: boolean | null;
|
7467
7467
|
numberValue: number | null;
|
7468
|
-
dateValue:
|
7468
|
+
dateValue: string | null;
|
7469
7469
|
uploads: {
|
7470
7470
|
id: string;
|
7471
7471
|
createdAt: string;
|
@@ -7486,105 +7486,105 @@ export declare const contactContract: {
|
|
7486
7486
|
}>, "many">;
|
7487
7487
|
contactEmails: z.ZodArray<z.ZodObject<{
|
7488
7488
|
id: z.ZodString;
|
7489
|
-
createdAt: z.
|
7490
|
-
updatedAt: z.
|
7491
|
-
deletedAt: z.ZodNullable<z.
|
7489
|
+
createdAt: z.ZodString;
|
7490
|
+
updatedAt: z.ZodString;
|
7491
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7492
7492
|
email: z.ZodString;
|
7493
7493
|
isPrimary: z.ZodBoolean;
|
7494
7494
|
}, "strip", z.ZodTypeAny, {
|
7495
7495
|
id: string;
|
7496
7496
|
isPrimary: boolean;
|
7497
7497
|
email: string;
|
7498
|
-
createdAt:
|
7499
|
-
updatedAt:
|
7500
|
-
deletedAt:
|
7498
|
+
createdAt: string;
|
7499
|
+
updatedAt: string;
|
7500
|
+
deletedAt: string | null;
|
7501
7501
|
}, {
|
7502
7502
|
id: string;
|
7503
7503
|
isPrimary: boolean;
|
7504
7504
|
email: string;
|
7505
|
-
createdAt:
|
7506
|
-
updatedAt:
|
7507
|
-
deletedAt:
|
7505
|
+
createdAt: string;
|
7506
|
+
updatedAt: string;
|
7507
|
+
deletedAt: string | null;
|
7508
7508
|
}>, "many">;
|
7509
7509
|
contactPhones: z.ZodArray<z.ZodObject<{
|
7510
7510
|
id: z.ZodString;
|
7511
|
-
createdAt: z.
|
7512
|
-
updatedAt: z.
|
7513
|
-
deletedAt: z.ZodNullable<z.
|
7511
|
+
createdAt: z.ZodString;
|
7512
|
+
updatedAt: z.ZodString;
|
7513
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7514
7514
|
phone: z.ZodString;
|
7515
7515
|
isPrimary: z.ZodBoolean;
|
7516
7516
|
}, "strip", z.ZodTypeAny, {
|
7517
7517
|
id: string;
|
7518
7518
|
isPrimary: boolean;
|
7519
|
-
createdAt:
|
7520
|
-
updatedAt:
|
7521
|
-
deletedAt:
|
7519
|
+
createdAt: string;
|
7520
|
+
updatedAt: string;
|
7521
|
+
deletedAt: string | null;
|
7522
7522
|
phone: string;
|
7523
7523
|
}, {
|
7524
7524
|
id: string;
|
7525
7525
|
isPrimary: boolean;
|
7526
|
-
createdAt:
|
7527
|
-
updatedAt:
|
7528
|
-
deletedAt:
|
7526
|
+
createdAt: string;
|
7527
|
+
updatedAt: string;
|
7528
|
+
deletedAt: string | null;
|
7529
7529
|
phone: string;
|
7530
7530
|
}>, "many">;
|
7531
7531
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7532
7532
|
id: z.ZodString;
|
7533
|
-
createdAt: z.
|
7534
|
-
updatedAt: z.
|
7535
|
-
deletedAt: z.ZodNullable<z.
|
7533
|
+
createdAt: z.ZodString;
|
7534
|
+
updatedAt: z.ZodString;
|
7535
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7536
7536
|
entityId: z.ZodString;
|
7537
7537
|
description: z.ZodString;
|
7538
7538
|
entityType: z.ZodObject<{
|
7539
7539
|
id: z.ZodString;
|
7540
|
-
createdAt: z.
|
7541
|
-
updatedAt: z.
|
7542
|
-
deletedAt: z.ZodNullable<z.
|
7540
|
+
createdAt: z.ZodString;
|
7541
|
+
updatedAt: z.ZodString;
|
7542
|
+
deletedAt: z.ZodNullable<z.ZodString>;
|
7543
7543
|
entity: z.ZodString;
|
7544
7544
|
description: z.ZodNullable<z.ZodString>;
|
7545
7545
|
}, "strip", z.ZodTypeAny, {
|
7546
7546
|
id: string;
|
7547
7547
|
description: string | null;
|
7548
|
-
createdAt:
|
7549
|
-
updatedAt:
|
7550
|
-
deletedAt:
|
7548
|
+
createdAt: string;
|
7549
|
+
updatedAt: string;
|
7550
|
+
deletedAt: string | null;
|
7551
7551
|
entity: string;
|
7552
7552
|
}, {
|
7553
7553
|
id: string;
|
7554
7554
|
description: string | null;
|
7555
|
-
createdAt:
|
7556
|
-
updatedAt:
|
7557
|
-
deletedAt:
|
7555
|
+
createdAt: string;
|
7556
|
+
updatedAt: string;
|
7557
|
+
deletedAt: string | null;
|
7558
7558
|
entity: string;
|
7559
7559
|
}>;
|
7560
7560
|
}, "strip", z.ZodTypeAny, {
|
7561
7561
|
id: string;
|
7562
7562
|
description: string;
|
7563
|
-
createdAt:
|
7564
|
-
updatedAt:
|
7565
|
-
deletedAt:
|
7563
|
+
createdAt: string;
|
7564
|
+
updatedAt: string;
|
7565
|
+
deletedAt: string | null;
|
7566
7566
|
entityId: string;
|
7567
7567
|
entityType: {
|
7568
7568
|
id: string;
|
7569
7569
|
description: string | null;
|
7570
|
-
createdAt:
|
7571
|
-
updatedAt:
|
7572
|
-
deletedAt:
|
7570
|
+
createdAt: string;
|
7571
|
+
updatedAt: string;
|
7572
|
+
deletedAt: string | null;
|
7573
7573
|
entity: string;
|
7574
7574
|
};
|
7575
7575
|
}, {
|
7576
7576
|
id: string;
|
7577
7577
|
description: string;
|
7578
|
-
createdAt:
|
7579
|
-
updatedAt:
|
7580
|
-
deletedAt:
|
7578
|
+
createdAt: string;
|
7579
|
+
updatedAt: string;
|
7580
|
+
deletedAt: string | null;
|
7581
7581
|
entityId: string;
|
7582
7582
|
entityType: {
|
7583
7583
|
id: string;
|
7584
7584
|
description: string | null;
|
7585
|
-
createdAt:
|
7586
|
-
updatedAt:
|
7587
|
-
deletedAt:
|
7585
|
+
createdAt: string;
|
7586
|
+
updatedAt: string;
|
7587
|
+
deletedAt: string | null;
|
7588
7588
|
entity: string;
|
7589
7589
|
};
|
7590
7590
|
}>, "many">>;
|
@@ -7593,14 +7593,14 @@ export declare const contactContract: {
|
|
7593
7593
|
channel: string | null;
|
7594
7594
|
address: string | null;
|
7595
7595
|
name: string;
|
7596
|
-
createdAt:
|
7597
|
-
updatedAt:
|
7598
|
-
deletedAt:
|
7596
|
+
createdAt: string;
|
7597
|
+
updatedAt: string;
|
7598
|
+
deletedAt: string | null;
|
7599
7599
|
customFields: {
|
7600
7600
|
id: string;
|
7601
|
-
createdAt:
|
7602
|
-
updatedAt:
|
7603
|
-
deletedAt:
|
7601
|
+
createdAt: string;
|
7602
|
+
updatedAt: string;
|
7603
|
+
deletedAt: string | null;
|
7604
7604
|
attribute: {
|
7605
7605
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7606
7606
|
id: string;
|
@@ -7618,7 +7618,7 @@ export declare const contactContract: {
|
|
7618
7618
|
textValue: string | null;
|
7619
7619
|
booleanValue: boolean | null;
|
7620
7620
|
numberValue: number | null;
|
7621
|
-
dateValue:
|
7621
|
+
dateValue: string | null;
|
7622
7622
|
uploads: {
|
7623
7623
|
id: string;
|
7624
7624
|
createdAt: string;
|
@@ -7661,31 +7661,31 @@ export declare const contactContract: {
|
|
7661
7661
|
id: string;
|
7662
7662
|
isPrimary: boolean;
|
7663
7663
|
email: string;
|
7664
|
-
createdAt:
|
7665
|
-
updatedAt:
|
7666
|
-
deletedAt:
|
7664
|
+
createdAt: string;
|
7665
|
+
updatedAt: string;
|
7666
|
+
deletedAt: string | null;
|
7667
7667
|
}[];
|
7668
7668
|
contactPhones: {
|
7669
7669
|
id: string;
|
7670
7670
|
isPrimary: boolean;
|
7671
|
-
createdAt:
|
7672
|
-
updatedAt:
|
7673
|
-
deletedAt:
|
7671
|
+
createdAt: string;
|
7672
|
+
updatedAt: string;
|
7673
|
+
deletedAt: string | null;
|
7674
7674
|
phone: string;
|
7675
7675
|
}[];
|
7676
7676
|
activityLogs?: {
|
7677
7677
|
id: string;
|
7678
7678
|
description: string;
|
7679
|
-
createdAt:
|
7680
|
-
updatedAt:
|
7681
|
-
deletedAt:
|
7679
|
+
createdAt: string;
|
7680
|
+
updatedAt: string;
|
7681
|
+
deletedAt: string | null;
|
7682
7682
|
entityId: string;
|
7683
7683
|
entityType: {
|
7684
7684
|
id: string;
|
7685
7685
|
description: string | null;
|
7686
|
-
createdAt:
|
7687
|
-
updatedAt:
|
7688
|
-
deletedAt:
|
7686
|
+
createdAt: string;
|
7687
|
+
updatedAt: string;
|
7688
|
+
deletedAt: string | null;
|
7689
7689
|
entity: string;
|
7690
7690
|
};
|
7691
7691
|
}[] | undefined;
|
@@ -7694,14 +7694,14 @@ export declare const contactContract: {
|
|
7694
7694
|
channel: string | null;
|
7695
7695
|
address: string | null;
|
7696
7696
|
name: string;
|
7697
|
-
createdAt:
|
7698
|
-
updatedAt:
|
7699
|
-
deletedAt:
|
7697
|
+
createdAt: string;
|
7698
|
+
updatedAt: string;
|
7699
|
+
deletedAt: string | null;
|
7700
7700
|
customFields: {
|
7701
7701
|
id: string;
|
7702
|
-
createdAt:
|
7703
|
-
updatedAt:
|
7704
|
-
deletedAt:
|
7702
|
+
createdAt: string;
|
7703
|
+
updatedAt: string;
|
7704
|
+
deletedAt: string | null;
|
7705
7705
|
attribute: {
|
7706
7706
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7707
7707
|
id: string;
|
@@ -7719,7 +7719,7 @@ export declare const contactContract: {
|
|
7719
7719
|
textValue: string | null;
|
7720
7720
|
booleanValue: boolean | null;
|
7721
7721
|
numberValue: number | null;
|
7722
|
-
dateValue:
|
7722
|
+
dateValue: string | null;
|
7723
7723
|
uploads: {
|
7724
7724
|
id: string;
|
7725
7725
|
createdAt: string;
|
@@ -7762,31 +7762,31 @@ export declare const contactContract: {
|
|
7762
7762
|
id: string;
|
7763
7763
|
isPrimary: boolean;
|
7764
7764
|
email: string;
|
7765
|
-
createdAt:
|
7766
|
-
updatedAt:
|
7767
|
-
deletedAt:
|
7765
|
+
createdAt: string;
|
7766
|
+
updatedAt: string;
|
7767
|
+
deletedAt: string | null;
|
7768
7768
|
}[];
|
7769
7769
|
contactPhones: {
|
7770
7770
|
id: string;
|
7771
7771
|
isPrimary: boolean;
|
7772
|
-
createdAt:
|
7773
|
-
updatedAt:
|
7774
|
-
deletedAt:
|
7772
|
+
createdAt: string;
|
7773
|
+
updatedAt: string;
|
7774
|
+
deletedAt: string | null;
|
7775
7775
|
phone: string;
|
7776
7776
|
}[];
|
7777
7777
|
activityLogs?: {
|
7778
7778
|
id: string;
|
7779
7779
|
description: string;
|
7780
|
-
createdAt:
|
7781
|
-
updatedAt:
|
7782
|
-
deletedAt:
|
7780
|
+
createdAt: string;
|
7781
|
+
updatedAt: string;
|
7782
|
+
deletedAt: string | null;
|
7783
7783
|
entityId: string;
|
7784
7784
|
entityType: {
|
7785
7785
|
id: string;
|
7786
7786
|
description: string | null;
|
7787
|
-
createdAt:
|
7788
|
-
updatedAt:
|
7789
|
-
deletedAt:
|
7787
|
+
createdAt: string;
|
7788
|
+
updatedAt: string;
|
7789
|
+
deletedAt: string | null;
|
7790
7790
|
entity: string;
|
7791
7791
|
};
|
7792
7792
|
}[] | undefined;
|
@@ -7797,14 +7797,14 @@ export declare const contactContract: {
|
|
7797
7797
|
channel: string | null;
|
7798
7798
|
address: string | null;
|
7799
7799
|
name: string;
|
7800
|
-
createdAt:
|
7801
|
-
updatedAt:
|
7802
|
-
deletedAt:
|
7800
|
+
createdAt: string;
|
7801
|
+
updatedAt: string;
|
7802
|
+
deletedAt: string | null;
|
7803
7803
|
customFields: {
|
7804
7804
|
id: string;
|
7805
|
-
createdAt:
|
7806
|
-
updatedAt:
|
7807
|
-
deletedAt:
|
7805
|
+
createdAt: string;
|
7806
|
+
updatedAt: string;
|
7807
|
+
deletedAt: string | null;
|
7808
7808
|
attribute: {
|
7809
7809
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7810
7810
|
id: string;
|
@@ -7822,7 +7822,7 @@ export declare const contactContract: {
|
|
7822
7822
|
textValue: string | null;
|
7823
7823
|
booleanValue: boolean | null;
|
7824
7824
|
numberValue: number | null;
|
7825
|
-
dateValue:
|
7825
|
+
dateValue: string | null;
|
7826
7826
|
uploads: {
|
7827
7827
|
id: string;
|
7828
7828
|
createdAt: string;
|
@@ -7865,31 +7865,31 @@ export declare const contactContract: {
|
|
7865
7865
|
id: string;
|
7866
7866
|
isPrimary: boolean;
|
7867
7867
|
email: string;
|
7868
|
-
createdAt:
|
7869
|
-
updatedAt:
|
7870
|
-
deletedAt:
|
7868
|
+
createdAt: string;
|
7869
|
+
updatedAt: string;
|
7870
|
+
deletedAt: string | null;
|
7871
7871
|
}[];
|
7872
7872
|
contactPhones: {
|
7873
7873
|
id: string;
|
7874
7874
|
isPrimary: boolean;
|
7875
|
-
createdAt:
|
7876
|
-
updatedAt:
|
7877
|
-
deletedAt:
|
7875
|
+
createdAt: string;
|
7876
|
+
updatedAt: string;
|
7877
|
+
deletedAt: string | null;
|
7878
7878
|
phone: string;
|
7879
7879
|
}[];
|
7880
7880
|
activityLogs?: {
|
7881
7881
|
id: string;
|
7882
7882
|
description: string;
|
7883
|
-
createdAt:
|
7884
|
-
updatedAt:
|
7885
|
-
deletedAt:
|
7883
|
+
createdAt: string;
|
7884
|
+
updatedAt: string;
|
7885
|
+
deletedAt: string | null;
|
7886
7886
|
entityId: string;
|
7887
7887
|
entityType: {
|
7888
7888
|
id: string;
|
7889
7889
|
description: string | null;
|
7890
|
-
createdAt:
|
7891
|
-
updatedAt:
|
7892
|
-
deletedAt:
|
7890
|
+
createdAt: string;
|
7891
|
+
updatedAt: string;
|
7892
|
+
deletedAt: string | null;
|
7893
7893
|
entity: string;
|
7894
7894
|
};
|
7895
7895
|
}[] | undefined;
|
@@ -7901,14 +7901,14 @@ export declare const contactContract: {
|
|
7901
7901
|
channel: string | null;
|
7902
7902
|
address: string | null;
|
7903
7903
|
name: string;
|
7904
|
-
createdAt:
|
7905
|
-
updatedAt:
|
7906
|
-
deletedAt:
|
7904
|
+
createdAt: string;
|
7905
|
+
updatedAt: string;
|
7906
|
+
deletedAt: string | null;
|
7907
7907
|
customFields: {
|
7908
7908
|
id: string;
|
7909
|
-
createdAt:
|
7910
|
-
updatedAt:
|
7911
|
-
deletedAt:
|
7909
|
+
createdAt: string;
|
7910
|
+
updatedAt: string;
|
7911
|
+
deletedAt: string | null;
|
7912
7912
|
attribute: {
|
7913
7913
|
type: "link" | "attachment" | "select" | "textarea" | "text" | "date";
|
7914
7914
|
id: string;
|
@@ -7926,7 +7926,7 @@ export declare const contactContract: {
|
|
7926
7926
|
textValue: string | null;
|
7927
7927
|
booleanValue: boolean | null;
|
7928
7928
|
numberValue: number | null;
|
7929
|
-
dateValue:
|
7929
|
+
dateValue: string | null;
|
7930
7930
|
uploads: {
|
7931
7931
|
id: string;
|
7932
7932
|
createdAt: string;
|
@@ -7969,31 +7969,31 @@ export declare const contactContract: {
|
|
7969
7969
|
id: string;
|
7970
7970
|
isPrimary: boolean;
|
7971
7971
|
email: string;
|
7972
|
-
createdAt:
|
7973
|
-
updatedAt:
|
7974
|
-
deletedAt:
|
7972
|
+
createdAt: string;
|
7973
|
+
updatedAt: string;
|
7974
|
+
deletedAt: string | null;
|
7975
7975
|
}[];
|
7976
7976
|
contactPhones: {
|
7977
7977
|
id: string;
|
7978
7978
|
isPrimary: boolean;
|
7979
|
-
createdAt:
|
7980
|
-
updatedAt:
|
7981
|
-
deletedAt:
|
7979
|
+
createdAt: string;
|
7980
|
+
updatedAt: string;
|
7981
|
+
deletedAt: string | null;
|
7982
7982
|
phone: string;
|
7983
7983
|
}[];
|
7984
7984
|
activityLogs?: {
|
7985
7985
|
id: string;
|
7986
7986
|
description: string;
|
7987
|
-
createdAt:
|
7988
|
-
updatedAt:
|
7989
|
-
deletedAt:
|
7987
|
+
createdAt: string;
|
7988
|
+
updatedAt: string;
|
7989
|
+
deletedAt: string | null;
|
7990
7990
|
entityId: string;
|
7991
7991
|
entityType: {
|
7992
7992
|
id: string;
|
7993
7993
|
description: string | null;
|
7994
|
-
createdAt:
|
7995
|
-
updatedAt:
|
7996
|
-
deletedAt:
|
7994
|
+
createdAt: string;
|
7995
|
+
updatedAt: string;
|
7996
|
+
deletedAt: string | null;
|
7997
7997
|
entity: string;
|
7998
7998
|
};
|
7999
7999
|
}[] | undefined;
|
@@ -8314,7 +8314,7 @@ export declare const contactContract: {
|
|
8314
8314
|
textValue: z.ZodNullable<z.ZodString>;
|
8315
8315
|
booleanValue: z.ZodNullable<z.ZodBoolean>;
|
8316
8316
|
numberValue: z.ZodNullable<z.ZodNumber>;
|
8317
|
-
dateValue: z.ZodNullable<z.
|
8317
|
+
dateValue: z.ZodNullable<z.ZodString>;
|
8318
8318
|
entityId: z.ZodString;
|
8319
8319
|
attributeId: z.ZodString;
|
8320
8320
|
}, "strip", z.ZodTypeAny, {
|
@@ -8326,7 +8326,7 @@ export declare const contactContract: {
|
|
8326
8326
|
textValue: string | null;
|
8327
8327
|
booleanValue: boolean | null;
|
8328
8328
|
numberValue: number | null;
|
8329
|
-
dateValue:
|
8329
|
+
dateValue: string | null;
|
8330
8330
|
entityId: string;
|
8331
8331
|
}, {
|
8332
8332
|
id: string;
|
@@ -8337,7 +8337,7 @@ export declare const contactContract: {
|
|
8337
8337
|
textValue: string | null;
|
8338
8338
|
booleanValue: boolean | null;
|
8339
8339
|
numberValue: number | null;
|
8340
|
-
dateValue:
|
8340
|
+
dateValue: string | null;
|
8341
8341
|
entityId: string;
|
8342
8342
|
}>;
|
8343
8343
|
}, "strip", z.ZodTypeAny, {
|
@@ -8350,7 +8350,7 @@ export declare const contactContract: {
|
|
8350
8350
|
textValue: string | null;
|
8351
8351
|
booleanValue: boolean | null;
|
8352
8352
|
numberValue: number | null;
|
8353
|
-
dateValue:
|
8353
|
+
dateValue: string | null;
|
8354
8354
|
entityId: string;
|
8355
8355
|
};
|
8356
8356
|
requestId: string;
|
@@ -8364,7 +8364,7 @@ export declare const contactContract: {
|
|
8364
8364
|
textValue: string | null;
|
8365
8365
|
booleanValue: boolean | null;
|
8366
8366
|
numberValue: number | null;
|
8367
|
-
dateValue:
|
8367
|
+
dateValue: string | null;
|
8368
8368
|
entityId: string;
|
8369
8369
|
};
|
8370
8370
|
requestId: string;
|