@kl1/contracts 1.0.33 → 1.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/dist/index.js +101 -26
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +101 -26
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/channel/index.d.ts +564 -1
  6. package/dist/src/channel/index.d.ts.map +1 -1
  7. package/dist/src/chat/index.d.ts +11644 -11982
  8. package/dist/src/chat/index.d.ts.map +1 -1
  9. package/dist/src/chat/schema.d.ts +44 -0
  10. package/dist/src/chat/schema.d.ts.map +1 -1
  11. package/dist/src/chat/validation.d.ts +896 -1401
  12. package/dist/src/chat/validation.d.ts.map +1 -1
  13. package/dist/src/comment/index.d.ts +155 -395
  14. package/dist/src/comment/index.d.ts.map +1 -1
  15. package/dist/src/comment/schema.d.ts +45 -117
  16. package/dist/src/comment/schema.d.ts.map +1 -1
  17. package/dist/src/contact/index.d.ts +77 -0
  18. package/dist/src/contact/index.d.ts.map +1 -1
  19. package/dist/src/contact/schema.d.ts +16 -0
  20. package/dist/src/contact/schema.d.ts.map +1 -1
  21. package/dist/src/contact/validation.d.ts +63 -0
  22. package/dist/src/contact/validation.d.ts.map +1 -1
  23. package/dist/src/contract.d.ts +1887 -6248
  24. package/dist/src/contract.d.ts.map +1 -1
  25. package/dist/src/cx-log/index.d.ts +127 -0
  26. package/dist/src/cx-log/index.d.ts.map +1 -1
  27. package/dist/src/cx-log/schema.d.ts +101 -0
  28. package/dist/src/cx-log/schema.d.ts.map +1 -1
  29. package/dist/src/mail/mail-contract.d.ts +7 -0
  30. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  31. package/dist/src/mail/room-contract.d.ts +7 -0
  32. package/dist/src/mail/room-contract.d.ts.map +1 -1
  33. package/dist/src/mail/schemas/room.schema.d.ts +5 -0
  34. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  35. package/dist/src/messenger/index.d.ts +280 -0
  36. package/dist/src/messenger/index.d.ts.map +1 -1
  37. package/dist/src/telephony-cdr/index.d.ts +112 -1
  38. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  39. package/dist/src/telephony-cdr/schema.d.ts +53 -0
  40. package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
  41. package/dist/src/telephony-cdr/validation.d.ts +46 -0
  42. package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
  43. package/dist/src/ticket/index.d.ts +245 -629
  44. package/dist/src/ticket/index.d.ts.map +1 -1
  45. package/dist/src/ticket/schema.d.ts +60 -168
  46. package/dist/src/ticket/schema.d.ts.map +1 -1
  47. package/dist/src/upload/schema.d.ts +3 -0
  48. package/dist/src/upload/schema.d.ts.map +1 -1
  49. package/package.json +46 -47
@@ -148,6 +148,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
148
148
  fileName: z.ZodString;
149
149
  fileSize: z.ZodNumber;
150
150
  fileKey: z.ZodString;
151
+ fileUrl: z.ZodNullable<z.ZodString>;
151
152
  }, "strip", z.ZodTypeAny, {
152
153
  id: string;
153
154
  createdAt: Date;
@@ -157,6 +158,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
157
158
  fileKey: string;
158
159
  bucketName: string;
159
160
  fileSize: number;
161
+ fileUrl: string | null;
160
162
  }, {
161
163
  id: string;
162
164
  createdAt: Date;
@@ -166,6 +168,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
166
168
  fileKey: string;
167
169
  bucketName: string;
168
170
  fileSize: number;
171
+ fileUrl: string | null;
169
172
  }>;
170
173
  }, "strip", z.ZodTypeAny, {
171
174
  id: string;
@@ -182,6 +185,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
182
185
  fileKey: string;
183
186
  bucketName: string;
184
187
  fileSize: number;
188
+ fileUrl: string | null;
185
189
  };
186
190
  }, {
187
191
  id: string;
@@ -198,6 +202,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
198
202
  fileKey: string;
199
203
  bucketName: string;
200
204
  fileSize: number;
205
+ fileUrl: string | null;
201
206
  };
202
207
  }>, "many">;
