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.
Files changed (52) hide show
  1. package/dist/src/event/dto/get-by-id-event.dto.d.ts +10 -0
  2. package/dist/src/i18n/es.d.ts +6 -0
  3. package/dist/src/i18n/es.js +6 -0
  4. package/dist/src/i18n/es.js.map +1 -1
  5. package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
  6. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
  7. package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
  8. package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
  9. package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
  10. package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
  11. package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
  12. package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
  13. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
  14. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +5 -5
  15. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
  16. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
  17. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
  18. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
  19. package/dist/src/profile/dto/profile.dto.d.ts +2 -2
  20. package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
  21. package/dist/src/schema/profile.schema.d.ts +2 -2
  22. package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
  23. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
  24. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +27 -1
  25. package/dist/src/ticket/dto/create-many-ticket.dto.js +1 -0
  26. package/dist/src/ticket/dto/create-ticket.dto.d.ts +13 -1
  27. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  28. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +6 -0
  29. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +10 -0
  30. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +22 -12
  31. package/dist/src/ticket/dto/find-by-event-type-ticket.dto.d.ts +48 -0
  32. package/dist/src/ticket/dto/find-by-event-type-ticket.dto.js +20 -0
  33. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +22 -12
  34. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +22 -12
  35. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +10 -0
  36. package/dist/src/ticket/dto/find-ticket.dto.d.ts +6 -0
  37. package/dist/src/ticket/dto/ticket.dto.d.ts +6 -0
  38. package/dist/src/ticket/dto/ticket.dto.js +1 -0
  39. package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
  40. package/dist/src/ticket/dto/update-ticket.dto.js +1 -0
  41. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +10 -0
  42. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +24 -0
  43. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +10 -1
  44. package/dist/types/prisma-schema/edge.js +4 -3
  45. package/dist/types/prisma-schema/index-browser.js +1 -0
  46. package/dist/types/prisma-schema/index.d.ts +49 -1
  47. package/dist/types/prisma-schema/index.js +4 -3
  48. package/dist/types/prisma-schema/package.json +1 -1
  49. package/dist/types/prisma-schema/schema.prisma +1 -0
  50. package/dist/types/prisma-schema/wasm.js +1 -0
  51. package/dist/types/schema.d.ts +21 -1
  52. package/package.json +1 -1
@@ -39,6 +39,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
39
39
  fullName: string;
40
40
  profilePictureUrl: string | null;
41
41
  mail: string | null;
42
+ dni: string | null;
42
43
  created_at: Date;
43
44
  updated_at: Date;
44
45
  shortId: number;
@@ -48,7 +49,6 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
48
49
  gender: string | null;
49
50
  birthDate: Date | null;
50
51
  instagram: string | null;
51
- dni: string | null;
52
52
  alternativeNames: string[];
53
53
  birthLocationId: string | null;
54
54
  residenceLocationId: string | null;
@@ -63,6 +63,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").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 findByPhoneNumberResponseSchema: import("zod").ZodObject<{
72
73
  gender: string | null;
73
74
  birthDate: string | null;
74
75
  instagram: string | null;
75
- dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
@@ -121,6 +121,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
121
121
  fullName: string;
122
122
  profilePictureUrl: string | null;
123
123
  mail: string | null;
124
+ dni: string | null;
124
125
  created_at: string;
125
126
  updated_at: string;
126
127
  shortId: number;
@@ -130,7 +131,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
130
131
  gender: string | null;
131
132
  birthDate: string | null;
132
133
  instagram: string | null;
133
- dni: string | null;
134
134
  alternativeNames: string[];
135
135
  birthLocationId: string | null;
136
136
  residenceLocationId: string | null;
@@ -145,6 +145,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
145
145
  fullName: string;
146
146
  profilePictureUrl: string | null;
147
147
  mail: string | null;
148
+ dni: string | null;
148
149
  created_at: string;
149
150
  updated_at: string;
150
151
  shortId: number;
@@ -154,7 +155,6 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
154
155
  gender: string | null;
155
156
  birthDate: string | null;
156
157
  instagram: string | null;
157
- dni: string | null;
158
158
  alternativeNames: string[];
159
159
  birthLocationId: string | null;
160
160
  residenceLocationId: string | null;
@@ -69,6 +69,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
69
69
  fullName: string;
