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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) 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/dto/create-many-ticket.dto.d.ts +688 -0
  33. package/dist/src/ticket/dto/create-many-ticket.dto.js +57 -0
  34. package/dist/src/ticket/dto/create-ticket.dto.d.ts +1 -25
  35. package/dist/src/ticket/dto/create-ticket.dto.js +0 -2
  36. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
  37. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
  38. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +26 -46
  39. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +26 -46
  40. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +26 -46
  41. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
  42. package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
  43. package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
  44. package/dist/src/ticket/dto/ticket.dto.js +0 -2
  45. package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
  46. package/dist/types/prisma-schema/edge.js +5 -7
  47. package/dist/types/prisma-schema/index-browser.js +2 -4
  48. package/dist/types/prisma-schema/index.d.ts +3 -131
  49. package/dist/types/prisma-schema/index.js +5 -7
  50. package/dist/types/prisma-schema/package.json +1 -1
  51. package/dist/types/prisma-schema/schema.prisma +1 -4
  52. package/dist/types/prisma-schema/wasm.js +2 -4
  53. package/dist/types/schema.d.ts +116 -100
  54. package/package.json +2 -2
  55. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  56. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -7,8 +7,8 @@ export declare const findWithActiveChatResponseSchema: 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>;
@@ -172,13 +172,12 @@ 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" | "MI_EXPO" | "TICKETS";
175
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
182
181
  created_at: Date;
183
182
  updated_at: Date;
184
183
  shortId: number;
@@ -188,6 +187,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
188
187
  gender: string | null;
189
188
  birthDate: Date | null;
190
189
  instagram: string | null;
190
+ dni: string | null;
191
191
  alternativeNames: string[];
192
192
  birthLocationId: string | null;
193
193
  residenceLocationId: string | null;
@@ -232,7 +232,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
232
232
  fullName: string;
233
233
  profilePictureUrl: string | null;
234
234
  mail: string | null;
235
- dni: string | null;
236
235
  created_at: Date;
237
236
  updated_at: Date;
238
237
  shortId: number;
@@ -242,6 +241,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
242
241
  gender: string | null;
243
242
  birthDate: string | null;
244
243
  instagram: string | null;
244
+ dni: string | null;
245
245
  alternativeNames: string[];
246
246
  birthLocationId: string | null;
247
247
  residenceLocationId: string | null;
@@ -277,20 +277,19 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
277
277
  groupId: string;
278
278
  }[];
279
279
  inChat: boolean;
280
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
280
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
287
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
294
293
  created_at: Date;
295
294
  updated_at: Date;
296
295
  shortId: number;
@@ -300,6 +299,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
300
299
  gender: string | null;
301
300
  birthDate: Date | null;
302
301
  instagram: string | null;
302
+ dni: string | null;
303
303
  alternativeNames: string[];
304
304
  birthLocationId: string | null;
305
305
  residenceLocationId: string | null;
@@ -346,7 +346,6 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
346
346
  fullName: string;
347
347
  profilePictureUrl: string | null;
348
348
  mail: string | null;
349
- dni: string | null;
350
349
  created_at: Date;
351
350
  updated_at: Date;
352
351
  shortId: number;
@@ -356,6 +355,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
356
355
  gender: string | null;
357
356
  birthDate: string | null;
358
357
  instagram: string | null;
358
+ dni: string | null;
359
359
  alternativeNames: string[];
360
360
  birthLocationId: string | null;
361
361
  residenceLocationId: string | null;
@@ -391,7 +391,7 @@ export declare const findWithActiveChatResponseSchema: z.ZodObject<{
391
391
  groupId: string;
392
392
  }[];
393
393
  inChat: boolean;
394
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
394
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- MI_EXPO: "MI_EXPO";
406
405
  TICKETS: "TICKETS";
406
+ MI_EXPO: "MI_EXPO";
407
407
  }>>;
408
408
  firstTimeMiExpo: z.ZodBoolean;
409
409
  username: z.ZodNullable<z.ZodString>;
@@ -563,13 +563,12 @@ 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" | "MI_EXPO" | "TICKETS";
566
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
573
572
  created_at: string;
574
573
  updated_at: string;
575
574
  shortId: number;
