@kl1/contracts 1.0.11 → 1.0.12
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 +747 -607
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +746 -607
- package/dist/index.mjs.map +1 -1
- package/dist/src/category/index.d.ts +3 -3
- package/dist/src/chat/index.d.ts +15806 -6953
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +4400 -467
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +5135 -495
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/company/schema.d.ts +9 -9
- package/dist/src/contact/index.d.ts +170 -42
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +107 -15
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +63 -15
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +35440 -19287
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +12 -12
- package/dist/src/extension/schema.d.ts.map +1 -1
- package/dist/src/extension/validation.d.ts +6 -6
- package/dist/src/mail/mail-contract.d.ts +6 -6
- package/dist/src/mail/room-contract.d.ts +6 -6
- package/dist/src/mail/schemas/room-validation.schema.d.ts +6 -6
- package/dist/src/messenger/index.d.ts +5287 -647
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/permission/schema.d.ts.map +1 -1
- package/dist/src/role/index.d.ts +3 -3
- package/dist/src/role/schema.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +17 -17
- package/dist/src/telephony-agent-presence-status/schema.d.ts +3 -3
- package/dist/src/telephony-agent-presence-status/validation.d.ts +6 -6
- package/dist/src/user/index.d.ts +9 -9
- package/dist/src/user/schema.d.ts.map +1 -1
- package/dist/src/user/validation.d.ts +6 -6
- package/dist/src/user-presence-status-log/index.d.ts +3 -3
- package/dist/src/widget/index.d.ts +3 -3
- package/dist/src/wrap-up-form/index.d.ts +27 -27
- package/dist/src/wrap-up-form/validation.d.ts +24 -24
- package/dist/utils.d.ts +6 -6
- package/package.json +46 -46
@@ -282,40 +282,84 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
282
282
|
}[];
|
283
283
|
}>;
|
284
284
|
export declare const ContactEntityTypesSchema: z.ZodObject<{
|
285
|
+
id: z.ZodString;
|
286
|
+
createdAt: z.ZodDate;
|
287
|
+
updatedAt: z.ZodDate;
|
288
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
285
289
|
entity: z.ZodString;
|
286
290
|
description: z.ZodNullable<z.ZodString>;
|
287
291
|
}, "strip", z.ZodTypeAny, {
|
292
|
+
id: string;
|
288
293
|
description: string | null;
|
294
|
+
createdAt: Date;
|
295
|
+
updatedAt: Date;
|
296
|
+
deletedAt: Date | null;
|
289
297
|
entity: string;
|
290
298
|
}, {
|
299
|
+
id: string;
|
291
300
|
description: string | null;
|
301
|
+
createdAt: Date;
|
302
|
+
updatedAt: Date;
|
303
|
+
deletedAt: Date | null;
|
292
304
|
entity: string;
|
293
305
|
}>;
|
294
306
|
export declare const ContactActivitySchema: z.ZodObject<{
|
307
|
+
id: z.ZodString;
|
308
|
+
createdAt: z.ZodDate;
|
309
|
+
updatedAt: z.ZodDate;
|
310
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
295
311
|
entityId: z.ZodString;
|
296
312
|
description: z.ZodString;
|
297
313
|
entityType: z.ZodObject<{
|
314
|
+
id: z.ZodString;
|
315
|
+
createdAt: z.ZodDate;
|
316
|
+
updatedAt: z.ZodDate;
|
317
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
298
318
|
entity: z.ZodString;
|
299
319
|
description: z.ZodNullable<z.ZodString>;
|
300
320
|
}, "strip", z.ZodTypeAny, {
|
321
|
+
id: string;
|
301
322
|
description: string | null;
|
323
|
+
createdAt: Date;
|
324
|
+
updatedAt: Date;
|
325
|
+
deletedAt: Date | null;
|
302
326
|
entity: string;
|
303
327
|
}, {
|
328
|
+
id: string;
|
304
329
|
description: string | null;
|
330
|
+
createdAt: Date;
|
331
|
+
updatedAt: Date;
|
332
|
+
deletedAt: Date | null;
|
305
333
|
entity: string;
|
306
334
|
}>;
|
307
335
|
}, "strip", z.ZodTypeAny, {
|
336
|
+
id: string;
|
308
337
|
description: string;
|
338
|
+
createdAt: Date;
|
339
|
+
updatedAt: Date;
|
340
|
+
deletedAt: Date | null;
|
309
341
|
entityId: string;
|
310
342
|
entityType: {
|
343
|
+
id: string;
|
311
344
|
description: string | null;
|
345
|
+
createdAt: Date;
|
346
|
+
updatedAt: Date;
|
347
|
+
deletedAt: Date | null;
|
312
348
|
entity: string;
|
313
349
|
};
|
314
350
|
}, {
|
351
|
+
id: string;
|
315
352
|
description: string;
|
353
|
+
createdAt: Date;
|
354
|
+
updatedAt: Date;
|
355
|
+
deletedAt: Date | null;
|
316
356
|
entityId: string;
|
317
357
|
entityType: {
|
358
|
+
id: string;
|
318
359
|
description: string | null;
|
360
|
+
createdAt: Date;
|
361
|
+
updatedAt: Date;
|
362
|
+
deletedAt: Date | null;
|
319
363
|
entity: string;
|
320
364
|
};
|
321
365
|
}>;
|
@@ -355,9 +399,9 @@ export declare const ContactSchema: z.ZodObject<{
|
|
355
399
|
updatedAt: z.ZodDate;
|
356
400
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
357
401
|
name: z.ZodOptional<z.ZodString>;
|
358
|
-
phone: z.ZodOptional<z.ZodString
|
359
|
-
address: z.ZodOptional<z.ZodString
|
360
|
-
industry: z.ZodOptional<z.ZodString
|
402
|
+
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
403
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
404
|
+
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
361
405
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
362
406
|
id: z.ZodString;
|
363
407
|
createdAt: z.ZodDate;
|
@@ -500,19 +544,19 @@ export declare const ContactSchema: z.ZodObject<{
|
|
500
544
|
createdAt: Date;
|
501
545
|
updatedAt: Date;
|
502
546
|
deletedAt: Date | null;
|
503
|
-
address?: string | undefined;
|
547
|
+
address?: string | null | undefined;
|
504
548
|
name?: string | undefined;
|
505
|
-
phone?: string | undefined;
|
506
|
-
industry?: string | undefined;
|
549
|
+
phone?: string | null | undefined;
|
550
|
+
industry?: string | null | undefined;
|
507
551
|
}, {
|
508
552
|
id: string;
|
509
553
|
createdAt: Date;
|
510
554
|
updatedAt: Date;
|
511
555
|
deletedAt: Date | null;
|
512
|
-
address?: string | undefined;
|
556
|
+
address?: string | null | undefined;
|
513
557
|
name?: string | undefined;
|
514
|
-
phone?: string | undefined;
|
515
|
-
industry?: string | undefined;
|
558
|
+
phone?: string | null | undefined;
|
559
|
+
industry?: string | null | undefined;
|
516
560
|
}>>;
|
517
561
|
customFields: z.ZodArray<z.ZodObject<{
|
518
562
|
id: z.ZodString;
|
@@ -797,30 +841,62 @@ export declare const ContactSchema: z.ZodObject<{
|
|
797
841
|
phone: string;
|
798
842
|
}>, "many">;
|
799
843
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
844
|
+
id: z.ZodString;
|
845
|
+
createdAt: z.ZodDate;
|
846
|
+
updatedAt: z.ZodDate;
|
847
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
800
848
|
entityId: z.ZodString;
|
801
849
|
description: z.ZodString;
|
802
850
|
entityType: z.ZodObject<{
|
851
|
+
id: z.ZodString;
|
852
|
+
createdAt: z.ZodDate;
|
853
|
+
updatedAt: z.ZodDate;
|
854
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
803
855
|
entity: z.ZodString;
|
804
856
|
description: z.ZodNullable<z.ZodString>;
|
805
857
|
}, "strip", z.ZodTypeAny, {
|
858
|
+
id: string;
|
806
859
|
description: string | null;
|
860
|
+
createdAt: Date;
|
861
|
+
updatedAt: Date;
|
862
|
+
deletedAt: Date | null;
|
807
863
|
entity: string;
|
808
864
|
}, {
|
865
|
+
id: string;
|
809
866
|
description: string | null;
|
867
|
+
createdAt: Date;
|
868
|
+
updatedAt: Date;
|
869
|
+
deletedAt: Date | null;
|
810
870
|
entity: string;
|
811
871
|
}>;
|
812
872
|
}, "strip", z.ZodTypeAny, {
|
873
|
+
id: string;
|
813
874
|
description: string;
|
875
|
+
createdAt: Date;
|
876
|
+
updatedAt: Date;
|
877
|
+
deletedAt: Date | null;
|
814
878
|
entityId: string;
|
815
879
|
entityType: {
|
880
|
+
id: string;
|
816
881
|
description: string | null;
|
882
|
+
createdAt: Date;
|
883
|
+
updatedAt: Date;
|
884
|
+
deletedAt: Date | null;
|
817
885
|
entity: string;
|
818
886
|
};
|
819
887
|
}, {
|
888
|
+
id: string;
|
820
889
|
description: string;
|
890
|
+
createdAt: Date;
|
891
|
+
updatedAt: Date;
|
892
|
+
deletedAt: Date | null;
|
821
893
|
entityId: string;
|
822
894
|
entityType: {
|
895
|
+
id: string;
|
823
896
|
description: string | null;
|
897
|
+
createdAt: Date;
|
898
|
+
updatedAt: Date;
|
899
|
+
deletedAt: Date | null;
|
824
900
|
entity: string;
|
825
901
|
};
|
826
902
|
}>, "many">>;
|
@@ -888,10 +964,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
888
964
|
createdAt: Date;
|
889
965
|
updatedAt: Date;
|
890
966
|
deletedAt: Date | null;
|
891
|
-
address?: string | undefined;
|
967
|
+
address?: string | null | undefined;
|
892
968
|
name?: string | undefined;
|
893
|
-
phone?: string | undefined;
|
894
|
-
industry?: string | undefined;
|
969
|
+
phone?: string | null | undefined;
|
970
|
+
industry?: string | null | undefined;
|
895
971
|
} | null;
|
896
972
|
contactEmails: {
|
897
973
|
id: string;
|
@@ -910,10 +986,18 @@ export declare const ContactSchema: z.ZodObject<{
|
|
910
986
|
phone: string;
|
911
987
|
}[];
|
912
988
|
activityLogs?: {
|
989
|
+
id: string;
|
913
990
|
description: string;
|
991
|
+
createdAt: Date;
|
992
|
+
updatedAt: Date;
|
993
|
+
deletedAt: Date | null;
|
914
994
|
entityId: string;
|
915
995
|
entityType: {
|
996
|
+
id: string;
|
916
997
|
description: string | null;
|
998
|
+
createdAt: Date;
|
999
|
+
updatedAt: Date;
|
1000
|
+
deletedAt: Date | null;
|
917
1001
|
entity: string;
|
918
1002
|
};
|
919
1003
|
}[] | undefined;
|
@@ -981,10 +1065,10 @@ export declare const ContactSchema: z.ZodObject<{
|
|
981
1065
|
createdAt: Date;
|
982
1066
|
updatedAt: Date;
|
983
1067
|
deletedAt: Date | null;
|
984
|
-
address?: string | undefined;
|
1068
|
+
address?: string | null | undefined;
|
985
1069
|
name?: string | undefined;
|
986
|
-
phone?: string | undefined;
|
987
|
-
industry?: string | undefined;
|
1070
|
+
phone?: string | null | undefined;
|
1071
|
+
industry?: string | null | undefined;
|
988
1072
|
} | null;
|
989
1073
|
contactEmails: {
|
990
1074
|
id: string;
|
@@ -1003,10 +1087,18 @@ export declare const ContactSchema: z.ZodObject<{
|
|
1003
1087
|
phone: string;
|
1004
1088
|
}[];
|
1005
1089
|
activityLogs?: {
|
1090
|
+
id: string;
|
1006
1091
|
description: string;
|
1092
|
+
createdAt: Date;
|
1093
|
+
updatedAt: Date;
|
1094
|
+
deletedAt: Date | null;
|
1007
1095
|
entityId: string;
|
1008
1096
|
entityType: {
|
1097
|
+
id: string;
|
1009
1098
|
description: string | null;
|
1099
|
+
createdAt: Date;
|
1100
|
+
updatedAt: Date;
|
1101
|
+
deletedAt: Date | null;
|
1010
1102
|
entity: string;
|
1011
1103
|
};
|
1012
1104
|
}[] | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/contact/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYnC,CAAC;AAEH,eAAO,MAAM,wBAAwB
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/contact/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAOpB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAG9B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYnC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;EAGnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIhC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcxB,CAAC"}
|
@@ -320,9 +320,9 @@ export declare const ContactContractValidationSchema: {
|
|
320
320
|
updatedAt: z.ZodDate;
|
321
321
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
322
322
|
name: z.ZodOptional<z.ZodString>;
|
323
|
-
phone: z.ZodOptional<z.ZodString
|
324
|
-
address: z.ZodOptional<z.ZodString
|
325
|
-
industry: z.ZodOptional<z.ZodString
|
323
|
+
phone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
324
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
325
|
+
industry: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
326
326
|
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
327
327
|
id: z.ZodString;
|
328
328
|
createdAt: z.ZodDate;
|
@@ -465,19 +465,19 @@ export declare const ContactContractValidationSchema: {
|
|
465
465
|
createdAt: Date;
|
466
466
|
updatedAt: Date;
|
467
467
|
deletedAt: Date | null;
|
468
|
-
address?: string | undefined;
|
468
|
+
address?: string | null | undefined;
|
469
469
|
name?: string | undefined;
|
470
|
-
phone?: string | undefined;
|
471
|
-
industry?: string | undefined;
|
470
|
+
phone?: string | null | undefined;
|
471
|
+
industry?: string | null | undefined;
|
472
472
|
}, {
|
473
473
|
id: string;
|
474
474
|
createdAt: Date;
|
475
475
|
updatedAt: Date;
|
476
476
|
deletedAt: Date | null;
|
477
|
-
address?: string | undefined;
|
477
|
+
address?: string | null | undefined;
|
478
478
|
name?: string | undefined;
|
479
|
-
phone?: string | undefined;
|
480
|
-
industry?: string | undefined;
|
479
|
+
phone?: string | null | undefined;
|
480
|
+
industry?: string | null | undefined;
|
481
481
|
}>>;
|
482
482
|
customFields: z.ZodArray<z.ZodObject<{
|
483
483
|
id: z.ZodString;
|
@@ -762,30 +762,62 @@ export declare const ContactContractValidationSchema: {
|
|
762
762
|
phone: string;
|
763
763
|
}>, "many">;
|
764
764
|
activityLogs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
765
|
+
id: z.ZodString;
|
766
|
+
createdAt: z.ZodDate;
|
767
|
+
updatedAt: z.ZodDate;
|
768
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
765
769
|
entityId: z.ZodString;
|
766
770
|
description: z.ZodString;
|
767
771
|
entityType: z.ZodObject<{
|
772
|
+
id: z.ZodString;
|
773
|
+
createdAt: z.ZodDate;
|
774
|
+
updatedAt: z.ZodDate;
|
775
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
768
776
|
entity: z.ZodString;
|
769
777
|
description: z.ZodNullable<z.ZodString>;
|
770
778
|
}, "strip", z.ZodTypeAny, {
|
779
|
+
id: string;
|
771
780
|
description: string | null;
|
781
|
+
createdAt: Date;
|
782
|
+
updatedAt: Date;
|
783
|
+
deletedAt: Date | null;
|
772
784
|
entity: string;
|
773
785
|
}, {
|
786
|
+
id: string;
|
774
787
|
description: string | null;
|
788
|
+
createdAt: Date;
|
789
|
+
updatedAt: Date;
|
790
|
+
deletedAt: Date | null;
|
775
791
|
entity: string;
|
776
792
|
}>;
|
777
793
|
}, "strip", z.ZodTypeAny, {
|
794
|
+
id: string;
|
778
795
|
description: string;
|
796
|
+
createdAt: Date;
|
797
|
+
updatedAt: Date;
|
798
|
+
deletedAt: Date | null;
|
779
799
|
entityId: string;
|
780
800
|
entityType: {
|
801
|
+
id: string;
|
781
802
|
description: string | null;
|
803
|
+
createdAt: Date;
|
804
|
+
updatedAt: Date;
|
805
|
+
deletedAt: Date | null;
|
782
806
|
entity: string;
|
783
807
|
};
|
784
808
|
}, {
|
809
|
+
id: string;
|
785
810
|
description: string;
|
811
|
+
createdAt: Date;
|
812
|
+
updatedAt: Date;
|
813
|
+
deletedAt: Date | null;
|
786
814
|
entityId: string;
|
787
815
|
entityType: {
|
816
|
+
id: string;
|
788
817
|
description: string | null;
|
818
|
+
createdAt: Date;
|
819
|
+
updatedAt: Date;
|
820
|
+
deletedAt: Date | null;
|
789
821
|
entity: string;
|
790
822
|
};
|
791
823
|
}>, "many">>;
|
@@ -853,10 +885,10 @@ export declare const ContactContractValidationSchema: {
|
|
853
885
|
createdAt: Date;
|
854
886
|
updatedAt: Date;
|
855
887
|
deletedAt: Date | null;
|
856
|
-
address?: string | undefined;
|
888
|
+
address?: string | null | undefined;
|
857
889
|
name?: string | undefined;
|
858
|
-
phone?: string | undefined;
|
859
|
-
industry?: string | undefined;
|
890
|
+
phone?: string | null | undefined;
|
891
|
+
industry?: string | null | undefined;
|
860
892
|
} | null;
|
861
893
|
contactEmails: {
|
862
894
|
id: string;
|
@@ -875,10 +907,18 @@ export declare const ContactContractValidationSchema: {
|
|
875
907
|
phone: string;
|
876
908
|
}[];
|
877
909
|
activityLogs?: {
|
910
|
+
id: string;
|
878
911
|
description: string;
|
912
|
+
createdAt: Date;
|
913
|
+
updatedAt: Date;
|
914
|
+
deletedAt: Date | null;
|
879
915
|
entityId: string;
|
880
916
|
entityType: {
|
917
|
+
id: string;
|
881
918
|
description: string | null;
|
919
|
+
createdAt: Date;
|
920
|
+
updatedAt: Date;
|
921
|
+
deletedAt: Date | null;
|
882
922
|
entity: string;
|
883
923
|
};
|
884
924
|
}[] | undefined;
|
@@ -946,10 +986,10 @@ export declare const ContactContractValidationSchema: {
|
|
946
986
|
createdAt: Date;
|
947
987
|
updatedAt: Date;
|
948
988
|
deletedAt: Date | null;
|
949
|
-
address?: string | undefined;
|
989
|
+
address?: string | null | undefined;
|
950
990
|
name?: string | undefined;
|
951
|
-
phone?: string | undefined;
|
952
|
-
industry?: string | undefined;
|
991
|
+
phone?: string | null | undefined;
|
992
|
+
industry?: string | null | undefined;
|
953
993
|
} | null;
|
954
994
|
contactEmails: {
|
955
995
|
id: string;
|
@@ -968,10 +1008,18 @@ export declare const ContactContractValidationSchema: {
|
|
968
1008
|
phone: string;
|
969
1009
|
}[];
|
970
1010
|
activityLogs?: {
|
1011
|
+
id: string;
|
971
1012
|
description: string;
|
1013
|
+
createdAt: Date;
|
1014
|
+
updatedAt: Date;
|
1015
|
+
deletedAt: Date | null;
|
972
1016
|
entityId: string;
|
973
1017
|
entityType: {
|
1018
|
+
id: string;
|
974
1019
|
description: string | null;
|
1020
|
+
createdAt: Date;
|
1021
|
+
updatedAt: Date;
|
1022
|
+
deletedAt: Date | null;
|
975
1023
|
entity: string;
|
976
1024
|
};
|
977
1025
|
}[] | undefined;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/contact/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,+BAA+B
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/contact/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2C3C,CAAC"}
|