203
208
  }, "strip", z.ZodTypeAny, {
@@ -238,6 +243,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
238
243
  fileKey: string;
239
244
  bucketName: string;
240
245
  fileSize: number;
246
+ fileUrl: string | null;
241
247
  };
242
248
  }[];
243
249
  }, {
@@ -278,6 +284,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
278
284
  fileKey: string;
279
285
  bucketName: string;
280
286
  fileSize: number;
287
+ fileUrl: string | null;
281
288
  };
282
289
  }[];
283
290
  }>;
@@ -663,6 +670,7 @@ export declare const ContactSchema: z.ZodObject<{
663
670
  fileName: z.ZodString;
664
671
  fileSize: z.ZodNumber;
665
672
  fileKey: z.ZodString;
673
+ fileUrl: z.ZodNullable<z.ZodString>;
666
674
  }, "strip", z.ZodTypeAny, {
667
675
  id: string;
668
676
  createdAt: Date;
@@ -672,6 +680,7 @@ export declare const ContactSchema: z.ZodObject<{
672
680
  fileKey: string;
673
681
  bucketName: string;
674
682
  fileSize: number;
683
+ fileUrl: string | null;
675
684
  }, {
676
685
  id: string;
677
686
  createdAt: Date;
@@ -681,6 +690,7 @@ export declare const ContactSchema: z.ZodObject<{
681
690
  fileKey: string;
682
691
  bucketName: string;
683
692
  fileSize: number;
693
+ fileUrl: string | null;
684
694
  }>;
685
695
  }, "strip", z.ZodTypeAny, {
686
696
  id: string;
@@ -697,6 +707,7 @@ export declare const ContactSchema: z.ZodObject<{
697
707
  fileKey: string;
698
708
  bucketName: string;
699
709
  fileSize: number;
710
+ fileUrl: string | null;
700
711
  };
701
712
  }, {
702
713
  id: string;
@@ -713,6 +724,7 @@ export declare const ContactSchema: z.ZodObject<{
713
724
  fileKey: string;
714
725
  bucketName: string;
715
726
  fileSize: number;
727
+ fileUrl: string | null;
716
728
  };
717
729
  }>, "many">;
718
730
  }, "strip", z.ZodTypeAny, {
@@ -753,6 +765,7 @@ export declare const ContactSchema: z.ZodObject<{
753
765
  fileKey: string;
754
766
  bucketName: string;
755
767
  fileSize: number;
768
+ fileUrl: string | null;
756
769
  };
757
770
  }[];
758
771
  }, {
@@ -793,6 +806,7 @@ export declare const ContactSchema: z.ZodObject<{
793
806
  fileKey: string;
794
807
  bucketName: string;
795
808
  fileSize: number;
809
+ fileUrl: string | null;
796
810
  };
797
811
  }[];
798
812
  }>, "many">;
@@ -946,6 +960,7 @@ export declare const ContactSchema: z.ZodObject<{
946
960
  fileKey: string;
947
961
  bucketName: string;
948
962
  fileSize: number;
963
+ fileUrl: string | null;
949
964
  };
950
965
  }[];
951
966
  }[];
@@ -1047,6 +1062,7 @@ export declare const ContactSchema: z.ZodObject<{
1047
1062
  fileKey: string;
1048
1063
  bucketName: string;
1049
1064
  fileSize: number;
1065
+ fileUrl: string | null;
1050
1066
  };
1051
1067
  }[];
1052
1068
  }[];
