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

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 (58) 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 +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  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/get-by-id-event.dto.d.ts +0 -20
  9. package/dist/src/i18n/es.d.ts +5 -19
  10. package/dist/src/i18n/es.js +5 -19
  11. package/dist/src/i18n/es.js.map +1 -1
  12. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  13. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  14. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  15. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  16. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  17. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  18. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
  20. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
  21. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
  22. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
  24. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
  25. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
  27. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  29. package/dist/src/schema/profile.schema.d.ts +5 -5
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  32. package/dist/src/ticket/constants.d.ts +14 -95
  33. package/dist/src/ticket/constants.js +222 -254
  34. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +728 -0
  35. package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
  36. package/dist/src/ticket/dto/create-ticket.dto.d.ts +1 -25
  37. package/dist/src/ticket/dto/create-ticket.dto.js +0 -2
  38. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
  39. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
  40. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +26 -46
  41. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +26 -46
  42. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +26 -46
  43. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
  44. package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
  45. package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
  46. package/dist/src/ticket/dto/ticket.dto.js +0 -2
  47. package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
  48. package/dist/types/prisma-schema/edge.js +5 -7
  49. package/dist/types/prisma-schema/index-browser.js +2 -4
  50. package/dist/types/prisma-schema/index.d.ts +65 -193
  51. package/dist/types/prisma-schema/index.js +5 -7
  52. package/dist/types/prisma-schema/package.json +1 -1
  53. package/dist/types/prisma-schema/schema.prisma +1 -5
  54. package/dist/types/prisma-schema/wasm.js +2 -4
  55. package/dist/types/schema.d.ts +118 -100
  56. package/package.json +6 -6
  57. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  58. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -5,8 +5,8 @@ export declare const findByPhoneNumberResponseSchema: import("zod").ZodObject<{
5
5
  USER: "USER";
6
6
  ADMIN: "ADMIN";
7
7
  FORM: "FORM";
8
- MI_EXPO: "MI_EXPO";
9
8
  TICKETS: "TICKETS";
9
+ MI_EXPO: "MI_EXPO";
10
10
  }>>;
11
11
  firstTimeMiExpo: import("zod").ZodBoolean;
12
12
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -33,13 +33,12 @@ 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" | "MI_EXPO" | "TICKETS";
36
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
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,12 +72,13 @@ 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;
79
79
  isInTrash: boolean;
80
80
  movedToTrashDate: Date | null;
81
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- MI_EXPO: "MI_EXPO";
91
90
  TICKETS: "TICKETS";
91
+ MI_EXPO: "MI_EXPO";
92
92
  }>>;
93
93
  firstTimeMiExpo: import("zod").ZodBoolean;
94
94
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -115,13 +115,12 @@ 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" | "MI_EXPO" | "TICKETS";
118
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
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,12 +154,13 @@ 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;
161
161
  isInTrash: boolean;
162
162
  movedToTrashDate: string | null;
163
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
163
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- MI_EXPO: "MI_EXPO";
11
10
  TICKETS: "TICKETS";
11
+ MI_EXPO: "MI_EXPO";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;
@@ -63,13 +63,12 @@ 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" | "MI_EXPO" | "TICKETS";
66
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
73
72
  created_at: Date;
74
73
  updated_at: Date;
75
74
  shortId: number;
@@ -79,6 +78,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
79
78
  gender: string | null;
80
79
  birthDate: Date | null;
81
80
  instagram: string | null;
81
+ dni: string | null;
82
82
  alternativeNames: string[];
83
83
  birthLocationId: string | null;
84
84
  residenceLocationId: string | null;
@@ -101,7 +101,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
101
101
  fullName: string;
102
102
  profilePictureUrl: string | null;
103
103
  mail: string | null;
104
- dni: string | null;
105
104
  created_at: Date;
106
105
  updated_at: Date;
107
106
  shortId: number;
@@ -111,6 +110,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
111
110
  gender: string | null;
112
111
  birthDate: string | null;
113
112
  instagram: string | null;
113
+ dni: string | null;
114
114
  alternativeNames: string[];
115
115
  birthLocationId: string | null;
116
116
  residenceLocationId: string | null;
@@ -124,20 +124,19 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
124
124
  updated_at: Date;
125
125
  groupId: string;
126
126
  }[];
127
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
127
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
134
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
141
140
  created_at: Date;
142
141
  updated_at: Date;
143
142
  shortId: number;
@@ -147,6 +146,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
147
146
  gender: string | null;
148
147
  birthDate: Date | null;
149
148
  instagram: string | null;
149
+ dni: string | null;
150
150
  alternativeNames: string[];
151
151
  birthLocationId: string | null;
152
152
  residenceLocationId: string | null;
@@ -171,7 +171,6 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
171
171
  fullName: string;
172
172
  profilePictureUrl: string | null;
173
173
  mail: string | null;
174
- dni: string | null;
175
174
  created_at: Date;
176
175
  updated_at: Date;
177
176
  shortId: number;
@@ -181,6 +180,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
181
180
  gender: string | null;
182
181
  birthDate: string | null;
183
182
  instagram: string | null;
