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
@@ -105,6 +105,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
105
105
  fullName: string;
106
106
  profilePictureUrl: string | null;
107
107
  mail: string | null;
108
+ dni: string | null;
108
109
  created_at: Date;
109
110
  updated_at: Date;
110
111
  shortId: number;
@@ -114,7 +115,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
114
115
  gender: string | null;
115
116
  birthDate: Date | null;
116
117
  instagram: string | null;
117
- dni: string | null;
118
118
  alternativeNames: string[];
119
119
  birthLocationId: string | null;
120
120
  residenceLocationId: string | null;
@@ -141,6 +141,7 @@ export declare const verifyOtpResponseSchema: 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 verifyOtpResponseSchema: 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;
@@ -181,6 +181,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
181
181
  fullName: string;
182
182
  profilePictureUrl: string | null;
183
183
  mail: string | null;
184
+ dni: string | null;
184
185
  created_at: Date;
185
186
  updated_at: Date;
186
187
  shortId: number;
@@ -190,7 +191,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
190
191
  gender: string | null;
191
192
  birthDate: Date | null;
192
193
  instagram: string | null;
193
- dni: string | null;
194
194
  alternativeNames: string[];
195
195
  birthLocationId: string | null;
196
196
  residenceLocationId: string | null;
@@ -220,6 +220,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
220
220
  fullName: string;
221
221
  profilePictureUrl: string | null;
222
222
  mail: string | null;
223
+ dni: string | null;
223
224
  created_at: Date;
224
225
  updated_at: Date;
225
226
  shortId: number;
@@ -229,7 +230,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
229
230
  gender: string | null;
230
231
  birthDate: string | null;
231
232
  instagram: string | null;
232
- dni: string | null;
233
233
  alternativeNames: string[];
234
234
  birthLocationId: string | null;
235
235
  residenceLocationId: string | null;
@@ -326,6 +326,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
326
326
  fullName: string;
327
327
  profilePictureUrl: string | null;
328
328
  mail: string | null;
329
+ dni: string | null;
329
330
  created_at: string;
330
331
  updated_at: string;
331
332
  shortId: number;
@@ -335,7 +336,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
335
336
  gender: string | null;
336
337
  birthDate: string | null;
337
338
  instagram: string | null;
338
- dni: string | null;
339
339
  alternativeNames: string[];
340
340
  birthLocationId: string | null;
341
341
  residenceLocationId: string | null;
@@ -362,6 +362,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
362
362
  fullName: string;
363
363
  profilePictureUrl: string | null;
364
364
  mail: string | null;
365
+ dni: string | null;
365
366
  created_at: string;
366
367
  updated_at: string;
367
368
  shortId: number;
@@ -371,7 +372,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
371
372
  gender: string | null;
372
373
  birthDate: string | null;
373
374
  instagram: string | null;
374
- dni: string | null;
375
375
  alternativeNames: string[];
376
376
  birthLocationId: string | null;
377
377
  residenceLocationId: string | null;
@@ -402,6 +402,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
402
402
  fullName: string;
403
403
  profilePictureUrl: string | null;
404
404
  mail: string | null;
405
+ dni: string | null;
405
406
  created_at: string;
406
407
  updated_at: string;
407
408
  shortId: number;
@@ -411,7 +412,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
411
412
  gender: string | null;
412
413
  birthDate: string | null;
413
414
  instagram: string | null;
414
- dni: string | null;
415
415
  alternativeNames: string[];
416
416
  birthLocationId: string | null;
417
417
  residenceLocationId: string | null;
@@ -441,6 +441,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
441
441
  fullName: string;
442
442
  profilePictureUrl: string | null;
443
443
  mail: string | null;
444
+ dni: string | null;
444
445
  created_at: string;
445
446
  updated_at: string;
446
447
  shortId: number;
@@ -450,7 +451,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
450
451
  gender: string | null;
451
452
  birthDate: string | null;