@@ -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;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBnC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC"}
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;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAO9B,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgBnC,CAAC;AAEH,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;EAOnC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBxB,CAAC"}
@@ -584,6 +584,7 @@ export declare const ContactContractValidationSchema: {
584
584
  fileName: z.ZodString;
585
585
  fileSize: z.ZodNumber;
586
586
  fileKey: z.ZodString;
587
+ fileUrl: z.ZodNullable<z.ZodString>;
587
588
  }, "strip", z.ZodTypeAny, {
588
589
  id: string;
589
590
  createdAt: Date;
@@ -593,6 +594,7 @@ export declare const ContactContractValidationSchema: {
593
594
  fileKey: string;
594
595
  bucketName: string;
595
596
  fileSize: number;
597
+ fileUrl: string | null;
596
598
  }, {
597
599
  id: string;
598
600
  createdAt: Date;
@@ -602,6 +604,7 @@ export declare const ContactContractValidationSchema: {
602
604
  fileKey: string;
603
605
  bucketName: string;
604
606
  fileSize: number;
607
+ fileUrl: string | null;
605
608
  }>;
606
609
  }, "strip", z.ZodTypeAny, {
607
610
  id: string;
@@ -618,6 +621,7 @@ export declare const ContactContractValidationSchema: {
618
621
  fileKey: string;
619
622
  bucketName: string;
620
623
  fileSize: number;
624
+ fileUrl: string | null;
621
625
  };
622
626
  }, {
623
627
  id: string;
@@ -634,6 +638,7 @@ export declare const ContactContractValidationSchema: {
634
638
  fileKey: string;
635
639
  bucketName: string;
636
640
  fileSize: number;
641
+ fileUrl: string | null;
637
642
  };
638
643
  }>, "many">;
639
644
  }, "strip", z.ZodTypeAny, {
@@ -674,6 +679,7 @@ export declare const ContactContractValidationSchema: {
674
679
  fileKey: string;
675
680
  bucketName: string;
676
681
  fileSize: number;
682
+ fileUrl: string | null;
677
683
  };
678
684
  }[];
679
685
  }, {
@@ -714,6 +720,7 @@ export declare const ContactContractValidationSchema: {
714
720
  fileKey: string;
715
721
  bucketName: string;
716
722
  fileSize: number;
723
+ fileUrl: string | null;
717
724
  };
718
725
  }[];
719
726
  }>, "many">;
@@ -867,6 +874,7 @@ export declare const ContactContractValidationSchema: {
867
874
  fileKey: string;
868
875
  bucketName: string;
869
876
  fileSize: number;
877
+ fileUrl: string | null;
870
878
  };
871
879
  }[];
872
880
  }[];
@@ -968,6 +976,7 @@ export declare const ContactContractValidationSchema: {
968
976
  fileKey: string;
969
977
  bucketName: string;
970
978
  fileSize: number;
979
+ fileUrl: string | null;
971
980
  };
972
981
  }[];
973
982
  }[];
@@ -1404,6 +1413,7 @@ export declare const ContactContractValidationSchema: {
1404
1413
  fileName: z.ZodString;
1405
1414
  fileSize: z.ZodNumber;
1406
1415
  fileKey: z.ZodString;
1416
+ fileUrl: z.ZodNullable<z.ZodString>;
1407
1417
  }, "strip", z.ZodTypeAny, {
1408
1418
  id: string;
1409
1419
  createdAt: Date;
@@ -1413,6 +1423,7 @@ export declare const ContactContractValidationSchema: {
1413
1423
  fileKey: string;
1414
1424
  bucketName: string;
1415
1425
  fileSize: number;
1426
+ fileUrl: string | null;
1416
1427
  }, {
1417
1428
  id: string;
1418
1429
  createdAt: Date;
@@ -1422,6 +1433,7 @@ export declare const ContactContractValidationSchema: {
1422
1433
  fileKey: string;
1423
1434
  bucketName: string;
1424
1435
  fileSize: number;
1436
+ fileUrl: string | null;
1425
1437
  }>;
1426
1438
  }, "strip", z.ZodTypeAny, {
1427
1439
  id: string;
@@ -1438,6 +1450,7 @@ export declare const ContactContractValidationSchema: {
1438
1450
  fileKey: string;
1439
1451
  bucketName: string;
1440
1452
  fileSize: number;
1453
+ fileUrl: string | null;
1441
1454
  };
1442
1455
  }, {
1443
1456
  id: string;
@@ -1454,6 +1467,7 @@ export declare const ContactContractValidationSchema: {
1454
1467
  fileKey: string;
1455
1468
  bucketName: string;
1456
1469
  fileSize: number;
1470
+ fileUrl: string | null;
1457
1471
  };
1458
1472
  }>, "many">;
1459
1473
  }, "strip", z.ZodTypeAny, {
@@ -1494,6 +1508,7 @@ export declare const ContactContractValidationSchema: {
1494
1508
  fileKey: string;
1495
1509
  bucketName: string;
1496
1510
  fileSize: number;
1511
+ fileUrl: string | null;
1497
1512
  };
1498
1513
  }[];
