@kl1/contracts 1.0.43 → 1.0.45
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 +333 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +333 -25
- package/dist/index.mjs.map +1 -1
- package/dist/src/app/index.d.ts +17 -0
- package/dist/src/app/index.d.ts.map +1 -0
- package/dist/src/chat/index.d.ts +203 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +44 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +48 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +1540 -150
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +424 -22
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +77 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +16 -0
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +63 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +9588 -950
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +610 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +514 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +7 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/mail-server.d.ts +216 -0
- package/dist/src/mail/mail-server.d.ts.map +1 -0
- package/dist/src/mail/room-contract.d.ts +7 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +24 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/platform-contact/schema.d.ts +30 -0
- package/dist/src/platform-contact/schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/call-report.schema.d.ts +1753 -0
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -0
- package/dist/src/telephony-cdr/index.d.ts +4378 -175
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +1050 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts +56 -0
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +2338 -171
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +327 -12
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/upload/schema.d.ts +3 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/package.json +1 -1
@@ -149,6 +149,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
149
149
|
fileSize: z.ZodNumber;
|
150
150
|
fileKey: z.ZodString;
|
151
151
|
fileUrl: z.ZodNullable<z.ZodString>;
|
152
|
+
status: z.ZodOptional<z.ZodString>;
|
152
153
|
}, "strip", z.ZodTypeAny, {
|
153
154
|
id: string;
|
154
155
|
createdAt: Date;
|
@@ -159,6 +160,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
159
160
|
bucketName: string;
|
160
161
|
fileSize: number;
|
161
162
|
fileUrl: string | null;
|
163
|
+
status?: string | undefined;
|
162
164
|
}, {
|
163
165
|
id: string;
|
164
166
|
createdAt: Date;
|
@@ -169,6 +171,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
169
171
|
bucketName: string;
|
170
172
|
fileSize: number;
|
171
173
|
fileUrl: string | null;
|
174
|
+
status?: string | undefined;
|
172
175
|
}>;
|
173
176
|
}, "strip", z.ZodTypeAny, {
|
174
177
|
id: string;
|
@@ -186,6 +189,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
186
189
|
bucketName: string;
|
187
190
|
fileSize: number;
|
188
191
|
fileUrl: string | null;
|
192
|
+
status?: string | undefined;
|
189
193
|
};
|
190
194
|
}, {
|
191
195
|
id: string;
|
@@ -203,6 +207,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
203
207
|
bucketName: string;
|
204
208
|
fileSize: number;
|
205
209
|
fileUrl: string | null;
|
210
|
+
status?: string | undefined;
|
206
211
|
};
|
207
212
|
}>, "many">;
|
208
213
|
}, "strip", z.ZodTypeAny, {
|
@@ -244,6 +249,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
244
249
|
bucketName: string;
|
245
250
|
fileSize: number;
|
246
251
|
fileUrl: string | null;
|
252
|
+
status?: string | undefined;
|
247
253
|
};
|
248
254
|
}[];
|
249
255
|
}, {
|
@@ -285,6 +291,7 @@ export declare const ContactCustomFieldSchema: z.ZodObject<{
|
|
285
291
|
bucketName: string;
|
286
292
|
fileSize: number;
|
287
293
|
fileUrl: string | null;
|
294
|
+
status?: string | undefined;
|
288
295
|
};
|
289
296
|
}[];
|
290
297
|
}>;
|
@@ -671,6 +678,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
671
678
|
fileSize: z.ZodNumber;
|
672
679
|
fileKey: z.ZodString;
|
673
680
|
fileUrl: z.ZodNullable<z.ZodString>;
|
681
|
+
status: z.ZodOptional<z.ZodString>;
|
674
682
|
}, "strip", z.ZodTypeAny, {
|
675
683
|
id: string;
|
676
684
|
createdAt: Date;
|
@@ -681,6 +689,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
681
689
|
bucketName: string;
|
682
690
|
fileSize: number;
|
683
691
|
fileUrl: string | null;
|
692
|
+
status?: string | undefined;
|
684
693
|
}, {
|
685
694
|
id: string;
|
686
695
|
createdAt: Date;
|
@@ -691,6 +700,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
691
700
|
bucketName: string;
|
692
701
|
fileSize: number;
|
693
702
|
fileUrl: string | null;
|
703
|
+
status?: string | undefined;
|
694
704
|
}>;
|
695
705
|
}, "strip", z.ZodTypeAny, {
|
696
706
|
id: string;
|
@@ -708,6 +718,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
708
718
|
bucketName: string;
|
709
719
|
fileSize: number;
|
710
720
|
fileUrl: string | null;
|
721
|
+
status?: string | undefined;
|
711
722
|
};
|
712
723
|
}, {
|
713
724
|
id: string;
|
@@ -725,6 +736,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
725
736
|
bucketName: string;
|
726
737
|
fileSize: number;
|
727
738
|
fileUrl: string | null;
|
739
|
+
status?: string | undefined;
|
728
740
|
};
|
729
741
|
}>, "many">;
|
730
742
|
}, "strip", z.ZodTypeAny, {
|
@@ -766,6 +778,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
766
778
|
bucketName: string;
|
767
779
|
fileSize: number;
|
768
780
|
fileUrl: string | null;
|
781
|
+
status?: string | undefined;
|
769
782
|
};
|
770
783
|
}[];
|
771
784
|
}, {
|
@@ -807,6 +820,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
807
820
|
bucketName: string;
|
808
821
|
fileSize: number;
|
809
822
|
fileUrl: string | null;
|
823
|
+
status?: string | undefined;
|
810
824
|
};
|
811
825
|
}[];
|
812
826
|
}>, "many">;
|
@@ -961,6 +975,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
961
975
|
bucketName: string;
|
962
976
|
fileSize: number;
|
963
977
|
fileUrl: string | null;
|
978
|
+
status?: string | undefined;
|
964
979
|
};
|
965
980
|
}[];
|
966
981
|
}[];
|
@@ -1063,6 +1078,7 @@ export declare const ContactSchema: z.ZodObject<{
|
|
1063
1078
|
bucketName: string;
|
1064
1079
|
fileSize: number;
|
1065
1080
|
fileUrl: string | null;
|
1081
|
+
status?: string | undefined;
|
1066
1082
|
};
|
1067
1083
|
}[];
|
1068
1084
|
}[];
|
@@ -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
|
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"}
|
@@ -585,6 +585,7 @@ export declare const ContactContractValidationSchema: {
|
|
585
585
|
fileSize: z.ZodNumber;
|
586
586
|
fileKey: z.ZodString;
|
587
587
|
fileUrl: z.ZodNullable<z.ZodString>;
|
588
|
+
status: z.ZodOptional<z.ZodString>;
|
588
589
|
}, "strip", z.ZodTypeAny, {
|
589
590
|
id: string;
|
590
591
|
createdAt: Date;
|
@@ -595,6 +596,7 @@ export declare const ContactContractValidationSchema: {
|
|
595
596
|
bucketName: string;
|
596
597
|
fileSize: number;
|
597
598
|
fileUrl: string | null;
|
599
|
+
status?: string | undefined;
|
598
600
|
}, {
|
599
601
|
id: string;
|
600
602
|
createdAt: Date;
|
@@ -605,6 +607,7 @@ export declare const ContactContractValidationSchema: {
|
|
605
607
|
bucketName: string;
|
606
608
|
fileSize: number;
|
607
609
|
fileUrl: string | null;
|
610
|
+
status?: string | undefined;
|
608
611
|
}>;
|
609
612
|
}, "strip", z.ZodTypeAny, {
|
610
613
|
id: string;
|
@@ -622,6 +625,7 @@ export declare const ContactContractValidationSchema: {
|
|
622
625
|
bucketName: string;
|
623
626
|
fileSize: number;
|
624
627
|
fileUrl: string | null;
|
628
|
+
status?: string | undefined;
|
625
629
|
};
|
626
630
|
}, {
|
627
631
|
id: string;
|
@@ -639,6 +643,7 @@ export declare const ContactContractValidationSchema: {
|
|
639
643
|
bucketName: string;
|
640
644
|
fileSize: number;
|
641
645
|
fileUrl: string | null;
|
646
|
+
status?: string | undefined;
|
642
647
|
};
|
643
648
|
}>, "many">;
|
644
649
|
}, "strip", z.ZodTypeAny, {
|
@@ -680,6 +685,7 @@ export declare const ContactContractValidationSchema: {
|
|
680
685
|
bucketName: string;
|
681
686
|
fileSize: number;
|
682
687
|
fileUrl: string | null;
|
688
|
+
status?: string | undefined;
|
683
689
|
};
|
684
690
|
}[];
|
685
691
|
}, {
|
@@ -721,6 +727,7 @@ export declare const ContactContractValidationSchema: {
|
|
721
727
|
bucketName: string;
|
722
728
|
fileSize: number;
|
723
729
|
fileUrl: string | null;
|
730
|
+
status?: string | undefined;
|
724
731
|
};
|
725
732
|
}[];
|
726
733
|
}>, "many">;
|
@@ -875,6 +882,7 @@ export declare const ContactContractValidationSchema: {
|
|
875
882
|
bucketName: string;
|
876
883
|
fileSize: number;
|
877
884
|
fileUrl: string | null;
|
885
|
+
status?: string | undefined;
|
878
886
|
};
|
879
887
|
}[];
|
880
888
|
}[];
|
@@ -977,6 +985,7 @@ export declare const ContactContractValidationSchema: {
|
|
977
985
|
bucketName: string;
|
978
986
|
fileSize: number;
|
979
987
|
fileUrl: string | null;
|
988
|
+
status?: string | undefined;
|
980
989
|
};
|
981
990
|
}[];
|
982
991
|
}[];
|
@@ -1414,6 +1423,7 @@ export declare const ContactContractValidationSchema: {
|
|
1414
1423
|
fileSize: z.ZodNumber;
|
1415
1424
|
fileKey: z.ZodString;
|
1416
1425
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1426
|
+
status: z.ZodOptional<z.ZodString>;
|
1417
1427
|
}, "strip", z.ZodTypeAny, {
|
1418
1428
|
id: string;
|
1419
1429
|
createdAt: Date;
|
@@ -1424,6 +1434,7 @@ export declare const ContactContractValidationSchema: {
|
|
1424
1434
|
bucketName: string;
|
1425
1435
|
fileSize: number;
|
1426
1436
|
fileUrl: string | null;
|
1437
|
+
status?: string | undefined;
|
1427
1438
|
}, {
|
1428
1439
|
id: string;
|
1429
1440
|
createdAt: Date;
|
@@ -1434,6 +1445,7 @@ export declare const ContactContractValidationSchema: {
|
|
1434
1445
|
bucketName: string;
|
1435
1446
|
fileSize: number;
|
1436
1447
|
fileUrl: string | null;
|
1448
|
+
status?: string | undefined;
|
1437
1449
|
}>;
|
1438
1450
|
}, "strip", z.ZodTypeAny, {
|
1439
1451
|
id: string;
|
@@ -1451,6 +1463,7 @@ export declare const ContactContractValidationSchema: {
|
|
1451
1463
|
bucketName: string;
|
1452
1464
|
fileSize: number;
|
1453
1465
|
fileUrl: string | null;
|
1466
|
+
status?: string | undefined;
|
1454
1467
|
};
|
1455
1468
|
}, {
|
1456
1469
|
id: string;
|
@@ -1468,6 +1481,7 @@ export declare const ContactContractValidationSchema: {
|
|
1468
1481
|
bucketName: string;
|
1469
1482
|
fileSize: number;
|
1470
1483
|
fileUrl: string | null;
|
1484
|
+
status?: string | undefined;
|
1471
1485
|
};
|
1472
1486
|
}>, "many">;
|
1473
1487
|
}, "strip", z.ZodTypeAny, {
|
@@ -1509,6 +1523,7 @@ export declare const ContactContractValidationSchema: {
|
|
1509
1523
|
bucketName: string;
|
1510
1524
|
fileSize: number;
|
1511
1525
|
fileUrl: string | null;
|
1526
|
+
status?: string | undefined;
|
1512
1527
|
};
|
1513
1528
|
}[];
|
1514
1529
|
}, {
|
@@ -1550,6 +1565,7 @@ export declare const ContactContractValidationSchema: {
|
|
1550
1565
|
bucketName: string;
|
1551
1566
|
fileSize: number;
|
1552
1567
|
fileUrl: string | null;
|
1568
|
+
status?: string | undefined;
|
1553
1569
|
};
|
1554
1570
|
}[];
|
1555
1571
|
}>, "many">;
|
@@ -1704,6 +1720,7 @@ export declare const ContactContractValidationSchema: {
|
|
1704
1720
|
bucketName: string;
|
1705
1721
|
fileSize: number;
|
1706
1722
|
fileUrl: string | null;
|
1723
|
+
status?: string | undefined;
|
1707
1724
|
};
|
1708
1725
|
}[];
|
1709
1726
|
}[];
|
@@ -1806,6 +1823,7 @@ export declare const ContactContractValidationSchema: {
|
|
1806
1823
|
bucketName: string;
|
1807
1824
|
fileSize: number;
|
1808
1825
|
fileUrl: string | null;
|
1826
|
+
status?: string | undefined;
|
1809
1827
|
};
|
1810
1828
|
}[];
|
1811
1829
|
}[];
|
@@ -2173,6 +2191,7 @@ export declare const ContactContractValidationSchema: {
|
|
2173
2191
|
fileSize: z.ZodNumber;
|
2174
2192
|
fileKey: z.ZodString;
|
2175
2193
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2194
|
+
status: z.ZodOptional<z.ZodString>;
|
2176
2195
|
}, "strip", z.ZodTypeAny, {
|
2177
2196
|
id: string;
|
2178
2197
|
createdAt: Date;
|
@@ -2183,6 +2202,7 @@ export declare const ContactContractValidationSchema: {
|
|
2183
2202
|
bucketName: string;
|
2184
2203
|
fileSize: number;
|
2185
2204
|
fileUrl: string | null;
|
2205
|
+
status?: string | undefined;
|
2186
2206
|
}, {
|
2187
2207
|
id: string;
|
2188
2208
|
createdAt: Date;
|
@@ -2193,6 +2213,7 @@ export declare const ContactContractValidationSchema: {
|
|
2193
2213
|
bucketName: string;
|
2194
2214
|
fileSize: number;
|
2195
2215
|
fileUrl: string | null;
|
2216
|
+
status?: string | undefined;
|
2196
2217
|
}>;
|
2197
2218
|
}, "strip", z.ZodTypeAny, {
|
2198
2219
|
id: string;
|
@@ -2210,6 +2231,7 @@ export declare const ContactContractValidationSchema: {
|
|
2210
2231
|
bucketName: string;
|
2211
2232
|
fileSize: number;
|
2212
2233
|
fileUrl: string | null;
|
2234
|
+
status?: string | undefined;
|
2213
2235
|
};
|
2214
2236
|
}, {
|
2215
2237
|
id: string;
|
@@ -2227,6 +2249,7 @@ export declare const ContactContractValidationSchema: {
|
|
2227
2249
|
bucketName: string;
|
2228
2250
|
fileSize: number;
|
2229
2251
|
fileUrl: string | null;
|
2252
|
+
status?: string | undefined;
|
2230
2253
|
};
|
2231
2254
|
}>, "many">;
|
2232
2255
|
}, "strip", z.ZodTypeAny, {
|
@@ -2268,6 +2291,7 @@ export declare const ContactContractValidationSchema: {
|
|
2268
2291
|
bucketName: string;
|
2269
2292
|
fileSize: number;
|
2270
2293
|
fileUrl: string | null;
|
2294
|
+
status?: string | undefined;
|
2271
2295
|
};
|
2272
2296
|
}[];
|
2273
2297
|
}, {
|
@@ -2309,6 +2333,7 @@ export declare const ContactContractValidationSchema: {
|
|
2309
2333
|
bucketName: string;
|
2310
2334
|
fileSize: number;
|
2311
2335
|
fileUrl: string | null;
|
2336
|
+
status?: string | undefined;
|
2312
2337
|
};
|
2313
2338
|
}[];
|
2314
2339
|
}>, "many">;
|
@@ -2463,6 +2488,7 @@ export declare const ContactContractValidationSchema: {
|
|
2463
2488
|
bucketName: string;
|
2464
2489
|
fileSize: number;
|
2465
2490
|
fileUrl: string | null;
|
2491
|
+
status?: string | undefined;
|
2466
2492
|
};
|
2467
2493
|
}[];
|
2468
2494
|
}[];
|
@@ -2565,6 +2591,7 @@ export declare const ContactContractValidationSchema: {
|
|
2565
2591
|
bucketName: string;
|
2566
2592
|
fileSize: number;
|
2567
2593
|
fileUrl: string | null;
|
2594
|
+
status?: string | undefined;
|
2568
2595
|
};
|
2569
2596
|
}[];
|
2570
2597
|
}[];
|
@@ -2931,6 +2958,7 @@ export declare const ContactContractValidationSchema: {
|
|
2931
2958
|
fileSize: z.ZodNumber;
|
2932
2959
|
fileKey: z.ZodString;
|
2933
2960
|
fileUrl: z.ZodNullable<z.ZodString>;
|
2961
|
+
status: z.ZodOptional<z.ZodString>;
|
2934
2962
|
}, "strip", z.ZodTypeAny, {
|
2935
2963
|
id: string;
|
2936
2964
|
createdAt: Date;
|
@@ -2941,6 +2969,7 @@ export declare const ContactContractValidationSchema: {
|
|
2941
2969
|
bucketName: string;
|
2942
2970
|
fileSize: number;
|
2943
2971
|
fileUrl: string | null;
|
2972
|
+
status?: string | undefined;
|
2944
2973
|
}, {
|
2945
2974
|
id: string;
|
2946
2975
|
createdAt: Date;
|
@@ -2951,6 +2980,7 @@ export declare const ContactContractValidationSchema: {
|
|
2951
2980
|
bucketName: string;
|
2952
2981
|
fileSize: number;
|
2953
2982
|
fileUrl: string | null;
|
2983
|
+
status?: string | undefined;
|
2954
2984
|
}>;
|
2955
2985
|
}, "strip", z.ZodTypeAny, {
|
2956
2986
|
id: string;
|
@@ -2968,6 +2998,7 @@ export declare const ContactContractValidationSchema: {
|
|
2968
2998
|
bucketName: string;
|
2969
2999
|
fileSize: number;
|
2970
3000
|
fileUrl: string | null;
|
3001
|
+
status?: string | undefined;
|
2971
3002
|
};
|
2972
3003
|
}, {
|
2973
3004
|
id: string;
|
@@ -2985,6 +3016,7 @@ export declare const ContactContractValidationSchema: {
|
|
2985
3016
|
bucketName: string;
|
2986
3017
|
fileSize: number;
|
2987
3018
|
fileUrl: string | null;
|
3019
|
+
status?: string | undefined;
|
2988
3020
|
};
|
2989
3021
|
}>, "many">;
|
2990
3022
|
}, "strip", z.ZodTypeAny, {
|
@@ -3026,6 +3058,7 @@ export declare const ContactContractValidationSchema: {
|
|
3026
3058
|
bucketName: string;
|
3027
3059
|
fileSize: number;
|
3028
3060
|
fileUrl: string | null;
|
3061
|
+
status?: string | undefined;
|
3029
3062
|
};
|
3030
3063
|
}[];
|
3031
3064
|
}, {
|
@@ -3067,6 +3100,7 @@ export declare const ContactContractValidationSchema: {
|
|
3067
3100
|
bucketName: string;
|
3068
3101
|
fileSize: number;
|
3069
3102
|
fileUrl: string | null;
|
3103
|
+
status?: string | undefined;
|
3070
3104
|
};
|
3071
3105
|
}[];
|
3072
3106
|
}>, "many">;
|
@@ -3221,6 +3255,7 @@ export declare const ContactContractValidationSchema: {
|
|
3221
3255
|
bucketName: string;
|
3222
3256
|
fileSize: number;
|
3223
3257
|
fileUrl: string | null;
|
3258
|
+
status?: string | undefined;
|
3224
3259
|
};
|
3225
3260
|
}[];
|
3226
3261
|
}[];
|
@@ -3323,6 +3358,7 @@ export declare const ContactContractValidationSchema: {
|
|
3323
3358
|
bucketName: string;
|
3324
3359
|
fileSize: number;
|
3325
3360
|
fileUrl: string | null;
|
3361
|
+
status?: string | undefined;
|
3326
3362
|
};
|
3327
3363
|
}[];
|
3328
3364
|
}[];
|
@@ -3692,6 +3728,7 @@ export declare const ContactContractValidationSchema: {
|
|
3692
3728
|
fileSize: z.ZodNumber;
|
3693
3729
|
fileKey: z.ZodString;
|
3694
3730
|
fileUrl: z.ZodNullable<z.ZodString>;
|
3731
|
+
status: z.ZodOptional<z.ZodString>;
|
3695
3732
|
}, "strip", z.ZodTypeAny, {
|
3696
3733
|
id: string;
|
3697
3734
|
createdAt: Date;
|
@@ -3702,6 +3739,7 @@ export declare const ContactContractValidationSchema: {
|
|
3702
3739
|
bucketName: string;
|
3703
3740
|
fileSize: number;
|
3704
3741
|
fileUrl: string | null;
|
3742
|
+
status?: string | undefined;
|
3705
3743
|
}, {
|
3706
3744
|
id: string;
|
3707
3745
|
createdAt: Date;
|
@@ -3712,6 +3750,7 @@ export declare const ContactContractValidationSchema: {
|
|
3712
3750
|
bucketName: string;
|
3713
3751
|
fileSize: number;
|
3714
3752
|
fileUrl: string | null;
|
3753
|
+
status?: string | undefined;
|
3715
3754
|
}>;
|
3716
3755
|
}, "strip", z.ZodTypeAny, {
|
3717
3756
|
id: string;
|
@@ -3729,6 +3768,7 @@ export declare const ContactContractValidationSchema: {
|
|
3729
3768
|
bucketName: string;
|
3730
3769
|
fileSize: number;
|
3731
3770
|
fileUrl: string | null;
|
3771
|
+
status?: string | undefined;
|
3732
3772
|
};
|
3733
3773
|
}, {
|
3734
3774
|
id: string;
|
@@ -3746,6 +3786,7 @@ export declare const ContactContractValidationSchema: {
|
|
3746
3786
|
bucketName: string;
|
3747
3787
|
fileSize: number;
|
3748
3788
|
fileUrl: string | null;
|
3789
|
+
status?: string | undefined;
|
3749
3790
|
};
|
3750
3791
|
}>, "many">;
|
3751
3792
|
}, "strip", z.ZodTypeAny, {
|
@@ -3787,6 +3828,7 @@ export declare const ContactContractValidationSchema: {
|
|
3787
3828
|
bucketName: string;
|
3788
3829
|
fileSize: number;
|
3789
3830
|
fileUrl: string | null;
|
3831
|
+
status?: string | undefined;
|
3790
3832
|
};
|
3791
3833
|
}[];
|
3792
3834
|
}, {
|
@@ -3828,6 +3870,7 @@ export declare const ContactContractValidationSchema: {
|
|
3828
3870
|
bucketName: string;
|
3829
3871
|
fileSize: number;
|
3830
3872
|
fileUrl: string | null;
|
3873
|
+
status?: string | undefined;
|
3831
3874
|
};
|
3832
3875
|
}[];
|
3833
3876
|
}>, "many">;
|
@@ -3982,6 +4025,7 @@ export declare const ContactContractValidationSchema: {
|
|
3982
4025
|
bucketName: string;
|
3983
4026
|
fileSize: number;
|
3984
4027
|
fileUrl: string | null;
|
4028
|
+
status?: string | undefined;
|
3985
4029
|
};
|
3986
4030
|
}[];
|
3987
4031
|
}[];
|
@@ -4084,6 +4128,7 @@ export declare const ContactContractValidationSchema: {
|
|
4084
4128
|
bucketName: string;
|
4085
4129
|
fileSize: number;
|
4086
4130
|
fileUrl: string | null;
|
4131
|
+
status?: string | undefined;
|
4087
4132
|
};
|
4088
4133
|
}[];
|
4089
4134
|
}[];
|
@@ -4489,6 +4534,7 @@ export declare const ContactContractValidationSchema: {
|
|
4489
4534
|
fileSize: z.ZodNumber;
|
4490
4535
|
fileKey: z.ZodString;
|
4491
4536
|
fileUrl: z.ZodNullable<z.ZodString>;
|
4537
|
+
status: z.ZodOptional<z.ZodString>;
|
4492
4538
|
}, "strip", z.ZodTypeAny, {
|
4493
4539
|
id: string;
|
4494
4540
|
createdAt: Date;
|
@@ -4499,6 +4545,7 @@ export declare const ContactContractValidationSchema: {
|
|
4499
4545
|
bucketName: string;
|
4500
4546
|
fileSize: number;
|
4501
4547
|
fileUrl: string | null;
|
4548
|
+
status?: string | undefined;
|
4502
4549
|
}, {
|
4503
4550
|
id: string;
|
4504
4551
|
createdAt: Date;
|
@@ -4509,6 +4556,7 @@ export declare const ContactContractValidationSchema: {
|
|
4509
4556
|
bucketName: string;
|
4510
4557
|
fileSize: number;
|
4511
4558
|
fileUrl: string | null;
|
4559
|
+
status?: string | undefined;
|
4512
4560
|
}>;
|
4513
4561
|
}, "strip", z.ZodTypeAny, {
|
4514
4562
|
id: string;
|
@@ -4526,6 +4574,7 @@ export declare const ContactContractValidationSchema: {
|
|
4526
4574
|
bucketName: string;
|
4527
4575
|
fileSize: number;
|
4528
4576
|
fileUrl: string | null;
|
4577
|
+
status?: string | undefined;
|
4529
4578
|
};
|
4530
4579
|
}, {
|
4531
4580
|
id: string;
|
@@ -4543,6 +4592,7 @@ export declare const ContactContractValidationSchema: {
|
|
4543
4592
|
bucketName: string;
|
4544
4593
|
fileSize: number;
|
4545
4594
|
fileUrl: string | null;
|
4595
|
+
status?: string | undefined;
|
4546
4596
|
};
|
4547
4597
|
}>, "many">;
|
4548
4598
|
}, "strip", z.ZodTypeAny, {
|
@@ -4584,6 +4634,7 @@ export declare const ContactContractValidationSchema: {
|
|
4584
4634
|
bucketName: string;
|
4585
4635
|
fileSize: number;
|
4586
4636
|
fileUrl: string | null;
|
4637
|
+
status?: string | undefined;
|
4587
4638
|
};
|
4588
4639
|
}[];
|
4589
4640
|
}, {
|
@@ -4625,6 +4676,7 @@ export declare const ContactContractValidationSchema: {
|
|
4625
4676
|
bucketName: string;
|
4626
4677
|
fileSize: number;
|
4627
4678
|
fileUrl: string | null;
|
4679
|
+
status?: string | undefined;
|
4628
4680
|
};
|
4629
4681
|
}[];
|
4630
4682
|
}>, "many">;
|
@@ -4779,6 +4831,7 @@ export declare const ContactContractValidationSchema: {
|
|
4779
4831
|
bucketName: string;
|
4780
4832
|
fileSize: number;
|
4781
4833
|
fileUrl: string | null;
|
4834
|
+
status?: string | undefined;
|
4782
4835
|
};
|
4783
4836
|
}[];
|
4784
4837
|
}[];
|
@@ -4881,6 +4934,7 @@ export declare const ContactContractValidationSchema: {
|
|
4881
4934
|
bucketName: string;
|
4882
4935
|
fileSize: number;
|
4883
4936
|
fileUrl: string | null;
|
4937
|
+
status?: string | undefined;
|
4884
4938
|
};
|
4885
4939
|
}[];
|
4886
4940
|
}[];
|
@@ -5284,6 +5338,7 @@ export declare const ContactContractValidationSchema: {
|
|
5284
5338
|
fileSize: z.ZodNumber;
|
5285
5339
|
fileKey: z.ZodString;
|
5286
5340
|
fileUrl: z.ZodNullable<z.ZodString>;
|
5341
|
+
status: z.ZodOptional<z.ZodString>;
|
5287
5342
|
}, "strip", z.ZodTypeAny, {
|
5288
5343
|
id: string;
|
5289
5344
|
createdAt: Date;
|
@@ -5294,6 +5349,7 @@ export declare const ContactContractValidationSchema: {
|
|
5294
5349
|
bucketName: string;
|
5295
5350
|
fileSize: number;
|
5296
5351
|
fileUrl: string | null;
|
5352
|
+
status?: string | undefined;
|
5297
5353
|
}, {
|
5298
5354
|
id: string;
|
5299
5355
|
createdAt: Date;
|
@@ -5304,6 +5360,7 @@ export declare const ContactContractValidationSchema: {
|
|
5304
5360
|
bucketName: string;
|
5305
5361
|
fileSize: number;
|
5306
5362
|
fileUrl: string | null;
|
5363
|
+
status?: string | undefined;
|
5307
5364
|
}>;
|
5308
5365
|
}, "strip", z.ZodTypeAny, {
|
5309
5366
|
id: string;
|
@@ -5321,6 +5378,7 @@ export declare const ContactContractValidationSchema: {
|
|
5321
5378
|
bucketName: string;
|
5322
5379
|
fileSize: number;
|
5323
5380
|
fileUrl: string | null;
|
5381
|
+
status?: string | undefined;
|
5324
5382
|
};
|
5325
5383
|
}, {
|
5326
5384
|
id: string;
|
@@ -5338,6 +5396,7 @@ export declare const ContactContractValidationSchema: {
|
|
5338
5396
|
bucketName: string;
|
5339
5397
|
fileSize: number;
|
5340
5398
|
fileUrl: string | null;
|
5399
|
+
status?: string | undefined;
|
5341
5400
|
};
|
5342
5401
|
}>, "many">;
|
5343
5402
|
}, "strip", z.ZodTypeAny, {
|
@@ -5379,6 +5438,7 @@ export declare const ContactContractValidationSchema: {
|
|
5379
5438
|
bucketName: string;
|
5380
5439
|
fileSize: number;
|
5381
5440
|
fileUrl: string | null;
|
5441
|
+
status?: string | undefined;
|
5382
5442
|
};
|
5383
5443
|
}[];
|
5384
5444
|
}, {
|
@@ -5420,6 +5480,7 @@ export declare const ContactContractValidationSchema: {
|
|
5420
5480
|
bucketName: string;
|
5421
5481
|
fileSize: number;
|
5422
5482
|
fileUrl: string | null;
|
5483
|
+
status?: string | undefined;
|
5423
5484
|
};
|
5424
5485
|
}[];
|
5425
5486
|
}>, "many">;
|
@@ -5574,6 +5635,7 @@ export declare const ContactContractValidationSchema: {
|
|
5574
5635
|
bucketName: string;
|
5575
5636
|
fileSize: number;
|
5576
5637
|
fileUrl: string | null;
|
5638
|
+
status?: string | undefined;
|
5577
5639
|
};
|
5578
5640
|
}[];
|
5579
5641
|
}[];
|
@@ -5676,6 +5738,7 @@ export declare const ContactContractValidationSchema: {
|
|
5676
5738
|
bucketName: string;
|
5677
5739
|
fileSize: number;
|
5678
5740
|
fileUrl: string | null;
|
5741
|
+
status?: string | undefined;
|
5679
5742
|
};
|
5680
5743
|
}[];
|
5681
5744
|
}[];
|
@@ -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
|
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"}
|