@kl1/contracts 1.1.39-uat → 1.1.41-uat
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 +2215 -2197
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2214 -2196
- package/dist/index.mjs.map +1 -1
- package/dist/src/botpress/index.d.ts +538 -0
- package/dist/src/botpress/index.d.ts.map +1 -0
- package/dist/src/botpress/schema.d.ts +81 -0
- package/dist/src/botpress/schema.d.ts.map +1 -0
- package/dist/src/botpress/validation.d.ts +220 -0
- package/dist/src/botpress/validation.d.ts.map +1 -0
- package/dist/src/business-calendar/index.d.ts +21 -0
- package/dist/src/business-calendar/index.d.ts.map +1 -1
- package/dist/src/business-calendar/schema.d.ts +8 -0
- package/dist/src/business-calendar/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +34445 -34443
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +50 -50
- package/dist/src/chat/validation.d.ts +46 -46
- package/dist/src/comment/index.d.ts +68 -68
- package/dist/src/comment/schema.d.ts +20 -20
- package/dist/src/contact/index.d.ts +79 -79
- package/dist/src/contact/schema.d.ts +12 -12
- package/dist/src/contact/validation.d.ts +49 -49
- package/dist/src/contract.d.ts +1238 -57196
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/contract2.d.ts +2 -0
- package/dist/src/contract2.d.ts.map +1 -0
- package/dist/src/cx-log/index.d.ts +106 -49
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +40 -40
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/instagram/index.d.ts +31 -31
- package/dist/src/line/index.d.ts +31 -31
- package/dist/src/mail/mail-contract.d.ts +7 -7
- package/dist/src/mail/room-contract.d.ts +7 -7
- package/dist/src/mail/schemas/room.schema.d.ts +5 -5
- package/dist/src/messenger/index.d.ts +31 -31
- package/dist/src/messenger/validation.d.ts +11 -11
- package/dist/src/public-api/index.d.ts +59 -59
- package/dist/src/public-api/schema.d.ts +12 -12
- package/dist/src/public-api/validation.d.ts +19 -19
- package/dist/src/snippet/index.d.ts +105 -105
- package/dist/src/snippet/schema.d.ts +40 -40
- package/dist/src/telephony-cdr/call-report.schema.d.ts +36 -10
- package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +54 -54
- package/dist/src/telephony-cdr/schema.d.ts +14 -14
- package/dist/src/ticket/index.d.ts +111 -111
- package/dist/src/ticket/schema.d.ts +21 -21
- package/dist/src/upload/schema.d.ts +3 -3
- package/dist/src/viber/index.d.ts +31 -31
- package/dist/src/webchat/index.d.ts +32 -34
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +36 -26
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/index.d.ts +3 -0
- package/dist/src/wrap-up-form/index.d.ts.map +1 -1
- package/dist/src/wrap-up-form/validation.d.ts +3 -0
- package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
- package/package.json +1 -1
@@ -701,9 +701,10 @@ export declare const ticketContract: {
|
|
701
701
|
fileSize: z.ZodNumber;
|
702
702
|
fileKey: z.ZodString;
|
703
703
|
fileUrl: z.ZodNullable<z.ZodString>;
|
704
|
-
status: z.
|
704
|
+
status: z.ZodNullable<z.ZodString>;
|
705
705
|
}, "strip", z.ZodTypeAny, {
|
706
706
|
id: string;
|
707
|
+
status: string | null;
|
707
708
|
createdAt: Date;
|
708
709
|
updatedAt: Date;
|
709
710
|
deletedAt: Date | null;
|
@@ -712,9 +713,9 @@ export declare const ticketContract: {
|
|
712
713
|
bucketName: string;
|
713
714
|
fileSize: number;
|
714
715
|
fileUrl: string | null;
|
715
|
-
status?: string | undefined;
|
716
716
|
}, {
|
717
717
|
id: string;
|
718
|
+
status: string | null;
|
718
719
|
createdAt: Date;
|
719
720
|
updatedAt: Date;
|
720
721
|
deletedAt: Date | null;
|
@@ -723,7 +724,6 @@ export declare const ticketContract: {
|
|
723
724
|
bucketName: string;
|
724
725
|
fileSize: number;
|
725
726
|
fileUrl: string | null;
|
726
|
-
status?: string | undefined;
|
727
727
|
}>, "many">;
|
728
728
|
}, "strip", z.ZodTypeAny, {
|
729
729
|
id: string;
|
@@ -750,6 +750,7 @@ export declare const ticketContract: {
|
|
750
750
|
dateValue: Date | null;
|
751
751
|
uploads: {
|
752
752
|
id: string;
|
753
|
+
status: string | null;
|
753
754
|
createdAt: Date;
|
754
755
|
updatedAt: Date;
|
755
756
|
deletedAt: Date | null;
|
@@ -758,7 +759,6 @@ export declare const ticketContract: {
|
|
758
759
|
bucketName: string;
|
759
760
|
fileSize: number;
|
760
761
|
fileUrl: string | null;
|
761
|
-
status?: string | undefined;
|
762
762
|
}[];
|
763
763
|
}, {
|
764
764
|
id: string;
|
@@ -785,6 +785,7 @@ export declare const ticketContract: {
|
|
785
785
|
dateValue: Date | null;
|
786
786
|
uploads: {
|
787
787
|
id: string;
|
788
|
+
status: string | null;
|
788
789
|
createdAt: Date;
|
789
790
|
updatedAt: Date;
|
790
791
|
deletedAt: Date | null;
|
@@ -793,7 +794,6 @@ export declare const ticketContract: {
|
|
793
794
|
bucketName: string;
|
794
795
|
fileSize: number;
|
795
796
|
fileUrl: string | null;
|
796
|
-
status?: string | undefined;
|
797
797
|
}[];
|
798
798
|
}>, "many">;
|
799
799
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -1210,9 +1210,10 @@ export declare const ticketContract: {
|
|
1210
1210
|
fileSize: z.ZodNumber;
|
1211
1211
|
fileKey: z.ZodString;
|
1212
1212
|
fileUrl: z.ZodNullable<z.ZodString>;
|
1213
|
-
status: z.
|
1213
|
+
status: z.ZodNullable<z.ZodString>;
|
1214
1214
|
}, "strip", z.ZodTypeAny, {
|
1215
1215
|
id: string;
|
1216
|
+
status: string | null;
|
1216
1217
|
createdAt: Date;
|
1217
1218
|
updatedAt: Date;
|
1218
1219
|
deletedAt: Date | null;
|
@@ -1221,9 +1222,9 @@ export declare const ticketContract: {
|
|
1221
1222
|
bucketName: string;
|
1222
1223
|
fileSize: number;
|
1223
1224
|
fileUrl: string | null;
|
1224
|
-
status?: string | undefined;
|
1225
1225
|
}, {
|
1226
1226
|
id: string;
|
1227
|
+
status: string | null;
|
1227
1228
|
createdAt: Date;
|
1228
1229
|
updatedAt: Date;
|
1229
1230
|
deletedAt: Date | null;
|
@@ -1232,7 +1233,6 @@ export declare const ticketContract: {
|
|
1232
1233
|
bucketName: string;
|
1233
1234
|
fileSize: number;
|
1234
1235
|
fileUrl: string | null;
|
1235
|
-
status?: string | undefined;
|
1236
1236
|
}>, "many">;
|
1237
1237
|
}, "strip", z.ZodTypeAny, {
|
1238
1238
|
id: string;
|
@@ -1259,6 +1259,7 @@ export declare const ticketContract: {
|
|
1259
1259
|
dateValue: Date | null;
|
1260
1260
|
uploads: {
|
1261
1261
|
id: string;
|
1262
|
+
status: string | null;
|
1262
1263
|
createdAt: Date;
|
1263
1264
|
updatedAt: Date;
|
1264
1265
|
deletedAt: Date | null;
|
@@ -1267,7 +1268,6 @@ export declare const ticketContract: {
|
|
1267
1268
|
bucketName: string;
|
1268
1269
|
fileSize: number;
|
1269
1270
|
fileUrl: string | null;
|
1270
|
-
status?: string | undefined;
|
1271
1271
|
}[];
|
1272
1272
|
}, {
|
1273
1273
|
id: string;
|
@@ -1294,6 +1294,7 @@ export declare const ticketContract: {
|
|
1294
1294
|
dateValue: Date | null;
|
1295
1295
|
uploads: {
|
1296
1296
|
id: string;
|
1297
|
+
status: string | null;
|
1297
1298
|
createdAt: Date;
|
1298
1299
|
updatedAt: Date;
|
1299
1300
|
deletedAt: Date | null;
|
@@ -1302,7 +1303,6 @@ export declare const ticketContract: {
|
|
1302
1303
|
bucketName: string;
|
1303
1304
|
fileSize: number;
|
1304
1305
|
fileUrl: string | null;
|
1305
|
-
status?: string | undefined;
|
1306
1306
|
}[];
|
1307
1307
|
}>, "many">;
|
1308
1308
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -1442,6 +1442,7 @@ export declare const ticketContract: {
|
|
1442
1442
|
dateValue: Date | null;
|
1443
1443
|
uploads: {
|
1444
1444
|
id: string;
|
1445
|
+
status: string | null;
|
1445
1446
|
createdAt: Date;
|
1446
1447
|
updatedAt: Date;
|
1447
1448
|
deletedAt: Date | null;
|
@@ -1450,7 +1451,6 @@ export declare const ticketContract: {
|
|
1450
1451
|
bucketName: string;
|
1451
1452
|
fileSize: number;
|
1452
1453
|
fileUrl: string | null;
|
1453
|
-
status?: string | undefined;
|
1454
1454
|
}[];
|
1455
1455
|
}[];
|
1456
1456
|
company: {
|
@@ -1538,6 +1538,7 @@ export declare const ticketContract: {
|
|
1538
1538
|
dateValue: Date | null;
|
1539
1539
|
uploads: {
|
1540
1540
|
id: string;
|
1541
|
+
status: string | null;
|
1541
1542
|
createdAt: Date;
|
1542
1543
|
updatedAt: Date;
|
1543
1544
|
deletedAt: Date | null;
|
@@ -1546,7 +1547,6 @@ export declare const ticketContract: {
|
|
1546
1547
|
bucketName: string;
|
1547
1548
|
fileSize: number;
|
1548
1549
|
fileUrl: string | null;
|
1549
|
-
status?: string | undefined;
|
1550
1550
|
}[];
|
1551
1551
|
}[];
|
1552
1552
|
company: {
|
@@ -2020,6 +2020,7 @@ export declare const ticketContract: {
|
|
2020
2020
|
dateValue: Date | null;
|
2021
2021
|
uploads: {
|
2022
2022
|
id: string;
|
2023
|
+
status: string | null;
|
2023
2024
|
createdAt: Date;
|
2024
2025
|
updatedAt: Date;
|
2025
2026
|
deletedAt: Date | null;
|
@@ -2028,7 +2029,6 @@ export declare const ticketContract: {
|
|
2028
2029
|
bucketName: string;
|
2029
2030
|
fileSize: number;
|
2030
2031
|
fileUrl: string | null;
|
2031
|
-
status?: string | undefined;
|
2032
2032
|
}[];
|
2033
2033
|
}[];
|
2034
2034
|
company: {
|
@@ -2109,6 +2109,7 @@ export declare const ticketContract: {
|
|
2109
2109
|
dateValue: Date | null;
|
2110
2110
|
uploads: {
|
2111
2111
|
id: string;
|
2112
|
+
status: string | null;
|
2112
2113
|
createdAt: Date;
|
2113
2114
|
updatedAt: Date;
|
2114
2115
|
deletedAt: Date | null;
|
@@ -2117,7 +2118,6 @@ export declare const ticketContract: {
|
|
2117
2118
|
bucketName: string;
|
2118
2119
|
fileSize: number;
|
2119
2120
|
fileUrl: string | null;
|
2120
|
-
status?: string | undefined;
|
2121
2121
|
}[];
|
2122
2122
|
}[];
|
2123
2123
|
tags: {
|
@@ -2346,6 +2346,7 @@ export declare const ticketContract: {
|
|
2346
2346
|
dateValue: Date | null;
|
2347
2347
|
uploads: {
|
2348
2348
|
id: string;
|
2349
|
+
status: string | null;
|
2349
2350
|
createdAt: Date;
|
2350
2351
|
updatedAt: Date;
|
2351
2352
|
deletedAt: Date | null;
|
@@ -2354,7 +2355,6 @@ export declare const ticketContract: {
|
|
2354
2355
|
bucketName: string;
|
2355
2356
|
fileSize: number;
|
2356
2357
|
fileUrl: string | null;
|
2357
|
-
status?: string | undefined;
|
2358
2358
|
}[];
|
2359
2359
|
}[];
|
2360
2360
|
company: {
|
@@ -2435,6 +2435,7 @@ export declare const ticketContract: {
|
|
2435
2435
|
dateValue: Date | null;
|
2436
2436
|
uploads: {
|
2437
2437
|
id: string;
|
2438
|
+
status: string | null;
|
2438
2439
|
createdAt: Date;
|
2439
2440
|
updatedAt: Date;
|
2440
2441
|
deletedAt: Date | null;
|
@@ -2443,7 +2444,6 @@ export declare const ticketContract: {
|
|
2443
2444
|
bucketName: string;
|
2444
2445
|
fileSize: number;
|
2445
2446
|
fileUrl: string | null;
|
2446
|
-
status?: string | undefined;
|
2447
2447
|
}[];
|
2448
2448
|
}[];
|
2449
2449
|
tags: {
|
@@ -2674,6 +2674,7 @@ export declare const ticketContract: {
|
|
2674
2674
|
dateValue: Date | null;
|
2675
2675
|
uploads: {
|
2676
2676
|
id: string;
|
2677
|
+
status: string | null;
|
2677
2678
|
createdAt: Date;
|
2678
2679
|
updatedAt: Date;
|
2679
2680
|
deletedAt: Date | null;
|
@@ -2682,7 +2683,6 @@ export declare const ticketContract: {
|
|
2682
2683
|
bucketName: string;
|
2683
2684
|
fileSize: number;
|
2684
2685
|
fileUrl: string | null;
|
2685
|
-
status?: string | undefined;
|
2686
2686
|
}[];
|
2687
2687
|
}[];
|
2688
2688
|
company: {
|
@@ -2763,6 +2763,7 @@ export declare const ticketContract: {
|
|
2763
2763
|
dateValue: Date | null;
|
2764
2764
|
uploads: {
|
2765
2765
|
id: string;
|
2766
|
+
status: string | null;
|
2766
2767
|
createdAt: Date;
|
2767
2768
|
updatedAt: Date;
|
2768
2769
|
deletedAt: Date | null;
|
@@ -2771,7 +2772,6 @@ export declare const ticketContract: {
|
|
2771
2772
|
bucketName: string;
|
2772
2773
|
fileSize: number;
|
2773
2774
|
fileUrl: string | null;
|
2774
|
-
status?: string | undefined;
|
2775
2775
|
}[];
|
2776
2776
|
}[];
|
2777
2777
|
tags: {
|
@@ -3003,6 +3003,7 @@ export declare const ticketContract: {
|
|
3003
3003
|
dateValue: Date | null;
|
3004
3004
|
uploads: {
|
3005
3005
|
id: string;
|
3006
|
+
status: string | null;
|
3006
3007
|
createdAt: Date;
|
3007
3008
|
updatedAt: Date;
|
3008
3009
|
deletedAt: Date | null;
|
@@ -3011,7 +3012,6 @@ export declare const ticketContract: {
|
|
3011
3012
|
bucketName: string;
|
3012
3013
|
fileSize: number;
|
3013
3014
|
fileUrl: string | null;
|
3014
|
-
status?: string | undefined;
|
3015
3015
|
}[];
|
3016
3016
|
}[];
|
3017
3017
|
company: {
|
@@ -3092,6 +3092,7 @@ export declare const ticketContract: {
|
|
3092
3092
|
dateValue: Date | null;
|
3093
3093
|
uploads: {
|
3094
3094
|
id: string;
|
3095
|
+
status: string | null;
|
3095
3096
|
createdAt: Date;
|
3096
3097
|
updatedAt: Date;
|
3097
3098
|
deletedAt: Date | null;
|
@@ -3100,7 +3101,6 @@ export declare const ticketContract: {
|
|
3100
3101
|
bucketName: string;
|
3101
3102
|
fileSize: number;
|
3102
3103
|
fileUrl: string | null;
|
3103
|
-
status?: string | undefined;
|
3104
3104
|
}[];
|
3105
3105
|
}[];
|
3106
3106
|
tags: {
|
@@ -3485,6 +3485,7 @@ export declare const ticketContract: {
|
|
3485
3485
|
dateValue: Date | null;
|
3486
3486
|
uploads: {
|
3487
3487
|
id: string;
|
3488
|
+
status: string | null;
|
3488
3489
|
createdAt: Date;
|
3489
3490
|
updatedAt: Date;
|
3490
3491
|
deletedAt: Date | null;
|
@@ -3493,7 +3494,6 @@ export declare const ticketContract: {
|
|
3493
3494
|
bucketName: string;
|
3494
3495
|
fileSize: number;
|
3495
3496
|
fileUrl: string | null;
|
3496
|
-
status?: string | undefined;
|
3497
3497
|
}[];
|
3498
3498
|
}[];
|
3499
3499
|
company: {
|
@@ -3574,6 +3574,7 @@ export declare const ticketContract: {
|
|
3574
3574
|
dateValue: Date | null;
|
3575
3575
|
uploads: {
|
3576
3576
|
id: string;
|
3577
|
+
status: string | null;
|
3577
3578
|
createdAt: Date;
|
3578
3579
|
updatedAt: Date;
|
3579
3580
|
deletedAt: Date | null;
|
@@ -3582,7 +3583,6 @@ export declare const ticketContract: {
|
|
3582
3583
|
bucketName: string;
|
3583
3584
|
fileSize: number;
|
3584
3585
|
fileUrl: string | null;
|
3585
|
-
status?: string | undefined;
|
3586
3586
|
}[];
|
3587
3587
|
}[];
|
3588
3588
|
tags: {
|
@@ -3811,6 +3811,7 @@ export declare const ticketContract: {
|
|
3811
3811
|
dateValue: Date | null;
|
3812
3812
|
uploads: {
|
3813
3813
|
id: string;
|
3814
|
+
status: string | null;
|
3814
3815
|
createdAt: Date;
|
3815
3816
|
updatedAt: Date;
|
3816
3817
|
deletedAt: Date | null;
|
@@ -3819,7 +3820,6 @@ export declare const ticketContract: {
|
|
3819
3820
|
bucketName: string;
|
3820
3821
|
fileSize: number;
|
3821
3822
|
fileUrl: string | null;
|
3822
|
-
status?: string | undefined;
|
3823
3823
|
}[];
|
3824
3824
|
}[];
|
3825
3825
|
company: {
|
@@ -3900,6 +3900,7 @@ export declare const ticketContract: {
|
|
3900
3900
|
dateValue: Date | null;
|
3901
3901
|
uploads: {
|
3902
3902
|
id: string;
|
3903
|
+
status: string | null;
|
3903
3904
|
createdAt: Date;
|
3904
3905
|
updatedAt: Date;
|
3905
3906
|
deletedAt: Date | null;
|
@@ -3908,7 +3909,6 @@ export declare const ticketContract: {
|
|
3908
3909
|
bucketName: string;
|
3909
3910
|
fileSize: number;
|
3910
3911
|
fileUrl: string | null;
|
3911
|
-
status?: string | undefined;
|
3912
3912
|
}[];
|
3913
3913
|
}[];
|
3914
3914
|
tags: {
|
@@ -4139,6 +4139,7 @@ export declare const ticketContract: {
|
|
4139
4139
|
dateValue: Date | null;
|
4140
4140
|
uploads: {
|
4141
4141
|
id: string;
|
4142
|
+
status: string | null;
|
4142
4143
|
createdAt: Date;
|
4143
4144
|
updatedAt: Date;
|
4144
4145
|
deletedAt: Date | null;
|
@@ -4147,7 +4148,6 @@ export declare const ticketContract: {
|
|
4147
4148
|
bucketName: string;
|
4148
4149
|
fileSize: number;
|
4149
4150
|
fileUrl: string | null;
|
4150
|
-
status?: string | undefined;
|
4151
4151
|
}[];
|
4152
4152
|
}[];
|
4153
4153
|
company: {
|
@@ -4228,6 +4228,7 @@ export declare const ticketContract: {
|
|
4228
4228
|
dateValue: Date | null;
|
4229
4229
|
uploads: {
|
4230
4230
|
id: string;
|
4231
|
+
status: string | null;
|
4231
4232
|
createdAt: Date;
|
4232
4233
|
updatedAt: Date;
|
4233
4234
|
deletedAt: Date | null;
|
@@ -4236,7 +4237,6 @@ export declare const ticketContract: {
|
|
4236
4237
|
bucketName: string;
|
4237
4238
|
fileSize: number;
|
4238
4239
|
fileUrl: string | null;
|
4239
|
-
status?: string | undefined;
|
4240
4240
|
}[];
|
4241
4241
|
}[];
|
4242
4242
|
tags: {
|
@@ -4471,6 +4471,7 @@ export declare const ticketContract: {
|
|
4471
4471
|
dateValue: Date | null;
|
4472
4472
|
uploads: {
|
4473
4473
|
id: string;
|
4474
|
+
status: string | null;
|
4474
4475
|
createdAt: Date;
|
4475
4476
|
updatedAt: Date;
|
4476
4477
|
deletedAt: Date | null;
|
@@ -4479,7 +4480,6 @@ export declare const ticketContract: {
|
|
4479
4480
|
bucketName: string;
|
4480
4481
|
fileSize: number;
|
4481
4482
|
fileUrl: string | null;
|
4482
|
-
status?: string | undefined;
|
4483
4483
|
}[];
|
4484
4484
|
}[];
|
4485
4485
|
company: {
|
@@ -4560,6 +4560,7 @@ export declare const ticketContract: {
|
|
4560
4560
|
dateValue: Date | null;
|
4561
4561
|
uploads: {
|
4562
4562
|
id: string;
|
4563
|
+
status: string | null;
|
4563
4564
|
createdAt: Date;
|
4564
4565
|
updatedAt: Date;
|
4565
4566
|
deletedAt: Date | null;
|
@@ -4568,7 +4569,6 @@ export declare const ticketContract: {
|
|
4568
4569
|
bucketName: string;
|
4569
4570
|
fileSize: number;
|
4570
4571
|
fileUrl: string | null;
|
4571
|
-
status?: string | undefined;
|
4572
4572
|
}[];
|
4573
4573
|
}[];
|
4574
4574
|
tags: {
|
@@ -4805,6 +4805,7 @@ export declare const ticketContract: {
|
|
4805
4805
|
dateValue: Date | null;
|
4806
4806
|
uploads: {
|
4807
4807
|
id: string;
|
4808
|
+
status: string | null;
|
4808
4809
|
createdAt: Date;
|
4809
4810
|
updatedAt: Date;
|
4810
4811
|
deletedAt: Date | null;
|
@@ -4813,7 +4814,6 @@ export declare const ticketContract: {
|
|
4813
4814
|
bucketName: string;
|
4814
4815
|
fileSize: number;
|
4815
4816
|
fileUrl: string | null;
|
4816
|
-
status?: string | undefined;
|
4817
4817
|
}[];
|
4818
4818
|
}[];
|
4819
4819
|
company: {
|
@@ -4894,6 +4894,7 @@ export declare const ticketContract: {
|
|
4894
4894
|
dateValue: Date | null;
|
4895
4895
|
uploads: {
|
4896
4896
|
id: string;
|
4897
|
+
status: string | null;
|
4897
4898
|
createdAt: Date;
|
4898
4899
|
updatedAt: Date;
|
4899
4900
|
deletedAt: Date | null;
|
@@ -4902,7 +4903,6 @@ export declare const ticketContract: {
|
|
4902
4903
|
bucketName: string;
|
4903
4904
|
fileSize: number;
|
4904
4905
|
fileUrl: string | null;
|
4905
|
-
status?: string | undefined;
|
4906
4906
|
}[];
|
4907
4907
|
}[];
|
4908
4908
|
tags: {
|
@@ -5140,6 +5140,7 @@ export declare const ticketContract: {
|
|
5140
5140
|
dateValue: Date | null;
|
5141
5141
|
uploads: {
|
5142
5142
|
id: string;
|
5143
|
+
status: string | null;
|
5143
5144
|
createdAt: Date;
|
5144
5145
|
updatedAt: Date;
|
5145
5146
|
deletedAt: Date | null;
|
@@ -5148,7 +5149,6 @@ export declare const ticketContract: {
|
|
5148
5149
|
bucketName: string;
|
5149
5150
|
fileSize: number;
|
5150
5151
|
fileUrl: string | null;
|
5151
|
-
status?: string | undefined;
|
5152
5152
|
}[];
|
5153
5153
|
}[];
|
5154
5154
|
company: {
|
@@ -5229,6 +5229,7 @@ export declare const ticketContract: {
|
|
5229
5229
|
dateValue: Date | null;
|
5230
5230
|
uploads: {
|
5231
5231
|
id: string;
|
5232
|
+
status: string | null;
|
5232
5233
|
createdAt: Date;
|
5233
5234
|
updatedAt: Date;
|
5234
5235
|
deletedAt: Date | null;
|
@@ -5237,7 +5238,6 @@ export declare const ticketContract: {
|
|
5237
5238
|
bucketName: string;
|
5238
5239
|
fileSize: number;
|
5239
5240
|
fileUrl: string | null;
|
5240
|
-
status?: string | undefined;
|
5241
5241
|
}[];
|
5242
5242
|
}[];
|
5243
5243
|
tags: {
|
@@ -5991,9 +5991,10 @@ export declare const ticketContract: {
|
|
5991
5991
|
fileSize: z.ZodNumber;
|
5992
5992
|
fileKey: z.ZodString;
|
5993
5993
|
fileUrl: z.ZodNullable<z.ZodString>;
|
5994
|
-
status: z.
|
5994
|
+
status: z.ZodNullable<z.ZodString>;
|
5995
5995
|
}, "strip", z.ZodTypeAny, {
|
5996
5996
|
id: string;
|
5997
|
+
status: string | null;
|
5997
5998
|
createdAt: Date;
|
5998
5999
|
updatedAt: Date;
|
5999
6000
|
deletedAt: Date | null;
|
@@ -6002,9 +6003,9 @@ export declare const ticketContract: {
|
|
6002
6003
|
bucketName: string;
|
6003
6004
|
fileSize: number;
|
6004
6005
|
fileUrl: string | null;
|
6005
|
-
status?: string | undefined;
|
6006
6006
|
}, {
|
6007
6007
|
id: string;
|
6008
|
+
status: string | null;
|
6008
6009
|
createdAt: Date;
|
6009
6010
|
updatedAt: Date;
|
6010
6011
|
deletedAt: Date | null;
|
@@ -6013,7 +6014,6 @@ export declare const ticketContract: {
|
|
6013
6014
|
bucketName: string;
|
6014
6015
|
fileSize: number;
|
6015
6016
|
fileUrl: string | null;
|
6016
|
-
status?: string | undefined;
|
6017
6017
|
}>, "many">;
|
6018
6018
|
}, "strip", z.ZodTypeAny, {
|
6019
6019
|
id: string;
|
@@ -6040,6 +6040,7 @@ export declare const ticketContract: {
|
|
6040
6040
|
dateValue: Date | null;
|
6041
6041
|
uploads: {
|
6042
6042
|
id: string;
|
6043
|
+
status: string | null;
|
6043
6044
|
createdAt: Date;
|
6044
6045
|
updatedAt: Date;
|
6045
6046
|
deletedAt: Date | null;
|
@@ -6048,7 +6049,6 @@ export declare const ticketContract: {
|
|
6048
6049
|
bucketName: string;
|
6049
6050
|
fileSize: number;
|
6050
6051
|
fileUrl: string | null;
|
6051
|
-
status?: string | undefined;
|
6052
6052
|
}[];
|
6053
6053
|
}, {
|
6054
6054
|
id: string;
|
@@ -6075,6 +6075,7 @@ export declare const ticketContract: {
|
|
6075
6075
|
dateValue: Date | null;
|
6076
6076
|
uploads: {
|
6077
6077
|
id: string;
|
6078
|
+
status: string | null;
|
6078
6079
|
createdAt: Date;
|
6079
6080
|
updatedAt: Date;
|
6080
6081
|
deletedAt: Date | null;
|
@@ -6083,7 +6084,6 @@ export declare const ticketContract: {
|
|
6083
6084
|
bucketName: string;
|
6084
6085
|
fileSize: number;
|
6085
6086
|
fileUrl: string | null;
|
6086
|
-
status?: string | undefined;
|
6087
6087
|
}[];
|
6088
6088
|
}>, "many">;
|
6089
6089
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -6500,9 +6500,10 @@ export declare const ticketContract: {
|
|
6500
6500
|
fileSize: z.ZodNumber;
|
6501
6501
|
fileKey: z.ZodString;
|
6502
6502
|
fileUrl: z.ZodNullable<z.ZodString>;
|
6503
|
-
status: z.
|
6503
|
+
status: z.ZodNullable<z.ZodString>;
|
6504
6504
|
}, "strip", z.ZodTypeAny, {
|
6505
6505
|
id: string;
|
6506
|
+
status: string | null;
|
6506
6507
|
createdAt: Date;
|
6507
6508
|
updatedAt: Date;
|
6508
6509
|
deletedAt: Date | null;
|
@@ -6511,9 +6512,9 @@ export declare const ticketContract: {
|
|
6511
6512
|
bucketName: string;
|
6512
6513
|
fileSize: number;
|
6513
6514
|
fileUrl: string | null;
|
6514
|
-
status?: string | undefined;
|
6515
6515
|
}, {
|
6516
6516
|
id: string;
|
6517
|
+
status: string | null;
|
6517
6518
|
createdAt: Date;
|
6518
6519
|
updatedAt: Date;
|
6519
6520
|
deletedAt: Date | null;
|
@@ -6522,7 +6523,6 @@ export declare const ticketContract: {
|
|
6522
6523
|
bucketName: string;
|
6523
6524
|
fileSize: number;
|
6524
6525
|
fileUrl: string | null;
|
6525
|
-
status?: string | undefined;
|
6526
6526
|
}>, "many">;
|
6527
6527
|
}, "strip", z.ZodTypeAny, {
|
6528
6528
|
id: string;
|
@@ -6549,6 +6549,7 @@ export declare const ticketContract: {
|
|
6549
6549
|
dateValue: Date | null;
|
6550
6550
|
uploads: {
|
6551
6551
|
id: string;
|
6552
|
+
status: string | null;
|
6552
6553
|
createdAt: Date;
|
6553
6554
|
updatedAt: Date;
|
6554
6555
|
deletedAt: Date | null;
|
@@ -6557,7 +6558,6 @@ export declare const ticketContract: {
|
|
6557
6558
|
bucketName: string;
|
6558
6559
|
fileSize: number;
|
6559
6560
|
fileUrl: string | null;
|
6560
|
-
status?: string | undefined;
|
6561
6561
|
}[];
|
6562
6562
|
}, {
|
6563
6563
|
id: string;
|
@@ -6584,6 +6584,7 @@ export declare const ticketContract: {
|
|
6584
6584
|
dateValue: Date | null;
|
6585
6585
|
uploads: {
|
6586
6586
|
id: string;
|
6587
|
+
status: string | null;
|
6587
6588
|
createdAt: Date;
|
6588
6589
|
updatedAt: Date;
|
6589
6590
|
deletedAt: Date | null;
|
@@ -6592,7 +6593,6 @@ export declare const ticketContract: {
|
|
6592
6593
|
bucketName: string;
|
6593
6594
|
fileSize: number;
|
6594
6595
|
fileUrl: string | null;
|
6595
|
-
status?: string | undefined;
|
6596
6596
|
}[];
|
6597
6597
|
}>, "many">;
|
6598
6598
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -6732,6 +6732,7 @@ export declare const ticketContract: {
|
|
6732
6732
|
dateValue: Date | null;
|
6733
6733
|
uploads: {
|
6734
6734
|
id: string;
|
6735
|
+
status: string | null;
|
6735
6736
|
createdAt: Date;
|
6736
6737
|
updatedAt: Date;
|
6737
6738
|
deletedAt: Date | null;
|
@@ -6740,7 +6741,6 @@ export declare const ticketContract: {
|
|
6740
6741
|
bucketName: string;
|
6741
6742
|
fileSize: number;
|
6742
6743
|
fileUrl: string | null;
|
6743
|
-
status?: string | undefined;
|
6744
6744
|
}[];
|
6745
6745
|
}[];
|
6746
6746
|
company: {
|
@@ -6828,6 +6828,7 @@ export declare const ticketContract: {
|
|
6828
6828
|
dateValue: Date | null;
|
6829
6829
|
uploads: {
|
6830
6830
|
id: string;
|
6831
|
+
status: string | null;
|
6831
6832
|
createdAt: Date;
|
6832
6833
|
updatedAt: Date;
|
6833
6834
|
deletedAt: Date | null;
|
@@ -6836,7 +6837,6 @@ export declare const ticketContract: {
|
|
6836
6837
|
bucketName: string;
|
6837
6838
|
fileSize: number;
|
6838
6839
|
fileUrl: string | null;
|
6839
|
-
status?: string | undefined;
|
6840
6840
|
}[];
|
6841
6841
|
}[];
|
6842
6842
|
company: {
|
@@ -7310,6 +7310,7 @@ export declare const ticketContract: {
|
|
7310
7310
|
dateValue: Date | null;
|
7311
7311
|
uploads: {
|
7312
7312
|
id: string;
|
7313
|
+
status: string | null;
|
7313
7314
|
createdAt: Date;
|
7314
7315
|
updatedAt: Date;
|
7315
7316
|
deletedAt: Date | null;
|
@@ -7318,7 +7319,6 @@ export declare const ticketContract: {
|
|
7318
7319
|
bucketName: string;
|
7319
7320
|
fileSize: number;
|
7320
7321
|
fileUrl: string | null;
|
7321
|
-
status?: string | undefined;
|
7322
7322
|
}[];
|
7323
7323
|
}[];
|
7324
7324
|
company: {
|
@@ -7399,6 +7399,7 @@ export declare const ticketContract: {
|
|
7399
7399
|
dateValue: Date | null;
|
7400
7400
|
uploads: {
|
7401
7401
|
id: string;
|
7402
|
+
status: string | null;
|
7402
7403
|
createdAt: Date;
|
7403
7404
|
updatedAt: Date;
|
7404
7405
|
deletedAt: Date | null;
|
@@ -7407,7 +7408,6 @@ export declare const ticketContract: {
|
|
7407
7408
|
bucketName: string;
|
7408
7409
|
fileSize: number;
|
7409
7410
|
fileUrl: string | null;
|
7410
|
-
status?: string | undefined;
|
7411
7411
|
}[];
|
7412
7412
|
}[];
|
7413
7413
|
tags: {
|
@@ -7636,6 +7636,7 @@ export declare const ticketContract: {
|
|
7636
7636
|
dateValue: Date | null;
|
7637
7637
|
uploads: {
|
7638
7638
|
id: string;
|
7639
|
+
status: string | null;
|
7639
7640
|
createdAt: Date;
|
7640
7641
|
updatedAt: Date;
|
7641
7642
|
deletedAt: Date | null;
|
@@ -7644,7 +7645,6 @@ export declare const ticketContract: {
|
|
7644
7645
|
bucketName: string;
|
7645
7646
|
fileSize: number;
|
7646
7647
|
fileUrl: string | null;
|
7647
|
-
status?: string | undefined;
|
7648
7648
|
}[];
|
7649
7649
|
}[];
|
7650
7650
|
company: {
|
@@ -7725,6 +7725,7 @@ export declare const ticketContract: {
|
|
7725
7725
|
dateValue: Date | null;
|
7726
7726
|
uploads: {
|
7727
7727
|
id: string;
|
7728
|
+
status: string | null;
|
7728
7729
|
createdAt: Date;
|
7729
7730
|
updatedAt: Date;
|
7730
7731
|
deletedAt: Date | null;
|
@@ -7733,7 +7734,6 @@ export declare const ticketContract: {
|
|
7733
7734
|
bucketName: string;
|
7734
7735
|
fileSize: number;
|
7735
7736
|
fileUrl: string | null;
|
7736
|
-
status?: string | undefined;
|
7737
7737
|
}[];
|
7738
7738
|
}[];
|
7739
7739
|
tags: {
|
@@ -7964,6 +7964,7 @@ export declare const ticketContract: {
|
|
7964
7964
|
dateValue: Date | null;
|
7965
7965
|
uploads: {
|
7966
7966
|
id: string;
|
7967
|
+
status: string | null;
|
7967
7968
|
createdAt: Date;
|
7968
7969
|
updatedAt: Date;
|
7969
7970
|
deletedAt: Date | null;
|
@@ -7972,7 +7973,6 @@ export declare const ticketContract: {
|
|
7972
7973
|
bucketName: string;
|
7973
7974
|
fileSize: number;
|
7974
7975
|
fileUrl: string | null;
|
7975
|
-
status?: string | undefined;
|
7976
7976
|
}[];
|
7977
7977
|
}[];
|
7978
7978
|
company: {
|
@@ -8053,6 +8053,7 @@ export declare const ticketContract: {
|
|
8053
8053
|
dateValue: Date | null;
|
8054
8054
|
uploads: {
|
8055
8055
|
id: string;
|
8056
|
+
status: string | null;
|
8056
8057
|
createdAt: Date;
|
8057
8058
|
updatedAt: Date;
|
8058
8059
|
deletedAt: Date | null;
|
@@ -8061,7 +8062,6 @@ export declare const ticketContract: {
|
|
8061
8062
|
bucketName: string;
|
8062
8063
|
fileSize: number;
|
8063
8064
|
fileUrl: string | null;
|
8064
|
-
status?: string | undefined;
|
8065
8065
|
}[];
|
8066
8066
|
}[];
|
8067
8067
|
tags: {
|
@@ -8293,6 +8293,7 @@ export declare const ticketContract: {
|
|
8293
8293
|
dateValue: Date | null;
|
8294
8294
|
uploads: {
|
8295
8295
|
id: string;
|
8296
|
+
status: string | null;
|
8296
8297
|
createdAt: Date;
|
8297
8298
|
updatedAt: Date;
|
8298
8299
|
deletedAt: Date | null;
|
@@ -8301,7 +8302,6 @@ export declare const ticketContract: {
|
|
8301
8302
|
bucketName: string;
|
8302
8303
|
fileSize: number;
|
8303
8304
|
fileUrl: string | null;
|
8304
|
-
status?: string | undefined;
|
8305
8305
|
}[];
|
8306
8306
|
}[];
|
8307
8307
|
company: {
|
@@ -8382,6 +8382,7 @@ export declare const ticketContract: {
|
|
8382
8382
|
dateValue: Date | null;
|
8383
8383
|
uploads: {
|
8384
8384
|
id: string;
|
8385
|
+
status: string | null;
|
8385
8386
|
createdAt: Date;
|
8386
8387
|
updatedAt: Date;
|
8387
8388
|
deletedAt: Date | null;
|
@@ -8390,7 +8391,6 @@ export declare const ticketContract: {
|
|
8390
8391
|
bucketName: string;
|
8391
8392
|
fileSize: number;
|
8392
8393
|
fileUrl: string | null;
|
8393
|
-
status?: string | undefined;
|
8394
8394
|
}[];
|
8395
8395
|
}[];
|
8396
8396
|
tags: {
|
@@ -8696,6 +8696,7 @@ export declare const ticketContract: {
|
|
8696
8696
|
dateValue: Date | null;
|
8697
8697
|
uploads: {
|
8698
8698
|
id: string;
|
8699
|
+
status: string | null;
|
8699
8700
|
createdAt: Date;
|
8700
8701
|
updatedAt: Date;
|
8701
8702
|
deletedAt: Date | null;
|
@@ -8704,7 +8705,6 @@ export declare const ticketContract: {
|
|
8704
8705
|
bucketName: string;
|
8705
8706
|
fileSize: number;
|
8706
8707
|
fileUrl: string | null;
|
8707
|
-
status?: string | undefined;
|
8708
8708
|
}[];
|
8709
8709
|
}[];
|
8710
8710
|
company: {
|
@@ -8785,6 +8785,7 @@ export declare const ticketContract: {
|
|
8785
8785
|
dateValue: Date | null;
|
8786
8786
|
uploads: {
|
8787
8787
|
id: string;
|
8788
|
+
status: string | null;
|
8788
8789
|
createdAt: Date;
|
8789
8790
|
updatedAt: Date;
|
8790
8791
|
deletedAt: Date | null;
|
@@ -8793,7 +8794,6 @@ export declare const ticketContract: {
|
|
8793
8794
|
bucketName: string;
|
8794
8795
|
fileSize: number;
|
8795
8796
|
fileUrl: string | null;
|
8796
|
-
status?: string | undefined;
|
8797
8797
|
}[];
|
8798
8798
|
}[];
|
8799
8799
|
tags: {
|
@@ -9022,6 +9022,7 @@ export declare const ticketContract: {
|
|
9022
9022
|
dateValue: Date | null;
|
9023
9023
|
uploads: {
|
9024
9024
|
id: string;
|
9025
|
+
status: string | null;
|
9025
9026
|
createdAt: Date;
|
9026
9027
|
updatedAt: Date;
|
9027
9028
|
deletedAt: Date | null;
|
@@ -9030,7 +9031,6 @@ export declare const ticketContract: {
|
|
9030
9031
|
bucketName: string;
|
9031
9032
|
fileSize: number;
|
9032
9033
|
fileUrl: string | null;
|
9033
|
-
status?: string | undefined;
|
9034
9034
|
}[];
|
9035
9035
|
}[];
|
9036
9036
|
company: {
|
@@ -9111,6 +9111,7 @@ export declare const ticketContract: {
|
|
9111
9111
|
dateValue: Date | null;
|
9112
9112
|
uploads: {
|
9113
9113
|
id: string;
|
9114
|
+
status: string | null;
|
9114
9115
|
createdAt: Date;
|
9115
9116
|
updatedAt: Date;
|
9116
9117
|
deletedAt: Date | null;
|
@@ -9119,7 +9120,6 @@ export declare const ticketContract: {
|
|
9119
9120
|
bucketName: string;
|
9120
9121
|
fileSize: number;
|
9121
9122
|
fileUrl: string | null;
|
9122
|
-
status?: string | undefined;
|
9123
9123
|
}[];
|
9124
9124
|
}[];
|
9125
9125
|
tags: {
|
@@ -9350,6 +9350,7 @@ export declare const ticketContract: {
|
|
9350
9350
|
dateValue: Date | null;
|
9351
9351
|
uploads: {
|
9352
9352
|
id: string;
|
9353
|
+
status: string | null;
|
9353
9354
|
createdAt: Date;
|
9354
9355
|
updatedAt: Date;
|
9355
9356
|
deletedAt: Date | null;
|
@@ -9358,7 +9359,6 @@ export declare const ticketContract: {
|
|
9358
9359
|
bucketName: string;
|
9359
9360
|
fileSize: number;
|
9360
9361
|
fileUrl: string | null;
|
9361
|
-
status?: string | undefined;
|
9362
9362
|
}[];
|
9363
9363
|
}[];
|
9364
9364
|
company: {
|
@@ -9439,6 +9439,7 @@ export declare const ticketContract: {
|
|
9439
9439
|
dateValue: Date | null;
|
9440
9440
|
uploads: {
|
9441
9441
|
id: string;
|
9442
|
+
status: string | null;
|
9442
9443
|
createdAt: Date;
|
9443
9444
|
updatedAt: Date;
|
9444
9445
|
deletedAt: Date | null;
|
@@ -9447,7 +9448,6 @@ export declare const ticketContract: {
|
|
9447
9448
|
bucketName: string;
|
9448
9449
|
fileSize: number;
|
9449
9450
|
fileUrl: string | null;
|
9450
|
-
status?: string | undefined;
|
9451
9451
|
}[];
|
9452
9452
|
}[];
|
9453
9453
|
tags: {
|
@@ -9682,6 +9682,7 @@ export declare const ticketContract: {
|
|
9682
9682
|
dateValue: Date | null;
|
9683
9683
|
uploads: {
|
9684
9684
|
id: string;
|
9685
|
+
status: string | null;
|
9685
9686
|
createdAt: Date;
|
9686
9687
|
updatedAt: Date;
|
9687
9688
|
deletedAt: Date | null;
|
@@ -9690,7 +9691,6 @@ export declare const ticketContract: {
|
|
9690
9691
|
bucketName: string;
|
9691
9692
|
fileSize: number;
|
9692
9693
|
fileUrl: string | null;
|
9693
|
-
status?: string | undefined;
|
9694
9694
|
}[];
|
9695
9695
|
}[];
|
9696
9696
|
company: {
|
@@ -9771,6 +9771,7 @@ export declare const ticketContract: {
|
|
9771
9771
|
dateValue: Date | null;
|
9772
9772
|
uploads: {
|
9773
9773
|
id: string;
|
9774
|
+
status: string | null;
|
9774
9775
|
createdAt: Date;
|
9775
9776
|
updatedAt: Date;
|
9776
9777
|
deletedAt: Date | null;
|
@@ -9779,7 +9780,6 @@ export declare const ticketContract: {
|
|
9779
9780
|
bucketName: string;
|
9780
9781
|
fileSize: number;
|
9781
9782
|
fileUrl: string | null;
|
9782
|
-
status?: string | undefined;
|
9783
9783
|
}[];
|
9784
9784
|
}[];
|
9785
9785
|
tags: {
|
@@ -10016,6 +10016,7 @@ export declare const ticketContract: {
|
|
10016
10016
|
dateValue: Date | null;
|
10017
10017
|
uploads: {
|
10018
10018
|
id: string;
|
10019
|
+
status: string | null;
|
10019
10020
|
createdAt: Date;
|
10020
10021
|
updatedAt: Date;
|
10021
10022
|
deletedAt: Date | null;
|
@@ -10024,7 +10025,6 @@ export declare const ticketContract: {
|
|
10024
10025
|
bucketName: string;
|
10025
10026
|
fileSize: number;
|
10026
10027
|
fileUrl: string | null;
|
10027
|
-
status?: string | undefined;
|
10028
10028
|
}[];
|
10029
10029
|
}[];
|
10030
10030
|
company: {
|
@@ -10105,6 +10105,7 @@ export declare const ticketContract: {
|
|
10105
10105
|
dateValue: Date | null;
|
10106
10106
|
uploads: {
|
10107
10107
|
id: string;
|
10108
|
+
status: string | null;
|
10108
10109
|
createdAt: Date;
|
10109
10110
|
updatedAt: Date;
|
10110
10111
|
deletedAt: Date | null;
|
@@ -10113,7 +10114,6 @@ export declare const ticketContract: {
|
|
10113
10114
|
bucketName: string;
|
10114
10115
|
fileSize: number;
|
10115
10116
|
fileUrl: string | null;
|
10116
|
-
status?: string | undefined;
|
10117
10117
|
}[];
|
10118
10118
|
}[];
|
10119
10119
|
tags: {
|
@@ -10351,6 +10351,7 @@ export declare const ticketContract: {
|
|
10351
10351
|
dateValue: Date | null;
|
10352
10352
|
uploads: {
|
10353
10353
|
id: string;
|
10354
|
+
status: string | null;
|
10354
10355
|
createdAt: Date;
|
10355
10356
|
updatedAt: Date;
|
10356
10357
|
deletedAt: Date | null;
|
@@ -10359,7 +10360,6 @@ export declare const ticketContract: {
|
|
10359
10360
|
bucketName: string;
|
10360
10361
|
fileSize: number;
|
10361
10362
|
fileUrl: string | null;
|
10362
|
-
status?: string | undefined;
|
10363
10363
|
}[];
|
10364
10364
|
}[];
|
10365
10365
|
company: {
|
@@ -10440,6 +10440,7 @@ export declare const ticketContract: {
|
|
10440
10440
|
dateValue: Date | null;
|
10441
10441
|
uploads: {
|
10442
10442
|
id: string;
|
10443
|
+
status: string | null;
|
10443
10444
|
createdAt: Date;
|
10444
10445
|
updatedAt: Date;
|
10445
10446
|
deletedAt: Date | null;
|
@@ -10448,7 +10449,6 @@ export declare const ticketContract: {
|
|
10448
10449
|
bucketName: string;
|
10449
10450
|
fileSize: number;
|
10450
10451
|
fileUrl: string | null;
|
10451
|
-
status?: string | undefined;
|
10452
10452
|
}[];
|
10453
10453
|
}[];
|
10454
10454
|
tags: {
|
@@ -11364,9 +11364,10 @@ export declare const ticketContract: {
|
|
11364
11364
|
fileSize: z.ZodNumber;
|
11365
11365
|
fileKey: z.ZodString;
|
11366
11366
|
fileUrl: z.ZodNullable<z.ZodString>;
|
11367
|
-
status: z.
|
11367
|
+
status: z.ZodNullable<z.ZodString>;
|
11368
11368
|
}, "strip", z.ZodTypeAny, {
|
11369
11369
|
id: string;
|
11370
|
+
status: string | null;
|
11370
11371
|
createdAt: Date;
|
11371
11372
|
updatedAt: Date;
|
11372
11373
|
deletedAt: Date | null;
|
@@ -11375,9 +11376,9 @@ export declare const ticketContract: {
|
|
11375
11376
|
bucketName: string;
|
11376
11377
|
fileSize: number;
|
11377
11378
|
fileUrl: string | null;
|
11378
|
-
status?: string | undefined;
|
11379
11379
|
}, {
|
11380
11380
|
id: string;
|
11381
|
+
status: string | null;
|
11381
11382
|
createdAt: Date;
|
11382
11383
|
updatedAt: Date;
|
11383
11384
|
deletedAt: Date | null;
|
@@ -11386,7 +11387,6 @@ export declare const ticketContract: {
|
|
11386
11387
|
bucketName: string;
|
11387
11388
|
fileSize: number;
|
11388
11389
|
fileUrl: string | null;
|
11389
|
-
status?: string | undefined;
|
11390
11390
|
}>, "many">;
|
11391
11391
|
}, "strip", z.ZodTypeAny, {
|
11392
11392
|
id: string;
|
@@ -11413,6 +11413,7 @@ export declare const ticketContract: {
|
|
11413
11413
|
dateValue: Date | null;
|
11414
11414
|
uploads: {
|
11415
11415
|
id: string;
|
11416
|
+
status: string | null;
|
11416
11417
|
createdAt: Date;
|
11417
11418
|
updatedAt: Date;
|
11418
11419
|
deletedAt: Date | null;
|
@@ -11421,7 +11422,6 @@ export declare const ticketContract: {
|
|
11421
11422
|
bucketName: string;
|
11422
11423
|
fileSize: number;
|
11423
11424
|
fileUrl: string | null;
|
11424
|
-
status?: string | undefined;
|
11425
11425
|
}[];
|
11426
11426
|
}, {
|
11427
11427
|
id: string;
|
@@ -11448,6 +11448,7 @@ export declare const ticketContract: {
|
|
11448
11448
|
dateValue: Date | null;
|
11449
11449
|
uploads: {
|
11450
11450
|
id: string;
|
11451
|
+
status: string | null;
|
11451
11452
|
createdAt: Date;
|
11452
11453
|
updatedAt: Date;
|
11453
11454
|
deletedAt: Date | null;
|
@@ -11456,7 +11457,6 @@ export declare const ticketContract: {
|
|
11456
11457
|
bucketName: string;
|
11457
11458
|
fileSize: number;
|
11458
11459
|
fileUrl: string | null;
|
11459
|
-
status?: string | undefined;
|
11460
11460
|
}[];
|
11461
11461
|
}>, "many">;
|
11462
11462
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -11873,9 +11873,10 @@ export declare const ticketContract: {
|
|
11873
11873
|
fileSize: z.ZodNumber;
|
11874
11874
|
fileKey: z.ZodString;
|
11875
11875
|
fileUrl: z.ZodNullable<z.ZodString>;
|
11876
|
-
status: z.
|
11876
|
+
status: z.ZodNullable<z.ZodString>;
|
11877
11877
|
}, "strip", z.ZodTypeAny, {
|
11878
11878
|
id: string;
|
11879
|
+
status: string | null;
|
11879
11880
|
createdAt: Date;
|
11880
11881
|
updatedAt: Date;
|
11881
11882
|
deletedAt: Date | null;
|
@@ -11884,9 +11885,9 @@ export declare const ticketContract: {
|
|
11884
11885
|
bucketName: string;
|
11885
11886
|
fileSize: number;
|
11886
11887
|
fileUrl: string | null;
|
11887
|
-
status?: string | undefined;
|
11888
11888
|
}, {
|
11889
11889
|
id: string;
|
11890
|
+
status: string | null;
|
11890
11891
|
createdAt: Date;
|
11891
11892
|
updatedAt: Date;
|
11892
11893
|
deletedAt: Date | null;
|
@@ -11895,7 +11896,6 @@ export declare const ticketContract: {
|
|
11895
11896
|
bucketName: string;
|
11896
11897
|
fileSize: number;
|
11897
11898
|
fileUrl: string | null;
|
11898
|
-
status?: string | undefined;
|
11899
11899
|
}>, "many">;
|
11900
11900
|
}, "strip", z.ZodTypeAny, {
|
11901
11901
|
id: string;
|
@@ -11922,6 +11922,7 @@ export declare const ticketContract: {
|
|
11922
11922
|
dateValue: Date | null;
|
11923
11923
|
uploads: {
|
11924
11924
|
id: string;
|
11925
|
+
status: string | null;
|
11925
11926
|
createdAt: Date;
|
11926
11927
|
updatedAt: Date;
|
11927
11928
|
deletedAt: Date | null;
|
@@ -11930,7 +11931,6 @@ export declare const ticketContract: {
|
|
11930
11931
|
bucketName: string;
|
11931
11932
|
fileSize: number;
|
11932
11933
|
fileUrl: string | null;
|
11933
|
-
status?: string | undefined;
|
11934
11934
|
}[];
|
11935
11935
|
}, {
|
11936
11936
|
id: string;
|
@@ -11957,6 +11957,7 @@ export declare const ticketContract: {
|
|
11957
11957
|
dateValue: Date | null;
|
11958
11958
|
uploads: {
|
11959
11959
|
id: string;
|
11960
|
+
status: string | null;
|
11960
11961
|
createdAt: Date;
|
11961
11962
|
updatedAt: Date;
|
11962
11963
|
deletedAt: Date | null;
|
@@ -11965,7 +11966,6 @@ export declare const ticketContract: {
|
|
11965
11966
|
bucketName: string;
|
11966
11967
|
fileSize: number;
|
11967
11968
|
fileUrl: string | null;
|
11968
|
-
status?: string | undefined;
|
11969
11969
|
}[];
|
11970
11970
|
}>, "many">;
|
11971
11971
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -12105,6 +12105,7 @@ export declare const ticketContract: {
|
|
12105
12105
|
dateValue: Date | null;
|
12106
12106
|
uploads: {
|
12107
12107
|
id: string;
|
12108
|
+
status: string | null;
|
12108
12109
|
createdAt: Date;
|
12109
12110
|
updatedAt: Date;
|
12110
12111
|
deletedAt: Date | null;
|
@@ -12113,7 +12114,6 @@ export declare const ticketContract: {
|
|
12113
12114
|
bucketName: string;
|
12114
12115
|
fileSize: number;
|
12115
12116
|
fileUrl: string | null;
|
12116
|
-
status?: string | undefined;
|
12117
12117
|
}[];
|
12118
12118
|
}[];
|
12119
12119
|
company: {
|
@@ -12201,6 +12201,7 @@ export declare const ticketContract: {
|
|
12201
12201
|
dateValue: Date | null;
|
12202
12202
|
uploads: {
|
12203
12203
|
id: string;
|
12204
|
+
status: string | null;
|
12204
12205
|
createdAt: Date;
|
12205
12206
|
updatedAt: Date;
|
12206
12207
|
deletedAt: Date | null;
|
@@ -12209,7 +12210,6 @@ export declare const ticketContract: {
|
|
12209
12210
|
bucketName: string;
|
12210
12211
|
fileSize: number;
|
12211
12212
|
fileUrl: string | null;
|
12212
|
-
status?: string | undefined;
|
12213
12213
|
}[];
|
12214
12214
|
}[];
|
12215
12215
|
company: {
|
@@ -12683,6 +12683,7 @@ export declare const ticketContract: {
|
|
12683
12683
|
dateValue: Date | null;
|
12684
12684
|
uploads: {
|
12685
12685
|
id: string;
|
12686
|
+
status: string | null;
|
12686
12687
|
createdAt: Date;
|
12687
12688
|
updatedAt: Date;
|
12688
12689
|
deletedAt: Date | null;
|
@@ -12691,7 +12692,6 @@ export declare const ticketContract: {
|
|
12691
12692
|
bucketName: string;
|
12692
12693
|
fileSize: number;
|
12693
12694
|
fileUrl: string | null;
|
12694
|
-
status?: string | undefined;
|
12695
12695
|
}[];
|
12696
12696
|
}[];
|
12697
12697
|
company: {
|
@@ -12772,6 +12772,7 @@ export declare const ticketContract: {
|
|
12772
12772
|
dateValue: Date | null;
|
12773
12773
|
uploads: {
|
12774
12774
|
id: string;
|
12775
|
+
status: string | null;
|
12775
12776
|
createdAt: Date;
|
12776
12777
|
updatedAt: Date;
|
12777
12778
|
deletedAt: Date | null;
|
@@ -12780,7 +12781,6 @@ export declare const ticketContract: {
|
|
12780
12781
|
bucketName: string;
|
12781
12782
|
fileSize: number;
|
12782
12783
|
fileUrl: string | null;
|
12783
|
-
status?: string | undefined;
|
12784
12784
|
}[];
|
12785
12785
|
}[];
|
12786
12786
|
tags: {
|
@@ -13009,6 +13009,7 @@ export declare const ticketContract: {
|
|
13009
13009
|
dateValue: Date | null;
|
13010
13010
|
uploads: {
|
13011
13011
|
id: string;
|
13012
|
+
status: string | null;
|
13012
13013
|
createdAt: Date;
|
13013
13014
|
updatedAt: Date;
|
13014
13015
|
deletedAt: Date | null;
|
@@ -13017,7 +13018,6 @@ export declare const ticketContract: {
|
|
13017
13018
|
bucketName: string;
|
13018
13019
|
fileSize: number;
|
13019
13020
|
fileUrl: string | null;
|
13020
|
-
status?: string | undefined;
|
13021
13021
|
}[];
|
13022
13022
|
}[];
|
13023
13023
|
company: {
|
@@ -13098,6 +13098,7 @@ export declare const ticketContract: {
|
|
13098
13098
|
dateValue: Date | null;
|
13099
13099
|
uploads: {
|
13100
13100
|
id: string;
|
13101
|
+
status: string | null;
|
13101
13102
|
createdAt: Date;
|
13102
13103
|
updatedAt: Date;
|
13103
13104
|
deletedAt: Date | null;
|
@@ -13106,7 +13107,6 @@ export declare const ticketContract: {
|
|
13106
13107
|
bucketName: string;
|
13107
13108
|
fileSize: number;
|
13108
13109
|
fileUrl: string | null;
|
13109
|
-
status?: string | undefined;
|
13110
13110
|
}[];
|
13111
13111
|
}[];
|
13112
13112
|
tags: {
|
@@ -13337,6 +13337,7 @@ export declare const ticketContract: {
|
|
13337
13337
|
dateValue: Date | null;
|
13338
13338
|
uploads: {
|
13339
13339
|
id: string;
|
13340
|
+
status: string | null;
|
13340
13341
|
createdAt: Date;
|
13341
13342
|
updatedAt: Date;
|
13342
13343
|
deletedAt: Date | null;
|
@@ -13345,7 +13346,6 @@ export declare const ticketContract: {
|
|
13345
13346
|
bucketName: string;
|
13346
13347
|
fileSize: number;
|
13347
13348
|
fileUrl: string | null;
|
13348
|
-
status?: string | undefined;
|
13349
13349
|
}[];
|
13350
13350
|
}[];
|
13351
13351
|
company: {
|
@@ -13426,6 +13426,7 @@ export declare const ticketContract: {
|
|
13426
13426
|
dateValue: Date | null;
|
13427
13427
|
uploads: {
|
13428
13428
|
id: string;
|
13429
|
+
status: string | null;
|
13429
13430
|
createdAt: Date;
|
13430
13431
|
updatedAt: Date;
|
13431
13432
|
deletedAt: Date | null;
|
@@ -13434,7 +13435,6 @@ export declare const ticketContract: {
|
|
13434
13435
|
bucketName: string;
|
13435
13436
|
fileSize: number;
|
13436
13437
|
fileUrl: string | null;
|
13437
|
-
status?: string | undefined;
|
13438
13438
|
}[];
|
13439
13439
|
}[];
|
13440
13440
|
tags: {
|
@@ -13666,6 +13666,7 @@ export declare const ticketContract: {
|
|
13666
13666
|
dateValue: Date | null;
|
13667
13667
|
uploads: {
|
13668
13668
|
id: string;
|
13669
|
+
status: string | null;
|
13669
13670
|
createdAt: Date;
|
13670
13671
|
updatedAt: Date;
|
13671
13672
|
deletedAt: Date | null;
|
@@ -13674,7 +13675,6 @@ export declare const ticketContract: {
|
|
13674
13675
|
bucketName: string;
|
13675
13676
|
fileSize: number;
|
13676
13677
|
fileUrl: string | null;
|
13677
|
-
status?: string | undefined;
|
13678
13678
|
}[];
|
13679
13679
|
}[];
|
13680
13680
|
company: {
|
@@ -13755,6 +13755,7 @@ export declare const ticketContract: {
|
|
13755
13755
|
dateValue: Date | null;
|
13756
13756
|
uploads: {
|
13757
13757
|
id: string;
|
13758
|
+
status: string | null;
|
13758
13759
|
createdAt: Date;
|
13759
13760
|
updatedAt: Date;
|
13760
13761
|
deletedAt: Date | null;
|
@@ -13763,7 +13764,6 @@ export declare const ticketContract: {
|
|
13763
13764
|
bucketName: string;
|
13764
13765
|
fileSize: number;
|
13765
13766
|
fileUrl: string | null;
|
13766
|
-
status?: string | undefined;
|
13767
13767
|
}[];
|
13768
13768
|
}[];
|
13769
13769
|
tags: {
|
@@ -15286,9 +15286,10 @@ export declare const ticketContract: {
|
|
15286
15286
|
fileSize: z.ZodNumber;
|
15287
15287
|
fileKey: z.ZodString;
|
15288
15288
|
fileUrl: z.ZodNullable<z.ZodString>;
|
15289
|
-
status: z.
|
15289
|
+
status: z.ZodNullable<z.ZodString>;
|
15290
15290
|
}, "strip", z.ZodTypeAny, {
|
15291
15291
|
id: string;
|
15292
|
+
status: string | null;
|
15292
15293
|
createdAt: Date;
|
15293
15294
|
updatedAt: Date;
|
15294
15295
|
deletedAt: Date | null;
|
@@ -15297,9 +15298,9 @@ export declare const ticketContract: {
|
|
15297
15298
|
bucketName: string;
|
15298
15299
|
fileSize: number;
|
15299
15300
|
fileUrl: string | null;
|
15300
|
-
status?: string | undefined;
|
15301
15301
|
}, {
|
15302
15302
|
id: string;
|
15303
|
+
status: string | null;
|
15303
15304
|
createdAt: Date;
|
15304
15305
|
updatedAt: Date;
|
15305
15306
|
deletedAt: Date | null;
|
@@ -15308,7 +15309,6 @@ export declare const ticketContract: {
|
|
15308
15309
|
bucketName: string;
|
15309
15310
|
fileSize: number;
|
15310
15311
|
fileUrl: string | null;
|
15311
|
-
status?: string | undefined;
|
15312
15312
|
}>, "many">;
|
15313
15313
|
}, "strip", z.ZodTypeAny, {
|
15314
15314
|
id: string;
|
@@ -15335,6 +15335,7 @@ export declare const ticketContract: {
|
|
15335
15335
|
dateValue: Date | null;
|
15336
15336
|
uploads: {
|
15337
15337
|
id: string;
|
15338
|
+
status: string | null;
|
15338
15339
|
createdAt: Date;
|
15339
15340
|
updatedAt: Date;
|
15340
15341
|
deletedAt: Date | null;
|
@@ -15343,7 +15344,6 @@ export declare const ticketContract: {
|
|
15343
15344
|
bucketName: string;
|
15344
15345
|
fileSize: number;
|
15345
15346
|
fileUrl: string | null;
|
15346
|
-
status?: string | undefined;
|
15347
15347
|
}[];
|
15348
15348
|
}, {
|
15349
15349
|
id: string;
|
@@ -15370,6 +15370,7 @@ export declare const ticketContract: {
|
|
15370
15370
|
dateValue: Date | null;
|
15371
15371
|
uploads: {
|
15372
15372
|
id: string;
|
15373
|
+
status: string | null;
|
15373
15374
|
createdAt: Date;
|
15374
15375
|
updatedAt: Date;
|
15375
15376
|
deletedAt: Date | null;
|
@@ -15378,7 +15379,6 @@ export declare const ticketContract: {
|
|
15378
15379
|
bucketName: string;
|
15379
15380
|
fileSize: number;
|
15380
15381
|
fileUrl: string | null;
|
15381
|
-
status?: string | undefined;
|
15382
15382
|
}[];
|
15383
15383
|
}>, "many">;
|
15384
15384
|
tags: z.ZodArray<z.ZodObject<{
|
@@ -15795,9 +15795,10 @@ export declare const ticketContract: {
|
|
15795
15795
|
fileSize: z.ZodNumber;
|
15796
15796
|
fileKey: z.ZodString;
|
15797
15797
|
fileUrl: z.ZodNullable<z.ZodString>;
|
15798
|
-
status: z.
|
15798
|
+
status: z.ZodNullable<z.ZodString>;
|
15799
15799
|
}, "strip", z.ZodTypeAny, {
|
15800
15800
|
id: string;
|
15801
|
+
status: string | null;
|
15801
15802
|
createdAt: Date;
|
15802
15803
|
updatedAt: Date;
|
15803
15804
|
deletedAt: Date | null;
|
@@ -15806,9 +15807,9 @@ export declare const ticketContract: {
|
|
15806
15807
|
bucketName: string;
|
15807
15808
|
fileSize: number;
|
15808
15809
|
fileUrl: string | null;
|
15809
|
-
status?: string | undefined;
|
15810
15810
|
}, {
|
15811
15811
|
id: string;
|
15812
|
+
status: string | null;
|
15812
15813
|
createdAt: Date;
|
15813
15814
|
updatedAt: Date;
|
15814
15815
|
deletedAt: Date | null;
|
@@ -15817,7 +15818,6 @@ export declare const ticketContract: {
|
|
15817
15818
|
bucketName: string;
|
15818
15819
|
fileSize: number;
|
15819
15820
|
fileUrl: string | null;
|
15820
|
-
status?: string | undefined;
|
15821
15821
|
}>, "many">;
|
15822
15822
|
}, "strip", z.ZodTypeAny, {
|
15823
15823
|
id: string;
|
@@ -15844,6 +15844,7 @@ export declare const ticketContract: {
|
|
15844
15844
|
dateValue: Date | null;
|
15845
15845
|
uploads: {
|
15846
15846
|
id: string;
|
15847
|
+
status: string | null;
|
15847
15848
|
createdAt: Date;
|
15848
15849
|
updatedAt: Date;
|
15849
15850
|
deletedAt: Date | null;
|
@@ -15852,7 +15853,6 @@ export declare const ticketContract: {
|
|
15852
15853
|
bucketName: string;
|
15853
15854
|
fileSize: number;
|
15854
15855
|
fileUrl: string | null;
|
15855
|
-
status?: string | undefined;
|
15856
15856
|
}[];
|
15857
15857
|
}, {
|
15858
15858
|
id: string;
|
@@ -15879,6 +15879,7 @@ export declare const ticketContract: {
|
|
15879
15879
|
dateValue: Date | null;
|
15880
15880
|
uploads: {
|
15881
15881
|
id: string;
|
15882
|
+
status: string | null;
|
15882
15883
|
createdAt: Date;
|
15883
15884
|
updatedAt: Date;
|
15884
15885
|
deletedAt: Date | null;
|
@@ -15887,7 +15888,6 @@ export declare const ticketContract: {
|
|
15887
15888
|
bucketName: string;
|
15888
15889
|
fileSize: number;
|
15889
15890
|
fileUrl: string | null;
|
15890
|
-
status?: string | undefined;
|
15891
15891
|
}[];
|
15892
15892
|
}>, "many">;
|
15893
15893
|
contactEmails: z.ZodArray<z.ZodObject<{
|
@@ -16027,6 +16027,7 @@ export declare const ticketContract: {
|
|
16027
16027
|
dateValue: Date | null;
|
16028
16028
|
uploads: {
|
16029
16029
|
id: string;
|
16030
|
+
status: string | null;
|
16030
16031
|
createdAt: Date;
|
16031
16032
|
updatedAt: Date;
|
16032
16033
|
deletedAt: Date | null;
|
@@ -16035,7 +16036,6 @@ export declare const ticketContract: {
|
|
16035
16036
|
bucketName: string;
|
16036
16037
|
fileSize: number;
|
16037
16038
|
fileUrl: string | null;
|
16038
|
-
status?: string | undefined;
|
16039
16039
|
}[];
|
16040
16040
|
}[];
|
16041
16041
|
company: {
|
@@ -16123,6 +16123,7 @@ export declare const ticketContract: {
|
|
16123
16123
|
dateValue: Date | null;
|
16124
16124
|
uploads: {
|
16125
16125
|
id: string;
|
16126
|
+
status: string | null;
|
16126
16127
|
createdAt: Date;
|
16127
16128
|
updatedAt: Date;
|
16128
16129
|
deletedAt: Date | null;
|
@@ -16131,7 +16132,6 @@ export declare const ticketContract: {
|
|
16131
16132
|
bucketName: string;
|
16132
16133
|
fileSize: number;
|
16133
16134
|
fileUrl: string | null;
|
16134
|
-
status?: string | undefined;
|
16135
16135
|
}[];
|
16136
16136
|
}[];
|
16137
16137
|
company: {
|
@@ -16605,6 +16605,7 @@ export declare const ticketContract: {
|
|
16605
16605
|
dateValue: Date | null;
|
16606
16606
|
uploads: {
|
16607
16607
|
id: string;
|
16608
|
+
status: string | null;
|
16608
16609
|
createdAt: Date;
|
16609
16610
|
updatedAt: Date;
|
16610
16611
|
deletedAt: Date | null;
|
@@ -16613,7 +16614,6 @@ export declare const ticketContract: {
|
|
16613
16614
|
bucketName: string;
|
16614
16615
|
fileSize: number;
|
16615
16616
|
fileUrl: string | null;
|
16616
|
-
status?: string | undefined;
|
16617
16617
|
}[];
|
16618
16618
|
}[];
|
16619
16619
|
company: {
|
@@ -16694,6 +16694,7 @@ export declare const ticketContract: {
|
|
16694
16694
|
dateValue: Date | null;
|
16695
16695
|
uploads: {
|
16696
16696
|
id: string;
|
16697
|
+
status: string | null;
|
16697
16698
|
createdAt: Date;
|
16698
16699
|
updatedAt: Date;
|
16699
16700
|
deletedAt: Date | null;
|
@@ -16702,7 +16703,6 @@ export declare const ticketContract: {
|
|
16702
16703
|
bucketName: string;
|
16703
16704
|
fileSize: number;
|
16704
16705
|
fileUrl: string | null;
|
16705
|
-
status?: string | undefined;
|
16706
16706
|
}[];
|
16707
16707
|
}[];
|
16708
16708
|
tags: {
|
@@ -16931,6 +16931,7 @@ export declare const ticketContract: {
|
|
16931
16931
|
dateValue: Date | null;
|
16932
16932
|
uploads: {
|
16933
16933
|
id: string;
|
16934
|
+
status: string | null;
|
16934
16935
|
createdAt: Date;
|
16935
16936
|
updatedAt: Date;
|
16936
16937
|
deletedAt: Date | null;
|
@@ -16939,7 +16940,6 @@ export declare const ticketContract: {
|
|
16939
16940
|
bucketName: string;
|
16940
16941
|
fileSize: number;
|
16941
16942
|
fileUrl: string | null;
|
16942
|
-
status?: string | undefined;
|
16943
16943
|
}[];
|
16944
16944
|
}[];
|
16945
16945
|
company: {
|
@@ -17020,6 +17020,7 @@ export declare const ticketContract: {
|
|
17020
17020
|
dateValue: Date | null;
|
17021
17021
|
uploads: {
|
17022
17022
|
id: string;
|
17023
|
+
status: string | null;
|
17023
17024
|
createdAt: Date;
|
17024
17025
|
updatedAt: Date;
|
17025
17026
|
deletedAt: Date | null;
|
@@ -17028,7 +17029,6 @@ export declare const ticketContract: {
|
|
17028
17029
|
bucketName: string;
|
17029
17030
|
fileSize: number;
|
17030
17031
|
fileUrl: string | null;
|
17031
|
-
status?: string | undefined;
|
17032
17032
|
}[];
|
17033
17033
|
}[];
|
17034
17034
|
tags: {
|
@@ -17259,6 +17259,7 @@ export declare const ticketContract: {
|
|
17259
17259
|
dateValue: Date | null;
|
17260
17260
|
uploads: {
|
17261
17261
|
id: string;
|
17262
|
+
status: string | null;
|
17262
17263
|
createdAt: Date;
|
17263
17264
|
updatedAt: Date;
|
17264
17265
|
deletedAt: Date | null;
|
@@ -17267,7 +17268,6 @@ export declare const ticketContract: {
|
|
17267
17268
|
bucketName: string;
|
17268
17269
|
fileSize: number;
|
17269
17270
|
fileUrl: string | null;
|
17270
|
-
status?: string | undefined;
|
17271
17271
|
}[];
|
17272
17272
|
}[];
|
17273
17273
|
company: {
|
@@ -17348,6 +17348,7 @@ export declare const ticketContract: {
|
|
17348
17348
|
dateValue: Date | null;
|
17349
17349
|
uploads: {
|
17350
17350
|
id: string;
|
17351
|
+
status: string | null;
|
17351
17352
|
createdAt: Date;
|
17352
17353
|
updatedAt: Date;
|
17353
17354
|
deletedAt: Date | null;
|
@@ -17356,7 +17357,6 @@ export declare const ticketContract: {
|
|
17356
17357
|
bucketName: string;
|
17357
17358
|
fileSize: number;
|
17358
17359
|
fileUrl: string | null;
|
17359
|
-
status?: string | undefined;
|
17360
17360
|
}[];
|
17361
17361
|
}[];
|
17362
17362
|
tags: {
|
@@ -17588,6 +17588,7 @@ export declare const ticketContract: {
|
|
17588
17588
|
dateValue: Date | null;
|
17589
17589
|
uploads: {
|
17590
17590
|
id: string;
|
17591
|
+
status: string | null;
|
17591
17592
|
createdAt: Date;
|
17592
17593
|
updatedAt: Date;
|
17593
17594
|
deletedAt: Date | null;
|
@@ -17596,7 +17597,6 @@ export declare const ticketContract: {
|
|
17596
17597
|
bucketName: string;
|
17597
17598
|
fileSize: number;
|
17598
17599
|
fileUrl: string | null;
|
17599
|
-
status?: string | undefined;
|
17600
17600
|
}[];
|
17601
17601
|
}[];
|
17602
17602
|
company: {
|
@@ -17677,6 +17677,7 @@ export declare const ticketContract: {
|
|
17677
17677
|
dateValue: Date | null;
|
17678
17678
|
uploads: {
|
17679
17679
|
id: string;
|
17680
|
+
status: string | null;
|
17680
17681
|
createdAt: Date;
|
17681
17682
|
updatedAt: Date;
|
17682
17683
|
deletedAt: Date | null;
|
@@ -17685,7 +17686,6 @@ export declare const ticketContract: {
|
|
17685
17686
|
bucketName: string;
|
17686
17687
|
fileSize: number;
|
17687
17688
|
fileUrl: string | null;
|
17688
|
-
status?: string | undefined;
|
17689
17689
|
}[];
|
17690
17690
|
}[];
|
17691
17691
|
tags: {
|
@@ -18167,9 +18167,10 @@ export declare const ticketContract: {
|
|
18167
18167
|
fileSize: z.ZodNumber;
|
18168
18168
|
fileKey: z.ZodString;
|
18169
18169
|
fileUrl: z.ZodNullable<z.ZodString>;
|
18170
|
-
status: z.
|
18170
|
+
status: z.ZodNullable<z.ZodString>;
|
18171
18171
|
}, "strip", z.ZodTypeAny, {
|
18172
18172
|
id: string;
|
18173
|
+
status: string | null;
|
18173
18174
|
createdAt: Date;
|
18174
18175
|
updatedAt: Date;
|
18175
18176
|
deletedAt: Date | null;
|
@@ -18178,9 +18179,9 @@ export declare const ticketContract: {
|
|
18178
18179
|
bucketName: string;
|
18179
18180
|
fileSize: number;
|
18180
18181
|
fileUrl: string | null;
|
18181
|
-
status?: string | undefined;
|
18182
18182
|
}, {
|
18183
18183
|
id: string;
|
18184
|
+
status: string | null;
|
18184
18185
|
createdAt: Date;
|
18185
18186
|
updatedAt: Date;
|
18186
18187
|
deletedAt: Date | null;
|
@@ -18189,7 +18190,6 @@ export declare const ticketContract: {
|
|
18189
18190
|
bucketName: string;
|
18190
18191
|
fileSize: number;
|
18191
18192
|
fileUrl: string | null;
|
18192
|
-
status?: string | undefined;
|
18193
18193
|
}>, "many">;
|
18194
18194
|
}, "strip", z.ZodTypeAny, {
|
18195
18195
|
id: string;
|
@@ -18216,6 +18216,7 @@ export declare const ticketContract: {
|
|
18216
18216
|
dateValue: Date | null;
|
18217
18217
|
uploads: {
|
18218
18218
|
id: string;
|
18219
|
+
status: string | null;
|
18219
18220
|
createdAt: Date;
|
18220
18221
|
updatedAt: Date;
|
18221
18222
|
deletedAt: Date | null;
|
@@ -18224,7 +18225,6 @@ export declare const ticketContract: {
|
|
18224
18225
|
bucketName: string;
|
18225
18226
|
fileSize: number;
|
18226
18227
|
fileUrl: string | null;
|
18227
|
-
status?: string | undefined;
|
18228
18228
|
}[];
|
18229
18229
|
}, {
|
18230
18230
|
id: string;
|
@@ -18251,6 +18251,7 @@ export declare const ticketContract: {
|
|
18251
18251
|
dateValue: Date | null;
|
18252
18252
|
uploads: {
|
18253
18253
|
id: string;
|
18254
|
+
status: string | null;
|
18254
18255
|
createdAt: Date;
|
18255
18256
|
updatedAt: Date;
|
18256
18257
|
deletedAt: Date | null;
|
@@ -18259,7 +18260,6 @@ export declare const ticketContract: {
|
|
18259
18260
|
bucketName: string;
|
18260
18261
|
fileSize: number;
|
18261
18262
|
fileUrl: string | null;
|
18262
|
-
status?: string | undefined;
|
18263
18263
|
}[];
|
18264
18264
|
}>;
|
18265
18265
|
}, "strip", z.ZodTypeAny, {
|
@@ -18288,6 +18288,7 @@ export declare const ticketContract: {
|
|
18288
18288
|
dateValue: Date | null;
|
18289
18289
|
uploads: {
|
18290
18290
|
id: string;
|
18291
|
+
status: string | null;
|
18291
18292
|
createdAt: Date;
|
18292
18293
|
updatedAt: Date;
|
18293
18294
|
deletedAt: Date | null;
|
@@ -18296,7 +18297,6 @@ export declare const ticketContract: {
|
|
18296
18297
|
bucketName: string;
|
18297
18298
|
fileSize: number;
|
18298
18299
|
fileUrl: string | null;
|
18299
|
-
status?: string | undefined;
|
18300
18300
|
}[];
|
18301
18301
|
};
|
18302
18302
|
requestId: string;
|
@@ -18326,6 +18326,7 @@ export declare const ticketContract: {
|
|
18326
18326
|
dateValue: Date | null;
|
18327
18327
|
uploads: {
|
18328
18328
|
id: string;
|
18329
|
+
status: string | null;
|
18329
18330
|
createdAt: Date;
|
18330
18331
|
updatedAt: Date;
|
18331
18332
|
deletedAt: Date | null;
|
@@ -18334,7 +18335,6 @@ export declare const ticketContract: {
|
|
18334
18335
|
bucketName: string;
|
18335
18336
|
fileSize: number;
|
18336
18337
|
fileUrl: string | null;
|
18337
|
-
status?: string | undefined;
|
18338
18338
|
}[];
|
18339
18339
|
};
|
18340
18340
|
requestId: string;
|