1499
1514
  }, {
@@ -1534,6 +1549,7 @@ export declare const ContactContractValidationSchema: {
1534
1549
  fileKey: string;
1535
1550
  bucketName: string;
1536
1551
  fileSize: number;
1552
+ fileUrl: string | null;
1537
1553
  };
1538
1554
  }[];
1539
1555
  }>, "many">;
@@ -1687,6 +1703,7 @@ export declare const ContactContractValidationSchema: {
1687
1703
  fileKey: string;
1688
1704
  bucketName: string;
1689
1705
  fileSize: number;
1706
+ fileUrl: string | null;
1690
1707
  };
1691
1708
  }[];
1692
1709
  }[];
@@ -1788,6 +1805,7 @@ export declare const ContactContractValidationSchema: {
1788
1805
  fileKey: string;
1789
1806
  bucketName: string;
1790
1807
  fileSize: number;
1808
+ fileUrl: string | null;
1791
1809
  };
1792
1810
  }[];
1793
1811
  }[];
@@ -2154,6 +2172,7 @@ export declare const ContactContractValidationSchema: {
2154
2172
  fileName: z.ZodString;
2155
2173
  fileSize: z.ZodNumber;
2156
2174
  fileKey: z.ZodString;
2175
+ fileUrl: z.ZodNullable<z.ZodString>;
2157
2176
  }, "strip", z.ZodTypeAny, {
2158
2177
  id: string;
2159
2178
  createdAt: Date;
@@ -2163,6 +2182,7 @@ export declare const ContactContractValidationSchema: {
2163
2182
  fileKey: string;
2164
2183
  bucketName: string;
2165
2184
  fileSize: number;
2185
+ fileUrl: string | null;
2166
2186
  }, {
2167
2187
  id: string;
2168
2188
  createdAt: Date;
@@ -2172,6 +2192,7 @@ export declare const ContactContractValidationSchema: {
2172
2192
  fileKey: string;
2173
2193
  bucketName: string;
2174
2194
  fileSize: number;
2195
+ fileUrl: string | null;
2175
2196
  }>;
2176
2197
  }, "strip", z.ZodTypeAny, {
2177
2198
  id: string;
@@ -2188,6 +2209,7 @@ export declare const ContactContractValidationSchema: {
2188
2209
  fileKey: string;
2189
2210
  bucketName: string;
2190
2211
  fileSize: number;
2212
+ fileUrl: string | null;
2191
2213
  };
2192
2214
  }, {
2193
2215
  id: string;
@@ -2204,6 +2226,7 @@ export declare const ContactContractValidationSchema: {
2204
2226
  fileKey: string;
2205
2227
  bucketName: string;
2206
2228
  fileSize: number;
2229
+ fileUrl: string | null;
2207
2230
  };
2208
2231
  }>, "many">;
2209
2232
  }, "strip", z.ZodTypeAny, {
@@ -2244,6 +2267,7 @@ export declare const ContactContractValidationSchema: {
2244
2267
  fileKey: string;
2245
2268
  bucketName: string;
2246
2269
  fileSize: number;
2270
+ fileUrl: string | null;
2247
2271
  };
2248
2272
  }[];
2249
2273
  }, {
@@ -2284,6 +2308,7 @@ export declare const ContactContractValidationSchema: {
2284
2308
  fileKey: string;
2285
2309
  bucketName: string;
2286
2310
  fileSize: number;
2311
+ fileUrl: string | null;
2287
2312
  };
2288
2313
  }[];
2289
2314
  }>, "many">;
@@ -2437,6 +2462,7 @@ export declare const ContactContractValidationSchema: {
2437
2462
  fileKey: string;
2438
2463
  bucketName: string;
2439
2464
  fileSize: number;
2465
+ fileUrl: string | null;
2440
2466
  };
2441
2467
  }[];
2442
2468
  }[];
@@ -2538,6 +2564,7 @@ export declare const ContactContractValidationSchema: {
2538
2564
  fileKey: string;
2539
2565
  bucketName: string;
2540
2566
  fileSize: number;
2567
+ fileUrl: string | null;
2541
2568
  };
2542
2569
  }[];
2543
2570
  }[];