70
70
  profilePictureUrl: string | null;
71
71
  mail: string | null;
72
+ dni: string | null;
72
73
  created_at: Date;
73
74
  updated_at: Date;
74
75
  shortId: number;
@@ -78,7 +79,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
78
79
  gender: string | null;
79
80
  birthDate: Date | null;
80
81
  instagram: string | null;
81
- dni: string | null;
82
82
  alternativeNames: string[];
83
83
  birthLocationId: string | null;
84
84
  residenceLocationId: string | null;
@@ -101,6 +101,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
101
101
  fullName: string;
102
102
  profilePictureUrl: string | null;
103
103
  mail: string | null;
104
+ dni: string | null;
104
105
  created_at: Date;
105
106
  updated_at: Date;
106
107
  shortId: number;
@@ -110,7 +111,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
110
111
  gender: string | null;
111
112
  birthDate: string | null;
112
113
  instagram: string | null;
113
- dni: string | null;
114
114
  alternativeNames: string[];
115
115
  birthLocationId: string | null;
116
116
  residenceLocationId: string | null;
@@ -137,6 +137,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
137
137
  fullName: string;
138
138
  profilePictureUrl: string | null;
139
139
  mail: string | null;
140
+ dni: string | null;
140
141
  created_at: Date;
141
142
  updated_at: Date;
142
143
  shortId: number;
@@ -146,7 +147,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
146
147
  gender: string | null;
147
148
  birthDate: Date | null;
148
149
  instagram: string | null;
149
- dni: string | null;
150
150
  alternativeNames: string[];
151
151
  birthLocationId: string | null;
152
152
  residenceLocationId: string | null;
@@ -171,6 +171,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
171
171
  fullName: string;
172
172
  profilePictureUrl: string | null;
173
173
  mail: string | null;
174
+ dni: string | null;
174
175
  created_at: Date;
175
176
  updated_at: Date;
176
177
  shortId: number;
@@ -180,7 +181,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
180
181
  gender: string | null;
181
182
  birthDate: string | null;
182
183
  instagram: string | null;
183
- dni: string | null;
184
184
  alternativeNames: string[];
185
185
  birthLocationId: string | null;
186
186
  residenceLocationId: string | null;
@@ -266,6 +266,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
266
266
  fullName: string;
267
267
  profilePictureUrl: string | null;
268
268
  mail: string | null;
269
+ dni: string | null;
269
270
  created_at: string;
270
271
  updated_at: string;
271
272
  shortId: number;
@@ -275,7 +276,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
275
276
  gender: string | null;
276
277
  birthDate: string | null;
277
278
  instagram: string | null;
278
- dni: string | null;
279
279
  alternativeNames: string[];
280
280
  birthLocationId: string | null;
281
281
  residenceLocationId: string | null;
@@ -298,6 +298,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
298
298
  fullName: string;
299
299
  profilePictureUrl: string | null;
300
300
  mail: string | null;
301
+ dni: string | null;
301
302
  created_at: string;
302
303
  updated_at: string;
303
304
  shortId: number;
@@ -307,7 +308,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
307
308
  gender: string | null;
308
309
  birthDate: string | null;
309
310
  instagram: string | null;
310
- dni: string | null;
311
311
  alternativeNames: string[];
312
312
  birthLocationId: string | null;
313
313
  residenceLocationId: string | null;
@@ -334,6 +334,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
334
334
  fullName: string;
335
335
  profilePictureUrl: string | null;
336
336
  mail: string | null;
337
+ dni: string | null;
337
338
  created_at: string;
338
339
  updated_at: string;
339
340
  shortId: number;
@@ -343,7 +344,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
343
344
  gender: string | null;
344
345
  birthDate: string | null;
345
346
  instagram: string | null;
346
- dni: string | null;
347
347
  alternativeNames: string[];
348
348
  birthLocationId: string | null;
349
349
  residenceLocationId: string | null;
@@ -368,6 +368,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
368
368
  fullName: string;
369
369
  profilePictureUrl: string | null;
370
370
  mail: string | null;
371
+ dni: string | null;
371
372
  created_at: string;
372
373
  updated_at: string;
373
374
  shortId: number;
@@ -377,7 +378,6 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
377
378
  gender: string | null;
378
379
  birthDate: string | null;
