@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
@@ -286,67 +286,31 @@ export declare const ticketContract: {
|
|
286
286
|
createdAt: z.ZodDate;
|
287
287
|
updatedAt: z.ZodDate;
|
288
288
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
295
|
-
bucketName: z.ZodString;
|
296
|
-
fileName: z.ZodString;
|
297
|
-
fileSize: z.ZodNumber;
|
298
|
-
fileKey: z.ZodString;
|
299
|
-
}, "strip", z.ZodTypeAny, {
|
300
|
-
id: string;
|
301
|
-
createdAt: Date;
|
302
|
-
updatedAt: Date;
|
303
|
-
deletedAt: Date | null;
|
304
|
-
fileName: string;
|
305
|
-
fileKey: string;
|
306
|
-
bucketName: string;
|
307
|
-
fileSize: number;
|
308
|
-
}, {
|
309
|
-
id: string;
|
310
|
-
createdAt: Date;
|
311
|
-
updatedAt: Date;
|
312
|
-
deletedAt: Date | null;
|
313
|
-
fileName: string;
|
314
|
-
fileKey: string;
|
315
|
-
bucketName: string;
|
316
|
-
fileSize: number;
|
317
|
-
}>;
|
289
|
+
bucketName: z.ZodString;
|
290
|
+
fileName: z.ZodString;
|
291
|
+
fileSize: z.ZodNumber;
|
292
|
+
fileKey: z.ZodString;
|
293
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
318
294
|
}, "strip", z.ZodTypeAny, {
|
319
295
|
id: string;
|
320
296
|
createdAt: Date;
|
321
297
|
updatedAt: Date;
|
322
298
|
deletedAt: Date | null;
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
deletedAt: Date | null;
|
329
|
-
fileName: string;
|
330
|
-
fileKey: string;
|
331
|
-
bucketName: string;
|
332
|
-
fileSize: number;
|
333
|
-
};
|
299
|
+
fileName: string;
|
300
|
+
fileKey: string;
|
301
|
+
bucketName: string;
|
302
|
+
fileSize: number;
|
303
|
+
fileUrl: string | null;
|
334
304
|
}, {
|
335
305
|
id: string;
|
336
306
|
createdAt: Date;
|
337
307
|
updatedAt: Date;
|
338
308
|
deletedAt: Date | null;
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
deletedAt: Date | null;
|
345
|
-
fileName: string;
|
346
|
-
fileKey: string;
|
347
|
-
bucketName: string;
|
348
|
-
fileSize: number;
|
349
|
-
};
|
309
|
+
fileName: string;
|
310
|
+
fileKey: string;
|
311
|
+
bucketName: string;
|
312
|
+
fileSize: number;
|
313
|
+
fileUrl: string | null;
|
350
314
|
}>, "many">;
|
351
315
|
}, "strip", z.ZodTypeAny, {
|
352
316
|
id: string;
|
@@ -376,17 +340,11 @@ export declare const ticketContract: {
|
|
376
340
|
createdAt: Date;
|
377
341
|
updatedAt: Date;
|
378
342
|
deletedAt: Date | null;
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
deletedAt: Date | null;
|
385
|
-
fileName: string;
|
386
|
-
fileKey: string;
|
387
|
-
bucketName: string;
|
388
|
-
fileSize: number;
|
389
|
-
};
|
343
|
+
fileName: string;
|
344
|
+
fileKey: string;
|
345
|
+
bucketName: string;
|
346
|
+
fileSize: number;
|
347
|
+
fileUrl: string | null;
|
390
348
|
}[];
|
391
349
|
}, {
|
392
350
|
id: string;
|
@@ -416,17 +374,11 @@ export declare const ticketContract: {
|
|
416
374
|
createdAt: Date;
|
417
375
|
updatedAt: Date;
|
418
376
|
deletedAt: Date | null;
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
deletedAt: Date | null;
|
425
|
-
fileName: string;
|
426
|
-
fileKey: string;
|
427
|
-
bucketName: string;
|
428
|
-
fileSize: number;
|
429
|
-
};
|
377
|
+
fileName: string;
|
378
|
+
fileKey: string;
|
379
|
+
bucketName: string;
|
380
|
+
fileSize: number;
|
381
|
+
fileUrl: string | null;
|
430
382
|
}[];
|
431
383
|
}>, "many">;
|
432
384
|
}, "strip", z.ZodTypeAny, {
|
@@ -468,17 +420,11 @@ export declare const ticketContract: {
|
|
468
420
|
createdAt: Date;
|
469
421
|
updatedAt: Date;
|
470
422
|
deletedAt: Date | null;
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
deletedAt: Date | null;
|
477
|
-
fileName: string;
|
478
|
-
fileKey: string;
|
479
|
-
bucketName: string;
|
480
|
-
fileSize: number;
|
481
|
-
};
|
423
|
+
fileName: string;
|
424
|
+
fileKey: string;
|
425
|
+
bucketName: string;
|
426
|
+
fileSize: number;
|
427
|
+
fileUrl: string | null;
|
482
428
|
}[];
|
483
429
|
}[];
|
484
430
|
contactId: string;
|
@@ -525,17 +471,11 @@ export declare const ticketContract: {
|
|
525
471
|
createdAt: Date;
|
526
472
|
updatedAt: Date;
|
527
473
|
deletedAt: Date | null;
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
deletedAt: Date | null;
|
534
|
-
fileName: string;
|
535
|
-
fileKey: string;
|
536
|
-
bucketName: string;
|
537
|
-
fileSize: number;
|
538
|
-
};
|
474
|
+
fileName: string;
|
475
|
+
fileKey: string;
|
476
|
+
bucketName: string;
|
477
|
+
fileSize: number;
|
478
|
+
fileUrl: string | null;
|
539
479
|
}[];
|
540
480
|
}[];
|
541
481
|
contactId: string;
|
@@ -584,17 +524,11 @@ export declare const ticketContract: {
|
|
584
524
|
createdAt: Date;
|
585
525
|
updatedAt: Date;
|
586
526
|
deletedAt: Date | null;
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
deletedAt: Date | null;
|
593
|
-
fileName: string;
|
594
|
-
fileKey: string;
|
595
|
-
bucketName: string;
|
596
|
-
fileSize: number;
|
597
|
-
};
|
527
|
+
fileName: string;
|
528
|
+
fileKey: string;
|
529
|
+
bucketName: string;
|
530
|
+
fileSize: number;
|
531
|
+
fileUrl: string | null;
|
598
532
|
}[];
|
599
533
|
}[];
|
600
534
|
contactId: string;
|
@@ -644,17 +578,11 @@ export declare const ticketContract: {
|
|
644
578
|
createdAt: Date;
|
645
579
|
updatedAt: Date;
|
646
580
|
deletedAt: Date | null;
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
deletedAt: Date | null;
|
653
|
-
fileName: string;
|
654
|
-
fileKey: string;
|
655
|
-
bucketName: string;
|
656
|
-
fileSize: number;
|
657
|
-
};
|
581
|
+
fileName: string;
|
582
|
+
fileKey: string;
|
583
|
+
bucketName: string;
|
584
|
+
fileSize: number;
|
585
|
+
fileUrl: string | null;
|
658
586
|
}[];
|
659
587
|
}[];
|
660
588
|
contactId: string;
|
@@ -855,17 +783,11 @@ export declare const ticketContract: {
|
|
855
783
|
createdAt: Date;
|
856
784
|
updatedAt: Date;
|
857
785
|
deletedAt: Date | null;
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
deletedAt: Date | null;
|
864
|
-
fileName: string;
|
865
|
-
fileKey: string;
|
866
|
-
bucketName: string;
|
867
|
-
fileSize: number;
|
868
|
-
};
|
786
|
+
fileName: string;
|
787
|
+
fileKey: string;
|
788
|
+
bucketName: string;
|
789
|
+
fileSize: number;
|
790
|
+
fileUrl: string | null;
|
869
791
|
}[];
|
870
792
|
}[];
|
871
793
|
contactId: string;
|
@@ -912,17 +834,11 @@ export declare const ticketContract: {
|
|
912
834
|
createdAt: Date;
|
913
835
|
updatedAt: Date;
|
914
836
|
deletedAt: Date | null;
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
920
|
-
deletedAt: Date | null;
|
921
|
-
fileName: string;
|
922
|
-
fileKey: string;
|
923
|
-
bucketName: string;
|
924
|
-
fileSize: number;
|
925
|
-
};
|
837
|
+
fileName: string;
|
838
|
+
fileKey: string;
|
839
|
+
bucketName: string;
|
840
|
+
fileSize: number;
|
841
|
+
fileUrl: string | null;
|
926
842
|
}[];
|
927
843
|
}[];
|
928
844
|
contactId: string;
|
@@ -971,17 +887,11 @@ export declare const ticketContract: {
|
|
971
887
|
createdAt: Date;
|
972
888
|
updatedAt: Date;
|
973
889
|
deletedAt: Date | null;
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
deletedAt: Date | null;
|
980
|
-
fileName: string;
|
981
|
-
fileKey: string;
|
982
|
-
bucketName: string;
|
983
|
-
fileSize: number;
|
984
|
-
};
|
890
|
+
fileName: string;
|
891
|
+
fileKey: string;
|
892
|
+
bucketName: string;
|
893
|
+
fileSize: number;
|
894
|
+
fileUrl: string | null;
|
985
895
|
}[];
|
986
896
|
}[];
|
987
897
|
contactId: string;
|
@@ -1034,17 +944,11 @@ export declare const ticketContract: {
|
|
1034
944
|
createdAt: Date;
|
1035
945
|
updatedAt: Date;
|
1036
946
|
deletedAt: Date | null;
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
deletedAt: Date | null;
|
1043
|
-
fileName: string;
|
1044
|
-
fileKey: string;
|
1045
|
-
bucketName: string;
|
1046
|
-
fileSize: number;
|
1047
|
-
};
|
947
|
+
fileName: string;
|
948
|
+
fileKey: string;
|
949
|
+
bucketName: string;
|
950
|
+
fileSize: number;
|
951
|
+
fileUrl: string | null;
|
1048
952
|
}[];
|
1049
953
|
}[];
|
1050
954
|
contactId: string;
|
@@ -1226,67 +1130,31 @@ export declare const ticketContract: {
|
|
1226
1130
|
createdAt: z.ZodDate;
|
1227
1131
|
updatedAt: z.ZodDate;
|
1228
1132
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1232
|
-
|
1233
|
-
|
1234
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
1235
|
-
bucketName: z.ZodString;
|
1236
|
-
fileName: z.ZodString;
|
1237
|
-
fileSize: z.ZodNumber;
|
1238
|
-
fileKey: z.ZodString;
|
1239
|
-
}, "strip", z.ZodTypeAny, {
|
1240
|
-
id: string;
|
1241
|
-
createdAt: Date;
|
1242
|
-
updatedAt: Date;
|
1243
|
-
deletedAt: Date | null;
|
1244
|
-
fileName: string;
|
1245
|
-
fileKey: string;
|
1246
|
-
bucketName: string;
|
1247
|
-
fileSize: number;
|
1248
|
-
}, {
|
1249
|
-
id: string;
|
1250
|
-
createdAt: Date;
|
1251
|
-
updatedAt: Date;
|
1252
|
-
deletedAt: Date | null;
|
1253
|
-
fileName: string;
|
1254
|
-
fileKey: string;
|
1255
|
-
bucketName: string;
|
1256
|
-
fileSize: number;
|
1257
|
-
}>;
|
1133
|
+
bucketName: z.ZodString;
|
1134
|
+
fileName: z.ZodString;
|
1135
|
+
fileSize: z.ZodNumber;
|
1136
|
+
fileKey: z.ZodString;
|
1137
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
1258
1138
|
}, "strip", z.ZodTypeAny, {
|
1259
1139
|
id: string;
|
1260
1140
|
createdAt: Date;
|
1261
1141
|
updatedAt: Date;
|
1262
1142
|
deletedAt: Date | null;
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
deletedAt: Date | null;
|
1269
|
-
fileName: string;
|
1270
|
-
fileKey: string;
|
1271
|
-
bucketName: string;
|
1272
|
-
fileSize: number;
|
1273
|
-
};
|
1143
|
+
fileName: string;
|
1144
|
+
fileKey: string;
|
1145
|
+
bucketName: string;
|
1146
|
+
fileSize: number;
|
1147
|
+
fileUrl: string | null;
|
1274
1148
|
}, {
|
1275
1149
|
id: string;
|
1276
1150
|
createdAt: Date;
|
1277
1151
|
updatedAt: Date;
|
1278
1152
|
deletedAt: Date | null;
|
1279
|
-
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
deletedAt: Date | null;
|
1285
|
-
fileName: string;
|
1286
|
-
fileKey: string;
|
1287
|
-
bucketName: string;
|
1288
|
-
fileSize: number;
|
1289
|
-
};
|
1153
|
+
fileName: string;
|
1154
|
+
fileKey: string;
|
1155
|
+
bucketName: string;
|
1156
|
+
fileSize: number;
|
1157
|
+
fileUrl: string | null;
|
1290
1158
|
}>, "many">;
|
1291
1159
|
}, "strip", z.ZodTypeAny, {
|
1292
1160
|
id: string;
|
@@ -1316,17 +1184,11 @@ export declare const ticketContract: {
|
|
1316
1184
|
createdAt: Date;
|
1317
1185
|
updatedAt: Date;
|
1318
1186
|
deletedAt: Date | null;
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1324
|
-
deletedAt: Date | null;
|
1325
|
-
fileName: string;
|
1326
|
-
fileKey: string;
|
1327
|
-
bucketName: string;
|
1328
|
-
fileSize: number;
|
1329
|
-
};
|
1187
|
+
fileName: string;
|
1188
|
+
fileKey: string;
|
1189
|
+
bucketName: string;
|
1190
|
+
fileSize: number;
|
1191
|
+
fileUrl: string | null;
|
1330
1192
|
}[];
|
1331
1193
|
}, {
|
1332
1194
|
id: string;
|
@@ -1356,17 +1218,11 @@ export declare const ticketContract: {
|
|
1356
1218
|
createdAt: Date;
|
1357
1219
|
updatedAt: Date;
|
1358
1220
|
deletedAt: Date | null;
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
deletedAt: Date | null;
|
1365
|
-
fileName: string;
|
1366
|
-
fileKey: string;
|
1367
|
-
bucketName: string;
|
1368
|
-
fileSize: number;
|
1369
|
-
};
|
1221
|
+
fileName: string;
|
1222
|
+
fileKey: string;
|
1223
|
+
bucketName: string;
|
1224
|
+
fileSize: number;
|
1225
|
+
fileUrl: string | null;
|
1370
1226
|
}[];
|
1371
1227
|
}>, "many">;
|
1372
1228
|
}, "strip", z.ZodTypeAny, {
|
@@ -1408,17 +1264,11 @@ export declare const ticketContract: {
|
|
1408
1264
|
createdAt: Date;
|
1409
1265
|
updatedAt: Date;
|
1410
1266
|
deletedAt: Date | null;
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
deletedAt: Date | null;
|
1417
|
-
fileName: string;
|
1418
|
-
fileKey: string;
|
1419
|
-
bucketName: string;
|
1420
|
-
fileSize: number;
|
1421
|
-
};
|
1267
|
+
fileName: string;
|
1268
|
+
fileKey: string;
|
1269
|
+
bucketName: string;
|
1270
|
+
fileSize: number;
|
1271
|
+
fileUrl: string | null;
|
1422
1272
|
}[];
|
1423
1273
|
}[];
|
1424
1274
|
contactId: string;
|
@@ -1465,17 +1315,11 @@ export declare const ticketContract: {
|
|
1465
1315
|
createdAt: Date;
|
1466
1316
|
updatedAt: Date;
|
1467
1317
|
deletedAt: Date | null;
|
1468
|
-
|
1469
|
-
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
deletedAt: Date | null;
|
1474
|
-
fileName: string;
|
1475
|
-
fileKey: string;
|
1476
|
-
bucketName: string;
|
1477
|
-
fileSize: number;
|
1478
|
-
};
|
1318
|
+
fileName: string;
|
1319
|
+
fileKey: string;
|
1320
|
+
bucketName: string;
|
1321
|
+
fileSize: number;
|
1322
|
+
fileUrl: string | null;
|
1479
1323
|
}[];
|
1480
1324
|
}[];
|
1481
1325
|
contactId: string;
|
@@ -1595,17 +1439,11 @@ export declare const ticketContract: {
|
|
1595
1439
|
createdAt: Date;
|
1596
1440
|
updatedAt: Date;
|
1597
1441
|
deletedAt: Date | null;
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
deletedAt: Date | null;
|
1604
|
-
fileName: string;
|
1605
|
-
fileKey: string;
|
1606
|
-
bucketName: string;
|
1607
|
-
fileSize: number;
|
1608
|
-
};
|
1442
|
+
fileName: string;
|
1443
|
+
fileKey: string;
|
1444
|
+
bucketName: string;
|
1445
|
+
fileSize: number;
|
1446
|
+
fileUrl: string | null;
|
1609
1447
|
}[];
|
1610
1448
|
}[];
|
1611
1449
|
contactId: string;
|
@@ -1652,17 +1490,11 @@ export declare const ticketContract: {
|
|
1652
1490
|
createdAt: Date;
|
1653
1491
|
updatedAt: Date;
|
1654
1492
|
deletedAt: Date | null;
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
deletedAt: Date | null;
|
1661
|
-
fileName: string;
|
1662
|
-
fileKey: string;
|
1663
|
-
bucketName: string;
|
1664
|
-
fileSize: number;
|
1665
|
-
};
|
1493
|
+
fileName: string;
|
1494
|
+
fileKey: string;
|
1495
|
+
bucketName: string;
|
1496
|
+
fileSize: number;
|
1497
|
+
fileUrl: string | null;
|
1666
1498
|
}[];
|
1667
1499
|
}[];
|
1668
1500
|
contactId: string;
|
@@ -1711,17 +1543,11 @@ export declare const ticketContract: {
|
|
1711
1543
|
createdAt: Date;
|
1712
1544
|
updatedAt: Date;
|
1713
1545
|
deletedAt: Date | null;
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
deletedAt: Date | null;
|
1720
|
-
fileName: string;
|
1721
|
-
fileKey: string;
|
1722
|
-
bucketName: string;
|
1723
|
-
fileSize: number;
|
1724
|
-
};
|
1546
|
+
fileName: string;
|
1547
|
+
fileKey: string;
|
1548
|
+
bucketName: string;
|
1549
|
+
fileSize: number;
|
1550
|
+
fileUrl: string | null;
|
1725
1551
|
}[];
|
1726
1552
|
}[];
|
1727
1553
|
contactId: string;
|
@@ -1774,17 +1600,11 @@ export declare const ticketContract: {
|
|
1774
1600
|
createdAt: Date;
|
1775
1601
|
updatedAt: Date;
|
1776
1602
|
deletedAt: Date | null;
|
1777
|
-
|
1778
|
-
|
1779
|
-
|
1780
|
-
|
1781
|
-
|
1782
|
-
deletedAt: Date | null;
|
1783
|
-
fileName: string;
|
1784
|
-
fileKey: string;
|
1785
|
-
bucketName: string;
|
1786
|
-
fileSize: number;
|
1787
|
-
};
|
1603
|
+
fileName: string;
|
1604
|
+
fileKey: string;
|
1605
|
+
bucketName: string;
|
1606
|
+
fileSize: number;
|
1607
|
+
fileUrl: string | null;
|
1788
1608
|
}[];
|
1789
1609
|
}[];
|
1790
1610
|
contactId: string;
|
@@ -2130,67 +1950,31 @@ export declare const ticketContract: {
|
|
2130
1950
|
createdAt: z.ZodDate;
|
2131
1951
|
updatedAt: z.ZodDate;
|
2132
1952
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
2133
|
-
|
2134
|
-
|
2135
|
-
|
2136
|
-
|
2137
|
-
|
2138
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
2139
|
-
bucketName: z.ZodString;
|
2140
|
-
fileName: z.ZodString;
|
2141
|
-
fileSize: z.ZodNumber;
|
2142
|
-
fileKey: z.ZodString;
|
2143
|
-
}, "strip", z.ZodTypeAny, {
|
2144
|
-
id: string;
|
2145
|
-
createdAt: Date;
|
2146
|
-
updatedAt: Date;
|
2147
|
-
deletedAt: Date | null;
|
2148
|
-
fileName: string;
|
2149
|
-
fileKey: string;
|
2150
|
-
bucketName: string;
|
2151
|
-
fileSize: number;
|
2152
|
-
}, {
|
2153
|
-
id: string;
|
2154
|
-
createdAt: Date;
|
2155
|
-
updatedAt: Date;
|
2156
|
-
deletedAt: Date | null;
|
2157
|
-
fileName: string;
|
2158
|
-
fileKey: string;
|
2159
|
-
bucketName: string;
|
2160
|
-
fileSize: number;
|
2161
|
-
}>;
|
1953
|
+
bucketName: z.ZodString;
|
1954
|
+
fileName: z.ZodString;
|
1955
|
+
fileSize: z.ZodNumber;
|
1956
|
+
fileKey: z.ZodString;
|
1957
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
2162
1958
|
}, "strip", z.ZodTypeAny, {
|
2163
1959
|
id: string;
|
2164
1960
|
createdAt: Date;
|
2165
1961
|
updatedAt: Date;
|
2166
1962
|
deletedAt: Date | null;
|
2167
|
-
|
2168
|
-
|
2169
|
-
|
2170
|
-
|
2171
|
-
|
2172
|
-
deletedAt: Date | null;
|
2173
|
-
fileName: string;
|
2174
|
-
fileKey: string;
|
2175
|
-
bucketName: string;
|
2176
|
-
fileSize: number;
|
2177
|
-
};
|
1963
|
+
fileName: string;
|
1964
|
+
fileKey: string;
|
1965
|
+
bucketName: string;
|
1966
|
+
fileSize: number;
|
1967
|
+
fileUrl: string | null;
|
2178
1968
|
}, {
|
2179
1969
|
id: string;
|
2180
1970
|
createdAt: Date;
|
2181
1971
|
updatedAt: Date;
|
2182
1972
|
deletedAt: Date | null;
|
2183
|
-
|
2184
|
-
|
2185
|
-
|
2186
|
-
|
2187
|
-
|
2188
|
-
deletedAt: Date | null;
|
2189
|
-
fileName: string;
|
2190
|
-
fileKey: string;
|
2191
|
-
bucketName: string;
|
2192
|
-
fileSize: number;
|
2193
|
-
};
|
1973
|
+
fileName: string;
|
1974
|
+
fileKey: string;
|
1975
|
+
bucketName: string;
|
1976
|
+
fileSize: number;
|
1977
|
+
fileUrl: string | null;
|
2194
1978
|
}>, "many">;
|
2195
1979
|
}, "strip", z.ZodTypeAny, {
|
2196
1980
|
id: string;
|
@@ -2220,17 +2004,11 @@ export declare const ticketContract: {
|
|
2220
2004
|
createdAt: Date;
|
2221
2005
|
updatedAt: Date;
|
2222
2006
|
deletedAt: Date | null;
|
2223
|
-
|
2224
|
-
|
2225
|
-
|
2226
|
-
|
2227
|
-
|
2228
|
-
deletedAt: Date | null;
|
2229
|
-
fileName: string;
|
2230
|
-
fileKey: string;
|
2231
|
-
bucketName: string;
|
2232
|
-
fileSize: number;
|
2233
|
-
};
|
2007
|
+
fileName: string;
|
2008
|
+
fileKey: string;
|
2009
|
+
bucketName: string;
|
2010
|
+
fileSize: number;
|
2011
|
+
fileUrl: string | null;
|
2234
2012
|
}[];
|
2235
2013
|
}, {
|
2236
2014
|
id: string;
|
@@ -2260,17 +2038,11 @@ export declare const ticketContract: {
|
|
2260
2038
|
createdAt: Date;
|
2261
2039
|
updatedAt: Date;
|
2262
2040
|
deletedAt: Date | null;
|
2263
|
-
|
2264
|
-
|
2265
|
-
|
2266
|
-
|
2267
|
-
|
2268
|
-
deletedAt: Date | null;
|
2269
|
-
fileName: string;
|
2270
|
-
fileKey: string;
|
2271
|
-
bucketName: string;
|
2272
|
-
fileSize: number;
|
2273
|
-
};
|
2041
|
+
fileName: string;
|
2042
|
+
fileKey: string;
|
2043
|
+
bucketName: string;
|
2044
|
+
fileSize: number;
|
2045
|
+
fileUrl: string | null;
|
2274
2046
|
}[];
|
2275
2047
|
}>, "many">;
|
2276
2048
|
}, "strip", z.ZodTypeAny, {
|
@@ -2312,17 +2084,11 @@ export declare const ticketContract: {
|
|
2312
2084
|
createdAt: Date;
|
2313
2085
|
updatedAt: Date;
|
2314
2086
|
deletedAt: Date | null;
|
2315
|
-
|
2316
|
-
|
2317
|
-
|
2318
|
-
|
2319
|
-
|
2320
|
-
deletedAt: Date | null;
|
2321
|
-
fileName: string;
|
2322
|
-
fileKey: string;
|
2323
|
-
bucketName: string;
|
2324
|
-
fileSize: number;
|
2325
|
-
};
|
2087
|
+
fileName: string;
|
2088
|
+
fileKey: string;
|
2089
|
+
bucketName: string;
|
2090
|
+
fileSize: number;
|
2091
|
+
fileUrl: string | null;
|
2326
2092
|
}[];
|
2327
2093
|
}[];
|
2328
2094
|
contactId: string;
|
@@ -2369,17 +2135,11 @@ export declare const ticketContract: {
|
|
2369
2135
|
createdAt: Date;
|
2370
2136
|
updatedAt: Date;
|
2371
2137
|
deletedAt: Date | null;
|
2372
|
-
|
2373
|
-
|
2374
|
-
|
2375
|
-
|
2376
|
-
|
2377
|
-
deletedAt: Date | null;
|
2378
|
-
fileName: string;
|
2379
|
-
fileKey: string;
|
2380
|
-
bucketName: string;
|
2381
|
-
fileSize: number;
|
2382
|
-
};
|
2138
|
+
fileName: string;
|
2139
|
+
fileKey: string;
|
2140
|
+
bucketName: string;
|
2141
|
+
fileSize: number;
|
2142
|
+
fileUrl: string | null;
|
2383
2143
|
}[];
|
2384
2144
|
}[];
|
2385
2145
|
contactId: string;
|
@@ -2428,17 +2188,11 @@ export declare const ticketContract: {
|
|
2428
2188
|
createdAt: Date;
|
2429
2189
|
updatedAt: Date;
|
2430
2190
|
deletedAt: Date | null;
|
2431
|
-
|
2432
|
-
|
2433
|
-
|
2434
|
-
|
2435
|
-
|
2436
|
-
deletedAt: Date | null;
|
2437
|
-
fileName: string;
|
2438
|
-
fileKey: string;
|
2439
|
-
bucketName: string;
|
2440
|
-
fileSize: number;
|
2441
|
-
};
|
2191
|
+
fileName: string;
|
2192
|
+
fileKey: string;
|
2193
|
+
bucketName: string;
|
2194
|
+
fileSize: number;
|
2195
|
+
fileUrl: string | null;
|
2442
2196
|
}[];
|
2443
2197
|
}[];
|
2444
2198
|
contactId: string;
|
@@ -2488,17 +2242,11 @@ export declare const ticketContract: {
|
|
2488
2242
|
createdAt: Date;
|
2489
2243
|
updatedAt: Date;
|
2490
2244
|
deletedAt: Date | null;
|
2491
|
-
|
2492
|
-
|
2493
|
-
|
2494
|
-
|
2495
|
-
|
2496
|
-
deletedAt: Date | null;
|
2497
|
-
fileName: string;
|
2498
|
-
fileKey: string;
|
2499
|
-
bucketName: string;
|
2500
|
-
fileSize: number;
|
2501
|
-
};
|
2245
|
+
fileName: string;
|
2246
|
+
fileKey: string;
|
2247
|
+
bucketName: string;
|
2248
|
+
fileSize: number;
|
2249
|
+
fileUrl: string | null;
|
2502
2250
|
}[];
|
2503
2251
|
}[];
|
2504
2252
|
contactId: string;
|
@@ -3448,67 +3196,31 @@ export declare const ticketContract: {
|
|
3448
3196
|
createdAt: z.ZodDate;
|
3449
3197
|
updatedAt: z.ZodDate;
|
3450
3198
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
3451
|
-
|
3452
|
-
|
3453
|
-
|
3454
|
-
|
3455
|
-
|
3456
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
3457
|
-
bucketName: z.ZodString;
|
3458
|
-
fileName: z.ZodString;
|
3459
|
-
fileSize: z.ZodNumber;
|
3460
|
-
fileKey: z.ZodString;
|
3461
|
-
}, "strip", z.ZodTypeAny, {
|
3462
|
-
id: string;
|
3463
|
-
createdAt: Date;
|
3464
|
-
updatedAt: Date;
|
3465
|
-
deletedAt: Date | null;
|
3466
|
-
fileName: string;
|
3467
|
-
fileKey: string;
|
3468
|
-
bucketName: string;
|
3469
|
-
fileSize: number;
|
3470
|
-
}, {
|
3471
|
-
id: string;
|
3472
|
-
createdAt: Date;
|
3473
|
-
updatedAt: Date;
|
3474
|
-
deletedAt: Date | null;
|
3475
|
-
fileName: string;
|
3476
|
-
fileKey: string;
|
3477
|
-
bucketName: string;
|
3478
|
-
fileSize: number;
|
3479
|
-
}>;
|
3199
|
+
bucketName: z.ZodString;
|
3200
|
+
fileName: z.ZodString;
|
3201
|
+
fileSize: z.ZodNumber;
|
3202
|
+
fileKey: z.ZodString;
|
3203
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
3480
3204
|
}, "strip", z.ZodTypeAny, {
|
3481
3205
|
id: string;
|
3482
3206
|
createdAt: Date;
|
3483
3207
|
updatedAt: Date;
|
3484
3208
|
deletedAt: Date | null;
|
3485
|
-
|
3486
|
-
|
3487
|
-
|
3488
|
-
|
3489
|
-
|
3490
|
-
deletedAt: Date | null;
|
3491
|
-
fileName: string;
|
3492
|
-
fileKey: string;
|
3493
|
-
bucketName: string;
|
3494
|
-
fileSize: number;
|
3495
|
-
};
|
3209
|
+
fileName: string;
|
3210
|
+
fileKey: string;
|
3211
|
+
bucketName: string;
|
3212
|
+
fileSize: number;
|
3213
|
+
fileUrl: string | null;
|
3496
3214
|
}, {
|
3497
3215
|
id: string;
|
3498
3216
|
createdAt: Date;
|
3499
3217
|
updatedAt: Date;
|
3500
3218
|
deletedAt: Date | null;
|
3501
|
-
|
3502
|
-
|
3503
|
-
|
3504
|
-
|
3505
|
-
|
3506
|
-
deletedAt: Date | null;
|
3507
|
-
fileName: string;
|
3508
|
-
fileKey: string;
|
3509
|
-
bucketName: string;
|
3510
|
-
fileSize: number;
|
3511
|
-
};
|
3219
|
+
fileName: string;
|
3220
|
+
fileKey: string;
|
3221
|
+
bucketName: string;
|
3222
|
+
fileSize: number;
|
3223
|
+
fileUrl: string | null;
|
3512
3224
|
}>, "many">;
|
3513
3225
|
}, "strip", z.ZodTypeAny, {
|
3514
3226
|
id: string;
|
@@ -3538,17 +3250,11 @@ export declare const ticketContract: {
|
|
3538
3250
|
createdAt: Date;
|
3539
3251
|
updatedAt: Date;
|
3540
3252
|
deletedAt: Date | null;
|
3541
|
-
|
3542
|
-
|
3543
|
-
|
3544
|
-
|
3545
|
-
|
3546
|
-
deletedAt: Date | null;
|
3547
|
-
fileName: string;
|
3548
|
-
fileKey: string;
|
3549
|
-
bucketName: string;
|
3550
|
-
fileSize: number;
|
3551
|
-
};
|
3253
|
+
fileName: string;
|
3254
|
+
fileKey: string;
|
3255
|
+
bucketName: string;
|
3256
|
+
fileSize: number;
|
3257
|
+
fileUrl: string | null;
|
3552
3258
|
}[];
|
3553
3259
|
}, {
|
3554
3260
|
id: string;
|
@@ -3578,17 +3284,11 @@ export declare const ticketContract: {
|
|
3578
3284
|
createdAt: Date;
|
3579
3285
|
updatedAt: Date;
|
3580
3286
|
deletedAt: Date | null;
|
3581
|
-
|
3582
|
-
|
3583
|
-
|
3584
|
-
|
3585
|
-
|
3586
|
-
deletedAt: Date | null;
|
3587
|
-
fileName: string;
|
3588
|
-
fileKey: string;
|
3589
|
-
bucketName: string;
|
3590
|
-
fileSize: number;
|
3591
|
-
};
|
3287
|
+
fileName: string;
|
3288
|
+
fileKey: string;
|
3289
|
+
bucketName: string;
|
3290
|
+
fileSize: number;
|
3291
|
+
fileUrl: string | null;
|
3592
3292
|
}[];
|
3593
3293
|
}>, "many">;
|
3594
3294
|
}, "strip", z.ZodTypeAny, {
|
@@ -3630,17 +3330,11 @@ export declare const ticketContract: {
|
|
3630
3330
|
createdAt: Date;
|
3631
3331
|
updatedAt: Date;
|
3632
3332
|
deletedAt: Date | null;
|
3633
|
-
|
3634
|
-
|
3635
|
-
|
3636
|
-
|
3637
|
-
|
3638
|
-
deletedAt: Date | null;
|
3639
|
-
fileName: string;
|
3640
|
-
fileKey: string;
|
3641
|
-
bucketName: string;
|
3642
|
-
fileSize: number;
|
3643
|
-
};
|
3333
|
+
fileName: string;
|
3334
|
+
fileKey: string;
|
3335
|
+
bucketName: string;
|
3336
|
+
fileSize: number;
|
3337
|
+
fileUrl: string | null;
|
3644
3338
|
}[];
|
3645
3339
|
}[];
|
3646
3340
|
contactId: string;
|
@@ -3687,17 +3381,11 @@ export declare const ticketContract: {
|
|
3687
3381
|
createdAt: Date;
|
3688
3382
|
updatedAt: Date;
|
3689
3383
|
deletedAt: Date | null;
|
3690
|
-
|
3691
|
-
|
3692
|
-
|
3693
|
-
|
3694
|
-
|
3695
|
-
deletedAt: Date | null;
|
3696
|
-
fileName: string;
|
3697
|
-
fileKey: string;
|
3698
|
-
bucketName: string;
|
3699
|
-
fileSize: number;
|
3700
|
-
};
|
3384
|
+
fileName: string;
|
3385
|
+
fileKey: string;
|
3386
|
+
bucketName: string;
|
3387
|
+
fileSize: number;
|
3388
|
+
fileUrl: string | null;
|
3701
3389
|
}[];
|
3702
3390
|
}[];
|
3703
3391
|
contactId: string;
|
@@ -3917,17 +3605,11 @@ export declare const ticketContract: {
|
|
3917
3605
|
createdAt: Date;
|
3918
3606
|
updatedAt: Date;
|
3919
3607
|
deletedAt: Date | null;
|
3920
|
-
|
3921
|
-
|
3922
|
-
|
3923
|
-
|
3924
|
-
|
3925
|
-
deletedAt: Date | null;
|
3926
|
-
fileName: string;
|
3927
|
-
fileKey: string;
|
3928
|
-
bucketName: string;
|
3929
|
-
fileSize: number;
|
3930
|
-
};
|
3608
|
+
fileName: string;
|
3609
|
+
fileKey: string;
|
3610
|
+
bucketName: string;
|
3611
|
+
fileSize: number;
|
3612
|
+
fileUrl: string | null;
|
3931
3613
|
}[];
|
3932
3614
|
}[];
|
3933
3615
|
contactId: string;
|
@@ -3974,17 +3656,11 @@ export declare const ticketContract: {
|
|
3974
3656
|
createdAt: Date;
|
3975
3657
|
updatedAt: Date;
|
3976
3658
|
deletedAt: Date | null;
|
3977
|
-
|
3978
|
-
|
3979
|
-
|
3980
|
-
|
3981
|
-
|
3982
|
-
deletedAt: Date | null;
|
3983
|
-
fileName: string;
|
3984
|
-
fileKey: string;
|
3985
|
-
bucketName: string;
|
3986
|
-
fileSize: number;
|
3987
|
-
};
|
3659
|
+
fileName: string;
|
3660
|
+
fileKey: string;
|
3661
|
+
bucketName: string;
|
3662
|
+
fileSize: number;
|
3663
|
+
fileUrl: string | null;
|
3988
3664
|
}[];
|
3989
3665
|
}[];
|
3990
3666
|
contactId: string;
|
@@ -4033,17 +3709,11 @@ export declare const ticketContract: {
|
|
4033
3709
|
createdAt: Date;
|
4034
3710
|
updatedAt: Date;
|
4035
3711
|
deletedAt: Date | null;
|
4036
|
-
|
4037
|
-
|
4038
|
-
|
4039
|
-
|
4040
|
-
|
4041
|
-
deletedAt: Date | null;
|
4042
|
-
fileName: string;
|
4043
|
-
fileKey: string;
|
4044
|
-
bucketName: string;
|
4045
|
-
fileSize: number;
|
4046
|
-
};
|
3712
|
+
fileName: string;
|
3713
|
+
fileKey: string;
|
3714
|
+
bucketName: string;
|
3715
|
+
fileSize: number;
|
3716
|
+
fileUrl: string | null;
|
4047
3717
|
}[];
|
4048
3718
|
}[];
|
4049
3719
|
contactId: string;
|
@@ -4096,17 +3766,11 @@ export declare const ticketContract: {
|
|
4096
3766
|
createdAt: Date;
|
4097
3767
|
updatedAt: Date;
|
4098
3768
|
deletedAt: Date | null;
|
4099
|
-
|
4100
|
-
|
4101
|
-
|
4102
|
-
|
4103
|
-
|
4104
|
-
deletedAt: Date | null;
|
4105
|
-
fileName: string;
|
4106
|
-
fileKey: string;
|
4107
|
-
bucketName: string;
|
4108
|
-
fileSize: number;
|
4109
|
-
};
|
3769
|
+
fileName: string;
|
3770
|
+
fileKey: string;
|
3771
|
+
bucketName: string;
|
3772
|
+
fileSize: number;
|
3773
|
+
fileUrl: string | null;
|
4110
3774
|
}[];
|
4111
3775
|
}[];
|
4112
3776
|
contactId: string;
|
@@ -4308,67 +3972,31 @@ export declare const ticketContract: {
|
|
4308
3972
|
createdAt: z.ZodDate;
|
4309
3973
|
updatedAt: z.ZodDate;
|
4310
3974
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
4311
|
-
|
4312
|
-
|
4313
|
-
|
4314
|
-
|
4315
|
-
|
4316
|
-
deletedAt: z.ZodNullable<z.ZodDate>;
|
4317
|
-
bucketName: z.ZodString;
|
4318
|
-
fileName: z.ZodString;
|
4319
|
-
fileSize: z.ZodNumber;
|
4320
|
-
fileKey: z.ZodString;
|
4321
|
-
}, "strip", z.ZodTypeAny, {
|
4322
|
-
id: string;
|
4323
|
-
createdAt: Date;
|
4324
|
-
updatedAt: Date;
|
4325
|
-
deletedAt: Date | null;
|
4326
|
-
fileName: string;
|
4327
|
-
fileKey: string;
|
4328
|
-
bucketName: string;
|
4329
|
-
fileSize: number;
|
4330
|
-
}, {
|
4331
|
-
id: string;
|
4332
|
-
createdAt: Date;
|
4333
|
-
updatedAt: Date;
|
4334
|
-
deletedAt: Date | null;
|
4335
|
-
fileName: string;
|
4336
|
-
fileKey: string;
|
4337
|
-
bucketName: string;
|
4338
|
-
fileSize: number;
|
4339
|
-
}>;
|
3975
|
+
bucketName: z.ZodString;
|
3976
|
+
fileName: z.ZodString;
|
3977
|
+
fileSize: z.ZodNumber;
|
3978
|
+
fileKey: z.ZodString;
|
3979
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
4340
3980
|
}, "strip", z.ZodTypeAny, {
|
4341
3981
|
id: string;
|
4342
3982
|
createdAt: Date;
|
4343
3983
|
updatedAt: Date;
|
4344
3984
|
deletedAt: Date | null;
|
4345
|
-
|
4346
|
-
|
4347
|
-
|
4348
|
-
|
4349
|
-
|
4350
|
-
deletedAt: Date | null;
|
4351
|
-
fileName: string;
|
4352
|
-
fileKey: string;
|
4353
|
-
bucketName: string;
|
4354
|
-
fileSize: number;
|
4355
|
-
};
|
3985
|
+
fileName: string;
|
3986
|
+
fileKey: string;
|
3987
|
+
bucketName: string;
|
3988
|
+
fileSize: number;
|
3989
|
+
fileUrl: string | null;
|
4356
3990
|
}, {
|
4357
3991
|
id: string;
|
4358
3992
|
createdAt: Date;
|
4359
3993
|
updatedAt: Date;
|
4360
3994
|
deletedAt: Date | null;
|
4361
|
-
|
4362
|
-
|
4363
|
-
|
4364
|
-
|
4365
|
-
|
4366
|
-
deletedAt: Date | null;
|
4367
|
-
fileName: string;
|
4368
|
-
fileKey: string;
|
4369
|
-
bucketName: string;
|
4370
|
-
fileSize: number;
|
4371
|
-
};
|
3995
|
+
fileName: string;
|
3996
|
+
fileKey: string;
|
3997
|
+
bucketName: string;
|
3998
|
+
fileSize: number;
|
3999
|
+
fileUrl: string | null;
|
4372
4000
|
}>, "many">;
|
4373
4001
|
}, "strip", z.ZodTypeAny, {
|
4374
4002
|
id: string;
|
@@ -4398,17 +4026,11 @@ export declare const ticketContract: {
|
|
4398
4026
|
createdAt: Date;
|
4399
4027
|
updatedAt: Date;
|
4400
4028
|
deletedAt: Date | null;
|
4401
|
-
|
4402
|
-
|
4403
|
-
|
4404
|
-
|
4405
|
-
|
4406
|
-
deletedAt: Date | null;
|
4407
|
-
fileName: string;
|
4408
|
-
fileKey: string;
|
4409
|
-
bucketName: string;
|
4410
|
-
fileSize: number;
|
4411
|
-
};
|
4029
|
+
fileName: string;
|
4030
|
+
fileKey: string;
|
4031
|
+
bucketName: string;
|
4032
|
+
fileSize: number;
|
4033
|
+
fileUrl: string | null;
|
4412
4034
|
}[];
|
4413
4035
|
}, {
|
4414
4036
|
id: string;
|
@@ -4438,17 +4060,11 @@ export declare const ticketContract: {
|
|
4438
4060
|
createdAt: Date;
|
4439
4061
|
updatedAt: Date;
|
4440
4062
|
deletedAt: Date | null;
|
4441
|
-
|
4442
|
-
|
4443
|
-
|
4444
|
-
|
4445
|
-
|
4446
|
-
deletedAt: Date | null;
|
4447
|
-
fileName: string;
|
4448
|
-
fileKey: string;
|
4449
|
-
bucketName: string;
|
4450
|
-
fileSize: number;
|
4451
|
-
};
|
4063
|
+
fileName: string;
|
4064
|
+
fileKey: string;
|
4065
|
+
bucketName: string;
|
4066
|
+
fileSize: number;
|
4067
|
+
fileUrl: string | null;
|
4452
4068
|
}[];
|
4453
4069
|
}>;
|
4454
4070
|
400: z.ZodObject<{
|