expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.7 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.1

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 (83) hide show
  1. package/dist/src/account/dto/get-global-filter.dto.d.ts +8 -8
  2. package/dist/src/account/dto/get-me.dto.d.ts +16 -16
  3. package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
  4. package/dist/src/event/dto/create-event.dto.d.ts +8 -8
  5. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
  6. package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
  7. package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
  8. package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -78
  9. package/dist/src/event/dto/update-event.dto.d.ts +24 -24
  10. package/dist/src/exports.d.ts +1 -0
  11. package/dist/src/exports.js +1 -0
  12. package/dist/src/i18n/es.d.ts +31 -22
  13. package/dist/src/i18n/es.js +31 -22
  14. package/dist/src/i18n/es.js.map +1 -1
  15. package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
  16. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
  17. package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
  18. package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
  19. package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
  20. package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
  21. package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
  22. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
  23. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
  24. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
  25. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
  26. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
  27. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
  28. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
  29. package/dist/src/profile/dto/profile.dto.d.ts +2 -2
  30. package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
  31. package/dist/src/schema/profile.schema.d.ts +2 -2
  32. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  33. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  34. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  35. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  36. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  37. package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
  38. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
  39. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  40. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  41. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  42. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  43. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  44. package/dist/src/ticket/constants.d.ts +14 -12
  45. package/dist/src/ticket/constants.js +248 -355
  46. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +704 -0
  47. package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
  48. package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -56
  49. package/dist/src/ticket/dto/create-ticket.dto.js +1 -2
  50. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -30
  51. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -46
  52. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -58
  53. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -58
  54. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -58
  55. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -46
  56. package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -30
  57. package/dist/src/ticket/dto/ticket.dto.d.ts +10 -30
  58. package/dist/src/ticket/dto/ticket.dto.js +2 -5
  59. package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -48
  60. package/dist/src/ticket/dto/update-ticket.dto.js +1 -1
  61. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +346 -0
  62. package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
  63. package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
  64. package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
  65. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +8 -0
  66. package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +11 -0
  67. package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
  68. package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
  69. package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
  70. package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
  71. package/dist/src/ticket-group/exports.d.ts +5 -0
  72. package/dist/src/ticket-group/exports.js +22 -0
  73. package/dist/types/prisma-schema/edge.js +15 -7
  74. package/dist/types/prisma-schema/index-browser.js +12 -4
  75. package/dist/types/prisma-schema/index.d.ts +2216 -366
  76. package/dist/types/prisma-schema/index.js +15 -7
  77. package/dist/types/prisma-schema/package.json +1 -1
  78. package/dist/types/prisma-schema/schema.prisma +22 -7
  79. package/dist/types/prisma-schema/wasm.js +12 -4
  80. package/dist/types/schema.d.ts +308 -40
  81. package/package.json +6 -6
  82. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  83. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
63
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
73
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
74
74
  created_at: Date;
75
75
  updated_at: Date;
76
76
  groupId: string;
@@ -88,7 +88,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
88
88
  fullName: string;
89
89
  profilePictureUrl: string | null;
90
90
  mail: string | null;
91
- dni: string | null;
92
91
  created_at: Date;
93
92
  updated_at: Date;
94
93
  shortId: number;
@@ -98,6 +97,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
98
97
  gender: string | null;
99
98
  birthDate: Date | null;
100
99
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
109
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
110
110
  created_at: Date;
111
111
  updated_at: Date;
112
112
  groupId: string;
@@ -123,7 +123,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
123
123
  fullName: string;
124
124
  profilePictureUrl: string | null;
125
125
  mail: string | null;
126
- dni: string | null;
127
126
  created_at: Date;
128
127
  updated_at: Date;
129
128
  shortId: number;
@@ -133,6 +132,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
133
132
  gender: string | null;
134
133
  birthDate: string | null;
135
134
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
144
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
145
145
  created_at: Date;
146
146
  updated_at: Date;
147
147
  groupId: string;
@@ -162,7 +162,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
162
162
  fullName: string;
163
163
  profilePictureUrl: string | null;
164
164
  mail: string | null;
165
- dni: string | null;
166
165
  created_at: Date;
167
166
  updated_at: Date;
168
167
  shortId: number;
@@ -172,6 +171,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
172
171
  gender: string | null;
173
172
  birthDate: Date | null;
174
173
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
183
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
184
184
  created_at: Date;
185
185
  updated_at: Date;
186
186
  groupId: string;
@@ -199,7 +199,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
199
199
  fullName: string;
200
200
  profilePictureUrl: string | null;
201
201
  mail: string | null;
202
- dni: string | null;
203
202
  created_at: Date;