@@ -2903,6 +2930,7 @@ export declare const ContactContractValidationSchema: {
2903
2930
  fileName: z.ZodString;
2904
2931
  fileSize: z.ZodNumber;
2905
2932
  fileKey: z.ZodString;
2933
+ fileUrl: z.ZodNullable<z.ZodString>;
2906
2934
  }, "strip", z.ZodTypeAny, {
2907
2935
  id: string;
2908
2936
  createdAt: Date;
@@ -2912,6 +2940,7 @@ export declare const ContactContractValidationSchema: {
2912
2940
  fileKey: string;
2913
2941
  bucketName: string;
2914
2942
  fileSize: number;
2943
+ fileUrl: string | null;
2915
2944
  }, {
2916
2945
  id: string;
2917
2946
  createdAt: Date;
@@ -2921,6 +2950,7 @@ export declare const ContactContractValidationSchema: {
2921
2950
  fileKey: string;
2922
2951
  bucketName: string;
2923
2952
  fileSize: number;
2953
+ fileUrl: string | null;
2924
2954
  }>;
2925
2955
  }, "strip", z.ZodTypeAny, {
2926
2956
  id: string;
@@ -2937,6 +2967,7 @@ export declare const ContactContractValidationSchema: {
2937
2967
  fileKey: string;
2938
2968
  bucketName: string;
2939
2969
  fileSize: number;
2970
+ fileUrl: string | null;
2940
2971
  };
2941
2972
  }, {
2942
2973
  id: string;
@@ -2953,6 +2984,7 @@ export declare const ContactContractValidationSchema: {
2953
2984
  fileKey: string;
2954
2985
  bucketName: string;
2955
2986
  fileSize: number;
2987
+ fileUrl: string | null;
2956
2988
  };
2957
2989
  }>, "many">;
2958
2990
  }, "strip", z.ZodTypeAny, {
@@ -2993,6 +3025,7 @@ export declare const ContactContractValidationSchema: {
2993
3025
  fileKey: string;
2994
3026
  bucketName: string;
2995
3027
  fileSize: number;
3028
+ fileUrl: string | null;
2996
3029
  };
2997
3030
  }[];
2998
3031
  }, {
@@ -3033,6 +3066,7 @@ export declare const ContactContractValidationSchema: {
3033
3066
  fileKey: string;
3034
3067
  bucketName: string;
3035
3068
  fileSize: number;
3069
+ fileUrl: string | null;
3036
3070
  };
3037
3071
  }[];
3038
3072
  }>, "many">;
@@ -3186,6 +3220,7 @@ export declare const ContactContractValidationSchema: {
3186
3220
  fileKey: string;
3187
3221
  bucketName: string;
3188
3222
  fileSize: number;
3223
+ fileUrl: string | null;
3189
3224
  };
3190
3225
  }[];
3191
3226
  }[];
@@ -3287,6 +3322,7 @@ export declare const ContactContractValidationSchema: {
3287
3322
  fileKey: string;
3288
3323
  bucketName: string;
3289
3324
  fileSize: number;
3325
+ fileUrl: string | null;
3290
3326
  };
3291
3327
  }[];
3292
3328
  }[];
@@ -3655,6 +3691,7 @@ export declare const ContactContractValidationSchema: {
3655
3691
  fileName: z.ZodString;
3656
3692
  fileSize: z.ZodNumber;
3657
3693
  fileKey: z.ZodString;
3694
+ fileUrl: z.ZodNullable<z.ZodString>;
3658
3695
  }, "strip", z.ZodTypeAny, {
3659
3696
  id: string;
3660
3697
  createdAt: Date;
@@ -3664,6 +3701,7 @@ export declare const ContactContractValidationSchema: {
3664
3701
  fileKey: string;
3665
3702
  bucketName: string;
3666
3703
  fileSize: number;
3704
+ fileUrl: string | null;
3667
3705
  }, {
3668
3706
  id: string;
3669
3707
  createdAt: Date;
@@ -3673,6 +3711,7 @@ export declare const ContactContractValidationSchema: {
3673
3711
  fileKey: string;
3674
3712
  bucketName: string;
3675
3713
  fileSize: number;
3714
+ fileUrl: string | null;
3676
3715
  }>;
3677
3716
  }, "strip", z.ZodTypeAny, {
3678
3717
  id: string;
@@ -3689,6 +3728,7 @@ export declare const ContactContractValidationSchema: {
3689
3728
  fileKey: string;
3690
3729
  bucketName: string;
3691
3730
  fileSize: number;
3731
+ fileUrl: string | null;
3692
3732
  };
3693
3733
  }, {
3694
3734
  id: string;
@@ -3705,6 +3745,7 @@ export declare const ContactContractValidationSchema: {
3705
3745
  fileKey: string;
3706
3746
  bucketName: string;
3707
3747
  fileSize: number;
3748
+ fileUrl: string | null;
3708
3749
  };
3709
3750
  }>, "many">;
3710
3751
  }, "strip", z.ZodTypeAny, {
@@ -3745,6 +3786,7 @@ export declare const ContactContractValidationSchema: {
3745
3786
  fileKey: string;
3746
3787
  bucketName: string;
3747
3788
  fileSize: number;
3789
+ fileUrl: string | null;
3748
3790
  };
3749
3791
  }[];
