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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +9 -9
  4. package/dist/src/account/dto/get-me.dto.d.ts +22 -22
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +14 -14
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/create-event.dto.d.ts +8 -8
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
  10. package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
  11. package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
  12. package/dist/src/event/dto/get-by-id-event.dto.d.ts +60 -40
  13. package/dist/src/event/dto/update-event.dto.d.ts +24 -24
  14. package/dist/src/i18n/es.d.ts +25 -5
  15. package/dist/src/i18n/es.js +25 -5
  16. package/dist/src/i18n/es.js.map +1 -1
  17. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  18. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  19. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  20. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  21. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  22. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  23. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  24. package/dist/src/profile/dto/find-all-profile.dto.d.ts +30 -30
  25. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +48 -48
  26. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +19 -19
  27. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  28. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +30 -30
  29. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +30 -30
  30. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  31. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +30 -30
  32. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  33. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  34. package/dist/src/schema/profile.schema.d.ts +5 -5
  35. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  36. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  37. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  38. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  39. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  40. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  41. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  42. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  43. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  44. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  45. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  46. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  47. package/dist/src/ticket/constants.d.ts +12 -14
  48. package/dist/src/ticket/constants.js +355 -267
  49. package/dist/src/ticket/dto/create-ticket.dto.d.ts +28 -9
  50. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  51. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +16 -4
  52. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +28 -8
  53. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +54 -34
  54. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +54 -34
  55. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +54 -34
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +28 -8
  57. package/dist/src/ticket/dto/find-ticket.dto.d.ts +16 -4
  58. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  59. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  60. package/dist/src/ticket/dto/ticket.dto.d.ts +16 -4
  61. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  62. package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -8
  63. package/dist/types/prisma-schema/edge.js +7 -5
  64. package/dist/types/prisma-schema/index-browser.js +4 -2
  65. package/dist/types/prisma-schema/index.d.ts +193 -65
  66. package/dist/types/prisma-schema/index.js +7 -5
  67. package/dist/types/prisma-schema/package.json +1 -1
  68. package/dist/types/prisma-schema/schema.prisma +5 -1
  69. package/dist/types/prisma-schema/wasm.js +4 -2
  70. package/dist/types/schema.d.ts +99 -118
  71. package/package.json +8 -8
  72. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -728
  73. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -58
@@ -7,8 +7,8 @@ export declare const findByTagsProfileResponseSchema: 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>;
@@ -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;
@@ -90,12 +90,13 @@ 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" | "TICKETS" | "MI_EXPO";
93
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
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;
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;
@@ -161,19 +161,20 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
161
161
  isExclusive: boolean;
162
162
  };
163
163
  }[];
164
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
164
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | 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" | "TICKETS" | "MI_EXPO";
171
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
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;
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;
@@ -241,7 +241,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
241
241
  isExclusive: boolean;
242
242
  };
243
243
  }[];
244
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
244
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | 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
- TICKETS: "TICKETS";
256
255
  MI_EXPO: "MI_EXPO";
256
+ TICKETS: "TICKETS";
257
257
  }>>;
258
258
  firstTimeMiExpo: z.ZodBoolean;
259
259
  username: z.ZodNullable<z.ZodString>;
@@ -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;
@@ -330,12 +330,13 @@ 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" | "TICKETS" | "MI_EXPO";
333
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
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;
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;
@@ -401,19 +401,20 @@ declare const FindByTagsProfileResponseDto_base: import("@anatine/zod-nestjs").Z
401
401
  isExclusive: boolean;
402
402
  };
403
403
  }[];
404
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
404
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | 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" | "TICKETS" | "MI_EXPO";
411
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
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;
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;
@@ -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" | "TICKETS" | "MI_EXPO" | undefined;
484
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | 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
- 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>;
@@ -7,8 +7,8 @@ export declare const findWithActiveChatResponseSchema: 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 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;
@@ -172,12 +172,13 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
172
172
  id: string;
173
173
  username: string | null;
174
174
  password: string | null;
175
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
175
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
176
176
  phoneNumber: string;
177
177
  secondaryPhoneNumber: string | null;
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,25 +271,26 @@ 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;
278
278
  }[];
279
279
  inChat: boolean;
280
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
280
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
281
281
  }>, "many">;
282
282
  }, "strip", z.ZodTypeAny, {
283
283
  profiles: {
284
284
  id: string;
285
285
  username: string | null;
286
286
  password: string | null;
287
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
287
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
288
288
  phoneNumber: string;
289
289
  secondaryPhoneNumber: string | null;
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,13 +385,13 @@ 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;
392
392
  }[];
393
393
  inChat: boolean;
394
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
394
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
395
395
  }[];
396
396
  }>;
397
397
  declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -402,8 +402,8 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
402
402
  USER: "USER";
403
403
  ADMIN: "ADMIN";
404
404
  FORM: "FORM";
405
- TICKETS: "TICKETS";
406
405
  MI_EXPO: "MI_EXPO";
406
+ TICKETS: "TICKETS";
407
407
  }>>;
408
408
  firstTimeMiExpo: z.ZodBoolean;
409
409
  username: z.ZodNullable<z.ZodString>;
@@ -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;
@@ -563,12 +563,13 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
563
563
  id: string;
564
564
  username: string | null;
565
565
  password: string | null;
566
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
566
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
567
567
  phoneNumber: string;
568
568
  secondaryPhoneNumber: string | null;
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,25 +662,26 @@ 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;
669
669
  }[];
670
670
  inChat: boolean;
671
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
671
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
672
672
  }>, "many">;
673
673
  }, z.UnknownKeysParam, z.ZodTypeAny, {
674
674
  profiles: {
675
675
  id: string;
676
676
  username: string | null;
677
677
  password: string | null;
678
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
678
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
679
679
  phoneNumber: string;
680
680
  secondaryPhoneNumber: string | null;
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,13 +776,13 @@ 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;
783
783
  }[];
784
784
  inChat: boolean;
785
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
785
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
786
786
  }[];
787
787
  }>>;
788
788
  export declare class FindWithActiveChatResponseDto extends FindWithActiveChatResponseDto_base {
@@ -5,8 +5,8 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
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 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
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: string;
43
44
  updated_at: string;
44
45
  shortId: number;
@@ -48,7 +49,6 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
48
49
  gender: string | null;
49
50
  birthDate: string | 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 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
63
63
  fullName: string;
64
64
  profilePictureUrl: string | null;
65
65
  mail: string | null;
66
+ dni: string | null;
66
67
  created_at: string;
67
68
  updated_at: string;
68
69
  shortId: number;
@@ -72,13 +73,12 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
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: string | null;
81
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
82
82
  }>>;
83
83
  export declare class ProfileDto extends ProfileDto_base {
84
84
  }