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

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
@@ -6,8 +6,8 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
6
6
  USER: "USER";
7
7
  ADMIN: "ADMIN";
8
8
  FORM: "FORM";
9
- TICKETS: "TICKETS";
10
9
  MI_EXPO: "MI_EXPO";
10
+ TICKETS: "TICKETS";
11
11
  }>>;
12
12
  firstTimeMiExpo: z.ZodBoolean;
13
13
  username: z.ZodNullable<z.ZodString>;
@@ -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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
122
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
134
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
135
135
  created_at: Date;
136
136
  updated_at: Date;
137
137
  groupId: string;
@@ -144,12 +144,13 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
144
144
  }>, "strip", z.ZodTypeAny, {
145
145
  id: string;
146
146
  username: string | null;
147
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
147
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
148
148
  phoneNumber: string;
149
149
  secondaryPhoneNumber: string | null;
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;
@@ -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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
171
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
172
172
  created_at: Date;
173
173
  updated_at: Date;
174
174
  groupId: string;
@@ -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;
@@ -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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
227
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
228
228
  created_at: Date;
229
229
  updated_at: Date;
230
230
  groupId: string;
@@ -254,7 +254,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
254
254
  country: string;
255
255
  city: string;
256
256
  } | null;
257
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
257
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
258
258
  }>;
259
259
  declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
260
260
  id: z.ZodString;
@@ -263,14 +263,15 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
263
263
  USER: "USER";
264
264
  ADMIN: "ADMIN";
265
265
  FORM: "FORM";
266
- TICKETS: "TICKETS";
267
266
  MI_EXPO: "MI_EXPO";
267
+ TICKETS: "TICKETS";
268
268
  }>>;
269
269
  phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
270
270
  secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
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>;
@@ -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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
373
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
385
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
386
386
  created_at: string;
387
387
  updated_at: string;
388
388
  groupId: string;
@@ -395,12 +395,13 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
395
395
  }, z.UnknownKeysParam, z.ZodTypeAny, {
396
396
  id: string;
397
397
  username: string | null;
398
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
398
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
399
399
  phoneNumber: string;
400
400
  secondaryPhoneNumber: string | null;
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;
@@ -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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
422
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
423
423
  created_at: string;
424
424
  updated_at: string;
425
425
  groupId: string;
@@ -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;
@@ -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: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
478
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
479
479
  created_at: string;
480
480
  updated_at: string;
481
481
  groupId: string;
@@ -505,7 +505,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
505
505
  country: string;
506
506
  city: string;
507
507
  } | null;
508
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
508
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
509
509
  }>>;
510
510
  export declare class FindByIdProfileResponseDto extends FindByIdProfileResponseDto_base {
511
511
  }
@@ -5,8 +5,8 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
5
5
  USER: "USER";
6
6
  ADMIN: "ADMIN";
7
7
  FORM: "FORM";
8
- TICKETS: "TICKETS";
9
8
  MI_EXPO: "MI_EXPO";
9
+ TICKETS: "TICKETS";
10
10
  }>>;
11
11
  firstTimeMiExpo: import("zod").ZodBoolean;
12
12
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -33,12 +33,13 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
33
33
  id: string;
34
34
  username: string | null;
35
35
  password: string | null;
36
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
36
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
37
37
  phoneNumber: string;
38
38
  secondaryPhoneNumber: string | null;
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,13 +73,12 @@ 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;
79
79
  isInTrash: boolean;
80
80
  movedToTrashDate: Date | null;
81
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
82
82
  }>;
83
83
  declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
84
84
  id: import("zod").ZodString;
@@ -87,8 +87,8 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
87
87
  USER: "USER";
88
88
  ADMIN: "ADMIN";
89
89
  FORM: "FORM";
90
- TICKETS: "TICKETS";
91
90
  MI_EXPO: "MI_EXPO";
91
+ TICKETS: "TICKETS";
92
92
  }>>;
93
93
  firstTimeMiExpo: import("zod").ZodBoolean;
94
94
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -115,12 +115,13 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
115
115
  id: string;
116
116
  username: string | null;
117
117
  password: string | null;
118
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
118
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
119
119
  phoneNumber: string;
120
120
  secondaryPhoneNumber: string | null;
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,13 +155,12 @@ 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;
161
161
  isInTrash: boolean;
162
162
  movedToTrashDate: string | null;
163
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
163
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
164
164
  }>>;
165
165
  export declare class FindByPhoneNumberResponseDto extends FindByPhoneNumberResponseDto_base {
166
166
  }
