expo-backend-types 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5 → 0.36.0-EXPO-323-Enviar-mail-ticket.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/account/dto/account.dto.d.ts +6 -6
- package/dist/src/account/dto/create-account.dto.d.ts +12 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
- package/dist/src/account/dto/get-me.dto.d.ts +6 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
- package/dist/src/auth/dto/login.dto.d.ts +11 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +20 -0
- package/dist/src/i18n/es.d.ts +19 -5
- package/dist/src/i18n/es.js +19 -5
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +11 -11
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +19 -19
- package/dist/src/mi-expo/dto/login.dto.d.ts +20 -20
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +17 -17
- package/dist/src/otp/dto/verify-otp.dto.d.ts +18 -18
- package/dist/src/profile/dto/create-profile.dto.d.ts +14 -14
- package/dist/src/profile/dto/delete-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +28 -28
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +11 -11
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -18
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -18
- package/dist/src/profile/dto/profile.dto.d.ts +5 -5
- package/dist/src/profile/dto/update-profile.dto.d.ts +16 -16
- package/dist/src/schema/profile.schema.d.ts +5 -5
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +18 -18
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +18 -18
- package/dist/src/ticket/constants.d.ts +95 -14
- package/dist/src/ticket/constants.js +254 -222
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +25 -1
- package/dist/src/ticket/dto/create-ticket.dto.js +2 -0
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +46 -26
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/send-email.dto.d.ts +18 -0
- package/dist/src/ticket/dto/send-email.dto.js +15 -0
- package/dist/src/ticket/dto/ticket.dto.d.ts +12 -0
- package/dist/src/ticket/dto/ticket.dto.js +2 -0
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +12 -0
- package/dist/types/prisma-schema/edge.js +7 -5
- package/dist/types/prisma-schema/index-browser.js +4 -2
- package/dist/types/prisma-schema/index.d.ts +193 -65
- package/dist/types/prisma-schema/index.js +7 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +5 -1
- package/dist/types/prisma-schema/wasm.js +4 -2
- package/dist/types/schema.d.ts +100 -116
- package/package.json +6 -6
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +0 -688
- package/dist/src/ticket/dto/create-many-ticket.dto.js +0 -57
@@ -5,8 +5,8 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
5
5
|
USER: "USER";
|
6
6
|
ADMIN: "ADMIN";
|
7
7
|
FORM: "FORM";
|
8
|
-
TICKETS: "TICKETS";
|
9
8
|
MI_EXPO: "MI_EXPO";
|
9
|
+
TICKETS: "TICKETS";
|
10
10
|
}>>;
|
11
11
|
firstTimeMiExpo: import("zod").ZodBoolean;
|
12
12
|
username: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -89,12 +89,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
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;
|
98
99
|
created_at: Date;
|
99
100
|
updated_at: Date;
|
100
101
|
shortId: number;
|
@@ -104,7 +105,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
104
105
|
gender: string | null;
|
105
106
|
birthDate: Date | null;
|
106
107
|
instagram: string | null;
|
107
|
-
dni: string | null;
|
108
108
|
alternativeNames: string[];
|
109
109
|
birthLocationId: string | null;
|
110
110
|
residenceLocationId: string | null;
|
@@ -138,6 +138,7 @@ 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;
|
141
142
|
created_at: Date;
|
142
143
|
updated_at: Date;
|
143
144
|
shortId: number;
|
@@ -147,7 +148,6 @@ export declare const getMiExpoMeResponseSchema: import("zod").ZodObject<import("
|
|
147
148
|
gender: string | null;
|
148
149
|
birthDate: string | null;
|
149
150
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
177
177
|
}>;
|
178
178
|
declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
179
179
|
id: import("zod").ZodString;
|
@@ -182,14 +182,15 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
182
182
|
USER: "USER";
|
183
183
|
ADMIN: "ADMIN";
|
184
184
|
FORM: "FORM";
|
185
|
-
TICKETS: "TICKETS";
|
186
185
|
MI_EXPO: "MI_EXPO";
|
186
|
+
TICKETS: "TICKETS";
|
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>;
|
193
194
|
created_at: import("zod").ZodString;
|
194
195
|
updated_at: import("zod").ZodString;
|
195
196
|
shortId: import("zod").ZodNumber;
|
@@ -199,7 +200,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
199
200
|
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
200
201
|
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
201
202
|
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,12 +264,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
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;
|
273
274
|
created_at: string;
|
274
275
|
updated_at: string;
|
275
276
|
shortId: number;
|
@@ -279,7 +280,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
279
280
|
gender: string | null;
|
280
281
|
birthDate: string | null;
|
281
282
|
instagram: string | null;
|
282
|
-
dni: string | null;
|
283
283
|
alternativeNames: string[];
|
284
284
|
birthLocationId: string | null;
|
285
285
|
residenceLocationId: string | null;
|
@@ -313,6 +313,7 @@ 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;
|
316
317
|
created_at: string;
|
317
318
|
updated_at: string;
|
318
319
|
shortId: number;
|
@@ -322,7 +323,6 @@ declare const GetMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
322
323
|
gender: string | null;
|
323
324
|
birthDate: string | null;
|
324
325
|
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" | "MI_EXPO" | "TICKETS" | 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
|
-
TICKETS: "TICKETS";
|
40
39
|
MI_EXPO: "MI_EXPO";
|
40
|
+
TICKETS: "TICKETS";
|
41
41
|
}>>;
|
42
42
|
firstTimeMiExpo: z.ZodBoolean;
|
43
43
|
username: z.ZodNullable<z.ZodString>;
|
@@ -63,12 +63,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
67
67
|
phoneNumber: string;
|
68
68
|
secondaryPhoneNumber: string | null;
|
69
69
|
fullName: string;
|
70
70
|
profilePictureUrl: string | null;
|
71
71
|
mail: string | null;
|
72
|
+
dni: string | null;
|
72
73
|
created_at: Date;
|
73
74
|
updated_at: Date;
|
74
75
|
shortId: number;
|
@@ -78,7 +79,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
78
79
|
gender: string | null;
|
79
80
|
birthDate: Date | null;
|
80
81
|
instagram: string | null;
|
81
|
-
dni: string | null;
|
82
82
|
alternativeNames: string[];
|
83
83
|
birthLocationId: string | null;
|
84
84
|
residenceLocationId: string | null;
|
@@ -92,6 +92,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
92
92
|
fullName: string;
|
93
93
|
profilePictureUrl: string | null;
|
94
94
|
mail: string | null;
|
95
|
+
dni: string | null;
|
95
96
|
created_at: Date;
|
96
97
|
updated_at: Date;
|
97
98
|
shortId: number;
|
@@ -101,24 +102,24 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
101
102
|
gender: string | null;
|
102
103
|
birthDate: string | null;
|
103
104
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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;
|
122
123
|
created_at: Date;
|
123
124
|
updated_at: Date;
|
124
125
|
shortId: number;
|
@@ -128,7 +129,6 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
128
129
|
gender: string | null;
|
129
130
|
birthDate: Date | null;
|
130
131
|
instagram: string | null;
|
131
|
-
dni: string | null;
|
132
132
|
alternativeNames: string[];
|
133
133
|
birthLocationId: string | null;
|
134
134
|
residenceLocationId: string | null;
|
@@ -149,6 +149,7 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
149
149
|
fullName: string;
|
150
150
|
profilePictureUrl: string | null;
|
151
151
|
mail: string | null;
|
152
|
+
dni: string | null;
|
152
153
|
created_at: Date;
|
153
154
|
updated_at: Date;
|
154
155
|
shortId: number;
|
@@ -158,13 +159,12 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
158
159
|
gender: string | null;
|
159
160
|
birthDate: string | null;
|
160
161
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
168
168
|
};
|
169
169
|
tokens: {
|
170
170
|
accessToken: string;
|
@@ -193,14 +193,15 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
193
193
|
USER: "USER";
|
194
194
|
ADMIN: "ADMIN";
|
195
195
|
FORM: "FORM";
|
196
|
-
TICKETS: "TICKETS";
|
197
196
|
MI_EXPO: "MI_EXPO";
|
197
|
+
TICKETS: "TICKETS";
|
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>;
|
204
205
|
created_at: z.ZodString;
|
205
206
|
updated_at: z.ZodString;
|
206
207
|
shortId: z.ZodNumber;
|
@@ -210,7 +211,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
210
211
|
gender: z.ZodNullable<z.ZodString>;
|
211
212
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
212
213
|
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,12 +219,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
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;
|
228
229
|
created_at: string;
|
229
230
|
updated_at: string;
|
230
231
|
shortId: number;
|
@@ -234,7 +235,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
234
235
|
gender: string | null;
|
235
236
|
birthDate: string | null;
|
236
237
|
instagram: string | null;
|
237
|
-
dni: string | null;
|
238
238
|
alternativeNames: string[];
|
239
239
|
birthLocationId: string | null;
|
240
240
|
residenceLocationId: string | null;
|
@@ -248,6 +248,7 @@ 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;
|
251
252
|
created_at: string;
|
252
253
|
updated_at: string;
|
253
254
|
shortId: number;
|
@@ -257,24 +258,24 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
257
258
|
gender: string | null;
|
258
259
|
birthDate: string | null;
|
259
260
|
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" | "MI_EXPO" | "TICKETS" | 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" | "MI_EXPO" | "TICKETS";
|
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;
|
278
279
|
created_at: string;
|
279
280
|
updated_at: string;
|
280
281
|
shortId: number;
|
@@ -284,7 +285,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
284
285
|
gender: string | null;
|
285
286
|
birthDate: string | null;
|
286
287
|
instagram: string | null;
|
287
|
-
dni: string | null;
|
288
288
|
alternativeNames: string[];
|
289
289
|
birthLocationId: string | null;
|
290
290
|
residenceLocationId: string | null;
|
@@ -305,6 +305,7 @@ 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;
|
308
309
|
created_at: string;
|
309
310
|
updated_at: string;
|
310
311
|
shortId: number;
|
@@ -314,13 +315,12 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
314
315
|
gender: string | null;
|
315
316
|
birthDate: string | null;
|
316
317
|
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" | "MI_EXPO" | "TICKETS" | 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
|
-
TICKETS: "TICKETS";
|
11
10
|
MI_EXPO: "MI_EXPO";
|
11
|
+
TICKETS: "TICKETS";
|
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
|
-
TICKETS: "TICKETS";
|
45
44
|
MI_EXPO: "MI_EXPO";
|
45
|
+
TICKETS: "TICKETS";
|
46
46
|
}>>;
|
47
47
|
firstTimeMiExpo: z.ZodBoolean;
|
48
48
|
username: z.ZodNullable<z.ZodString>;
|
@@ -68,12 +68,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
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;
|
77
78
|
created_at: Date;
|
78
79
|
updated_at: Date;
|
79
80
|
shortId: number;
|
@@ -83,7 +84,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
83
84
|
gender: string | null;
|
84
85
|
birthDate: Date | null;
|
85
86
|
instagram: string | null;
|
86
|
-
dni: string | null;
|
87
87
|
alternativeNames: string[];
|
88
88
|
birthLocationId: string | null;
|
89
89
|
residenceLocationId: string | null;
|
@@ -97,6 +97,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
97
97
|
fullName: string;
|
98
98
|
profilePictureUrl: string | null;
|
99
99
|
mail: string | null;
|
100
|
+
dni: string | null;
|
100
101
|
created_at: Date;
|
101
102
|
updated_at: Date;
|
102
103
|
shortId: number;
|
@@ -106,13 +107,12 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
106
107
|
gender: string | null;
|
107
108
|
birthDate: string | null;
|
108
109
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
116
116
|
}>;
|
117
117
|
backendTokens: z.ZodObject<{
|
118
118
|
accessToken: z.ZodString;
|
@@ -131,12 +131,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
135
135
|
phoneNumber: string;
|
136
136
|
secondaryPhoneNumber: string | null;
|
137
137
|
fullName: string;
|
138
138
|
profilePictureUrl: string | null;
|
139
139
|
mail: string | null;
|
140
|
+
dni: string | null;
|
140
141
|
created_at: Date;
|
141
142
|
updated_at: Date;
|
142
143
|
shortId: number;
|
@@ -146,7 +147,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
146
147
|
gender: string | null;
|
147
148
|
birthDate: Date | null;
|
148
149
|
instagram: string | null;
|
149
|
-
dni: string | null;
|
150
150
|
alternativeNames: string[];
|
151
151
|
birthLocationId: string | null;
|
152
152
|
residenceLocationId: string | null;
|
@@ -167,6 +167,7 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
167
167
|
fullName: string;
|
168
168
|
profilePictureUrl: string | null;
|
169
169
|
mail: string | null;
|
170
|
+
dni: string | null;
|
170
171
|
created_at: Date;
|
171
172
|
updated_at: Date;
|
172
173
|
shortId: number;
|
@@ -176,13 +177,12 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
176
177
|
gender: string | null;
|
177
178
|
birthDate: string | null;
|
178
179
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
186
186
|
};
|
187
187
|
backendTokens: {
|
188
188
|
accessToken: string;
|
@@ -198,14 +198,15 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
198
198
|
USER: "USER";
|
199
199
|
ADMIN: "ADMIN";
|
200
200
|
FORM: "FORM";
|
201
|
-
TICKETS: "TICKETS";
|
202
201
|
MI_EXPO: "MI_EXPO";
|
202
|
+
TICKETS: "TICKETS";
|
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>;
|
209
210
|
created_at: z.ZodString;
|
210
211
|
updated_at: z.ZodString;
|
211
212
|
shortId: z.ZodNumber;
|
@@ -215,7 +216,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
215
216
|
gender: z.ZodNullable<z.ZodString>;
|
216
217
|
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodString>>;
|
217
218
|
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,12 +224,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
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;
|
233
234
|
created_at: string;
|
234
235
|
updated_at: string;
|
235
236
|
shortId: number;
|
@@ -239,7 +240,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
239
240
|
gender: string | null;
|
240
241
|
birthDate: string | null;
|
241
242
|
instagram: string | null;
|
242
|
-
dni: string | null;
|
243
243
|
alternativeNames: string[];
|
244
244
|
birthLocationId: string | null;
|
245
245
|
residenceLocationId: string | null;
|
@@ -253,6 +253,7 @@ 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;
|
256
257
|
created_at: string;
|
257
258
|
updated_at: string;
|
258
259
|
shortId: number;
|
@@ -262,13 +263,12 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
262
263
|
gender: string | null;
|
263
264
|
birthDate: string | null;
|
264
265
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
272
272
|
}>;
|
273
273
|
backendTokens: z.ZodObject<{
|
274
274
|
accessToken: z.ZodString;
|
@@ -287,12 +287,13 @@ 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" | "MI_EXPO" | "TICKETS";
|
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;
|
296
297
|
created_at: string;
|
297
298
|
updated_at: string;
|
298
299
|
shortId: number;
|
@@ -302,7 +303,6 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
302
303
|
gender: string | null;
|
303
304
|
birthDate: string | null;
|
304
305
|
instagram: string | null;
|
305
|
-
dni: string | null;
|
306
306
|
alternativeNames: string[];
|
307
307
|
birthLocationId: string | null;
|
308
308
|
residenceLocationId: string | null;
|
@@ -323,6 +323,7 @@ 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;
|
326
327
|
created_at: string;
|
327
328
|
updated_at: string;
|
328
329
|
shortId: number;
|
@@ -332,13 +333,12 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
332
333
|
gender: string | null;
|
333
334
|
birthDate: string | null;
|
334
335
|
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" | "MI_EXPO" | "TICKETS" | undefined;
|
342
342
|
};
|
343
343
|
backendTokens: {
|
344
344
|
accessToken: string;
|