@kl1/contracts 1.0.70 → 1.0.71
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 +11 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -17
- package/dist/index.mjs.map +1 -1
- package/dist/src/chat/index.d.ts +1110 -2579
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +222 -519
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +228 -482
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +222 -547
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +66 -165
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +614 -999
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +72 -200
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +317 -806
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +4719 -8395
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/custom-field-upload/schema.d.ts +2 -2
- package/dist/src/cx-log/index.d.ts +234 -573
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +198 -495
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +138 -265
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +138 -265
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +1330 -1330
- package/dist/src/mail/message-contract.d.ts +56 -56
- package/dist/src/mail/room-contract.d.ts +1258 -1258
- package/dist/src/mail/schemas/message.schema.d.ts +33 -33
- package/dist/src/mail/schemas/room-validation.schema.d.ts +420 -420
- package/dist/src/mail/schemas/room.schema.d.ts +284 -284
- package/dist/src/messenger/index.d.ts +138 -265
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +198 -495
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +54 -139
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +338 -818
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +54 -139
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +138 -265
- package/dist/src/viber/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -1205,77 +1205,34 @@ export declare const ticketContract: {
|
|
1205
1205
|
createdAt: z.ZodDate;
|
1206
1206
|
updatedAt: z.ZodDate;
|
1207
1207
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
bucketName: z.ZodString;
|
1215
|
-
fileName: z.ZodString;
|
1216
|
-
fileSize: z.ZodNumber;
|
1217
|
-
fileKey: z.ZodString;
|
1218
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
1219
|
-
status: z.ZodOptional<z.ZodString>;
|
1220
|
-
}, "strip", z.ZodTypeAny, {
|
1221
|
-
id: string;
|
1222
|
-
createdAt: Date;
|
1223
|
-
updatedAt: Date;
|
1224
|
-
deletedAt: Date | null;
|
1225
|
-
fileName: string;
|
1226
|
-
fileKey: string;
|
1227
|
-
bucketName: string;
|
1228
|
-
fileSize: number;
|
1229
|
-
fileUrl: string | null;
|
1230
|
-
status?: string | undefined;
|
1231
|
-
}, {
|
1232
|
-
id: string;
|
1233
|
-
createdAt: Date;
|
1234
|
-
updatedAt: Date;
|
1235
|
-
deletedAt: Date | null;
|
1236
|
-
fileName: string;
|
1237
|
-
fileKey: string;
|
1238
|
-
bucketName: string;
|
1239
|
-
fileSize: number;
|
1240
|
-
fileUrl: string | null;
|
1241
|
-
status?: string | undefined;
|
1242
|
-
}>;
|
1208
|
+
bucketName: z.ZodString;
|
1209
|
+
fileName: z.ZodString;
|
1210
|
+
fileSize: z.ZodNumber;
|
1211
|
+
fileKey: z.ZodString;
|
1212
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
1213
|
+
status: z.ZodOptional<z.ZodString>;
|
1243
1214
|
}, "strip", z.ZodTypeAny, {
|
1244
1215
|
id: string;
|
1245
1216
|
createdAt: Date;
|
1246
1217
|
updatedAt: Date;
|
1247
1218
|
deletedAt: Date | null;
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1253
|
-
|
1254
|
-
fileName: string;
|
1255
|
-
fileKey: string;
|
1256
|
-
bucketName: string;
|
1257
|
-
fileSize: number;
|
1258
|
-
fileUrl: string | null;
|
1259
|
-
status?: string | undefined;
|
1260
|
-
};
|
1219
|
+
fileName: string;
|
1220
|
+
fileKey: string;
|
1221
|
+
bucketName: string;
|
1222
|
+
fileSize: number;
|
1223
|
+
fileUrl: string | null;
|
1224
|
+
status?: string | undefined;
|
1261
1225
|
}, {
|
1262
1226
|
id: string;
|
1263
1227
|
createdAt: Date;
|
1264
1228
|
updatedAt: Date;
|
1265
1229
|
deletedAt: Date | null;
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
fileName: string;
|
1273
|
-
fileKey: string;
|
1274
|
-
bucketName: string;
|
1275
|
-
fileSize: number;
|
1276
|
-
fileUrl: string | null;
|
1277
|
-
status?: string | undefined;
|
1278
|
-
};
|
1230
|
+
fileName: string;
|
1231
|
+
fileKey: string;
|
1232
|
+
bucketName: string;
|
1233
|
+
fileSize: number;
|
1234
|
+
fileUrl: string | null;
|
1235
|
+
status?: string | undefined;
|
1279
1236
|
}>, "many">;
|
1280
1237
|
}, "strip", z.ZodTypeAny, {
|
1281
1238
|
id: string;
|
@@ -1305,19 +1262,12 @@ export declare const ticketContract: {
|
|
1305
1262
|
createdAt: Date;
|
1306
1263
|
updatedAt: Date;
|
1307
1264
|
deletedAt: Date | null;
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
fileName: string;
|
1315
|
-
fileKey: string;
|
1316
|
-
bucketName: string;
|
1317
|
-
fileSize: number;
|
1318
|
-
fileUrl: string | null;
|
1319
|
-
status?: string | undefined;
|
1320
|
-
};
|
1265
|
+
fileName: string;
|
1266
|
+
fileKey: string;
|
1267
|
+
bucketName: string;
|
1268
|
+
fileSize: number;
|
1269
|
+
fileUrl: string | null;
|
1270
|
+
status?: string | undefined;
|
1321
1271
|
}[];
|
1322
1272
|
}, {
|
1323
1273
|
id: string;
|
@@ -1347,19 +1297,12 @@ export declare const ticketContract: {
|
|
1347
1297
|
createdAt: Date;
|
1348
1298
|
updatedAt: Date;
|
1349
1299
|
deletedAt: Date | null;
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
fileName: string;
|
1357
|
-
fileKey: string;
|
1358
|
-
bucketName: string;
|
1359
|
-
fileSize: number;
|
1360
|
-
fileUrl: string | null;
|
1361
|
-
status?: string | undefined;
|
1362
|
-
};
|
1300
|
+
fileName: string;
|
1301
|
+
fileKey: string;
|
1302
|
+
bucketName: string;
|
1303
|
+
fileSize: number;
|
1304
|
+
fileUrl: string | null;
|
1305
|
+
status?: string | undefined;
|
1363
1306
|
}[];
|
1364
1307
|
}>, "many">;
|
1365
1308
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1502,19 +1445,12 @@ export declare const ticketContract: {
|
|
1502
1445
|
createdAt: Date;
|
1503
1446
|
updatedAt: Date;
|
1504
1447
|
deletedAt: Date | null;
|
1505
|
-
|
1506
|
-
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1510
|
-
|
1511
|
-
fileName: string;
|
1512
|
-
fileKey: string;
|
1513
|
-
bucketName: string;
|
1514
|
-
fileSize: number;
|
1515
|
-
fileUrl: string | null;
|
1516
|
-
status?: string | undefined;
|
1517
|
-
};
|
1448
|
+
fileName: string;
|
1449
|
+
fileKey: string;
|
1450
|
+
bucketName: string;
|
1451
|
+
fileSize: number;
|
1452
|
+
fileUrl: string | null;
|
1453
|
+
status?: string | undefined;
|
1518
1454
|
}[];
|
1519
1455
|
}[];
|
1520
1456
|
company: {
|
@@ -1605,19 +1541,12 @@ export declare const ticketContract: {
|
|
1605
1541
|
createdAt: Date;
|
1606
1542
|
updatedAt: Date;
|
1607
1543
|
deletedAt: Date | null;
|
1608
|
-
|
1609
|
-
|
1610
|
-
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
fileName: string;
|
1615
|
-
fileKey: string;
|
1616
|
-
bucketName: string;
|
1617
|
-
fileSize: number;
|
1618
|
-
fileUrl: string | null;
|
1619
|
-
status?: string | undefined;
|
1620
|
-
};
|
1544
|
+
fileName: string;
|
1545
|
+
fileKey: string;
|
1546
|
+
bucketName: string;
|
1547
|
+
fileSize: number;
|
1548
|
+
fileUrl: string | null;
|
1549
|
+
status?: string | undefined;
|
1621
1550
|
}[];
|
1622
1551
|
}[];
|
1623
1552
|
company: {
|
@@ -2130,19 +2059,12 @@ export declare const ticketContract: {
|
|
2130
2059
|
createdAt: Date;
|
2131
2060
|
updatedAt: Date;
|
2132
2061
|
deletedAt: Date | null;
|
2133
|
-
|
2134
|
-
|
2135
|
-
|
2136
|
-
|
2137
|
-
|
2138
|
-
|
2139
|
-
fileName: string;
|
2140
|
-
fileKey: string;
|
2141
|
-
bucketName: string;
|
2142
|
-
fileSize: number;
|
2143
|
-
fileUrl: string | null;
|
2144
|
-
status?: string | undefined;
|
2145
|
-
};
|
2062
|
+
fileName: string;
|
2063
|
+
fileKey: string;
|
2064
|
+
bucketName: string;
|
2065
|
+
fileSize: number;
|
2066
|
+
fileUrl: string | null;
|
2067
|
+
status?: string | undefined;
|
2146
2068
|
}[];
|
2147
2069
|
}[];
|
2148
2070
|
company: {
|
@@ -2463,19 +2385,12 @@ export declare const ticketContract: {
|
|
2463
2385
|
createdAt: Date;
|
2464
2386
|
updatedAt: Date;
|
2465
2387
|
deletedAt: Date | null;
|
2466
|
-
|
2467
|
-
|
2468
|
-
|
2469
|
-
|
2470
|
-
|
2471
|
-
|
2472
|
-
fileName: string;
|
2473
|
-
fileKey: string;
|
2474
|
-
bucketName: string;
|
2475
|
-
fileSize: number;
|
2476
|
-
fileUrl: string | null;
|
2477
|
-
status?: string | undefined;
|
2478
|
-
};
|
2388
|
+
fileName: string;
|
2389
|
+
fileKey: string;
|
2390
|
+
bucketName: string;
|
2391
|
+
fileSize: number;
|
2392
|
+
fileUrl: string | null;
|
2393
|
+
status?: string | undefined;
|
2479
2394
|
}[];
|
2480
2395
|
}[];
|
2481
2396
|
company: {
|
@@ -2798,19 +2713,12 @@ export declare const ticketContract: {
|
|
2798
2713
|
createdAt: Date;
|
2799
2714
|
updatedAt: Date;
|
2800
2715
|
deletedAt: Date | null;
|
2801
|
-
|
2802
|
-
|
2803
|
-
|
2804
|
-
|
2805
|
-
|
2806
|
-
|
2807
|
-
fileName: string;
|
2808
|
-
fileKey: string;
|
2809
|
-
bucketName: string;
|
2810
|
-
fileSize: number;
|
2811
|
-
fileUrl: string | null;
|
2812
|
-
status?: string | undefined;
|
2813
|
-
};
|
2716
|
+
fileName: string;
|
2717
|
+
fileKey: string;
|
2718
|
+
bucketName: string;
|
2719
|
+
fileSize: number;
|
2720
|
+
fileUrl: string | null;
|
2721
|
+
status?: string | undefined;
|
2814
2722
|
}[];
|
2815
2723
|
}[];
|
2816
2724
|
company: {
|
@@ -3134,19 +3042,12 @@ export declare const ticketContract: {
|
|
3134
3042
|
createdAt: Date;
|
3135
3043
|
updatedAt: Date;
|
3136
3044
|
deletedAt: Date | null;
|
3137
|
-
|
3138
|
-
|
3139
|
-
|
3140
|
-
|
3141
|
-
|
3142
|
-
|
3143
|
-
fileName: string;
|
3144
|
-
fileKey: string;
|
3145
|
-
bucketName: string;
|
3146
|
-
fileSize: number;
|
3147
|
-
fileUrl: string | null;
|
3148
|
-
status?: string | undefined;
|
3149
|
-
};
|
3045
|
+
fileName: string;
|
3046
|
+
fileKey: string;
|
3047
|
+
bucketName: string;
|
3048
|
+
fileSize: number;
|
3049
|
+
fileUrl: string | null;
|
3050
|
+
status?: string | undefined;
|
3150
3051
|
}[];
|
3151
3052
|
}[];
|
3152
3053
|
company: {
|
@@ -3623,19 +3524,12 @@ export declare const ticketContract: {
|
|
3623
3524
|
createdAt: Date;
|
3624
3525
|
updatedAt: Date;
|
3625
3526
|
deletedAt: Date | null;
|
3626
|
-
|
3627
|
-
|
3628
|
-
|
3629
|
-
|
3630
|
-
|
3631
|
-
|
3632
|
-
fileName: string;
|
3633
|
-
fileKey: string;
|
3634
|
-
bucketName: string;
|
3635
|
-
fileSize: number;
|
3636
|
-
fileUrl: string | null;
|
3637
|
-
status?: string | undefined;
|
3638
|
-
};
|
3527
|
+
fileName: string;
|
3528
|
+
fileKey: string;
|
3529
|
+
bucketName: string;
|
3530
|
+
fileSize: number;
|
3531
|
+
fileUrl: string | null;
|
3532
|
+
status?: string | undefined;
|
3639
3533
|
}[];
|
3640
3534
|
}[];
|
3641
3535
|
company: {
|
@@ -3956,19 +3850,12 @@ export declare const ticketContract: {
|
|
3956
3850
|
createdAt: Date;
|
3957
3851
|
updatedAt: Date;
|
3958
3852
|
deletedAt: Date | null;
|
3959
|
-
|
3960
|
-
|
3961
|
-
|
3962
|
-
|
3963
|
-
|
3964
|
-
|
3965
|
-
fileName: string;
|
3966
|
-
fileKey: string;
|
3967
|
-
bucketName: string;
|
3968
|
-
fileSize: number;
|
3969
|
-
fileUrl: string | null;
|
3970
|
-
status?: string | undefined;
|
3971
|
-
};
|
3853
|
+
fileName: string;
|
3854
|
+
fileKey: string;
|
3855
|
+
bucketName: string;
|
3856
|
+
fileSize: number;
|
3857
|
+
fileUrl: string | null;
|
3858
|
+
status?: string | undefined;
|
3972
3859
|
}[];
|
3973
3860
|
}[];
|
3974
3861
|
company: {
|
@@ -4291,19 +4178,12 @@ export declare const ticketContract: {
|
|
4291
4178
|
createdAt: Date;
|
4292
4179
|
updatedAt: Date;
|
4293
4180
|
deletedAt: Date | null;
|
4294
|
-
|
4295
|
-
|
4296
|
-
|
4297
|
-
|
4298
|
-
|
4299
|
-
|
4300
|
-
fileName: string;
|
4301
|
-
fileKey: string;
|
4302
|
-
bucketName: string;
|
4303
|
-
fileSize: number;
|
4304
|
-
fileUrl: string | null;
|
4305
|
-
status?: string | undefined;
|
4306
|
-
};
|
4181
|
+
fileName: string;
|
4182
|
+
fileKey: string;
|
4183
|
+
bucketName: string;
|
4184
|
+
fileSize: number;
|
4185
|
+
fileUrl: string | null;
|
4186
|
+
status?: string | undefined;
|
4307
4187
|
}[];
|
4308
4188
|
}[];
|
4309
4189
|
company: {
|
@@ -4630,19 +4510,12 @@ export declare const ticketContract: {
|
|
4630
4510
|
createdAt: Date;
|
4631
4511
|
updatedAt: Date;
|
4632
4512
|
deletedAt: Date | null;
|
4633
|
-
|
4634
|
-
|
4635
|
-
|
4636
|
-
|
4637
|
-
|
4638
|
-
|
4639
|
-
fileName: string;
|
4640
|
-
fileKey: string;
|
4641
|
-
bucketName: string;
|
4642
|
-
fileSize: number;
|
4643
|
-
fileUrl: string | null;
|
4644
|
-
status?: string | undefined;
|
4645
|
-
};
|
4513
|
+
fileName: string;
|
4514
|
+
fileKey: string;
|
4515
|
+
bucketName: string;
|
4516
|
+
fileSize: number;
|
4517
|
+
fileUrl: string | null;
|
4518
|
+
status?: string | undefined;
|
4646
4519
|
}[];
|
4647
4520
|
}[];
|
4648
4521
|
company: {
|
@@ -4971,19 +4844,12 @@ export declare const ticketContract: {
|
|
4971
4844
|
createdAt: Date;
|
4972
4845
|
updatedAt: Date;
|
4973
4846
|
deletedAt: Date | null;
|
4974
|
-
|
4975
|
-
|
4976
|
-
|
4977
|
-
|
4978
|
-
|
4979
|
-
|
4980
|
-
fileName: string;
|
4981
|
-
fileKey: string;
|
4982
|
-
bucketName: string;
|
4983
|
-
fileSize: number;
|
4984
|
-
fileUrl: string | null;
|
4985
|
-
status?: string | undefined;
|
4986
|
-
};
|
4847
|
+
fileName: string;
|
4848
|
+
fileKey: string;
|
4849
|
+
bucketName: string;
|
4850
|
+
fileSize: number;
|
4851
|
+
fileUrl: string | null;
|
4852
|
+
status?: string | undefined;
|
4987
4853
|
}[];
|
4988
4854
|
}[];
|
4989
4855
|
company: {
|
@@ -5313,19 +5179,12 @@ export declare const ticketContract: {
|
|
5313
5179
|
createdAt: Date;
|
5314
5180
|
updatedAt: Date;
|
5315
5181
|
deletedAt: Date | null;
|
5316
|
-
|
5317
|
-
|
5318
|
-
|
5319
|
-
|
5320
|
-
|
5321
|
-
|
5322
|
-
fileName: string;
|
5323
|
-
fileKey: string;
|
5324
|
-
bucketName: string;
|
5325
|
-
fileSize: number;
|
5326
|
-
fileUrl: string | null;
|
5327
|
-
status?: string | undefined;
|
5328
|
-
};
|
5182
|
+
fileName: string;
|
5183
|
+
fileKey: string;
|
5184
|
+
bucketName: string;
|
5185
|
+
fileSize: number;
|
5186
|
+
fileUrl: string | null;
|
5187
|
+
status?: string | undefined;
|
5329
5188
|
}[];
|
5330
5189
|
}[];
|
5331
5190
|
company: {
|
@@ -6636,77 +6495,34 @@ export declare const ticketContract: {
|
|
6636
6495
|
createdAt: z.ZodDate;
|
6637
6496
|
updatedAt: z.ZodDate;
|
6638
6497
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
6639
|
-
|
6640
|
-
|
6641
|
-
|
6642
|
-
|
6643
|
-
|
6644
|
-
|
6645
|
-
bucketName: z.ZodString;
|
6646
|
-
fileName: z.ZodString;
|
6647
|
-
fileSize: z.ZodNumber;
|
6648
|
-
fileKey: z.ZodString;
|
6649
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
6650
|
-
status: z.ZodOptional<z.ZodString>;
|
6651
|
-
}, "strip", z.ZodTypeAny, {
|
6652
|
-
id: string;
|
6653
|
-
createdAt: Date;
|
6654
|
-
updatedAt: Date;
|
6655
|
-
deletedAt: Date | null;
|
6656
|
-
fileName: string;
|
6657
|
-
fileKey: string;
|
6658
|
-
bucketName: string;
|
6659
|
-
fileSize: number;
|
6660
|
-
fileUrl: string | null;
|
6661
|
-
status?: string | undefined;
|
6662
|
-
}, {
|
6663
|
-
id: string;
|
6664
|
-
createdAt: Date;
|
6665
|
-
updatedAt: Date;
|
6666
|
-
deletedAt: Date | null;
|
6667
|
-
fileName: string;
|
6668
|
-
fileKey: string;
|
6669
|
-
bucketName: string;
|
6670
|
-
fileSize: number;
|
6671
|
-
fileUrl: string | null;
|
6672
|
-
status?: string | undefined;
|
6673
|
-
}>;
|
6498
|
+
bucketName: z.ZodString;
|
6499
|
+
fileName: z.ZodString;
|
6500
|
+
fileSize: z.ZodNumber;
|
6501
|
+
fileKey: z.ZodString;
|
6502
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
6503
|
+
status: z.ZodOptional<z.ZodString>;
|
6674
6504
|
}, "strip", z.ZodTypeAny, {
|
6675
6505
|
id: string;
|
6676
6506
|
createdAt: Date;
|
6677
6507
|
updatedAt: Date;
|
6678
6508
|
deletedAt: Date | null;
|
6679
|
-
|
6680
|
-
|
6681
|
-
|
6682
|
-
|
6683
|
-
|
6684
|
-
|
6685
|
-
fileName: string;
|
6686
|
-
fileKey: string;
|
6687
|
-
bucketName: string;
|
6688
|
-
fileSize: number;
|
6689
|
-
fileUrl: string | null;
|
6690
|
-
status?: string | undefined;
|
6691
|
-
};
|
6509
|
+
fileName: string;
|
6510
|
+
fileKey: string;
|
6511
|
+
bucketName: string;
|
6512
|
+
fileSize: number;
|
6513
|
+
fileUrl: string | null;
|
6514
|
+
status?: string | undefined;
|
6692
6515
|
}, {
|
6693
6516
|
id: string;
|
6694
6517
|
createdAt: Date;
|
6695
6518
|
updatedAt: Date;
|
6696
6519
|
deletedAt: Date | null;
|
6697
|
-
|
6698
|
-
|
6699
|
-
|
6700
|
-
|
6701
|
-
|
6702
|
-
|
6703
|
-
fileName: string;
|
6704
|
-
fileKey: string;
|
6705
|
-
bucketName: string;
|
6706
|
-
fileSize: number;
|
6707
|
-
fileUrl: string | null;
|
6708
|
-
status?: string | undefined;
|
6709
|
-
};
|
6520
|
+
fileName: string;
|
6521
|
+
fileKey: string;
|
6522
|
+
bucketName: string;
|
6523
|
+
fileSize: number;
|
6524
|
+
fileUrl: string | null;
|
6525
|
+
status?: string | undefined;
|
6710
6526
|
}>, "many">;
|
6711
6527
|
}, "strip", z.ZodTypeAny, {
|
6712
6528
|
id: string;
|
@@ -6736,19 +6552,12 @@ export declare const ticketContract: {
|
|
6736
6552
|
createdAt: Date;
|
6737
6553
|
updatedAt: Date;
|
6738
6554
|
deletedAt: Date | null;
|
6739
|
-
|
6740
|
-
|
6741
|
-
|
6742
|
-
|
6743
|
-
|
6744
|
-
|
6745
|
-
fileName: string;
|
6746
|
-
fileKey: string;
|
6747
|
-
bucketName: string;
|
6748
|
-
fileSize: number;
|
6749
|
-
fileUrl: string | null;
|
6750
|
-
status?: string | undefined;
|
6751
|
-
};
|
6555
|
+
fileName: string;
|
6556
|
+
fileKey: string;
|
6557
|
+
bucketName: string;
|
6558
|
+
fileSize: number;
|
6559
|
+
fileUrl: string | null;
|
6560
|
+
status?: string | undefined;
|
6752
6561
|
}[];
|
6753
6562
|
}, {
|
6754
6563
|
id: string;
|
@@ -6778,19 +6587,12 @@ export declare const ticketContract: {
|
|
6778
6587
|
createdAt: Date;
|
6779
6588
|
updatedAt: Date;
|
6780
6589
|
deletedAt: Date | null;
|
6781
|
-
|
6782
|
-
|
6783
|
-
|
6784
|
-
|
6785
|
-
|
6786
|
-
|
6787
|
-
fileName: string;
|
6788
|
-
fileKey: string;
|
6789
|
-
bucketName: string;
|
6790
|
-
fileSize: number;
|
6791
|
-
fileUrl: string | null;
|
6792
|
-
status?: string | undefined;
|
6793
|
-
};
|
6590
|
+
fileName: string;
|
6591
|
+
fileKey: string;
|
6592
|
+
bucketName: string;
|
6593
|
+
fileSize: number;
|
6594
|
+
fileUrl: string | null;
|
6595
|
+
status?: string | undefined;
|
6794
6596
|
}[];
|
6795
6597
|
}>, "many">;
|
6796
6598
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -6933,19 +6735,12 @@ export declare const ticketContract: {
|
|
6933
6735
|
createdAt: Date;
|
6934
6736
|
updatedAt: Date;
|
6935
6737
|
deletedAt: Date | null;
|
6936
|
-
|
6937
|
-
|
6938
|
-
|
6939
|
-
|
6940
|
-
|
6941
|
-
|
6942
|
-
fileName: string;
|
6943
|
-
fileKey: string;
|
6944
|
-
bucketName: string;
|
6945
|
-
fileSize: number;
|
6946
|
-
fileUrl: string | null;
|
6947
|
-
status?: string | undefined;
|
6948
|
-
};
|
6738
|
+
fileName: string;
|
6739
|
+
fileKey: string;
|
6740
|
+
bucketName: string;
|
6741
|
+
fileSize: number;
|
6742
|
+
fileUrl: string | null;
|
6743
|
+
status?: string | undefined;
|
6949
6744
|
}[];
|
6950
6745
|
}[];
|
6951
6746
|
company: {
|
@@ -7036,19 +6831,12 @@ export declare const ticketContract: {
|
|
7036
6831
|
createdAt: Date;
|
7037
6832
|
updatedAt: Date;
|
7038
6833
|
deletedAt: Date | null;
|
7039
|
-
|
7040
|
-
|
7041
|
-
|
7042
|
-
|
7043
|
-
|
7044
|
-
|
7045
|
-
fileName: string;
|
7046
|
-
fileKey: string;
|
7047
|
-
bucketName: string;
|
7048
|
-
fileSize: number;
|
7049
|
-
fileUrl: string | null;
|
7050
|
-
status?: string | undefined;
|
7051
|
-
};
|
6834
|
+
fileName: string;
|
6835
|
+
fileKey: string;
|
6836
|
+
bucketName: string;
|
6837
|
+
fileSize: number;
|
6838
|
+
fileUrl: string | null;
|
6839
|
+
status?: string | undefined;
|
7052
6840
|
}[];
|
7053
6841
|
}[];
|
7054
6842
|
company: {
|
@@ -7561,19 +7349,12 @@ export declare const ticketContract: {
|
|
7561
7349
|
createdAt: Date;
|
7562
7350
|
updatedAt: Date;
|
7563
7351
|
deletedAt: Date | null;
|
7564
|
-
|
7565
|
-
|
7566
|
-
|
7567
|
-
|
7568
|
-
|
7569
|
-
|
7570
|
-
fileName: string;
|
7571
|
-
fileKey: string;
|
7572
|
-
bucketName: string;
|
7573
|
-
fileSize: number;
|
7574
|
-
fileUrl: string | null;
|
7575
|
-
status?: string | undefined;
|
7576
|
-
};
|
7352
|
+
fileName: string;
|
7353
|
+
fileKey: string;
|
7354
|
+
bucketName: string;
|
7355
|
+
fileSize: number;
|
7356
|
+
fileUrl: string | null;
|
7357
|
+
status?: string | undefined;
|
7577
7358
|
}[];
|
7578
7359
|
}[];
|
7579
7360
|
company: {
|
@@ -7894,19 +7675,12 @@ export declare const ticketContract: {
|
|
7894
7675
|
createdAt: Date;
|
7895
7676
|
updatedAt: Date;
|
7896
7677
|
deletedAt: Date | null;
|
7897
|
-
|
7898
|
-
|
7899
|
-
|
7900
|
-
|
7901
|
-
|
7902
|
-
|
7903
|
-
fileName: string;
|
7904
|
-
fileKey: string;
|
7905
|
-
bucketName: string;
|
7906
|
-
fileSize: number;
|
7907
|
-
fileUrl: string | null;
|
7908
|
-
status?: string | undefined;
|
7909
|
-
};
|
7678
|
+
fileName: string;
|
7679
|
+
fileKey: string;
|
7680
|
+
bucketName: string;
|
7681
|
+
fileSize: number;
|
7682
|
+
fileUrl: string | null;
|
7683
|
+
status?: string | undefined;
|
7910
7684
|
}[];
|
7911
7685
|
}[];
|
7912
7686
|
company: {
|
@@ -8229,19 +8003,12 @@ export declare const ticketContract: {
|
|
8229
8003
|
createdAt: Date;
|
8230
8004
|
updatedAt: Date;
|
8231
8005
|
deletedAt: Date | null;
|
8232
|
-
|
8233
|
-
|
8234
|
-
|
8235
|
-
|
8236
|
-
|
8237
|
-
|
8238
|
-
fileName: string;
|
8239
|
-
fileKey: string;
|
8240
|
-
bucketName: string;
|
8241
|
-
fileSize: number;
|
8242
|
-
fileUrl: string | null;
|
8243
|
-
status?: string | undefined;
|
8244
|
-
};
|
8006
|
+
fileName: string;
|
8007
|
+
fileKey: string;
|
8008
|
+
bucketName: string;
|
8009
|
+
fileSize: number;
|
8010
|
+
fileUrl: string | null;
|
8011
|
+
status?: string | undefined;
|
8245
8012
|
}[];
|
8246
8013
|
}[];
|
8247
8014
|
company: {
|
@@ -8565,19 +8332,12 @@ export declare const ticketContract: {
|
|
8565
8332
|
createdAt: Date;
|
8566
8333
|
updatedAt: Date;
|
8567
8334
|
deletedAt: Date | null;
|
8568
|
-
|
8569
|
-
|
8570
|
-
|
8571
|
-
|
8572
|
-
|
8573
|
-
|
8574
|
-
fileName: string;
|
8575
|
-
fileKey: string;
|
8576
|
-
bucketName: string;
|
8577
|
-
fileSize: number;
|
8578
|
-
fileUrl: string | null;
|
8579
|
-
status?: string | undefined;
|
8580
|
-
};
|
8335
|
+
fileName: string;
|
8336
|
+
fileKey: string;
|
8337
|
+
bucketName: string;
|
8338
|
+
fileSize: number;
|
8339
|
+
fileUrl: string | null;
|
8340
|
+
status?: string | undefined;
|
8581
8341
|
}[];
|
8582
8342
|
}[];
|
8583
8343
|
company: {
|
@@ -8975,19 +8735,12 @@ export declare const ticketContract: {
|
|
8975
8735
|
createdAt: Date;
|
8976
8736
|
updatedAt: Date;
|
8977
8737
|
deletedAt: Date | null;
|
8978
|
-
|
8979
|
-
|
8980
|
-
|
8981
|
-
|
8982
|
-
|
8983
|
-
|
8984
|
-
fileName: string;
|
8985
|
-
fileKey: string;
|
8986
|
-
bucketName: string;
|
8987
|
-
fileSize: number;
|
8988
|
-
fileUrl: string | null;
|
8989
|
-
status?: string | undefined;
|
8990
|
-
};
|
8738
|
+
fileName: string;
|
8739
|
+
fileKey: string;
|
8740
|
+
bucketName: string;
|
8741
|
+
fileSize: number;
|
8742
|
+
fileUrl: string | null;
|
8743
|
+
status?: string | undefined;
|
8991
8744
|
}[];
|
8992
8745
|
}[];
|
8993
8746
|
company: {
|
@@ -9308,19 +9061,12 @@ export declare const ticketContract: {
|
|
9308
9061
|
createdAt: Date;
|
9309
9062
|
updatedAt: Date;
|
9310
9063
|
deletedAt: Date | null;
|
9311
|
-
|
9312
|
-
|
9313
|
-
|
9314
|
-
|
9315
|
-
|
9316
|
-
|
9317
|
-
fileName: string;
|
9318
|
-
fileKey: string;
|
9319
|
-
bucketName: string;
|
9320
|
-
fileSize: number;
|
9321
|
-
fileUrl: string | null;
|
9322
|
-
status?: string | undefined;
|
9323
|
-
};
|
9064
|
+
fileName: string;
|
9065
|
+
fileKey: string;
|
9066
|
+
bucketName: string;
|
9067
|
+
fileSize: number;
|
9068
|
+
fileUrl: string | null;
|
9069
|
+
status?: string | undefined;
|
9324
9070
|
}[];
|
9325
9071
|
}[];
|
9326
9072
|
company: {
|
@@ -9643,19 +9389,12 @@ export declare const ticketContract: {
|
|
9643
9389
|
createdAt: Date;
|
9644
9390
|
updatedAt: Date;
|
9645
9391
|
deletedAt: Date | null;
|
9646
|
-
|
9647
|
-
|
9648
|
-
|
9649
|
-
|
9650
|
-
|
9651
|
-
|
9652
|
-
fileName: string;
|
9653
|
-
fileKey: string;
|
9654
|
-
bucketName: string;
|
9655
|
-
fileSize: number;
|
9656
|
-
fileUrl: string | null;
|
9657
|
-
status?: string | undefined;
|
9658
|
-
};
|
9392
|
+
fileName: string;
|
9393
|
+
fileKey: string;
|
9394
|
+
bucketName: string;
|
9395
|
+
fileSize: number;
|
9396
|
+
fileUrl: string | null;
|
9397
|
+
status?: string | undefined;
|
9659
9398
|
}[];
|
9660
9399
|
}[];
|
9661
9400
|
company: {
|
@@ -9982,19 +9721,12 @@ export declare const ticketContract: {
|
|
9982
9721
|
createdAt: Date;
|
9983
9722
|
updatedAt: Date;
|
9984
9723
|
deletedAt: Date | null;
|
9985
|
-
|
9986
|
-
|
9987
|
-
|
9988
|
-
|
9989
|
-
|
9990
|
-
|
9991
|
-
fileName: string;
|
9992
|
-
fileKey: string;
|
9993
|
-
bucketName: string;
|
9994
|
-
fileSize: number;
|
9995
|
-
fileUrl: string | null;
|
9996
|
-
status?: string | undefined;
|
9997
|
-
};
|
9724
|
+
fileName: string;
|
9725
|
+
fileKey: string;
|
9726
|
+
bucketName: string;
|
9727
|
+
fileSize: number;
|
9728
|
+
fileUrl: string | null;
|
9729
|
+
status?: string | undefined;
|
9998
9730
|
}[];
|
9999
9731
|
}[];
|
10000
9732
|
company: {
|
@@ -10323,19 +10055,12 @@ export declare const ticketContract: {
|
|
10323
10055
|
createdAt: Date;
|
10324
10056
|
updatedAt: Date;
|
10325
10057
|
deletedAt: Date | null;
|
10326
|
-
|
10327
|
-
|
10328
|
-
|
10329
|
-
|
10330
|
-
|
10331
|
-
|
10332
|
-
fileName: string;
|
10333
|
-
fileKey: string;
|
10334
|
-
bucketName: string;
|
10335
|
-
fileSize: number;
|
10336
|
-
fileUrl: string | null;
|
10337
|
-
status?: string | undefined;
|
10338
|
-
};
|
10058
|
+
fileName: string;
|
10059
|
+
fileKey: string;
|
10060
|
+
bucketName: string;
|
10061
|
+
fileSize: number;
|
10062
|
+
fileUrl: string | null;
|
10063
|
+
status?: string | undefined;
|
10339
10064
|
}[];
|
10340
10065
|
}[];
|
10341
10066
|
company: {
|
@@ -10665,19 +10390,12 @@ export declare const ticketContract: {
|
|
10665
10390
|
createdAt: Date;
|
10666
10391
|
updatedAt: Date;
|
10667
10392
|
deletedAt: Date | null;
|
10668
|
-
|
10669
|
-
|
10670
|
-
|
10671
|
-
|
10672
|
-
|
10673
|
-
|
10674
|
-
fileName: string;
|
10675
|
-
fileKey: string;
|
10676
|
-
bucketName: string;
|
10677
|
-
fileSize: number;
|
10678
|
-
fileUrl: string | null;
|
10679
|
-
status?: string | undefined;
|
10680
|
-
};
|
10393
|
+
fileName: string;
|
10394
|
+
fileKey: string;
|
10395
|
+
bucketName: string;
|
10396
|
+
fileSize: number;
|
10397
|
+
fileUrl: string | null;
|
10398
|
+
status?: string | undefined;
|
10681
10399
|
}[];
|
10682
10400
|
}[];
|
10683
10401
|
company: {
|
@@ -12150,77 +11868,34 @@ export declare const ticketContract: {
|
|
12150
11868
|
createdAt: z.ZodDate;
|
12151
11869
|
updatedAt: z.ZodDate;
|
12152
11870
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
12153
|
-
|
12154
|
-
|
12155
|
-
|
12156
|
-
|
12157
|
-
|
12158
|
-
|
12159
|
-
bucketName: z.ZodString;
|
12160
|
-
fileName: z.ZodString;
|
12161
|
-
fileSize: z.ZodNumber;
|
12162
|
-
fileKey: z.ZodString;
|
12163
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
12164
|
-
status: z.ZodOptional<z.ZodString>;
|
12165
|
-
}, "strip", z.ZodTypeAny, {
|
12166
|
-
id: string;
|
12167
|
-
createdAt: Date;
|
12168
|
-
updatedAt: Date;
|
12169
|
-
deletedAt: Date | null;
|
12170
|
-
fileName: string;
|
12171
|
-
fileKey: string;
|
12172
|
-
bucketName: string;
|
12173
|
-
fileSize: number;
|
12174
|
-
fileUrl: string | null;
|
12175
|
-
status?: string | undefined;
|
12176
|
-
}, {
|
12177
|
-
id: string;
|
12178
|
-
createdAt: Date;
|
12179
|
-
updatedAt: Date;
|
12180
|
-
deletedAt: Date | null;
|
12181
|
-
fileName: string;
|
12182
|
-
fileKey: string;
|
12183
|
-
bucketName: string;
|
12184
|
-
fileSize: number;
|
12185
|
-
fileUrl: string | null;
|
12186
|
-
status?: string | undefined;
|
12187
|
-
}>;
|
11871
|
+
bucketName: z.ZodString;
|
11872
|
+
fileName: z.ZodString;
|
11873
|
+
fileSize: z.ZodNumber;
|
11874
|
+
fileKey: z.ZodString;
|
11875
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
11876
|
+
status: z.ZodOptional<z.ZodString>;
|
12188
11877
|
}, "strip", z.ZodTypeAny, {
|
12189
11878
|
id: string;
|
12190
11879
|
createdAt: Date;
|
12191
11880
|
updatedAt: Date;
|
12192
11881
|
deletedAt: Date | null;
|
12193
|
-
|
12194
|
-
|
12195
|
-
|
12196
|
-
|
12197
|
-
|
12198
|
-
|
12199
|
-
fileName: string;
|
12200
|
-
fileKey: string;
|
12201
|
-
bucketName: string;
|
12202
|
-
fileSize: number;
|
12203
|
-
fileUrl: string | null;
|
12204
|
-
status?: string | undefined;
|
12205
|
-
};
|
11882
|
+
fileName: string;
|
11883
|
+
fileKey: string;
|
11884
|
+
bucketName: string;
|
11885
|
+
fileSize: number;
|
11886
|
+
fileUrl: string | null;
|
11887
|
+
status?: string | undefined;
|
12206
11888
|
}, {
|
12207
11889
|
id: string;
|
12208
11890
|
createdAt: Date;
|
12209
11891
|
updatedAt: Date;
|
12210
11892
|
deletedAt: Date | null;
|
12211
|
-
|
12212
|
-
|
12213
|
-
|
12214
|
-
|
12215
|
-
|
12216
|
-
|
12217
|
-
fileName: string;
|
12218
|
-
fileKey: string;
|
12219
|
-
bucketName: string;
|
12220
|
-
fileSize: number;
|
12221
|
-
fileUrl: string | null;
|
12222
|
-
status?: string | undefined;
|
12223
|
-
};
|
11893
|
+
fileName: string;
|
11894
|
+
fileKey: string;
|
11895
|
+
bucketName: string;
|
11896
|
+
fileSize: number;
|
11897
|
+
fileUrl: string | null;
|
11898
|
+
status?: string | undefined;
|
12224
11899
|
}>, "many">;
|
12225
11900
|
}, "strip", z.ZodTypeAny, {
|
12226
11901
|
id: string;
|
@@ -12250,19 +11925,12 @@ export declare const ticketContract: {
|
|
12250
11925
|
createdAt: Date;
|
12251
11926
|
updatedAt: Date;
|
12252
11927
|
deletedAt: Date | null;
|
12253
|
-
|
12254
|
-
|
12255
|
-
|
12256
|
-
|
12257
|
-
|
12258
|
-
|
12259
|
-
fileName: string;
|
12260
|
-
fileKey: string;
|
12261
|
-
bucketName: string;
|
12262
|
-
fileSize: number;
|
12263
|
-
fileUrl: string | null;
|
12264
|
-
status?: string | undefined;
|
12265
|
-
};
|
11928
|
+
fileName: string;
|
11929
|
+
fileKey: string;
|
11930
|
+
bucketName: string;
|
11931
|
+
fileSize: number;
|
11932
|
+
fileUrl: string | null;
|
11933
|
+
status?: string | undefined;
|
12266
11934
|
}[];
|
12267
11935
|
}, {
|
12268
11936
|
id: string;
|
@@ -12292,19 +11960,12 @@ export declare const ticketContract: {
|
|
12292
11960
|
createdAt: Date;
|
12293
11961
|
updatedAt: Date;
|
12294
11962
|
deletedAt: Date | null;
|
12295
|
-
|
12296
|
-
|
12297
|
-
|
12298
|
-
|
12299
|
-
|
12300
|
-
|
12301
|
-
fileName: string;
|
12302
|
-
fileKey: string;
|
12303
|
-
bucketName: string;
|
12304
|
-
fileSize: number;
|
12305
|
-
fileUrl: string | null;
|
12306
|
-
status?: string | undefined;
|
12307
|
-
};
|
11963
|
+
fileName: string;
|
11964
|
+
fileKey: string;
|
11965
|
+
bucketName: string;
|
11966
|
+
fileSize: number;
|
11967
|
+
fileUrl: string | null;
|
11968
|
+
status?: string | undefined;
|
12308
11969
|
}[];
|
12309
11970
|
}>, "many">;
|
12310
11971
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -12447,19 +12108,12 @@ export declare const ticketContract: {
|
|
12447
12108
|
createdAt: Date;
|
12448
12109
|
updatedAt: Date;
|
12449
12110
|
deletedAt: Date | null;
|
12450
|
-
|
12451
|
-
|
12452
|
-
|
12453
|
-
|
12454
|
-
|
12455
|
-
|
12456
|
-
fileName: string;
|
12457
|
-
fileKey: string;
|
12458
|
-
bucketName: string;
|
12459
|
-
fileSize: number;
|
12460
|
-
fileUrl: string | null;
|
12461
|
-
status?: string | undefined;
|
12462
|
-
};
|
12111
|
+
fileName: string;
|
12112
|
+
fileKey: string;
|
12113
|
+
bucketName: string;
|
12114
|
+
fileSize: number;
|
12115
|
+
fileUrl: string | null;
|
12116
|
+
status?: string | undefined;
|
12463
12117
|
}[];
|
12464
12118
|
}[];
|
12465
12119
|
company: {
|
@@ -12550,19 +12204,12 @@ export declare const ticketContract: {
|
|
12550
12204
|
createdAt: Date;
|
12551
12205
|
updatedAt: Date;
|
12552
12206
|
deletedAt: Date | null;
|
12553
|
-
|
12554
|
-
|
12555
|
-
|
12556
|
-
|
12557
|
-
|
12558
|
-
|
12559
|
-
fileName: string;
|
12560
|
-
fileKey: string;
|
12561
|
-
bucketName: string;
|
12562
|
-
fileSize: number;
|
12563
|
-
fileUrl: string | null;
|
12564
|
-
status?: string | undefined;
|
12565
|
-
};
|
12207
|
+
fileName: string;
|
12208
|
+
fileKey: string;
|
12209
|
+
bucketName: string;
|
12210
|
+
fileSize: number;
|
12211
|
+
fileUrl: string | null;
|
12212
|
+
status?: string | undefined;
|
12566
12213
|
}[];
|
12567
12214
|
}[];
|
12568
12215
|
company: {
|
@@ -13073,21 +12720,14 @@ export declare const ticketContract: {
|
|
13073
12720
|
uploads: {
|
13074
12721
|
id: string;
|
13075
12722
|
createdAt: Date;
|
13076
|
-
updatedAt: Date;
|
13077
|
-
deletedAt: Date | null;
|
13078
|
-
|
13079
|
-
|
13080
|
-
|
13081
|
-
|
13082
|
-
|
13083
|
-
|
13084
|
-
fileName: string;
|
13085
|
-
fileKey: string;
|
13086
|
-
bucketName: string;
|
13087
|
-
fileSize: number;
|
13088
|
-
fileUrl: string | null;
|
13089
|
-
status?: string | undefined;
|
13090
|
-
};
|
12723
|
+
updatedAt: Date;
|
12724
|
+
deletedAt: Date | null;
|
12725
|
+
fileName: string;
|
12726
|
+
fileKey: string;
|
12727
|
+
bucketName: string;
|
12728
|
+
fileSize: number;
|
12729
|
+
fileUrl: string | null;
|
12730
|
+
status?: string | undefined;
|
13091
12731
|
}[];
|
13092
12732
|
}[];
|
13093
12733
|
company: {
|
@@ -13408,19 +13048,12 @@ export declare const ticketContract: {
|
|
13408
13048
|
createdAt: Date;
|
13409
13049
|
updatedAt: Date;
|
13410
13050
|
deletedAt: Date | null;
|
13411
|
-
|
13412
|
-
|
13413
|
-
|
13414
|
-
|
13415
|
-
|
13416
|
-
|
13417
|
-
fileName: string;
|
13418
|
-
fileKey: string;
|
13419
|
-
bucketName: string;
|
13420
|
-
fileSize: number;
|
13421
|
-
fileUrl: string | null;
|
13422
|
-
status?: string | undefined;
|
13423
|
-
};
|
13051
|
+
fileName: string;
|
13052
|
+
fileKey: string;
|
13053
|
+
bucketName: string;
|
13054
|
+
fileSize: number;
|
13055
|
+
fileUrl: string | null;
|
13056
|
+
status?: string | undefined;
|
13424
13057
|
}[];
|
13425
13058
|
}[];
|
13426
13059
|
company: {
|
@@ -13743,19 +13376,12 @@ export declare const ticketContract: {
|
|
13743
13376
|
createdAt: Date;
|
13744
13377
|
updatedAt: Date;
|
13745
13378
|
deletedAt: Date | null;
|
13746
|
-
|
13747
|
-
|
13748
|
-
|
13749
|
-
|
13750
|
-
|
13751
|
-
|
13752
|
-
fileName: string;
|
13753
|
-
fileKey: string;
|
13754
|
-
bucketName: string;
|
13755
|
-
fileSize: number;
|
13756
|
-
fileUrl: string | null;
|
13757
|
-
status?: string | undefined;
|
13758
|
-
};
|
13379
|
+
fileName: string;
|
13380
|
+
fileKey: string;
|
13381
|
+
bucketName: string;
|
13382
|
+
fileSize: number;
|
13383
|
+
fileUrl: string | null;
|
13384
|
+
status?: string | undefined;
|
13759
13385
|
}[];
|
13760
13386
|
}[];
|
13761
13387
|
company: {
|
@@ -14079,19 +13705,12 @@ export declare const ticketContract: {
|
|
14079
13705
|
createdAt: Date;
|
14080
13706
|
updatedAt: Date;
|
14081
13707
|
deletedAt: Date | null;
|
14082
|
-
|
14083
|
-
|
14084
|
-
|
14085
|
-
|
14086
|
-
|
14087
|
-
|
14088
|
-
fileName: string;
|
14089
|
-
fileKey: string;
|
14090
|
-
bucketName: string;
|
14091
|
-
fileSize: number;
|
14092
|
-
fileUrl: string | null;
|
14093
|
-
status?: string | undefined;
|
14094
|
-
};
|
13708
|
+
fileName: string;
|
13709
|
+
fileKey: string;
|
13710
|
+
bucketName: string;
|
13711
|
+
fileSize: number;
|
13712
|
+
fileUrl: string | null;
|
13713
|
+
status?: string | undefined;
|
14095
13714
|
}[];
|
14096
13715
|
}[];
|
14097
13716
|
company: {
|
@@ -16171,77 +15790,34 @@ export declare const ticketContract: {
|
|
16171
15790
|
createdAt: z.ZodDate;
|
16172
15791
|
updatedAt: z.ZodDate;
|
16173
15792
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
16174
|
-
|
16175
|
-
|
16176
|
-
|
16177
|
-
|
16178
|
-
|
16179
|
-
|
16180
|
-
bucketName: z.ZodString;
|
16181
|
-
fileName: z.ZodString;
|
16182
|
-
fileSize: z.ZodNumber;
|
16183
|
-
fileKey: z.ZodString;
|
16184
|
-
fileUrl: z.ZodNullable<z.ZodString>;
|
16185
|
-
status: z.ZodOptional<z.ZodString>;
|
16186
|
-
}, "strip", z.ZodTypeAny, {
|
16187
|
-
id: string;
|
16188
|
-
createdAt: Date;
|
16189
|
-
updatedAt: Date;
|
16190
|
-
deletedAt: Date | null;
|
16191
|
-
fileName: string;
|
16192
|
-
fileKey: string;
|
16193
|
-
bucketName: string;
|
16194
|
-
fileSize: number;
|
16195
|
-
fileUrl: string | null;
|
16196
|
-
status?: string | undefined;
|
16197
|
-
}, {
|
16198
|
-
id: string;
|
16199
|
-
createdAt: Date;
|
16200
|
-
updatedAt: Date;
|
16201
|
-
deletedAt: Date | null;
|
16202
|
-
fileName: string;
|
16203
|
-
fileKey: string;
|
16204
|
-
bucketName: string;
|
16205
|
-
fileSize: number;
|
16206
|
-
fileUrl: string | null;
|
16207
|
-
status?: string | undefined;
|
16208
|
-
}>;
|
15793
|
+
bucketName: z.ZodString;
|
15794
|
+
fileName: z.ZodString;
|
15795
|
+
fileSize: z.ZodNumber;
|
15796
|
+
fileKey: z.ZodString;
|
15797
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
15798
|
+
status: z.ZodOptional<z.ZodString>;
|
16209
15799
|
}, "strip", z.ZodTypeAny, {
|
16210
15800
|
id: string;
|
16211
15801
|
createdAt: Date;
|
16212
15802
|
updatedAt: Date;
|
16213
15803
|
deletedAt: Date | null;
|
16214
|
-
|
16215
|
-
|
16216
|
-
|
16217
|
-
|
16218
|
-
|
16219
|
-
|
16220
|
-
fileName: string;
|
16221
|
-
fileKey: string;
|
16222
|
-
bucketName: string;
|
16223
|
-
fileSize: number;
|
16224
|
-
fileUrl: string | null;
|
16225
|
-
status?: string | undefined;
|
16226
|
-
};
|
15804
|
+
fileName: string;
|
15805
|
+
fileKey: string;
|
15806
|
+
bucketName: string;
|
15807
|
+
fileSize: number;
|
15808
|
+
fileUrl: string | null;
|
15809
|
+
status?: string | undefined;
|
16227
15810
|
}, {
|
16228
15811
|
id: string;
|
16229
15812
|
createdAt: Date;
|
16230
15813
|
updatedAt: Date;
|
16231
15814
|
deletedAt: Date | null;
|
16232
|
-
|
16233
|
-
|
16234
|
-
|
16235
|
-
|
16236
|
-
|
16237
|
-
|
16238
|
-
fileName: string;
|
16239
|
-
fileKey: string;
|
16240
|
-
bucketName: string;
|
16241
|
-
fileSize: number;
|
16242
|
-
fileUrl: string | null;
|
16243
|
-
status?: string | undefined;
|
16244
|
-
};
|
15815
|
+
fileName: string;
|
15816
|
+
fileKey: string;
|
15817
|
+
bucketName: string;
|
15818
|
+
fileSize: number;
|
15819
|
+
fileUrl: string | null;
|
15820
|
+
status?: string | undefined;
|
16245
15821
|
}>, "many">;
|
16246
15822
|
}, "strip", z.ZodTypeAny, {
|
16247
15823
|
id: string;
|
@@ -16271,19 +15847,12 @@ export declare const ticketContract: {
|
|
16271
15847
|
createdAt: Date;
|
16272
15848
|
updatedAt: Date;
|
16273
15849
|
deletedAt: Date | null;
|
16274
|
-
|
16275
|
-
|
16276
|
-
|
16277
|
-
|
16278
|
-
|
16279
|
-
|
16280
|
-
fileName: string;
|
16281
|
-
fileKey: string;
|
16282
|
-
bucketName: string;
|
16283
|
-
fileSize: number;
|
16284
|
-
fileUrl: string | null;
|
16285
|
-
status?: string | undefined;
|
16286
|
-
};
|
15850
|
+
fileName: string;
|
15851
|
+
fileKey: string;
|
15852
|
+
bucketName: string;
|
15853
|
+
fileSize: number;
|
15854
|
+
fileUrl: string | null;
|
15855
|
+
status?: string | undefined;
|
16287
15856
|
}[];
|
16288
15857
|
}, {
|
16289
15858
|
id: string;
|
@@ -16313,19 +15882,12 @@ export declare const ticketContract: {
|
|
16313
15882
|
createdAt: Date;
|
16314
15883
|
updatedAt: Date;
|
16315
15884
|
deletedAt: Date | null;
|
16316
|
-
|
16317
|
-
|
16318
|
-
|
16319
|
-
|
16320
|
-
|
16321
|
-
|
16322
|
-
fileName: string;
|
16323
|
-
fileKey: string;
|
16324
|
-
bucketName: string;
|
16325
|
-
fileSize: number;
|
16326
|
-
fileUrl: string | null;
|
16327
|
-
status?: string | undefined;
|
16328
|
-
};
|
15885
|
+
fileName: string;
|
15886
|
+
fileKey: string;
|
15887
|
+
bucketName: string;
|
15888
|
+
fileSize: number;
|
15889
|
+
fileUrl: string | null;
|
15890
|
+
status?: string | undefined;
|
16329
15891
|
}[];
|
16330
15892
|
}>, "many">;
|
16331
15893
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -16468,19 +16030,12 @@ export declare const ticketContract: {
|
|
16468
16030
|
createdAt: Date;
|
16469
16031
|
updatedAt: Date;
|
16470
16032
|
deletedAt: Date | null;
|
16471
|
-
|
16472
|
-
|
16473
|
-
|
16474
|
-
|
16475
|
-
|
16476
|
-
|
16477
|
-
fileName: string;
|
16478
|
-
fileKey: string;
|
16479
|
-
bucketName: string;
|
16480
|
-
fileSize: number;
|
16481
|
-
fileUrl: string | null;
|
16482
|
-
status?: string | undefined;
|
16483
|
-
};
|
16033
|
+
fileName: string;
|
16034
|
+
fileKey: string;
|
16035
|
+
bucketName: string;
|
16036
|
+
fileSize: number;
|
16037
|
+
fileUrl: string | null;
|
16038
|
+
status?: string | undefined;
|
16484
16039
|
}[];
|
16485
16040
|
}[];
|
16486
16041
|
company: {
|
@@ -16571,19 +16126,12 @@ export declare const ticketContract: {
|
|
16571
16126
|
createdAt: Date;
|
16572
16127
|
updatedAt: Date;
|
16573
16128
|
deletedAt: Date | null;
|
16574
|
-
|
16575
|
-
|
16576
|
-
|
16577
|
-
|
16578
|
-
|
16579
|
-
|
16580
|
-
fileName: string;
|
16581
|
-
fileKey: string;
|
16582
|
-
bucketName: string;
|
16583
|
-
fileSize: number;
|
16584
|
-
fileUrl: string | null;
|
16585
|
-
status?: string | undefined;
|
16586
|
-
};
|
16129
|
+
fileName: string;
|
16130
|
+
fileKey: string;
|
16131
|
+
bucketName: string;
|
16132
|
+
fileSize: number;
|
16133
|
+
fileUrl: string | null;
|
16134
|
+
status?: string | undefined;
|
16587
16135
|
}[];
|
16588
16136
|
}[];
|
16589
16137
|
company: {
|
@@ -17096,19 +16644,12 @@ export declare const ticketContract: {
|
|
17096
16644
|
createdAt: Date;
|
17097
16645
|
updatedAt: Date;
|
17098
16646
|
deletedAt: Date | null;
|
17099
|
-
|
17100
|
-
|
17101
|
-
|
17102
|
-
|
17103
|
-
|
17104
|
-
|
17105
|
-
fileName: string;
|
17106
|
-
fileKey: string;
|
17107
|
-
bucketName: string;
|
17108
|
-
fileSize: number;
|
17109
|
-
fileUrl: string | null;
|
17110
|
-
status?: string | undefined;
|
17111
|
-
};
|
16647
|
+
fileName: string;
|
16648
|
+
fileKey: string;
|
16649
|
+
bucketName: string;
|
16650
|
+
fileSize: number;
|
16651
|
+
fileUrl: string | null;
|
16652
|
+
status?: string | undefined;
|
17112
16653
|
}[];
|
17113
16654
|
}[];
|
17114
16655
|
company: {
|
@@ -17429,19 +16970,12 @@ export declare const ticketContract: {
|
|
17429
16970
|
createdAt: Date;
|
17430
16971
|
updatedAt: Date;
|
17431
16972
|
deletedAt: Date | null;
|
17432
|
-
|
17433
|
-
|
17434
|
-
|
17435
|
-
|
17436
|
-
|
17437
|
-
|
17438
|
-
fileName: string;
|
17439
|
-
fileKey: string;
|
17440
|
-
bucketName: string;
|
17441
|
-
fileSize: number;
|
17442
|
-
fileUrl: string | null;
|
17443
|
-
status?: string | undefined;
|
17444
|
-
};
|
16973
|
+
fileName: string;
|
16974
|
+
fileKey: string;
|
16975
|
+
bucketName: string;
|
16976
|
+
fileSize: number;
|
16977
|
+
fileUrl: string | null;
|
16978
|
+
status?: string | undefined;
|
17445
16979
|
}[];
|
17446
16980
|
}[];
|
17447
16981
|
company: {
|
@@ -17764,19 +17298,12 @@ export declare const ticketContract: {
|
|
17764
17298
|
createdAt: Date;
|
17765
17299
|
updatedAt: Date;
|
17766
17300
|
deletedAt: Date | null;
|
17767
|
-
|
17768
|
-
|
17769
|
-
|
17770
|
-
|
17771
|
-
|
17772
|
-
|
17773
|
-
fileName: string;
|
17774
|
-
fileKey: string;
|
17775
|
-
bucketName: string;
|
17776
|
-
fileSize: number;
|
17777
|
-
fileUrl: string | null;
|
17778
|
-
status?: string | undefined;
|
17779
|
-
};
|
17301
|
+
fileName: string;
|
17302
|
+
fileKey: string;
|
17303
|
+
bucketName: string;
|
17304
|
+
fileSize: number;
|
17305
|
+
fileUrl: string | null;
|
17306
|
+
status?: string | undefined;
|
17780
17307
|
}[];
|
17781
17308
|
}[];
|
17782
17309
|
company: {
|
@@ -18100,19 +17627,12 @@ export declare const ticketContract: {
|
|
18100
17627
|
createdAt: Date;
|
18101
17628
|
updatedAt: Date;
|
18102
17629
|
deletedAt: Date | null;
|
18103
|
-
|
18104
|
-
|
18105
|
-
|
18106
|
-
|
18107
|
-
|
18108
|
-
|
18109
|
-
fileName: string;
|
18110
|
-
fileKey: string;
|
18111
|
-
bucketName: string;
|
18112
|
-
fileSize: number;
|
18113
|
-
fileUrl: string | null;
|
18114
|
-
status?: string | undefined;
|
18115
|
-
};
|
17630
|
+
fileName: string;
|
17631
|
+
fileKey: string;
|
17632
|
+
bucketName: string;
|
17633
|
+
fileSize: number;
|
17634
|
+
fileUrl: string | null;
|
17635
|
+
status?: string | undefined;
|
18116
17636
|
}[];
|
18117
17637
|
}[];
|
18118
17638
|
company: {
|