@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.
- package/dist/index.js +101 -26
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +101 -26
- package/dist/index.mjs.map +1 -1
- package/dist/src/channel/index.d.ts +564 -1
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +11644 -11982
- 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 +896 -1401
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +155 -395
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +45 -117
- 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 +1887 -6248
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +127 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +101 -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/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 +280 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +112 -1
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +53 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/validation.d.ts +46 -0
- package/dist/src/telephony-cdr/validation.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +245 -629
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +60 -168
- 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 +46 -47
@@ -736,6 +736,7 @@ export declare const contactContract: {
|
|
736
736
|
fileName: z.ZodString;
|
737
737
|
fileSize: z.ZodNumber;
|
738
738
|
fileKey: z.ZodString;
|
739
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
739
740
|
}, "strip", z.ZodTypeAny, {
|
740
741
|
id: string;
|
741
742
|
createdAt: Date;
|
@@ -745,6 +746,7 @@ export declare const contactContract: {
|
|
745
746
|
fileKey: string;
|
746
747
|
bucketName: string;
|
747
748
|
fileSize: number;
|
749
|
+
fileUrl: string | null;
|
748
750
|
}, {
|
749
751
|
id: string;
|
750
752
|
createdAt: Date;
|
@@ -754,6 +756,7 @@ export declare const contactContract: {
|
|
754
756
|
fileKey: string;
|
755
757
|
bucketName: string;
|
756
758
|
fileSize: number;
|
759
|
+
fileUrl: string | null;
|
757
760
|
}>;
|
758
761
|
}, "strip", z.ZodTypeAny, {
|
759
762
|
id: string;
|
@@ -770,6 +773,7 @@ export declare const contactContract: {
|
|
770
773
|
fileKey: string;
|
771
774
|
bucketName: string;
|
772
775
|
fileSize: number;
|
776
|
+
fileUrl: string | null;
|
773
777
|
};
|
774
778
|
}, {
|
775
779
|
id: string;
|
@@ -786,6 +790,7 @@ export declare const contactContract: {
|
|
786
790
|
fileKey: string;
|
787
791
|
bucketName: string;
|
788
792
|
fileSize: number;
|
793
|
+
fileUrl: string | null;
|
789
794
|
};
|
790
795
|
}>, "many">;
|
791
796
|
}, "strip", z.ZodTypeAny, {
|
@@ -826,6 +831,7 @@ export declare const contactContract: {
|
|
826
831
|
fileKey: string;
|
827
832
|
bucketName: string;
|
828
833
|
fileSize: number;
|
834
|
+
fileUrl: string | null;
|
829
835
|
};
|
830
836
|
}[];
|
831
837
|
}, {
|
@@ -866,6 +872,7 @@ export declare const contactContract: {
|
|
866
872
|
fileKey: string;
|
867
873
|
bucketName: string;
|
868
874
|
fileSize: number;
|
875
|
+
fileUrl: string | null;
|
869
876
|
};
|
870
877
|
}[];
|
871
878
|
}>, "many">;
|
@@ -1019,6 +1026,7 @@ export declare const contactContract: {
|
|
1019
1026
|
fileKey: string;
|
1020
1027
|
bucketName: string;
|
1021
1028
|
fileSize: number;
|
1029
|
+
fileUrl: string | null;
|
1022
1030
|
};
|
1023
1031
|
}[];
|
1024
1032
|
}[];
|
@@ -1120,6 +1128,7 @@ export declare const contactContract: {
|
|
1120
1128
|
fileKey: string;
|
1121
1129
|
bucketName: string;
|
1122
1130
|
fileSize: number;
|
1131
|
+
fileUrl: string | null;
|
1123
1132
|
};
|
1124
1133
|
}[];
|
1125
1134
|
}[];
|
@@ -1223,6 +1232,7 @@ export declare const contactContract: {
|
|
1223
1232
|
fileKey: string;
|
1224
1233
|
bucketName: string;
|
1225
1234
|
fileSize: number;
|
1235
|
+
fileUrl: string | null;
|
1226
1236
|
};
|
1227
1237
|
}[];
|
1228
1238
|
}[];
|
@@ -1331,6 +1341,7 @@ export declare const contactContract: {
|
|
1331
1341
|
fileKey: string;
|
1332
1342
|
bucketName: string;
|
1333
1343
|
fileSize: number;
|
1344
|
+
fileUrl: string | null;
|
1334
1345
|
};
|
1335
1346
|
}[];
|
1336
1347
|
}[];
|
@@ -1786,6 +1797,7 @@ export declare const contactContract: {
|
|
1786
1797
|
fileName: z.ZodString;
|
1787
1798
|
fileSize: z.ZodNumber;
|
1788
1799
|
fileKey: z.ZodString;
|
1800
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
1789
1801
|
}, "strip", z.ZodTypeAny, {
|
1790
1802
|
id: string;
|
1791
1803
|
createdAt: Date;
|
@@ -1795,6 +1807,7 @@ export declare const contactContract: {
|
|
1795
1807
|
fileKey: string;
|
1796
1808
|
bucketName: string;
|
1797
1809
|
fileSize: number;
|
1810
|
+
fileUrl: string | null;
|
1798
1811
|
}, {
|
1799
1812
|
id: string;
|
1800
1813
|
createdAt: Date;
|
@@ -1804,6 +1817,7 @@ export declare const contactContract: {
|
|
1804
1817
|
fileKey: string;
|
1805
1818
|
bucketName: string;
|
1806
1819
|
fileSize: number;
|
1820
|
+
fileUrl: string | null;
|
1807
1821
|
}>;
|
1808
1822
|
}, "strip", z.ZodTypeAny, {
|
1809
1823
|
id: string;
|
@@ -1820,6 +1834,7 @@ export declare const contactContract: {
|
|
1820
1834
|
fileKey: string;
|
1821
1835
|
bucketName: string;
|
1822
1836
|
fileSize: number;
|
1837
|
+
fileUrl: string | null;
|
1823
1838
|
};
|
1824
1839
|
}, {
|
1825
1840
|
id: string;
|
@@ -1836,6 +1851,7 @@ export declare const contactContract: {
|
|
1836
1851
|
fileKey: string;
|
1837
1852
|
bucketName: string;
|
1838
1853
|
fileSize: number;
|
1854
|
+
fileUrl: string | null;
|
1839
1855
|
};
|
1840
1856
|
}>, "many">;
|
1841
1857
|
}, "strip", z.ZodTypeAny, {
|
@@ -1876,6 +1892,7 @@ export declare const contactContract: {
|
|
1876
1892
|
fileKey: string;
|
1877
1893
|
bucketName: string;
|
1878
1894
|
fileSize: number;
|
1895
|
+
fileUrl: string | null;
|
1879
1896
|
};
|
1880
1897
|
}[];
|
1881
1898
|
}, {
|
@@ -1916,6 +1933,7 @@ export declare const contactContract: {
|
|
1916
1933
|
fileKey: string;
|
1917
1934
|
bucketName: string;
|
1918
1935
|
fileSize: number;
|
1936
|
+
fileUrl: string | null;
|
1919
1937
|
};
|
1920
1938
|
}[];
|
1921
1939
|
}>, "many">;
|
@@ -2069,6 +2087,7 @@ export declare const contactContract: {
|
|
2069
2087
|
fileKey: string;
|
2070
2088
|
bucketName: string;
|
2071
2089
|
fileSize: number;
|
2090
|
+
fileUrl: string | null;
|
2072
2091
|
};
|
2073
2092
|
}[];
|
2074
2093
|
}[];
|
@@ -2170,6 +2189,7 @@ export declare const contactContract: {
|
|
2170
2189
|
fileKey: string;
|
2171
2190
|
bucketName: string;
|
2172
2191
|
fileSize: number;
|
2192
|
+
fileUrl: string | null;
|
2173
2193
|
};
|
2174
2194
|
}[];
|
2175
2195
|
}[];
|
@@ -2273,6 +2293,7 @@ export declare const contactContract: {
|
|
2273
2293
|
fileKey: string;
|
2274
2294
|
bucketName: string;
|
2275
2295
|
fileSize: number;
|
2296
|
+
fileUrl: string | null;
|
2276
2297
|
};
|
2277
2298
|
}[];
|
2278
2299
|
}[];
|
@@ -2381,6 +2402,7 @@ export declare const contactContract: {
|
|
2381
2402
|
fileKey: string;
|
2382
2403
|
bucketName: string;
|
2383
2404
|
fileSize: number;
|
2405
|
+
fileUrl: string | null;
|
2384
2406
|
};
|
2385
2407
|
}[];
|
2386
2408
|
}[];
|
@@ -3089,6 +3111,7 @@ export declare const contactContract: {
|
|
3089
3111
|
fileName: z.ZodString;
|
3090
3112
|
fileSize: z.ZodNumber;
|
3091
3113
|
fileKey: z.ZodString;
|
3114
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
3092
3115
|
}, "strip", z.ZodTypeAny, {
|
3093
3116
|
id: string;
|
3094
3117
|
createdAt: Date;
|
@@ -3098,6 +3121,7 @@ export declare const contactContract: {
|
|
3098
3121
|
fileKey: string;
|
3099
3122
|
bucketName: string;
|
3100
3123
|
fileSize: number;
|
3124
|
+
fileUrl: string | null;
|
3101
3125
|
}, {
|
3102
3126
|
id: string;
|
3103
3127
|
createdAt: Date;
|
@@ -3107,6 +3131,7 @@ export declare const contactContract: {
|
|
3107
3131
|
fileKey: string;
|
3108
3132
|
bucketName: string;
|
3109
3133
|
fileSize: number;
|
3134
|
+
fileUrl: string | null;
|
3110
3135
|
}>;
|
3111
3136
|
}, "strip", z.ZodTypeAny, {
|
3112
3137
|
id: string;
|
@@ -3123,6 +3148,7 @@ export declare const contactContract: {
|
|
3123
3148
|
fileKey: string;
|
3124
3149
|
bucketName: string;
|
3125
3150
|
fileSize: number;
|
3151
|
+
fileUrl: string | null;
|
3126
3152
|
};
|
3127
3153
|
}, {
|
3128
3154
|
id: string;
|
@@ -3139,6 +3165,7 @@ export declare const contactContract: {
|
|
3139
3165
|
fileKey: string;
|
3140
3166
|
bucketName: string;
|
3141
3167
|
fileSize: number;
|
3168
|
+
fileUrl: string | null;
|
3142
3169
|
};
|
3143
3170
|
}>, "many">;
|
3144
3171
|
}, "strip", z.ZodTypeAny, {
|
@@ -3179,6 +3206,7 @@ export declare const contactContract: {
|
|
3179
3206
|
fileKey: string;
|
3180
3207
|
bucketName: string;
|
3181
3208
|
fileSize: number;
|
3209
|
+
fileUrl: string | null;
|
3182
3210
|
};
|
3183
3211
|
}[];
|
3184
3212
|
}, {
|
@@ -3219,6 +3247,7 @@ export declare const contactContract: {
|
|
3219
3247
|
fileKey: string;
|
3220
3248
|
bucketName: string;
|
3221
3249
|
fileSize: number;
|
3250
|
+
fileUrl: string | null;
|
3222
3251
|
};
|
3223
3252
|
}[];
|
3224
3253
|
}>, "many">;
|
@@ -3372,6 +3401,7 @@ export declare const contactContract: {
|
|
3372
3401
|
fileKey: string;
|
3373
3402
|
bucketName: string;
|
3374
3403
|
fileSize: number;
|
3404
|
+
fileUrl: string | null;
|
3375
3405
|
};
|
3376
3406
|
}[];
|
3377
3407
|
}[];
|
@@ -3473,6 +3503,7 @@ export declare const contactContract: {
|
|
3473
3503
|
fileKey: string;
|
3474
3504
|
bucketName: string;
|
3475
3505
|
fileSize: number;
|
3506
|
+
fileUrl: string | null;
|
3476
3507
|
};
|
3477
3508
|
}[];
|
3478
3509
|
}[];
|
@@ -3576,6 +3607,7 @@ export declare const contactContract: {
|
|
3576
3607
|
fileKey: string;
|
3577
3608
|
bucketName: string;
|
3578
3609
|
fileSize: number;
|
3610
|
+
fileUrl: string | null;
|
3579
3611
|
};
|
3580
3612
|
}[];
|
3581
3613
|
}[];
|
@@ -3680,6 +3712,7 @@ export declare const contactContract: {
|
|
3680
3712
|
fileKey: string;
|
3681
3713
|
bucketName: string;
|
3682
3714
|
fileSize: number;
|
3715
|
+
fileUrl: string | null;
|
3683
3716
|
};
|
3684
3717
|
}[];
|
3685
3718
|
}[];
|
@@ -4213,6 +4246,7 @@ export declare const contactContract: {
|
|
4213
4246
|
fileName: z.ZodString;
|
4214
4247
|
fileSize: z.ZodNumber;
|
4215
4248
|
fileKey: z.ZodString;
|
4249
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
4216
4250
|
}, "strip", z.ZodTypeAny, {
|
4217
4251
|
id: string;
|
4218
4252
|
createdAt: Date;
|
@@ -4222,6 +4256,7 @@ export declare const contactContract: {
|
|
4222
4256
|
fileKey: string;
|
4223
4257
|
bucketName: string;
|
4224
4258
|
fileSize: number;
|
4259
|
+
fileUrl: string | null;
|
4225
4260
|
}, {
|
4226
4261
|
id: string;
|
4227
4262
|
createdAt: Date;
|
@@ -4231,6 +4266,7 @@ export declare const contactContract: {
|
|
4231
4266
|
fileKey: string;
|
4232
4267
|
bucketName: string;
|
4233
4268
|
fileSize: number;
|
4269
|
+
fileUrl: string | null;
|
4234
4270
|
}>;
|
4235
4271
|
}, "strip", z.ZodTypeAny, {
|
4236
4272
|
id: string;
|
@@ -4247,6 +4283,7 @@ export declare const contactContract: {
|
|
4247
4283
|
fileKey: string;
|
4248
4284
|
bucketName: string;
|
4249
4285
|
fileSize: number;
|
4286
|
+
fileUrl: string | null;
|
4250
4287
|
};
|
4251
4288
|
}, {
|
4252
4289
|
id: string;
|
@@ -4263,6 +4300,7 @@ export declare const contactContract: {
|
|
4263
4300
|
fileKey: string;
|
4264
4301
|
bucketName: string;
|
4265
4302
|
fileSize: number;
|
4303
|
+
fileUrl: string | null;
|
4266
4304
|
};
|
4267
4305
|
}>, "many">;
|
4268
4306
|
}, "strip", z.ZodTypeAny, {
|
@@ -4303,6 +4341,7 @@ export declare const contactContract: {
|
|
4303
4341
|
fileKey: string;
|
4304
4342
|
bucketName: string;
|
4305
4343
|
fileSize: number;
|
4344
|
+
fileUrl: string | null;
|
4306
4345
|
};
|
4307
4346
|
}[];
|
4308
4347
|
}, {
|
@@ -4343,6 +4382,7 @@ export declare const contactContract: {
|
|
4343
4382
|
fileKey: string;
|
4344
4383
|
bucketName: string;
|
4345
4384
|
fileSize: number;
|
4385
|
+
fileUrl: string | null;
|
4346
4386
|
};
|
4347
4387
|
}[];
|
4348
4388
|
}>, "many">;
|
@@ -4496,6 +4536,7 @@ export declare const contactContract: {
|
|
4496
4536
|
fileKey: string;
|
4497
4537
|
bucketName: string;
|
4498
4538
|
fileSize: number;
|
4539
|
+
fileUrl: string | null;
|
4499
4540
|
};
|
4500
4541
|
}[];
|
4501
4542
|
}[];
|
@@ -4597,6 +4638,7 @@ export declare const contactContract: {
|
|
4597
4638
|
fileKey: string;
|
4598
4639
|
bucketName: string;
|
4599
4640
|
fileSize: number;
|
4641
|
+
fileUrl: string | null;
|
4600
4642
|
};
|
4601
4643
|
}[];
|
4602
4644
|
}[];
|
@@ -4700,6 +4742,7 @@ export declare const contactContract: {
|
|
4700
4742
|
fileKey: string;
|
4701
4743
|
bucketName: string;
|
4702
4744
|
fileSize: number;
|
4745
|
+
fileUrl: string | null;
|
4703
4746
|
};
|
4704
4747
|
}[];
|
4705
4748
|
}[];
|
@@ -4804,6 +4847,7 @@ export declare const contactContract: {
|
|
4804
4847
|
fileKey: string;
|
4805
4848
|
bucketName: string;
|
4806
4849
|
fileSize: number;
|
4850
|
+
fileUrl: string | null;
|
4807
4851
|
};
|
4808
4852
|
}[];
|
4809
4853
|
}[];
|
@@ -5248,6 +5292,7 @@ export declare const contactContract: {
|
|
5248
5292
|
fileName: z.ZodString;
|
5249
5293
|
fileSize: z.ZodNumber;
|
5250
5294
|
fileKey: z.ZodString;
|
5295
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
5251
5296
|
}, "strip", z.ZodTypeAny, {
|
5252
5297
|
id: string;
|
5253
5298
|
createdAt: Date;
|
@@ -5257,6 +5302,7 @@ export declare const contactContract: {
|
|
5257
5302
|
fileKey: string;
|
5258
5303
|
bucketName: string;
|
5259
5304
|
fileSize: number;
|
5305
|
+
fileUrl: string | null;
|
5260
5306
|
}, {
|
5261
5307
|
id: string;
|
5262
5308
|
createdAt: Date;
|
@@ -5266,6 +5312,7 @@ export declare const contactContract: {
|
|
5266
5312
|
fileKey: string;
|
5267
5313
|
bucketName: string;
|
5268
5314
|
fileSize: number;
|
5315
|
+
fileUrl: string | null;
|
5269
5316
|
}>;
|
5270
5317
|
}, "strip", z.ZodTypeAny, {
|
5271
5318
|
id: string;
|
@@ -5282,6 +5329,7 @@ export declare const contactContract: {
|
|
5282
5329
|
fileKey: string;
|
5283
5330
|
bucketName: string;
|
5284
5331
|
fileSize: number;
|
5332
|
+
fileUrl: string | null;
|
5285
5333
|
};
|
5286
5334
|
}, {
|
5287
5335
|
id: string;
|
@@ -5298,6 +5346,7 @@ export declare const contactContract: {
|
|
5298
5346
|
fileKey: string;
|
5299
5347
|
bucketName: string;
|
5300
5348
|
fileSize: number;
|
5349
|
+
fileUrl: string | null;
|
5301
5350
|
};
|
5302
5351
|
}>, "many">;
|
5303
5352
|
}, "strip", z.ZodTypeAny, {
|
@@ -5338,6 +5387,7 @@ export declare const contactContract: {
|
|
5338
5387
|
fileKey: string;
|
5339
5388
|
bucketName: string;
|
5340
5389
|
fileSize: number;
|
5390
|
+
fileUrl: string | null;
|
5341
5391
|
};
|
5342
5392
|
}[];
|
5343
5393
|
}, {
|
@@ -5378,6 +5428,7 @@ export declare const contactContract: {
|
|
5378
5428
|
fileKey: string;
|
5379
5429
|
bucketName: string;
|
5380
5430
|
fileSize: number;
|
5431
|
+
fileUrl: string | null;
|
5381
5432
|
};
|
5382
5433
|
}[];
|
5383
5434
|
}>, "many">;
|
@@ -5531,6 +5582,7 @@ export declare const contactContract: {
|
|
5531
5582
|
fileKey: string;
|
5532
5583
|
bucketName: string;
|
5533
5584
|
fileSize: number;
|
5585
|
+
fileUrl: string | null;
|
5534
5586
|
};
|
5535
5587
|
}[];
|
5536
5588
|
}[];
|
@@ -5632,6 +5684,7 @@ export declare const contactContract: {
|
|
5632
5684
|
fileKey: string;
|
5633
5685
|
bucketName: string;
|
5634
5686
|
fileSize: number;
|
5687
|
+
fileUrl: string | null;
|
5635
5688
|
};
|
5636
5689
|
}[];
|
5637
5690
|
}[];
|
@@ -5735,6 +5788,7 @@ export declare const contactContract: {
|
|
5735
5788
|
fileKey: string;
|
5736
5789
|
bucketName: string;
|
5737
5790
|
fileSize: number;
|
5791
|
+
fileUrl: string | null;
|
5738
5792
|
};
|
5739
5793
|
}[];
|
5740
5794
|
}[];
|
@@ -5839,6 +5893,7 @@ export declare const contactContract: {
|
|
5839
5893
|
fileKey: string;
|
5840
5894
|
bucketName: string;
|
5841
5895
|
fileSize: number;
|
5896
|
+
fileUrl: string | null;
|
5842
5897
|
};
|
5843
5898
|
}[];
|
5844
5899
|
}[];
|
@@ -6319,6 +6374,7 @@ export declare const contactContract: {
|
|
6319
6374
|
fileName: z.ZodString;
|
6320
6375
|
fileSize: z.ZodNumber;
|
6321
6376
|
fileKey: z.ZodString;
|
6377
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
6322
6378
|
}, "strip", z.ZodTypeAny, {
|
6323
6379
|
id: string;
|
6324
6380
|
createdAt: Date;
|
@@ -6328,6 +6384,7 @@ export declare const contactContract: {
|
|
6328
6384
|
fileKey: string;
|
6329
6385
|
bucketName: string;
|
6330
6386
|
fileSize: number;
|
6387
|
+
fileUrl: string | null;
|
6331
6388
|
}, {
|
6332
6389
|
id: string;
|
6333
6390
|
createdAt: Date;
|
@@ -6337,6 +6394,7 @@ export declare const contactContract: {
|
|
6337
6394
|
fileKey: string;
|
6338
6395
|
bucketName: string;
|
6339
6396
|
fileSize: number;
|
6397
|
+
fileUrl: string | null;
|
6340
6398
|
}>;
|
6341
6399
|
}, "strip", z.ZodTypeAny, {
|
6342
6400
|
id: string;
|
@@ -6353,6 +6411,7 @@ export declare const contactContract: {
|
|
6353
6411
|
fileKey: string;
|
6354
6412
|
bucketName: string;
|
6355
6413
|
fileSize: number;
|
6414
|
+
fileUrl: string | null;
|
6356
6415
|
};
|
6357
6416
|
}, {
|
6358
6417
|
id: string;
|
@@ -6369,6 +6428,7 @@ export declare const contactContract: {
|
|
6369
6428
|
fileKey: string;
|
6370
6429
|
bucketName: string;
|
6371
6430
|
fileSize: number;
|
6431
|
+
fileUrl: string | null;
|
6372
6432
|
};
|
6373
6433
|
}>, "many">;
|
6374
6434
|
}, "strip", z.ZodTypeAny, {
|
@@ -6409,6 +6469,7 @@ export declare const contactContract: {
|
|
6409
6469
|
fileKey: string;
|
6410
6470
|
bucketName: string;
|
6411
6471
|
fileSize: number;
|
6472
|
+
fileUrl: string | null;
|
6412
6473
|
};
|
6413
6474
|
}[];
|
6414
6475
|
}, {
|
@@ -6449,6 +6510,7 @@ export declare const contactContract: {
|
|
6449
6510
|
fileKey: string;
|
6450
6511
|
bucketName: string;
|
6451
6512
|
fileSize: number;
|
6513
|
+
fileUrl: string | null;
|
6452
6514
|
};
|
6453
6515
|
}[];
|
6454
6516
|
}>, "many">;
|
@@ -6602,6 +6664,7 @@ export declare const contactContract: {
|
|
6602
6664
|
fileKey: string;
|
6603
6665
|
bucketName: string;
|
6604
6666
|
fileSize: number;
|
6667
|
+
fileUrl: string | null;
|
6605
6668
|
};
|
6606
6669
|
}[];
|
6607
6670
|
}[];
|
@@ -6703,6 +6766,7 @@ export declare const contactContract: {
|
|
6703
6766
|
fileKey: string;
|
6704
6767
|
bucketName: string;
|
6705
6768
|
fileSize: number;
|
6769
|
+
fileUrl: string | null;
|
6706
6770
|
};
|
6707
6771
|
}[];
|
6708
6772
|
}[];
|
@@ -6806,6 +6870,7 @@ export declare const contactContract: {
|
|
6806
6870
|
fileKey: string;
|
6807
6871
|
bucketName: string;
|
6808
6872
|
fileSize: number;
|
6873
|
+
fileUrl: string | null;
|
6809
6874
|
};
|
6810
6875
|
}[];
|
6811
6876
|
}[];
|
@@ -6910,6 +6975,7 @@ export declare const contactContract: {
|
|
6910
6975
|
fileKey: string;
|
6911
6976
|
bucketName: string;
|
6912
6977
|
fileSize: number;
|
6978
|
+
fileUrl: string | null;
|
6913
6979
|
};
|
6914
6980
|
}[];
|
6915
6981
|
}[];
|
@@ -7720,6 +7786,7 @@ export declare const contactContract: {
|
|
7720
7786
|
fileName: z.ZodString;
|
7721
7787
|
fileSize: z.ZodNumber;
|
7722
7788
|
fileKey: z.ZodString;
|
7789
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
7723
7790
|
}, "strip", z.ZodTypeAny, {
|
7724
7791
|
id: string;
|
7725
7792
|
createdAt: Date;
|
@@ -7729,6 +7796,7 @@ export declare const contactContract: {
|
|
7729
7796
|
fileKey: string;
|
7730
7797
|
bucketName: string;
|
7731
7798
|
fileSize: number;
|
7799
|
+
fileUrl: string | null;
|
7732
7800
|
}, {
|
7733
7801
|
id: string;
|
7734
7802
|
createdAt: Date;
|
@@ -7738,6 +7806,7 @@ export declare const contactContract: {
|
|
7738
7806
|
fileKey: string;
|
7739
7807
|
bucketName: string;
|
7740
7808
|
fileSize: number;
|
7809
|
+
fileUrl: string | null;
|
7741
7810
|
}>;
|
7742
7811
|
}, "strip", z.ZodTypeAny, {
|
7743
7812
|
id: string;
|
@@ -7754,6 +7823,7 @@ export declare const contactContract: {
|
|
7754
7823
|
fileKey: string;
|
7755
7824
|
bucketName: string;
|
7756
7825
|
fileSize: number;
|
7826
|
+
fileUrl: string | null;
|
7757
7827
|
};
|
7758
7828
|
}, {
|
7759
7829
|
id: string;
|
@@ -7770,6 +7840,7 @@ export declare const contactContract: {
|
|
7770
7840
|
fileKey: string;
|
7771
7841
|
bucketName: string;
|
7772
7842
|
fileSize: number;
|
7843
|
+
fileUrl: string | null;
|
7773
7844
|
};
|
7774
7845
|
}>, "many">;
|
7775
7846
|
}, "strip", z.ZodTypeAny, {
|
@@ -7810,6 +7881,7 @@ export declare const contactContract: {
|
|
7810
7881
|
fileKey: string;
|
7811
7882
|
bucketName: string;
|
7812
7883
|
fileSize: number;
|
7884
|
+
fileUrl: string | null;
|
7813
7885
|
};
|
7814
7886
|
}[];
|
7815
7887
|
}, {
|
@@ -7850,6 +7922,7 @@ export declare const contactContract: {
|
|
7850
7922
|
fileKey: string;
|
7851
7923
|
bucketName: string;
|
7852
7924
|
fileSize: number;
|
7925
|
+
fileUrl: string | null;
|
7853
7926
|
};
|
7854
7927
|
}[];
|
7855
7928
|
}>, "many">;
|
@@ -8003,6 +8076,7 @@ export declare const contactContract: {
|
|
8003
8076
|
fileKey: string;
|
8004
8077
|
bucketName: string;
|
8005
8078
|
fileSize: number;
|
8079
|
+
fileUrl: string | null;
|
8006
8080
|
};
|
8007
8081
|
}[];
|
8008
8082
|
}[];
|
@@ -8104,6 +8178,7 @@ export declare const contactContract: {
|
|
8104
8178
|
fileKey: string;
|
8105
8179
|
bucketName: string;
|
8106
8180
|
fileSize: number;
|
8181
|
+
fileUrl: string | null;
|
8107
8182
|
};
|
8108
8183
|
}[];
|
8109
8184
|
}[];
|
@@ -8207,6 +8282,7 @@ export declare const contactContract: {
|
|
8207
8282
|
fileKey: string;
|
8208
8283
|
bucketName: string;
|
8209
8284
|
fileSize: number;
|
8285
|
+
fileUrl: string | null;
|
8210
8286
|
};
|
8211
8287
|
}[];
|
8212
8288
|
}[];
|
@@ -8311,6 +8387,7 @@ export declare const contactContract: {
|
|
8311
8387
|
fileKey: string;
|
8312
8388
|
bucketName: string;
|
8313
8389
|
fileSize: number;
|
8390
|
+
fileUrl: string | null;
|
8314
8391
|
};
|
8315
8392
|
}[];
|
8316
8393
|
}[];
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"AAQA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,+BAA+B,EAAE,MAAM,cAAc,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,+BAA+B,CAAC,MAAM,CAAC,OAAO,CACtD,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CACzC,OAAO,+BAA+B,CAAC,MAAM,CAAC,QAAQ,CACvD,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,+BAA+B,CAAC,oBAAoB,CAAC,OAAO,CACpE,CAAC;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,+BAA+B,CAAC,oBAAoB,CAAC,QAAQ,CACrE,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,+BAA+B,CAAC,MAAM,CAAC,OAAO,CACtD,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CACzC,OAAO,+BAA+B,CAAC,cAAc,CAAC,OAAO,CAC9D,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,+BAA+B,CAAC,cAAc,CAAC,OAAO,CAC9D,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;AACjE,MAAM,MAAM,mCAAmC,GAAG,OAAO,CACvD,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAC9E,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,+BAA+B,CAAC,KAAK,CAAC,OAAO,CACrD,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAC5C,OAAO,+BAA+B,CAAC,iBAAiB,CAAC,OAAO,CACjE,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAC5C,OAAO,+BAA+B,CAAC,iBAAiB,CAAC,OAAO,CACjE,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,qBAAqB,CAAC;AAC1D,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,eAAe
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkS3B,CAAC"}
|