@@ -579,6 +578,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
579
578
  gender: string | null;
580
579
  birthDate: string | null;
581
580
  instagram: string | null;
581
+ dni: string | null;
582
582
  alternativeNames: string[];
583
583
  birthLocationId: string | null;
584
584
  residenceLocationId: string | null;
@@ -623,7 +623,6 @@ 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;
627
626
  created_at: string;
628
627
  updated_at: string;
629
628
  shortId: number;
@@ -633,6 +632,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
633
632
  gender: string | null;
634
633
  birthDate: string | null;
635
634
  instagram: string | null;
635
+ dni: string | null;
636
636
  alternativeNames: string[];
637
637
  birthLocationId: string | null;
638
638
  residenceLocationId: string | null;
@@ -668,20 +668,19 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
668
668
  groupId: string;
669
669
  }[];
670
670
  inChat: boolean;
671
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
671
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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" | "MI_EXPO" | "TICKETS";
678
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
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;
685
684
  created_at: string;
686
685
  updated_at: string;
687
686
  shortId: number;
@@ -691,6 +690,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
691
690
  gender: string | null;
692
691
  birthDate: string | null;
693
692
  instagram: string | null;
693
+ dni: string | null;
694
694
  alternativeNames: string[];
695
695
  birthLocationId: string | null;
696
696
  residenceLocationId: string | null;
@@ -737,7 +737,6 @@ 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;
741
740
  created_at: string;
742
741
  updated_at: string;
743
742
  shortId: number;
@@ -747,6 +746,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
747
746
  gender: string | null;
748
747
  birthDate: string | null;
749
748
  instagram: string | null;
749
+ dni: string | null;
750
750
  alternativeNames: string[];
751
751
  birthLocationId: string | null;
752
752
  residenceLocationId: string | null;
@@ -782,7 +782,7 @@ declare const FindWithActiveChatResponseDto_base: import("@anatine/zod-nestjs").
782
782
  groupId: string;
783
783
  }[];
784
784
  inChat: boolean;
785
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
785
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | 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
- 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 @@ 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" | "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: string;
44
43
  updated_at: string;
45
44
  shortId: number;
@@ -49,6 +48,7 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
49
48
  gender: string | null;
50
49
  birthDate: string | 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 @@ 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;
67
66
  created_at: string;
68
67
  updated_at: string;
69
68
  shortId: number;
@@ -73,12 +72,13 @@ declare const ProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import
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: string | null;
81
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
82
82
  }>>;
83
83
  export declare class ProfileDto extends ProfileDto_base {
84
84
  }
@@ -7,11 +7,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
7
7
  fullName: z.ZodOptional<z.ZodString>;
8
8
  profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
- dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
10
  firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
12
11
  gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
12
  birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>>;
14
13
  instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
+ dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
15
  alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
16
16
  isInTrash: z.ZodOptional<z.ZodBoolean>;
17
17
  movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
@@ -69,11 +69,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
69
69
  fullName?: string | undefined;
70
70
  profilePictureUrl?: string | null | undefined;
71
71
  mail?: string | null | undefined;
72
- dni?: string | null | undefined;
73
72
  firstTimeMiExpo?: boolean | undefined;
74
73
  gender?: string | null | undefined;
75
74
  birthDate?: Date | null | undefined;
76
75
  instagram?: string | null | undefined;
76
+ dni?: string | null | undefined;
77
77
  alternativeNames?: string[] | undefined;
78
78
  isInTrash?: boolean | undefined;
79
79
  movedToTrashDate?: Date | null | undefined;