379
380
  instagram: string | null;
380
- dni: string | null;
381
381
  alternativeNames: string[];
382
382
  birthLocationId: string | null;
383
383
  residenceLocationId: string | null;
@@ -96,6 +96,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
96
96
  fullName: string;
97
97
  profilePictureUrl: string | null;
98
98
  mail: string | null;
99
+ dni: string | null;
99
100
  created_at: Date;
100
101
  updated_at: Date;
101
102
  shortId: number;
@@ -105,7 +106,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
105
106
  gender: string | null;
106
107
  birthDate: Date | null;
107
108
  instagram: string | null;
108
- dni: string | null;
109
109
  alternativeNames: string[];
110
110
  birthLocationId: string | null;
111
111
  residenceLocationId: string | null;
@@ -133,6 +133,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
133
133
  fullName: string;
134
134
  profilePictureUrl: string | null;
135
135
  mail: string | null;
136
+ dni: string | null;
136
137
  created_at: Date;
137
138
  updated_at: Date;
138
139
  shortId: number;
@@ -142,7 +143,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
142
143
  gender: string | null;
143
144
  birthDate: string | null;
144
145
  instagram: string | null;
145
- dni: string | null;
146
146
  alternativeNames: string[];
147
147
  birthLocationId: string | null;
148
148
  residenceLocationId: string | null;
@@ -174,6 +174,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
174
174
  fullName: string;
175
175
  profilePictureUrl: string | null;
176
176
  mail: string | null;
177
+ dni: string | null;
177
178
  created_at: Date;
178
179
  updated_at: Date;
179
180
  shortId: number;
@@ -183,7 +184,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
183
184
  gender: string | null;
184
185
  birthDate: Date | null;
185
186
  instagram: string | null;
186
- dni: string | null;
187
187
  alternativeNames: string[];
188
188
  birthLocationId: string | null;
189
189
  residenceLocationId: string | null;
@@ -213,6 +213,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
213
213
  fullName: string;
214
214
  profilePictureUrl: string | null;
215
215
  mail: string | null;
216
+ dni: string | null;
216
217
  created_at: Date;
217
218
  updated_at: Date;
218
219
  shortId: number;
@@ -222,7 +223,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
222
223
  gender: string | null;
223
224
  birthDate: string | null;
224
225
  instagram: string | null;
225
- dni: string | null;
226
226
  alternativeNames: string[];
227
227
  birthLocationId: string | null;
228
228
  residenceLocationId: string | null;
@@ -336,6 +336,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
336
336
  fullName: string;
337
337
  profilePictureUrl: string | null;
338
338
  mail: string | null;
339
+ dni: string | null;
339
340
  created_at: string;
340
341
  updated_at: string;
341
342
  shortId: number;
@@ -345,7 +346,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
345
346
  gender: string | null;
346
347
  birthDate: string | null;
347
348
  instagram: string | null;
348
- dni: string | null;
349
349
  alternativeNames: string[];
350
350
  birthLocationId: string | null;
351
351
  residenceLocationId: string | null;
@@ -373,6 +373,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
373
373
  fullName: string;
374
374
  profilePictureUrl: string | null;
375
375
  mail: string | null;
376
+ dni: string | null;
376
377
  created_at: string;
377
378
  updated_at: string;
378
379
  shortId: number;
@@ -382,7 +383,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
382
383
  gender: string | null;
383
384
  birthDate: string | null;
384
385
  instagram: string | null;
385
- dni: string | null;
386
386
  alternativeNames: string[];
387
387
  birthLocationId: string | null;
388
388
  residenceLocationId: string | null;
@@ -414,6 +414,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
414
414
  fullName: string;
415
415
  profilePictureUrl: string | null;
416
416
  mail: string | null;
417
+ dni: string | null;
417
418
  created_at: string;
418
419
  updated_at: string;
419
420
  shortId: number;
@@ -423,7 +424,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
423
424
  gender: string | null;
424
425
  birthDate: string | null;
425
426
  instagram: string | null;
426
- dni: string | null;
427
427
  alternativeNames: string[];
428
428
  birthLocationId: string | null;
429
429
  residenceLocationId: string | null;
@@ -453,6 +453,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
453
453
  fullName: string;
454
454
  profilePictureUrl: string | null;
455
455
  mail: string | null;
