expo-backend-types 0.59.0-EXPO-404-Etapa-4-Paquete-02.5.4 → 0.60.0-feat-desfile-12-octubre.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/event/dto/get-all-statistics.dto.d.ts +15 -0
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +30 -0
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +15 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +49 -1
- package/dist/src/ticket/dto/create-many-ticket.dto.js +3 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +37 -1
- package/dist/src/ticket/dto/create-ticket.dto.js +3 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +18 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +30 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +18 -0
- package/dist/src/ticket/dto/get-pdfs-by-group-ticket.dto.d.ts +15 -0
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +18 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +18 -0
- package/dist/src/ticket/dto/ticket.dto.js +4 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +18 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
- package/dist/types/prisma-schema/edge.js +6 -3
- package/dist/types/prisma-schema/index-browser.js +3 -0
- package/dist/types/prisma-schema/index.d.ts +148 -1
- package/dist/types/prisma-schema/index.js +6 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +6 -0
- package/dist/types/prisma-schema/wasm.js +3 -0
- package/dist/types/schema.d.ts +45 -0
- package/package.json +1 -1
@@ -54,6 +54,9 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
54
54
|
fullName: z.ZodString;
|
55
55
|
mail: z.ZodString;
|
56
56
|
dni: z.ZodString;
|
57
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
58
|
+
instagrams: z.ZodArray<z.ZodString, "many">;
|
59
|
+
whoToWatch: z.ZodNullable<z.ZodString>;
|
57
60
|
seat: z.ZodNullable<z.ZodNumber>;
|
58
61
|
scanned: z.ZodBoolean;
|
59
62
|
scannedAt: z.ZodNullable<z.ZodDate>;
|
@@ -63,6 +66,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
63
66
|
}, "strip", z.ZodTypeAny, {
|
64
67
|
id: string;
|
65
68
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
69
|
+
phoneNumber: string;
|
66
70
|
fullName: string;
|
67
71
|
mail: string;
|
68
72
|
eventId: string;
|
@@ -70,12 +74,15 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
70
74
|
seat: number | null;
|
71
75
|
created_at: Date;
|
72
76
|
updated_at: Date;
|
77
|
+
instagrams: string[];
|
78
|
+
whoToWatch: string | null;
|
73
79
|
scanned: boolean;
|
74
80
|
scannedAt: Date | null;
|
75
81
|
ticketGroupId: string | null;
|
76
82
|
}, {
|
77
83
|
id: string;
|
78
84
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
85
|
+
phoneNumber: string;
|
79
86
|
fullName: string;
|
80
87
|
mail: string;
|
81
88
|
eventId: string;
|
@@ -83,6 +90,8 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
83
90
|
seat: number | null;
|
84
91
|
created_at: Date;
|
85
92
|
updated_at: Date;
|
93
|
+
instagrams: string[];
|
94
|
+
whoToWatch: string | null;
|
86
95
|
scanned: boolean;
|
87
96
|
scannedAt: Date | null;
|
88
97
|
ticketGroupId: string | null;
|
@@ -168,6 +177,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
168
177
|
tickets: {
|
169
178
|
id: string;
|
170
179
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
180
|
+
phoneNumber: string;
|
171
181
|
fullName: string;
|
172
182
|
mail: string;
|
173
183
|
eventId: string;
|
@@ -175,6 +185,8 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
175
185
|
seat: number | null;
|
176
186
|
created_at: Date;
|
177
187
|
updated_at: Date;
|
188
|
+
instagrams: string[];
|
189
|
+
whoToWatch: string | null;
|
178
190
|
scanned: boolean;
|
179
191
|
scannedAt: Date | null;
|
180
192
|
ticketGroupId: string | null;
|
@@ -208,6 +220,7 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
208
220
|
tickets: {
|
209
221
|
id: string;
|
210
222
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
223
|
+
phoneNumber: string;
|
211
224
|
fullName: string;
|
212
225
|
mail: string;
|
213
226
|
eventId: string;
|
@@ -215,6 +228,8 @@ export declare const createTicketGroupResponseSchema: z.ZodObject<z.objectUtil.e
|
|
215
228
|
seat: number | null;
|
216
229
|
created_at: Date;
|
217
230
|
updated_at: Date;
|
231
|
+
instagrams: string[];
|
232
|
+
whoToWatch: string | null;
|
218
233
|
scanned: boolean;
|
219
234
|
scannedAt: Date | null;
|
220
235
|
ticketGroupId: string | null;
|
@@ -243,6 +258,9 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
243
258
|
fullName: z.ZodString;
|
244
259
|
mail: z.ZodString;
|
245
260
|
dni: z.ZodString;
|
261
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
262
|
+
instagrams: z.ZodArray<z.ZodString, "many">;
|
263
|
+
whoToWatch: z.ZodNullable<z.ZodString>;
|
246
264
|
seat: z.ZodNullable<z.ZodNumber>;
|
247
265
|
scanned: z.ZodBoolean;
|
248
266
|
scannedAt: z.ZodNullable<z.ZodString>;
|
@@ -252,6 +270,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
252
270
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
253
271
|
id: string;
|
254
272
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
273
|
+
phoneNumber: string;
|
255
274
|
fullName: string;
|
256
275
|
mail: string;
|
257
276
|
eventId: string;
|
@@ -259,12 +278,15 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
259
278
|
seat: number | null;
|
260
279
|
created_at: string;
|
261
280
|
updated_at: string;
|
281
|
+
instagrams: string[];
|
282
|
+
whoToWatch: string | null;
|
262
283
|
scanned: boolean;
|
263
284
|
scannedAt: string | null;
|
264
285
|
ticketGroupId: string | null;
|
265
286
|
}, {
|
266
287
|
id: string;
|
267
288
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
289
|
+
phoneNumber: string;
|
268
290
|
fullName: string;
|
269
291
|
mail: string;
|
270
292
|
eventId: string;
|
@@ -272,6 +294,8 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
272
294
|
seat: number | null;
|
273
295
|
created_at: string;
|
274
296
|
updated_at: string;
|
297
|
+
instagrams: string[];
|
298
|
+
whoToWatch: string | null;
|
275
299
|
scanned: boolean;
|
276
300
|
scannedAt: string | null;
|
277
301
|
ticketGroupId: string | null;
|
@@ -357,6 +381,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
357
381
|
tickets: {
|
358
382
|
id: string;
|
359
383
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
384
|
+
phoneNumber: string;
|
360
385
|
fullName: string;
|
361
386
|
mail: string;
|
362
387
|
eventId: string;
|
@@ -364,6 +389,8 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
364
389
|
seat: number | null;
|
365
390
|
created_at: string;
|
366
391
|
updated_at: string;
|
392
|
+
instagrams: string[];
|
393
|
+
whoToWatch: string | null;
|
367
394
|
scanned: boolean;
|
368
395
|
scannedAt: string | null;
|
369
396
|
ticketGroupId: string | null;
|
@@ -397,6 +424,7 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
397
424
|
tickets: {
|
398
425
|
id: string;
|
399
426
|
type: "STAFF" | "SPECTATOR" | "PARTICIPANT";
|
427
|
+
phoneNumber: string;
|
400
428
|
fullName: string;
|
401
429
|
mail: string;
|
402
430
|
eventId: string;
|
@@ -404,6 +432,8 @@ declare const CreateTicketGroupResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
404
432
|
seat: number | null;
|
405
433
|
created_at: string;
|
406
434
|
updated_at: string;
|
435
|
+
instagrams: string[];
|
436
|
+
whoToWatch: string | null;
|
407
437
|
scanned: boolean;
|
408
438
|
scannedAt: string | null;
|
409
439
|
ticketGroupId: string | null;
|