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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +9 -9
  4. package/dist/src/account/dto/get-me.dto.d.ts +22 -22
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +14 -14
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/event/dto/create-event.dto.d.ts +8 -8
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
  10. package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
  11. package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
  12. package/dist/src/event/dto/get-by-id-event.dto.d.ts +60 -40
  13. package/dist/src/event/dto/update-event.dto.d.ts +24 -24
  14. package/dist/src/i18n/es.d.ts +25 -5
  15. package/dist/src/i18n/es.js +25 -5
  16. package/dist/src/i18n/es.js.map +1 -1
  17. package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
  18. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
  19. package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
  20. package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
  21. package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
  22. package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
  23. package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
  24. package/dist/src/profile/dto/find-all-profile.dto.d.ts +30 -30
  25. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +48 -48
  26. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +19 -19
  27. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
  28. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +30 -30
  29. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +30 -30
  30. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  31. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +30 -30
  32. package/dist/src/profile/dto/profile.dto.d.ts +5 -5
  33. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
  34. package/dist/src/schema/profile.schema.d.ts +5 -5
  35. package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
  36. package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
  37. package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
  38. package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
  39. package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
  40. package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
  41. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
  42. package/dist/src/tag/dto/tag.dto.d.ts +4 -4
  43. package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
  44. package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
  45. package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
  46. package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
  47. package/dist/src/ticket/constants.d.ts +12 -14
  48. package/dist/src/ticket/constants.js +355 -267
  49. package/dist/src/ticket/dto/create-ticket.dto.d.ts +28 -9
  50. package/dist/src/ticket/dto/create-ticket.dto.js +1 -0
  51. package/dist/src/ticket/dto/delete-ticket.dto.d.ts +16 -4
  52. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +28 -8
  53. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +54 -34
  54. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +54 -34
  55. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +54 -34
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +28 -8
  57. package/dist/src/ticket/dto/find-ticket.dto.d.ts +16 -4
  58. package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
  59. package/dist/src/ticket/dto/send-email.dto.js +15 -0
  60. package/dist/src/ticket/dto/ticket.dto.d.ts +16 -4
  61. package/dist/src/ticket/dto/ticket.dto.js +2 -0
  62. package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -8
  63. package/dist/types/prisma-schema/edge.js +7 -5
  64. package/dist/types/prisma-schema/index-browser.js +4 -2
  65. package/dist/types/prisma-schema/index.d.ts +193 -65
  66. package/dist/types/prisma-schema/index.js +7 -5
  67. package/dist/types/prisma-schema/package.json +1 -1
  68. package/dist/types/prisma-schema/schema.prisma +5 -1
  69. package/dist/types/prisma-schema/wasm.js +4 -2
  70. package/dist/types/schema.d.ts +99 -118
  71. package/package.json +8 -8
  72. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -728
  73. package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -58
@@ -7,8 +7,8 @@ export declare const createProfileSchema: 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>;
@@ -31,7 +31,7 @@ export declare const createProfileSchema: z.ZodObject<{
31
31
  movedToTrashDate: z.ZodNullable<z.ZodDate>;
32
32
  created_at: z.ZodDate;
33
33
  updated_at: z.ZodDate;
34
- }, "username" | "password" | "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "gender" | "birthDate" | "instagram" | "dni" | "alternativeNames">, {
34
+ }, "username" | "password" | "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "dni" | "gender" | "birthDate" | "instagram" | "alternativeNames">, {
35
35
  comments: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
36
36
  id: z.ZodString;
37
37
  content: z.ZodString;