456
+ dni: string | null;
456
457
  created_at: string;
457
458
  updated_at: string;
458
459
  shortId: number;
@@ -462,7 +463,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
462
463
  gender: string | null;
463
464
  birthDate: string | null;
464
465
  instagram: string | null;
465
- dni: string | null;
466
466
  alternativeNames: string[];
467
467
  birthLocationId: string | null;
468
468
  residenceLocationId: string | null;
@@ -178,6 +178,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
178
178
  fullName: string;
179
179
  profilePictureUrl: string | null;
180
180
  mail: string | null;
181
+ dni: string | null;
181
182
  created_at: Date;
182
183
  updated_at: Date;
183
184
  shortId: number;
@@ -187,7 +188,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
187
188
  gender: string | null;
188
189
  birthDate: Date | null;
189
190
  instagram: string | null;
190
- dni: string | null;
191
191
  alternativeNames: string[];
192
192
  birthLocationId: string | null;
193
193
  residenceLocationId: string | null;
@@ -232,6 +232,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
232
232
  fullName: string;
233
233
  profilePictureUrl: string | null;
234
234
  mail: string | null;
235
+ dni: string | null;
235
236
  created_at: Date;
236
237
  updated_at: Date;
237
238
  shortId: number;
@@ -241,7 +242,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
241
242
  gender: string | null;
242
243
  birthDate: string | null;
243
244
  instagram: string | null;
244
- dni: string | null;
245
245
  alternativeNames: string[];
246
246
  birthLocationId: string | null;
247
247
  residenceLocationId: string | null;
@@ -290,6 +290,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
290
290
  fullName: string;
291
291
  profilePictureUrl: string | null;
292
292
  mail: string | null;
293
+ dni: string | null;
293
294
  created_at: Date;
294
295
  updated_at: Date;
295
296
  shortId: number;
@@ -299,7 +300,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
299
300
  gender: string | null;
300
301
  birthDate: Date | null;
301
302
  instagram: string | null;
302
- dni: string | null;
303
303
  alternativeNames: string[];
304
304
  birthLocationId: string | null;
305
305
  residenceLocationId: string | null;
@@ -346,6 +346,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
346
346
  fullName: string;
347
347
  profilePictureUrl: string | null;
348
348
  mail: string | null;
349
+ dni: string | null;
349
350
  created_at: Date;
350
351
  updated_at: Date;
351
352
  shortId: number;
@@ -355,7 +356,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
355
356
  gender: string | null;
356
357
  birthDate: string | null;
357
358
  instagram: string | null;
358
- dni: string | null;
359
359
  alternativeNames: string[];
360
360
  birthLocationId: string | null;
361
361
  residenceLocationId: string | null;
@@ -569,6 +569,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
569
569
  fullName: string;
570
570
  profilePictureUrl: string | null;
571
571
  mail: string | null;
572
+ dni: string | null;
572
573
  created_at: string;
573
574
  updated_at: string;
574
575
  shortId: number;
@@ -578,7 +579,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
578
579
  gender: string | null;
579
580
  birthDate: string | null;
580
581
  instagram: string | null;
581
- dni: string | null;
582
582
  alternativeNames: string[];
583
583
  birthLocationId: string | null;
584
584
  residenceLocationId: string | null;
@@ -623,6 +623,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
623
623
  fullName: string;
624
624
  profilePictureUrl: string | null;
625
625
  mail: string | null;
626
+ dni: string | null;
626
627
  created_at: string;
627
628
  updated_at: string;
628
629
  shortId: number;
@@ -632,7 +633,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
632
633
  gender: string | null;
633
634
  birthDate: string | null;
634
635
  instagram: string | null;
635
- dni: string | null;
636
636
  alternativeNames: string[];
637
637
  birthLocationId: string | null;
638
638
  residenceLocationId: string | null;
@@ -681,6 +681,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
681
681
  fullName: string;
682
682
  profilePictureUrl: string | null;
683
683
  mail: string | null;
684
+ dni: string | null;
684
685
  created_at: string;
685
686
  updated_at: string;
686
687
  shortId: number;
@@ -690,7 +691,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
690
691
  gender: string | null;
691
692
  birthDate: string | null;
692
693
  instagram: string | null;
693
- dni: string | null;
694
694
  alternativeNames: string[];
