expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.7 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.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/get-global-filter.dto.d.ts +8 -8
- package/dist/src/account/dto/get-me.dto.d.ts +16 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -78
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +31 -22
- package/dist/src/i18n/es.js +31 -22
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +5 -5
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/login.dto.d.ts +9 -9
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +11 -11
- package/dist/src/otp/dto/verify-otp.dto.d.ts +8 -8
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -32
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +13 -13
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -20
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/schema/profile.schema.d.ts +2 -2
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +14 -12
- package/dist/src/ticket/constants.js +248 -355
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +704 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +58 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -56
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +30 -58
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -46
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -30
- package/dist/src/ticket/dto/ticket.dto.js +2 -5
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +20 -48
- package/dist/src/ticket/dto/update-ticket.dto.js +1 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +346 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +8 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +11 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
- package/dist/src/ticket-group/exports.d.ts +5 -0
- package/dist/src/ticket-group/exports.js +22 -0
- package/dist/types/prisma-schema/edge.js +15 -7
- package/dist/types/prisma-schema/index-browser.js +12 -4
- package/dist/types/prisma-schema/index.d.ts +2216 -366
- package/dist/types/prisma-schema/index.js +15 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +22 -7
- package/dist/types/prisma-schema/wasm.js +12 -4
- package/dist/types/schema.d.ts +308 -40
- package/package.json +6 -6
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -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>;
|
9
8
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
10
9
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodDate>>;
|
11
10
|
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;
|
64
63
|
gender: string | null;
|
65
64
|
birthDate: Date | null;
|
66
65
|
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;
|
89
88
|
gender: string | null;
|
90
89
|
birthDate: string | null;
|
91
90
|
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>;
|
115
114
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
116
115
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
117
116
|
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;
|
164
163
|
gender: string | null;
|
165
164
|
birthDate: string | null;
|
166
165
|
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;
|
189
188
|
gender: string | null;
|
190
189
|
birthDate: string | null;
|
191
190
|
instagram: string | null;
|
191
|
+
dni: string | null;
|
192
192
|
residence: {
|
193
193
|
latitude: number;
|
194
194
|
longitude: number;
|
@@ -246,7 +246,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
246
246
|
fullName: string;
|
247
247
|
profilePictureUrl: string | null;
|
248
248
|
mail: string | null;
|
249
|
-
dni: string | null;
|
250
249
|
created_at: Date;
|
251
250
|
updated_at: Date;
|
252
251
|
shortId: number;
|
@@ -256,6 +255,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
256
255
|
gender: string | null;
|
257
256
|
birthDate: Date | null;
|
258
257
|
instagram: string | null;
|
258
|
+
dni: string | null;
|
259
259
|
alternativeNames: string[];
|
260
260
|
birthLocationId: string | null;
|
261
261
|
residenceLocationId: string | null;
|
@@ -269,7 +269,6 @@ 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;
|
273
272
|
created_at: Date;
|
274
273
|
updated_at: Date;
|
275
274
|
shortId: number;
|
@@ -279,6 +278,7 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
279
278
|
gender: string | null;
|
280
279
|
birthDate: string | null;
|
281
280
|
instagram: string | null;
|
281
|
+
dni: string | null;
|
282
282
|
alternativeNames: string[];
|
283
283
|
birthLocationId: string | null;
|
284
284
|
residenceLocationId: string | null;
|
@@ -301,7 +301,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
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>;
|
305
304
|
created_at: import("zod").ZodString;
|
306
305
|
updated_at: import("zod").ZodString;
|
307
306
|
shortId: import("zod").ZodNumber;
|
@@ -311,6 +310,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
311
310
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
312
311
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
313
312
|
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>;
|
@@ -325,7 +325,6 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
325
325
|
fullName: string;
|
326
326
|
profilePictureUrl: string | null;
|
327
327
|
mail: string | null;
|
328
|
-
dni: string | null;
|
329
328
|
created_at: string;
|
330
329
|
updated_at: string;
|
331
330
|
shortId: number;
|
@@ -335,6 +334,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
335
334
|
gender: string | null;
|
336
335
|
birthDate: string | null;
|
337
336
|
instagram: string | null;
|
337
|
+
dni: string | null;
|
338
338
|
alternativeNames: string[];
|
339
339
|
birthLocationId: string | null;
|
340
340
|
residenceLocationId: string | null;
|
@@ -348,7 +348,6 @@ 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;
|
352
351
|
created_at: string;
|
353
352
|
updated_at: string;
|
354
353
|
shortId: number;
|
@@ -358,6 +357,7 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
358
357
|
gender: string | null;
|
359
358
|
birthDate: string | null;
|
360
359
|
instagram: string | null;
|
360
|
+
dni: string | null;
|
361
361
|
alternativeNames: string[];
|
362
362
|
birthLocationId: string | null;
|
363
363
|
residenceLocationId: string | null;
|
@@ -105,7 +105,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
105
105
|
fullName: string;
|
106
106
|
profilePictureUrl: string | null;
|
107
107
|
mail: string | null;
|
108
|
-
dni: string | null;
|
109
108
|
created_at: Date;
|
110
109
|
updated_at: Date;
|
111
110
|
shortId: number;
|
@@ -115,6 +114,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
115
114
|
gender: string | null;
|
116
115
|
birthDate: Date | null;
|
117
116
|
instagram: string | null;
|
117
|
+
dni: string | null;
|
118
118
|
alternativeNames: string[];
|
119
119
|
birthLocationId: string | null;
|
120
120
|
residenceLocationId: string | null;
|
@@ -141,7 +141,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
141
141
|
fullName: string;
|
142
142
|
profilePictureUrl: string | null;
|
143
143
|
mail: string | null;
|
144
|
-
dni: string | null;
|
145
144
|
created_at: Date;
|
146
145
|
updated_at: Date;
|
147
146
|
shortId: number;
|
@@ -151,6 +150,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
151
150
|
gender: string | null;
|
152
151
|
birthDate: string | null;
|
153
152
|
instagram: string | null;
|
153
|
+
dni: string | null;
|
154
154
|
alternativeNames: string[];
|
155
155
|
birthLocationId: string | null;
|
156
156
|
residenceLocationId: string | null;
|
@@ -181,7 +181,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
181
181
|
fullName: string;
|
182
182
|
profilePictureUrl: string | null;
|
183
183
|
mail: string | null;
|
184
|
-
dni: string | null;
|
185
184
|
created_at: Date;
|
186
185
|
updated_at: Date;
|
187
186
|
shortId: number;
|
@@ -191,6 +190,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
191
190
|
gender: string | null;
|
192
191
|
birthDate: Date | null;
|
193
192
|
instagram: string | null;
|
193
|
+
dni: string | null;
|
194
194
|
alternativeNames: string[];
|
195
195
|
birthLocationId: string | null;
|
196
196
|
residenceLocationId: string | null;
|
@@ -220,7 +220,6 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
220
220
|
fullName: string;
|
221
221
|
profilePictureUrl: string | null;
|
222
222
|
mail: string | null;
|
223
|
-
dni: string | null;
|
224
223
|
created_at: Date;
|
225
224
|
updated_at: Date;
|
226
225
|
shortId: number;
|
@@ -230,6 +229,7 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
230
229
|
gender: string | null;
|
231
230
|
birthDate: string | null;
|
232
231
|
instagram: string | null;
|
232
|
+
dni: string | null;
|
233
233
|
alternativeNames: string[];
|
234
234
|
birthLocationId: string | null;
|
235
235
|
residenceLocationId: string | null;
|
@@ -326,7 +326,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
326
326
|
fullName: string;
|
327
327
|
profilePictureUrl: string | null;
|
328
328
|
mail: string | null;
|
329
|
-
dni: string | null;
|
330
329
|
created_at: string;
|
331
330
|
updated_at: string;
|
332
331
|
shortId: number;
|
@@ -336,6 +335,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
336
335
|
gender: string | null;
|
337
336
|
birthDate: string | null;
|
338
337
|
instagram: string | null;
|
338
|
+
dni: string | null;
|
339
339
|
alternativeNames: string[];
|
340
340
|
birthLocationId: string | null;
|
341
341
|
residenceLocationId: string | null;
|
@@ -362,7 +362,6 @@ 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;
|
366
365
|
created_at: string;
|
367
366
|
updated_at: string;
|
368
367
|
shortId: number;
|
@@ -372,6 +371,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
372
371
|
gender: string | null;
|
373
372
|
birthDate: string | null;
|
374
373
|
instagram: string | null;
|
374
|
+
dni: string | null;
|
375
375
|
alternativeNames: string[];
|
376
376
|
birthLocationId: string | null;
|
377
377
|
residenceLocationId: string | null;
|
@@ -402,7 +402,6 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
402
402
|
fullName: string;
|
403
403
|
profilePictureUrl: string | null;
|
404
404
|
mail: string | null;
|
405
|
-
dni: string | null;
|
406
405
|
created_at: string;
|
407
406
|
updated_at: string;
|
408
407
|
shortId: number;
|
@@ -412,6 +411,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
412
411
|
gender: string | null;
|
413
412
|
birthDate: string | null;
|
414
413
|
instagram: string | null;
|
414
|
+
dni: string | null;
|
415
415
|
alternativeNames: string[];
|
416
416
|
birthLocationId: string | null;
|
417
417
|
residenceLocationId: string | null;
|
@@ -441,7 +441,6 @@ 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;
|
445
444
|
created_at: string;
|
446
445
|
updated_at: string;
|
447
446
|
shortId: number;
|
@@ -451,6 +450,7 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
451
450
|
gender: string | null;
|
452
451
|
birthDate: string | null;
|
453
452
|
instagram: string | null;
|
453
|
+
dni: string | null;
|
454
454
|
alternativeNames: string[];
|
455
455
|
birthLocationId: string | null;
|
456
456
|
residenceLocationId: string | null;
|
@@ -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" | "gender" | "birthDate" | "instagram" | "dni" | "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;
|
107
106
|
gender: string | null;
|
108
107
|
birthDate: Date | null;
|
109
108
|
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;
|
139
138
|
gender: string | null;
|
140
139
|
birthDate: string | null;
|
141
140
|
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;
|
174
173
|
gender: string | null;
|
175
174
|
birthDate: Date | null;
|
176
175
|
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;
|
209
208
|
gender: string | null;
|
210
209
|
birthDate: string | null;
|
211
210
|
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>;
|
245
244
|
gender: z.ZodNullable<z.ZodString>;
|
246
245
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
247
246
|
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;
|
307
306
|
gender: string | null;
|
308
307
|
birthDate: string | null;
|
309
308
|
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;
|
339
338
|
gender: string | null;
|
340
339
|
birthDate: string | null;
|
341
340
|
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;
|
374
373
|
gender: string | null;
|
375
374
|
birthDate: string | null;
|
376
375
|
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;
|
409
408
|
gender: string | null;
|
410
409
|
birthDate: string | null;
|
411
410
|
instagram: string | null;
|
411
|
+
dni: string | null;
|
412
412
|
alternativeNames: string[];
|
413
413
|
comments?: {
|
414
414
|
content: string;
|
@@ -39,7 +39,6 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
39
39
|
fullName: string;
|
40
40
|
profilePictureUrl: string | null;
|
41
41
|
mail: string | null;
|
42
|
-
dni: string | null;
|
43
42
|
created_at: Date;
|
44
43
|
updated_at: Date;
|
45
44
|
shortId: number;
|
@@ -49,6 +48,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
49
48
|
gender: string | null;
|
50
49
|
birthDate: Date | 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 @@ 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;
|
67
66
|
created_at: Date;
|
68
67
|
updated_at: Date;
|
69
68
|
shortId: number;
|
@@ -73,6 +72,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
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;
|
@@ -121,7 +121,6 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
121
121
|
fullName: string;
|
122
122
|
profilePictureUrl: string | null;
|
123
123
|
mail: string | null;
|
124
|
-
dni: string | null;
|
125
124
|
created_at: string;
|
126
125
|
updated_at: string;
|
127
126
|
shortId: number;
|
@@ -131,6 +130,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
131
130
|
gender: string | null;
|
132
131
|
birthDate: string | null;
|
133
132
|
instagram: string | null;
|
133
|
+
dni: string | null;
|
134
134
|
alternativeNames: string[];
|
135
135
|
birthLocationId: string | null;
|
136
136
|
residenceLocationId: string | null;
|
@@ -145,7 +145,6 @@ 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;
|
149
148
|
created_at: string;
|
150
149
|
updated_at: string;
|
151
150
|
shortId: number;
|
@@ -155,6 +154,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
155
154
|
gender: string | null;
|
156
155
|
birthDate: string | null;
|
157
156
|
instagram: string | null;
|
157
|
+
dni: string | null;
|
158
158
|
alternativeNames: string[];
|
159
159
|
birthLocationId: string | null;
|
160
160
|
residenceLocationId: string | null;
|
@@ -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: "
|
65
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "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: "
|
76
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
77
77
|
created_at: Date;
|
78
78
|
updated_at: Date;
|
79
79
|
groupId: string;
|
@@ -92,7 +92,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
92
92
|
fullName: string;
|
93
93
|
profilePictureUrl: string | null;
|
94
94
|
mail: string | null;
|
95
|
-
dni: string | null;
|
96
95
|
created_at: Date;
|
97
96
|
updated_at: Date;
|
98
97
|
shortId: number;
|
@@ -102,6 +101,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
102
101
|
gender: string | null;
|
103
102
|
birthDate: Date | null;
|
104
103
|
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: "
|
113
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
114
114
|
created_at: Date;
|
115
115
|
updated_at: Date;
|
116
116
|
groupId: string;
|
@@ -128,7 +128,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
128
128
|
fullName: string;
|
129
129
|
profilePictureUrl: string | null;
|
130
130
|
mail: string | null;
|
131
|
-
dni: string | null;
|
132
131
|
created_at: Date;
|
133
132
|
updated_at: Date;
|
134
133
|
shortId: number;
|
@@ -138,6 +137,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
138
137
|
gender: string | null;
|
139
138
|
birthDate: string | null;
|
140
139
|
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: "
|
149
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
150
150
|
created_at: Date;
|
151
151
|
updated_at: Date;
|
152
152
|
groupId: string;
|
@@ -168,7 +168,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
168
168
|
fullName: string;
|
169
169
|
profilePictureUrl: string | null;
|
170
170
|
mail: string | null;
|
171
|
-
dni: string | null;
|
172
171
|
created_at: Date;
|
173
172
|
updated_at: Date;
|
174
173
|
shortId: number;
|
@@ -178,6 +177,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
178
177
|
gender: string | null;
|
179
178
|
birthDate: Date | null;
|
180
179
|
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: "
|
189
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
190
190
|
created_at: Date;
|
191
191
|
updated_at: Date;
|
192
192
|
groupId: string;
|
@@ -206,7 +206,6 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
206
206
|
fullName: string;
|
207
207
|
profilePictureUrl: string | null;
|
208
208
|
mail: string | null;
|
209
|
-
dni: string | null;
|
210
209
|
created_at: Date;
|
211
210
|
updated_at: Date;
|
212
211
|
shortId: number;
|
@@ -216,6 +215,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
216
215
|
gender: string | null;
|
217
216
|
birthDate: string | null;
|
218
217
|
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: "
|
227
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
228
228
|
created_at: Date;
|
229
229
|
updated_at: Date;
|
230
230
|
groupId: string;
|
@@ -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: "
|
296
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "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: "
|
307
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
308
308
|
created_at: string;
|
309
309
|
updated_at: string;
|
310
310
|
groupId: string;
|
@@ -323,7 +323,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
323
323
|
fullName: string;
|
324
324
|
profilePictureUrl: string | null;
|
325
325
|
mail: string | null;
|
326
|
-
dni: string | null;
|
327
326
|
created_at: string;
|
328
327
|
updated_at: string;
|
329
328
|
shortId: number;
|
@@ -333,6 +332,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
333
332
|
gender: string | null;
|
334
333
|
birthDate: string | null;
|
335
334
|
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: "
|
344
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
345
345
|
created_at: string;
|
346
346
|
updated_at: string;
|
347
347
|
groupId: string;
|
@@ -359,7 +359,6 @@ 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;
|
363
362
|
created_at: string;
|
364
363
|
updated_at: string;
|
365
364
|
shortId: number;
|
@@ -369,6 +368,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
369
368
|
gender: string | null;
|
370
369
|
birthDate: string | null;
|
371
370
|
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: "
|
380
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
381
381
|
created_at: string;
|
382
382
|
updated_at: string;
|
383
383
|
groupId: string;
|
@@ -399,7 +399,6 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
399
399
|
fullName: string;
|
400
400
|
profilePictureUrl: string | null;
|
401
401
|
mail: string | null;
|
402
|
-
dni: string | null;
|
403
402
|
created_at: string;
|
404
403
|
updated_at: string;
|
405
404
|
shortId: number;
|
@@ -409,6 +408,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
409
408
|
gender: string | null;
|
410
409
|
birthDate: string | null;
|
411
410
|
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: "
|
420
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
421
421
|
created_at: string;
|
422
422
|
updated_at: string;
|
423
423
|
groupId: string;
|
@@ -437,7 +437,6 @@ 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;
|
441
440
|
created_at: string;
|
442
441
|
updated_at: string;
|
443
442
|
shortId: number;
|
@@ -447,6 +446,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
447
446
|
gender: string | null;
|
448
447
|
birthDate: string | null;
|
449
448
|
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: "
|
458
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
459
459
|
created_at: string;
|
460
460
|
updated_at: string;
|
461
461
|
groupId: string;
|