@@ -103,10 +103,10 @@ export declare const createProfileSchema: z.ZodObject<{
103
103
  fullName: string;
104
104
  profilePictureUrl: string | null;
105
105
  mail: string | null;
106
+ dni: string | null;
106
107
  gender: string | null;
107
108
  birthDate: Date | null;
108
109
  instagram: string | null;
109
- dni: string | null;
110
110
  alternativeNames: string[];
111
111
  comments?: {
112
112
  content: string;
@@ -135,10 +135,10 @@ export declare const createProfileSchema: z.ZodObject<{
135
135
  fullName: string;
136
136
  profilePictureUrl: string | null;
137
137
  mail: string | null;
138
+ dni: string | null;
138
139
  gender: string | null;
139
140
  birthDate: string | null;
140
141
  instagram: string | null;
141
- dni: string | null;
142
142
  alternativeNames: string[];
143
143
  comments?: {
144
144
  content: string;
@@ -170,10 +170,10 @@ export declare const createProfileSchema: z.ZodObject<{
170
170
  fullName: string;
171
171
  profilePictureUrl: string | null;
172
172
  mail: string | null;
173
+ dni: string | null;
173
174
  gender: string | null;
174
175
  birthDate: Date | null;
175
176
  instagram: string | null;
176
- dni: string | null;
177
177
  alternativeNames: string[];
178
178
  comments?: {
179
179
  content: string;
@@ -205,10 +205,10 @@ export declare const createProfileSchema: z.ZodObject<{
205
205
  fullName: string;
206
206
  profilePictureUrl: string | null;
207
207
  mail: string | null;
208
+ dni: string | null;
208
209
  gender: string | null;
209
210
  birthDate: string | null;
210
211
  instagram: string | null;
211
- dni: string | null;
212
212
  alternativeNames: string[];
213
213
  comments?: {
214
214
  content: string;
@@ -241,10 +241,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
241
241
  fullName: z.ZodString;
242
242
  profilePictureUrl: z.ZodNullable<z.ZodString>;
243
243
  mail: z.ZodNullable<z.ZodString>;
244
+ dni: z.ZodNullable<z.ZodString>;
244
245
  gender: z.ZodNullable<z.ZodString>;
245
246
  birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
246
247
  instagram: z.ZodNullable<z.ZodString>;
247
- dni: z.ZodNullable<z.ZodString>;
248
248
  alternativeNames: z.ZodArray<z.ZodString, "many">;
249
249
  comments: z.ZodOptional<z.ZodArray<z.ZodObject<{
250
250
  content: z.ZodString;
@@ -303,10 +303,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
303
303
  fullName: string;
304
304
  profilePictureUrl: string | null;
305
305
  mail: string | null;
306
+ dni: string | null;
306
307
  gender: string | null;
307
308
  birthDate: string | null;
308
309
  instagram: string | null;
309
- dni: string | null;
310
310
  alternativeNames: string[];
311
311
  comments?: {
312
312
  content: string;
@@ -335,10 +335,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
335
335
  fullName: string;
336
336
  profilePictureUrl: string | null;
337
337
  mail: string | null;
338
+ dni: string | null;
338
339
  gender: string | null;
339
340
  birthDate: string | null;
340
341
  instagram: string | null;
341
- dni: string | null;
342
342
  alternativeNames: string[];
343
343
  comments?: {
344
344
  content: string;
@@ -370,10 +370,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
370
370
  fullName: string;
371
371
  profilePictureUrl: string | null;
372
372
  mail: string | null;
373
+ dni: string | null;
373
374
  gender: string | null;
374
375
  birthDate: string | null;
375
376
  instagram: string | null;
376
- dni: string | null;
377
377
  alternativeNames: string[];
378
378
  comments?: {
379
379
  content: string;
@@ -405,10 +405,10 @@ declare const CreateProfileDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
405
405
  fullName: string;
406
406
  profilePictureUrl: string | null;
407
407
  mail: string | null;
408
+ dni: string | null;
408
409
  gender: string | null;
409
410
  birthDate: string | null;
410
411
  instagram: string | null;
411
- dni: string | null;
412
412
  alternativeNames: string[];
413
413
  comments?: {
414
414
  content: string;
@@ -442,8 +442,8 @@ declare const similarProfileSchema: z.ZodObject<{
442
442
  USER: "USER";
443
443
  ADMIN: "ADMIN";
444
444
  FORM: "FORM";
445
- TICKETS: "TICKETS";
446
445
  MI_EXPO: "MI_EXPO";
446
+ TICKETS: "TICKETS";
447
447
  }>>;
448
448
  firstTimeMiExpo: z.ZodBoolean;
449
449
  username: z.ZodNullable<z.ZodString>;
@@ -504,8 +504,8 @@ export declare const createProfileResponseSchema: z.ZodObject<{
504
504
  USER: "USER";
505
505
  ADMIN: "ADMIN";
506
506
  FORM: "FORM";
507
- TICKETS: "TICKETS";
508
507
  MI_EXPO: "MI_EXPO";
508
+ TICKETS: "TICKETS";
509
509
  }>>;
510
510
  firstTimeMiExpo: z.ZodBoolean;
511
511
  username: z.ZodNullable<z.ZodString>;
@@ -634,8 +634,8 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
634
634
  USER: "USER";
635
635
  ADMIN: "ADMIN";
636
636
  FORM: "FORM";
637
- TICKETS: "TICKETS";
638
637
  MI_EXPO: "MI_EXPO";
638
+ TICKETS: "TICKETS";
639
639
  }>>;
640
640
  firstTimeMiExpo: z.ZodBoolean;
641
641
  username: z.ZodNullable<z.ZodString>;
@@ -5,8 +5,8 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
5
5
  USER: "USER";
6
6
  ADMIN: "ADMIN";
7
7
  FORM: "FORM";
8
- TICKETS: "TICKETS";
9
8
  MI_EXPO: "MI_EXPO";
9
+ TICKETS: "TICKETS";
10
10
  }>>;
11
11
  firstTimeMiExpo: import("zod").ZodBoolean;
12
12
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -33,12 +33,13 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
33
33
  id: string;
34
34
  username: string | null;
35
35
  password: string | null;
36
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
36
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
37
37
  phoneNumber: string;
38
38
  secondaryPhoneNumber: string | null;
39
39
  fullName: string;
40
40
  profilePictureUrl: string | null;
41
41
  mail: string | null;
42
+ dni: string | null;
42
43
  created_at: Date;
43
44
  updated_at: Date;
44
45
  shortId: number;
@@ -48,7 +49,6 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
48
49
  gender: string | null;
49
50
  birthDate: Date | null;
50
51
  instagram: string | null;
51
- dni: string | null;
52
52
  alternativeNames: string[];
53
53
  birthLocationId: string | null;
54
54
  residenceLocationId: string | null;
@@ -63,6 +63,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
63
63
  fullName: string;
64
64
  profilePictureUrl: string | null;
65
65
  mail: string | null;
66
+ dni: string | null;
66
67
  created_at: Date;
67
68
  updated_at: Date;
68
69
  shortId: number;
@@ -72,13 +73,12 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
72
73
  gender: string | null;
73
74
  birthDate: string | null;
74
75
  instagram: string | null;
75
- dni: string | null;
76
76
  alternativeNames: string[];
77
77
  birthLocationId: string | null;
78
78
  residenceLocationId: string | null;
79
79
  isInTrash: boolean;
80
80
  movedToTrashDate: Date | null;
81
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
81
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
82
82
  }>;
83
83
  declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
84
84
  id: import("zod").ZodString;
@@ -87,8 +87,8 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
87
87
  USER: "USER";
88
88
  ADMIN: "ADMIN";
89
89
  FORM: "FORM";
90
- TICKETS: "TICKETS";
91
90
  MI_EXPO: "MI_EXPO";
91
+ TICKETS: "TICKETS";
92
92
  }>>;
93
93
  firstTimeMiExpo: import("zod").ZodBoolean;
94
94
  username: import("zod").ZodNullable<import("zod").ZodString>;
@@ -115,12 +115,13 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
115
115
  id: string;
116
116
  username: string | null;
117
117
  password: string | null;
118
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
118
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
119
119
  phoneNumber: string;
120
120
  secondaryPhoneNumber: string | null;
121
121
  fullName: string;
122
122
  profilePictureUrl: string | null;
123
123
  mail: string | null;
124
+ dni: string | null;
124
125
  created_at: string;
125
126
  updated_at: string;
126
127
  shortId: number;
@@ -130,7 +131,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
130
131
  gender: string | null;
131
132
  birthDate: string | null;
132
133
  instagram: string | null;
133
- dni: string | null;
134
134
  alternativeNames: string[];
135
135
  birthLocationId: string | null;
136
136
  residenceLocationId: string | null;
@@ -145,6 +145,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
145
145
  fullName: string;
146
146
  profilePictureUrl: string | null;
147
147
  mail: string | null;
148
+ dni: string | null;
148
149
  created_at: string;
149
150
  updated_at: string;
150
151
  shortId: number;
@@ -154,13 +155,12 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
154
155
  gender: string | null;
155
156
  birthDate: string | null;
156
157
  instagram: string | null;
157
- dni: string | null;
158
158
  alternativeNames: string[];
159
159
  birthLocationId: string | null;
160
160
  residenceLocationId: string | null;
161
161
  isInTrash: boolean;
162
162
  movedToTrashDate: string | null;
163
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
163
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
164
164
  }>>;
165
165
  export declare class DeleteProfileResponseDto extends DeleteProfileResponseDto_base {
166
166
  }
@@ -7,8 +7,8 @@ export declare const findAllProfileResponseSchema: 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>;
@@ -62,7 +62,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
62
62
  }>, "strip", z.ZodTypeAny, {
63
63
  id: string;
64
64
  name: string;
65
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
65
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
66
66
  created_at: Date;
67
67
  updated_at: Date;
68
68
  groupId: string;
@@ -73,7 +73,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
73
73
  }, {
74
74
  id: string;
75
75
  name: string;
76
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
76
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
77
77
  created_at: Date;
78
78
  updated_at: Date;
79
79
  groupId: string;
@@ -86,12 +86,13 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
86
86
  id: string;
87
87
  username: string | null;
88
88
  password: string | null;
89
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
89
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
90
90
  phoneNumber: string;
91
91
  secondaryPhoneNumber: string | null;
92
92
  fullName: string;
93
93
  profilePictureUrl: string | null;
94
94
  mail: string | null;
95
+ dni: string | null;
95
96
  created_at: Date;
96
97
  updated_at: Date;
97
98
  shortId: number;
@@ -101,7 +102,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
101
102
  gender: string | null;
102
103
  birthDate: Date | null;
103
104
  instagram: string | null;
104
- dni: string | null;
105
105
  alternativeNames: string[];
106
106
  birthLocationId: string | null;
107
107
  residenceLocationId: string | null;
@@ -110,7 +110,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
110
110
  tags: {
111
111
  id: string;
112
112
  name: string;
113
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
113
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
114
114
  created_at: Date;
115
115
  updated_at: Date;
116
116
  groupId: string;
@@ -128,6 +128,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
128
128
  fullName: string;
129
129
  profilePictureUrl: string | null;
130
130
  mail: string | null;
131
+ dni: string | null;
131
132
  created_at: Date;
132
133
  updated_at: Date;
133
134
  shortId: number;
@@ -137,7 +138,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
137
138
  gender: string | null;
138
139
  birthDate: string | null;
139
140
  instagram: string | null;
140
- dni: string | null;
141
141
  alternativeNames: string[];
142
142
  birthLocationId: string | null;
143
143
  residenceLocationId: string | null;
@@ -146,7 +146,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
146
146
  tags: {
147
147
  id: string;
148
148
  name: string;
149
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
149
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
150
150
  created_at: Date;
151
151
  updated_at: Date;
152
152
  groupId: string;
@@ -155,19 +155,20 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
155
155
  isExclusive: boolean;
156
156
  };
157
157
  }[];
158
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
158
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
159
159
  }>, "many">;
160
160
  }, "strip", z.ZodTypeAny, {
161
161
  profiles: {
162
162
  id: string;
163
163
  username: string | null;
164
164
  password: string | null;
165
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
165
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
166
166
  phoneNumber: string;
167
167
  secondaryPhoneNumber: string | null;
168
168
  fullName: string;
169
169
  profilePictureUrl: string | null;
170
170
  mail: string | null;
171
+ dni: string | null;
171
172
  created_at: Date;
172
173
  updated_at: Date;
173
174
  shortId: number;
@@ -177,7 +178,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
177
178
  gender: string | null;
178
179
  birthDate: Date | null;
179
180
  instagram: string | null;
180
- dni: string | null;
181
181
  alternativeNames: string[];
182
182
  birthLocationId: string | null;
183
183
  residenceLocationId: string | null;
@@ -186,7 +186,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
186
186
  tags: {
187
187
  id: string;
188
188
  name: string;
189
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
189
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
190
190
  created_at: Date;
191
191
  updated_at: Date;
192
192
  groupId: string;
@@ -206,6 +206,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
206
206
  fullName: string;
207
207
  profilePictureUrl: string | null;
208
208
  mail: string | null;
209
+ dni: string | null;
209
210
  created_at: Date;
210
211
  updated_at: Date;
211
212
  shortId: number;
@@ -215,7 +216,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
215
216
  gender: string | null;
216
217
  birthDate: string | null;
217
218
  instagram: string | null;
218
- dni: string | null;
219
219
  alternativeNames: string[];
220
220
  birthLocationId: string | null;
221
221
  residenceLocationId: string | null;
@@ -224,7 +224,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
224
224
  tags: {
225
225
  id: string;
226
226
  name: string;
227
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
227
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
228
228
  created_at: Date;
229
229
  updated_at: Date;
230
230
  groupId: string;
@@ -233,7 +233,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
233
233
  isExclusive: boolean;
234
234
  };
235
235
  }[];
236
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
236
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
237
237
  }[];
238
238
  }>;
239
239
  declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
@@ -244,8 +244,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
244
244
  USER: "USER";
245
245
  ADMIN: "ADMIN";
246
246
  FORM: "FORM";
247
- TICKETS: "TICKETS";
248
247
  MI_EXPO: "MI_EXPO";
248
+ TICKETS: "TICKETS";
249
249
  }>>;
250
250
  firstTimeMiExpo: z.ZodBoolean;
251
251
  username: z.ZodNullable<z.ZodString>;
@@ -293,7 +293,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
293
293
  }, z.UnknownKeysParam, z.ZodTypeAny, {
294
294
  id: string;
295
295
  name: string;
296
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
296
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
297
297
  created_at: string;
298
298
  updated_at: string;
299
299
  groupId: string;
@@ -304,7 +304,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
304
304
  }, {
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;
@@ -317,12 +317,13 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
317
317
  id: string;
318
318
  username: string | null;
319
319
  password: string | null;
320
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
320
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
321
321
  phoneNumber: string;
322
322
  secondaryPhoneNumber: string | null;
323
323
  fullName: string;
324
324
  profilePictureUrl: string | null;
325
325
  mail: string | null;
326
+ dni: string | null;
326
327
  created_at: string;
327
328
  updated_at: string;
328
329
  shortId: number;
@@ -332,7 +333,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
332
333
  gender: string | null;
333
334
  birthDate: string | null;
334
335
  instagram: string | null;
335
- dni: string | null;
336
336
  alternativeNames: string[];
337
337
  birthLocationId: string | null;
338
338
  residenceLocationId: string | null;
@@ -341,7 +341,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
341
341
  tags: {
342
342
  id: string;
343
343
  name: string;
344
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
344
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
345
345
  created_at: string;
346
346
  updated_at: string;
347
347
  groupId: string;
@@ -359,6 +359,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
359
359
  fullName: string;
360
360
  profilePictureUrl: string | null;
361
361
  mail: string | null;
362
+ dni: string | null;
362
363
  created_at: string;
363
364
  updated_at: string;
364
365
  shortId: number;
@@ -368,7 +369,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
368
369
  gender: string | null;
369
370
  birthDate: string | null;
370
371
  instagram: string | null;
371
- dni: string | null;
372
372
  alternativeNames: string[];
373
373
  birthLocationId: string | null;
374
374
  residenceLocationId: string | null;
@@ -377,7 +377,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
377
377
  tags: {
378
378
  id: string;
379
379
  name: string;
380
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
380
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
381
381
  created_at: string;
382
382
  updated_at: string;
383
383
  groupId: string;
@@ -386,19 +386,20 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
386
386
  isExclusive: boolean;
387
387
  };
388
388
  }[];
389
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
389
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
390
390
  }>, "many">;
391
391
  }, z.UnknownKeysParam, z.ZodTypeAny, {
392
392
  profiles: {
393
393
  id: string;
394
394
  username: string | null;
395
395
  password: string | null;
396
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
396
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
397
397
  phoneNumber: string;
398
398
  secondaryPhoneNumber: string | null;
399
399
  fullName: string;
400
400
  profilePictureUrl: string | null;
401
401
  mail: string | null;
402
+ dni: string | null;
402
403
  created_at: string;
403
404
  updated_at: string;
404
405
  shortId: number;
@@ -408,7 +409,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
408
409
  gender: string | null;
409
410
  birthDate: string | null;
410
411
  instagram: string | null;
411
- dni: string | null;
412
412
  alternativeNames: string[];
413
413
  birthLocationId: string | null;
414
414
  residenceLocationId: string | null;
@@ -417,7 +417,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
417
417
  tags: {
418
418
  id: string;
419
419
  name: string;
420
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
420
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
421
421
  created_at: string;
422
422
  updated_at: string;
423
423
  groupId: string;
@@ -437,6 +437,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
437
437
  fullName: string;
438
438
  profilePictureUrl: string | null;
439
439
  mail: string | null;
440
+ dni: string | null;
440
441
  created_at: string;
441
442
  updated_at: string;
442
443
  shortId: number;
@@ -446,7 +447,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
446
447
  gender: string | null;
447
448
  birthDate: string | null;
448
449
  instagram: string | null;
449
- dni: string | null;
450
450
  alternativeNames: string[];
451
451
  birthLocationId: string | null;
452
452
  residenceLocationId: string | null;
@@ -455,7 +455,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
455
455
  tags: {
456
456
  id: string;
457
457
  name: string;
458
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
458
+ type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
459
459
  created_at: string;
460
460
  updated_at: string;
461
461
  groupId: string;
@@ -464,7 +464,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
464
464
  isExclusive: boolean;
465
465
  };
466
466
  }[];
467
- role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
467
+ role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
468
468
  }[];
469
469
  }>>;
470
470
  export declare class FindAllProfileResponseDto extends FindAllProfileResponseDto_base {