expo-backend-types 0.39.0 → 0.40.0
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/csv/dto/download-all-tables.dto.d.ts +0 -1
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
- package/dist/src/i18n/es.d.ts +8 -0
- package/dist/src/i18n/es.js +54 -143
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/i18n/translate.js +2 -2
- package/dist/src/i18n/translate.js.map +1 -1
- package/dist/src/image/dto/update-image.dto.d.ts +0 -1
- package/dist/src/schema/profile.schema.js +17 -7
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js +1 -2
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js.map +1 -1
- package/dist/src/ticket/constants.js +1 -2
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +28 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +14 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +0 -1
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +34 -0
- package/dist/src/ticket/dto/scan-ticket.dto.js +21 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/ticket.dto.js +2 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/exports.d.ts +1 -0
- package/dist/src/ticket/exports.js +1 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +20 -0
- package/dist/types/prisma-schema/edge.js +5 -3
- package/dist/types/prisma-schema/index-browser.js +2 -0
- package/dist/types/prisma-schema/index.d.ts +97 -1
- package/dist/types/prisma-schema/index.js +5 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +3 -1
- package/dist/types/prisma-schema/wasm.js +2 -0
- package/dist/types/schema.d.ts +85 -0
- package/package.json +14 -15
@@ -12,6 +12,8 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
12
12
|
mail: z.ZodString;
|
13
13
|
dni: z.ZodString;
|
14
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
15
|
+
scanned: z.ZodBoolean;
|
16
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
15
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
16
18
|
created_at: z.ZodDate;
|
17
19
|
updated_at: z.ZodDate;
|
@@ -130,6 +132,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
130
132
|
mail: z.ZodString;
|
131
133
|
dni: z.ZodString;
|
132
134
|
seat: z.ZodNullable<z.ZodNumber>;
|
135
|
+
scanned: z.ZodBoolean;
|
136
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
133
137
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
134
138
|
created_at: z.ZodDate;
|
135
139
|
updated_at: z.ZodDate;
|
@@ -202,6 +206,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
202
206
|
seat: number | null;
|
203
207
|
created_at: Date;
|
204
208
|
updated_at: Date;
|
209
|
+
scanned: boolean;
|
210
|
+
scannedAt: Date | null;
|
205
211
|
ticketGroupId: string | null;
|
206
212
|
}, {
|
207
213
|
event: {
|
@@ -228,6 +234,8 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
228
234
|
seat: number | null;
|
229
235
|
created_at: Date;
|
230
236
|
updated_at: Date;
|
237
|
+
scanned: boolean;
|
238
|
+
scannedAt: Date | null;
|
231
239
|
ticketGroupId: string | null;
|
232
240
|
}>, "many">;
|
233
241
|
export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
@@ -243,6 +251,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
243
251
|
mail: z.ZodString;
|
244
252
|
dni: z.ZodString;
|
245
253
|
seat: z.ZodNullable<z.ZodNumber>;
|
254
|
+
scanned: z.ZodBoolean;
|
255
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
246
256
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
247
257
|
created_at: z.ZodDate;
|
248
258
|
updated_at: z.ZodDate;
|
@@ -315,6 +325,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
315
325
|
seat: number | null;
|
316
326
|
created_at: Date;
|
317
327
|
updated_at: Date;
|
328
|
+
scanned: boolean;
|
329
|
+
scannedAt: Date | null;
|
318
330
|
ticketGroupId: string | null;
|
319
331
|
}, {
|
320
332
|
event: {
|
@@ -341,6 +353,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
341
353
|
seat: number | null;
|
342
354
|
created_at: Date;
|
343
355
|
updated_at: Date;
|
356
|
+
scanned: boolean;
|
357
|
+
scannedAt: Date | null;
|
344
358
|
ticketGroupId: string | null;
|
345
359
|
}>, "many">;
|
346
360
|
pdfs: z.ZodArray<z.ZodObject<{
|
@@ -379,6 +393,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
379
393
|
seat: number | null;
|
380
394
|
created_at: Date;
|
381
395
|
updated_at: Date;
|
396
|
+
scanned: boolean;
|
397
|
+
scannedAt: Date | null;
|
382
398
|
ticketGroupId: string | null;
|
383
399
|
}[];
|
384
400
|
pdfs: {
|
@@ -411,6 +427,8 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
411
427
|
seat: number | null;
|
412
428
|
created_at: Date;
|
413
429
|
updated_at: Date;
|
430
|
+
scanned: boolean;
|
431
|
+
scannedAt: Date | null;
|
414
432
|
ticketGroupId: string | null;
|
415
433
|
}[];
|
416
434
|
pdfs: {
|
@@ -431,6 +449,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
431
449
|
mail: z.ZodString;
|
432
450
|
dni: z.ZodString;
|
433
451
|
seat: z.ZodNullable<z.ZodNumber>;
|
452
|
+
scanned: z.ZodBoolean;
|
453
|
+
scannedAt: z.ZodNullable<z.ZodString>;
|
434
454
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
435
455
|
created_at: z.ZodString;
|
436
456
|
updated_at: z.ZodString;
|
@@ -502,6 +522,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
502
522
|
seat: number | null;
|
503
523
|
created_at: string;
|
504
524
|
updated_at: string;
|
525
|
+
scanned: boolean;
|
526
|
+
scannedAt: string | null;
|
505
527
|
ticketGroupId: string | null;
|
506
528
|
}, {
|
507
529
|
event: {
|
@@ -528,6 +550,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
528
550
|
seat: number | null;
|
529
551
|
created_at: string;
|
530
552
|
updated_at: string;
|
553
|
+
scanned: boolean;
|
554
|
+
scannedAt: string | null;
|
531
555
|
ticketGroupId: string | null;
|
532
556
|
}>, "many">;
|
533
557
|
pdfs: z.ZodArray<z.ZodObject<{
|
@@ -566,6 +590,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
566
590
|
seat: number | null;
|
567
591
|
created_at: string;
|
568
592
|
updated_at: string;
|
593
|
+
scanned: boolean;
|
594
|
+
scannedAt: string | null;
|
569
595
|
ticketGroupId: string | null;
|
570
596
|
}[];
|
571
597
|
pdfs: {
|
@@ -598,6 +624,8 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
598
624
|
seat: number | null;
|
599
625
|
created_at: string;
|
600
626
|
updated_at: string;
|
627
|
+
scanned: boolean;
|
628
|
+
scannedAt: string | null;
|
601
629
|
ticketGroupId: string | null;
|
602
630
|
}[];
|
603
631
|
pdfs: {
|
@@ -10,6 +10,8 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
10
10
|
mail: import("zod").ZodString;
|
11
11
|
dni: import("zod").ZodString;
|
12
12
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
13
|
+
scanned: import("zod").ZodBoolean;
|
14
|
+
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13
15
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
14
16
|
created_at: import("zod").ZodDate;
|
15
17
|
updated_at: import("zod").ZodDate;
|
@@ -76,6 +78,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
76
78
|
mail: import("zod").ZodString;
|
77
79
|
dni: import("zod").ZodString;
|
78
80
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
81
|
+
scanned: import("zod").ZodBoolean;
|
82
|
+
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
79
83
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
80
84
|
created_at: import("zod").ZodDate;
|
81
85
|
updated_at: import("zod").ZodDate;
|
@@ -148,6 +152,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
148
152
|
seat: number | null;
|
149
153
|
created_at: Date;
|
150
154
|
updated_at: Date;
|
155
|
+
scanned: boolean;
|
156
|
+
scannedAt: Date | null;
|
151
157
|
ticketGroupId: string | null;
|
152
158
|
}, {
|
153
159
|
event: {
|
@@ -174,6 +180,8 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
174
180
|
seat: number | null;
|
175
181
|
created_at: Date;
|
176
182
|
updated_at: Date;
|
183
|
+
scanned: boolean;
|
184
|
+
scannedAt: Date | null;
|
177
185
|
ticketGroupId: string | null;
|
178
186
|
}>;
|
179
187
|
declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -188,6 +196,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
188
196
|
mail: import("zod").ZodString;
|
189
197
|
dni: import("zod").ZodString;
|
190
198
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
199
|
+
scanned: import("zod").ZodBoolean;
|
200
|
+
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
191
201
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
192
202
|
created_at: import("zod").ZodString;
|
193
203
|
updated_at: import("zod").ZodString;
|
@@ -259,6 +269,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
259
269
|
seat: number | null;
|
260
270
|
created_at: string;
|
261
271
|
updated_at: string;
|
272
|
+
scanned: boolean;
|
273
|
+
scannedAt: string | null;
|
262
274
|
ticketGroupId: string | null;
|
263
275
|
}, {
|
264
276
|
event: {
|
@@ -285,6 +297,8 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
285
297
|
seat: number | null;
|
286
298
|
created_at: string;
|
287
299
|
updated_at: string;
|
300
|
+
scanned: boolean;
|
301
|
+
scannedAt: string | null;
|
288
302
|
ticketGroupId: string | null;
|
289
303
|
}>>;
|
290
304
|
export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
|
@@ -10,6 +10,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
10
10
|
mail: import("zod").ZodString;
|
11
11
|
dni: import("zod").ZodString;
|
12
12
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
13
|
+
scanned: import("zod").ZodBoolean;
|
14
|
+
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
13
15
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
14
16
|
created_at: import("zod").ZodDate;
|
15
17
|
updated_at: import("zod").ZodDate;
|
@@ -23,6 +25,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
23
25
|
seat: number | null;
|
24
26
|
created_at: Date;
|
25
27
|
updated_at: Date;
|
28
|
+
scanned: boolean;
|
29
|
+
scannedAt: Date | null;
|
26
30
|
ticketGroupId: string | null;
|
27
31
|
}, {
|
28
32
|
id: string;
|
@@ -34,6 +38,8 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
34
38
|
seat: number | null;
|
35
39
|
created_at: Date;
|
36
40
|
updated_at: Date;
|
41
|
+
scanned: boolean;
|
42
|
+
scannedAt: Date | null;
|
37
43
|
ticketGroupId: string | null;
|
38
44
|
}>;
|
39
45
|
declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
@@ -48,6 +54,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
48
54
|
mail: import("zod").ZodString;
|
49
55
|
dni: import("zod").ZodString;
|
50
56
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
57
|
+
scanned: import("zod").ZodBoolean;
|
58
|
+
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
51
59
|
ticketGroupId: import("zod").ZodNullable<import("zod").ZodString>;
|
52
60
|
created_at: import("zod").ZodString;
|
53
61
|
updated_at: import("zod").ZodString;
|
@@ -61,6 +69,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
61
69
|
seat: number | null;
|
62
70
|
created_at: string;
|
63
71
|
updated_at: string;
|
72
|
+
scanned: boolean;
|
73
|
+
scannedAt: string | null;
|
64
74
|
ticketGroupId: string | null;
|
65
75
|
}, {
|
66
76
|
id: string;
|
@@ -72,6 +82,8 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
72
82
|
seat: number | null;
|
73
83
|
created_at: string;
|
74
84
|
updated_at: string;
|
85
|
+
scanned: boolean;
|
86
|
+
scannedAt: string | null;
|
75
87
|
ticketGroupId: string | null;
|
76
88
|
}>>;
|
77
89
|
export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
|
@@ -12,6 +12,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
12
12
|
mail: z.ZodString;
|
13
13
|
dni: z.ZodString;
|
14
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
15
|
+
scanned: z.ZodBoolean;
|
16
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
15
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
16
18
|
created_at: z.ZodDate;
|
17
19
|
updated_at: z.ZodDate;
|
@@ -54,6 +56,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
54
56
|
seat: number | null;
|
55
57
|
created_at: Date;
|
56
58
|
updated_at: Date;
|
59
|
+
scanned: boolean;
|
60
|
+
scannedAt: Date | null;
|
57
61
|
ticketGroupId: string | null;
|
58
62
|
}, {
|
59
63
|
event: {
|
@@ -70,6 +74,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: Date;
|
72
76
|
updated_at: Date;
|
77
|
+
scanned: boolean;
|
78
|
+
scannedAt: Date | null;
|
73
79
|
ticketGroupId: string | null;
|
74
80
|
}>, "many">;
|
75
81
|
}, "strip", z.ZodTypeAny, {
|
@@ -88,6 +94,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
88
94
|
seat: number | null;
|
89
95
|
created_at: Date;
|
90
96
|
updated_at: Date;
|
97
|
+
scanned: boolean;
|
98
|
+
scannedAt: Date | null;
|
91
99
|
ticketGroupId: string | null;
|
92
100
|
}[];
|
93
101
|
}, {
|
@@ -106,6 +114,8 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
106
114
|
seat: number | null;
|
107
115
|
created_at: Date;
|
108
116
|
updated_at: Date;
|
117
|
+
scanned: boolean;
|
118
|
+
scannedAt: Date | null;
|
109
119
|
ticketGroupId: string | null;
|
110
120
|
}[];
|
111
121
|
}>;
|
@@ -122,6 +132,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
122
132
|
mail: z.ZodString;
|
123
133
|
dni: z.ZodString;
|
124
134
|
seat: z.ZodNullable<z.ZodNumber>;
|
135
|
+
scanned: z.ZodBoolean;
|
136
|
+
scannedAt: z.ZodNullable<z.ZodString>;
|
125
137
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
126
138
|
created_at: z.ZodString;
|
127
139
|
updated_at: z.ZodString;
|
@@ -153,6 +165,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
153
165
|
seat: number | null;
|
154
166
|
created_at: string;
|
155
167
|
updated_at: string;
|
168
|
+
scanned: boolean;
|
169
|
+
scannedAt: string | null;
|
156
170
|
ticketGroupId: string | null;
|
157
171
|
}, {
|
158
172
|
event: {
|
@@ -169,6 +183,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
169
183
|
seat: number | null;
|
170
184
|
created_at: string;
|
171
185
|
updated_at: string;
|
186
|
+
scanned: boolean;
|
187
|
+
scannedAt: string | null;
|
172
188
|
ticketGroupId: string | null;
|
173
189
|
}>, "many">;
|
174
190
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -187,6 +203,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
187
203
|
seat: number | null;
|
188
204
|
created_at: string;
|
189
205
|
updated_at: string;
|
206
|
+
scanned: boolean;
|
207
|
+
scannedAt: string | null;
|
190
208
|
ticketGroupId: string | null;
|
191
209
|
}[];
|
192
210
|
}, {
|
@@ -205,6 +223,8 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
205
223
|
seat: number | null;
|
206
224
|
created_at: string;
|
207
225
|
updated_at: string;
|
226
|
+
scanned: boolean;
|
227
|
+
scannedAt: string | null;
|
208
228
|
ticketGroupId: string | null;
|
209
229
|
}[];
|
210
230
|
}>>;
|
@@ -12,6 +12,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
12
12
|
mail: z.ZodString;
|
13
13
|
dni: z.ZodString;
|
14
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
15
|
+
scanned: z.ZodBoolean;
|
16
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
15
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
16
18
|
created_at: z.ZodDate;
|
17
19
|
updated_at: z.ZodDate;
|
@@ -162,6 +164,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
162
164
|
seat: number | null;
|
163
165
|
created_at: Date;
|
164
166
|
updated_at: Date;
|
167
|
+
scanned: boolean;
|
168
|
+
scannedAt: Date | null;
|
165
169
|
ticketGroupId: string | null;
|
166
170
|
}, {
|
167
171
|
event: {
|
@@ -204,6 +208,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
204
208
|
seat: number | null;
|
205
209
|
created_at: Date;
|
206
210
|
updated_at: Date;
|
211
|
+
scanned: boolean;
|
212
|
+
scannedAt: Date | null;
|
207
213
|
ticketGroupId: string | null;
|
208
214
|
}>, "many">;
|
209
215
|
}, "strip", z.ZodTypeAny, {
|
@@ -248,6 +254,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
248
254
|
seat: number | null;
|
249
255
|
created_at: Date;
|
250
256
|
updated_at: Date;
|
257
|
+
scanned: boolean;
|
258
|
+
scannedAt: Date | null;
|
251
259
|
ticketGroupId: string | null;
|
252
260
|
}[];
|
253
261
|
}, {
|
@@ -292,6 +300,8 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
292
300
|
seat: number | null;
|
293
301
|
created_at: Date;
|
294
302
|
updated_at: Date;
|
303
|
+
scanned: boolean;
|
304
|
+
scannedAt: Date | null;
|
295
305
|
ticketGroupId: string | null;
|
296
306
|
}[];
|
297
307
|
}>;
|
@@ -308,6 +318,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
308
318
|
mail: z.ZodString;
|
309
319
|
dni: z.ZodString;
|
310
320
|
seat: z.ZodNullable<z.ZodNumber>;
|
321
|
+
scanned: z.ZodBoolean;
|
322
|
+
scannedAt: z.ZodNullable<z.ZodString>;
|
311
323
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
312
324
|
created_at: z.ZodString;
|
313
325
|
updated_at: z.ZodString;
|
@@ -447,6 +459,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
447
459
|
seat: number | null;
|
448
460
|
created_at: string;
|
449
461
|
updated_at: string;
|
462
|
+
scanned: boolean;
|
463
|
+
scannedAt: string | null;
|
450
464
|
ticketGroupId: string | null;
|
451
465
|
}, {
|
452
466
|
event: {
|
@@ -489,6 +503,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
489
503
|
seat: number | null;
|
490
504
|
created_at: string;
|
491
505
|
updated_at: string;
|
506
|
+
scanned: boolean;
|
507
|
+
scannedAt: string | null;
|
492
508
|
ticketGroupId: string | null;
|
493
509
|
}>, "many">;
|
494
510
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -533,6 +549,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
533
549
|
seat: number | null;
|
534
550
|
created_at: string;
|
535
551
|
updated_at: string;
|
552
|
+
scanned: boolean;
|
553
|
+
scannedAt: string | null;
|
536
554
|
ticketGroupId: string | null;
|
537
555
|
}[];
|
538
556
|
}, {
|
@@ -577,6 +595,8 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
577
595
|
seat: number | null;
|
578
596
|
created_at: string;
|
579
597
|
updated_at: string;
|
598
|
+
scanned: boolean;
|
599
|
+
scannedAt: string | null;
|
580
600
|
ticketGroupId: string | null;
|
581
601
|
}[];
|
582
602
|
}>>;
|
@@ -12,6 +12,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
12
12
|
mail: z.ZodString;
|
13
13
|
dni: z.ZodString;
|
14
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
15
|
+
scanned: z.ZodBoolean;
|
16
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
15
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
16
18
|
created_at: z.ZodDate;
|
17
19
|
updated_at: z.ZodDate;
|
@@ -194,6 +196,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
194
196
|
created_at: Date;
|
195
197
|
updated_at: Date;
|
196
198
|
profileId: string | null;
|
199
|
+
scanned: boolean;
|
200
|
+
scannedAt: Date | null;
|
197
201
|
ticketGroupId: string | null;
|
198
202
|
}, {
|
199
203
|
event: {
|
@@ -247,6 +251,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
247
251
|
created_at: Date;
|
248
252
|
updated_at: Date;
|
249
253
|
profileId: string | null;
|
254
|
+
scanned: boolean;
|
255
|
+
scannedAt: Date | null;
|
250
256
|
ticketGroupId: string | null;
|
251
257
|
}>;
|
252
258
|
}, "strip", z.ZodTypeAny, {
|
@@ -302,6 +308,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
302
308
|
created_at: Date;
|
303
309
|
updated_at: Date;
|
304
310
|
profileId: string | null;
|
311
|
+
scanned: boolean;
|
312
|
+
scannedAt: Date | null;
|
305
313
|
ticketGroupId: string | null;
|
306
314
|
};
|
307
315
|
}, {
|
@@ -357,6 +365,8 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
357
365
|
created_at: Date;
|
358
366
|
updated_at: Date;
|
359
367
|
profileId: string | null;
|
368
|
+
scanned: boolean;
|
369
|
+
scannedAt: Date | null;
|
360
370
|
ticketGroupId: string | null;
|
361
371
|
};
|
362
372
|
}>;
|
@@ -373,6 +383,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
373
383
|
mail: z.ZodString;
|
374
384
|
dni: z.ZodString;
|
375
385
|
seat: z.ZodNullable<z.ZodNumber>;
|
386
|
+
scanned: z.ZodBoolean;
|
387
|
+
scannedAt: z.ZodNullable<z.ZodString>;
|
376
388
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
377
389
|
created_at: z.ZodString;
|
378
390
|
updated_at: z.ZodString;
|
@@ -554,6 +566,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
554
566
|
created_at: string;
|
555
567
|
updated_at: string;
|
556
568
|
profileId: string | null;
|
569
|
+
scanned: boolean;
|
570
|
+
scannedAt: string | null;
|
557
571
|
ticketGroupId: string | null;
|
558
572
|
}, {
|
559
573
|
event: {
|
@@ -607,6 +621,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
607
621
|
created_at: string;
|
608
622
|
updated_at: string;
|
609
623
|
profileId: string | null;
|
624
|
+
scanned: boolean;
|
625
|
+
scannedAt: string | null;
|
610
626
|
ticketGroupId: string | null;
|
611
627
|
}>;
|
612
628
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -662,6 +678,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
662
678
|
created_at: string;
|
663
679
|
updated_at: string;
|
664
680
|
profileId: string | null;
|
681
|
+
scanned: boolean;
|
682
|
+
scannedAt: string | null;
|
665
683
|
ticketGroupId: string | null;
|
666
684
|
};
|
667
685
|
}, {
|
@@ -717,6 +735,8 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
717
735
|
created_at: string;
|
718
736
|
updated_at: string;
|
719
737
|
profileId: string | null;
|
738
|
+
scanned: boolean;
|
739
|
+
scannedAt: string | null;
|
720
740
|
ticketGroupId: string | null;
|
721
741
|
};
|
722
742
|
}>>;
|
@@ -12,6 +12,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
12
12
|
mail: z.ZodString;
|
13
13
|
dni: z.ZodString;
|
14
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
15
|
+
scanned: z.ZodBoolean;
|
16
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
15
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
16
18
|
created_at: z.ZodDate;
|
17
19
|
updated_at: z.ZodDate;
|
@@ -162,6 +164,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
162
164
|
seat: number | null;
|
163
165
|
created_at: Date;
|
164
166
|
updated_at: Date;
|
167
|
+
scanned: boolean;
|
168
|
+
scannedAt: Date | null;
|
165
169
|
ticketGroupId: string | null;
|
166
170
|
}, {
|
167
171
|
event: {
|
@@ -204,6 +208,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
204
208
|
seat: number | null;
|
205
209
|
created_at: Date;
|
206
210
|
updated_at: Date;
|
211
|
+
scanned: boolean;
|
212
|
+
scannedAt: Date | null;
|
207
213
|
ticketGroupId: string | null;
|
208
214
|
}>, "many">;
|
209
215
|
}, "strip", z.ZodTypeAny, {
|
@@ -248,6 +254,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
248
254
|
seat: number | null;
|
249
255
|
created_at: Date;
|
250
256
|
updated_at: Date;
|
257
|
+
scanned: boolean;
|
258
|
+
scannedAt: Date | null;
|
251
259
|
ticketGroupId: string | null;
|
252
260
|
}[];
|
253
261
|
}, {
|
@@ -292,6 +300,8 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
292
300
|
seat: number | null;
|
293
301
|
created_at: Date;
|
294
302
|
updated_at: Date;
|
303
|
+
scanned: boolean;
|
304
|
+
scannedAt: Date | null;
|
295
305
|
ticketGroupId: string | null;
|
296
306
|
}[];
|
297
307
|
}>;
|
@@ -308,6 +318,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
308
318
|
mail: z.ZodString;
|
309
319
|
dni: z.ZodString;
|
310
320
|
seat: z.ZodNullable<z.ZodNumber>;
|
321
|
+
scanned: z.ZodBoolean;
|
322
|
+
scannedAt: z.ZodNullable<z.ZodString>;
|
311
323
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
312
324
|
created_at: z.ZodString;
|
313
325
|
updated_at: z.ZodString;
|
@@ -447,6 +459,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
447
459
|
seat: number | null;
|
448
460
|
created_at: string;
|
449
461
|
updated_at: string;
|
462
|
+
scanned: boolean;
|
463
|
+
scannedAt: string | null;
|
450
464
|
ticketGroupId: string | null;
|
451
465
|
}, {
|
452
466
|
event: {
|
@@ -489,6 +503,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
489
503
|
seat: number | null;
|
490
504
|
created_at: string;
|
491
505
|
updated_at: string;
|
506
|
+
scanned: boolean;
|
507
|
+
scannedAt: string | null;
|
492
508
|
ticketGroupId: string | null;
|
493
509
|
}>, "many">;
|
494
510
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -533,6 +549,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
533
549
|
seat: number | null;
|
534
550
|
created_at: string;
|
535
551
|
updated_at: string;
|
552
|
+
scanned: boolean;
|
553
|
+
scannedAt: string | null;
|
536
554
|
ticketGroupId: string | null;
|
537
555
|
}[];
|
538
556
|
}, {
|
@@ -577,6 +595,8 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
577
595
|
seat: number | null;
|
578
596
|
created_at: string;
|
579
597
|
updated_at: string;
|
598
|
+
scanned: boolean;
|
599
|
+
scannedAt: string | null;
|
580
600
|
ticketGroupId: string | null;
|
581
601
|
}[];
|
582
602
|
}>>;
|
@@ -12,6 +12,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
12
12
|
mail: z.ZodString;
|
13
13
|
dni: z.ZodString;
|
14
14
|
seat: z.ZodNullable<z.ZodNumber>;
|
15
|
+
scanned: z.ZodBoolean;
|
16
|
+
scannedAt: z.ZodNullable<z.ZodDate>;
|
15
17
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
16
18
|
created_at: z.ZodDate;
|
17
19
|
updated_at: z.ZodDate;
|
@@ -84,6 +86,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
84
86
|
seat: number | null;
|
85
87
|
created_at: Date;
|
86
88
|
updated_at: Date;
|
89
|
+
scanned: boolean;
|
90
|
+
scannedAt: Date | null;
|
87
91
|
ticketGroupId: string | null;
|
88
92
|
}, {
|
89
93
|
event: {
|
@@ -110,6 +114,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
110
114
|
seat: number | null;
|
111
115
|
created_at: Date;
|
112
116
|
updated_at: Date;
|
117
|
+
scanned: boolean;
|
118
|
+
scannedAt: Date | null;
|
113
119
|
ticketGroupId: string | null;
|
114
120
|
}>, "many">;
|
115
121
|
}, "strip", z.ZodTypeAny, {
|
@@ -138,6 +144,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
138
144
|
seat: number | null;
|
139
145
|
created_at: Date;
|
140
146
|
updated_at: Date;
|
147
|
+
scanned: boolean;
|
148
|
+
scannedAt: Date | null;
|
141
149
|
ticketGroupId: string | null;
|
142
150
|
}[];
|
143
151
|
}, {
|
@@ -166,6 +174,8 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
166
174
|
seat: number | null;
|
167
175
|
created_at: Date;
|
168
176
|
updated_at: Date;
|
177
|
+
scanned: boolean;
|
178
|
+
scannedAt: Date | null;
|
169
179
|
ticketGroupId: string | null;
|
170
180
|
}[];
|
171
181
|
}>;
|
@@ -182,6 +192,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
182
192
|
mail: z.ZodString;
|
183
193
|
dni: z.ZodString;
|
184
194
|
seat: z.ZodNullable<z.ZodNumber>;
|
195
|
+
scanned: z.ZodBoolean;
|
196
|
+
scannedAt: z.ZodNullable<z.ZodString>;
|
185
197
|
ticketGroupId: z.ZodNullable<z.ZodString>;
|
186
198
|
created_at: z.ZodString;
|
187
199
|
updated_at: z.ZodString;
|
@@ -253,6 +265,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
253
265
|
seat: number | null;
|
254
266
|
created_at: string;
|
255
267
|
updated_at: string;
|
268
|
+
scanned: boolean;
|
269
|
+
scannedAt: string | null;
|
256
270
|
ticketGroupId: string | null;
|
257
271
|
}, {
|
258
272
|
event: {
|
@@ -279,6 +293,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
279
293
|
seat: number | null;
|
280
294
|
created_at: string;
|
281
295
|
updated_at: string;
|
296
|
+
scanned: boolean;
|
297
|
+
scannedAt: string | null;
|
282
298
|
ticketGroupId: string | null;
|
283
299
|
}>, "many">;
|
284
300
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -307,6 +323,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
307
323
|
seat: number | null;
|
308
324
|
created_at: string;
|
309
325
|
updated_at: string;
|
326
|
+
scanned: boolean;
|
327
|
+
scannedAt: string | null;
|
310
328
|
ticketGroupId: string | null;
|
311
329
|
}[];
|
312
330
|
}, {
|
@@ -335,6 +353,8 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
335
353
|
seat: number | null;
|
336
354
|
created_at: string;
|
337
355
|
updated_at: string;
|
356
|
+
scanned: boolean;
|
357
|
+
scannedAt: string | null;
|
338
358
|
ticketGroupId: string | null;
|
339
359
|
}[];
|
340
360
|
}>>;
|