@@ -100,11 +100,11 @@ export declare const updateProfileSchema: z.ZodObject<z.objectUtil.extendShape<{
100
100
  fullName?: string | undefined;
101
101
  profilePictureUrl?: string | null | undefined;
102
102
  mail?: string | null | undefined;
103
- dni?: string | null | undefined;
104
103
  firstTimeMiExpo?: boolean | undefined;
105
104
  gender?: string | null | undefined;
106
105
  birthDate?: string | null | undefined;
107
106
  instagram?: string | null | undefined;
107
+ dni?: string | null | undefined;
108
108
  alternativeNames?: string[] | undefined;
109
109
  isInTrash?: boolean | undefined;
110
110
  movedToTrashDate?: Date | null | undefined;
@@ -132,11 +132,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
132
132
  fullName: z.ZodOptional<z.ZodString>;
133
133
  profilePictureUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
134
134
  mail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
135
- dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
136
135
  firstTimeMiExpo: z.ZodOptional<z.ZodBoolean>;
137
136
  gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
138
137
  birthDate: z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>>;
139
138
  instagram: z.ZodOptional<z.ZodNullable<z.ZodString>>;
139
+ dni: z.ZodOptional<z.ZodNullable<z.ZodString>>;
140
140
  alternativeNames: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
141
141
  isInTrash: z.ZodOptional<z.ZodBoolean>;
142
142
  movedToTrashDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -187,11 +187,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
187
187
  fullName?: string | undefined;
188
188
  profilePictureUrl?: string | null | undefined;
189
189
  mail?: string | null | undefined;
190
- dni?: string | null | undefined;
191
190
  firstTimeMiExpo?: boolean | undefined;
192
191
  gender?: string | null | undefined;
193
192
  birthDate?: string | null | undefined;
194
193
  instagram?: string | null | undefined;
194
+ dni?: string | null | undefined;
195
195
  alternativeNames?: string[] | undefined;
196
196
  isInTrash?: boolean | undefined;
197
197
  movedToTrashDate?: string | null | undefined;
@@ -218,11 +218,11 @@ declare const UpdateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
218
218
  fullName?: string | undefined;
219
219
  profilePictureUrl?: string | null | undefined;
220
220
  mail?: string | null | undefined;
221
- dni?: string | null | undefined;
222
221
  firstTimeMiExpo?: boolean | undefined;
223
222
  gender?: string | null | undefined;
224
223
  birthDate?: string | null | undefined;
225
224
  instagram?: string | null | undefined;
225
+ dni?: string | null | undefined;
226
226
  alternativeNames?: string[] | undefined;
227
227
  isInTrash?: boolean | undefined;
228
228
  movedToTrashDate?: string | null | undefined;
@@ -251,8 +251,8 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
251
251
  USER: "USER";
252
252
  ADMIN: "ADMIN";
253
253
  FORM: "FORM";
254
- MI_EXPO: "MI_EXPO";
255
254
  TICKETS: "TICKETS";
255
+ MI_EXPO: "MI_EXPO";
256
256
  }>>;
257
257
  firstTimeMiExpo: z.ZodBoolean;
258
258
  username: z.ZodNullable<z.ZodString>;
@@ -279,13 +279,12 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
279
279
  id: string;
280
280
  username: string | null;
281
281
  password: string | null;
282
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
282
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
283
283
  phoneNumber: string;
284
284
  secondaryPhoneNumber: string | null;
285
285
  fullName: string;
286
286
  profilePictureUrl: string | null;
287
287
  mail: string | null;
288
- dni: string | null;
289
288
  created_at: Date;
290
289
  updated_at: Date;
291
290
  shortId: number;
@@ -295,6 +294,7 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
295
294
  gender: string | null;
296
295
  birthDate: Date | null;
297
296
  instagram: string | null;
297
+ dni: string | null;
298
298
  alternativeNames: string[];
299
299
  birthLocationId: string | null;
300
300
  residenceLocationId: string | null;
@@ -309,7 +309,6 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
309
309
  fullName: string;
310
310
  profilePictureUrl: string | null;
311
311
  mail: string | null;
312
- dni: string | null;
313
312
  created_at: Date;
314
313
  updated_at: Date;
315
314
  shortId: number;
@@ -319,12 +318,13 @@ export declare const updateProfileResponseSchema: z.ZodObject<{
319
318
  gender: string | null;
320
319
  birthDate: string | null;
321
320
  instagram: string | null;
321
+ dni: string | null;
322
322
  alternativeNames: string[];
323
323
  birthLocationId: string | null;
324
324
  residenceLocationId: string | null;
325
325
  isInTrash: boolean;
326
326
  movedToTrashDate: Date | null;
327
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
327
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
328
328
  }>;
329
329
  declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
330
330
  id: z.ZodString;
@@ -333,8 +333,8 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
333
333
  USER: "USER";
334
334
  ADMIN: "ADMIN";