452
453
  instagram: string | null;
453
- dni: string | null;
454
454
  alternativeNames: string[];
455
455
  birthLocationId: string | null;
456
456
  residenceLocationId: string | null;
@@ -31,7 +31,7 @@ export declare const createProfileSchema: z.ZodObject<{
31
31
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
32
32
  created_at: z.ZodDate;
33
33
  updated_at: z.ZodDate;
34
- }, "username" | "password" | "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "gender" | "birthDate" | "instagram" | "dni" | "alternativeNames">, {
34
+ }, "username" | "password" | "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "dni" | "gender" | "birthDate" | "instagram" | "alternativeNames">, {
35
35
  comments: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
36
36
  id: z.ZodString;
37
37
  content: z.ZodString;
@@ -103,10 +103,10 @@ export declare const createProfileSchema: z.ZodObject<{
103
103
  fullName: string;
104
104
  profilePictureUrl: string | null;
105
105
  mail: string | null;
106
+ dni: string | null;
106
107
  gender: string | null;
107
108
  birthDate: Date | null;
108
109
  instagram: string | null;
109
- dni: string | null;
110
110
  alternativeNames: string[];
111
111
  comments?: {
112
112
  content: string;
@@ -135,10 +135,10 @@ export declare const createProfileSchema: z.ZodObject<{
135
135
  fullName: string;
136
136
  profilePictureUrl: string | null;
137
137
  mail: string | null;
138
+ dni: string | null;
138
139
  gender: string | null;
139
140
  birthDate: string | null;
140
141
  instagram: string | null;
141
- dni: string | null;
142
142
  alternativeNames: string[];
143
143
  comments?: {
144
144
  content: string;
@@ -170,10 +170,10 @@ export declare const createProfileSchema: z.ZodObject<{
170
170
  fullName: string;
171
171
  profilePictureUrl: string | null;
172
172
  mail: string | null;
173
+ dni: string | null;
173
174
  gender: string | null;
174
175
  birthDate: Date | null;
175
176
  instagram: string | null;
176
- dni: string | null;
177
177
  alternativeNames: string[];
178
178
  comments?: {
179
179
  content: string;
@@ -205,10 +205,10 @@ export declare const createProfileSchema: z.ZodObject<{
205
205
  fullName: string;
206
206
  profilePictureUrl: string | null;
207
207
  mail: string | null;
208
+ dni: string | null;
208
209
  gender: string | null;
209
210
  birthDate: string | null;
210
211
  instagram: string | null;
211
- dni: string | null;
212
212
  alternativeNames: string[];
213
213
  comments?: {
214
214
  content: string;
@@ -241,10 +241,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
241
241
  fullName: z.ZodString;
242
242
  profilePictureUrl: z.ZodNullable<z.ZodString>;
243
243
  mail: z.ZodNullable<z.ZodString>;
244
+ dni: z.ZodNullable<z.ZodString>;
244
245
  gender: z.ZodNullable<z.ZodString>;
245
246
  birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
246
247
  instagram: z.ZodNullable<z.ZodString>;
247
- dni: z.ZodNullable<z.ZodString>;
248
248
  alternativeNames: z.ZodArray<z.ZodString, "many">;
249
249
  comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
250
250
  content: z.ZodString;
@@ -303,10 +303,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
303
303
  fullName: string;
304
304
  profilePictureUrl: string | null;
305
305
  mail: string | null;
306
+ dni: string | null;
306
307
  gender: string | null;
307
308
  birthDate: string | null;
308
309
  instagram: string | null;
309
- dni: string | null;
310
310
  alternativeNames: string[];
311
311
  comments?: {
312
312
  content: string;
@@ -335,10 +335,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
335
335
  fullName: string;
336
336
  profilePictureUrl: string | null;
337
337
  mail: string | null;
338
+ dni: string | null;
338
339
  gender: string | null;
339
340
  birthDate: string | null;
340
341
  instagram: string | null;
341
- dni: string | null;
342
342
  alternativeNames: string[];
343
343
  comments?: {
344
344
  content: string;
@@ -370,10 +370,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
370
370
  fullName: string;
371
371
  profilePictureUrl: string | null;
372
372
  mail: string | null;
373
+ dni: string | null;
373
374
  gender: string | null;
374
375
  birthDate: string | null;
375
376
  instagram: string | null;
376
- dni: string | null;
377
377
  alternativeNames: string[];
378
378
  comments?: {
379
379
  content: string;
@@ -405,10 +405,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
405
405
  fullName: string;
406
406
  profilePictureUrl: string | null;
407
407
  mail: string | null;
408
+ dni: string | null;
408
409
  gender: string | null;
409
410
  birthDate: string | null;
410
411
  instagram: string | null;
411
- dni: string | null;
412
412
  alternativeNames: string[];
413
413
  comments?: {
414
414
  content: string;
@@ -39,6 +39,7 @@ export declare const deleteProfileResponseSchema: 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 deleteProfileResponseSchema: 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 deleteProfileResponseSchema: 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 deleteProfileResponseSchema: 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 DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
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 DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
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 DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
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 DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
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;
@@ -92,6 +92,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
92
92
  fullName: string;
93
93
  profilePictureUrl: string | null;
94
94
  mail: string | null;
95
+ dni: string | null;
95
96
  created_at: Date;
96
97
  updated_at: Date;
97
98
  shortId: number;
@@ -101,7 +102,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
101
102
  gender: string | null;
102
103
  birthDate: Date | null;
103
104
  instagram: string | null;
104
- dni: string | null;
105
105
  alternativeNames: string[];
106
106
  birthLocationId: string | null;
107
107
  residenceLocationId: string | null;
@@ -128,6 +128,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
128
128
  fullName: string;
129
129
  profilePictureUrl: string | null;
130
130
  mail: string | null;
131
+ dni: string | null;
131
132
  created_at: Date;
132
133
  updated_at: Date;
133
134
  shortId: number;
@@ -137,7 +138,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
137
138
  gender: string | null;
138
139
  birthDate: string | null;
139
140
  instagram: string | null;
140
- dni: string | null;
141
141
  alternativeNames: string[];
142
142
  birthLocationId: string | null;
143
143
  residenceLocationId: string | null;
@@ -168,6 +168,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
168
168
  fullName: string;
169
169
  profilePictureUrl: string | null;
170
170
  mail: string | null;
171
+ dni: string | null;
171
172
  created_at: Date;
172
173
  updated_at: Date;
173
174
  shortId: number;
@@ -177,7 +178,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
177
178
  gender: string | null;
178
179
  birthDate: Date | null;
179
180
  instagram: string | null;
180
- dni: string | null;
181
181
  alternativeNames: string[];
182
182
  birthLocationId: string | null;
183
183
  residenceLocationId: string | null;
@@ -206,6 +206,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
206
206
  fullName: string;
207
207
  profilePictureUrl: string | null;
208
208
  mail: string | null;
209
+ dni: string | null;
209
210
  created_at: Date;
210
211
  updated_at: Date;
211
212
  shortId: number;
@@ -215,7 +216,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
215
216
  gender: string | null;
216
217
  birthDate: string | null;
217
218
  instagram: string | null;
218
- dni: string | null;
219
219
  alternativeNames: string[];
220
220
  birthLocationId: string | null;
221
221
  residenceLocationId: string | null;
@@ -323,6 +323,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
323
323
  fullName: string;
324
324
  profilePictureUrl: string | null;
325
325
  mail: string | null;
326
+ dni: string | null;
326
327
  created_at: string;
327
328
  updated_at: string;
328
329
  shortId: number;
@@ -332,7 +333,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
332
333
  gender: string | null;
333
334
  birthDate: string | null;
334
335
  instagram: string | null;
335
- dni: string | null;
336
336
  alternativeNames: string[];
337
337
  birthLocationId: string | null;
338
338
  residenceLocationId: string | null;
@@ -359,6 +359,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
359
359
  fullName: string;
360
360
  profilePictureUrl: string | null;
361
361
  mail: string | null;
362
+ dni: string | null;
362
363
  created_at: string;
363
364
  updated_at: string;
364
365
  shortId: number;
@@ -368,7 +369,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
368
369
  gender: string | null;
369
370
  birthDate: string | null;
370
371
  instagram: string | null;
371
- dni: string | null;
372
372
  alternativeNames: string[];
373
373
  birthLocationId: string | null;
374
374
  residenceLocationId: string | null;
@@ -399,6 +399,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
399
399
  fullName: string;
400
400
  profilePictureUrl: string | null;
401
401
  mail: string | null;
402
+ dni: string | null;
402
403
  created_at: string;
403
404
  updated_at: string;
404
405
  shortId: number;
@@ -408,7 +409,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
408
409
  gender: string | null;
409
410
  birthDate: string | null;
410
411
  instagram: string | null;
411
- dni: string | null;
412
412
  alternativeNames: string[];
413
413
  birthLocationId: string | null;
414
414
  residenceLocationId: string | null;
@@ -437,6 +437,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
437
437
  fullName: string;
438
438
  profilePictureUrl: string | null;
439
439
  mail: string | null;
440
+ dni: string | null;
440
441
  created_at: string;
441
442
  updated_at: string;
442
443
  shortId: number;
@@ -446,7 +447,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
446
447
  gender: string | null;
447
448
  birthDate: string | null;
448
449
  instagram: string | null;
449
- dni: string | null;
450
450
  alternativeNames: string[];
451
451
  birthLocationId: string | null;
452
452
  residenceLocationId: string | null;
@@ -88,6 +88,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
88
88
  fullName: string;
89
89
  profilePictureUrl: string | null;
90
90
  mail: string | null;
91
+ dni: string | null;
91
92
  created_at: Date;
92
93
  updated_at: Date;
93
94
  shortId: number;
@@ -97,7 +98,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
97
98
  gender: string | null;
98
99
  birthDate: Date | null;
99
100
  instagram: string | null;
100
- dni: string | null;
101
101
  alternativeNames: string[];
102
102
  birthLocationId: string | null;
103
103
  residenceLocationId: string | null;
@@ -123,6 +123,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
123
123
  fullName: string;
124
124
  profilePictureUrl: string | null;
125
125
  mail: string | null;
126
+ dni: string | null;
126
127
  created_at: Date;
127
128
  updated_at: Date;
128
129
  shortId: number;
@@ -132,7 +133,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
132
133
  gender: string | null;
133
134
  birthDate: string | null;
134
135
  instagram: string | null;
135
- dni: string | null;
136
136
  alternativeNames: string[];
137
137
  birthLocationId: string | null;
138
138
  residenceLocationId: string | null;
@@ -162,6 +162,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
162
162
  fullName: string;
163
163
  profilePictureUrl: string | null;
164
164
  mail: string | null;
165
+ dni: string | null;
165
166
  created_at: Date;
166
167
  updated_at: Date;
167
168
  shortId: number;
@@ -171,7 +172,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
171
172
  gender: string | null;
172
173
  birthDate: Date | null;
173
174
  instagram: string | null;
174
- dni: string | null;
175
175
  alternativeNames: string[];
176
176
  birthLocationId: string | null;
177
177
  residenceLocationId: string | null;
@@ -199,6 +199,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
199
199
  fullName: string;
200
200
  profilePictureUrl: string | null;
201
201
  mail: string | null;
202
+ dni: string | null;
202
203
  created_at: Date;
203
204
  updated_at: Date;
204
205
  shortId: number;
@@ -208,7 +209,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
208
209
  gender: string | null;
209
210
  birthDate: string | null;
210
211
  instagram: string | null;
211
- dni: string | null;
212
212
  alternativeNames: string[];
213
213
  birthLocationId: string | null;
214
214
  residenceLocationId: string | null;
@@ -310,6 +310,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
310
310
  fullName: string;
311
311
  profilePictureUrl: string | null;
312
312
  mail: string | null;
313
+ dni: string | null;
313
314
  created_at: string;
314
315
  updated_at: string;
315
316
  shortId: number;
@@ -319,7 +320,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
319
320
  gender: string | null;
320
321
  birthDate: string | null;
321
322
  instagram: string | null;
322
- dni: string | null;
323
323
  alternativeNames: string[];
324
324
  birthLocationId: string | null;
325
325
  residenceLocationId: string | null;
@@ -345,6 +345,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
345
345
  fullName: string;
346
346
  profilePictureUrl: string | null;
347
347
  mail: string | null;
348
+ dni: string | null;
348
349
  created_at: string;
349
350
  updated_at: string;
350
351
  shortId: number;
@@ -354,7 +355,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
354
355
  gender: string | null;
355
356
  birthDate: string | null;
356
357
  instagram: string | null;
357
- dni: string | null;
358
358
  alternativeNames: string[];
359
359
  birthLocationId: string | null;
360
360
  residenceLocationId: string | null;
@@ -384,6 +384,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
384
384
  fullName: string;
385
385
  profilePictureUrl: string | null;
386
386
  mail: string | null;
387
+ dni: string | null;
387
388
  created_at: string;
388
389
  updated_at: string;
389
390
  shortId: number;
@@ -393,7 +394,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
393
394
  gender: string | null;
394
395
  birthDate: string | null;
395
396
  instagram: string | null;
396
- dni: string | null;
397
397
  alternativeNames: string[];
398
398
  birthLocationId: string | null;
399
399
  residenceLocationId: string | null;
@@ -421,6 +421,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
421
421
  fullName: string;
422
422
  profilePictureUrl: string | null;
423
423
  mail: string | null;
424
+ dni: string | null;
424
425
  created_at: string;
425
426
  updated_at: string;
426
427
  shortId: number;
@@ -430,7 +431,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
430
431
  gender: string | null;
431
432
  birthDate: string | null;
432
433
  instagram: string | null;
433
- dni: string | null;
434
434
  alternativeNames: string[];
435
435
  birthLocationId: string | null;
436
436
  residenceLocationId: string | null;
@@ -540,6 +540,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
540
540
  fullName: string;
541
541
  profilePictureUrl: string | null;
542
542
  mail: string | null;
543
+ dni: string | null;
543
544
  created_at: Date;
544
545
  updated_at: Date;
545
546
  shortId: number;
@@ -549,7 +550,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
549
550
  gender: string | null;
550
551
  birthDate: Date | null;
551
552
  instagram: string | null;
552
- dni: string | null;
553
553
  alternativeNames: string[];
554
554
  birthLocationId: string | null;
555
555
  residenceLocationId: string | null;
@@ -575,6 +575,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
575
575
  fullName: string;
576
576
  profilePictureUrl: string | null;
577
577
  mail: string | null;
578
+ dni: string | null;
578
579
  created_at: Date;
579
580
  updated_at: Date;
580
581
  shortId: number;
@@ -584,7 +585,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
584
585
  gender: string | null;
585
586
  birthDate: string | null;
586
587
  instagram: string | null;
587
- dni: string | null;
588
588
  alternativeNames: string[];
589
589
  birthLocationId: string | null;
590
590
  residenceLocationId: string | null;
@@ -691,6 +691,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
691
691
  fullName: string;
692
692
  profilePictureUrl: string | null;
693
693
  mail: string | null;
694
+ dni: string | null;
694
695
  created_at: Date;
695
696
  updated_at: Date;
696
697
  shortId: number;
@@ -700,7 +701,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
700
701
  gender: string | null;
701
702
  birthDate: Date | null;
702
703
  instagram: string | null;
703
- dni: string | null;
704
704
  alternativeNames: string[];
705
705
  birthLocationId: string | null;
706
706
  residenceLocationId: string | null;
@@ -726,6 +726,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
726
726
  fullName: string;
727
727
  profilePictureUrl: string | null;
728
728
  mail: string | null;
729
+ dni: string | null;
729
730
  created_at: Date;
730
731
  updated_at: Date;
731
732
  shortId: number;
@@ -735,7 +736,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
735
736
  gender: string | null;
736
737
  birthDate: string | null;
737
738
  instagram: string | null;
738
- dni: string | null;
739
739
  alternativeNames: string[];
740
740
  birthLocationId: string | null;
741
741
  residenceLocationId: string | null;
@@ -150,6 +150,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
150
150
  fullName: string;
151
151
  profilePictureUrl: string | null;
152
152
  mail: string | null;
153
+ dni: string | null;
153
154
  created_at: Date;
154
155
  updated_at: Date;
155
156
  shortId: number;
@@ -159,7 +160,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
159
160
  gender: string | null;
160
161
  birthDate: Date | null;
161
162
  instagram: string | null;
162
- dni: string | null;
163
163
  alternativeNames: string[];
164
164
  birthLocationId: string | null;
165
165
  residenceLocationId: string | null;
@@ -206,6 +206,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
206
206
  fullName: string;
207
207
  profilePictureUrl: string | null;
208
208
  mail: string | null;
209
+ dni: string | null;
209
210
  created_at: Date;
210
211
  updated_at: Date;
211
212
  shortId: number;
@@ -215,7 +216,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
215
216
  gender: string | null;
216
217
  birthDate: string | null;
217
218
  instagram: string | null;
218
- dni: string | null;
219
219
  alternativeNames: string[];
220
220
  birthLocationId: string | null;
221
221
  residenceLocationId: string | null;
@@ -271,6 +271,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
271
271
  fullName: z.ZodString;
272
272
  profilePictureUrl: z.ZodNullable<z.ZodString>;
273
273
  mail: z.ZodNullable<z.ZodString>;
274
+ dni: z.ZodNullable<z.ZodString>;
274
275
  created_at: z.ZodString;
275
276
  updated_at: z.ZodString;
276
277
  shortId: z.ZodNumber;
@@ -280,7 +281,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
280
281
  gender: z.ZodNullable<z.ZodString>;
281
282
  birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
282
283
  instagram: z.ZodNullable<z.ZodString>;
283
- dni: z.ZodNullable<z.ZodString>;
284
284
  alternativeNames: z.ZodArray<z.ZodString, "many">;
285
285
  birthLocationId: z.ZodNullable<z.ZodString>;
286
286
  residenceLocationId: z.ZodNullable<z.ZodString>;
@@ -401,6 +401,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
401
401
  fullName: string;
402
402
  profilePictureUrl: string | null;
403
403
  mail: string | null;
404
+ dni: string | null;
404
405
  created_at: string;
405
406
  updated_at: string;
406
407
  shortId: number;
@@ -410,7 +411,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
410
411
  gender: string | null;
411
412
  birthDate: string | null;
412
413
  instagram: string | null;
413
- dni: string | null;
414
414
  alternativeNames: string[];
415
415
  birthLocationId: string | null;
416
416
  residenceLocationId: string | null;
@@ -457,6 +457,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
457
457
  fullName: string;
458
458
  profilePictureUrl: string | null;
459
459
  mail: string | null;
460
+ dni: string | null;
460
461
  created_at: string;
461
462
  updated_at: string;
462
463
  shortId: number;
@@ -466,7 +467,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
466
467
  gender: string | null;
467
468
  birthDate: string | null;
468
469
  instagram: string | null;
469
- dni: string | null;
470
470
  alternativeNames: string[];
471
471
  birthLocationId: string | null;
472
472
  residenceLocationId: string | null;