expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.5 → 0.34.0-EXPO-319-ver-eventos-disponibles.7
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 +112 -0
- package/dist/src/event/dto/get-by-id-event.dto.js +2 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +346 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +346 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +346 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +2 -0
- package/dist/types/schema.d.ts +85 -0
- package/package.json +1 -1
@@ -186,6 +186,42 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
186
186
|
isExclusive: boolean;
|
187
187
|
};
|
188
188
|
}>, "many">;
|
189
|
+
tickets: z.ZodArray<z.ZodObject<{
|
190
|
+
id: z.ZodString;
|
191
|
+
eventId: z.ZodString;
|
192
|
+
type: z.ZodNativeEnum<{
|
193
|
+
PARTICIPANT: "PARTICIPANT";
|
194
|
+
STAFF: "STAFF";
|
195
|
+
SPECTATOR: "SPECTATOR";
|
196
|
+
}>;
|
197
|
+
status: z.ZodNativeEnum<{
|
198
|
+
BOOKED: "BOOKED";
|
199
|
+
PAID: "PAID";
|
200
|
+
FREE: "FREE";
|
201
|
+
}>;
|
202
|
+
fullName: z.ZodString;
|
203
|
+
mail: z.ZodString;
|
204
|
+
created_at: z.ZodDate;
|
205
|
+
updated_at: z.ZodDate;
|
206
|
+
}, "strip", z.ZodTypeAny, {
|
207
|
+
id: string;
|
208
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
209
|
+
fullName: string;
|
210
|
+
mail: string;
|
211
|
+
eventId: string;
|
212
|
+
status: "BOOKED" | "PAID" | "FREE";
|
213
|
+
created_at: Date;
|
214
|
+
updated_at: Date;
|
215
|
+
}, {
|
216
|
+
id: string;
|
217
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
218
|
+
fullName: string;
|
219
|
+
mail: string;
|
220
|
+
eventId: string;
|
221
|
+
status: "BOOKED" | "PAID" | "FREE";
|
222
|
+
created_at: Date;
|
223
|
+
updated_at: Date;
|
224
|
+
}>, "many">;
|
189
225
|
}>, "strip", z.ZodTypeAny, {
|
190
226
|
location: string;
|
191
227
|
id: string;
|
@@ -252,6 +288,16 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
252
288
|
tagConfirmedId: string;
|
253
289
|
supraEventId: string | null;
|
254
290
|
} | null;
|
291
|
+
tickets: {
|
292
|
+
id: string;
|
293
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
294
|
+
fullName: string;
|
295
|
+
mail: string;
|
296
|
+
eventId: string;
|
297
|
+
status: "BOOKED" | "PAID" | "FREE";
|
298
|
+
created_at: Date;
|
299
|
+
updated_at: Date;
|
300
|
+
}[];
|
255
301
|
}, {
|
256
302
|
location: string;
|
257
303
|
id: string;
|
@@ -318,6 +364,16 @@ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extend
|
|
318
364
|
tagConfirmedId: string;
|
319
365
|
supraEventId: string | null;
|
320
366
|
} | null;
|
367
|
+
tickets: {
|
368
|
+
id: string;
|
369
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
370
|
+
fullName: string;
|
371
|
+
mail: string;
|
372
|
+
eventId: string;
|
373
|
+
status: "BOOKED" | "PAID" | "FREE";
|
374
|
+
created_at: Date;
|
375
|
+
updated_at: Date;
|
376
|
+
}[];
|
321
377
|
}>;
|
322
378
|
declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
323
379
|
id: z.ZodString;
|
@@ -504,6 +560,42 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
504
560
|
isExclusive: boolean;
|
505
561
|
};
|
506
562
|
}>, "many">;
|
563
|
+
tickets: z.ZodArray<z.ZodObject<{
|
564
|
+
id: z.ZodString;
|
565
|
+
eventId: z.ZodString;
|
566
|
+
type: z.ZodNativeEnum<{
|
567
|
+
PARTICIPANT: "PARTICIPANT";
|
568
|
+
STAFF: "STAFF";
|
569
|
+
SPECTATOR: "SPECTATOR";
|
570
|
+
}>;
|
571
|
+
status: z.ZodNativeEnum<{
|
572
|
+
BOOKED: "BOOKED";
|
573
|
+
PAID: "PAID";
|
574
|
+
FREE: "FREE";
|
575
|
+
}>;
|
576
|
+
fullName: z.ZodString;
|
577
|
+
mail: z.ZodString;
|
578
|
+
created_at: z.ZodString;
|
579
|
+
updated_at: z.ZodString;
|
580
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
581
|
+
id: string;
|
582
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
583
|
+
fullName: string;
|
584
|
+
mail: string;
|
585
|
+
eventId: string;
|
586
|
+
status: "BOOKED" | "PAID" | "FREE";
|
587
|
+
created_at: string;
|
588
|
+
updated_at: string;
|
589
|
+
}, {
|
590
|
+
id: string;
|
591
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
592
|
+
fullName: string;
|
593
|
+
mail: string;
|
594
|
+
eventId: string;
|
595
|
+
status: "BOOKED" | "PAID" | "FREE";
|
596
|
+
created_at: string;
|
597
|
+
updated_at: string;
|
598
|
+
}>, "many">;
|
507
599
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
508
600
|
location: string;
|
509
601
|
id: string;
|
@@ -570,6 +662,16 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
570
662
|
tagConfirmedId: string;
|
571
663
|
supraEventId: string | null;
|
572
664
|
} | null;
|
665
|
+
tickets: {
|
666
|
+
id: string;
|
667
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
668
|
+
fullName: string;
|
669
|
+
mail: string;
|
670
|
+
eventId: string;
|
671
|
+
status: "BOOKED" | "PAID" | "FREE";
|
672
|
+
created_at: string;
|
673
|
+
updated_at: string;
|
674
|
+
}[];
|
573
675
|
}, {
|
574
676
|
location: string;
|
575
677
|
id: string;
|
@@ -636,6 +738,16 @@ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
636
738
|
tagConfirmedId: string;
|
637
739
|
supraEventId: string | null;
|
638
740
|
} | null;
|
741
|
+
tickets: {
|
742
|
+
id: string;
|
743
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
744
|
+
fullName: string;
|
745
|
+
mail: string;
|
746
|
+
eventId: string;
|
747
|
+
status: "BOOKED" | "PAID" | "FREE";
|
748
|
+
created_at: string;
|
749
|
+
updated_at: string;
|
750
|
+
}[];
|
639
751
|
}>>;
|
640
752
|
export declare class GetByIdEventResponseDto extends GetByIdEventResponseDto_base {
|
641
753
|
}
|
@@ -9,12 +9,14 @@ const event_dto_1 = require("./event.dto");
|
|
9
9
|
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
10
10
|
const tag_group_dto_1 = require("../../tag-group/dto/tag-group.dto");
|
11
11
|
const tag_dto_1 = require("../../tag/dto/tag.dto");
|
12
|
+
const ticket_dto_1 = require("../../ticket/dto/ticket.dto");
|
12
13
|
const zod_1 = __importDefault(require("zod"));
|
13
14
|
exports.getByIdEventResponseSchema = event_dto_1.eventSchema.merge(zod_1.default.object({
|
14
15
|
subEvents: zod_1.default.array(event_dto_1.eventSchema),
|
15
16
|
supraEvent: event_dto_1.eventSchema.nullable(),
|
16
17
|
eventTickets: zod_1.default.array(event_tickets_dto_1.eventTicketsSchema),
|
17
18
|
tags: zod_1.default.array(tag_dto_1.tagSchema.extend({ group: tag_group_dto_1.tagGroupSchema })),
|
19
|
+
tickets: zod_1.default.array(ticket_dto_1.ticketSchema),
|
18
20
|
}));
|
19
21
|
class GetByIdEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getByIdEventResponseSchema) {
|
20
22
|
}
|
@@ -41,12 +41,110 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
41
41
|
name: string;
|
42
42
|
date: Date;
|
43
43
|
}>;
|
44
|
+
profile: z.ZodNullable<z.ZodObject<{
|
45
|
+
id: z.ZodString;
|
46
|
+
shortId: z.ZodNumber;
|
47
|
+
firstTimeMiExpo: z.ZodBoolean;
|
48
|
+
username: z.ZodNullable<z.ZodString>;
|
49
|
+
password: z.ZodNullable<z.ZodString>;
|
50
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
51
|
+
isPhoneVerified: z.ZodBoolean;
|
52
|
+
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
53
|
+
fullName: z.ZodString;
|
54
|
+
firstName: z.ZodNullable<z.ZodString>;
|
55
|
+
gender: z.ZodNullable<z.ZodString>;
|
56
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
|
57
|
+
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
58
|
+
instagram: z.ZodNullable<z.ZodString>;
|
59
|
+
mail: z.ZodNullable<z.ZodString>;
|
60
|
+
dni: z.ZodNullable<z.ZodString>;
|
61
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
62
|
+
birthLocationId: z.ZodNullable<z.ZodString>;
|
63
|
+
residenceLocationId: z.ZodNullable<z.ZodString>;
|
64
|
+
isInTrash: z.ZodBoolean;
|
65
|
+
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
66
|
+
created_at: z.ZodDate;
|
67
|
+
updated_at: z.ZodDate;
|
68
|
+
}, "strip", z.ZodTypeAny, {
|
69
|
+
id: string;
|
70
|
+
username: string | null;
|
71
|
+
password: string | null;
|
72
|
+
phoneNumber: string;
|
73
|
+
secondaryPhoneNumber: string | null;
|
74
|
+
fullName: string;
|
75
|
+
profilePictureUrl: string | null;
|
76
|
+
mail: string | null;
|
77
|
+
created_at: Date;
|
78
|
+
updated_at: Date;
|
79
|
+
shortId: number;
|
80
|
+
firstTimeMiExpo: boolean;
|
81
|
+
isPhoneVerified: boolean;
|
82
|
+
firstName: string | null;
|
83
|
+
gender: string | null;
|
84
|
+
birthDate: Date | null;
|
85
|
+
instagram: string | null;
|
86
|
+
dni: string | null;
|
87
|
+
alternativeNames: string[];
|
88
|
+
birthLocationId: string | null;
|
89
|
+
residenceLocationId: string | null;
|
90
|
+
isInTrash: boolean;
|
91
|
+
movedToTrashDate: Date | null;
|
92
|
+
}, {
|
93
|
+
id: string;
|
94
|
+
username: string | null;
|
95
|
+
password: string | null;
|
96
|
+
phoneNumber: string;
|
97
|
+
secondaryPhoneNumber: string | null;
|
98
|
+
fullName: string;
|
99
|
+
profilePictureUrl: string | null;
|
100
|
+
mail: string | null;
|
101
|
+
created_at: Date;
|
102
|
+
updated_at: Date;
|
103
|
+
shortId: number;
|
104
|
+
firstTimeMiExpo: boolean;
|
105
|
+
isPhoneVerified: boolean;
|
106
|
+
firstName: string | null;
|
107
|
+
gender: string | null;
|
108
|
+
birthDate: string | null;
|
109
|
+
instagram: string | null;
|
110
|
+
dni: string | null;
|
111
|
+
alternativeNames: string[];
|
112
|
+
birthLocationId: string | null;
|
113
|
+
residenceLocationId: string | null;
|
114
|
+
isInTrash: boolean;
|
115
|
+
movedToTrashDate: Date | null;
|
116
|
+
}>>;
|
44
117
|
}>, "strip", z.ZodTypeAny, {
|
45
118
|
event: {
|
46
119
|
location: string;
|
47
120
|
name: string;
|
48
121
|
date: Date;
|
49
122
|
};
|
123
|
+
profile: {
|
124
|
+
id: string;
|
125
|
+
username: string | null;
|
126
|
+
password: string | null;
|
127
|
+
phoneNumber: string;
|
128
|
+
secondaryPhoneNumber: string | null;
|
129
|
+
fullName: string;
|
130
|
+
profilePictureUrl: string | null;
|
131
|
+
mail: string | null;
|
132
|
+
created_at: Date;
|
133
|
+
updated_at: Date;
|
134
|
+
shortId: number;
|
135
|
+
firstTimeMiExpo: boolean;
|
136
|
+
isPhoneVerified: boolean;
|
137
|
+
firstName: string | null;
|
138
|
+
gender: string | null;
|
139
|
+
birthDate: Date | null;
|
140
|
+
instagram: string | null;
|
141
|
+
dni: string | null;
|
142
|
+
alternativeNames: string[];
|
143
|
+
birthLocationId: string | null;
|
144
|
+
residenceLocationId: string | null;
|
145
|
+
isInTrash: boolean;
|
146
|
+
movedToTrashDate: Date | null;
|
147
|
+
} | null;
|
50
148
|
id: string;
|
51
149
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
52
150
|
fullName: string;
|
@@ -61,6 +159,31 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
61
159
|
name: string;
|
62
160
|
date: Date;
|
63
161
|
};
|
162
|
+
profile: {
|
163
|
+
id: string;
|
164
|
+
username: string | null;
|
165
|
+
password: string | null;
|
166
|
+
phoneNumber: string;
|
167
|
+
secondaryPhoneNumber: string | null;
|
168
|
+
fullName: string;
|
169
|
+
profilePictureUrl: string | null;
|
170
|
+
mail: string | null;
|
171
|
+
created_at: Date;
|
172
|
+
updated_at: Date;
|
173
|
+
shortId: number;
|
174
|
+
firstTimeMiExpo: boolean;
|
175
|
+
isPhoneVerified: boolean;
|
176
|
+
firstName: string | null;
|
177
|
+
gender: string | null;
|
178
|
+
birthDate: string | null;
|
179
|
+
instagram: string | null;
|
180
|
+
dni: string | null;
|
181
|
+
alternativeNames: string[];
|
182
|
+
birthLocationId: string | null;
|
183
|
+
residenceLocationId: string | null;
|
184
|
+
isInTrash: boolean;
|
185
|
+
movedToTrashDate: Date | null;
|
186
|
+
} | null;
|
64
187
|
id: string;
|
65
188
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
66
189
|
fullName: string;
|
@@ -77,6 +200,31 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
77
200
|
name: string;
|
78
201
|
date: Date;
|
79
202
|
};
|
203
|
+
profile: {
|
204
|
+
id: string;
|
205
|
+
username: string | null;
|
206
|
+
password: string | null;
|
207
|
+
phoneNumber: string;
|
208
|
+
secondaryPhoneNumber: string | null;
|
209
|
+
fullName: string;
|
210
|
+
profilePictureUrl: string | null;
|
211
|
+
mail: string | null;
|
212
|
+
created_at: Date;
|
213
|
+
updated_at: Date;
|
214
|
+
shortId: number;
|
215
|
+
firstTimeMiExpo: boolean;
|
216
|
+
isPhoneVerified: boolean;
|
217
|
+
firstName: string | null;
|
218
|
+
gender: string | null;
|
219
|
+
birthDate: Date | null;
|
220
|
+
instagram: string | null;
|
221
|
+
dni: string | null;
|
222
|
+
alternativeNames: string[];
|
223
|
+
birthLocationId: string | null;
|
224
|
+
residenceLocationId: string | null;
|
225
|
+
isInTrash: boolean;
|
226
|
+
movedToTrashDate: Date | null;
|
227
|
+
} | null;
|
80
228
|
id: string;
|
81
229
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
82
230
|
fullName: string;
|
@@ -93,6 +241,31 @@ export declare const findByEventTicketResponseSchema: z.ZodObject<{
|
|
93
241
|
name: string;
|
94
242
|
date: Date;
|
95
243
|
};
|
244
|
+
profile: {
|
245
|
+
id: string;
|
246
|
+
username: string | null;
|
247
|
+
password: string | null;
|
248
|
+
phoneNumber: string;
|
249
|
+
secondaryPhoneNumber: string | null;
|
250
|
+
fullName: string;
|
251
|
+
profilePictureUrl: string | null;
|
252
|
+
mail: string | null;
|
253
|
+
created_at: Date;
|
254
|
+
updated_at: Date;
|
255
|
+
shortId: number;
|
256
|
+
firstTimeMiExpo: boolean;
|
257
|
+
isPhoneVerified: boolean;
|
258
|
+
firstName: string | null;
|
259
|
+
gender: string | null;
|
260
|
+
birthDate: string | null;
|
261
|
+
instagram: string | null;
|
262
|
+
dni: string | null;
|
263
|
+
alternativeNames: string[];
|
264
|
+
birthLocationId: string | null;
|
265
|
+
residenceLocationId: string | null;
|
266
|
+
isInTrash: boolean;
|
267
|
+
movedToTrashDate: Date | null;
|
268
|
+
} | null;
|
96
269
|
id: string;
|
97
270
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
98
271
|
fullName: string;
|
@@ -134,12 +307,110 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
134
307
|
name: string;
|
135
308
|
date: string;
|
136
309
|
}>;
|
310
|
+
profile: z.ZodNullable<z.ZodObject<{
|
311
|
+
id: z.ZodString;
|
312
|
+
shortId: z.ZodNumber;
|
313
|
+
firstTimeMiExpo: z.ZodBoolean;
|
314
|
+
username: z.ZodNullable<z.ZodString>;
|
315
|
+
password: z.ZodNullable<z.ZodString>;
|
316
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
317
|
+
isPhoneVerified: z.ZodBoolean;
|
318
|
+
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
319
|
+
fullName: z.ZodString;
|
320
|
+
firstName: z.ZodNullable<z.ZodString>;
|
321
|
+
gender: z.ZodNullable<z.ZodString>;
|
322
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
323
|
+
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
324
|
+
instagram: z.ZodNullable<z.ZodString>;
|
325
|
+
mail: z.ZodNullable<z.ZodString>;
|
326
|
+
dni: z.ZodNullable<z.ZodString>;
|
327
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
328
|
+
birthLocationId: z.ZodNullable<z.ZodString>;
|
329
|
+
residenceLocationId: z.ZodNullable<z.ZodString>;
|
330
|
+
isInTrash: z.ZodBoolean;
|
331
|
+
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
332
|
+
created_at: z.ZodString;
|
333
|
+
updated_at: z.ZodString;
|
334
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
335
|
+
id: string;
|
336
|
+
username: string | null;
|
337
|
+
password: string | null;
|
338
|
+
phoneNumber: string;
|
339
|
+
secondaryPhoneNumber: string | null;
|
340
|
+
fullName: string;
|
341
|
+
profilePictureUrl: string | null;
|
342
|
+
mail: string | null;
|
343
|
+
created_at: string;
|
344
|
+
updated_at: string;
|
345
|
+
shortId: number;
|
346
|
+
firstTimeMiExpo: boolean;
|
347
|
+
isPhoneVerified: boolean;
|
348
|
+
firstName: string | null;
|
349
|
+
gender: string | null;
|
350
|
+
birthDate: string | null;
|
351
|
+
instagram: string | null;
|
352
|
+
dni: string | null;
|
353
|
+
alternativeNames: string[];
|
354
|
+
birthLocationId: string | null;
|
355
|
+
residenceLocationId: string | null;
|
356
|
+
isInTrash: boolean;
|
357
|
+
movedToTrashDate: string | null;
|
358
|
+
}, {
|
359
|
+
id: string;
|
360
|
+
username: string | null;
|
361
|
+
password: string | null;
|
362
|
+
phoneNumber: string;
|
363
|
+
secondaryPhoneNumber: string | null;
|
364
|
+
fullName: string;
|
365
|
+
profilePictureUrl: string | null;
|
366
|
+
mail: string | null;
|
367
|
+
created_at: string;
|
368
|
+
updated_at: string;
|
369
|
+
shortId: number;
|
370
|
+
firstTimeMiExpo: boolean;
|
371
|
+
isPhoneVerified: boolean;
|
372
|
+
firstName: string | null;
|
373
|
+
gender: string | null;
|
374
|
+
birthDate: string | null;
|
375
|
+
instagram: string | null;
|
376
|
+
dni: string | null;
|
377
|
+
alternativeNames: string[];
|
378
|
+
birthLocationId: string | null;
|
379
|
+
residenceLocationId: string | null;
|
380
|
+
isInTrash: boolean;
|
381
|
+
movedToTrashDate: string | null;
|
382
|
+
}>>;
|
137
383
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
138
384
|
event: {
|
139
385
|
location: string;
|
140
386
|
name: string;
|
141
387
|
date: string;
|
142
388
|
};
|
389
|
+
profile: {
|
390
|
+
id: string;
|
391
|
+
username: string | null;
|
392
|
+
password: string | null;
|
393
|
+
phoneNumber: string;
|
394
|
+
secondaryPhoneNumber: string | null;
|
395
|
+
fullName: string;
|
396
|
+
profilePictureUrl: string | null;
|
397
|
+
mail: string | null;
|
398
|
+
created_at: string;
|
399
|
+
updated_at: string;
|
400
|
+
shortId: number;
|
401
|
+
firstTimeMiExpo: boolean;
|
402
|
+
isPhoneVerified: boolean;
|
403
|
+
firstName: string | null;
|
404
|
+
gender: string | null;
|
405
|
+
birthDate: string | null;
|
406
|
+
instagram: string | null;
|
407
|
+
dni: string | null;
|
408
|
+
alternativeNames: string[];
|
409
|
+
birthLocationId: string | null;
|
410
|
+
residenceLocationId: string | null;
|
411
|
+
isInTrash: boolean;
|
412
|
+
movedToTrashDate: string | null;
|
413
|
+
} | null;
|
143
414
|
id: string;
|
144
415
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
145
416
|
fullName: string;
|
@@ -154,6 +425,31 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
154
425
|
name: string;
|
155
426
|
date: string;
|
156
427
|
};
|
428
|
+
profile: {
|
429
|
+
id: string;
|
430
|
+
username: string | null;
|
431
|
+
password: string | null;
|
432
|
+
phoneNumber: string;
|
433
|
+
secondaryPhoneNumber: string | null;
|
434
|
+
fullName: string;
|
435
|
+
profilePictureUrl: string | null;
|
436
|
+
mail: string | null;
|
437
|
+
created_at: string;
|
438
|
+
updated_at: string;
|
439
|
+
shortId: number;
|
440
|
+
firstTimeMiExpo: boolean;
|
441
|
+
isPhoneVerified: boolean;
|
442
|
+
firstName: string | null;
|
443
|
+
gender: string | null;
|
444
|
+
birthDate: string | null;
|
445
|
+
instagram: string | null;
|
446
|
+
dni: string | null;
|
447
|
+
alternativeNames: string[];
|
448
|
+
birthLocationId: string | null;
|
449
|
+
residenceLocationId: string | null;
|
450
|
+
isInTrash: boolean;
|
451
|
+
movedToTrashDate: string | null;
|
452
|
+
} | null;
|
157
453
|
id: string;
|
158
454
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
159
455
|
fullName: string;
|
@@ -170,6 +466,31 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
170
466
|
name: string;
|
171
467
|
date: string;
|
172
468
|
};
|
469
|
+
profile: {
|
470
|
+
id: string;
|
471
|
+
username: string | null;
|
472
|
+
password: string | null;
|
473
|
+
phoneNumber: string;
|
474
|
+
secondaryPhoneNumber: string | null;
|
475
|
+
fullName: string;
|
476
|
+
profilePictureUrl: string | null;
|
477
|
+
mail: string | null;
|
478
|
+
created_at: string;
|
479
|
+
updated_at: string;
|
480
|
+
shortId: number;
|
481
|
+
firstTimeMiExpo: boolean;
|
482
|
+
isPhoneVerified: boolean;
|
483
|
+
firstName: string | null;
|
484
|
+
gender: string | null;
|
485
|
+
birthDate: string | null;
|
486
|
+
instagram: string | null;
|
487
|
+
dni: string | null;
|
488
|
+
alternativeNames: string[];
|
489
|
+
birthLocationId: string | null;
|
490
|
+
residenceLocationId: string | null;
|
491
|
+
isInTrash: boolean;
|
492
|
+
movedToTrashDate: string | null;
|
493
|
+
} | null;
|
173
494
|
id: string;
|
174
495
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
175
496
|
fullName: string;
|
@@ -186,6 +507,31 @@ declare const FindByEventTicketResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
186
507
|
name: string;
|
187
508
|
date: string;
|
188
509
|
};
|
510
|
+
profile: {
|
511
|
+
id: string;
|
512
|
+
username: string | null;
|
513
|
+
password: string | null;
|
514
|
+
phoneNumber: string;
|
515
|
+
secondaryPhoneNumber: string | null;
|
516
|
+
fullName: string;
|
517
|
+
profilePictureUrl: string | null;
|
518
|
+
mail: string | null;
|
519
|
+
created_at: string;
|
520
|
+
updated_at: string;
|
521
|
+
shortId: number;
|
522
|
+
firstTimeMiExpo: boolean;
|
523
|
+
isPhoneVerified: boolean;
|
524
|
+
firstName: string | null;
|
525
|
+
gender: string | null;
|
526
|
+
birthDate: string | null;
|
527
|
+
instagram: string | null;
|
528
|
+
dni: string | null;
|
529
|
+
alternativeNames: string[];
|
530
|
+
birthLocationId: string | null;
|
531
|
+
residenceLocationId: string | null;
|
532
|
+
isInTrash: boolean;
|
533
|
+
movedToTrashDate: string | null;
|
534
|
+
} | null;
|
189
535
|
id: string;
|
190
536
|
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
191
537
|
fullName: string;
|
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
exports.FindByEventTicketResponseDto = exports.findByEventTicketResponseSchema = void 0;
|
7
7
|
const event_dto_1 = require("../../event/dto/event.dto");
|
8
|
+
const profile_schema_1 = require("../../schema/profile.schema");
|
8
9
|
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
9
10
|
const zod_1 = __importDefault(require("zod"));
|
10
11
|
const ticket_dto_1 = require("./ticket.dto");
|
@@ -15,6 +16,7 @@ exports.findByEventTicketResponseSchema = zod_1.default.object({
|
|
15
16
|
date: true,
|
16
17
|
location: true,
|
17
18
|
}),
|
19
|
+
profile: profile_schema_1.profileSchema.nullable(),
|
18
20
|
}))),
|
19
21
|
});
|
20
22
|
class FindByEventTicketResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.findByEventTicketResponseSchema) {
|