expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.2 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5
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 +0 -20
- package/dist/src/i18n/es.d.ts +5 -19
- package/dist/src/i18n/es.js +5 -19
- 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-many-ticket.dto.d.ts +688 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +57 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +1 -25
- package/dist/src/ticket/dto/create-ticket.dto.js +0 -2
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +26 -46
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +0 -20
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/ticket.dto.d.ts +0 -12
- package/dist/src/ticket/dto/ticket.dto.js +0 -2
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +0 -12
- package/dist/types/prisma-schema/edge.js +5 -7
- package/dist/types/prisma-schema/index-browser.js +2 -4
- package/dist/types/prisma-schema/index.d.ts +65 -193
- package/dist/types/prisma-schema/index.js +5 -7
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -5
- package/dist/types/prisma-schema/wasm.js +2 -4
- package/dist/types/schema.d.ts +116 -100
- package/package.json +2 -2
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -7,8 +7,8 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
10
|
TICKETS: "TICKETS";
|
11
|
+
MI_EXPO: "MI_EXPO";
|
12
12
|
}>>;
|
13
13
|
firstTimeMiExpo: z.ZodBoolean;
|
14
14
|
username: z.ZodNullable<z.ZodString>;
|
@@ -86,13 +86,12 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
86
86
|
id: string;
|
87
87
|
username: string | null;
|
88
88
|
password: string | null;
|
89
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
89
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
90
90
|
phoneNumber: string;
|
91
91
|
secondaryPhoneNumber: string | null;
|
92
92
|
fullName: string;
|
93
93
|
profilePictureUrl: string | null;
|
94
94
|
mail: string | null;
|
95
|
-
dni: string | null;
|
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;
|
@@ -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;
|
@@ -155,20 +155,19 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
155
155
|
isExclusive: boolean;
|
156
156
|
};
|
157
157
|
}[];
|
158
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
158
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
159
159
|
}>, "many">;
|
160
160
|
}, "strip", z.ZodTypeAny, {
|
161
161
|
profiles: {
|
162
162
|
id: string;
|
163
163
|
username: string | null;
|
164
164
|
password: string | null;
|
165
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
165
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
166
166
|
phoneNumber: string;
|
167
167
|
secondaryPhoneNumber: string | null;
|
168
168
|
fullName: string;
|
169
169
|
profilePictureUrl: string | null;
|
170
170
|
mail: string | null;
|
171
|
-
dni: string | null;
|
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;
|
@@ -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;
|
@@ -233,7 +233,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
233
233
|
isExclusive: boolean;
|
234
234
|
};
|
235
235
|
}[];
|
236
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
236
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
237
237
|
}[];
|
238
238
|
}>;
|
239
239
|
declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -244,8 +244,8 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
244
244
|
USER: "USER";
|
245
245
|
ADMIN: "ADMIN";
|
246
246
|
FORM: "FORM";
|
247
|
-
MI_EXPO: "MI_EXPO";
|
248
247
|
TICKETS: "TICKETS";
|
248
|
+
MI_EXPO: "MI_EXPO";
|
249
249
|
}>>;
|
250
250
|
firstTimeMiExpo: z.ZodBoolean;
|
251
251
|
username: z.ZodNullable<z.ZodString>;
|
@@ -317,13 +317,12 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
317
317
|
id: string;
|
318
318
|
username: string | null;
|
319
319
|
password: string | null;
|
320
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
320
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
321
321
|
phoneNumber: string;
|
322
322
|
secondaryPhoneNumber: string | null;
|
323
323
|
fullName: string;
|
324
324
|
profilePictureUrl: string | null;
|
325
325
|
mail: string | null;
|
326
|
-
dni: string | null;
|
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;
|
@@ -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;
|
@@ -386,20 +386,19 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
386
386
|
isExclusive: boolean;
|
387
387
|
};
|
388
388
|
}[];
|
389
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
389
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
390
390
|
}>, "many">;
|
391
391
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
392
392
|
profiles: {
|
393
393
|
id: string;
|
394
394
|
username: string | null;
|
395
395
|
password: string | null;
|
396
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
396
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
397
397
|
phoneNumber: string;
|
398
398
|
secondaryPhoneNumber: string | null;
|
399
399
|
fullName: string;
|
400
400
|
profilePictureUrl: string | null;
|
401
401
|
mail: string | null;
|
402
|
-
dni: string | null;
|
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;
|
@@ -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;
|
@@ -464,7 +464,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
464
464
|
isExclusive: boolean;
|
465
465
|
};
|
466
466
|
}[];
|
467
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
467
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
468
468
|
}[];
|
469
469
|
}>>;
|
470
470
|
export declare class FindAllProfileResponseDto extends FindAllProfileResponseDto_base {
|
@@ -7,8 +7,8 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
7
7
|
USER: "USER";
|
8
8
|
ADMIN: "ADMIN";
|
9
9
|
FORM: "FORM";
|
10
|
-
MI_EXPO: "MI_EXPO";
|
11
10
|
TICKETS: "TICKETS";
|
11
|
+
MI_EXPO: "MI_EXPO";
|
12
12
|
}>>;
|
13
13
|
firstTimeMiExpo: z.ZodBoolean;
|
14
14
|
username: z.ZodNullable<z.ZodString>;
|
@@ -82,13 +82,12 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
82
82
|
id: string;
|
83
83
|
username: string | null;
|
84
84
|
password: string | null;
|
85
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
85
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
86
86
|
phoneNumber: string;
|
87
87
|
secondaryPhoneNumber: string | null;
|
88
88
|
fullName: string;
|
89
89
|
profilePictureUrl: string | null;
|
90
90
|
mail: string | null;
|
91
|
-
dni: string | null;
|
92
91
|
created_at: Date;
|
93
92
|
updated_at: Date;
|
94
93
|
shortId: number;
|
@@ -98,6 +97,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
98
97
|
gender: string | null;
|
99
98
|
birthDate: Date | null;
|
100
99
|
instagram: string | null;
|
100
|
+
dni: string | null;
|
101
101
|
alternativeNames: string[];
|
102
102
|
birthLocationId: string | null;
|
103
103
|
residenceLocationId: string | null;
|
@@ -123,7 +123,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
123
123
|
fullName: string;
|
124
124
|
profilePictureUrl: string | null;
|
125
125
|
mail: string | null;
|
126
|
-
dni: string | null;
|
127
126
|
created_at: Date;
|
128
127
|
updated_at: Date;
|
129
128
|
shortId: number;
|
@@ -133,6 +132,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
133
132
|
gender: string | null;
|
134
133
|
birthDate: string | null;
|
135
134
|
instagram: string | null;
|
135
|
+
dni: string | null;
|
136
136
|
alternativeNames: string[];
|
137
137
|
birthLocationId: string | null;
|
138
138
|
residenceLocationId: string | null;
|
@@ -149,20 +149,19 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
149
149
|
id: string;
|
150
150
|
};
|
151
151
|
}[];
|
152
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
152
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
153
153
|
}>, "many">;
|
154
154
|
}, "strip", z.ZodTypeAny, {
|
155
155
|
profiles: {
|
156
156
|
id: string;
|
157
157
|
username: string | null;
|
158
158
|
password: string | null;
|
159
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
159
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
160
160
|
phoneNumber: string;
|
161
161
|
secondaryPhoneNumber: string | null;
|
162
162
|
fullName: string;
|
163
163
|
profilePictureUrl: string | null;
|
164
164
|
mail: string | null;
|
165
|
-
dni: string | null;
|
166
165
|
created_at: Date;
|
167
166
|
updated_at: Date;
|
168
167
|
shortId: number;
|
@@ -172,6 +171,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
172
171
|
gender: string | null;
|
173
172
|
birthDate: Date | null;
|
174
173
|
instagram: string | null;
|
174
|
+
dni: string | null;
|
175
175
|
alternativeNames: string[];
|
176
176
|
birthLocationId: string | null;
|
177
177
|
residenceLocationId: string | null;
|
@@ -199,7 +199,6 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
199
199
|
fullName: string;
|
200
200
|
profilePictureUrl: string | null;
|
201
201
|
mail: string | null;
|
202
|
-
dni: string | null;
|
203
202
|
created_at: Date;
|
204
203
|
updated_at: Date;
|
205
204
|
shortId: number;
|
@@ -209,6 +208,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
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
|
birthLocationId: string | null;
|
214
214
|
residenceLocationId: string | null;
|
@@ -225,7 +225,7 @@ export declare const findByDateRangeSchema: z.ZodObject<{
|
|
225
225
|
id: string;
|
226
226
|
};
|
227
227
|
}[];
|
228
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
228
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
229
229
|
}[];
|
230
230
|
}>;
|
231
231
|
declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -236,8 +236,8 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
236
236
|
USER: "USER";
|
237
237
|
ADMIN: "ADMIN";
|
238
238
|
FORM: "FORM";
|
239
|
-
MI_EXPO: "MI_EXPO";
|
240
239
|
TICKETS: "TICKETS";
|
240
|
+
MI_EXPO: "MI_EXPO";
|
241
241
|
}>>;
|
242
242
|
firstTimeMiExpo: z.ZodBoolean;
|
243
243
|
username: z.ZodNullable<z.ZodString>;
|
@@ -304,13 +304,12 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
304
304
|
id: string;
|
305
305
|
username: string | null;
|
306
306
|
password: string | null;
|
307
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
307
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
308
308
|
phoneNumber: string;
|
309
309
|
secondaryPhoneNumber: string | null;
|
310
310
|
fullName: string;
|
311
311
|
profilePictureUrl: string | null;
|
312
312
|
mail: string | null;
|
313
|
-
dni: string | null;
|
314
313
|
created_at: string;
|
315
314
|
updated_at: string;
|
316
315
|
shortId: number;
|
@@ -320,6 +319,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
320
319
|
gender: string | null;
|
321
320
|
birthDate: string | null;
|
322
321
|
instagram: string | null;
|
322
|
+
dni: string | null;
|
323
323
|
alternativeNames: string[];
|
324
324
|
birthLocationId: string | null;
|
325
325
|
residenceLocationId: string | null;
|
@@ -345,7 +345,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
345
345
|
fullName: string;
|
346
346
|
profilePictureUrl: string | null;
|
347
347
|
mail: string | null;
|
348
|
-
dni: string | null;
|
349
348
|
created_at: string;
|
350
349
|
updated_at: string;
|
351
350
|
shortId: number;
|
@@ -355,6 +354,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
355
354
|
gender: string | null;
|
356
355
|
birthDate: string | null;
|
357
356
|
instagram: string | null;
|
357
|
+
dni: string | null;
|
358
358
|
alternativeNames: string[];
|
359
359
|
birthLocationId: string | null;
|
360
360
|
residenceLocationId: string | null;
|
@@ -371,20 +371,19 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
371
371
|
id: string;
|
372
372
|
};
|
373
373
|
}[];
|
374
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
374
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
375
375
|
}>, "many">;
|
376
376
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
377
377
|
profiles: {
|
378
378
|
id: string;
|
379
379
|
username: string | null;
|
380
380
|
password: string | null;
|
381
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
381
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
382
382
|
phoneNumber: string;
|
383
383
|
secondaryPhoneNumber: string | null;
|
384
384
|
fullName: string;
|
385
385
|
profilePictureUrl: string | null;
|
386
386
|
mail: string | null;
|
387
|
-
dni: string | null;
|
388
387
|
created_at: string;
|
389
388
|
updated_at: string;
|
390
389
|
shortId: number;
|
@@ -394,6 +393,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
394
393
|
gender: string | null;
|
395
394
|
birthDate: string | null;
|
396
395
|
instagram: string | null;
|
396
|
+
dni: string | null;
|
397
397
|
alternativeNames: string[];
|
398
398
|
birthLocationId: string | null;
|
399
399
|
residenceLocationId: string | null;
|
@@ -421,7 +421,6 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
421
421
|
fullName: string;
|
422
422
|
profilePictureUrl: string | null;
|
423
423
|
mail: string | null;
|
424
|
-
dni: string | null;
|
425
424
|
created_at: string;
|
426
425
|
updated_at: string;
|
427
426
|
shortId: number;
|
@@ -431,6 +430,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
431
430
|
gender: string | null;
|
432
431
|
birthDate: string | null;
|
433
432
|
instagram: string | null;
|
433
|
+
dni: string | null;
|
434
434
|
alternativeNames: string[];
|
435
435
|
birthLocationId: string | null;
|
436
436
|
residenceLocationId: string | null;
|
@@ -447,7 +447,7 @@ declare const FindByDateRangeDto_base: import("@anatine/zod-nestjs").ZodDtoStati
|
|
447
447
|
id: string;
|
448
448
|
};
|
449
449
|
}[];
|
450
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
450
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
451
451
|
}[];
|
452
452
|
}>>;
|
453
453
|
export declare class FindByDateRangeDto extends FindByDateRangeDto_base {
|
@@ -459,8 +459,8 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
459
459
|
USER: "USER";
|
460
460
|
ADMIN: "ADMIN";
|
461
461
|
FORM: "FORM";
|
462
|
-
MI_EXPO: "MI_EXPO";
|
463
462
|
TICKETS: "TICKETS";
|
463
|
+
MI_EXPO: "MI_EXPO";
|
464
464
|
}>>;
|
465
465
|
firstTimeMiExpo: z.ZodBoolean;
|
466
466
|
username: z.ZodNullable<z.ZodString>;
|
@@ -534,13 +534,12 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
534
534
|
id: string;
|
535
535
|
username: string | null;
|
536
536
|
password: string | null;
|
537
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
537
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
538
538
|
phoneNumber: string;
|
539
539
|
secondaryPhoneNumber: string | null;
|
540
540
|
fullName: string;
|
541
541
|
profilePictureUrl: string | null;
|
542
542
|
mail: string | null;
|
543
|
-
dni: string | null;
|
544
543
|
created_at: Date;
|
545
544
|
updated_at: Date;
|
546
545
|
shortId: number;
|
@@ -550,6 +549,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
550
549
|
gender: string | null;
|
551
550
|
birthDate: Date | null;
|
552
551
|
instagram: string | null;
|
552
|
+
dni: string | null;
|
553
553
|
alternativeNames: string[];
|
554
554
|
birthLocationId: string | null;
|
555
555
|
residenceLocationId: string | null;
|
@@ -575,7 +575,6 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
575
575
|
fullName: string;
|
576
576
|
profilePictureUrl: string | null;
|
577
577
|
mail: string | null;
|
578
|
-
dni: string | null;
|
579
578
|
created_at: Date;
|
580
579
|
updated_at: Date;
|
581
580
|
shortId: number;
|
@@ -585,6 +584,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
585
584
|
gender: string | null;
|
586
585
|
birthDate: string | null;
|
587
586
|
instagram: string | null;
|
587
|
+
dni: string | null;
|
588
588
|
alternativeNames: string[];
|
589
589
|
birthLocationId: string | null;
|
590
590
|
residenceLocationId: string | null;
|
@@ -601,7 +601,7 @@ export declare const findByDateRangeResponseSchema: z.ZodRecord<z.ZodString, z.Z
|
|
601
601
|
id: string;
|
602
602
|
};
|
603
603
|
}[];
|
604
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
604
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
605
605
|
}>, "many">>;
|
606
606
|
declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
607
607
|
id: z.ZodString;
|
@@ -610,8 +610,8 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
610
610
|
USER: "USER";
|
611
611
|
ADMIN: "ADMIN";
|
612
612
|
FORM: "FORM";
|
613
|
-
MI_EXPO: "MI_EXPO";
|
614
613
|
TICKETS: "TICKETS";
|
614
|
+
MI_EXPO: "MI_EXPO";
|
615
615
|
}>>;
|
616
616
|
firstTimeMiExpo: z.ZodBoolean;
|
617
617
|
username: z.ZodNullable<z.ZodString>;
|
@@ -685,13 +685,12 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
685
685
|
id: string;
|
686
686
|
username: string | null;
|
687
687
|
password: string | null;
|
688
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
688
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
689
689
|
phoneNumber: string;
|
690
690
|
secondaryPhoneNumber: string | null;
|
691
691
|
fullName: string;
|
692
692
|
profilePictureUrl: string | null;
|
693
693
|
mail: string | null;
|
694
|
-
dni: string | null;
|
695
694
|
created_at: Date;
|
696
695
|
updated_at: Date;
|
697
696
|
shortId: number;
|
@@ -701,6 +700,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
701
700
|
gender: string | null;
|
702
701
|
birthDate: Date | null;
|
703
702
|
instagram: string | null;
|
703
|
+
dni: string | null;
|
704
704
|
alternativeNames: string[];
|
705
705
|
birthLocationId: string | null;
|
706
706
|
residenceLocationId: string | null;
|
@@ -726,7 +726,6 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
726
726
|
fullName: string;
|
727
727
|
profilePictureUrl: string | null;
|
728
728
|
mail: string | null;
|
729
|
-
dni: string | null;
|
730
729
|
created_at: Date;
|
731
730
|
updated_at: Date;
|
732
731
|
shortId: number;
|
@@ -736,6 +735,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
736
735
|
gender: string | null;
|
737
736
|
birthDate: string | null;
|
738
737
|
instagram: string | null;
|
738
|
+
dni: string | null;
|
739
739
|
alternativeNames: string[];
|
740
740
|
birthLocationId: string | null;
|
741
741
|
residenceLocationId: string | null;
|
@@ -752,7 +752,7 @@ declare const FindByDateRangeResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
752
752
|
id: string;
|
753
753
|
};
|
754
754
|
}[];
|
755
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
755
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
756
756
|
}>, "many">>>;
|
757
757
|
export declare class FindByDateRangeResponseDto extends FindByDateRangeResponseDto_base {
|
758
758
|
}
|
@@ -6,8 +6,8 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
6
6
|
USER: "USER";
|
7
7
|
ADMIN: "ADMIN";
|
8
8
|
FORM: "FORM";
|
9
|
-
MI_EXPO: "MI_EXPO";
|
10
9
|
TICKETS: "TICKETS";
|
10
|
+
MI_EXPO: "MI_EXPO";
|
11
11
|
}>>;
|
12
12
|
firstTimeMiExpo: z.ZodBoolean;
|
13
13
|
username: z.ZodNullable<z.ZodString>;
|
@@ -144,13 +144,12 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
144
144
|
}>, "strip", z.ZodTypeAny, {
|
145
145
|
id: string;
|
146
146
|
username: string | null;
|
147
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
147
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
148
148
|
phoneNumber: string;
|
149
149
|
secondaryPhoneNumber: string | null;
|
150
150
|
fullName: string;
|
151
151
|
profilePictureUrl: string | null;
|
152
152
|
mail: string | null;
|
153
|
-
dni: string | null;
|
154
153
|
created_at: Date;
|
155
154
|
updated_at: Date;
|
156
155
|
shortId: number;
|
@@ -160,6 +159,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
160
159
|
gender: string | null;
|
161
160
|
birthDate: Date | null;
|
162
161
|
instagram: string | null;
|
162
|
+
dni: string | null;
|
163
163
|
alternativeNames: string[];
|
164
164
|
birthLocationId: string | null;
|
165
165
|
residenceLocationId: string | null;
|
@@ -206,7 +206,6 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
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 findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
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;
|
@@ -254,7 +254,7 @@ export declare const findByIdProfileResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
254
254
|
country: string;
|
255
255
|
city: string;
|
256
256
|
} | null;
|
257
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
257
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
258
258
|
}>;
|
259
259
|
declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
260
260
|
id: z.ZodString;
|
@@ -263,15 +263,14 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
263
263
|
USER: "USER";
|
264
264
|
ADMIN: "ADMIN";
|
265
265
|
FORM: "FORM";
|
266
|
-
MI_EXPO: "MI_EXPO";
|
267
266
|
TICKETS: "TICKETS";
|
267
|
+
MI_EXPO: "MI_EXPO";
|
268
268
|
}>>;
|
269
269
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
270
270
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
271
271
|
fullName: z.ZodString;
|
272
272
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
273
273
|
mail: z.ZodNullable<z.ZodString>;
|
274
|
-
dni: z.ZodNullable<z.ZodString>;
|
275
274
|
created_at: z.ZodString;
|
276
275
|
updated_at: z.ZodString;
|
277
276
|
shortId: z.ZodNumber;
|
@@ -281,6 +280,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
281
280
|
gender: z.ZodNullable<z.ZodString>;
|
282
281
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
283
282
|
instagram: z.ZodNullable<z.ZodString>;
|
283
|
+
dni: z.ZodNullable<z.ZodString>;
|
284
284
|
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
285
285
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
286
286
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
@@ -395,13 +395,12 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
395
395
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
396
396
|
id: string;
|
397
397
|
username: string | null;
|
398
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
398
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
399
399
|
phoneNumber: string;
|
400
400
|
secondaryPhoneNumber: string | null;
|
401
401
|
fullName: string;
|
402
402
|
profilePictureUrl: string | null;
|
403
403
|
mail: string | null;
|
404
|
-
dni: string | null;
|
405
404
|
created_at: string;
|
406
405
|
updated_at: string;
|
407
406
|
shortId: number;
|
@@ -411,6 +410,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
411
410
|
gender: string | null;
|
412
411
|
birthDate: string | null;
|
413
412
|
instagram: string | null;
|
413
|
+
dni: string | null;
|
414
414
|
alternativeNames: string[];
|
415
415
|
birthLocationId: string | null;
|
416
416
|
residenceLocationId: string | null;
|
@@ -457,7 +457,6 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
457
457
|
fullName: string;
|
458
458
|
profilePictureUrl: string | null;
|
459
459
|
mail: string | null;
|
460
|
-
dni: string | null;
|
461
460
|
created_at: string;
|
462
461
|
updated_at: string;
|
463
462
|
shortId: number;
|
@@ -467,6 +466,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
467
466
|
gender: string | null;
|
468
467
|
birthDate: string | null;
|
469
468
|
instagram: string | null;
|
469
|
+
dni: string | null;
|
470
470
|
alternativeNames: string[];
|
471
471
|
birthLocationId: string | null;
|
472
472
|
residenceLocationId: string | null;
|
@@ -505,7 +505,7 @@ declare const FindByIdProfileResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
505
505
|
country: string;
|
506
506
|
city: string;
|
507
507
|
} | null;
|
508
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
508
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
509
509
|
}>>;
|
510
510
|
export declare class FindByIdProfileResponseDto extends FindByIdProfileResponseDto_base {
|
511
511
|
}
|