expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.1 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +3 -131
- 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 -4
- 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
@@ -5,8 +5,8 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
5
5
|
USER: "USER";
|
6
6
|
ADMIN: "ADMIN";
|
7
7
|
FORM: "FORM";
|
8
|
-
MI_EXPO: "MI_EXPO";
|
9
8
|
TICKETS: "TICKETS";
|
9
|
+
MI_EXPO: "MI_EXPO";
|
10
10
|
}>>;
|
11
11
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
12
12
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -89,13 +89,12 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
89
89
|
}>, "strip", import("zod").ZodTypeAny, {
|
90
90
|
id: string;
|
91
91
|
username: string | null;
|
92
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
92
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
93
93
|
phoneNumber: string;
|
94
94
|
secondaryPhoneNumber: string | null;
|
95
95
|
fullName: string;
|
96
96
|
profilePictureUrl: string | null;
|
97
97
|
mail: string | null;
|
98
|
-
dni: string | null;
|
99
98
|
created_at: Date;
|
100
99
|
updated_at: Date;
|
101
100
|
shortId: number;
|
@@ -105,6 +104,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
105
104
|
gender: string | null;
|
106
105
|
birthDate: Date | null;
|
107
106
|
instagram: string | null;
|
107
|
+
dni: string | null;
|
108
108
|
alternativeNames: string[];
|
109
109
|
birthLocationId: string | null;
|
110
110
|
residenceLocationId: string | null;
|
@@ -138,7 +138,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
138
138
|
fullName: string;
|
139
139
|
profilePictureUrl: string | null;
|
140
140
|
mail: string | null;
|
141
|
-
dni: string | null;
|
142
141
|
created_at: Date;
|
143
142
|
updated_at: Date;
|
144
143
|
shortId: number;
|
@@ -148,6 +147,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
148
147
|
gender: string | null;
|
149
148
|
birthDate: string | null;
|
150
149
|
instagram: string | null;
|
150
|
+
dni: string | null;
|
151
151
|
alternativeNames: string[];
|
152
152
|
birthLocationId: string | null;
|
153
153
|
residenceLocationId: string | null;
|
@@ -173,7 +173,7 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
173
173
|
country: string;
|
174
174
|
city: string;
|
175
175
|
} | null;
|
176
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
176
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
177
177
|
}>;
|
178
178
|
declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
179
179
|
id: import("zod").ZodString;
|
@@ -182,15 +182,14 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
182
182
|
USER: "USER";
|
183
183
|
ADMIN: "ADMIN";
|
184
184
|
FORM: "FORM";
|
185
|
-
MI_EXPO: "MI_EXPO";
|
186
185
|
TICKETS: "TICKETS";
|
186
|
+
MI_EXPO: "MI_EXPO";
|
187
187
|
}>>;
|
188
188
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
189
189
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
190
190
|
fullName: import("zod").ZodString;
|
191
191
|
profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
192
192
|
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
193
|
-
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
194
193
|
created_at: import("zod").ZodString;
|
195
194
|
updated_at: import("zod").ZodString;
|
196
195
|
shortId: import("zod").ZodNumber;
|
@@ -200,6 +199,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
200
199
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
201
200
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
202
201
|
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
202
|
+
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
203
203
|
alternativeNames: import("zod").ZodArray<import("zod").ZodString, "many">;
|
204
204
|
birthLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
205
205
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -264,13 +264,12 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
264
264
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
265
265
|
id: string;
|
266
266
|
username: string | null;
|
267
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
267
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
268
268
|
phoneNumber: string;
|
269
269
|
secondaryPhoneNumber: string | null;
|
270
270
|
fullName: string;
|
271
271
|
profilePictureUrl: string | null;
|
272
272
|
mail: string | null;
|
273
|
-
dni: string | null;
|
274
273
|
created_at: string;
|
275
274
|
updated_at: string;
|
276
275
|
shortId: number;
|
@@ -280,6 +279,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
280
279
|
gender: string | null;
|
281
280
|
birthDate: string | null;
|
282
281
|
instagram: string | null;
|
282
|
+
dni: string | null;
|
283
283
|
alternativeNames: string[];
|
284
284
|
birthLocationId: string | null;
|
285
285
|
residenceLocationId: string | null;
|
@@ -313,7 +313,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
313
313
|
fullName: string;
|
314
314
|
profilePictureUrl: string | null;
|
315
315
|
mail: string | null;
|
316
|
-
dni: string | null;
|
317
316
|
created_at: string;
|
318
317
|
updated_at: string;
|
319
318
|
shortId: number;
|
@@ -323,6 +322,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
323
322
|
gender: string | null;
|
324
323
|
birthDate: string | null;
|
325
324
|
instagram: string | null;
|
325
|
+
dni: string | null;
|
326
326
|
alternativeNames: string[];
|
327
327
|
birthLocationId: string | null;
|
328
328
|
residenceLocationId: string | null;
|
@@ -348,7 +348,7 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
348
348
|
country: string;
|
349
349
|
city: string;
|
350
350
|
} | null;
|
351
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
351
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
352
352
|
}>>;
|
353
353
|
export declare class GetMiExpoMeResponseDto extends GetMiExpoMeResponseDto_base {
|
354
354
|
}
|
@@ -36,8 +36,8 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
36
36
|
USER: "USER";
|
37
37
|
ADMIN: "ADMIN";
|
38
38
|
FORM: "FORM";
|
39
|
-
MI_EXPO: "MI_EXPO";
|
40
39
|
TICKETS: "TICKETS";
|
40
|
+
MI_EXPO: "MI_EXPO";
|
41
41
|
}>>;
|
42
42
|
firstTimeMiExpo: z.ZodBoolean;
|
43
43
|
username: z.ZodNullable<z.ZodString>;
|
@@ -63,13 +63,12 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
63
63
|
}, "password">, "strip", z.ZodTypeAny, {
|
64
64
|
id: string;
|
65
65
|
username: string | null;
|
66
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
66
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
67
67
|
phoneNumber: string;
|
68
68
|
secondaryPhoneNumber: string | null;
|
69
69
|
fullName: string;
|
70
70
|
profilePictureUrl: string | null;
|
71
71
|
mail: string | null;
|
72
|
-
dni: string | null;
|
73
72
|
created_at: Date;
|
74
73
|
updated_at: Date;
|
75
74
|
shortId: number;
|
@@ -79,6 +78,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
79
78
|
gender: string | null;
|
80
79
|
birthDate: Date | null;
|
81
80
|
instagram: string | null;
|
81
|
+
dni: string | null;
|
82
82
|
alternativeNames: string[];
|
83
83
|
birthLocationId: string | null;
|
84
84
|
residenceLocationId: string | null;
|
@@ -92,7 +92,6 @@ export declare const loginWithPhoneResponseSchema: 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,24 +101,24 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
102
101
|
gender: string | null;
|
103
102
|
birthDate: string | null;
|
104
103
|
instagram: string | null;
|
104
|
+
dni: string | null;
|
105
105
|
alternativeNames: string[];
|
106
106
|
birthLocationId: string | null;
|
107
107
|
residenceLocationId: string | null;
|
108
108
|
isInTrash: boolean;
|
109
109
|
movedToTrashDate: Date | null;
|
110
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
110
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
111
111
|
}>;
|
112
112
|
}, "strip", z.ZodTypeAny, {
|
113
113
|
profile: {
|
114
114
|
id: string;
|
115
115
|
username: string | null;
|
116
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
116
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
117
117
|
phoneNumber: string;
|
118
118
|
secondaryPhoneNumber: string | null;
|
119
119
|
fullName: string;
|
120
120
|
profilePictureUrl: string | null;
|
121
121
|
mail: string | null;
|
122
|
-
dni: string | null;
|
123
122
|
created_at: Date;
|
124
123
|
updated_at: Date;
|
125
124
|
shortId: number;
|
@@ -129,6 +128,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
129
128
|
gender: string | null;
|
130
129
|
birthDate: Date | null;
|
131
130
|
instagram: string | null;
|
131
|
+
dni: string | null;
|
132
132
|
alternativeNames: string[];
|
133
133
|
birthLocationId: string | null;
|
134
134
|
residenceLocationId: string | null;
|
@@ -149,7 +149,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
149
149
|
fullName: string;
|
150
150
|
profilePictureUrl: string | null;
|
151
151
|
mail: string | null;
|
152
|
-
dni: string | null;
|
153
152
|
created_at: Date;
|
154
153
|
updated_at: Date;
|
155
154
|
shortId: number;
|
@@ -159,12 +158,13 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
159
158
|
gender: string | null;
|
160
159
|
birthDate: string | null;
|
161
160
|
instagram: string | null;
|
161
|
+
dni: string | null;
|
162
162
|
alternativeNames: string[];
|
163
163
|
birthLocationId: string | null;
|
164
164
|
residenceLocationId: string | null;
|
165
165
|
isInTrash: boolean;
|
166
166
|
movedToTrashDate: Date | null;
|
167
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
167
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
168
168
|
};
|
169
169
|
tokens: {
|
170
170
|
accessToken: string;
|
@@ -193,15 +193,14 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
193
193
|
USER: "USER";
|
194
194
|
ADMIN: "ADMIN";
|
195
195
|
FORM: "FORM";
|
196
|
-
MI_EXPO: "MI_EXPO";
|
197
196
|
TICKETS: "TICKETS";
|
197
|
+
MI_EXPO: "MI_EXPO";
|
198
198
|
}>>;
|
199
199
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
200
200
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
201
201
|
fullName: z.ZodString;
|
202
202
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
203
203
|
mail: z.ZodNullable<z.ZodString>;
|
204
|
-
dni: z.ZodNullable<z.ZodString>;
|
205
204
|
created_at: z.ZodString;
|
206
205
|
updated_at: z.ZodString;
|
207
206
|
shortId: z.ZodNumber;
|
@@ -211,6 +210,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
211
210
|
gender: z.ZodNullable<z.ZodString>;
|
212
211
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
213
212
|
instagram: z.ZodNullable<z.ZodString>;
|
213
|
+
dni: z.ZodNullable<z.ZodString>;
|
214
214
|
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
215
215
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
216
216
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
@@ -219,13 +219,12 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
219
219
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
220
220
|
id: string;
|
221
221
|
username: string | null;
|
222
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
222
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
223
223
|
phoneNumber: string;
|
224
224
|
secondaryPhoneNumber: string | null;
|
225
225
|
fullName: string;
|
226
226
|
profilePictureUrl: string | null;
|
227
227
|
mail: string | null;
|
228
|
-
dni: string | null;
|
229
228
|
created_at: string;
|
230
229
|
updated_at: string;
|
231
230
|
shortId: number;
|
@@ -235,6 +234,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
235
234
|
gender: string | null;
|
236
235
|
birthDate: string | null;
|
237
236
|
instagram: string | null;
|
237
|
+
dni: string | null;
|
238
238
|
alternativeNames: string[];
|
239
239
|
birthLocationId: string | null;
|
240
240
|
residenceLocationId: string | null;
|
@@ -248,7 +248,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
248
248
|
fullName: string;
|
249
249
|
profilePictureUrl: string | null;
|
250
250
|
mail: string | null;
|
251
|
-
dni: string | null;
|
252
251
|
created_at: string;
|
253
252
|
updated_at: string;
|
254
253
|
shortId: number;
|
@@ -258,24 +257,24 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
258
257
|
gender: string | null;
|
259
258
|
birthDate: string | null;
|
260
259
|
instagram: string | null;
|
260
|
+
dni: string | null;
|
261
261
|
alternativeNames: string[];
|
262
262
|
birthLocationId: string | null;
|
263
263
|
residenceLocationId: string | null;
|
264
264
|
isInTrash: boolean;
|
265
265
|
movedToTrashDate: string | null;
|
266
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
266
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
267
267
|
}>;
|
268
268
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
269
269
|
profile: {
|
270
270
|
id: string;
|
271
271
|
username: string | null;
|
272
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
272
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
273
273
|
phoneNumber: string;
|
274
274
|
secondaryPhoneNumber: string | null;
|
275
275
|
fullName: string;
|
276
276
|
profilePictureUrl: string | null;
|
277
277
|
mail: string | null;
|
278
|
-
dni: string | null;
|
279
278
|
created_at: string;
|
280
279
|
updated_at: string;
|
281
280
|
shortId: number;
|
@@ -285,6 +284,7 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
285
284
|
gender: string | null;
|
286
285
|
birthDate: string | null;
|
287
286
|
instagram: string | null;
|
287
|
+
dni: string | null;
|
288
288
|
alternativeNames: string[];
|
289
289
|
birthLocationId: string | null;
|
290
290
|
residenceLocationId: string | null;
|
@@ -305,7 +305,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
305
305
|
fullName: string;
|
306
306
|
profilePictureUrl: string | null;
|
307
307
|
mail: string | null;
|
308
|
-
dni: string | null;
|
309
308
|
created_at: string;
|
310
309
|
updated_at: string;
|
311
310
|
shortId: number;
|
@@ -315,12 +314,13 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
315
314
|
gender: string | null;
|
316
315
|
birthDate: string | null;
|
317
316
|
instagram: string | null;
|
317
|
+
dni: string | null;
|
318
318
|
alternativeNames: string[];
|
319
319
|
birthLocationId: string | null;
|
320
320
|
residenceLocationId: string | null;
|
321
321
|
isInTrash: boolean;
|
322
322
|
movedToTrashDate: string | null;
|
323
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
323
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
324
324
|
};
|
325
325
|
tokens: {
|
326
326
|
accessToken: string;
|
@@ -7,8 +7,8 @@ export declare const loginMiExpoSchema: z.ZodObject<Pick<{
|
|
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
|
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
14
14
|
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
@@ -41,8 +41,8 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
41
41
|
USER: "USER";
|
42
42
|
ADMIN: "ADMIN";
|
43
43
|
FORM: "FORM";
|
44
|
-
MI_EXPO: "MI_EXPO";
|
45
44
|
TICKETS: "TICKETS";
|
45
|
+
MI_EXPO: "MI_EXPO";
|
46
46
|
}>>;
|
47
47
|
firstTimeMiExpo: z.ZodBoolean;
|
48
48
|
username: z.ZodNullable<z.ZodString>;
|
@@ -68,13 +68,12 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
68
68
|
}, "password">, "strip", z.ZodTypeAny, {
|
69
69
|
id: string;
|
70
70
|
username: string | null;
|
71
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
71
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
72
72
|
phoneNumber: string;
|
73
73
|
secondaryPhoneNumber: string | null;
|
74
74
|
fullName: string;
|
75
75
|
profilePictureUrl: string | null;
|
76
76
|
mail: string | null;
|
77
|
-
dni: string | null;
|
78
77
|
created_at: Date;
|
79
78
|
updated_at: Date;
|
80
79
|
shortId: number;
|
@@ -84,6 +83,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
84
83
|
gender: string | null;
|
85
84
|
birthDate: Date | null;
|
86
85
|
instagram: string | null;
|
86
|
+
dni: string | null;
|
87
87
|
alternativeNames: string[];
|
88
88
|
birthLocationId: string | null;
|
89
89
|
residenceLocationId: string | null;
|
@@ -97,7 +97,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
97
97
|
fullName: string;
|
98
98
|
profilePictureUrl: string | null;
|
99
99
|
mail: string | null;
|
100
|
-
dni: string | null;
|
101
100
|
created_at: Date;
|
102
101
|
updated_at: Date;
|
103
102
|
shortId: number;
|
@@ -107,12 +106,13 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
107
106
|
gender: string | null;
|
108
107
|
birthDate: string | null;
|
109
108
|
instagram: string | null;
|
109
|
+
dni: string | null;
|
110
110
|
alternativeNames: string[];
|
111
111
|
birthLocationId: string | null;
|
112
112
|
residenceLocationId: string | null;
|
113
113
|
isInTrash: boolean;
|
114
114
|
movedToTrashDate: Date | null;
|
115
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
115
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
116
116
|
}>;
|
117
117
|
backendTokens: z.ZodObject<{
|
118
118
|
accessToken: z.ZodString;
|
@@ -131,13 +131,12 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
131
131
|
user: {
|
132
132
|
id: string;
|
133
133
|
username: string | null;
|
134
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
134
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
135
135
|
phoneNumber: string;
|
136
136
|
secondaryPhoneNumber: string | null;
|
137
137
|
fullName: string;
|
138
138
|
profilePictureUrl: string | null;
|
139
139
|
mail: string | null;
|
140
|
-
dni: string | null;
|
141
140
|
created_at: Date;
|
142
141
|
updated_at: Date;
|
143
142
|
shortId: number;
|
@@ -147,6 +146,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
147
146
|
gender: string | null;
|
148
147
|
birthDate: Date | null;
|
149
148
|
instagram: string | null;
|
149
|
+
dni: string | null;
|
150
150
|
alternativeNames: string[];
|
151
151
|
birthLocationId: string | null;
|
152
152
|
residenceLocationId: string | null;
|
@@ -167,7 +167,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
167
167
|
fullName: string;
|
168
168
|
profilePictureUrl: string | null;
|
169
169
|
mail: string | null;
|
170
|
-
dni: string | null;
|
171
170
|
created_at: Date;
|
172
171
|
updated_at: Date;
|
173
172
|
shortId: number;
|
@@ -177,12 +176,13 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
177
176
|
gender: string | null;
|
178
177
|
birthDate: string | null;
|
179
178
|
instagram: string | null;
|
179
|
+
dni: string | null;
|
180
180
|
alternativeNames: string[];
|
181
181
|
birthLocationId: string | null;
|
182
182
|
residenceLocationId: string | null;
|
183
183
|
isInTrash: boolean;
|
184
184
|
movedToTrashDate: Date | null;
|
185
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
185
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
186
186
|
};
|
187
187
|
backendTokens: {
|
188
188
|
accessToken: string;
|
@@ -198,15 +198,14 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
198
198
|
USER: "USER";
|
199
199
|
ADMIN: "ADMIN";
|
200
200
|
FORM: "FORM";
|
201
|
-
MI_EXPO: "MI_EXPO";
|
202
201
|
TICKETS: "TICKETS";
|
202
|
+
MI_EXPO: "MI_EXPO";
|
203
203
|
}>>;
|
204
204
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
205
205
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
206
206
|
fullName: z.ZodString;
|
207
207
|
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
208
208
|
mail: z.ZodNullable<z.ZodString>;
|
209
|
-
dni: z.ZodNullable<z.ZodString>;
|
210
209
|
created_at: z.ZodString;
|
211
210
|
updated_at: z.ZodString;
|
212
211
|
shortId: z.ZodNumber;
|
@@ -216,6 +215,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
216
215
|
gender: z.ZodNullable<z.ZodString>;
|
217
216
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
218
217
|
instagram: z.ZodNullable<z.ZodString>;
|
218
|
+
dni: z.ZodNullable<z.ZodString>;
|
219
219
|
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
220
220
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
221
221
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
@@ -224,13 +224,12 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
224
224
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
225
225
|
id: string;
|
226
226
|
username: string | null;
|
227
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
227
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
228
228
|
phoneNumber: string;
|
229
229
|
secondaryPhoneNumber: string | null;
|
230
230
|
fullName: string;
|
231
231
|
profilePictureUrl: string | null;
|
232
232
|
mail: string | null;
|
233
|
-
dni: string | null;
|
234
233
|
created_at: string;
|
235
234
|
updated_at: string;
|
236
235
|
shortId: number;
|
@@ -240,6 +239,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
240
239
|
gender: string | null;
|
241
240
|
birthDate: string | null;
|
242
241
|
instagram: string | null;
|
242
|
+
dni: string | null;
|
243
243
|
alternativeNames: string[];
|
244
244
|
birthLocationId: string | null;
|
245
245
|
residenceLocationId: string | null;
|
@@ -253,7 +253,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
253
253
|
fullName: string;
|
254
254
|
profilePictureUrl: string | null;
|
255
255
|
mail: string | null;
|
256
|
-
dni: string | null;
|
257
256
|
created_at: string;
|
258
257
|
updated_at: string;
|
259
258
|
shortId: number;
|
@@ -263,12 +262,13 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
263
262
|
gender: string | null;
|
264
263
|
birthDate: string | null;
|
265
264
|
instagram: string | null;
|
265
|
+
dni: string | null;
|
266
266
|
alternativeNames: string[];
|
267
267
|
birthLocationId: string | null;
|
268
268
|
residenceLocationId: string | null;
|
269
269
|
isInTrash: boolean;
|
270
270
|
movedToTrashDate: string | null;
|
271
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
271
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
272
272
|
}>;
|
273
273
|
backendTokens: z.ZodObject<{
|
274
274
|
accessToken: z.ZodString;
|
@@ -287,13 +287,12 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
287
287
|
user: {
|
288
288
|
id: string;
|
289
289
|
username: string | null;
|
290
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
290
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
291
291
|
phoneNumber: string;
|
292
292
|
secondaryPhoneNumber: string | null;
|
293
293
|
fullName: string;
|
294
294
|
profilePictureUrl: string | null;
|
295
295
|
mail: string | null;
|
296
|
-
dni: string | null;
|
297
296
|
created_at: string;
|
298
297
|
updated_at: string;
|
299
298
|
shortId: number;
|
@@ -303,6 +302,7 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
303
302
|
gender: string | null;
|
304
303
|
birthDate: string | null;
|
305
304
|
instagram: string | null;
|
305
|
+
dni: string | null;
|
306
306
|
alternativeNames: string[];
|
307
307
|
birthLocationId: string | null;
|
308
308
|
residenceLocationId: string | null;
|
@@ -323,7 +323,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
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,12 +332,13 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
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;
|
339
339
|
isInTrash: boolean;
|
340
340
|
movedToTrashDate: string | null;
|
341
|
-
role?: "USER" | "ADMIN" | "FORM" | "
|
341
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
342
342
|
};
|
343
343
|
backendTokens: {
|
344
344
|
accessToken: string;
|