335
335
  FORM: "FORM";
336
- MI_EXPO: "MI_EXPO";
337
336
  TICKETS: "TICKETS";
337
+ MI_EXPO: "MI_EXPO";
338
338
  }>>;
339
339
  firstTimeMiExpo: z.ZodBoolean;
340
340
  username: z.ZodNullable<z.ZodString>;
@@ -361,13 +361,12 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
361
361
  id: string;
362
362
  username: string | null;
363
363
  password: string | null;
364
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
364
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
365
365
  phoneNumber: string;
366
366
  secondaryPhoneNumber: string | null;
367
367
  fullName: string;
368
368
  profilePictureUrl: string | null;
369
369
  mail: string | null;
370
- dni: string | null;
371
370
  created_at: string;
372
371
  updated_at: string;
373
372
  shortId: number;
@@ -377,6 +376,7 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
377
376
  gender: string | null;
378
377
  birthDate: string | null;
379
378
  instagram: string | null;
379
+ dni: string | null;
380
380
  alternativeNames: string[];
381
381
  birthLocationId: string | null;
382
382
  residenceLocationId: string | null;
@@ -391,7 +391,6 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
391
391
  fullName: string;
392
392
  profilePictureUrl: string | null;
393
393
  mail: string | null;
394
- dni: string | null;
395
394
  created_at: string;
396
395
  updated_at: string;
397
396
  shortId: number;
@@ -401,12 +400,13 @@ declare const UpdateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
401
400
  gender: string | null;
402
401
  birthDate: string | null;
403
402
  instagram: string | null;
403
+ dni: string | null;
404
404
  alternativeNames: string[];
405
405
  birthLocationId: string | null;
406
406
  residenceLocationId: string | null;
407
407
  isInTrash: boolean;
408
408
  movedToTrashDate: string | null;
409
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
409
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
410
410
  }>>;
411
411
  export declare class UpdateProfileResponseDto extends UpdateProfileResponseDto_base {
412
412
  }
@@ -6,8 +6,8 @@ export declare const profileSchema: z.ZodObject<{
6
6
  USER: "USER";
7
7
  ADMIN: "ADMIN";
8
8
  FORM: "FORM";
9
- MI_EXPO: "MI_EXPO";
10
9
  TICKETS: "TICKETS";
10
+ MI_EXPO: "MI_EXPO";
11
11
  }>>;
12
12
  firstTimeMiExpo: z.ZodBoolean;
13
13
  username: z.ZodNullable<z.ZodString>;
@@ -34,13 +34,12 @@ export declare const profileSchema: z.ZodObject<{
34
34
  id: string;
35
35
  username: string | null;
36
36
  password: string | null;
37
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
37
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
38
38
  phoneNumber: string;
39
39
  secondaryPhoneNumber: string | null;
40
40
  fullName: string;
41
41
  profilePictureUrl: string | null;
42
42
  mail: string | null;
43
- dni: string | null;
44
43
  created_at: Date;
45
44
  updated_at: Date;
46
45
  shortId: number;
@@ -50,6 +49,7 @@ export declare const profileSchema: z.ZodObject<{
50
49
  gender: string | null;
51
50
  birthDate: Date | null;
52
51
  instagram: string | null;
52
+ dni: string | null;
53
53
  alternativeNames: string[];
54
54
  birthLocationId: string | null;
55
55
  residenceLocationId: string | null;
@@ -64,7 +64,6 @@ export declare const profileSchema: z.ZodObject<{
64
64
  fullName: string;
65
65
  profilePictureUrl: string | null;
66
66
  mail: string | null;
67
- dni: string | null;
68
67
  created_at: Date;
69
68
  updated_at: Date;
70
69
  shortId: number;
@@ -74,10 +73,11 @@ export declare const profileSchema: z.ZodObject<{
74
73
  gender: string | null;
75
74
  birthDate: string | null;
76
75
  instagram: string | null;
76
+ dni: string | null;
77
77
  alternativeNames: string[];
78
78
  birthLocationId: string | null;
79
79
  residenceLocationId: string | null;
80
80
  isInTrash: boolean;
81
81
  movedToTrashDate: Date | null;
82
- role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
82
+ role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
83
83
  }>;