204
203
  updated_at: Date;
205
204
  shortId: number;
@@ -209,6 +208,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
209
208
  gender: string | null;
210
209
  birthDate: string | null;
211
210
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
220
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
221
221
  created_at: Date;
222
222
  updated_at: Date;
223
223
  groupId: string;
@@ -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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
285
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
295
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
296
296
  created_at: string;
297
297
  updated_at: string;
298
298
  groupId: string;
@@ -310,7 +310,6 @@ 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;
314
313
  created_at: string;
315
314
  updated_at: string;
316
315
  shortId: number;
@@ -320,6 +319,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
320
319
  gender: string | null;
321
320
  birthDate: string | null;
322
321
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
331
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
332
332
  created_at: string;
333
333
  updated_at: string;
334
334
  groupId: string;
@@ -345,7 +345,6 @@ 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;
349
348
  created_at: string;
350
349
  updated_at: string;
351
350
  shortId: number;
@@ -355,6 +354,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
355
354
  gender: string | null;
356
355
  birthDate: string | null;
357
356
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
366
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
367
367
  created_at: string;
368
368
  updated_at: string;
369
369
  groupId: string;
@@ -384,7 +384,6 @@ 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;
388
387
  created_at: string;
389
388
  updated_at: string;
390
389
  shortId: number;
@@ -394,6 +393,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
394
393
  gender: string | null;
395
394
  birthDate: string | null;
396
395
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
405
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
406
406
  created_at: string;
407
407
  updated_at: string;
408
408
  groupId: string;
@@ -421,7 +421,6 @@ 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;
425
424
  created_at: string;
426
425
  updated_at: string;
427
426
  shortId: number;
@@ -431,6 +430,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
431
430
  gender: string | null;
432
431
  birthDate: string | null;
433
432
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
442
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
443
443
  created_at: string;
444
444
  updated_at: string;
445
445
  groupId: string;
@@ -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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
515
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
525
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
526
526
  created_at: Date;
527
527
  updated_at: Date;
528
528
  groupId: string;
@@ -540,7 +540,6 @@ 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;
544
543
  created_at: Date;
545
544
  updated_at: Date;
546
545
  shortId: number;
@@ -550,6 +549,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
550
549
  gender: string | null;
551
550
  birthDate: Date | null;
552
551
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
561
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
562
562
  created_at: Date;
563
563
  updated_at: Date;
564
564
  groupId: string;
@@ -575,7 +575,6 @@ 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;
579
578
  created_at: Date;
580
579
  updated_at: Date;
581
580
  shortId: number;
@@ -585,6 +584,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
585
584
  gender: string | null;
586
585
  birthDate: string | null;
587
586
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
596
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
597
597
  created_at: Date;
598
598
  updated_at: Date;
599
599
  groupId: string;
@@ -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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
666
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
676
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
677
677
  created_at: Date;
678
678
  updated_at: Date;
679
679
  groupId: string;
@@ -691,7 +691,6 @@ 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;
695
694
  created_at: Date;
696
695
  updated_at: Date;
697
696
  shortId: number;
@@ -701,6 +700,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
701
700
  gender: string | null;
702
701
  birthDate: Date | null;
703
702
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
712
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
713
713
  created_at: Date;
714
714
  updated_at: Date;
715
715
  groupId: string;
@@ -726,7 +726,6 @@ 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;
730
729
  created_at: Date;
731
730
  updated_at: Date;
732
731
  shortId: number;
@@ -736,6 +735,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
736
735
  gender: string | null;
737
736
  birthDate: string | null;
738
737
  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: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
747
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
748
748
  created_at: Date;
749
749
  updated_at: Date;
750
750
  groupId: string;