3750
3792
  }, {
@@ -3785,6 +3827,7 @@ export declare const ContactContractValidationSchema: {
3785
3827
  fileKey: string;
3786
3828
  bucketName: string;
3787
3829
  fileSize: number;
3830
+ fileUrl: string | null;
3788
3831
  };
3789
3832
  }[];
3790
3833
  }>, "many">;
@@ -3938,6 +3981,7 @@ export declare const ContactContractValidationSchema: {
3938
3981
  fileKey: string;
3939
3982
  bucketName: string;
3940
3983
  fileSize: number;
3984
+ fileUrl: string | null;
3941
3985
  };
3942
3986
  }[];
3943
3987
  }[];
@@ -4039,6 +4083,7 @@ export declare const ContactContractValidationSchema: {
4039
4083
  fileKey: string;
4040
4084
  bucketName: string;
4041
4085
  fileSize: number;
4086
+ fileUrl: string | null;
4042
4087
  };
4043
4088
  }[];
4044
4089
  }[];
@@ -4443,6 +4488,7 @@ export declare const ContactContractValidationSchema: {
4443
4488
  fileName: z.ZodString;
4444
4489
  fileSize: z.ZodNumber;
4445
4490
  fileKey: z.ZodString;
4491
+ fileUrl: z.ZodNullable<z.ZodString>;
4446
4492
  }, "strip", z.ZodTypeAny, {
4447
4493
  id: string;
4448
4494
  createdAt: Date;
@@ -4452,6 +4498,7 @@ export declare const ContactContractValidationSchema: {
4452
4498
  fileKey: string;
4453
4499
  bucketName: string;
4454
4500
  fileSize: number;
4501
+ fileUrl: string | null;
4455
4502
  }, {
4456
4503
  id: string;
4457
4504
  createdAt: Date;
@@ -4461,6 +4508,7 @@ export declare const ContactContractValidationSchema: {
4461
4508
  fileKey: string;
4462
4509
  bucketName: string;
4463
4510
  fileSize: number;
4511
+ fileUrl: string | null;
4464
4512
  }>;
4465
4513
  }, "strip", z.ZodTypeAny, {
4466
4514
  id: string;
@@ -4477,6 +4525,7 @@ export declare const ContactContractValidationSchema: {
4477
4525
  fileKey: string;
4478
4526
  bucketName: string;
4479
4527
  fileSize: number;
4528
+ fileUrl: string | null;
4480
4529
  };
4481
4530
  }, {
4482
4531
  id: string;
@@ -4493,6 +4542,7 @@ export declare const ContactContractValidationSchema: {
4493
4542
  fileKey: string;
4494
4543
  bucketName: string;
4495
4544
  fileSize: number;
4545
+ fileUrl: string | null;
4496
4546
  };
4497
4547
  }>, "many">;
4498
4548
  }, "strip", z.ZodTypeAny, {
@@ -4533,6 +4583,7 @@ export declare const ContactContractValidationSchema: {
4533
4583
  fileKey: string;
4534
4584
  bucketName: string;
4535
4585
  fileSize: number;
4586
+ fileUrl: string | null;
4536
4587
  };
4537
4588
  }[];