183
+ dni: string | null;
184
184
  alternativeNames: string[];
185
185
  birthLocationId: string | null;
186
186
  residenceLocationId: string | null;
@@ -194,7 +194,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
194
194
  updated_at: Date;
195
195
  groupId: string;
196
196
  }[];
197
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
197
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- MI_EXPO: "MI_EXPO";
209
208
  TICKETS: "TICKETS";
209
+ MI_EXPO: "MI_EXPO";
210
210
  }>>;
211
211
  firstTimeMiExpo: z.ZodBoolean;
212
212
  username: z.ZodNullable<z.ZodString>;
@@ -260,13 +260,12 @@ 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" | "MI_EXPO" | "TICKETS";
263
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
270
269
  created_at: string;
271
270
  updated_at: string;
272
271
  shortId: number;
@@ -276,6 +275,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
276
275
  gender: string | null;
277
276
  birthDate: string | null;
278
277
  instagram: string | null;
278
+ dni: string | null;
279
279
  alternativeNames: string[];
280
280
  birthLocationId: string | null;
281
281
  residenceLocationId: string | null;
@@ -298,7 +298,6 @@ 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;
302
301
  created_at: string;
303
302
  updated_at: string;
304
303
  shortId: number;
@@ -308,6 +307,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
308
307
  gender: string | null;
309
308
  birthDate: string | null;
310
309
  instagram: string | null;
310
+ dni: string | null;
311
311
  alternativeNames: string[];
312
312
  birthLocationId: string | null;
313
313
  residenceLocationId: string | null;
@@ -321,20 +321,19 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
321
321
  updated_at: string;
322
322
  groupId: string;
323
323
  }[];
324
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
324
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
331
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
338
337
  created_at: string;
339
338
  updated_at: string;
340
339
  shortId: number;
@@ -344,6 +343,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
344
343
  gender: string | null;
345
344
  birthDate: string | null;
346
345
  instagram: string | null;
346
+ dni: string | null;
347
347
  alternativeNames: string[];
348
348
  birthLocationId: string | null;
349
349
  residenceLocationId: string | null;
@@ -368,7 +368,6 @@ 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;
372
371
  created_at: string;
373
372
  updated_at: string;
374
373
  shortId: number;
@@ -378,6 +377,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
378
377
  gender: string | null;
379
378
  birthDate: string | null;
380
379
  instagram: string | null;
380
+ dni: string | null;
381
381
  alternativeNames: string[];
382
382
  birthLocationId: string | null;
383
383
  residenceLocationId: string | null;
@@ -391,7 +391,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
391
391
  updated_at: string;
392
392
  groupId: string;
393
393
  }[];
394
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
394
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
395
395
  }[];
396
396
  }>>;
397
397
  export declare class FindByTagGroupsProfileResponseDto extends FindByTagGroupsProfileResponseDto_base {
@@ -7,8 +7,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
- MI_EXPO: "MI_EXPO";
11
10
  TICKETS: "TICKETS";
11
+ MI_EXPO: "MI_EXPO";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;
@@ -90,13 +90,12 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
90
90
  id: string;
91
91
  username: string | null;
92
92
  password: string | null;
93
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
93
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
94
94
  phoneNumber: string;
95
95
  secondaryPhoneNumber: string | null;
96
96
  fullName: string;
97
97
  profilePictureUrl: string | null;
98
98
  mail: string | null;
99
- dni: string | null;
100
99
  created_at: Date;
101
100
  updated_at: Date;
102
101
  shortId: number;
@@ -106,6 +105,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
106
105
  gender: string | null;
107
106
  birthDate: Date | null;
108
107
  instagram: string | null;
108
+ dni: string | null;
109
109
  alternativeNames: string[];
110
110
  birthLocationId: string | null;
111
111
  residenceLocationId: string | null;
@@ -133,7 +133,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
133
133
  fullName: string;
134
134
  profilePictureUrl: string | null;
135
135
  mail: string | null;
136
- dni: string | null;
137
136
  created_at: Date;
138
137
  updated_at: Date;
139
138
  shortId: number;
@@ -143,6 +142,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
143
142
  gender: string | null;
144
143
  birthDate: string | null;
145
144
  instagram: string | null;
145
+ dni: string | null;
146
146
  alternativeNames: string[];
147
147
  birthLocationId: string | null;
148
148
  residenceLocationId: string | null;
@@ -161,20 +161,19 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
161
161
  isExclusive: boolean;
162
162
  };
163
163
  }[];
164
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
164
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
165
165
  }>, "many">;
