expo-backend-types 0.53.0-EXPO-366-EB-Schema-codigo-referido.3 → 0.53.0-EXPO-366-EB-Schema-codigo-referido.5
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/src/event/dto/get-all-statistics.dto.d.ts +5 -5
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -10
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +0 -5
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -6
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -10
- package/dist/src/mi-expo/dto/login.dto.d.ts +10 -10
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -6
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -10
- package/dist/src/production/dto/get-all-production.dto.d.ts +14 -14
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -14
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -10
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -16
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -10
- package/dist/src/profile/dto/profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -6
- package/dist/src/schema/profile.schema.d.ts +3 -3
- package/dist/src/schema/profile.schema.js +1 -1
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -10
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -10
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -7
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -7
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -6
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -10
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -24
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -24
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -24
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -10
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -6
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +0 -5
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +0 -6
- package/dist/src/ticket/dto/ticket.dto.d.ts +0 -6
- package/dist/src/ticket/dto/ticket.dto.js +0 -1
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -6
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +7 -10
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/find-group-ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +6 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +1 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +12 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +1 -0
- package/dist/types/prisma-schema/edge.js +3 -4
- package/dist/types/prisma-schema/index-browser.js +0 -1
- package/dist/types/prisma-schema/index.d.ts +62 -110
- package/dist/types/prisma-schema/index.js +3 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -3
- package/dist/types/prisma-schema/wasm.js +0 -1
- package/dist/types/schema.d.ts +25 -33
- package/package.json +1 -1
@@ -15,7 +15,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
19
18
|
created_at: z.ZodDate;
|
20
19
|
updated_at: z.ZodDate;
|
21
20
|
}, {
|
@@ -76,7 +75,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
76
75
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
77
76
|
created_at: z.ZodDate;
|
78
77
|
updated_at: z.ZodDate;
|
79
|
-
referralCode: z.
|
78
|
+
referralCode: z.ZodString;
|
80
79
|
}, "strip", z.ZodTypeAny, {
|
81
80
|
id: string;
|
82
81
|
username: string | null;
|
@@ -102,7 +101,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
102
101
|
residenceLocationId: string | null;
|
103
102
|
isInTrash: boolean;
|
104
103
|
movedToTrashDate: Date | null;
|
105
|
-
referralCode: string
|
104
|
+
referralCode: string;
|
106
105
|
}, {
|
107
106
|
id: string;
|
108
107
|
username: string | null;
|
@@ -127,7 +126,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
127
126
|
residenceLocationId: string | null;
|
128
127
|
isInTrash: boolean;
|
129
128
|
movedToTrashDate: Date | null;
|
130
|
-
referralCode: string
|
129
|
+
referralCode: string;
|
131
130
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
132
131
|
}>>;
|
133
132
|
}>, "strip", z.ZodTypeAny, {
|
@@ -161,7 +160,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
161
160
|
residenceLocationId: string | null;
|
162
161
|
isInTrash: boolean;
|
163
162
|
movedToTrashDate: Date | null;
|
164
|
-
referralCode: string
|
163
|
+
referralCode: string;
|
165
164
|
} | null;
|
166
165
|
id: string;
|
167
166
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -172,7 +171,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
172
171
|
seat: number | null;
|
173
172
|
created_at: Date;
|
174
173
|
updated_at: Date;
|
175
|
-
referralCode: string | null;
|
176
174
|
scanned: boolean;
|
177
175
|
scannedAt: Date | null;
|
178
176
|
ticketGroupId: string | null;
|
@@ -206,7 +204,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
206
204
|
residenceLocationId: string | null;
|
207
205
|
isInTrash: boolean;
|
208
206
|
movedToTrashDate: Date | null;
|
209
|
-
referralCode: string
|
207
|
+
referralCode: string;
|
210
208
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
211
209
|
} | null;
|
212
210
|
id: string;
|
@@ -218,7 +216,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
218
216
|
seat: number | null;
|
219
217
|
created_at: Date;
|
220
218
|
updated_at: Date;
|
221
|
-
referralCode: string | null;
|
222
219
|
scanned: boolean;
|
223
220
|
scannedAt: Date | null;
|
224
221
|
ticketGroupId: string | null;
|
@@ -255,7 +252,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
255
252
|
residenceLocationId: string | null;
|
256
253
|
isInTrash: boolean;
|
257
254
|
movedToTrashDate: Date | null;
|
258
|
-
referralCode: string
|
255
|
+
referralCode: string;
|
259
256
|
} | null;
|
260
257
|
id: string;
|
261
258
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -266,7 +263,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
266
263
|
seat: number | null;
|
267
264
|
created_at: Date;
|
268
265
|
updated_at: Date;
|
269
|
-
referralCode: string | null;
|
270
266
|
scanned: boolean;
|
271
267
|
scannedAt: Date | null;
|
272
268
|
ticketGroupId: string | null;
|
@@ -302,7 +298,7 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
302
298
|
residenceLocationId: string | null;
|
303
299
|
isInTrash: boolean;
|
304
300
|
movedToTrashDate: Date | null;
|
305
|
-
referralCode: string
|
301
|
+
referralCode: string;
|
306
302
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
307
303
|
} | null;
|
308
304
|
id: string;
|
@@ -314,7 +310,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
314
310
|
seat: number | null;
|
315
311
|
created_at: Date;
|
316
312
|
updated_at: Date;
|
317
|
-
referralCode: string | null;
|
318
313
|
scanned: boolean;
|
319
314
|
scannedAt: Date | null;
|
320
315
|
ticketGroupId: string | null;
|
@@ -336,7 +331,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
336
331
|
scanned: z.ZodBoolean;
|
337
332
|
scannedAt: z.ZodNullable<z.ZodString>;
|
338
333
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
339
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
340
334
|
created_at: z.ZodString;
|
341
335
|
updated_at: z.ZodString;
|
342
336
|
event: z.ZodObject<{
|
@@ -383,7 +377,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
383
377
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
384
378
|
created_at: z.ZodString;
|
385
379
|
updated_at: z.ZodString;
|
386
|
-
referralCode: z.
|
380
|
+
referralCode: z.ZodString;
|
387
381
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
388
382
|
id: string;
|
389
383
|
username: string | null;
|
@@ -409,7 +403,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
409
403
|
residenceLocationId: string | null;
|
410
404
|
isInTrash: boolean;
|
411
405
|
movedToTrashDate: string | null;
|
412
|
-
referralCode: string
|
406
|
+
referralCode: string;
|
413
407
|
}, {
|
414
408
|
id: string;
|
415
409
|
username: string | null;
|
@@ -434,7 +428,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
434
428
|
residenceLocationId: string | null;
|
435
429
|
isInTrash: boolean;
|
436
430
|
movedToTrashDate: string | null;
|
437
|
-
referralCode: string
|
431
|
+
referralCode: string;
|
438
432
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
439
433
|
}>>;
|
440
434
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -468,7 +462,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
468
462
|
residenceLocationId: string | null;
|
469
463
|
isInTrash: boolean;
|
470
464
|
movedToTrashDate: string | null;
|
471
|
-
referralCode: string
|
465
|
+
referralCode: string;
|
472
466
|
} | null;
|
473
467
|
id: string;
|
474
468
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -479,7 +473,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
479
473
|
seat: number | null;
|
480
474
|
created_at: string;
|
481
475
|
updated_at: string;
|
482
|
-
referralCode: string | null;
|
483
476
|
scanned: boolean;
|
484
477
|
scannedAt: string | null;
|
485
478
|
ticketGroupId: string | null;
|
@@ -513,7 +506,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
513
506
|
residenceLocationId: string | null;
|
514
507
|
isInTrash: boolean;
|
515
508
|
movedToTrashDate: string | null;
|
516
|
-
referralCode: string
|
509
|
+
referralCode: string;
|
517
510
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
518
511
|
} | null;
|
519
512
|
id: string;
|
@@ -525,7 +518,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
525
518
|
seat: number | null;
|
526
519
|
created_at: string;
|
527
520
|
updated_at: string;
|
528
|
-
referralCode: string | null;
|
529
521
|
scanned: boolean;
|
530
522
|
scannedAt: string | null;
|
531
523
|
ticketGroupId: string | null;
|
@@ -562,7 +554,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
562
554
|
residenceLocationId: string | null;
|
563
555
|
isInTrash: boolean;
|
564
556
|
movedToTrashDate: string | null;
|
565
|
-
referralCode: string
|
557
|
+
referralCode: string;
|
566
558
|
} | null;
|
567
559
|
id: string;
|
568
560
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -573,7 +565,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
573
565
|
seat: number | null;
|
574
566
|
created_at: string;
|
575
567
|
updated_at: string;
|
576
|
-
referralCode: string | null;
|
577
568
|
scanned: boolean;
|
578
569
|
scannedAt: string | null;
|
579
570
|
ticketGroupId: string | null;
|
@@ -609,7 +600,7 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
609
600
|
residenceLocationId: string | null;
|
610
601
|
isInTrash: boolean;
|
611
602
|
movedToTrashDate: string | null;
|
612
|
-
referralCode: string
|
603
|
+
referralCode: string;
|
613
604
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
614
605
|
} | null;
|
615
606
|
id: string;
|
@@ -621,7 +612,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
621
612
|
seat: number | null;
|
622
613
|
created_at: string;
|
623
614
|
updated_at: string;
|
624
|
-
referralCode: string | null;
|
625
615
|
scanned: boolean;
|
626
616
|
scannedAt: string | null;
|
627
617
|
ticketGroupId: string | null;
|
@@ -15,7 +15,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
19
18
|
created_at: z.ZodDate;
|
20
19
|
updated_at: z.ZodDate;
|
21
20
|
}, {
|
@@ -99,7 +98,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
99
98
|
seat: number | null;
|
100
99
|
created_at: Date;
|
101
100
|
updated_at: Date;
|
102
|
-
referralCode: string | null;
|
103
101
|
scanned: boolean;
|
104
102
|
scannedAt: Date | null;
|
105
103
|
ticketGroupId: string | null;
|
@@ -131,7 +129,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
131
129
|
seat: number | null;
|
132
130
|
created_at: Date;
|
133
131
|
updated_at: Date;
|
134
|
-
referralCode: string | null;
|
135
132
|
scanned: boolean;
|
136
133
|
scannedAt: Date | null;
|
137
134
|
ticketGroupId: string | null;
|
@@ -165,7 +162,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
165
162
|
seat: number | null;
|
166
163
|
created_at: Date;
|
167
164
|
updated_at: Date;
|
168
|
-
referralCode: string | null;
|
169
165
|
scanned: boolean;
|
170
166
|
scannedAt: Date | null;
|
171
167
|
ticketGroupId: string | null;
|
@@ -199,7 +195,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
199
195
|
seat: number | null;
|
200
196
|
created_at: Date;
|
201
197
|
updated_at: Date;
|
202
|
-
referralCode: string | null;
|
203
198
|
scanned: boolean;
|
204
199
|
scannedAt: Date | null;
|
205
200
|
ticketGroupId: string | null;
|
@@ -221,7 +216,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
221
216
|
scanned: z.ZodBoolean;
|
222
217
|
scannedAt: z.ZodNullable<z.ZodString>;
|
223
218
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
224
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
225
219
|
created_at: z.ZodString;
|
226
220
|
updated_at: z.ZodString;
|
227
221
|
event: z.ZodObject<{
|
@@ -304,7 +298,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
304
298
|
seat: number | null;
|
305
299
|
created_at: string;
|
306
300
|
updated_at: string;
|
307
|
-
referralCode: string | null;
|
308
301
|
scanned: boolean;
|
309
302
|
scannedAt: string | null;
|
310
303
|
ticketGroupId: string | null;
|
@@ -336,7 +329,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
336
329
|
seat: number | null;
|
337
330
|
created_at: string;
|
338
331
|
updated_at: string;
|
339
|
-
referralCode: string | null;
|
340
332
|
scanned: boolean;
|
341
333
|
scannedAt: string | null;
|
342
334
|
ticketGroupId: string | null;
|
@@ -370,7 +362,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
370
362
|
seat: number | null;
|
371
363
|
created_at: string;
|
372
364
|
updated_at: string;
|
373
|
-
referralCode: string | null;
|
374
365
|
scanned: boolean;
|
375
366
|
scannedAt: string | null;
|
376
367
|
ticketGroupId: string | null;
|
@@ -404,7 +395,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
404
395
|
seat: number | null;
|
405
396
|
created_at: string;
|
406
397
|
updated_at: string;
|
407
|
-
referralCode: string | null;
|
408
398
|
scanned: boolean;
|
409
399
|
scannedAt: string | null;
|
410
400
|
ticketGroupId: string | null;
|
@@ -13,7 +13,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
13
13
|
scanned: import("zod").ZodBoolean;
|
14
14
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
15
15
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
16
|
-
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
17
16
|
created_at: import("zod").ZodDate;
|
18
17
|
updated_at: import("zod").ZodDate;
|
19
18
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -26,7 +25,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
26
25
|
seat: number | null;
|
27
26
|
created_at: Date;
|
28
27
|
updated_at: Date;
|
29
|
-
referralCode: string | null;
|
30
28
|
scanned: boolean;
|
31
29
|
scannedAt: Date | null;
|
32
30
|
ticketGroupId: string | null;
|
@@ -40,7 +38,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
40
38
|
seat: number | null;
|
41
39
|
created_at: Date;
|
42
40
|
updated_at: Date;
|
43
|
-
referralCode: string | null;
|
44
41
|
scanned: boolean;
|
45
42
|
scannedAt: Date | null;
|
46
43
|
ticketGroupId: string | null;
|
@@ -60,7 +57,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
60
57
|
scanned: import("zod").ZodBoolean;
|
61
58
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
62
59
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
63
|
-
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
64
60
|
created_at: import("zod").ZodString;
|
65
61
|
updated_at: import("zod").ZodString;
|
66
62
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -73,7 +69,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
73
69
|
seat: number | null;
|
74
70
|
created_at: string;
|
75
71
|
updated_at: string;
|
76
|
-
referralCode: string | null;
|
77
72
|
scanned: boolean;
|
78
73
|
scannedAt: string | null;
|
79
74
|
ticketGroupId: string | null;
|
@@ -87,7 +82,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
87
82
|
seat: number | null;
|
88
83
|
created_at: string;
|
89
84
|
updated_at: string;
|
90
|
-
referralCode: string | null;
|
91
85
|
scanned: boolean;
|
92
86
|
scannedAt: string | null;
|
93
87
|
ticketGroupId: string | null;
|
@@ -15,7 +15,6 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
15
15
|
scanned: z.ZodBoolean;
|
16
16
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
17
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
18
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
19
18
|
created_at: z.ZodDate;
|
20
19
|
updated_at: z.ZodDate;
|
21
20
|
}, "strip", z.ZodTypeAny, {
|
@@ -28,7 +27,6 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
28
27
|
seat: number | null;
|
29
28
|
created_at: Date;
|
30
29
|
updated_at: Date;
|
31
|
-
referralCode: string | null;
|
32
30
|
scanned: boolean;
|
33
31
|
scannedAt: Date | null;
|
34
32
|
ticketGroupId: string | null;
|
@@ -42,7 +40,6 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
42
40
|
seat: number | null;
|
43
41
|
created_at: Date;
|
44
42
|
updated_at: Date;
|
45
|
-
referralCode: string | null;
|
46
43
|
scanned: boolean;
|
47
44
|
scannedAt: Date | null;
|
48
45
|
ticketGroupId: string | null;
|
@@ -58,7 +55,6 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
58
55
|
seat: number | null;
|
59
56
|
created_at: Date;
|
60
57
|
updated_at: Date;
|
61
|
-
referralCode: string | null;
|
62
58
|
scanned: boolean;
|
63
59
|
scannedAt: Date | null;
|
64
60
|
ticketGroupId: string | null;
|
@@ -74,7 +70,6 @@ export declare const findByTicketGroupTicketResponseSchema: z.ZodObject<{
|
|
74
70
|
seat: number | null;
|
75
71
|
created_at: Date;
|
76
72
|
updated_at: Date;
|
77
|
-
referralCode: string | null;
|
78
73
|
scanned: boolean;
|
79
74
|
scannedAt: Date | null;
|
80
75
|
ticketGroupId: string | null;
|
@@ -36,7 +36,6 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
36
36
|
scanned: z.ZodBoolean;
|
37
37
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
38
38
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
39
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
40
39
|
created_at: z.ZodDate;
|
41
40
|
updated_at: z.ZodDate;
|
42
41
|
}, "strip", z.ZodTypeAny, {
|
@@ -49,7 +48,6 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
49
48
|
seat: number | null;
|
50
49
|
created_at: Date;
|
51
50
|
updated_at: Date;
|
52
|
-
referralCode: string | null;
|
53
51
|
scanned: boolean;
|
54
52
|
scannedAt: Date | null;
|
55
53
|
ticketGroupId: string | null;
|
@@ -63,7 +61,6 @@ export declare const scanTicketResponseSchema: z.ZodObject<{
|
|
63
61
|
seat: number | null;
|
64
62
|
created_at: Date;
|
65
63
|
updated_at: Date;
|
66
|
-
referralCode: string | null;
|
67
64
|
scanned: boolean;
|
68
65
|
scannedAt: Date | null;
|
69
66
|
ticketGroupId: string | null;
|
@@ -83,7 +80,6 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
83
80
|
scanned: z.ZodBoolean;
|
84
81
|
scannedAt: z.ZodNullable<z.ZodString>;
|
85
82
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
86
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
87
83
|
created_at: z.ZodString;
|
88
84
|
updated_at: z.ZodString;
|
89
85
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -96,7 +92,6 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
96
92
|
seat: number | null;
|
97
93
|
created_at: string;
|
98
94
|
updated_at: string;
|
99
|
-
referralCode: string | null;
|
100
95
|
scanned: boolean;
|
101
96
|
scannedAt: string | null;
|
102
97
|
ticketGroupId: string | null;
|
@@ -110,7 +105,6 @@ declare const ScanTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
110
105
|
seat: number | null;
|
111
106
|
created_at: string;
|
112
107
|
updated_at: string;
|
113
|
-
referralCode: string | null;
|
114
108
|
scanned: boolean;
|
115
109
|
scannedAt: string | null;
|
116
110
|
ticketGroupId: string | null;
|
@@ -14,7 +14,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
14
14
|
scanned: z.ZodBoolean;
|
15
15
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
16
16
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
17
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
18
17
|
created_at: z.ZodDate;
|
19
18
|
updated_at: z.ZodDate;
|
20
19
|
}, "strip", z.ZodTypeAny, {
|
@@ -27,7 +26,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
27
26
|
seat: number | null;
|
28
27
|
created_at: Date;
|
29
28
|
updated_at: Date;
|
30
|
-
referralCode: string | null;
|
31
29
|
scanned: boolean;
|
32
30
|
scannedAt: Date | null;
|
33
31
|
ticketGroupId: string | null;
|
@@ -41,7 +39,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
41
39
|
seat: number | null;
|
42
40
|
created_at: Date;
|
43
41
|
updated_at: Date;
|
44
|
-
referralCode: string | null;
|
45
42
|
scanned: boolean;
|
46
43
|
scannedAt: Date | null;
|
47
44
|
ticketGroupId: string | null;
|
@@ -61,7 +58,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
61
58
|
scanned: z.ZodBoolean;
|
62
59
|
scannedAt: z.ZodNullable<z.ZodString>;
|
63
60
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
64
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
65
61
|
created_at: z.ZodString;
|
66
62
|
updated_at: z.ZodString;
|
67
63
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -74,7 +70,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
74
70
|
seat: number | null;
|
75
71
|
created_at: string;
|
76
72
|
updated_at: string;
|
77
|
-
referralCode: string | null;
|
78
73
|
scanned: boolean;
|
79
74
|
scannedAt: string | null;
|
80
75
|
ticketGroupId: string | null;
|
@@ -88,7 +83,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
88
83
|
seat: number | null;
|
89
84
|
created_at: string;
|
90
85
|
updated_at: string;
|
91
|
-
referralCode: string | null;
|
92
86
|
scanned: boolean;
|
93
87
|
scannedAt: string | null;
|
94
88
|
ticketGroupId: string | null;
|
@@ -23,7 +23,6 @@ exports.ticketSchema = zod_1.default.object({
|
|
23
23
|
scanned: zod_1.default.boolean(),
|
24
24
|
scannedAt: zod_1.default.date().nullable(),
|
25
25
|
ticketGroupId: ticket_group_dto_1.ticketGroupSchema.shape.id.nullable(),
|
26
|
-
referralCode: zod_1.default.string().nullable(),
|
27
26
|
created_at: zod_1.default.date(),
|
28
27
|
updated_at: zod_1.default.date(),
|
29
28
|
});
|
@@ -61,7 +61,6 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
61
61
|
scanned: import("zod").ZodBoolean;
|
62
62
|
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
63
63
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
64
|
-
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
65
64
|
created_at: import("zod").ZodDate;
|
66
65
|
updated_at: import("zod").ZodDate;
|
67
66
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -74,7 +73,6 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
74
73
|
seat: number | null;
|
75
74
|
created_at: Date;
|
76
75
|
updated_at: Date;
|
77
|
-
referralCode: string | null;
|
78
76
|
scanned: boolean;
|
79
77
|
scannedAt: Date | null;
|
80
78
|
ticketGroupId: string | null;
|
@@ -88,7 +86,6 @@ export declare const updateTicketResponseSchema: import("zod").ZodObject<{
|
|
88
86
|
seat: number | null;
|
89
87
|
created_at: Date;
|
90
88
|
updated_at: Date;
|
91
|
-
referralCode: string | null;
|
92
89
|
scanned: boolean;
|
93
90
|
scannedAt: Date | null;
|
94
91
|
ticketGroupId: string | null;
|
@@ -108,7 +105,6 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
108
105
|
scanned: import("zod").ZodBoolean;
|
109
106
|
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
110
107
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
111
|
-
referralCode: import("zod").ZodNullable<import("zod").ZodString>;
|
112
108
|
created_at: import("zod").ZodString;
|
113
109
|
updated_at: import("zod").ZodString;
|
114
110
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -121,7 +117,6 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
121
117
|
seat: number | null;
|
122
118
|
created_at: string;
|
123
119
|
updated_at: string;
|
124
|
-
referralCode: string | null;
|
125
120
|
scanned: boolean;
|
126
121
|
scannedAt: string | null;
|
127
122
|
ticketGroupId: string | null;
|
@@ -135,7 +130,6 @@ declare const UpdateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
135
130
|
seat: number | null;
|
136
131
|
created_at: string;
|
137
132
|
updated_at: string;
|
138
|
-
referralCode: string | null;
|
139
133
|
scanned: boolean;
|
140
134
|
scannedAt: string | null;
|
141
135
|
ticketGroupId: string | null;
|
@@ -8,6 +8,7 @@ export declare const createTicketGroupSchema: z.ZodObject<Pick<{
|
|
8
8
|
FREE: "FREE";
|
9
9
|
}>;
|
10
10
|
eventId: z.ZodString;
|
11
|
+
referralCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11
12
|
created_at: z.ZodDate;
|
12
13
|
updated_at: z.ZodDate;
|
13
14
|
}, "eventId" | "amountTickets">, "strip", z.ZodTypeAny, {
|
@@ -38,6 +39,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
38
39
|
FREE: "FREE";
|
39
40
|
}>;
|
40
41
|
eventId: z.ZodString;
|
42
|
+
referralCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
41
43
|
created_at: z.ZodDate;
|
42
44
|
updated_at: z.ZodDate;
|
43
45
|
}, {
|
@@ -56,7 +58,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
56
58
|
scanned: z.ZodBoolean;
|
57
59
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
58
60
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
59
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
60
61
|
created_at: z.ZodDate;
|
61
62
|
updated_at: z.ZodDate;
|
62
63
|
}, "strip", z.ZodTypeAny, {
|
@@ -69,7 +70,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
69
70
|
seat: number | null;
|
70
71
|
created_at: Date;
|
71
72
|
updated_at: Date;
|
72
|
-
referralCode: string | null;
|
73
73
|
scanned: boolean;
|
74
74
|
scannedAt: Date | null;
|
75
75
|
ticketGroupId: string | null;
|
@@ -83,7 +83,6 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
83
83
|
seat: number | null;
|
84
84
|
created_at: Date;
|
85
85
|
updated_at: Date;
|
86
|
-
referralCode: string | null;
|
87
86
|
scanned: boolean;
|
88
87
|
scannedAt: Date | null;
|
89
88
|
ticketGroupId: string | null;
|
@@ -175,11 +174,11 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
175
174
|
seat: number | null;
|
176
175
|
created_at: Date;
|
177
176
|
updated_at: Date;
|
178
|
-
referralCode: string | null;
|
179
177
|
scanned: boolean;
|
180
178
|
scannedAt: Date | null;
|
181
179
|
ticketGroupId: string | null;
|
182
180
|
}[];
|
181
|
+
referralCode?: string | null | undefined;
|
183
182
|
}, {
|
184
183
|
event: {
|
185
184
|
description: string | null;
|
@@ -215,11 +214,11 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
215
214
|
seat: number | null;
|
216
215
|
created_at: Date;
|
217
216
|
updated_at: Date;
|
218
|
-
referralCode: string | null;
|
219
217
|
scanned: boolean;
|
220
218
|
scannedAt: Date | null;
|
221
219
|
ticketGroupId: string | null;
|
222
220
|
}[];
|
221
|
+
referralCode?: string | null | undefined;
|
223
222
|
}>;
|
224
223
|
declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
225
224
|
id: z.ZodString;
|
@@ -230,6 +229,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
230
229
|
FREE: "FREE";
|
231
230
|
}>;
|
232
231
|
eventId: z.ZodString;
|
232
|
+
referralCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
233
233
|
created_at: z.ZodString;
|
234
234
|
updated_at: z.ZodString;
|
235
235
|
tickets: z.ZodArray<z.ZodObject<{
|
@@ -247,7 +247,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
247
247
|
scanned: z.ZodBoolean;
|
248
248
|
scannedAt: z.ZodNullable<z.ZodString>;
|
249
249
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
250
|
-
referralCode: z.ZodNullable<z.ZodString>;
|
251
250
|
created_at: z.ZodString;
|
252
251
|
updated_at: z.ZodString;
|
253
252
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -260,7 +259,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
260
259
|
seat: number | null;
|
261
260
|
created_at: string;
|
262
261
|
updated_at: string;
|
263
|
-
referralCode: string | null;
|
264
262
|
scanned: boolean;
|
265
263
|
scannedAt: string | null;
|
266
264
|
ticketGroupId: string | null;
|
@@ -274,7 +272,6 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
274
272
|
seat: number | null;
|
275
273
|
created_at: string;
|
276
274
|
updated_at: string;
|
277
|
-
referralCode: string | null;
|
278
275
|
scanned: boolean;
|
279
276
|
scannedAt: string | null;
|
280
277
|
ticketGroupId: string | null;
|
@@ -366,11 +363,11 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
366
363
|
seat: number | null;
|
367
364
|
created_at: string;
|
368
365
|
updated_at: string;
|
369
|
-
referralCode: string | null;
|
370
366
|
scanned: boolean;
|
371
367
|
scannedAt: string | null;
|
372
368
|
ticketGroupId: string | null;
|
373
369
|
}[];
|
370
|
+
referralCode?: string | null | undefined;
|
374
371
|
}, {
|
375
372
|
event: {
|
376
373
|
description: string | null;
|
@@ -406,11 +403,11 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
406
403
|
seat: number | null;
|
407
404
|
created_at: string;
|
408
405
|
updated_at: string;
|
409
|
-
referralCode: string | null;
|
410
406
|
scanned: boolean;
|
411
407
|
scannedAt: string | null;
|
412
408
|
ticketGroupId: string | null;
|
413
409
|
}[];
|
410
|
+
referralCode?: string | null | undefined;
|
414
411
|
}>>;
|
415
412
|
export declare class CreateTicketGroupResponseDto extends CreateTicketGroupResponseDto_base {
|
416
413
|
}
|
@@ -7,6 +7,7 @@ export declare const deleteTicketGroupResponseSchema: import("zod").ZodObject<{
|
|
7
7
|
FREE: "FREE";
|
8
8
|
}>;
|
9
9
|
eventId: import("zod").ZodString;
|
10
|
+
referralCode: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
10
11
|
created_at: import("zod").ZodDate;
|
11
12
|
updated_at: import("zod").ZodDate;
|
12
13
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -16,6 +17,7 @@ export declare const deleteTicketGroupResponseSchema: import("zod").ZodObject<{
|
|
16
17
|
amountTickets: number;
|
17
18
|
created_at: Date;
|
18
19
|
updated_at: Date;
|
20
|
+
referralCode?: string | null | undefined;
|
19
21
|
}, {
|
20
22
|
id: string;
|
21
23
|
eventId: string;
|
@@ -23,6 +25,7 @@ export declare const deleteTicketGroupResponseSchema: import("zod").ZodObject<{
|
|
23
25
|
amountTickets: number;
|
24
26
|
created_at: Date;
|
25
27
|
updated_at: Date;
|
28
|
+
referralCode?: string | null | undefined;
|
26
29
|
}>;
|
27
30
|
declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
28
31
|
id: import("zod").ZodString;
|
@@ -33,6 +36,7 @@ declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
33
36
|
FREE: "FREE";
|
34
37
|
}>;
|
35
38
|
eventId: import("zod").ZodString;
|
39
|
+
referralCode: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
36
40
|
created_at: import("zod").ZodString;
|
37
41
|
updated_at: import("zod").ZodString;
|
38
42
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -42,6 +46,7 @@ declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
42
46
|
amountTickets: number;
|
43
47
|
created_at: string;
|
44
48
|
updated_at: string;
|
49
|
+
referralCode?: string | null | undefined;
|
45
50
|
}, {
|
46
51
|
id: string;
|
47
52
|
eventId: string;
|
@@ -49,6 +54,7 @@ declare const DeleteTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
49
54
|
amountTickets: number;
|
50
55
|
created_at: string;
|
51
56
|
updated_at: string;
|
57
|
+
referralCode?: string | null | undefined;
|
52
58
|
}>>;
|
53
59
|
export declare class DeleteTicketGroupResponseDto extends DeleteTicketGroupResponseDto_base {
|
54
60
|
}
|