expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.9 → 0.36.0-EXPO-323-Enviar-mail-ticket.5

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 (73) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +9 -9
  4. package/dist/src/account/dto/get-me.dto.d.ts +22 -22
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +14 -14
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/create-event.dto.d.ts +8 -8
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
  10. package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
  11. package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
  12. package/dist/src/event/dto/get-by-id-event.dto.d.ts +60 -40
  13. package/dist/src/event/dto/update-event.dto.d.ts +24 -24
  14. package/dist/src/i18n/es.d.ts +25 -5
  15. package/dist/src/i18n/es.js +25 -5
  16. package/dist/src/i18n/es.js.map +1 -1
  17. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  18. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  19. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  20. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  21. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  22. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  23. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  24. package/dist/src/profile/dto/find-all-profile.dto.d.ts +30 -30
  25. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +48 -48
  26. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +19 -19
  27. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  28. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +30 -30
  29. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +30 -30
  30. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  31. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +30 -30
  32. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  33. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  34. package/dist/src/schema/profile.schema.d.ts +5 -5
  35. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  36. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  37. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  38. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  39. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  40. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  41. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  42. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  43. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  44. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  45. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  46. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  47. package/dist/src/ticket/constants.d.ts +12 -14
  48. package/dist/src/ticket/constants.js +355 -267
  49. package/dist/src/ticket/dto/create-ticket.dto.d.ts +28 -9
  50. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  51. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +16 -4
  52. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +28 -8
  53. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +54 -34
  54. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +54 -34
  55. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +54 -34
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +28 -8
  57. package/dist/src/ticket/dto/find-ticket.dto.d.ts +16 -4
  58. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  59. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  60. package/dist/src/ticket/dto/ticket.dto.d.ts +16 -4
  61. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  62. package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -8
  63. package/dist/types/prisma-schema/edge.js +7 -5
  64. package/dist/types/prisma-schema/index-browser.js +4 -2
  65. package/dist/types/prisma-schema/index.d.ts +193 -65
  66. package/dist/types/prisma-schema/index.js +7 -5
  67. package/dist/types/prisma-schema/package.json +1 -1
  68. package/dist/types/prisma-schema/schema.prisma +5 -1
  69. package/dist/types/prisma-schema/wasm.js +4 -2
  70. package/dist/types/schema.d.ts +99 -118
  71. package/package.json +8 -8
  72. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -728
  73. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -58
@@ -7,8 +7,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
- TICKETS: "TICKETS";
11
10
  MI_EXPO: "MI_EXPO";
11
+ TICKETS: "TICKETS";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;
@@ -60,7 +60,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
60
60
  }>, "strip", z.ZodTypeAny, {
61
61
  id: string;
62
62
  name: string;
63
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
63
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
64
64
  created_at: Date;
65
65
  updated_at: Date;
66
66
  groupId: string;
@@ -70,7 +70,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
70
70
  }, {
71
71
  id: string;
72
72
  name: string;
73
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
73
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
74
74
  created_at: Date;
75
75
  updated_at: Date;
76
76
  groupId: string;
@@ -82,12 +82,13 @@ export declare const findByDateRangeSchema: z.ZodObject<{
82
82
  id: string;
83
83
  username: string | null;
84
84
  password: string | null;
85
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
85
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
86
86
  phoneNumber: string;
87
87
  secondaryPhoneNumber: string | null;
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;
@@ -106,7 +106,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
106
106
  tags: {
107
107
  id: string;
108
108
  name: string;
109
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
109
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
110
110
  created_at: Date;
111
111
  updated_at: Date;
112
112
  groupId: string;
@@ -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;
@@ -141,7 +141,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
141
141
  tags: {
142
142
  id: string;
143
143
  name: string;
144
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
144
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
145
145
  created_at: Date;
146
146
  updated_at: Date;
147
147
  groupId: string;
@@ -149,19 +149,20 @@ export declare const findByDateRangeSchema: z.ZodObject<{
149
149
  id: string;
150
150
  };
151
151
  }[];
152
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
152
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
153
153
  }>, "many">;
154
154
  }, "strip", z.ZodTypeAny, {
155
155
  profiles: {
156
156
  id: string;
157
157
  username: string | null;
158
158
  password: string | null;
159
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
159
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
160
160
  phoneNumber: string;
161
161
  secondaryPhoneNumber: string | null;
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;
@@ -180,7 +180,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
180
180
  tags: {
181
181
  id: string;
182
182
  name: string;
183
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
183
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
184
184
  created_at: Date;
185
185
  updated_at: Date;
186
186
  groupId: string;
@@ -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;
@@ -217,7 +217,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
217
217
  tags: {
218
218
  id: string;
219
219
  name: string;
220
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
220
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
221
221
  created_at: Date;
222
222
  updated_at: Date;
223
223
  groupId: string;
@@ -225,7 +225,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
225
225
  id: string;
226
226
  };
227
227
  }[];
228
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
228
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
229
229
  }[];
230
230
  }>;
231
231
  declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -236,8 +236,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
236
236
  USER: "USER";
237
237
  ADMIN: "ADMIN";
238
238
  FORM: "FORM";
239
- TICKETS: "TICKETS";
240
239
  MI_EXPO: "MI_EXPO";
240
+ TICKETS: "TICKETS";
241
241
  }>>;
242
242
  firstTimeMiExpo: z.ZodBoolean;
243
243
  username: z.ZodNullable<z.ZodString>;