166
166
  }, "strip", z.ZodTypeAny, {
167
167
  profiles: {
168
168
  id: string;
169
169
  username: string | null;
170
170
  password: string | null;
171
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
171
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
172
172
  phoneNumber: string;
173
173
  secondaryPhoneNumber: string | null;
174
174
  fullName: string;
175
175
  profilePictureUrl: string | null;
176
176
  mail: string | null;
177
- dni: string | null;
178
177
  created_at: Date;
179
178
  updated_at: Date;
180
179
  shortId: number;
@@ -184,6 +183,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
184
183
  gender: string | null;
185
184
  birthDate: Date | null;
186
185
  instagram: string | null;
186
+ dni: string | null;
187
187
  alternativeNames: string[];
188
188
  birthLocationId: string | null;
189
189
  residenceLocationId: string | null;
@@ -213,7 +213,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
213
213
  fullName: string;
214
214
  profilePictureUrl: string | null;
215
215
  mail: string | null;
216
- dni: string | null;
217
216
  created_at: Date;
218
217
  updated_at: Date;
219
218
  shortId: number;
@@ -223,6 +222,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
223
222
  gender: string | null;
224
223
  birthDate: string | null;
225
224
  instagram: string | null;
225
+ dni: string | null;
226
226
  alternativeNames: string[];
227
227
  birthLocationId: string | null;
228
228
  residenceLocationId: string | null;
@@ -241,7 +241,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
241
241
  isExclusive: boolean;
242
242
  };
243
243
  }[];
244
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
244
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
245
245
  }[];
246
246
  }>;
247
247
  declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -252,8 +252,8 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
252
252
  USER: "USER";
253
253
  ADMIN: "ADMIN";
254
254
  FORM: "FORM";
255
- MI_EXPO: "MI_EXPO";
256
255
  TICKETS: "TICKETS";
256
+ MI_EXPO: "MI_EXPO";
257
257
  }>>;
258
258
  firstTimeMiExpo: z.ZodBoolean;
259
259
  username: z.ZodNullable<z.ZodString>;
@@ -330,13 +330,12 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
330
330
  id: string;
331
331
  username: string | null;
332
332
  password: string | null;
333
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
333
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
334
334
  phoneNumber: string;
335
335
  secondaryPhoneNumber: string | null;
336
336
  fullName: string;
337
337
  profilePictureUrl: string | null;
338
338
  mail: string | null;
339
- dni: string | null;
340
339
  created_at: string;
341
340
  updated_at: string;
342
341
  shortId: number;
@@ -346,6 +345,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
346
345
  gender: string | null;
347
346
  birthDate: string | null;
348
347
  instagram: string | null;
348
+ dni: string | null;
349
349
  alternativeNames: string[];
350
350
  birthLocationId: string | null;
351
351
  residenceLocationId: string | null;
@@ -373,7 +373,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
373
373
  fullName: string;
374
374
  profilePictureUrl: string | null;
375
375
  mail: string | null;
376
- dni: string | null;
377
376
  created_at: string;
378
377
  updated_at: string;
379
378
  shortId: number;
@@ -383,6 +382,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
383
382
  gender: string | null;
384
383
  birthDate: string | null;
385
384
  instagram: string | null;
385
+ dni: string | null;
386
386
  alternativeNames: string[];
387
387
  birthLocationId: string | null;
388
388
  residenceLocationId: string | null;
@@ -401,20 +401,19 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
401
401
  isExclusive: boolean;
402
402
  };
403
403
  }[];
404
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
404
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
405
405
  }>, "many">;
406
406
  }, z.UnknownKeysParam, z.ZodTypeAny, {
407
407
  profiles: {
408
408
  id: string;
409
409
  username: string | null;
410
410
  password: string | null;
411
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
411
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
412
412
  phoneNumber: string;
413
413
  secondaryPhoneNumber: string | null;
414
414
  fullName: string;
415
415
  profilePictureUrl: string | null;
416
416
  mail: string | null;
417
- dni: string | null;
418
417
  created_at: string;
419
418
  updated_at: string;
420
419
  shortId: number;
@@ -424,6 +423,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
424
423
  gender: string | null;
425
424
  birthDate: string | null;
426
425
  instagram: string | null;
426
+ dni: string | null;
427
427
  alternativeNames: string[];
428
428
  birthLocationId: string | null;
429
429
  residenceLocationId: string | null;
@@ -453,7 +453,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
453
453
  fullName: string;
454
454
  profilePictureUrl: string | null;
455
455
  mail: string | null;
456
- dni: string | null;
457
456
  created_at: string;
458
457
  updated_at: string;
459
458
  shortId: number;
@@ -463,6 +462,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
463
462
  gender: string | null;
464
463
  birthDate: string | null;
465
464
  instagram: string | null;
465
+ dni: string | null;
466
466
  alternativeNames: string[];
467
467
  birthLocationId: string | null;
468
468
  residenceLocationId: string | null;
@@ -481,7 +481,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
481
481
  isExclusive: boolean;
482
482
  };
483
483
  }[];
484
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
484
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
485
485
  }[];
486
486
  }>>;
487
487
  export declare class FindByTagsProfileResponseDto extends FindByTagsProfileResponseDto_base {
@@ -7,8 +7,8 @@ export declare const findTrashResponseSchema: z.ZodObject<{
7
7
  USER: "USER";
8
8
  ADMIN: "ADMIN";
9
9
  FORM: "FORM";
10
- MI_EXPO: "MI_EXPO";
11
10
  TICKETS: "TICKETS";
11
+ MI_EXPO: "MI_EXPO";
12
12
  }>>;
13
13
  firstTimeMiExpo: z.ZodBoolean;
14
14
  username: z.ZodNullable<z.ZodString>;