695
695
  birthLocationId: string | null;
696
696
  residenceLocationId: string | null;
@@ -737,6 +737,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
737
737
  fullName: string;
738
738
  profilePictureUrl: string | null;
739
739
  mail: string | null;
740
+ dni: string | null;
740
741
  created_at: string;
741
742
  updated_at: string;
742
743
  shortId: number;
@@ -746,7 +747,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
746
747
  gender: string | null;
747
748
  birthDate: string | null;
748
749
  instagram: string | null;
749
- dni: string | null;
750
750
  alternativeNames: string[];
751
751
  birthLocationId: string | null;
752
752
  residenceLocationId: string | null;
@@ -39,6 +39,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
39
39
  fullName: string;
40
40
  profilePictureUrl: string | null;
41
41
  mail: string | null;
42
+ dni: string | null;
42
43
  created_at: string;
43
44
  updated_at: string;
44
45
  shortId: number;
@@ -48,7 +49,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
48
49
  gender: string | null;
49
50
  birthDate: string | null;
50
51
  instagram: string | null;
51
- dni: string | null;
52
52
  alternativeNames: string[];
53
53
  birthLocationId: string | null;
54
54
  residenceLocationId: string | null;
@@ -63,6 +63,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
63
63
  fullName: string;
64
64
  profilePictureUrl: string | null;
65
65
  mail: string | null;
66
+ dni: string | null;
66
67
  created_at: string;
67
68
  updated_at: string;
68
69
  shortId: number;
@@ -72,7 +73,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
72
73
  gender: string | null;
73
74
  birthDate: string | null;
74
75
  instagram: string | null;
75
- dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
@@ -7,11 +7,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
7
7
  fullName: z.ZodOptional<z.ZodString>;
8
8
  profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
+ dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
11
  firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
11
12
  gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
13
  birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>>;
13
14
  instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
- dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
15
  alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16
16
  isInTrash: z.ZodOptional<z.ZodBoolean>;
17
17
  movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
@@ -69,11 +69,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
69
69
  fullName?: string | undefined;
70
70
  profilePictureUrl?: string | null | undefined;
71
71
  mail?: string | null | undefined;
72
+ dni?: string | null | undefined;
72
73
  firstTimeMiExpo?: boolean | undefined;
73
74
  gender?: string | null | undefined;
74
75
  birthDate?: Date | null | undefined;
75
76
  instagram?: string | null | undefined;
76
- dni?: string | null | undefined;
77
77
  alternativeNames?: string[] | undefined;
78
78
  isInTrash?: boolean | undefined;
79
79
  movedToTrashDate?: Date | null | undefined;
@@ -100,11 +100,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
100
100
  fullName?: string | undefined;
101
101
  profilePictureUrl?: string | null | undefined;
102
102
  mail?: string | null | undefined;
103
+ dni?: string | null | undefined;
103
104
  firstTimeMiExpo?: boolean | undefined;
104
105
  gender?: string | null | undefined;
105
106
  birthDate?: string | null | undefined;
106
107
  instagram?: string | null | undefined;
107
- dni?: string | null | undefined;
108
108
  alternativeNames?: string[] | undefined;
109
109
  isInTrash?: boolean | undefined;
110
110
  movedToTrashDate?: Date | null | undefined;
@@ -132,11 +132,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
132
132
  fullName: z.ZodOptional<z.ZodString>;
133
133
  profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
134
134
  mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
135
+ dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
135
136
  firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
136
137
  gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
137
138
  birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>>;
138
139
  instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
139
- dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
140
140
  alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
141
141
  isInTrash: z.ZodOptional<z.ZodBoolean>;
142
142
  movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -187,11 +187,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
187
187
  fullName?: string | undefined;
188
188
  profilePictureUrl?: string | null | undefined;
189
189
  mail?: string | null | undefined;
190
+ dni?: string | null | undefined;
190
191
  firstTimeMiExpo?: boolean | undefined;
191
192
  gender?: string | null | undefined;
192
193
  birthDate?: string | null | undefined;
193
194
  instagram?: string | null | undefined;
194
- dni?: string | null | undefined;
195
195
  alternativeNames?: string[] | undefined;
196
196
  isInTrash?: boolean | undefined;
197
197
  movedToTrashDate?: string | null | undefined;
