expo-backend-types 0.37.0-EXPO-327-EB-Escanear-entrada.3 → 0.37.0-EXPO-338-Papa-Francisco.1
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 +3 -2
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +0 -20
- package/dist/src/i18n/es.d.ts +0 -8
- package/dist/src/i18n/es.js +170 -63
- 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 +1 -0
- package/dist/src/schema/profile.schema.js +7 -17
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js +2 -1
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js.map +1 -1
- package/dist/src/ticket/constants.js +2 -1
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +0 -14
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +3 -2
- package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/ticket.dto.js +0 -2
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/exports.d.ts +0 -1
- package/dist/src/ticket/exports.js +0 -1
- package/dist/types/prisma-schema/edge.js +9 -11
- package/dist/types/prisma-schema/index-browser.js +4 -6
- package/dist/types/prisma-schema/index.d.ts +230 -317
- package/dist/types/prisma-schema/index.js +9 -11
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +2 -2
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
- package/dist/types/prisma-schema/runtime/edge.js +18 -18
- package/dist/types/prisma-schema/runtime/index-browser.d.ts +2 -2
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +105 -123
- package/dist/types/prisma-schema/runtime/library.js +56 -56
- package/dist/types/prisma-schema/runtime/react-native.js +25 -25
- package/dist/types/prisma-schema/runtime/wasm.js +19 -19
- package/dist/types/prisma-schema/schema.prisma +1 -3
- package/dist/types/prisma-schema/wasm.js +4 -6
- package/dist/types/schema.d.ts +1 -82
- package/package.json +14 -13
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +0 -34
- package/dist/src/ticket/dto/scan-ticket.dto.js +0 -21
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.generateTicketTemplate =
|
3
|
+
exports.generateTicketTemplate = void 0;
|
4
4
|
const translate_1 = require("../i18n/translate");
|
5
5
|
const types_1 = require("../../types");
|
6
6
|
function generateTicketTemplate(ticketType) {
|
@@ -356,4 +356,5 @@ function generateTicketTemplate(ticketType) {
|
|
356
356
|
pdfmeVersion: '5.3.13',
|
357
357
|
};
|
358
358
|
}
|
359
|
+
exports.generateTicketTemplate = generateTicketTemplate;
|
359
360
|
//# sourceMappingURL=constants.js.map
|
@@ -15,8 +15,6 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
15
15
|
mail: import("zod").ZodString;
|
16
16
|
dni: import("zod").ZodString;
|
17
17
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
18
|
-
scanned: import("zod").ZodBoolean;
|
19
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
20
18
|
created_at: import("zod").ZodDate;
|
21
19
|
updated_at: import("zod").ZodDate;
|
22
20
|
}, "type" | "fullName" | "mail" | "eventId" | "status" | "dni">, {
|
@@ -90,8 +88,6 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
90
88
|
mail: import("zod").ZodString;
|
91
89
|
dni: import("zod").ZodString;
|
92
90
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
93
|
-
scanned: import("zod").ZodBoolean;
|
94
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
95
91
|
created_at: import("zod").ZodDate;
|
96
92
|
updated_at: import("zod").ZodDate;
|
97
93
|
}, {
|
@@ -164,8 +160,6 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
164
160
|
dni: string;
|
165
161
|
created_at: Date;
|
166
162
|
updated_at: Date;
|
167
|
-
scanned: boolean;
|
168
|
-
scannedAt: Date | null;
|
169
163
|
}, {
|
170
164
|
event: {
|
171
165
|
location: string;
|
@@ -192,8 +186,6 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
192
186
|
dni: string;
|
193
187
|
created_at: Date;
|
194
188
|
updated_at: Date;
|
195
|
-
scanned: boolean;
|
196
|
-
scannedAt: Date | null;
|
197
189
|
}>;
|
198
190
|
declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
199
191
|
id: import("zod").ZodString;
|
@@ -212,8 +204,6 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
212
204
|
mail: import("zod").ZodString;
|
213
205
|
dni: import("zod").ZodString;
|
214
206
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
215
|
-
scanned: import("zod").ZodBoolean;
|
216
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
217
207
|
created_at: import("zod").ZodString;
|
218
208
|
updated_at: import("zod").ZodString;
|
219
209
|
event: import("zod").ZodObject<{
|
@@ -285,8 +275,6 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
285
275
|
dni: string;
|
286
276
|
created_at: string;
|
287
277
|
updated_at: string;
|
288
|
-
scanned: boolean;
|
289
|
-
scannedAt: string | null;
|
290
278
|
}, {
|
291
279
|
event: {
|
292
280
|
location: string;
|
@@ -313,8 +301,6 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
313
301
|
dni: string;
|
314
302
|
created_at: string;
|
315
303
|
updated_at: string;
|
316
|
-
scanned: boolean;
|
317
|
-
scannedAt: string | null;
|
318
304
|
}>>;
|
319
305
|
export declare class CreateTicketResponseDto extends CreateTicketResponseDto_base {
|
320
306
|
}
|
@@ -15,8 +15,6 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
15
15
|
mail: import("zod").ZodString;
|
16
16
|
dni: import("zod").ZodString;
|
17
17
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
18
|
-
scanned: import("zod").ZodBoolean;
|
19
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
20
18
|
created_at: import("zod").ZodDate;
|
21
19
|
updated_at: import("zod").ZodDate;
|
22
20
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -30,8 +28,6 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
30
28
|
dni: string;
|
31
29
|
created_at: Date;
|
32
30
|
updated_at: Date;
|
33
|
-
scanned: boolean;
|
34
|
-
scannedAt: Date | null;
|
35
31
|
}, {
|
36
32
|
id: string;
|
37
33
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -43,8 +39,6 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
43
39
|
dni: string;
|
44
40
|
created_at: Date;
|
45
41
|
updated_at: Date;
|
46
|
-
scanned: boolean;
|
47
|
-
scannedAt: Date | null;
|
48
42
|
}>;
|
49
43
|
declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
50
44
|
id: import("zod").ZodString;
|
@@ -63,8 +57,6 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
63
57
|
mail: import("zod").ZodString;
|
64
58
|
dni: import("zod").ZodString;
|
65
59
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
66
|
-
scanned: import("zod").ZodBoolean;
|
67
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
68
60
|
created_at: import("zod").ZodString;
|
69
61
|
updated_at: import("zod").ZodString;
|
70
62
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -78,8 +70,6 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
78
70
|
dni: string;
|
79
71
|
created_at: string;
|
80
72
|
updated_at: string;
|
81
|
-
scanned: boolean;
|
82
|
-
scannedAt: string | null;
|
83
73
|
}, {
|
84
74
|
id: string;
|
85
75
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -91,8 +81,6 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
91
81
|
dni: string;
|
92
82
|
created_at: string;
|
93
83
|
updated_at: string;
|
94
|
-
scanned: boolean;
|
95
|
-
scannedAt: string | null;
|
96
84
|
}>>;
|
97
85
|
export declare class DeleteTicketResponseDto extends DeleteTicketResponseDto_base {
|
98
86
|
}
|
@@ -17,8 +17,6 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
17
17
|
mail: z.ZodString;
|
18
18
|
dni: z.ZodString;
|
19
19
|
seat: z.ZodNullable<z.ZodNumber>;
|
20
|
-
scanned: z.ZodBoolean;
|
21
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
22
20
|
created_at: z.ZodDate;
|
23
21
|
updated_at: z.ZodDate;
|
24
22
|
}, {
|
@@ -61,8 +59,6 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
61
59
|
dni: string;
|
62
60
|
created_at: Date;
|
63
61
|
updated_at: Date;
|
64
|
-
scanned: boolean;
|
65
|
-
scannedAt: Date | null;
|
66
62
|
}, {
|
67
63
|
event: {
|
68
64
|
location: string;
|
@@ -79,8 +75,6 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
79
75
|
dni: string;
|
80
76
|
created_at: Date;
|
81
77
|
updated_at: Date;
|
82
|
-
scanned: boolean;
|
83
|
-
scannedAt: Date | null;
|
84
78
|
}>, "many">;
|
85
79
|
}, "strip", z.ZodTypeAny, {
|
86
80
|
tickets: {
|
@@ -99,8 +93,6 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
99
93
|
dni: string;
|
100
94
|
created_at: Date;
|
101
95
|
updated_at: Date;
|
102
|
-
scanned: boolean;
|
103
|
-
scannedAt: Date | null;
|
104
96
|
}[];
|
105
97
|
}, {
|
106
98
|
tickets: {
|
@@ -119,8 +111,6 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
119
111
|
dni: string;
|
120
112
|
created_at: Date;
|
121
113
|
updated_at: Date;
|
122
|
-
scanned: boolean;
|
123
|
-
scannedAt: Date | null;
|
124
114
|
}[];
|
125
115
|
}>;
|
126
116
|
declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -141,8 +131,6 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
141
131
|
mail: z.ZodString;
|
142
132
|
dni: z.ZodString;
|
143
133
|
seat: z.ZodNullable<z.ZodNumber>;
|
144
|
-
scanned: z.ZodBoolean;
|
145
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
146
134
|
created_at: z.ZodString;
|
147
135
|
updated_at: z.ZodString;
|
148
136
|
event: z.ZodObject<{
|
@@ -174,8 +162,6 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
174
162
|
dni: string;
|
175
163
|
created_at: string;
|
176
164
|
updated_at: string;
|
177
|
-
scanned: boolean;
|
178
|
-
scannedAt: string | null;
|
179
165
|
}, {
|
180
166
|
event: {
|
181
167
|
location: string;
|
@@ -192,8 +178,6 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
192
178
|
dni: string;
|
193
179
|
created_at: string;
|
194
180
|
updated_at: string;
|
195
|
-
scanned: boolean;
|
196
|
-
scannedAt: string | null;
|
197
181
|
}>, "many">;
|
198
182
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
199
183
|
tickets: {
|
@@ -212,8 +196,6 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
212
196
|
dni: string;
|
213
197
|
created_at: string;
|
214
198
|
updated_at: string;
|
215
|
-
scanned: boolean;
|
216
|
-
scannedAt: string | null;
|
217
199
|
}[];
|
218
200
|
}, {
|
219
201
|
tickets: {
|
@@ -232,8 +214,6 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
232
214
|
dni: string;
|
233
215
|
created_at: string;
|
234
216
|
updated_at: string;
|
235
|
-
scanned: boolean;
|
236
|
-
scannedAt: string | null;
|
237
217
|
}[];
|
238
218
|
}>>;
|
239
219
|
export declare class FindAllTicketsResponseDto extends FindAllTicketsResponseDto_base {
|
@@ -17,8 +17,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
17
17
|
mail: z.ZodString;
|
18
18
|
dni: z.ZodString;
|
19
19
|
seat: z.ZodNullable<z.ZodNumber>;
|
20
|
-
scanned: z.ZodBoolean;
|
21
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
22
20
|
created_at: z.ZodDate;
|
23
21
|
updated_at: z.ZodDate;
|
24
22
|
}, {
|
@@ -169,8 +167,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
169
167
|
dni: string;
|
170
168
|
created_at: Date;
|
171
169
|
updated_at: Date;
|
172
|
-
scanned: boolean;
|
173
|
-
scannedAt: Date | null;
|
174
170
|
}, {
|
175
171
|
event: {
|
176
172
|
location: string;
|
@@ -213,8 +209,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
213
209
|
dni: string;
|
214
210
|
created_at: Date;
|
215
211
|
updated_at: Date;
|
216
|
-
scanned: boolean;
|
217
|
-
scannedAt: Date | null;
|
218
212
|
}>, "many">;
|
219
213
|
}, "strip", z.ZodTypeAny, {
|
220
214
|
tickets: {
|
@@ -259,8 +253,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
259
253
|
dni: string;
|
260
254
|
created_at: Date;
|
261
255
|
updated_at: Date;
|
262
|
-
scanned: boolean;
|
263
|
-
scannedAt: Date | null;
|
264
256
|
}[];
|
265
257
|
}, {
|
266
258
|
tickets: {
|
@@ -305,8 +297,6 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
305
297
|
dni: string;
|
306
298
|
created_at: Date;
|
307
299
|
updated_at: Date;
|
308
|
-
scanned: boolean;
|
309
|
-
scannedAt: Date | null;
|
310
300
|
}[];
|
311
301
|
}>;
|
312
302
|
declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -327,8 +317,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
327
317
|
mail: z.ZodString;
|
328
318
|
dni: z.ZodString;
|
329
319
|
seat: z.ZodNullable<z.ZodNumber>;
|
330
|
-
scanned: z.ZodBoolean;
|
331
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
332
320
|
created_at: z.ZodString;
|
333
321
|
updated_at: z.ZodString;
|
334
322
|
event: z.ZodObject<{
|
@@ -468,8 +456,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
468
456
|
dni: string;
|
469
457
|
created_at: string;
|
470
458
|
updated_at: string;
|
471
|
-
scanned: boolean;
|
472
|
-
scannedAt: string | null;
|
473
459
|
}, {
|
474
460
|
event: {
|
475
461
|
location: string;
|
@@ -512,8 +498,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
512
498
|
dni: string;
|
513
499
|
created_at: string;
|
514
500
|
updated_at: string;
|
515
|
-
scanned: boolean;
|
516
|
-
scannedAt: string | null;
|
517
501
|
}>, "many">;
|
518
502
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
519
503
|
tickets: {
|
@@ -558,8 +542,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
558
542
|
dni: string;
|
559
543
|
created_at: string;
|
560
544
|
updated_at: string;
|
561
|
-
scanned: boolean;
|
562
|
-
scannedAt: string | null;
|
563
545
|
}[];
|
564
546
|
}, {
|
565
547
|
tickets: {
|
@@ -604,8 +586,6 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
604
586
|
dni: string;
|
605
587
|
created_at: string;
|
606
588
|
updated_at: string;
|
607
|
-
scanned: boolean;
|
608
|
-
scannedAt: string | null;
|
609
589
|
}[];
|
610
590
|
}>>;
|
611
591
|
export declare class FindByEventTicketResponseDto extends FindByEventTicketResponseDto_base {
|
@@ -17,8 +17,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
17
17
|
mail: z.ZodString;
|
18
18
|
dni: z.ZodString;
|
19
19
|
seat: z.ZodNullable<z.ZodNumber>;
|
20
|
-
scanned: z.ZodBoolean;
|
21
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
22
20
|
created_at: z.ZodDate;
|
23
21
|
updated_at: z.ZodDate;
|
24
22
|
}, {
|
@@ -169,8 +167,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
169
167
|
dni: string;
|
170
168
|
created_at: Date;
|
171
169
|
updated_at: Date;
|
172
|
-
scanned: boolean;
|
173
|
-
scannedAt: Date | null;
|
174
170
|
}, {
|
175
171
|
event: {
|
176
172
|
location: string;
|
@@ -213,8 +209,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
213
209
|
dni: string;
|
214
210
|
created_at: Date;
|
215
211
|
updated_at: Date;
|
216
|
-
scanned: boolean;
|
217
|
-
scannedAt: Date | null;
|
218
212
|
}>;
|
219
213
|
}, "strip", z.ZodTypeAny, {
|
220
214
|
ticket: {
|
@@ -259,8 +253,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
259
253
|
dni: string;
|
260
254
|
created_at: Date;
|
261
255
|
updated_at: Date;
|
262
|
-
scanned: boolean;
|
263
|
-
scannedAt: Date | null;
|
264
256
|
};
|
265
257
|
}, {
|
266
258
|
ticket: {
|
@@ -305,8 +297,6 @@ export declare const findByIdTicketResponseSchema: z.ZodObject<{
|
|
305
297
|
dni: string;
|
306
298
|
created_at: Date;
|
307
299
|
updated_at: Date;
|
308
|
-
scanned: boolean;
|
309
|
-
scannedAt: Date | null;
|
310
300
|
};
|
311
301
|
}>;
|
312
302
|
declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -327,8 +317,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
327
317
|
mail: z.ZodString;
|
328
318
|
dni: z.ZodString;
|
329
319
|
seat: z.ZodNullable<z.ZodNumber>;
|
330
|
-
scanned: z.ZodBoolean;
|
331
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
332
320
|
created_at: z.ZodString;
|
333
321
|
updated_at: z.ZodString;
|
334
322
|
event: z.ZodObject<{
|
@@ -468,8 +456,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
468
456
|
dni: string;
|
469
457
|
created_at: string;
|
470
458
|
updated_at: string;
|
471
|
-
scanned: boolean;
|
472
|
-
scannedAt: string | null;
|
473
459
|
}, {
|
474
460
|
event: {
|
475
461
|
location: string;
|
@@ -512,8 +498,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
512
498
|
dni: string;
|
513
499
|
created_at: string;
|
514
500
|
updated_at: string;
|
515
|
-
scanned: boolean;
|
516
|
-
scannedAt: string | null;
|
517
501
|
}>;
|
518
502
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
519
503
|
ticket: {
|
@@ -558,8 +542,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
558
542
|
dni: string;
|
559
543
|
created_at: string;
|
560
544
|
updated_at: string;
|
561
|
-
scanned: boolean;
|
562
|
-
scannedAt: string | null;
|
563
545
|
};
|
564
546
|
}, {
|
565
547
|
ticket: {
|
@@ -604,8 +586,6 @@ declare const FindByIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
604
586
|
dni: string;
|
605
587
|
created_at: string;
|
606
588
|
updated_at: string;
|
607
|
-
scanned: boolean;
|
608
|
-
scannedAt: string | null;
|
609
589
|
};
|
610
590
|
}>>;
|
611
591
|
export declare class FindByIdTicketResponseDto extends FindByIdTicketResponseDto_base {
|
@@ -17,8 +17,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
17
17
|
mail: z.ZodString;
|
18
18
|
dni: z.ZodString;
|
19
19
|
seat: z.ZodNullable<z.ZodNumber>;
|
20
|
-
scanned: z.ZodBoolean;
|
21
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
22
20
|
created_at: z.ZodDate;
|
23
21
|
updated_at: z.ZodDate;
|
24
22
|
}, {
|
@@ -169,8 +167,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
169
167
|
dni: string;
|
170
168
|
created_at: Date;
|
171
169
|
updated_at: Date;
|
172
|
-
scanned: boolean;
|
173
|
-
scannedAt: Date | null;
|
174
170
|
}, {
|
175
171
|
event: {
|
176
172
|
location: string;
|
@@ -213,8 +209,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
213
209
|
dni: string;
|
214
210
|
created_at: Date;
|
215
211
|
updated_at: Date;
|
216
|
-
scanned: boolean;
|
217
|
-
scannedAt: Date | null;
|
218
212
|
}>, "many">;
|
219
213
|
}, "strip", z.ZodTypeAny, {
|
220
214
|
tickets: {
|
@@ -259,8 +253,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
259
253
|
dni: string;
|
260
254
|
created_at: Date;
|
261
255
|
updated_at: Date;
|
262
|
-
scanned: boolean;
|
263
|
-
scannedAt: Date | null;
|
264
256
|
}[];
|
265
257
|
}, {
|
266
258
|
tickets: {
|
@@ -305,8 +297,6 @@ export declare const findByMailTicketResponseSchema: z.ZodObject<{
|
|
305
297
|
dni: string;
|
306
298
|
created_at: Date;
|
307
299
|
updated_at: Date;
|
308
|
-
scanned: boolean;
|
309
|
-
scannedAt: Date | null;
|
310
300
|
}[];
|
311
301
|
}>;
|
312
302
|
declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -327,8 +317,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
327
317
|
mail: z.ZodString;
|
328
318
|
dni: z.ZodString;
|
329
319
|
seat: z.ZodNullable<z.ZodNumber>;
|
330
|
-
scanned: z.ZodBoolean;
|
331
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
332
320
|
created_at: z.ZodString;
|
333
321
|
updated_at: z.ZodString;
|
334
322
|
event: z.ZodObject<{
|
@@ -468,8 +456,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
468
456
|
dni: string;
|
469
457
|
created_at: string;
|
470
458
|
updated_at: string;
|
471
|
-
scanned: boolean;
|
472
|
-
scannedAt: string | null;
|
473
459
|
}, {
|
474
460
|
event: {
|
475
461
|
location: string;
|
@@ -512,8 +498,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
512
498
|
dni: string;
|
513
499
|
created_at: string;
|
514
500
|
updated_at: string;
|
515
|
-
scanned: boolean;
|
516
|
-
scannedAt: string | null;
|
517
501
|
}>, "many">;
|
518
502
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
519
503
|
tickets: {
|
@@ -558,8 +542,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
558
542
|
dni: string;
|
559
543
|
created_at: string;
|
560
544
|
updated_at: string;
|
561
|
-
scanned: boolean;
|
562
|
-
scannedAt: string | null;
|
563
545
|
}[];
|
564
546
|
}, {
|
565
547
|
tickets: {
|
@@ -604,8 +586,6 @@ declare const FindByMailTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
604
586
|
dni: string;
|
605
587
|
created_at: string;
|
606
588
|
updated_at: string;
|
607
|
-
scanned: boolean;
|
608
|
-
scannedAt: string | null;
|
609
589
|
}[];
|
610
590
|
}>>;
|
611
591
|
export declare class FindByMailTicketResponseDto extends FindByMailTicketResponseDto_base {
|
@@ -17,8 +17,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
17
17
|
mail: z.ZodString;
|
18
18
|
dni: z.ZodString;
|
19
19
|
seat: z.ZodNullable<z.ZodNumber>;
|
20
|
-
scanned: z.ZodBoolean;
|
21
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
22
20
|
created_at: z.ZodDate;
|
23
21
|
updated_at: z.ZodDate;
|
24
22
|
}, {
|
@@ -91,8 +89,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
91
89
|
dni: string;
|
92
90
|
created_at: Date;
|
93
91
|
updated_at: Date;
|
94
|
-
scanned: boolean;
|
95
|
-
scannedAt: Date | null;
|
96
92
|
}, {
|
97
93
|
event: {
|
98
94
|
location: string;
|
@@ -119,8 +115,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
119
115
|
dni: string;
|
120
116
|
created_at: Date;
|
121
117
|
updated_at: Date;
|
122
|
-
scanned: boolean;
|
123
|
-
scannedAt: Date | null;
|
124
118
|
}>, "many">;
|
125
119
|
}, "strip", z.ZodTypeAny, {
|
126
120
|
tickets: {
|
@@ -149,8 +143,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
149
143
|
dni: string;
|
150
144
|
created_at: Date;
|
151
145
|
updated_at: Date;
|
152
|
-
scanned: boolean;
|
153
|
-
scannedAt: Date | null;
|
154
146
|
}[];
|
155
147
|
}, {
|
156
148
|
tickets: {
|
@@ -179,8 +171,6 @@ export declare const findByProfileIdTicketResponseSchema: z.ZodObject<{
|
|
179
171
|
dni: string;
|
180
172
|
created_at: Date;
|
181
173
|
updated_at: Date;
|
182
|
-
scanned: boolean;
|
183
|
-
scannedAt: Date | null;
|
184
174
|
}[];
|
185
175
|
}>;
|
186
176
|
declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -201,8 +191,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
201
191
|
mail: z.ZodString;
|
202
192
|
dni: z.ZodString;
|
203
193
|
seat: z.ZodNullable<z.ZodNumber>;
|
204
|
-
scanned: z.ZodBoolean;
|
205
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
206
194
|
created_at: z.ZodString;
|
207
195
|
updated_at: z.ZodString;
|
208
196
|
event: z.ZodObject<{
|
@@ -274,8 +262,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
274
262
|
dni: string;
|
275
263
|
created_at: string;
|
276
264
|
updated_at: string;
|
277
|
-
scanned: boolean;
|
278
|
-
scannedAt: string | null;
|
279
265
|
}, {
|
280
266
|
event: {
|
281
267
|
location: string;
|
@@ -302,8 +288,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
302
288
|
dni: string;
|
303
289
|
created_at: string;
|
304
290
|
updated_at: string;
|
305
|
-
scanned: boolean;
|
306
|
-
scannedAt: string | null;
|
307
291
|
}>, "many">;
|
308
292
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
309
293
|
tickets: {
|
@@ -332,8 +316,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
332
316
|
dni: string;
|
333
317
|
created_at: string;
|
334
318
|
updated_at: string;
|
335
|
-
scanned: boolean;
|
336
|
-
scannedAt: string | null;
|
337
319
|
}[];
|
338
320
|
}, {
|
339
321
|
tickets: {
|
@@ -362,8 +344,6 @@ declare const FindByProfileIdTicketResponseDto_base: import("@anatine/zod-nestjs
|
|
362
344
|
dni: string;
|
363
345
|
created_at: string;
|
364
346
|
updated_at: string;
|
365
|
-
scanned: boolean;
|
366
|
-
scannedAt: string | null;
|
367
347
|
}[];
|
368
348
|
}>>;
|
369
349
|
export declare class FindByProfileIdTicketResponseDto extends FindByProfileIdTicketResponseDto_base {
|
@@ -15,8 +15,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
15
15
|
mail: import("zod").ZodString;
|
16
16
|
dni: import("zod").ZodString;
|
17
17
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
18
|
-
scanned: import("zod").ZodBoolean;
|
19
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodDate>;
|
20
18
|
created_at: import("zod").ZodDate;
|
21
19
|
updated_at: import("zod").ZodDate;
|
22
20
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -30,8 +28,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
30
28
|
dni: string;
|
31
29
|
created_at: Date;
|
32
30
|
updated_at: Date;
|
33
|
-
scanned: boolean;
|
34
|
-
scannedAt: Date | null;
|
35
31
|
}, {
|
36
32
|
id: string;
|
37
33
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -43,8 +39,6 @@ export declare const findTicketResponseSchema: import("zod").ZodObject<{
|
|
43
39
|
dni: string;
|
44
40
|
created_at: Date;
|
45
41
|
updated_at: Date;
|
46
|
-
scanned: boolean;
|
47
|
-
scannedAt: Date | null;
|
48
42
|
}>;
|
49
43
|
declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
50
44
|
id: import("zod").ZodString;
|
@@ -63,8 +57,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
63
57
|
mail: import("zod").ZodString;
|
64
58
|
dni: import("zod").ZodString;
|
65
59
|
seat: import("zod").ZodNullable<import("zod").ZodNumber>;
|
66
|
-
scanned: import("zod").ZodBoolean;
|
67
|
-
scannedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
68
60
|
created_at: import("zod").ZodString;
|
69
61
|
updated_at: import("zod").ZodString;
|
70
62
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -78,8 +70,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
78
70
|
dni: string;
|
79
71
|
created_at: string;
|
80
72
|
updated_at: string;
|
81
|
-
scanned: boolean;
|
82
|
-
scannedAt: string | null;
|
83
73
|
}, {
|
84
74
|
id: string;
|
85
75
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -91,8 +81,6 @@ declare const FindTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSt
|
|
91
81
|
dni: string;
|
92
82
|
created_at: string;
|
93
83
|
updated_at: string;
|
94
|
-
scanned: boolean;
|
95
|
-
scannedAt: string | null;
|
96
84
|
}>>;
|
97
85
|
export declare class FindTicketResponseDto extends FindTicketResponseDto_base {
|
98
86
|
}
|
@@ -1,6 +1,7 @@
|
|
1
|
+
/// <reference types="node" />
|
1
2
|
import z from 'zod';
|
2
|
-
export declare const generatePdfResponseSchema: z.ZodType<Buffer
|
3
|
-
declare const GeneratePdfResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodType<Buffer
|
3
|
+
export declare const generatePdfResponseSchema: z.ZodType<Buffer, z.ZodTypeDef, Buffer>;
|
4
|
+
declare const GeneratePdfResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodType<Buffer, z.ZodTypeDef, Buffer>>;
|
4
5
|
export declare class GeneratePdfResponseDto extends GeneratePdfResponseDto_base {
|
5
6
|
}
|
6
7
|
export {};
|
@@ -16,8 +16,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
16
16
|
mail: z.ZodString;
|
17
17
|
dni: z.ZodString;
|
18
18
|
seat: z.ZodNullable<z.ZodNumber>;
|
19
|
-
scanned: z.ZodBoolean;
|
20
|
-
scannedAt: z.ZodNullable<z.ZodDate>;
|
21
19
|
created_at: z.ZodDate;
|
22
20
|
updated_at: z.ZodDate;
|
23
21
|
}, "strip", z.ZodTypeAny, {
|
@@ -31,8 +29,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
31
29
|
dni: string;
|
32
30
|
created_at: Date;
|
33
31
|
updated_at: Date;
|
34
|
-
scanned: boolean;
|
35
|
-
scannedAt: Date | null;
|
36
32
|
}, {
|
37
33
|
id: string;
|
38
34
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -44,8 +40,6 @@ export declare const ticketSchema: z.ZodObject<{
|
|
44
40
|
dni: string;
|
45
41
|
created_at: Date;
|
46
42
|
updated_at: Date;
|
47
|
-
scanned: boolean;
|
48
|
-
scannedAt: Date | null;
|
49
43
|
}>;
|
50
44
|
declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
51
45
|
id: z.ZodString;
|
@@ -64,8 +58,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
64
58
|
mail: z.ZodString;
|
65
59
|
dni: z.ZodString;
|
66
60
|
seat: z.ZodNullable<z.ZodNumber>;
|
67
|
-
scanned: z.ZodBoolean;
|
68
|
-
scannedAt: z.ZodNullable<z.ZodString>;
|
69
61
|
created_at: z.ZodString;
|
70
62
|
updated_at: z.ZodString;
|
71
63
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -79,8 +71,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
79
71
|
dni: string;
|
80
72
|
created_at: string;
|
81
73
|
updated_at: string;
|
82
|
-
scanned: boolean;
|
83
|
-
scannedAt: string | null;
|
84
74
|
}, {
|
85
75
|
id: string;
|
86
76
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
@@ -92,8 +82,6 @@ declare const TicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodOb
|
|
92
82
|
dni: string;
|
93
83
|
created_at: string;
|
94
84
|
updated_at: string;
|
95
|
-
scanned: boolean;
|
96
|
-
scannedAt: string | null;
|
97
85
|
}>>;
|
98
86
|
export declare class TicketDto extends TicketDto_base {
|
99
87
|
}
|
@@ -22,8 +22,6 @@ exports.ticketSchema = zod_1.default.object({
|
|
22
22
|
mail: zod_1.default.string().email((0, translate_1.translate)('model.ticket.mail.email')),
|
23
23
|
dni: zod_1.default.string().min(1, (0, translate_1.translate)('model.ticket.dni.required')),
|
24
24
|
seat: zod_1.default.number().min(1, (0, translate_1.translate)('model.ticket.seat.required')).nullable(),
|
25
|
-
scanned: zod_1.default.boolean(),
|
26
|
-
scannedAt: zod_1.default.date().nullable(),
|
27
25
|
created_at: zod_1.default.date(),
|
28
26
|
updated_at: zod_1.default.date(),
|
29
27
|
});
|