@@ -282,7 +282,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
282
282
  }, z.UnknownKeysParam, z.ZodTypeAny, {
283
283
  id: string;
284
284
  name: string;
285
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
285
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
286
286
  created_at: string;
287
287
  updated_at: string;
288
288
  groupId: string;
@@ -292,7 +292,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
292
292
  }, {
293
293
  id: string;
294
294
  name: string;
295
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
295
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
296
296
  created_at: string;
297
297
  updated_at: string;
298
298
  groupId: string;
@@ -304,12 +304,13 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
304
304
  id: string;
305
305
  username: string | null;
306
306
  password: string | null;
307
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
307
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
308
308
  phoneNumber: string;
309
309
  secondaryPhoneNumber: string | null;
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;
@@ -328,7 +328,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
328
328
  tags: {
329
329
  id: string;
330
330
  name: string;
331
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
331
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
332
332
  created_at: string;
333
333
  updated_at: string;
334
334
  groupId: string;
@@ -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;
@@ -363,7 +363,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
363
363
  tags: {
364
364
  id: string;
365
365
  name: string;
366
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
366
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
367
367
  created_at: string;
368
368
  updated_at: string;
369
369
  groupId: string;
@@ -371,19 +371,20 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
371
371
  id: string;
372
372
  };
373
373
  }[];
374
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
374
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
375
375
  }>, "many">;
376
376
  }, z.UnknownKeysParam, z.ZodTypeAny, {
377
377
  profiles: {
378
378
  id: string;
379
379
  username: string | null;
380
380
  password: string | null;
381
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
381
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
382
382
  phoneNumber: string;
383
383
  secondaryPhoneNumber: string | null;
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;
@@ -402,7 +402,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
402
402
  tags: {
403
403
  id: string;
404
404
  name: string;
405
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
405
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
406
406
  created_at: string;
407
407
  updated_at: string;
408
408
  groupId: string;
@@ -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;
@@ -439,7 +439,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
439
439
  tags: {
440
440
  id: string;
441
441
  name: string;
442
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
442
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
443
443
  created_at: string;
444
444
  updated_at: string;
445
445
  groupId: string;
@@ -447,7 +447,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
447
447
  id: string;
448
448
  };
449
449
  }[];
450
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
450
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
451
451
  }[];
452
452
  }>>;
453
453
  export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
@@ -459,8 +459,8 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
459
459
  USER: "USER";
460
460
  ADMIN: "ADMIN";
461
461
  FORM: "FORM";
462
- TICKETS: "TICKETS";
463
462
  MI_EXPO: "MI_EXPO";
463
+ TICKETS: "TICKETS";
464
464
  }>>;
465
465
  firstTimeMiExpo: z.ZodBoolean;
466
466
  username: z.ZodNullable<z.ZodString>;
@@ -512,7 +512,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
512
512
  }>, "strip", z.ZodTypeAny, {
513
513
  id: string;
514
514
  name: string;
515
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
515
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
516
516
  created_at: Date;
517
517
  updated_at: Date;
518
518
  groupId: string;
@@ -522,7 +522,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
522
522
  }, {
523
523
  id: string;
524
524
  name: string;
525
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
525
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
526
526
  created_at: Date;
527
527
  updated_at: Date;
528
528
  groupId: string;
@@ -534,12 +534,13 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
534
534
  id: string;
535
535
  username: string | null;
536
536
  password: string | null;
537
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
537
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
538
538
  phoneNumber: string;
539
539
  secondaryPhoneNumber: string | null;
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;
@@ -558,7 +558,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
558
558
  tags: {
559
559
  id: string;
560
560
  name: string;
561
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
561
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
562
562
  created_at: Date;
563
563
  updated_at: Date;
564
564
  groupId: string;
@@ -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;
@@ -593,7 +593,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
593
593
  tags: {
594
594
  id: string;
595
595
  name: string;
596
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
596
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
597
597
  created_at: Date;
598
598
  updated_at: Date;
599
599
  groupId: string;
@@ -601,7 +601,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
601
601
  id: string;
602
602
  };
603
603
  }[];
604
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
604
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
605
605
  }>, "many">>;
606
606
  declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
607
607
  id: z.ZodString;
@@ -610,8 +610,8 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
610
610
  USER: "USER";
611
611
  ADMIN: "ADMIN";
612
612
  FORM: "FORM";
613
- TICKETS: "TICKETS";
614
613
  MI_EXPO: "MI_EXPO";
614
+ TICKETS: "TICKETS";
615
615
  }>>;
616
616
  firstTimeMiExpo: z.ZodBoolean;
617
617
  username: z.ZodNullable<z.ZodString>;
@@ -663,7 +663,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
663
663
  }>, "strip", z.ZodTypeAny, {
664
664
  id: string;
665
665
  name: string;
666
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
666
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
667
667
  created_at: Date;
668
668
  updated_at: Date;
669
669
  groupId: string;
@@ -673,7 +673,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
673
673
  }, {
674
674
  id: string;
675
675
  name: string;
676
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
676
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
677
677
  created_at: Date;
678
678
  updated_at: Date;
679
679
  groupId: string;
@@ -685,12 +685,13 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
685
685
  id: string;
686
686
  username: string | null;
687
687
  password: string | null;
688
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
688
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
689
689
  phoneNumber: string;
690
690
  secondaryPhoneNumber: string | null;
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;
@@ -709,7 +709,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
709
709
  tags: {
710
710
  id: string;
711
711
  name: string;
712
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
712
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
713
713
  created_at: Date;
714
714
  updated_at: Date;
715
715
  groupId: string;
@@ -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;
@@ -744,7 +744,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
744
744
  tags: {
745
745
  id: string;
746
746
  name: string;
747
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
747
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
748
748
  created_at: Date;
749
749
  updated_at: Date;
750
750
  groupId: string;
@@ -752,7 +752,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
752
752
  id: string;
753
753
  };
754
754
  }[];
755
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
755
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
756
756
  }>, "many">>>;
757
757
  export declare class FindByDateRangeResponseDto extends FindByDateRangeResponseDto_base {
758
758
  }