@@ -218,11 +218,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
218
218
  fullName?: string | undefined;
219
219
  profilePictureUrl?: string | null | undefined;
220
220
  mail?: string | null | undefined;
221
+ dni?: string | null | undefined;
221
222
  firstTimeMiExpo?: boolean | undefined;
222
223
  gender?: string | null | undefined;
223
224
  birthDate?: string | null | undefined;
224
225
  instagram?: string | null | undefined;
225
- dni?: string | null | undefined;
226
226
  alternativeNames?: string[] | undefined;
227
227
  isInTrash?: boolean | undefined;
228
228
  movedToTrashDate?: string | null | undefined;
@@ -285,6 +285,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
285
285
  fullName: string;
286
286
  profilePictureUrl: string | null;
287
287
  mail: string | null;
288
+ dni: string | null;
288
289
  created_at: Date;
289
290
  updated_at: Date;
290
291
  shortId: number;
@@ -294,7 +295,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
294
295
  gender: string | null;
295
296
  birthDate: Date | null;
296
297
  instagram: string | null;
297
- dni: string | null;
298
298
  alternativeNames: string[];
299
299
  birthLocationId: string | null;
300
300
  residenceLocationId: string | null;
@@ -309,6 +309,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
309
309
  fullName: string;
310
310
  profilePictureUrl: string | null;
311
311
  mail: string | null;
312
+ dni: string | null;
312
313
  created_at: Date;
313
314
  updated_at: Date;
314
315
  shortId: number;
@@ -318,7 +319,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
318
319
  gender: string | null;
319
320
  birthDate: string | null;
320
321
  instagram: string | null;
321
- dni: string | null;
322
322
  alternativeNames: string[];
323
323
  birthLocationId: string | null;
324
324
  residenceLocationId: string | null;
@@ -367,6 +367,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
367
367
  fullName: string;
368
368
  profilePictureUrl: string | null;
369
369
  mail: string | null;
370
+ dni: string | null;
370
371
  created_at: string;
371
372
  updated_at: string;
372
373
  shortId: number;
@@ -376,7 +377,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
376
377
  gender: string | null;
377
378
  birthDate: string | null;
378
379
  instagram: string | null;
379
- dni: string | null;
380
380
  alternativeNames: string[];
381
381
  birthLocationId: string | null;
382
382
  residenceLocationId: string | null;
@@ -391,6 +391,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
391
391
  fullName: string;
392
392
  profilePictureUrl: string | null;
393
393
  mail: string | null;
394
+ dni: string | null;
394
395
  created_at: string;
395
396
  updated_at: string;
396
397
  shortId: number;
@@ -400,7 +401,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
400
401
  gender: string | null;
401
402
  birthDate: string | null;
402
403
  instagram: string | null;
403
- dni: string | null;
404
404
  alternativeNames: string[];
405
405
  birthLocationId: string | null;
406
406
  residenceLocationId: string | null;
@@ -40,6 +40,7 @@ export declare const profileSchema: z.ZodObject<{
40
40
  fullName: string;
41
41
  profilePictureUrl: string | null;
42
42
  mail: string | null;
43
+ dni: string | null;
43
44
  created_at: Date;
44
45
  updated_at: Date;
45
46
  shortId: number;
@@ -49,7 +50,6 @@ export declare const profileSchema: z.ZodObject<{
49
50
  gender: string | null;
50
51
  birthDate: Date | null;
51
52
  instagram: string | null;
52
- dni: string | null;
53
53
  alternativeNames: string[];
54
54
  birthLocationId: string | null;
55
55
  residenceLocationId: string | null;
@@ -64,6 +64,7 @@ export declare const profileSchema: z.ZodObject<{
64
64
  fullName: string;
65
65
  profilePictureUrl: string | null;
66
66
  mail: string | null;
67
+ dni: string | null;
67
68
  created_at: Date;
68
69
  updated_at: Date;
69
70
  shortId: number;
@@ -73,7 +74,6 @@ export declare const profileSchema: z.ZodObject<{
73
74
  gender: string | null;
74
75
  birthDate: string | null;
75
76
  instagram: string | null;
76
- dni: string | null;
77
77
  alternativeNames: string[];
78
78
  birthLocationId: string | null;
79
79
  residenceLocationId: string | null;