expo-backend-types 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.1 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.3
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-by-id-event.dto.d.ts +10 -0
- package/dist/src/i18n/es.d.ts +6 -0
- package/dist/src/i18n/es.js +6 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +27 -1
- package/dist/src/ticket/dto/create-many-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -1
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-event-type-ticket.dto.d.ts +48 -0
- package/dist/src/ticket/dto/find-by-event-type-ticket.dto.js +20 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
- package/dist/src/ticket/dto/ticket.dto.js +1 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +24 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +10 -1
- package/dist/types/prisma-schema/edge.js +4 -3
- package/dist/types/prisma-schema/index-browser.js +1 -0
- package/dist/types/prisma-schema/index.d.ts +49 -1
- package/dist/types/prisma-schema/index.js +4 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -0
- package/dist/types/prisma-schema/wasm.js +1 -0
- package/dist/types/schema.d.ts +21 -1
- package/package.json +1 -1
@@ -63,6 +63,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
63
63
|
fullName: string;
|
64
64
|
profilePictureUrl: string | null;
|
65
65
|
mail: string | null;
|
66
|
+
dni: string | null;
|
66
67
|
created_at: Date;
|
67
68
|
updated_at: Date;
|
68
69
|
shortId: number;
|
@@ -72,7 +73,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
72
73
|
gender: string | null;
|
73
74
|
birthDate: Date | null;
|
74
75
|
instagram: string | null;
|
75
|
-
dni: string | null;
|
76
76
|
alternativeNames: string[];
|
77
77
|
birthLocationId: string | null;
|
78
78
|
residenceLocationId: string | null;
|
@@ -87,6 +87,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
87
87
|
fullName: string;
|
88
88
|
profilePictureUrl: string | null;
|
89
89
|
mail: string | null;
|
90
|
+
dni: string | null;
|
90
91
|
created_at: Date;
|
91
92
|
updated_at: Date;
|
92
93
|
shortId: number;
|
@@ -96,7 +97,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
96
97
|
gender: string | null;
|
97
98
|
birthDate: string | null;
|
98
99
|
instagram: string | null;
|
99
|
-
dni: string | null;
|
100
100
|
alternativeNames: string[];
|
101
101
|
birthLocationId: string | null;
|
102
102
|
residenceLocationId: string | null;
|
@@ -115,6 +115,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
115
115
|
fullName: string;
|
116
116
|
profilePictureUrl: string | null;
|
117
117
|
mail: string | null;
|
118
|
+
dni: string | null;
|
118
119
|
created_at: Date;
|
119
120
|
updated_at: Date;
|
120
121
|
shortId: number;
|
@@ -124,7 +125,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
124
125
|
gender: string | null;
|
125
126
|
birthDate: Date | null;
|
126
127
|
instagram: string | null;
|
127
|
-
dni: string | null;
|
128
128
|
alternativeNames: string[];
|
129
129
|
birthLocationId: string | null;
|
130
130
|
residenceLocationId: string | null;
|
@@ -141,6 +141,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
141
141
|
fullName: string;
|
142
142
|
profilePictureUrl: string | null;
|
143
143
|
mail: string | null;
|
144
|
+
dni: string | null;
|
144
145
|
created_at: Date;
|
145
146
|
updated_at: Date;
|
146
147
|
shortId: number;
|
@@ -150,7 +151,6 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
150
151
|
gender: string | null;
|
151
152
|
birthDate: string | null;
|
152
153
|
instagram: string | null;
|
153
|
-
dni: string | null;
|
154
154
|
alternativeNames: string[];
|
155
155
|
birthLocationId: string | null;
|
156
156
|
residenceLocationId: string | null;
|
@@ -201,6 +201,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
201
201
|
fullName: string;
|
202
202
|
profilePictureUrl: string | null;
|
203
203
|
mail: string | null;
|
204
|
+
dni: string | null;
|
204
205
|
created_at: string;
|
205
206
|
updated_at: string;
|
206
207
|
shortId: number;
|
@@ -210,7 +211,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
210
211
|
gender: string | null;
|
211
212
|
birthDate: string | null;
|
212
213
|
instagram: string | null;
|
213
|
-
dni: string | null;
|
214
214
|
alternativeNames: string[];
|
215
215
|
birthLocationId: string | null;
|
216
216
|
residenceLocationId: string | null;
|
@@ -225,6 +225,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
225
225
|
fullName: string;
|
226
226
|
profilePictureUrl: string | null;
|
227
227
|
mail: string | null;
|
228
|
+
dni: string | null;
|
228
229
|
created_at: string;
|
229
230
|
updated_at: string;
|
230
231
|
shortId: number;
|
@@ -234,7 +235,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
234
235
|
gender: string | null;
|
235
236
|
birthDate: string | null;
|
236
237
|
instagram: string | null;
|
237
|
-
dni: string | null;
|
238
238
|
alternativeNames: string[];
|
239
239
|
birthLocationId: string | null;
|
240
240
|
residenceLocationId: string | null;
|
@@ -253,6 +253,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
253
253
|
fullName: string;
|
254
254
|
profilePictureUrl: string | null;
|
255
255
|
mail: string | null;
|
256
|
+
dni: string | null;
|
256
257
|
created_at: string;
|
257
258
|
updated_at: string;
|
258
259
|
shortId: number;
|
@@ -262,7 +263,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
262
263
|
gender: string | null;
|
263
264
|
birthDate: string | null;
|
264
265
|
instagram: string | null;
|
265
|
-
dni: string | null;
|
266
266
|
alternativeNames: string[];
|
267
267
|
birthLocationId: string | null;
|
268
268
|
residenceLocationId: string | null;
|
@@ -279,6 +279,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
279
279
|
fullName: string;
|
280
280
|
profilePictureUrl: string | null;
|
281
281
|
mail: string | null;
|
282
|
+
dni: string | null;
|
282
283
|
created_at: string;
|
283
284
|
updated_at: string;
|
284
285
|
shortId: number;
|
@@ -288,7 +289,6 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
288
289
|
gender: string | null;
|
289
290
|
birthDate: string | null;
|
290
291
|
instagram: string | null;
|
291
|
-
dni: string | null;
|
292
292
|
alternativeNames: string[];
|
293
293
|
birthLocationId: string | null;
|
294
294
|
residenceLocationId: string | null;
|
@@ -63,6 +63,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
63
63
|
fullName: string;
|
64
64
|
profilePictureUrl: string | null;
|
65
65
|
mail: string | null;
|
66
|
+
dni: string | null;
|
66
67
|
created_at: Date;
|
67
68
|
updated_at: Date;
|
68
69
|
shortId: number;
|
@@ -72,7 +73,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
72
73
|
gender: string | null;
|
73
74
|
birthDate: Date | null;
|
74
75
|
instagram: string | null;
|
75
|
-
dni: string | null;
|
76
76
|
alternativeNames: string[];
|
77
77
|
birthLocationId: string | null;
|
78
78
|
residenceLocationId: string | null;
|
@@ -87,6 +87,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
87
87
|
fullName: string;
|
88
88
|
profilePictureUrl: string | null;
|
89
89
|
mail: string | null;
|
90
|
+
dni: string | null;
|
90
91
|
created_at: Date;
|
91
92
|
updated_at: Date;
|
92
93
|
shortId: number;
|
@@ -96,7 +97,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
96
97
|
gender: string | null;
|
97
98
|
birthDate: string | null;
|
98
99
|
instagram: string | null;
|
99
|
-
dni: string | null;
|
100
100
|
alternativeNames: string[];
|
101
101
|
birthLocationId: string | null;
|
102
102
|
residenceLocationId: string | null;
|
@@ -115,6 +115,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
115
115
|
fullName: string;
|
116
116
|
profilePictureUrl: string | null;
|
117
117
|
mail: string | null;
|
118
|
+
dni: string | null;
|
118
119
|
created_at: Date;
|
119
120
|
updated_at: Date;
|
120
121
|
shortId: number;
|
@@ -124,7 +125,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
124
125
|
gender: string | null;
|
125
126
|
birthDate: Date | null;
|
126
127
|
instagram: string | null;
|
127
|
-
dni: string | null;
|
128
128
|
alternativeNames: string[];
|
129
129
|
birthLocationId: string | null;
|
130
130
|
residenceLocationId: string | null;
|
@@ -141,6 +141,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
141
141
|
fullName: string;
|
142
142
|
profilePictureUrl: string | null;
|
143
143
|
mail: string | null;
|
144
|
+
dni: string | null;
|
144
145
|
created_at: Date;
|
145
146
|
updated_at: Date;
|
146
147
|
shortId: number;
|
@@ -150,7 +151,6 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
150
151
|
gender: string | null;
|
151
152
|
birthDate: string | null;
|
152
153
|
instagram: string | null;
|
153
|
-
dni: string | null;
|
154
154
|
alternativeNames: string[];
|
155
155
|
birthLocationId: string | null;
|
156
156
|
residenceLocationId: string | null;
|
@@ -201,6 +201,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
201
201
|
fullName: string;
|
202
202
|
profilePictureUrl: string | null;
|
203
203
|
mail: string | null;
|
204
|
+
dni: string | null;
|
204
205
|
created_at: string;
|
205
206
|
updated_at: string;
|
206
207
|
shortId: number;
|
@@ -210,7 +211,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
210
211
|
gender: string | null;
|
211
212
|
birthDate: string | null;
|
212
213
|
instagram: string | null;
|
213
|
-
dni: string | null;
|
214
214
|
alternativeNames: string[];
|
215
215
|
birthLocationId: string | null;
|
216
216
|
residenceLocationId: string | null;
|
@@ -225,6 +225,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
225
225
|
fullName: string;
|
226
226
|
profilePictureUrl: string | null;
|
227
227
|
mail: string | null;
|
228
|
+
dni: string | null;
|
228
229
|
created_at: string;
|
229
230
|
updated_at: string;
|
230
231
|
shortId: number;
|
@@ -234,7 +235,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
234
235
|
gender: string | null;
|
235
236
|
birthDate: string | null;
|
236
237
|
instagram: string | null;
|
237
|
-
dni: string | null;
|
238
238
|
alternativeNames: string[];
|
239
239
|
birthLocationId: string | null;
|
240
240
|
residenceLocationId: string | null;
|
@@ -253,6 +253,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
253
253
|
fullName: string;
|
254
254
|
profilePictureUrl: string | null;
|
255
255
|
mail: string | null;
|
256
|
+
dni: string | null;
|
256
257
|
created_at: string;
|
257
258
|
updated_at: string;
|
258
259
|
shortId: number;
|
@@ -262,7 +263,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
262
263
|
gender: string | null;
|
263
264
|
birthDate: string | null;
|
264
265
|
instagram: string | null;
|
265
|
-
dni: string | null;
|
266
266
|
alternativeNames: string[];
|
267
267
|
birthLocationId: string | null;
|
268
268
|
residenceLocationId: string | null;
|
@@ -279,6 +279,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
279
279
|
fullName: string;
|
280
280
|
profilePictureUrl: string | null;
|
281
281
|
mail: string | null;
|
282
|
+
dni: string | null;
|
282
283
|
created_at: string;
|
283
284
|
updated_at: string;
|
284
285
|
shortId: number;
|
@@ -288,7 +289,6 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
288
289
|
gender: string | null;
|
289
290
|
birthDate: string | null;
|
290
291
|
instagram: string | null;
|
291
|
-
dni: string | null;
|
292
292
|
alternativeNames: string[];
|
293
293
|
birthLocationId: string | null;
|
294
294
|
residenceLocationId: string | null;
|
@@ -10,16 +10,18 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
dni: z.ZodString;
|
13
14
|
ticketGroupId: z.ZodString;
|
14
15
|
created_at: z.ZodDate;
|
15
16
|
updated_at: z.ZodDate;
|
16
|
-
}, "type" | "fullName" | "mail" | "eventId" | "ticketGroupId">, {
|
17
|
+
}, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
|
17
18
|
profileId: z.ZodOptional<z.ZodString>;
|
18
19
|
}>, "strip", z.ZodTypeAny, {
|
19
20
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
20
21
|
fullName: string;
|
21
22
|
mail: string;
|
22
23
|
eventId: string;
|
24
|
+
dni: string;
|
23
25
|
ticketGroupId: string;
|
24
26
|
profileId?: string | undefined;
|
25
27
|
}, {
|
@@ -27,6 +29,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
27
29
|
fullName: string;
|
28
30
|
mail: string;
|
29
31
|
eventId: string;
|
32
|
+
dni: string;
|
30
33
|
ticketGroupId: string;
|
31
34
|
profileId?: string | undefined;
|
32
35
|
}>, "many">;
|
@@ -36,6 +39,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
36
39
|
fullName: string;
|
37
40
|
mail: string;
|
38
41
|
eventId: string;
|
42
|
+
dni: string;
|
39
43
|
ticketGroupId: string;
|
40
44
|
profileId?: string | undefined;
|
41
45
|
}[];
|
@@ -45,6 +49,7 @@ export declare const createManyTicketSchema: z.ZodObject<{
|
|
45
49
|
fullName: string;
|
46
50
|
mail: string;
|
47
51
|
eventId: string;
|
52
|
+
dni: string;
|
48
53
|
ticketGroupId: string;
|
49
54
|
profileId?: string | undefined;
|
50
55
|
}[];
|
@@ -59,6 +64,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
59
64
|
fullName: z.ZodString;
|
60
65
|
mail: z.ZodString;
|
61
66
|
eventId: z.ZodString;
|
67
|
+
dni: z.ZodString;
|
62
68
|
ticketGroupId: z.ZodString;
|
63
69
|
profileId: z.ZodOptional<z.ZodString>;
|
64
70
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
@@ -66,6 +72,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
66
72
|
fullName: string;
|
67
73
|
mail: string;
|
68
74
|
eventId: string;
|
75
|
+
dni: string;
|
69
76
|
ticketGroupId: string;
|
70
77
|
profileId?: string | undefined;
|
71
78
|
}, {
|
@@ -73,6 +80,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
73
80
|
fullName: string;
|
74
81
|
mail: string;
|
75
82
|
eventId: string;
|
83
|
+
dni: string;
|
76
84
|
ticketGroupId: string;
|
77
85
|
profileId?: string | undefined;
|
78
86
|
}>, "many">;
|
@@ -82,6 +90,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
82
90
|
fullName: string;
|
83
91
|
mail: string;
|
84
92
|
eventId: string;
|
93
|
+
dni: string;
|
85
94
|
ticketGroupId: string;
|
86
95
|
profileId?: string | undefined;
|
87
96
|
}[];
|
@@ -91,6 +100,7 @@ declare const CreateManyTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStat
|
|
91
100
|
fullName: string;
|
92
101
|
mail: string;
|
93
102
|
eventId: string;
|
103
|
+
dni: string;
|
94
104
|
ticketGroupId: string;
|
95
105
|
profileId?: string | undefined;
|
96
106
|
}[];
|
@@ -141,6 +151,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
141
151
|
}>;
|
142
152
|
fullName: z.ZodString;
|
143
153
|
mail: z.ZodString;
|
154
|
+
dni: z.ZodString;
|
144
155
|
ticketGroupId: z.ZodString;
|
145
156
|
created_at: z.ZodDate;
|
146
157
|
updated_at: z.ZodDate;
|
@@ -209,6 +220,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
209
220
|
fullName: string;
|
210
221
|
mail: string;
|
211
222
|
eventId: string;
|
223
|
+
dni: string;
|
212
224
|
created_at: Date;
|
213
225
|
updated_at: Date;
|
214
226
|
ticketGroupId: string;
|
@@ -233,6 +245,7 @@ export declare const createManyTicketResponseSchema: z.ZodArray<z.ZodObject<z.ob
|
|
233
245
|
fullName: string;
|
234
246
|
mail: string;
|
235
247
|
eventId: string;
|
248
|
+
dni: string;
|
236
249
|
created_at: Date;
|
237
250
|
updated_at: Date;
|
238
251
|
ticketGroupId: string;
|
@@ -247,6 +260,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
247
260
|
}>;
|
248
261
|
fullName: z.ZodString;
|
249
262
|
mail: z.ZodString;
|
263
|
+
dni: z.ZodString;
|
250
264
|
ticketGroupId: z.ZodString;
|
251
265
|
created_at: z.ZodString;
|
252
266
|
updated_at: z.ZodString;
|
@@ -314,6 +328,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
314
328
|
fullName: string;
|
315
329
|
mail: string;
|
316
330
|
eventId: string;
|
331
|
+
dni: string;
|
317
332
|
created_at: string;
|
318
333
|
updated_at: string;
|
319
334
|
ticketGroupId: string;
|
@@ -338,6 +353,7 @@ declare const CreateManyTicketResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
338
353
|
fullName: string;
|
339
354
|
mail: string;
|
340
355
|
eventId: string;
|
356
|
+
dni: string;
|
341
357
|
created_at: string;
|
342
358
|
updated_at: string;
|
343
359
|
ticketGroupId: string;
|
@@ -355,6 +371,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
355
371
|
}>;
|
356
372
|
fullName: z.ZodString;
|
357
373
|
mail: z.ZodString;
|
374
|
+
dni: z.ZodString;
|
358
375
|
ticketGroupId: z.ZodString;
|
359
376
|
created_at: z.ZodDate;
|
360
377
|
updated_at: z.ZodDate;
|
@@ -423,6 +440,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
423
440
|
fullName: string;
|
424
441
|
mail: string;
|
425
442
|
eventId: string;
|
443
|
+
dni: string;
|
426
444
|
created_at: Date;
|
427
445
|
updated_at: Date;
|
428
446
|
ticketGroupId: string;
|
@@ -447,6 +465,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
447
465
|
fullName: string;
|
448
466
|
mail: string;
|
449
467
|
eventId: string;
|
468
|
+
dni: string;
|
450
469
|
created_at: Date;
|
451
470
|
updated_at: Date;
|
452
471
|
ticketGroupId: string;
|
@@ -483,6 +502,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
483
502
|
fullName: string;
|
484
503
|
mail: string;
|
485
504
|
eventId: string;
|
505
|
+
dni: string;
|
486
506
|
created_at: Date;
|
487
507
|
updated_at: Date;
|
488
508
|
ticketGroupId: string;
|
@@ -513,6 +533,7 @@ export declare const createManyTicketWithPdfsResponseSchema: z.ZodObject<{
|
|
513
533
|
fullName: string;
|
514
534
|
mail: string;
|
515
535
|
eventId: string;
|
536
|
+
dni: string;
|
516
537
|
created_at: Date;
|
517
538
|
updated_at: Date;
|
518
539
|
ticketGroupId: string;
|
@@ -533,6 +554,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
533
554
|
}>;
|
534
555
|
fullName: z.ZodString;
|
535
556
|
mail: z.ZodString;
|
557
|
+
dni: z.ZodString;
|
536
558
|
ticketGroupId: z.ZodString;
|
537
559
|
created_at: z.ZodString;
|
538
560
|
updated_at: z.ZodString;
|
@@ -600,6 +622,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
600
622
|
fullName: string;
|
601
623
|
mail: string;
|
602
624
|
eventId: string;
|
625
|
+
dni: string;
|
603
626
|
created_at: string;
|
604
627
|
updated_at: string;
|
605
628
|
ticketGroupId: string;
|
@@ -624,6 +647,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
624
647
|
fullName: string;
|
625
648
|
mail: string;
|
626
649
|
eventId: string;
|
650
|
+
dni: string;
|
627
651
|
created_at: string;
|
628
652
|
updated_at: string;
|
629
653
|
ticketGroupId: string;
|
@@ -660,6 +684,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
660
684
|
fullName: string;
|
661
685
|
mail: string;
|
662
686
|
eventId: string;
|
687
|
+
dni: string;
|
663
688
|
created_at: string;
|
664
689
|
updated_at: string;
|
665
690
|
ticketGroupId: string;
|
@@ -690,6 +715,7 @@ declare const CreateManyTicketWithPdfsResponseDto_base: import("@anatine/zod-nes
|
|
690
715
|
fullName: string;
|
691
716
|
mail: string;
|
692
717
|
eventId: string;
|
718
|
+
dni: string;
|
693
719
|
created_at: string;
|
694
720
|
updated_at: string;
|
695
721
|
ticketGroupId: string;
|
@@ -8,16 +8,18 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
8
8
|
}>;
|
9
9
|
fullName: import("zod").ZodString;
|
10
10
|
mail: import("zod").ZodString;
|
11
|
+
dni: import("zod").ZodString;
|
11
12
|
ticketGroupId: import("zod").ZodString;
|
12
13
|
created_at: import("zod").ZodDate;
|
13
14
|
updated_at: import("zod").ZodDate;
|
14
|
-
}, "type" | "fullName" | "mail" | "eventId" | "ticketGroupId">, {
|
15
|
+
}, "type" | "fullName" | "mail" | "eventId" | "dni" | "ticketGroupId">, {
|
15
16
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
16
17
|
}>, "strip", import("zod").ZodTypeAny, {
|
17
18
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
18
19
|
fullName: string;
|
19
20
|
mail: string;
|
20
21
|
eventId: string;
|
22
|
+
dni: string;
|
21
23
|
ticketGroupId: string;
|
22
24
|
profileId?: string | undefined;
|
23
25
|
}, {
|
@@ -25,6 +27,7 @@ export declare const createTicketSchema: import("zod").ZodObject<import("zod").o
|
|
25
27
|
fullName: string;
|
26
28
|
mail: string;
|
27
29
|
eventId: string;
|
30
|
+
dni: string;
|
28
31
|
ticketGroupId: string;
|
29
32
|
profileId?: string | undefined;
|
30
33
|
}>;
|
@@ -37,6 +40,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
37
40
|
fullName: import("zod").ZodString;
|
38
41
|
mail: import("zod").ZodString;
|
39
42
|
eventId: import("zod").ZodString;
|
43
|
+
dni: import("zod").ZodString;
|
40
44
|
ticketGroupId: import("zod").ZodString;
|
41
45
|
profileId: import("zod").ZodOptional<import("zod").ZodString>;
|
42
46
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -44,6 +48,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
44
48
|
fullName: string;
|
45
49
|
mail: string;
|
46
50
|
eventId: string;
|
51
|
+
dni: string;
|
47
52
|
ticketGroupId: string;
|
48
53
|
profileId?: string | undefined;
|
49
54
|
}, {
|
@@ -51,6 +56,7 @@ declare const CreateTicketDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<i
|
|
51
56
|
fullName: string;
|
52
57
|
mail: string;
|
53
58
|
eventId: string;
|
59
|
+
dni: string;
|
54
60
|
ticketGroupId: string;
|
55
61
|
profileId?: string | undefined;
|
56
62
|
}>>;
|
@@ -66,6 +72,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
66
72
|
}>;
|
67
73
|
fullName: import("zod").ZodString;
|
68
74
|
mail: import("zod").ZodString;
|
75
|
+
dni: import("zod").ZodString;
|
69
76
|
ticketGroupId: import("zod").ZodString;
|
70
77
|
created_at: import("zod").ZodDate;
|
71
78
|
updated_at: import("zod").ZodDate;
|
@@ -134,6 +141,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
134
141
|
fullName: string;
|
135
142
|
mail: string;
|
136
143
|
eventId: string;
|
144
|
+
dni: string;
|
137
145
|
created_at: Date;
|
138
146
|
updated_at: Date;
|
139
147
|
ticketGroupId: string;
|
@@ -158,6 +166,7 @@ export declare const createTicketResponseSchema: import("zod").ZodObject<import(
|
|
158
166
|
fullName: string;
|
159
167
|
mail: string;
|
160
168
|
eventId: string;
|
169
|
+
dni: string;
|
161
170
|
created_at: Date;
|
162
171
|
updated_at: Date;
|
163
172
|
ticketGroupId: string;
|
@@ -172,6 +181,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
172
181
|
}>;
|
173
182
|
fullName: import("zod").ZodString;
|
174
183
|
mail: import("zod").ZodString;
|
184
|
+
dni: import("zod").ZodString;
|
175
185
|
ticketGroupId: import("zod").ZodString;
|
176
186
|
created_at: import("zod").ZodString;
|
177
187
|
updated_at: import("zod").ZodString;
|
@@ -239,6 +249,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
239
249
|
fullName: string;
|
240
250
|
mail: string;
|
241
251
|
eventId: string;
|
252
|
+
dni: string;
|
242
253
|
created_at: string;
|
243
254
|
updated_at: string;
|
244
255
|
ticketGroupId: string;
|
@@ -263,6 +274,7 @@ declare const CreateTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
263
274
|
fullName: string;
|
264
275
|
mail: string;
|
265
276
|
eventId: string;
|
277
|
+
dni: string;
|
266
278
|
created_at: string;
|
267
279
|
updated_at: string;
|
268
280
|
ticketGroupId: string;
|
@@ -8,6 +8,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
8
8
|
}>;
|
9
9
|
fullName: import("zod").ZodString;
|
10
10
|
mail: import("zod").ZodString;
|
11
|
+
dni: import("zod").ZodString;
|
11
12
|
ticketGroupId: import("zod").ZodString;
|
12
13
|
created_at: import("zod").ZodDate;
|
13
14
|
updated_at: import("zod").ZodDate;
|
@@ -17,6 +18,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
17
18
|
fullName: string;
|
18
19
|
mail: string;
|
19
20
|
eventId: string;
|
21
|
+
dni: string;
|
20
22
|
created_at: Date;
|
21
23
|
updated_at: Date;
|
22
24
|
ticketGroupId: string;
|
@@ -26,6 +28,7 @@ export declare const deleteTicketResponseSchema: import("zod").ZodObject<{
|
|
26
28
|
fullName: string;
|
27
29
|
mail: string;
|
28
30
|
eventId: string;
|
31
|
+
dni: string;
|
29
32
|
created_at: Date;
|
30
33
|
updated_at: Date;
|
31
34
|
ticketGroupId: string;
|
@@ -40,6 +43,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
40
43
|
}>;
|
41
44
|
fullName: import("zod").ZodString;
|
42
45
|
mail: import("zod").ZodString;
|
46
|
+
dni: import("zod").ZodString;
|
43
47
|
ticketGroupId: import("zod").ZodString;
|
44
48
|
created_at: import("zod").ZodString;
|
45
49
|
updated_at: import("zod").ZodString;
|
@@ -49,6 +53,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
49
53
|
fullName: string;
|
50
54
|
mail: string;
|
51
55
|
eventId: string;
|
56
|
+
dni: string;
|
52
57
|
created_at: string;
|
53
58
|
updated_at: string;
|
54
59
|
ticketGroupId: string;
|
@@ -58,6 +63,7 @@ declare const DeleteTicketResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
58
63
|
fullName: string;
|
59
64
|
mail: string;
|
60
65
|
eventId: string;
|
66
|
+
dni: string;
|
61
67
|
created_at: string;
|
62
68
|
updated_at: string;
|
63
69
|
ticketGroupId: string;
|
@@ -10,6 +10,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
10
10
|
}>;
|
11
11
|
fullName: z.ZodString;
|
12
12
|
mail: z.ZodString;
|
13
|
+
dni: z.ZodString;
|
13
14
|
ticketGroupId: z.ZodString;
|
14
15
|
created_at: z.ZodDate;
|
15
16
|
updated_at: z.ZodDate;
|
@@ -48,6 +49,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
48
49
|
fullName: string;
|
49
50
|
mail: string;
|
50
51
|
eventId: string;
|
52
|
+
dni: string;
|
51
53
|
created_at: Date;
|
52
54
|
updated_at: Date;
|
53
55
|
ticketGroupId: string;
|
@@ -62,6 +64,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
62
64
|
fullName: string;
|
63
65
|
mail: string;
|
64
66
|
eventId: string;
|
67
|
+
dni: string;
|
65
68
|
created_at: Date;
|
66
69
|
updated_at: Date;
|
67
70
|
ticketGroupId: string;
|
@@ -78,6 +81,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
78
81
|
fullName: string;
|
79
82
|
mail: string;
|
80
83
|
eventId: string;
|
84
|
+
dni: string;
|
81
85
|
created_at: Date;
|
82
86
|
updated_at: Date;
|
83
87
|
ticketGroupId: string;
|
@@ -94,6 +98,7 @@ export declare const findAllTicketsResponseSchema: z.ZodObject<{
|
|
94
98
|
fullName: string;
|
95
99
|
mail: string;
|
96
100
|
eventId: string;
|
101
|
+
dni: string;
|
97
102
|
created_at: Date;
|
98
103
|
updated_at: Date;
|
99
104
|
ticketGroupId: string;
|
@@ -110,6 +115,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
110
115
|
}>;
|
111
116
|
fullName: z.ZodString;
|
112
117
|
mail: z.ZodString;
|
118
|
+
dni: z.ZodString;
|
113
119
|
ticketGroupId: z.ZodString;
|
114
120
|
created_at: z.ZodString;
|
115
121
|
updated_at: z.ZodString;
|
@@ -137,6 +143,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
137
143
|
fullName: string;
|
138
144
|
mail: string;
|
139
145
|
eventId: string;
|
146
|
+
dni: string;
|
140
147
|
created_at: string;
|
141
148
|
updated_at: string;
|
142
149
|
ticketGroupId: string;
|
@@ -151,6 +158,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
151
158
|
fullName: string;
|
152
159
|
mail: string;
|
153
160
|
eventId: string;
|
161
|
+
dni: string;
|
154
162
|
created_at: string;
|
155
163
|
updated_at: string;
|
156
164
|
ticketGroupId: string;
|
@@ -167,6 +175,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
167
175
|
fullName: string;
|
168
176
|
mail: string;
|
169
177
|
eventId: string;
|
178
|
+
dni: string;
|
170
179
|
created_at: string;
|
171
180
|
updated_at: string;
|
172
181
|
ticketGroupId: string;
|
@@ -183,6 +192,7 @@ declare const FindAllTicketsResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
183
192
|
fullName: string;
|
184
193
|
mail: string;
|
185
194
|
eventId: string;
|
195
|
+
dni: string;
|
186
196
|
created_at: string;
|
187
197
|
updated_at: string;
|
188
198
|
ticketGroupId: string;
|