expo-backend-types 0.36.0 → 0.37.0

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 (66) 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 +60 -40
  9. package/dist/src/event/dto/update-event.dto.d.ts +24 -24
  10. package/dist/src/i18n/es.d.ts +25 -0
  11. package/dist/src/i18n/es.js +25 -0
  12. package/dist/src/i18n/es.js.map +1 -1
  13. package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
  14. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
  15. package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
  16. package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
  17. package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
  18. package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
  20. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
  21. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
  22. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
  23. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
  24. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
  25. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
  26. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
  27. package/dist/src/profile/dto/profile.dto.d.ts +2 -2
  28. package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
  29. package/dist/src/schema/profile.schema.d.ts +2 -2
  30. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  31. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  32. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  33. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  34. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  35. package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
  36. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
  37. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  38. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  39. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  40. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  41. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  42. package/dist/src/ticket/constants.d.ts +12 -14
  43. package/dist/src/ticket/constants.js +355 -267
  44. package/dist/src/ticket/dto/create-ticket.dto.d.ts +28 -9
  45. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  46. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +16 -4
  47. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +28 -8
  48. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +40 -20
  49. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +40 -20
  50. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +40 -20
  51. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +28 -8
  52. package/dist/src/ticket/dto/find-ticket.dto.d.ts +16 -4
  53. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  54. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  55. package/dist/src/ticket/dto/ticket.dto.d.ts +16 -4
  56. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  57. package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -8
  58. package/dist/types/prisma-schema/edge.js +5 -3
  59. package/dist/types/prisma-schema/index-browser.js +2 -0
  60. package/dist/types/prisma-schema/index.d.ts +191 -63
  61. package/dist/types/prisma-schema/index.js +5 -3
  62. package/dist/types/prisma-schema/package.json +1 -1
  63. package/dist/types/prisma-schema/schema.prisma +4 -0
  64. package/dist/types/prisma-schema/wasm.js +2 -0
  65. package/dist/types/schema.d.ts +77 -0
  66. package/package.json +7 -6