@@ -119,7 +119,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
119
119
  }>, "strip", z.ZodTypeAny, {
120
120
  id: string;
121
121
  name: string;
122
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
122
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
123
123
  created_at: Date;
124
124
  updated_at: Date;
125
125
  groupId: string;
@@ -131,7 +131,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
131
131
  }, {
132
132
  id: string;
133
133
  name: string;
134
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
134
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
135
135
  created_at: Date;
136
136
  updated_at: Date;
137
137
  groupId: string;
@@ -150,7 +150,6 @@ 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;
154
153
  created_at: Date;
155
154
  updated_at: Date;
156
155
  shortId: number;
@@ -160,6 +159,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
160
159
  gender: string | null;
161
160
  birthDate: Date | null;
162
161
  instagram: string | null;
162
+ dni: string | null;
163
163
  alternativeNames: string[];
164
164
  birthLocationId: string | null;
165
165
  residenceLocationId: string | null;
@@ -168,7 +168,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
168
168
  tags: {
169
169
  id: string;
170
170
  name: string;
171
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
171
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
172
172
  created_at: Date;
173
173
  updated_at: Date;
174
174
  groupId: string;
@@ -206,7 +206,6 @@ 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;
210
209
  created_at: Date;
211
210
  updated_at: Date;
212
211
  shortId: number;
@@ -216,6 +215,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
216
215
  gender: string | null;
217
216
  birthDate: string | null;
218
217
  instagram: string | null;
218
+ dni: string | null;
219
219
  alternativeNames: string[];
220
220
  birthLocationId: string | null;
221
221
  residenceLocationId: string | null;
@@ -224,7 +224,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
224
224
  tags: {
225
225
  id: string;
226
226
  name: string;
227
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
227
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
228
228
  created_at: Date;
229
229
  updated_at: Date;
230
230
  groupId: string;
@@ -271,7 +271,6 @@ 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>;
275
274
  created_at: z.ZodString;
276
275
  updated_at: z.ZodString;
277
276
  shortId: z.ZodNumber;
@@ -281,6 +280,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
281
280
  gender: z.ZodNullable<z.ZodString>;
282
281
  birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
283
282
  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>;
@@ -370,7 +370,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
370
370
  }, z.UnknownKeysParam, z.ZodTypeAny, {
371
371
  id: string;
372
372
  name: string;
373
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
373
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
374
374
  created_at: string;
375
375
  updated_at: string;
376
376
  groupId: string;
@@ -382,7 +382,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
382
382
  }, {
383
383
  id: string;
384
384
  name: string;
385
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
385
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
386
386
  created_at: string;
387
387
  updated_at: string;
388
388
  groupId: string;
@@ -401,7 +401,6 @@ 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;
405
404
  created_at: string;
406
405
  updated_at: string;
407
406
  shortId: number;
@@ -411,6 +410,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
411
410
  gender: string | null;
412
411
  birthDate: string | null;
413
412
  instagram: string | null;
413
+ dni: string | null;
414
414
  alternativeNames: string[];
415
415
  birthLocationId: string | null;
416
416
  residenceLocationId: string | null;
@@ -419,7 +419,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
419
419
  tags: {
420
420
  id: string;
421
421
  name: string;
422
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
422
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
423
423
  created_at: string;
424
424
  updated_at: string;
425
425
  groupId: string;
@@ -457,7 +457,6 @@ 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;
461
460
  created_at: string;
462
461
  updated_at: string;
463
462
  shortId: number;
@@ -467,6 +466,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
467
466
  gender: string | null;
468
467
  birthDate: string | null;
469
468
  instagram: string | null;
469
+ dni: string | null;
470
470
  alternativeNames: string[];
471
471
  birthLocationId: string | null;
472
472
  residenceLocationId: string | null;
@@ -475,7 +475,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
475
475
  tags: {
476
476
  id: string;
477
477
  name: string;
478
- type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
478
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
479
479
  created_at: string;
480
480
  updated_at: string;
481
481
  groupId: string;
@@ -39,7 +39,6 @@ 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;
43
42
  created_at: Date;
44
43
  updated_at: Date;
45
44
  shortId: number;
@@ -49,6 +48,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
49
48
  gender: string | null;
50
49
  birthDate: Date | null;
51
50
  instagram: string | null;
51
+ dni: string | null;
52
52
  alternativeNames: string[];
53
53
  birthLocationId: string | null;
54
54
  residenceLocationId: string | null;
@@ -63,7 +63,6 @@ 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;
67
66
  created_at: Date;
68
67
  updated_at: Date;
69
68
  shortId: number;
@@ -73,6 +72,7 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
73
72
  gender: string | null;
74
73
  birthDate: string | null;
75
74
  instagram: string | null;
75
+ dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
@@ -121,7 +121,6 @@ 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;
125
124
  created_at: string;
126
125
  updated_at: string;
127
126
  shortId: number;
@@ -131,6 +130,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
131
130
  gender: string | null;
132
131
  birthDate: string | null;
133
132
  instagram: string | null;
133
+ dni: string | null;
134
134
  alternativeNames: string[];
135
135
  birthLocationId: string | null;
136
136
  residenceLocationId: string | null;
@@ -145,7 +145,6 @@ 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;
149
148
  created_at: string;
150
149
  updated_at: string;
151
150
  shortId: number;
@@ -155,6 +154,7 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
155
154
  gender: string | null;
156
155
  birthDate: string | null;
157
156
  instagram: string | null;
157
+ dni: string | null;
158
158
  alternativeNames: string[];
159
159
  birthLocationId: string | null;
160
160
  residenceLocationId: string | null;