@@ -7,8 +7,8 @@ export declare const findByTagGroupsProfileResponseSchema: 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>;
@@ -47,14 +47,14 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
47
47
  }, "strip", z.ZodTypeAny, {
48
48
  id: string;
49
49
  name: string;
50
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
50
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
51
51
  created_at: Date;
52
52
  updated_at: Date;
53
53
  groupId: string;
54
54
  }, {
55
55
  id: string;
56
56
  name: string;
57
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
57
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
58
58
  created_at: Date;
59
59
  updated_at: Date;
60
60
  groupId: string;
@@ -63,12 +63,13 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
63
63
  id: string;
64
64
  username: string | null;
65
65
  password: string | null;
66
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
66
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
67
67
  phoneNumber: string;
68
68
  secondaryPhoneNumber: string | null;
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;
@@ -87,7 +87,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
87
87
  tags: {
88
88
  id: string;
89
89
  name: string;
90
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
90
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
91
91
  created_at: Date;
92
92
  updated_at: Date;
93
93
  groupId: string;
@@ -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;
@@ -119,24 +119,25 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
119
119
  tags: {
120
120
  id: string;
121
121
  name: string;
122
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
122
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
123
123
  created_at: Date;
124
124
  updated_at: Date;
125
125
  groupId: string;
126
126
  }[];
127
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
127
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
128
128
  }>, "many">;
129
129
  }, "strip", z.ZodTypeAny, {
130
130
  profiles: {
131
131
  id: string;
132
132
  username: string | null;
133
133
  password: string | null;
134
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
134
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
135
135
  phoneNumber: string;
136
136
  secondaryPhoneNumber: string | null;
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;
@@ -155,7 +155,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
155
155
  tags: {
156
156
  id: string;
157
157
  name: string;
158
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
158
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
159
159
  created_at: Date;
160
160
  updated_at: Date;
161
161
  groupId: string;
@@ -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;
@@ -189,12 +189,12 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
189
189
  tags: {
190
190
  id: string;
191
191
  name: string;
192
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
192
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
193
193
  created_at: Date;
194
194
  updated_at: Date;
195
195
  groupId: string;
196
196
  }[];
197
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
197
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
198
198
  }[];
199
199
  }>;
200
200
  declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -205,8 +205,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
205
205
  USER: "USER";
206
206
  ADMIN: "ADMIN";
207
207
  FORM: "FORM";
208
- TICKETS: "TICKETS";
209
208
  MI_EXPO: "MI_EXPO";
209
+ TICKETS: "TICKETS";
210
210
  }>>;
211
211
  firstTimeMiExpo: z.ZodBoolean;
212
212
  username: z.ZodNullable<z.ZodString>;
@@ -244,14 +244,14 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
244
244
  }, z.UnknownKeysParam, z.ZodTypeAny, {
245
245
  id: string;
246
246
  name: string;
247
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
247
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
248
248
  created_at: string;
249
249
  updated_at: string;
250
250
  groupId: string;
251
251
  }, {
252
252
  id: string;
253
253
  name: string;
254
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
254
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
255
255
  created_at: string;
256
256
  updated_at: string;
257
257
  groupId: string;
@@ -260,12 +260,13 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
260
260
  id: string;
261
261
  username: string | null;
262
262
  password: string | null;
263
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
263
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
264
264
  phoneNumber: string;
265
265
  secondaryPhoneNumber: string | null;
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;
@@ -284,7 +284,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
284
284
  tags: {
285
285
  id: string;
286
286
  name: string;
287
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
287
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
288
288
  created_at: string;
289
289
  updated_at: string;
290
290
  groupId: string;
@@ -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;
@@ -316,24 +316,25 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
316
316
  tags: {
317
317
  id: string;
318
318
  name: string;
319
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
319
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
320
320
  created_at: string;
321
321
  updated_at: string;
322
322
  groupId: string;
323
323
  }[];
324
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
324
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
325
325
  }>, "many">;
326
326
  }, z.UnknownKeysParam, z.ZodTypeAny, {
327
327
  profiles: {
328
328
  id: string;
329
329
  username: string | null;
330
330
  password: string | null;
331
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
331
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
332
332
  phoneNumber: string;
333
333
  secondaryPhoneNumber: string | null;
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;
@@ -352,7 +352,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
352
352
  tags: {
353
353
  id: string;
354
354
  name: string;
355
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
355
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
356
356
  created_at: string;
357
357
  updated_at: string;
358
358
  groupId: string;
@@ -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;
@@ -386,12 +386,12 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
386
386
  tags: {
387
387
  id: string;
388
388
  name: string;
389
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
389
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
390
390
  created_at: string;
391
391
  updated_at: string;
392
392
  groupId: string;
393
393
  }[];
394
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
394
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
395
395
  }[];
396
396
  }>>;
397
397
  export declare class FindByTagGroupsProfileResponseDto extends FindByTagGroupsProfileResponseDto_base {