@@ -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;
@@ -69,6 +69,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
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,7 +119,7 @@ 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;
@@ -137,6 +137,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
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,7 +189,7 @@ 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;
@@ -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;
@@ -266,6 +266,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
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,7 +316,7 @@ 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;
@@ -334,6 +334,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
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,7 +386,7 @@ 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;
@@ -64,7 +64,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
64
64
  }>, "strip", z.ZodTypeAny, {
65
65
  id: string;
66
66
  name: string;
67
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
67
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
68
68
  created_at: Date;
69
69
  updated_at: Date;
70
70
  groupId: string;
@@ -76,7 +76,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
76
76
  }, {
77
77
  id: string;
78
78
  name: string;
79
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
79
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
80
80
  created_at: Date;
81
81
  updated_at: Date;
82
82
  groupId: string;
@@ -96,6 +96,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
96
96
  fullName: string;
97
97
  profilePictureUrl: string | null;
98
98
  mail: string | null;
99
+ dni: string | null;
99
100
  created_at: Date;
100
101
  updated_at: Date;
101
102
  shortId: number;
@@ -105,7 +106,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
105
106
  gender: string | null;
106
107
  birthDate: Date | null;
107
108
  instagram: string | null;
108
- dni: string | null;
109
109
  alternativeNames: string[];
110
110
  birthLocationId: string | null;
111
111
  residenceLocationId: string | null;
@@ -114,7 +114,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
114
114
  tags: {
115
115
  id: string;
116
116
  name: string;
117
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
117
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
118
118
  created_at: Date;
119
119
  updated_at: Date;
120
120
  groupId: string;
@@ -133,6 +133,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
133
133
  fullName: string;
134
134
  profilePictureUrl: string | null;
135
135
  mail: string | null;
136
+ dni: string | null;
136
137
  created_at: Date;
137
138
  updated_at: Date;
138
139
  shortId: number;
@@ -142,7 +143,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
142
143
  gender: string | null;
143
144
  birthDate: string | null;
144
145
  instagram: string | null;
145
- dni: string | null;
146
146
  alternativeNames: string[];
147
147
  birthLocationId: string | null;
148
148
  residenceLocationId: string | null;
@@ -151,7 +151,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
151
151
  tags: {
152
152
  id: string;
153
153
  name: string;
154
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
154
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
155
155
  created_at: Date;
156
156
  updated_at: Date;
157
157
  groupId: string;
@@ -174,6 +174,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
174
174
  fullName: string;
175
175
  profilePictureUrl: string | null;
176
176
  mail: string | null;
177
+ dni: string | null;
177
178
  created_at: Date;
178
179
  updated_at: Date;
179
180
  shortId: number;
@@ -183,7 +184,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
183
184
  gender: string | null;
184
185
  birthDate: Date | null;
185
186
  instagram: string | null;
186
- dni: string | null;
187
187
  alternativeNames: string[];
188
188
  birthLocationId: string | null;
189
189
  residenceLocationId: string | null;
@@ -192,7 +192,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
192
192
  tags: {
193
193
  id: string;
194
194
  name: string;
195
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
195
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
196
196
  created_at: Date;
197
197
  updated_at: Date;
198
198
  groupId: string;
@@ -213,6 +213,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
213
213
  fullName: string;
214
214
  profilePictureUrl: string | null;
215
215
  mail: string | null;
216
+ dni: string | null;
216
217
  created_at: Date;
217
218
  updated_at: Date;
218
219
  shortId: number;
@@ -222,7 +223,6 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
222
223
  gender: string | null;
223
224
  birthDate: string | null;
224
225
  instagram: string | null;
225
- dni: string | null;
226
226
  alternativeNames: string[];
227
227
  birthLocationId: string | null;
228
228
  residenceLocationId: string | null;
@@ -231,7 +231,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
231
231
  tags: {
232
232
  id: string;
233
233
  name: string;
234
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
234
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
235
235
  created_at: Date;
236
236
  updated_at: Date;
237
237
  groupId: string;
@@ -304,7 +304,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
304
304
  }, z.UnknownKeysParam, z.ZodTypeAny, {
305
305
  id: string;
306
306
  name: string;
307
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
307
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
308
308
  created_at: string;
309
309
  updated_at: string;
310
310
  groupId: string;
@@ -316,7 +316,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
316
316
  }, {
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;
@@ -336,6 +336,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
336
336
  fullName: string;
337
337
  profilePictureUrl: string | null;
338
338
  mail: string | null;
339
+ dni: string | null;
339
340
  created_at: string;
340
341
  updated_at: string;
341
342
  shortId: number;
@@ -345,7 +346,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
345
346
  gender: string | null;
346
347
  birthDate: string | null;
347
348
  instagram: string | null;
348
- dni: string | null;
349
349
  alternativeNames: string[];
350
350
  birthLocationId: string | null;
351
351
  residenceLocationId: string | null;
@@ -354,7 +354,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
354
354
  tags: {
355
355
  id: string;
356
356
  name: string;
357
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
357
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
358
358
  created_at: string;
359
359
  updated_at: string;
360
360
  groupId: string;
@@ -373,6 +373,7 @@ 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;
376
377
  created_at: string;
377
378
  updated_at: string;
378
379
  shortId: number;
@@ -382,7 +383,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
382
383
  gender: string | null;
383
384
  birthDate: string | null;
384
385
  instagram: string | null;
385
- dni: string | null;
386
386
  alternativeNames: string[];
387
387
  birthLocationId: string | null;
388
388
  residenceLocationId: string | null;
@@ -391,7 +391,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
391
391
  tags: {
392
392
  id: string;
393
393
  name: string;
394
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
394
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
395
395
  created_at: string;
396
396
  updated_at: string;
397
397
  groupId: string;
@@ -414,6 +414,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
414
414
  fullName: string;
415
415
  profilePictureUrl: string | null;
416
416
  mail: string | null;
417
+ dni: string | null;
417
418
  created_at: string;
418
419
  updated_at: string;
419
420
  shortId: number;
@@ -423,7 +424,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
423
424
  gender: string | null;
424
425
  birthDate: string | null;
425
426
  instagram: string | null;
426
- dni: string | null;
427
427
  alternativeNames: string[];
428
428
  birthLocationId: string | null;
429
429
  residenceLocationId: string | null;
@@ -432,7 +432,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
432
432
  tags: {
433
433
  id: string;
434
434
  name: string;
435
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
435
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
436
436
  created_at: string;
437
437
  updated_at: string;
438
438
  groupId: string;
@@ -453,6 +453,7 @@ 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;
456
457
  created_at: string;
457
458
  updated_at: string;
458
459
  shortId: number;
@@ -462,7 +463,6 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
462
463
  gender: string | null;
463
464
  birthDate: string | null;
464
465
  instagram: string | null;
465
- dni: string | null;
466
466
  alternativeNames: string[];
467
467
  birthLocationId: string | null;
468
468
  residenceLocationId: string | null;
@@ -471,7 +471,7 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
471
471
  tags: {
472
472
  id: string;
473
473
  name: string;
474
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
474
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
475
475
  created_at: string;
476
476
  updated_at: string;
477
477
  groupId: string;
@@ -47,14 +47,14 @@ export declare const findWithActiveChatResponseSchema: 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;
@@ -178,6 +178,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
178
178
  fullName: string;
179
179
  profilePictureUrl: string | null;
180
180
  mail: string | null;
181
+ dni: string | null;
181
182
  created_at: Date;
182
183
  updated_at: Date;
183
184
  shortId: number;
@@ -187,7 +188,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
187
188
  gender: string | null;
188
189
  birthDate: Date | null;
189
190
  instagram: string | null;
190
- dni: string | null;
191
191
  alternativeNames: string[];
192
192
  birthLocationId: string | null;
193
193
  residenceLocationId: string | null;
@@ -217,7 +217,7 @@ export declare const findWithActiveChatResponseSchema: 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;
@@ -232,6 +232,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
232
232
  fullName: string;
233
233
  profilePictureUrl: string | null;
234
234
  mail: string | null;
235
+ dni: string | null;
235
236
  created_at: Date;
236
237
  updated_at: Date;
237
238
  shortId: number;
@@ -241,7 +242,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
241
242
  gender: string | null;
242
243
  birthDate: string | null;
243
244
  instagram: string | null;
244
- dni: string | null;
245
245
  alternativeNames: string[];
246
246
  birthLocationId: string | null;
247
247
  residenceLocationId: string | null;
@@ -271,7 +271,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
271
271
  tags: {
272
272
  id: string;
273
273
  name: string;
274
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
274
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
275
275
  created_at: Date;
276
276
  updated_at: Date;
277
277
  groupId: string;
@@ -290,6 +290,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
290
290
  fullName: string;
291
291
  profilePictureUrl: string | null;
292
292
  mail: string | null;
293
+ dni: string | null;
293
294
  created_at: Date;
294
295
  updated_at: Date;
295
296
  shortId: number;
@@ -299,7 +300,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
299
300
  gender: string | null;
300
301
  birthDate: Date | null;
301
302
  instagram: string | null;
302
- dni: string | null;
303
303
  alternativeNames: string[];
304
304
  birthLocationId: string | null;
305
305
  residenceLocationId: string | null;
@@ -329,7 +329,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
329
329
  tags: {
330
330
  id: string;
331
331
  name: string;
332
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
332
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
333
333
  created_at: Date;
334
334
  updated_at: Date;
335
335
  groupId: string;
@@ -346,6 +346,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
346
346
  fullName: string;
347
347
  profilePictureUrl: string | null;
348
348
  mail: string | null;
349
+ dni: string | null;
349
350
  created_at: Date;
350
351
  updated_at: Date;
351
352
  shortId: number;
@@ -355,7 +356,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
355
356
  gender: string | null;
356
357
  birthDate: string | null;
357
358
  instagram: string | null;
358
- dni: string | null;
359
359
  alternativeNames: string[];
360
360
  birthLocationId: string | null;
361
361
  residenceLocationId: string | null;
@@ -385,7 +385,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
385
385
  tags: {
386
386
  id: string;
387
387
  name: string;
388
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
388
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
389
389
  created_at: Date;
390
390
  updated_at: Date;
391
391
  groupId: string;
@@ -441,14 +441,14 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
441
441
  }, z.UnknownKeysParam, z.ZodTypeAny, {
442
442
  id: string;
443
443
  name: string;
444
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
444
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
445
445
  created_at: string;
446
446
  updated_at: string;
447
447
  groupId: string;
448
448
  }, {
449
449
  id: string;
450
450
  name: string;
451
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
451
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
452
452
  created_at: string;
453
453
  updated_at: string;
454
454
  groupId: string;
@@ -569,6 +569,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
569
569
  fullName: string;
570
570
  profilePictureUrl: string | null;
571
571
  mail: string | null;
572
+ dni: string | null;
572
573
  created_at: string;
573
574
  updated_at: string;
574
575
  shortId: number;
@@ -578,7 +579,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
578
579
  gender: string | null;
579
580
  birthDate: string | null;
580
581
  instagram: string | null;
581
- dni: string | null;
582
582
  alternativeNames: string[];
583
583
  birthLocationId: string | null;
584
584
  residenceLocationId: string | null;
@@ -608,7 +608,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
608
608
  tags: {
609
609
  id: string;
610
610
  name: string;
611
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
611
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
612
612
  created_at: string;
613
613
  updated_at: string;
614
614
  groupId: string;
@@ -623,6 +623,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
623
623
  fullName: string;
624
624
  profilePictureUrl: string | null;
625
625
  mail: string | null;
626
+ dni: string | null;
626
627
  created_at: string;
627
628
  updated_at: string;
628
629
  shortId: number;
@@ -632,7 +633,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
632
633
  gender: string | null;
633
634
  birthDate: string | null;
634
635
  instagram: string | null;
635
- dni: string | null;
636
636
  alternativeNames: string[];
637
637
  birthLocationId: string | null;
638
638
  residenceLocationId: string | null;
@@ -662,7 +662,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
662
662
  tags: {
663
663
  id: string;
664
664
  name: string;
665
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
665
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
666
666
  created_at: string;
667
667
  updated_at: string;
668
668
  groupId: string;
@@ -681,6 +681,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
681
681
  fullName: string;
682
682
  profilePictureUrl: string | null;
683
683
  mail: string | null;
684
+ dni: string | null;
684
685
  created_at: string;
685
686
  updated_at: string;
686
687
  shortId: number;
@@ -690,7 +691,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
690
691
  gender: string | null;
691
692
  birthDate: string | null;
692
693
  instagram: string | null;
693
- dni: string | null;
694
694
  alternativeNames: string[];
695
695
  birthLocationId: string | null;
696
696
  residenceLocationId: string | null;
@@ -720,7 +720,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
720
720
  tags: {
721
721
  id: string;
722
722
  name: string;
723
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
723
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
724
724
  created_at: string;
725
725
  updated_at: string;
726
726
  groupId: string;
@@ -737,6 +737,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
737
737
  fullName: string;
738
738
  profilePictureUrl: string | null;
739
739
  mail: string | null;
740
+ dni: string | null;
740
741
  created_at: string;
741
742
  updated_at: string;
742
743
  shortId: number;
@@ -746,7 +747,6 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
746
747
  gender: string | null;
747
748
  birthDate: string | null;
748
749
  instagram: string | null;
749
- dni: string | null;
750
750
  alternativeNames: string[];
751
751
  birthLocationId: string | null;
752
752
  residenceLocationId: string | null;
@@ -776,7 +776,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
776
776
  tags: {
777
777
  id: string;
778
778
  name: string;
779
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
779
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
780
780
  created_at: string;
781
781
  updated_at: string;
782
782
  groupId: string;