expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.3 → 0.36.0-EXPO-323-Enviar-mail-ticket.1
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/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 +131 -3
- 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 +4 -1
- package/dist/types/prisma-schema/wasm.js +4 -2
- package/dist/types/schema.d.ts +100 -116
- package/package.json +3 -2
- 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,10 +5,10 @@ export declare const updateMiExpoMeSchema: import("zod").ZodObject<{
|
|
5
5
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
6
6
|
fullName: import("zod").ZodString;
|
7
7
|
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
8
|
+
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
8
9
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
9
10
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodDate>>;
|
10
11
|
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
11
|
-
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
12
12
|
residence: import("zod").ZodObject<Pick<{
|
13
13
|
id: import("zod").ZodString;
|
14
14
|
latitude: import("zod").ZodNumber;
|
@@ -60,10 +60,10 @@ export declare const updateMiExpoMeSchema: import("zod").ZodObject<{
|
|
60
60
|
secondaryPhoneNumber: string | null;
|
61
61
|
fullName: string;
|
62
62
|
mail: string | null;
|
63
|
+
dni: string | null;
|
63
64
|
gender: string | null;
|
64
65
|
birthDate: Date | null;
|
65
66
|
instagram: string | null;
|
66
|
-
dni: string | null;
|
67
67
|
residence: {
|
68
68
|
latitude: number;
|
69
69
|
longitude: number;
|
@@ -85,10 +85,10 @@ export declare const updateMiExpoMeSchema: import("zod").ZodObject<{
|
|
85
85
|
secondaryPhoneNumber: string | null;
|
86
86
|
fullName: string;
|
87
87
|
mail: string | null;
|
88
|
+
dni: string | null;
|
88
89
|
gender: string | null;
|
89
90
|
birthDate: string | null;
|
90
91
|
instagram: string | null;
|
91
|
-
dni: string | null;
|
92
92
|
residence: {
|
93
93
|
latitude: number;
|
94
94
|
longitude: number;
|
@@ -111,10 +111,10 @@ declare const UpdateMiExpoMeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic
|
|
111
111
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
112
112
|
fullName: import("zod").ZodString;
|
113
113
|
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
114
|
+
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
114
115
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
115
116
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
116
117
|
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
117
|
-
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
118
118
|
residence: import("zod").ZodObject<{
|
119
119
|
latitude: import("zod").ZodNumber;
|
120
120
|
longitude: import("zod").ZodNumber;
|
@@ -160,10 +160,10 @@ declare const UpdateMiExpoMeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic
|
|
160
160
|
secondaryPhoneNumber: string | null;
|
161
161
|
fullName: string;
|
162
162
|
mail: string | null;
|
163
|
+
dni: string | null;
|
163
164
|
gender: string | null;
|
164
165
|
birthDate: string | null;
|
165
166
|
instagram: string | null;
|
166
|
-
dni: string | null;
|
167
167
|
residence: {
|
168
168
|
latitude: number;
|
169
169
|
longitude: number;
|
@@ -185,10 +185,10 @@ declare const UpdateMiExpoMeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic
|
|
185
185
|
secondaryPhoneNumber: string | null;
|
186
186
|
fullName: string;
|
187
187
|
mail: string | null;
|
188
|
+
dni: string | null;
|
188
189
|
gender: string | null;
|
189
190
|
birthDate: string | null;
|
190
191
|
instagram: string | null;
|
191
|
-
dni: string | null;
|
192
192
|
residence: {
|
193
193
|
latitude: number;
|
194
194
|
longitude: number;
|
@@ -213,8 +213,8 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
213
213
|
USER: "USER";
|
214
214
|
ADMIN: "ADMIN";
|
215
215
|
FORM: "FORM";
|
216
|
-
TICKETS: "TICKETS";
|
217
216
|
MI_EXPO: "MI_EXPO";
|
217
|
+
TICKETS: "TICKETS";
|
218
218
|
}>>;
|
219
219
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
220
220
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -240,12 +240,13 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
240
240
|
}, "password">, "strip", import("zod").ZodTypeAny, {
|
241
241
|
id: string;
|
242
242
|
username: string | null;
|
243
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
243
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
244
244
|
phoneNumber: string;
|
245
245
|
secondaryPhoneNumber: string | null;
|
246
246
|
fullName: string;
|
247
247
|
profilePictureUrl: string | null;
|
248
248
|
mail: string | null;
|
249
|
+
dni: string | null;
|
249
250
|
created_at: Date;
|
250
251
|
updated_at: Date;
|
251
252
|
shortId: number;
|
@@ -255,7 +256,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
255
256
|
gender: string | null;
|
256
257
|
birthDate: Date | null;
|
257
258
|
instagram: string | null;
|
258
|
-
dni: string | null;
|
259
259
|
alternativeNames: string[];
|
260
260
|
birthLocationId: string | null;
|
261
261
|
residenceLocationId: string | null;
|
@@ -269,6 +269,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
269
269
|
fullName: string;
|
270
270
|
profilePictureUrl: string | null;
|
271
271
|
mail: string | null;
|
272
|
+
dni: string | null;
|
272
273
|
created_at: Date;
|
273
274
|
updated_at: Date;
|
274
275
|
shortId: number;
|
@@ -278,13 +279,12 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
278
279
|
gender: string | null;
|
279
280
|
birthDate: string | null;
|
280
281
|
instagram: string | null;
|
281
|
-
dni: string | null;
|
282
282
|
alternativeNames: string[];
|
283
283
|
birthLocationId: string | null;
|
284
284
|
residenceLocationId: string | null;
|
285
285
|
isInTrash: boolean;
|
286
286
|
movedToTrashDate: Date | null;
|
287
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
287
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
288
288
|
}>;
|
289
289
|
declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
290
290
|
id: import("zod").ZodString;
|
@@ -293,14 +293,15 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
293
293
|
USER: "USER";
|
294
294
|
ADMIN: "ADMIN";
|
295
295
|
FORM: "FORM";
|
296
|
-
TICKETS: "TICKETS";
|
297
296
|
MI_EXPO: "MI_EXPO";
|
297
|
+
TICKETS: "TICKETS";
|
298
298
|
}>>;
|
299
299
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
300
300
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
301
301
|
fullName: import("zod").ZodString;
|
302
302
|
profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
303
303
|
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
304
|
+
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
304
305
|
created_at: import("zod").ZodString;
|
305
306
|
updated_at: import("zod").ZodString;
|
306
307
|
shortId: import("zod").ZodNumber;
|
@@ -310,7 +311,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
310
311
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
311
312
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
312
313
|
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
313
|
-
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
314
314
|
alternativeNames: import("zod").ZodArray<import("zod").ZodString, "many">;
|
315
315
|
birthLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
316
316
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -319,12 +319,13 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
319
319
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
320
320
|
id: string;
|
321
321
|
username: string | null;
|
322
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
322
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
323
323
|
phoneNumber: string;
|
324
324
|
secondaryPhoneNumber: string | null;
|
325
325
|
fullName: string;
|
326
326
|
profilePictureUrl: string | null;
|
327
327
|
mail: string | null;
|
328
|
+
dni: string | null;
|
328
329
|
created_at: string;
|
329
330
|
updated_at: string;
|
330
331
|
shortId: number;
|
@@ -334,7 +335,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
334
335
|
gender: string | null;
|
335
336
|
birthDate: string | null;
|
336
337
|
instagram: string | null;
|
337
|
-
dni: string | null;
|
338
338
|
alternativeNames: string[];
|
339
339
|
birthLocationId: string | null;
|
340
340
|
residenceLocationId: string | null;
|
@@ -348,6 +348,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
348
348
|
fullName: string;
|
349
349
|
profilePictureUrl: string | null;
|
350
350
|
mail: string | null;
|
351
|
+
dni: string | null;
|
351
352
|
created_at: string;
|
352
353
|
updated_at: string;
|
353
354
|
shortId: number;
|
@@ -357,13 +358,12 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
357
358
|
gender: string | null;
|
358
359
|
birthDate: string | null;
|
359
360
|
instagram: string | null;
|
360
|
-
dni: string | null;
|
361
361
|
alternativeNames: string[];
|
362
362
|
birthLocationId: string | null;
|
363
363
|
residenceLocationId: string | null;
|
364
364
|
isInTrash: boolean;
|
365
365
|
movedToTrashDate: string | null;
|
366
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
366
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
367
367
|
}>>;
|
368
368
|
export declare class UpdateMiExpoMeResponseDto extends UpdateMiExpoMeResponseDto_base {
|
369
369
|
}
|
@@ -30,8 +30,8 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
30
30
|
USER: "USER";
|
31
31
|
ADMIN: "ADMIN";
|
32
32
|
FORM: "FORM";
|
33
|
-
TICKETS: "TICKETS";
|
34
33
|
MI_EXPO: "MI_EXPO";
|
34
|
+
TICKETS: "TICKETS";
|
35
35
|
}>>;
|
36
36
|
firstTimeMiExpo: z.ZodBoolean;
|
37
37
|
username: z.ZodNullable<z.ZodString>;
|
@@ -99,12 +99,13 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
99
99
|
id: string;
|
100
100
|
username: string | null;
|
101
101
|
password: string | null;
|
102
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
102
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
103
103
|
phoneNumber: string;
|
104
104
|
secondaryPhoneNumber: string | null;
|
105
105
|
fullName: string;
|
106
106
|
profilePictureUrl: string | null;
|
107
107
|
mail: string | null;
|
108
|
+
dni: string | null;
|
108
109
|
created_at: Date;
|
109
110
|
updated_at: Date;
|
110
111
|
shortId: number;
|
@@ -114,7 +115,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
114
115
|
gender: string | null;
|
115
116
|
birthDate: Date | null;
|
116
117
|
instagram: string | null;
|
117
|
-
dni: string | null;
|
118
118
|
alternativeNames: string[];
|
119
119
|
birthLocationId: string | null;
|
120
120
|
residenceLocationId: string | null;
|
@@ -141,6 +141,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
141
141
|
fullName: string;
|
142
142
|
profilePictureUrl: string | null;
|
143
143
|
mail: string | null;
|
144
|
+
dni: string | null;
|
144
145
|
created_at: Date;
|
145
146
|
updated_at: Date;
|
146
147
|
shortId: number;
|
@@ -150,7 +151,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
150
151
|
gender: string | null;
|
151
152
|
birthDate: string | null;
|
152
153
|
instagram: string | null;
|
153
|
-
dni: string | null;
|
154
154
|
alternativeNames: string[];
|
155
155
|
birthLocationId: string | null;
|
156
156
|
residenceLocationId: string | null;
|
@@ -168,19 +168,20 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
168
168
|
country: string;
|
169
169
|
city: string;
|
170
170
|
} | null;
|
171
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
171
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
172
172
|
}>;
|
173
173
|
}, "strip", z.ZodTypeAny, {
|
174
174
|
profile: {
|
175
175
|
id: string;
|
176
176
|
username: string | null;
|
177
177
|
password: string | null;
|
178
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
178
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
179
179
|
phoneNumber: string;
|
180
180
|
secondaryPhoneNumber: string | null;
|
181
181
|
fullName: string;
|
182
182
|
profilePictureUrl: string | null;
|
183
183
|
mail: string | null;
|
184
|
+
dni: string | null;
|
184
185
|
created_at: Date;
|
185
186
|
updated_at: Date;
|
186
187
|
shortId: number;
|
@@ -190,7 +191,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
190
191
|
gender: string | null;
|
191
192
|
birthDate: Date | null;
|
192
193
|
instagram: string | null;
|
193
|
-
dni: string | null;
|
194
194
|
alternativeNames: string[];
|
195
195
|
birthLocationId: string | null;
|
196
196
|
residenceLocationId: string | null;
|
@@ -220,6 +220,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
220
220
|
fullName: string;
|
221
221
|
profilePictureUrl: string | null;
|
222
222
|
mail: string | null;
|
223
|
+
dni: string | null;
|
223
224
|
created_at: Date;
|
224
225
|
updated_at: Date;
|
225
226
|
shortId: number;
|
@@ -229,7 +230,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
229
230
|
gender: string | null;
|
230
231
|
birthDate: string | null;
|
231
232
|
instagram: string | null;
|
232
|
-
dni: string | null;
|
233
233
|
alternativeNames: string[];
|
234
234
|
birthLocationId: string | null;
|
235
235
|
residenceLocationId: string | null;
|
@@ -247,7 +247,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
247
247
|
country: string;
|
248
248
|
city: string;
|
249
249
|
} | null;
|
250
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
250
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
251
251
|
};
|
252
252
|
success: boolean;
|
253
253
|
}>;
|
@@ -260,8 +260,8 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
260
260
|
USER: "USER";
|
261
261
|
ADMIN: "ADMIN";
|
262
262
|
FORM: "FORM";
|
263
|
-
TICKETS: "TICKETS";
|
264
263
|
MI_EXPO: "MI_EXPO";
|
264
|
+
TICKETS: "TICKETS";
|
265
265
|
}>>;
|
266
266
|
firstTimeMiExpo: z.ZodBoolean;
|
267
267
|
username: z.ZodNullable<z.ZodString>;
|
@@ -320,12 +320,13 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
320
320
|
id: string;
|
321
321
|
username: string | null;
|
322
322
|
password: string | null;
|
323
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
323
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
324
324
|
phoneNumber: string;
|
325
325
|
secondaryPhoneNumber: string | null;
|
326
326
|
fullName: string;
|
327
327
|
profilePictureUrl: string | null;
|
328
328
|
mail: string | null;
|
329
|
+
dni: string | null;
|
329
330
|
created_at: string;
|
330
331
|
updated_at: string;
|
331
332
|
shortId: number;
|
@@ -335,7 +336,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
335
336
|
gender: string | null;
|
336
337
|
birthDate: string | null;
|
337
338
|
instagram: string | null;
|
338
|
-
dni: string | null;
|
339
339
|
alternativeNames: string[];
|
340
340
|
birthLocationId: string | null;
|
341
341
|
residenceLocationId: string | null;
|
@@ -362,6 +362,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
362
362
|
fullName: string;
|
363
363
|
profilePictureUrl: string | null;
|
364
364
|
mail: string | null;
|
365
|
+
dni: string | null;
|
365
366
|
created_at: string;
|
366
367
|
updated_at: string;
|
367
368
|
shortId: number;
|
@@ -371,7 +372,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
371
372
|
gender: string | null;
|
372
373
|
birthDate: string | null;
|
373
374
|
instagram: string | null;
|
374
|
-
dni: string | null;
|
375
375
|
alternativeNames: string[];
|
376
376
|
birthLocationId: string | null;
|
377
377
|
residenceLocationId: string | null;
|
@@ -389,19 +389,20 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
389
389
|
country: string;
|
390
390
|
city: string;
|
391
391
|
} | null;
|
392
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
392
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
393
393
|
}>;
|
394
394
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
395
395
|
profile: {
|
396
396
|
id: string;
|
397
397
|
username: string | null;
|
398
398
|
password: string | null;
|
399
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
399
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
|
400
400
|
phoneNumber: string;
|
401
401
|
secondaryPhoneNumber: string | null;
|
402
402
|
fullName: string;
|
403
403
|
profilePictureUrl: string | null;
|
404
404
|
mail: string | null;
|
405
|
+
dni: string | null;
|
405
406
|
created_at: string;
|
406
407
|
updated_at: string;
|
407
408
|
shortId: number;
|
@@ -411,7 +412,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
411
412
|
gender: string | null;
|
412
413
|
birthDate: string | null;
|
413
414
|
instagram: string | null;
|
414
|
-
dni: string | null;
|
415
415
|
alternativeNames: string[];
|
416
416
|
birthLocationId: string | null;
|
417
417
|
residenceLocationId: string | null;
|
@@ -441,6 +441,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
441
441
|
fullName: string;
|
442
442
|
profilePictureUrl: string | null;
|
443
443
|
mail: string | null;
|
444
|
+
dni: string | null;
|
444
445
|
created_at: string;
|
445
446
|
updated_at: string;
|
446
447
|
shortId: number;
|
@@ -450,7 +451,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
450
451
|
gender: string | null;
|
451
452
|
birthDate: string | null;
|
452
453
|
instagram: string | null;
|
453
|
-
dni: string | null;
|
454
454
|
alternativeNames: string[];
|
455
455
|
birthLocationId: string | null;
|
456
456
|
residenceLocationId: string | null;
|
@@ -468,7 +468,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
468
468
|
country: string;
|
469
469
|
city: string;
|
470
470
|
} | null;
|
471
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
471
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
472
472
|
};
|
473
473
|
success: boolean;
|
474
474
|
}>>;
|
@@ -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" | "
|
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" | "
|
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" | "
|
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" | "
|
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" | "
|
163
|
+
role?: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS" | undefined;
|
164
164
|
}>>;
|
165
165
|
export declare class DeleteProfileResponseDto extends DeleteProfileResponseDto_base {
|
166
166
|
}
|