expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.4 → 0.36.0-EXPO-323-Enviar-mail-ticket.3
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.
- package/dist/src/account/dto/account.dto.d.ts +6 -6
- package/dist/src/account/dto/create-account.dto.d.ts +12 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
- package/dist/src/account/dto/get-me.dto.d.ts +6 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
- package/dist/src/auth/dto/login.dto.d.ts +11 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
- package/dist/src/i18n/es.d.ts +19 -5
- package/dist/src/i18n/es.js +19 -5
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
- package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
- package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
- package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
- package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
- package/dist/src/schema/profile.schema.d.ts +5 -5
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
- package/dist/src/ticket/constants.d.ts +95 -14
- package/dist/src/ticket/constants.js +254 -222
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
- package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
- package/dist/src/ticket/dto/send-email.dto.js +15 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/ticket.dto.js +2 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
- package/dist/types/prisma-schema/edge.js +7 -5
- package/dist/types/prisma-schema/index-browser.js +4 -2
- package/dist/types/prisma-schema/index.d.ts +193 -65
- package/dist/types/prisma-schema/index.js +7 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +5 -1
- package/dist/types/prisma-schema/wasm.js +4 -2
- package/dist/types/schema.d.ts +100 -116
- package/package.json +6 -6
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -688
- package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -57
@@ -5,8 +5,8 @@ export declare const findByPhoneNumberResponseSchema: 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 findByPhoneNumberResponseSchema: import("zod").ZodObject<{
|
|
33
33
|
id: string;
|
34
34
|
username: string | null;
|
35
35
|
password: string | null;
|
36
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
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 findByPhoneNumberResponseSchema: 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 findByPhoneNumberResponseSchema: 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 findByPhoneNumberResponseSchema: 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" | "
|
81
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
82
82
|
}>;
|
83
83
|
declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
84
84
|
id: import("zod").ZodString;
|
@@ -87,8 +87,8 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
87
87
|
USER: "USER";
|
88
88
|
ADMIN: "ADMIN";
|
89
89
|
FORM: "FORM";
|
90
|
-
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 FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
115
115
|
id: string;
|
116
116
|
username: string | null;
|
117
117
|
password: string | null;
|
118
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
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 FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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 FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
145
145
|
fullName: string;
|
146
146
|
profilePictureUrl: string | null;
|
147
147
|
mail: string | null;
|
148
|
+
dni: string | null;
|
148
149
|
created_at: string;
|
149
150
|
updated_at: string;
|
150
151
|
shortId: number;
|
@@ -154,13 +155,12 @@ declare const FindByPhoneNumberResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
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" | "
|
163
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
164
164
|
}>>;
|
165
165
|
export declare class FindByPhoneNumberResponseDto extends FindByPhoneNumberResponseDto_base {
|
166
166
|
}
|
@@ -7,8 +7,8 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
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>;
|
@@ -63,12 +63,13 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
63
63
|
id: string;
|
64
64
|
username: string | null;
|
65
65
|
password: string | null;
|
66
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
66
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
67
67
|
phoneNumber: string;
|
68
68
|
secondaryPhoneNumber: string | null;
|
69
69
|
fullName: string;
|
70
70
|
profilePictureUrl: string | null;
|
71
71
|
mail: string | null;
|
72
|
+
dni: string | null;
|
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;
|
@@ -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;
|
@@ -124,19 +124,20 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
124
124
|
updated_at: Date;
|
125
125
|
groupId: string;
|
126
126
|
}[];
|
127
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
127
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
128
128
|
}>, "many">;
|
129
129
|
}, "strip", z.ZodTypeAny, {
|
130
130
|
profiles: {
|
131
131
|
id: string;
|
132
132
|
username: string | null;
|
133
133
|
password: string | null;
|
134
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
134
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
135
135
|
phoneNumber: string;
|
136
136
|
secondaryPhoneNumber: string | null;
|
137
137
|
fullName: string;
|
138
138
|
profilePictureUrl: string | null;
|
139
139
|
mail: string | null;
|
140
|
+
dni: string | null;
|
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;
|
@@ -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;
|
@@ -194,7 +194,7 @@ export declare const findByTagGroupsProfileResponseSchema: z.ZodObject<{
|
|
194
194
|
updated_at: Date;
|
195
195
|
groupId: string;
|
196
196
|
}[];
|
197
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
197
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
198
198
|
}[];
|
199
199
|
}>;
|
200
200
|
declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -205,8 +205,8 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
205
205
|
USER: "USER";
|
206
206
|
ADMIN: "ADMIN";
|
207
207
|
FORM: "FORM";
|
208
|
-
TICKETS: "TICKETS";
|
209
208
|
MI_EXPO: "MI_EXPO";
|
209
|
+
TICKETS: "TICKETS";
|
210
210
|
}>>;
|
211
211
|
firstTimeMiExpo: z.ZodBoolean;
|
212
212
|
username: z.ZodNullable<z.ZodString>;
|
@@ -260,12 +260,13 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
260
260
|
id: string;
|
261
261
|
username: string | null;
|
262
262
|
password: string | null;
|
263
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
263
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
264
264
|
phoneNumber: string;
|
265
265
|
secondaryPhoneNumber: string | null;
|
266
266
|
fullName: string;
|
267
267
|
profilePictureUrl: string | null;
|
268
268
|
mail: string | null;
|
269
|
+
dni: string | null;
|
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;
|
@@ -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;
|
@@ -321,19 +321,20 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
321
321
|
updated_at: string;
|
322
322
|
groupId: string;
|
323
323
|
}[];
|
324
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
324
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
325
325
|
}>, "many">;
|
326
326
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
327
327
|
profiles: {
|
328
328
|
id: string;
|
329
329
|
username: string | null;
|
330
330
|
password: string | null;
|
331
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
331
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
332
332
|
phoneNumber: string;
|
333
333
|
secondaryPhoneNumber: string | null;
|
334
334
|
fullName: string;
|
335
335
|
profilePictureUrl: string | null;
|
336
336
|
mail: string | null;
|
337
|
+
dni: string | null;
|
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;
|
@@ -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;
|
@@ -391,7 +391,7 @@ declare const FindByTagGroupsProfileResponseDto_base: import("@anatine/zod-nestj
|
|
391
391
|
updated_at: string;
|
392
392
|
groupId: string;
|
393
393
|
}[];
|
394
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
394
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
395
395
|
}[];
|
396
396
|
}>>;
|
397
397
|
export declare class FindByTagGroupsProfileResponseDto extends FindByTagGroupsProfileResponseDto_base {
|
@@ -7,8 +7,8 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
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>;
|
@@ -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" | "
|
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;
|
@@ -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;
|
@@ -161,19 +161,20 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
161
161
|
isExclusive: boolean;
|
162
162
|
};
|
163
163
|
}[];
|
164
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
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" | "
|
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;
|
@@ -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;
|
@@ -241,7 +241,7 @@ export declare const findByTagsProfileResponseSchema: z.ZodObject<{
|
|
241
241
|
isExclusive: boolean;
|
242
242
|
};
|
243
243
|
}[];
|
244
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
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>;
|
@@ -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" | "
|
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;
|
@@ -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;
|
@@ -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" | "
|
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" | "
|
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;
|
@@ -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;
|
@@ -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" | "
|
484
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
485
485
|
}[];
|
486
486
|
}>>;
|
487
487
|
export declare class FindByTagsProfileResponseDto extends FindByTagsProfileResponseDto_base {
|