4538
4589
  }, {
@@ -4573,6 +4624,7 @@ export declare const ContactContractValidationSchema: {
4573
4624
  fileKey: string;
4574
4625
  bucketName: string;
4575
4626
  fileSize: number;
4627
+ fileUrl: string | null;
4576
4628
  };
4577
4629
  }[];
4578
4630
  }>, "many">;
@@ -4726,6 +4778,7 @@ export declare const ContactContractValidationSchema: {
4726
4778
  fileKey: string;
4727
4779
  bucketName: string;
4728
4780
  fileSize: number;
4781
+ fileUrl: string | null;
4729
4782
  };
4730
4783
  }[];
4731
4784
  }[];
@@ -4827,6 +4880,7 @@ export declare const ContactContractValidationSchema: {
4827
4880
  fileKey: string;
4828
4881
  bucketName: string;
4829
4882
  fileSize: number;
4883
+ fileUrl: string | null;
4830
4884
  };
4831
4885
  }[];
4832
4886
  }[];
@@ -5229,6 +5283,7 @@ export declare const ContactContractValidationSchema: {
5229
5283
  fileName: z.ZodString;
5230
5284
  fileSize: z.ZodNumber;
5231
5285
  fileKey: z.ZodString;
5286
+ fileUrl: z.ZodNullable<z.ZodString>;
5232
5287
  }, "strip", z.ZodTypeAny, {
5233
5288
  id: string;
5234
5289
  createdAt: Date;
@@ -5238,6 +5293,7 @@ export declare const ContactContractValidationSchema: {
5238
5293
  fileKey: string;
5239
5294
  bucketName: string;
5240
5295
  fileSize: number;
5296
+ fileUrl: string | null;
5241
5297
  }, {
5242
5298
  id: string;
5243
5299
  createdAt: Date;
@@ -5247,6 +5303,7 @@ export declare const ContactContractValidationSchema: {
5247
5303
  fileKey: string;
5248
5304
  bucketName: string;
5249
5305
  fileSize: number;
5306
+ fileUrl: string | null;
5250
5307
  }>;
5251
5308
  }, "strip", z.ZodTypeAny, {
5252
5309
  id: string;
@@ -5263,6 +5320,7 @@ export declare const ContactContractValidationSchema: {
5263
5320
  fileKey: string;
5264
5321
  bucketName: string;
5265
5322
  fileSize: number;
5323
+ fileUrl: string | null;
5266
5324
  };
5267
5325
  }, {
5268
5326
  id: string;
@@ -5279,6 +5337,7 @@ export declare const ContactContractValidationSchema: {
5279
5337
  fileKey: string;
5280
5338
  bucketName: string;
5281
5339
  fileSize: number;
5340
+ fileUrl: string | null;
5282
5341
  };
5283
5342
  }>, "many">;
5284
5343
  }, "strip", z.ZodTypeAny, {
@@ -5319,6 +5378,7 @@ export declare const ContactContractValidationSchema: {
5319
5378
  fileKey: string;
5320
5379
  bucketName: string;
5321
5380
  fileSize: number;
5381
+ fileUrl: string | null;
5322
5382
  };
5323
5383
  }[];
5324
5384
  }, {
@@ -5359,6 +5419,7 @@ export declare const ContactContractValidationSchema: {
5359
5419
  fileKey: string;
5360
5420
  bucketName: string;
5361
5421
  fileSize: number;
5422
+ fileUrl: string | null;
5362
5423
  };
5363
5424
  }[];
5364
5425
  }>, "many">;
@@ -5512,6 +5573,7 @@ export declare const ContactContractValidationSchema: {
5512
5573
  fileKey: string;
5513
5574
  bucketName: string;
5514
5575
  fileSize: number;
5576
+ fileUrl: string | null;
5515
5577
  };
5516
5578
  }[];
5517
5579
  }[];
@@ -5613,6 +5675,7 @@ export declare const ContactContractValidationSchema: {
5613
5675
  fileKey: string;
5614
5676
  bucketName: string;
5615
5677
  fileSize: number;
5678
+ fileUrl: string | null;
5616
5679
  };
5617
5680
  }[];
5618
5681
  }[];
@@ -1 +1 @@
1
- {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/contact/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyL3C,CAAC"}
1
+ {"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/contact/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyL3C,CAAC"}