expo-backend-types 0.30.0-EXPO-308-auth.6 → 0.30.0-EXPO-308-auth.7
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/auth/dto/login-mi-expo.dto.d.ts +327 -0
- package/dist/src/auth/dto/login-mi-expo.dto.js +31 -0
- package/dist/src/otp/constants.d.ts +1 -0
- package/dist/src/otp/constants.js +2 -1
- package/dist/src/otp/dto/verify-otp.dto.d.ts +22 -2
- package/dist/src/profile/dto/create-profile.dto.d.ts +12 -4
- package/dist/src/profile/dto/delete-profile.dto.d.ts +14 -2
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +22 -2
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -4
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +14 -2
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +14 -2
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +22 -2
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +22 -2
- package/dist/src/profile/dto/find-trash.dto.d.ts +3 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +22 -2
- package/dist/src/profile/dto/profile.dto.d.ts +7 -1
- package/dist/src/profile/dto/profile.dto.js +3 -1
- package/dist/src/profile/dto/update-profile.dto.d.ts +14 -2
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +22 -2
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +22 -2
- package/dist/types/prisma-schema/edge.js +26 -24
- package/dist/types/prisma-schema/index-browser.js +6 -9
- package/dist/types/prisma-schema/index.d.ts +2126 -415
- package/dist/types/prisma-schema/index.js +26 -24
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +2 -2
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
- package/dist/types/prisma-schema/runtime/edge.js +18 -18
- package/dist/types/prisma-schema/runtime/index-browser.d.ts +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +177 -133
- package/dist/types/prisma-schema/runtime/library.js +51 -51
- package/dist/types/prisma-schema/runtime/react-native.js +26 -26
- package/dist/types/prisma-schema/runtime/wasm.js +19 -19
- package/dist/types/prisma-schema/schema.prisma +3 -0
- package/dist/types/prisma-schema/wasm.js +6 -9
- package/dist/types/schema.d.ts +113 -13
- package/package.json +4 -4
@@ -0,0 +1,327 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const loginMiExpoSchema: z.ZodObject<Pick<{
|
3
|
+
id: z.ZodString;
|
4
|
+
username: z.ZodString;
|
5
|
+
password: z.ZodString;
|
6
|
+
role: z.ZodNativeEnum<{
|
7
|
+
USER: "USER";
|
8
|
+
ADMIN: "ADMIN";
|
9
|
+
FORM: "FORM";
|
10
|
+
}>;
|
11
|
+
isGlobalFilterActive: z.ZodDefault<z.ZodBoolean>;
|
12
|
+
fcmToken: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
13
|
+
created_at: z.ZodDate;
|
14
|
+
updated_at: z.ZodDate;
|
15
|
+
}, "username" | "password">, "strip", z.ZodTypeAny, {
|
16
|
+
username: string;
|
17
|
+
password: string;
|
18
|
+
}, {
|
19
|
+
username: string;
|
20
|
+
password: string;
|
21
|
+
}>;
|
22
|
+
declare const LoginMiExpoDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
23
|
+
username: z.ZodString;
|
24
|
+
password: z.ZodString;
|
25
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
26
|
+
username: string;
|
27
|
+
password: string;
|
28
|
+
}, {
|
29
|
+
username: string;
|
30
|
+
password: string;
|
31
|
+
}>>;
|
32
|
+
export declare class LoginMiExpoDto extends LoginMiExpoDto_base {
|
33
|
+
}
|
34
|
+
export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
35
|
+
user: z.ZodObject<Omit<{
|
36
|
+
id: z.ZodString;
|
37
|
+
shortId: z.ZodNumber;
|
38
|
+
firstTimeMiExpo: z.ZodBoolean;
|
39
|
+
username: z.ZodNullable<z.ZodString>;
|
40
|
+
password: z.ZodNullable<z.ZodString>;
|
41
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
42
|
+
isPhoneVerified: z.ZodBoolean;
|
43
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
44
|
+
fullName: z.ZodString;
|
45
|
+
firstName: z.ZodNullable<z.ZodString>;
|
46
|
+
gender: z.ZodNullable<z.ZodString>;
|
47
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
|
48
|
+
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
49
|
+
instagram: z.ZodNullable<z.ZodString>;
|
50
|
+
mail: z.ZodNullable<z.ZodString>;
|
51
|
+
dni: z.ZodNullable<z.ZodString>;
|
52
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
53
|
+
birthLocationId: z.ZodNullable<z.ZodString>;
|
54
|
+
residenceLocationId: z.ZodNullable<z.ZodString>;
|
55
|
+
isInTrash: z.ZodBoolean;
|
56
|
+
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
57
|
+
created_at: z.ZodDate;
|
58
|
+
updated_at: z.ZodDate;
|
59
|
+
}, "password">, "strip", z.ZodTypeAny, {
|
60
|
+
id: string;
|
61
|
+
username: string | null;
|
62
|
+
phoneNumber: string;
|
63
|
+
secondaryPhoneNumber: string | null;
|
64
|
+
fullName: string;
|
65
|
+
profilePictureUrl: string | null;
|
66
|
+
mail: string | null;
|
67
|
+
created_at: Date;
|
68
|
+
updated_at: Date;
|
69
|
+
shortId: number;
|
70
|
+
firstTimeMiExpo: boolean;
|
71
|
+
isPhoneVerified: boolean;
|
72
|
+
firstName: string | null;
|
73
|
+
gender: string | null;
|
74
|
+
birthDate: Date | null;
|
75
|
+
instagram: string | null;
|
76
|
+
dni: string | null;
|
77
|
+
alternativeNames: string[];
|
78
|
+
birthLocationId: string | null;
|
79
|
+
residenceLocationId: string | null;
|
80
|
+
isInTrash: boolean;
|
81
|
+
movedToTrashDate: Date | null;
|
82
|
+
}, {
|
83
|
+
id: string;
|
84
|
+
username: string | null;
|
85
|
+
phoneNumber: string;
|
86
|
+
secondaryPhoneNumber: string | null;
|
87
|
+
fullName: string;
|
88
|
+
profilePictureUrl: string | null;
|
89
|
+
mail: string | null;
|
90
|
+
created_at: Date;
|
91
|
+
updated_at: Date;
|
92
|
+
shortId: number;
|
93
|
+
firstTimeMiExpo: boolean;
|
94
|
+
isPhoneVerified: boolean;
|
95
|
+
firstName: string | null;
|
96
|
+
gender: string | null;
|
97
|
+
birthDate: string | null;
|
98
|
+
instagram: string | null;
|
99
|
+
dni: string | null;
|
100
|
+
alternativeNames: string[];
|
101
|
+
birthLocationId: string | null;
|
102
|
+
residenceLocationId: string | null;
|
103
|
+
isInTrash: boolean;
|
104
|
+
movedToTrashDate: Date | null;
|
105
|
+
}>;
|
106
|
+
backendTokens: z.ZodObject<{
|
107
|
+
accessToken: z.ZodString;
|
108
|
+
refreshToken: z.ZodString;
|
109
|
+
expiresIn: z.ZodNumber;
|
110
|
+
}, "strip", z.ZodTypeAny, {
|
111
|
+
accessToken: string;
|
112
|
+
refreshToken: string;
|
113
|
+
expiresIn: number;
|
114
|
+
}, {
|
115
|
+
accessToken: string;
|
116
|
+
refreshToken: string;
|
117
|
+
expiresIn: number;
|
118
|
+
}>;
|
119
|
+
}, "strip", z.ZodTypeAny, {
|
120
|
+
user: {
|
121
|
+
id: string;
|
122
|
+
username: string | null;
|
123
|
+
phoneNumber: string;
|
124
|
+
secondaryPhoneNumber: string | null;
|
125
|
+
fullName: string;
|
126
|
+
profilePictureUrl: string | null;
|
127
|
+
mail: string | null;
|
128
|
+
created_at: Date;
|
129
|
+
updated_at: Date;
|
130
|
+
shortId: number;
|
131
|
+
firstTimeMiExpo: boolean;
|
132
|
+
isPhoneVerified: boolean;
|
133
|
+
firstName: string | null;
|
134
|
+
gender: string | null;
|
135
|
+
birthDate: Date | null;
|
136
|
+
instagram: string | null;
|
137
|
+
dni: string | null;
|
138
|
+
alternativeNames: string[];
|
139
|
+
birthLocationId: string | null;
|
140
|
+
residenceLocationId: string | null;
|
141
|
+
isInTrash: boolean;
|
142
|
+
movedToTrashDate: Date | null;
|
143
|
+
};
|
144
|
+
backendTokens: {
|
145
|
+
accessToken: string;
|
146
|
+
refreshToken: string;
|
147
|
+
expiresIn: number;
|
148
|
+
};
|
149
|
+
}, {
|
150
|
+
user: {
|
151
|
+
id: string;
|
152
|
+
username: string | null;
|
153
|
+
phoneNumber: string;
|
154
|
+
secondaryPhoneNumber: string | null;
|
155
|
+
fullName: string;
|
156
|
+
profilePictureUrl: string | null;
|
157
|
+
mail: string | null;
|
158
|
+
created_at: Date;
|
159
|
+
updated_at: Date;
|
160
|
+
shortId: number;
|
161
|
+
firstTimeMiExpo: boolean;
|
162
|
+
isPhoneVerified: boolean;
|
163
|
+
firstName: string | null;
|
164
|
+
gender: string | null;
|
165
|
+
birthDate: string | null;
|
166
|
+
instagram: string | null;
|
167
|
+
dni: string | null;
|
168
|
+
alternativeNames: string[];
|
169
|
+
birthLocationId: string | null;
|
170
|
+
residenceLocationId: string | null;
|
171
|
+
isInTrash: boolean;
|
172
|
+
movedToTrashDate: Date | null;
|
173
|
+
};
|
174
|
+
backendTokens: {
|
175
|
+
accessToken: string;
|
176
|
+
refreshToken: string;
|
177
|
+
expiresIn: number;
|
178
|
+
};
|
179
|
+
}>;
|
180
|
+
declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
181
|
+
user: z.ZodObject<{
|
182
|
+
id: z.ZodString;
|
183
|
+
username: z.ZodNullable<z.ZodString>;
|
184
|
+
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
185
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
186
|
+
fullName: z.ZodString;
|
187
|
+
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
188
|
+
mail: z.ZodNullable<z.ZodString>;
|
189
|
+
created_at: z.ZodString;
|
190
|
+
updated_at: z.ZodString;
|
191
|
+
shortId: z.ZodNumber;
|
192
|
+
firstTimeMiExpo: z.ZodBoolean;
|
193
|
+
isPhoneVerified: z.ZodBoolean;
|
194
|
+
firstName: z.ZodNullable<z.ZodString>;
|
195
|
+
gender: z.ZodNullable<z.ZodString>;
|
196
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
|
197
|
+
instagram: z.ZodNullable<z.ZodString>;
|
198
|
+
dni: z.ZodNullable<z.ZodString>;
|
199
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
200
|
+
birthLocationId: z.ZodNullable<z.ZodString>;
|
201
|
+
residenceLocationId: z.ZodNullable<z.ZodString>;
|
202
|
+
isInTrash: z.ZodBoolean;
|
203
|
+
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
204
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
205
|
+
id: string;
|
206
|
+
username: string | null;
|
207
|
+
phoneNumber: string;
|
208
|
+
secondaryPhoneNumber: string | null;
|
209
|
+
fullName: string;
|
210
|
+
profilePictureUrl: string | null;
|
211
|
+
mail: string | null;
|
212
|
+
created_at: string;
|
213
|
+
updated_at: string;
|
214
|
+
shortId: number;
|
215
|
+
firstTimeMiExpo: boolean;
|
216
|
+
isPhoneVerified: boolean;
|
217
|
+
firstName: string | null;
|
218
|
+
gender: string | null;
|
219
|
+
birthDate: Date | null;
|
220
|
+
instagram: string | null;
|
221
|
+
dni: string | null;
|
222
|
+
alternativeNames: string[];
|
223
|
+
birthLocationId: string | null;
|
224
|
+
residenceLocationId: string | null;
|
225
|
+
isInTrash: boolean;
|
226
|
+
movedToTrashDate: string | null;
|
227
|
+
}, {
|
228
|
+
id: string;
|
229
|
+
username: string | null;
|
230
|
+
phoneNumber: string;
|
231
|
+
secondaryPhoneNumber: string | null;
|
232
|
+
fullName: string;
|
233
|
+
profilePictureUrl: string | null;
|
234
|
+
mail: string | null;
|
235
|
+
created_at: string;
|
236
|
+
updated_at: string;
|
237
|
+
shortId: number;
|
238
|
+
firstTimeMiExpo: boolean;
|
239
|
+
isPhoneVerified: boolean;
|
240
|
+
firstName: string | null;
|
241
|
+
gender: string | null;
|
242
|
+
birthDate: string | null;
|
243
|
+
instagram: string | null;
|
244
|
+
dni: string | null;
|
245
|
+
alternativeNames: string[];
|
246
|
+
birthLocationId: string | null;
|
247
|
+
residenceLocationId: string | null;
|
248
|
+
isInTrash: boolean;
|
249
|
+
movedToTrashDate: string | null;
|
250
|
+
}>;
|
251
|
+
backendTokens: z.ZodObject<{
|
252
|
+
accessToken: z.ZodString;
|
253
|
+
refreshToken: z.ZodString;
|
254
|
+
expiresIn: z.ZodNumber;
|
255
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
256
|
+
accessToken: string;
|
257
|
+
refreshToken: string;
|
258
|
+
expiresIn: number;
|
259
|
+
}, {
|
260
|
+
accessToken: string;
|
261
|
+
refreshToken: string;
|
262
|
+
expiresIn: number;
|
263
|
+
}>;
|
264
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
265
|
+
user: {
|
266
|
+
id: string;
|
267
|
+
username: string | null;
|
268
|
+
phoneNumber: string;
|
269
|
+
secondaryPhoneNumber: string | null;
|
270
|
+
fullName: string;
|
271
|
+
profilePictureUrl: string | null;
|
272
|
+
mail: string | null;
|
273
|
+
created_at: string;
|
274
|
+
updated_at: string;
|
275
|
+
shortId: number;
|
276
|
+
firstTimeMiExpo: boolean;
|
277
|
+
isPhoneVerified: boolean;
|
278
|
+
firstName: string | null;
|
279
|
+
gender: string | null;
|
280
|
+
birthDate: Date | null;
|
281
|
+
instagram: string | null;
|
282
|
+
dni: string | null;
|
283
|
+
alternativeNames: string[];
|
284
|
+
birthLocationId: string | null;
|
285
|
+
residenceLocationId: string | null;
|
286
|
+
isInTrash: boolean;
|
287
|
+
movedToTrashDate: string | null;
|
288
|
+
};
|
289
|
+
backendTokens: {
|
290
|
+
accessToken: string;
|
291
|
+
refreshToken: string;
|
292
|
+
expiresIn: number;
|
293
|
+
};
|
294
|
+
}, {
|
295
|
+
user: {
|
296
|
+
id: string;
|
297
|
+
username: string | null;
|
298
|
+
phoneNumber: string;
|
299
|
+
secondaryPhoneNumber: string | null;
|
300
|
+
fullName: string;
|
301
|
+
profilePictureUrl: string | null;
|
302
|
+
mail: string | null;
|
303
|
+
created_at: string;
|
304
|
+
updated_at: string;
|
305
|
+
shortId: number;
|
306
|
+
firstTimeMiExpo: boolean;
|
307
|
+
isPhoneVerified: boolean;
|
308
|
+
firstName: string | null;
|
309
|
+
gender: string | null;
|
310
|
+
birthDate: string | null;
|
311
|
+
instagram: string | null;
|
312
|
+
dni: string | null;
|
313
|
+
alternativeNames: string[];
|
314
|
+
birthLocationId: string | null;
|
315
|
+
residenceLocationId: string | null;
|
316
|
+
isInTrash: boolean;
|
317
|
+
movedToTrashDate: string | null;
|
318
|
+
};
|
319
|
+
backendTokens: {
|
320
|
+
accessToken: string;
|
321
|
+
refreshToken: string;
|
322
|
+
expiresIn: number;
|
323
|
+
};
|
324
|
+
}>>;
|
325
|
+
export declare class LoginMiExpoResponseDto extends LoginMiExpoResponseDto_base {
|
326
|
+
}
|
327
|
+
export {};
|
@@ -0,0 +1,31 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
|
+
};
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
+
exports.LoginMiExpoResponseDto = exports.loginMiExpoResponseSchema = exports.LoginMiExpoDto = exports.loginMiExpoSchema = void 0;
|
7
|
+
const account_dto_1 = require("../../account/dto/account.dto");
|
8
|
+
const profile_dto_1 = require("../../profile/dto/profile.dto");
|
9
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
10
|
+
const zod_1 = __importDefault(require("zod"));
|
11
|
+
exports.loginMiExpoSchema = account_dto_1.accountSchema.pick({
|
12
|
+
username: true,
|
13
|
+
password: true,
|
14
|
+
});
|
15
|
+
class LoginMiExpoDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.loginMiExpoSchema) {
|
16
|
+
}
|
17
|
+
exports.LoginMiExpoDto = LoginMiExpoDto;
|
18
|
+
exports.loginMiExpoResponseSchema = zod_1.default.object({
|
19
|
+
user: profile_dto_1.profileSchema.omit({
|
20
|
+
password: true,
|
21
|
+
}),
|
22
|
+
backendTokens: zod_1.default.object({
|
23
|
+
accessToken: zod_1.default.string(),
|
24
|
+
refreshToken: zod_1.default.string(),
|
25
|
+
expiresIn: zod_1.default.number(),
|
26
|
+
}),
|
27
|
+
});
|
28
|
+
class LoginMiExpoResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.loginMiExpoResponseSchema) {
|
29
|
+
}
|
30
|
+
exports.LoginMiExpoResponseDto = LoginMiExpoResponseDto;
|
31
|
+
//# sourceMappingURL=login-mi-expo.dto.js.map
|
@@ -26,6 +26,9 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
26
26
|
profile: z.ZodObject<{
|
27
27
|
id: z.ZodString;
|
28
28
|
shortId: z.ZodNumber;
|
29
|
+
firstTimeMiExpo: z.ZodBoolean;
|
30
|
+
username: z.ZodNullable<z.ZodString>;
|
31
|
+
password: z.ZodNullable<z.ZodString>;
|
29
32
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
30
33
|
isPhoneVerified: z.ZodBoolean;
|
31
34
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -42,11 +45,12 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
42
45
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
43
46
|
isInTrash: z.ZodBoolean;
|
44
47
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
45
|
-
firstTimeMiExpo: z.ZodBoolean;
|
46
48
|
created_at: z.ZodDate;
|
47
49
|
updated_at: z.ZodDate;
|
48
50
|
}, "strip", z.ZodTypeAny, {
|
49
51
|
id: string;
|
52
|
+
username: string | null;
|
53
|
+
password: string | null;
|
50
54
|
phoneNumber: string;
|
51
55
|
secondaryPhoneNumber: string | null;
|
52
56
|
fullName: string;
|
@@ -69,6 +73,8 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
69
73
|
movedToTrashDate: Date | null;
|
70
74
|
}, {
|
71
75
|
id: string;
|
76
|
+
username: string | null;
|
77
|
+
password: string | null;
|
72
78
|
phoneNumber: string;
|
73
79
|
secondaryPhoneNumber: string | null;
|
74
80
|
fullName: string;
|
@@ -93,6 +99,8 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
93
99
|
}, "strip", z.ZodTypeAny, {
|
94
100
|
profile: {
|
95
101
|
id: string;
|
102
|
+
username: string | null;
|
103
|
+
password: string | null;
|
96
104
|
phoneNumber: string;
|
97
105
|
secondaryPhoneNumber: string | null;
|
98
106
|
fullName: string;
|
@@ -118,6 +126,8 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
118
126
|
}, {
|
119
127
|
profile: {
|
120
128
|
id: string;
|
129
|
+
username: string | null;
|
130
|
+
password: string | null;
|
121
131
|
phoneNumber: string;
|
122
132
|
secondaryPhoneNumber: string | null;
|
123
133
|
fullName: string;
|
@@ -146,6 +156,9 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
146
156
|
profile: z.ZodObject<{
|
147
157
|
id: z.ZodString;
|
148
158
|
shortId: z.ZodNumber;
|
159
|
+
firstTimeMiExpo: z.ZodBoolean;
|
160
|
+
username: z.ZodNullable<z.ZodString>;
|
161
|
+
password: z.ZodNullable<z.ZodString>;
|
149
162
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
150
163
|
isPhoneVerified: z.ZodBoolean;
|
151
164
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -162,11 +175,12 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
162
175
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
163
176
|
isInTrash: z.ZodBoolean;
|
164
177
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
165
|
-
firstTimeMiExpo: z.ZodBoolean;
|
166
178
|
created_at: z.ZodString;
|
167
179
|
updated_at: z.ZodString;
|
168
180
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
169
181
|
id: string;
|
182
|
+
username: string | null;
|
183
|
+
password: string | null;
|
170
184
|
phoneNumber: string;
|
171
185
|
secondaryPhoneNumber: string | null;
|
172
186
|
fullName: string;
|
@@ -189,6 +203,8 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
189
203
|
movedToTrashDate: string | null;
|
190
204
|
}, {
|
191
205
|
id: string;
|
206
|
+
username: string | null;
|
207
|
+
password: string | null;
|
192
208
|
phoneNumber: string;
|
193
209
|
secondaryPhoneNumber: string | null;
|
194
210
|
fullName: string;
|
@@ -213,6 +229,8 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
213
229
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
214
230
|
profile: {
|
215
231
|
id: string;
|
232
|
+
username: string | null;
|
233
|
+
password: string | null;
|
216
234
|
phoneNumber: string;
|
217
235
|
secondaryPhoneNumber: string | null;
|
218
236
|
fullName: string;
|
@@ -238,6 +256,8 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
238
256
|
}, {
|
239
257
|
profile: {
|
240
258
|
id: string;
|
259
|
+
username: string | null;
|
260
|
+
password: string | null;
|
241
261
|
phoneNumber: string;
|
242
262
|
secondaryPhoneNumber: string | null;
|
243
263
|
fullName: string;
|
@@ -3,6 +3,9 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
3
3
|
profile: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
4
4
|
id: z.ZodString;
|
5
5
|
shortId: z.ZodNumber;
|
6
|
+
firstTimeMiExpo: z.ZodBoolean;
|
7
|
+
username: z.ZodNullable<z.ZodString>;
|
8
|
+
password: z.ZodNullable<z.ZodString>;
|
6
9
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
7
10
|
isPhoneVerified: z.ZodBoolean;
|
8
11
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -19,7 +22,6 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
19
22
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
20
23
|
isInTrash: z.ZodBoolean;
|
21
24
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
22
|
-
firstTimeMiExpo: z.ZodBoolean;
|
23
25
|
created_at: z.ZodDate;
|
24
26
|
updated_at: z.ZodDate;
|
25
27
|
}, "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "gender" | "birthDate" | "instagram" | "dni" | "alternativeNames">, {
|
@@ -411,6 +413,9 @@ declare const similarProfileSchema: z.ZodObject<{
|
|
411
413
|
profile: z.ZodObject<Pick<{
|
412
414
|
id: z.ZodString;
|
413
415
|
shortId: z.ZodNumber;
|
416
|
+
firstTimeMiExpo: z.ZodBoolean;
|
417
|
+
username: z.ZodNullable<z.ZodString>;
|
418
|
+
password: z.ZodNullable<z.ZodString>;
|
414
419
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
415
420
|
isPhoneVerified: z.ZodBoolean;
|
416
421
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -427,7 +432,6 @@ declare const similarProfileSchema: z.ZodObject<{
|
|
427
432
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
428
433
|
isInTrash: z.ZodBoolean;
|
429
434
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
430
|
-
firstTimeMiExpo: z.ZodBoolean;
|
431
435
|
created_at: z.ZodDate;
|
432
436
|
updated_at: z.ZodDate;
|
433
437
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
@@ -464,6 +468,9 @@ export declare const createProfileResponseSchema: z.ZodObject<{
|
|
464
468
|
profile: z.ZodObject<Pick<{
|
465
469
|
id: z.ZodString;
|
466
470
|
shortId: z.ZodNumber;
|
471
|
+
firstTimeMiExpo: z.ZodBoolean;
|
472
|
+
username: z.ZodNullable<z.ZodString>;
|
473
|
+
password: z.ZodNullable<z.ZodString>;
|
467
474
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
468
475
|
isPhoneVerified: z.ZodBoolean;
|
469
476
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -480,7 +487,6 @@ export declare const createProfileResponseSchema: z.ZodObject<{
|
|
480
487
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
481
488
|
isInTrash: z.ZodBoolean;
|
482
489
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
483
|
-
firstTimeMiExpo: z.ZodBoolean;
|
484
490
|
created_at: z.ZodDate;
|
485
491
|
updated_at: z.ZodDate;
|
486
492
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
@@ -585,6 +591,9 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
585
591
|
profile: z.ZodObject<Pick<{
|
586
592
|
id: z.ZodString;
|
587
593
|
shortId: z.ZodNumber;
|
594
|
+
firstTimeMiExpo: z.ZodBoolean;
|
595
|
+
username: z.ZodNullable<z.ZodString>;
|
596
|
+
password: z.ZodNullable<z.ZodString>;
|
588
597
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
589
598
|
isPhoneVerified: z.ZodBoolean;
|
590
599
|
secondaryPhoneNumber: z.ZodEffects<z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -601,7 +610,6 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
601
610
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
602
611
|
isInTrash: z.ZodBoolean;
|
603
612
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
604
|
-
firstTimeMiExpo: z.ZodBoolean;
|
605
613
|
created_at: z.ZodDate;
|
606
614
|
updated_at: z.ZodDate;
|
607
615
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
@@ -1,6 +1,9 @@
|
|
1
1
|
export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
shortId: import("zod").ZodNumber;
|
4
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
5
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
6
|
+
password: import("zod").ZodNullable<import("zod").ZodString>;
|
4
7
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
5
8
|
isPhoneVerified: import("zod").ZodBoolean;
|
6
9
|
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -17,11 +20,12 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
17
20
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
18
21
|
isInTrash: import("zod").ZodBoolean;
|
19
22
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
20
|
-
firstTimeMiExpo: import("zod").ZodBoolean;
|
21
23
|
created_at: import("zod").ZodDate;
|
22
24
|
updated_at: import("zod").ZodDate;
|
23
25
|
}, "strip", import("zod").ZodTypeAny, {
|
24
26
|
id: string;
|
27
|
+
username: string | null;
|
28
|
+
password: string | null;
|
25
29
|
phoneNumber: string;
|
26
30
|
secondaryPhoneNumber: string | null;
|
27
31
|
fullName: string;
|
@@ -44,6 +48,8 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
44
48
|
movedToTrashDate: Date | null;
|
45
49
|
}, {
|
46
50
|
id: string;
|
51
|
+
username: string | null;
|
52
|
+
password: string | null;
|
47
53
|
phoneNumber: string;
|
48
54
|
secondaryPhoneNumber: string | null;
|
49
55
|
fullName: string;
|
@@ -68,6 +74,9 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
68
74
|
declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
69
75
|
id: import("zod").ZodString;
|
70
76
|
shortId: import("zod").ZodNumber;
|
77
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
78
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
79
|
+
password: import("zod").ZodNullable<import("zod").ZodString>;
|
71
80
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
72
81
|
isPhoneVerified: import("zod").ZodBoolean;
|
73
82
|
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, string | null, string | null>;
|
@@ -84,11 +93,12 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
84
93
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
85
94
|
isInTrash: import("zod").ZodBoolean;
|
86
95
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
87
|
-
firstTimeMiExpo: import("zod").ZodBoolean;
|
88
96
|
created_at: import("zod").ZodString;
|
89
97
|
updated_at: import("zod").ZodString;
|
90
98
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
91
99
|
id: string;
|
100
|
+
username: string | null;
|
101
|
+
password: string | null;
|
92
102
|
phoneNumber: string;
|
93
103
|
secondaryPhoneNumber: string | null;
|
94
104
|
fullName: string;
|
@@ -111,6 +121,8 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
111
121
|
movedToTrashDate: string | null;
|
112
122
|
}, {
|
113
123
|
id: string;
|
124
|
+
username: string | null;
|
125
|
+
password: string | null;
|
114
126
|
phoneNumber: string;
|
115
127
|
secondaryPhoneNumber: string | null;
|
116
128
|
fullName: string;
|