expo-backend-types 0.30.0-EXPO-308-auth.1 → 0.30.0-EXPO-308-auth.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/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +17 -0
- package/dist/src/i18n/es.js +17 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/otp/dto/send-otp.dto.d.ts +34 -0
- package/dist/src/otp/dto/send-otp.dto.js +22 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +266 -0
- package/dist/src/otp/dto/verify-otp.dto.js +28 -0
- package/dist/src/otp/exports.d.ts +2 -0
- package/dist/src/otp/exports.js +19 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +8 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +12 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +32 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +12 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +12 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +2 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
- package/dist/src/profile/dto/profile.dto.d.ts +6 -0
- package/dist/src/profile/dto/profile.dto.js +2 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +12 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
- package/dist/types/prisma-schema/edge.js +15 -3
- package/dist/types/prisma-schema/index-browser.js +12 -0
- package/dist/types/prisma-schema/index.d.ts +1649 -9
- package/dist/types/prisma-schema/index.js +15 -3
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +19 -1
- package/dist/types/prisma-schema/wasm.js +12 -0
- package/dist/types/schema.d.ts +101 -0
- package/package.json +1 -1
package/dist/src/exports.d.ts
CHANGED
@@ -6,6 +6,7 @@ export * from './event-folder/exports';
|
|
6
6
|
export * from './event/exports';
|
7
7
|
export * from './location/exports';
|
8
8
|
export * from './message/exports';
|
9
|
+
export * from './otp/exports';
|
9
10
|
export * from './profile/exports';
|
10
11
|
export * from './shared/dto-modification/zod-without-dates';
|
11
12
|
export * from './tag-group/exports';
|
package/dist/src/exports.js
CHANGED
@@ -22,6 +22,7 @@ __exportStar(require("./event-folder/exports"), exports);
|
|
22
22
|
__exportStar(require("./event/exports"), exports);
|
23
23
|
__exportStar(require("./location/exports"), exports);
|
24
24
|
__exportStar(require("./message/exports"), exports);
|
25
|
+
__exportStar(require("./otp/exports"), exports);
|
25
26
|
__exportStar(require("./profile/exports"), exports);
|
26
27
|
__exportStar(require("./shared/dto-modification/zod-without-dates"), exports);
|
27
28
|
__exportStar(require("./tag-group/exports"), exports);
|
package/dist/src/i18n/es.d.ts
CHANGED
@@ -11,6 +11,7 @@ declare const _default: {
|
|
11
11
|
readonly location: "Ubicación";
|
12
12
|
readonly cannedResponse: "Respuesta enlatada";
|
13
13
|
readonly message: "Mensaje";
|
14
|
+
readonly otp: "OTP";
|
14
15
|
};
|
15
16
|
readonly tag: {
|
16
17
|
readonly assisted: "Asistió";
|
@@ -505,6 +506,22 @@ declare const _default: {
|
|
505
506
|
};
|
506
507
|
readonly 'send-automatic-response': "¡Hola {{name}}! Muchas gracias por participar de Expo Desfiles. ¡Ya estás dentro! En los próximos días vas a recibir más información acerca de los próximos desfiles. Podés seguirnos en nuestro Instagram @expodesfiles para enterarte de todas las novedades. ¡Saludos!";
|
507
508
|
};
|
509
|
+
readonly otp: {
|
510
|
+
readonly 'secret-not-found': "El secreto de OTP no se encontró";
|
511
|
+
readonly 'already-exists': "El código de verificación ya fue enviado";
|
512
|
+
readonly 'phone-already-verified': "El teléfono ya fue verificado";
|
513
|
+
readonly send: {
|
514
|
+
readonly error: "Error al enviar el código de verificación";
|
515
|
+
readonly 'phone-already-verified': "El teléfono ya fue verificado";
|
516
|
+
readonly 'profile-not-found': "No se encontró un perfil asociado al teléfono. Por favor registrate";
|
517
|
+
};
|
518
|
+
readonly verify: {
|
519
|
+
readonly 'error-format': "El código debe tener 6 dígitos";
|
520
|
+
readonly 'invalid-otp': "Error al verificar el código";
|
521
|
+
readonly 'no-otp-found': "No se encontró un código de verificación";
|
522
|
+
readonly 'otp-expired': "El código de verificación expiró. Por favor solicita uno nuevo";
|
523
|
+
};
|
524
|
+
};
|
508
525
|
};
|
509
526
|
};
|
510
527
|
export default _default;
|
package/dist/src/i18n/es.js
CHANGED
@@ -13,6 +13,7 @@ exports.default = {
|
|
13
13
|
location: 'Ubicación',
|
14
14
|
cannedResponse: 'Respuesta enlatada',
|
15
15
|
message: 'Mensaje',
|
16
|
+
otp: 'OTP',
|
16
17
|
},
|
17
18
|
tag: {
|
18
19
|
assisted: 'Asistió',
|
@@ -507,6 +508,22 @@ exports.default = {
|
|
507
508
|
},
|
508
509
|
'send-automatic-response': `¡Hola \{\{name\}\}! Muchas gracias por participar de Expo Desfiles. ¡Ya estás dentro! En los próximos días vas a recibir más información acerca de los próximos desfiles. Podés seguirnos en nuestro Instagram @expodesfiles para enterarte de todas las novedades. ¡Saludos!`,
|
509
510
|
},
|
511
|
+
otp: {
|
512
|
+
'secret-not-found': 'El secreto de OTP no se encontró',
|
513
|
+
'already-exists': 'El código de verificación ya fue enviado',
|
514
|
+
'phone-already-verified': 'El teléfono ya fue verificado',
|
515
|
+
send: {
|
516
|
+
error: 'Error al enviar el código de verificación',
|
517
|
+
'phone-already-verified': 'El teléfono ya fue verificado',
|
518
|
+
'profile-not-found': 'No se encontró un perfil asociado al teléfono. Por favor registrate',
|
519
|
+
},
|
520
|
+
verify: {
|
521
|
+
'error-format': 'El código debe tener 6 dígitos',
|
522
|
+
'invalid-otp': 'Error al verificar el código',
|
523
|
+
'no-otp-found': 'No se encontró un código de verificación',
|
524
|
+
'otp-expired': 'El código de verificación expiró. Por favor solicita uno nuevo',
|
525
|
+
},
|
526
|
+
},
|
510
527
|
},
|
511
528
|
};
|
512
529
|
//# sourceMappingURL=es.js.map
|
package/dist/src/i18n/es.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":";;AAAA,kBAAe;IACb,MAAM,EAAE;QACN,KAAK,EAAE;YACL,OAAO,EAAE,QAAQ;YACjB,GAAG,EAAE,UAAU;YACf,QAAQ,EAAE,oBAAoB;YAC9B,KAAK,EAAE,QAAQ;YACf,WAAW,EAAE,oBAAoB;YACjC,OAAO,EAAE,YAAY;YACrB,OAAO,EAAE,QAAQ;YACjB,QAAQ,EAAE,WAAW;YACrB,cAAc,EAAE,oBAAoB;YACpC,OAAO,EAAE,SAAS;
|
1
|
+
{"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const sendOtpSchema: z.ZodObject<{
|
3
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
4
|
+
}, "strip", z.ZodTypeAny, {
|
5
|
+
phoneNumber: string;
|
6
|
+
}, {
|
7
|
+
phoneNumber: string;
|
8
|
+
}>;
|
9
|
+
declare const SendOtpDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
10
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
11
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
12
|
+
phoneNumber: string;
|
13
|
+
}, {
|
14
|
+
phoneNumber: string;
|
15
|
+
}>>;
|
16
|
+
export declare class SendOtpDto extends SendOtpDto_base {
|
17
|
+
}
|
18
|
+
export declare const sendOtpResponseSchema: z.ZodObject<{
|
19
|
+
success: z.ZodBoolean;
|
20
|
+
}, "strip", z.ZodTypeAny, {
|
21
|
+
success: boolean;
|
22
|
+
}, {
|
23
|
+
success: boolean;
|
24
|
+
}>;
|
25
|
+
declare const SendOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
26
|
+
success: z.ZodBoolean;
|
27
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
28
|
+
success: boolean;
|
29
|
+
}, {
|
30
|
+
success: boolean;
|
31
|
+
}>>;
|
32
|
+
export declare class SendOtpResponseDto extends SendOtpResponseDto_base {
|
33
|
+
}
|
34
|
+
export {};
|
@@ -0,0 +1,22 @@
|
|
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.SendOtpResponseDto = exports.sendOtpResponseSchema = exports.SendOtpDto = exports.sendOtpSchema = void 0;
|
7
|
+
const profile_dto_1 = require("../../profile/dto/profile.dto");
|
8
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
9
|
+
const zod_1 = __importDefault(require("zod"));
|
10
|
+
exports.sendOtpSchema = zod_1.default.object({
|
11
|
+
phoneNumber: profile_dto_1.profileSchema.shape.phoneNumber,
|
12
|
+
});
|
13
|
+
class SendOtpDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.sendOtpSchema) {
|
14
|
+
}
|
15
|
+
exports.SendOtpDto = SendOtpDto;
|
16
|
+
exports.sendOtpResponseSchema = zod_1.default.object({
|
17
|
+
success: zod_1.default.boolean(),
|
18
|
+
});
|
19
|
+
class SendOtpResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.sendOtpResponseSchema) {
|
20
|
+
}
|
21
|
+
exports.SendOtpResponseDto = SendOtpResponseDto;
|
22
|
+
//# sourceMappingURL=send-otp.dto.js.map
|
@@ -0,0 +1,266 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const verifyOtpSchema: z.ZodObject<{
|
3
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
4
|
+
code: z.ZodString;
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
6
|
+
phoneNumber: string;
|
7
|
+
code: string;
|
8
|
+
}, {
|
9
|
+
phoneNumber: string;
|
10
|
+
code: string;
|
11
|
+
}>;
|
12
|
+
declare const VerifyOtpDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
13
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
14
|
+
code: z.ZodString;
|
15
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
16
|
+
phoneNumber: string;
|
17
|
+
code: string;
|
18
|
+
}, {
|
19
|
+
phoneNumber: string;
|
20
|
+
code: string;
|
21
|
+
}>>;
|
22
|
+
export declare class VerifyOtpDto extends VerifyOtpDto_base {
|
23
|
+
}
|
24
|
+
export declare const verifyOtpResponseSchema: z.ZodObject<{
|
25
|
+
success: z.ZodBoolean;
|
26
|
+
profile: z.ZodObject<{
|
27
|
+
id: z.ZodString;
|
28
|
+
shortId: z.ZodNumber;
|
29
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
30
|
+
isPhoneVerified: z.ZodBoolean;
|
31
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
32
|
+
fullName: z.ZodString;
|
33
|
+
firstName: z.ZodNullable<z.ZodString>;
|
34
|
+
gender: z.ZodNullable<z.ZodString>;
|
35
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
|
36
|
+
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
37
|
+
instagram: z.ZodNullable<z.ZodString>;
|
38
|
+
mail: z.ZodNullable<z.ZodString>;
|
39
|
+
dni: z.ZodNullable<z.ZodString>;
|
40
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
41
|
+
birthLocationId: z.ZodNullable<z.ZodString>;
|
42
|
+
residenceLocationId: z.ZodNullable<z.ZodString>;
|
43
|
+
isInTrash: z.ZodBoolean;
|
44
|
+
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
45
|
+
firstTimeMiExpo: z.ZodBoolean;
|
46
|
+
created_at: z.ZodDate;
|
47
|
+
updated_at: z.ZodDate;
|
48
|
+
}, "strip", z.ZodTypeAny, {
|
49
|
+
id: string;
|
50
|
+
phoneNumber: string;
|
51
|
+
secondaryPhoneNumber: string | null;
|
52
|
+
fullName: string;
|
53
|
+
profilePictureUrl: string | null;
|
54
|
+
mail: string | null;
|
55
|
+
created_at: Date;
|
56
|
+
updated_at: Date;
|
57
|
+
shortId: number;
|
58
|
+
firstTimeMiExpo: boolean;
|
59
|
+
isPhoneVerified: boolean;
|
60
|
+
firstName: string | null;
|
61
|
+
gender: string | null;
|
62
|
+
birthDate: Date | null;
|
63
|
+
instagram: string | null;
|
64
|
+
dni: string | null;
|
65
|
+
alternativeNames: string[];
|
66
|
+
birthLocationId: string | null;
|
67
|
+
residenceLocationId: string | null;
|
68
|
+
isInTrash: boolean;
|
69
|
+
movedToTrashDate: Date | null;
|
70
|
+
}, {
|
71
|
+
id: string;
|
72
|
+
phoneNumber: string;
|
73
|
+
secondaryPhoneNumber: string | null;
|
74
|
+
fullName: string;
|
75
|
+
profilePictureUrl: string | null;
|
76
|
+
mail: string | null;
|
77
|
+
created_at: Date;
|
78
|
+
updated_at: Date;
|
79
|
+
shortId: number;
|
80
|
+
firstTimeMiExpo: boolean;
|
81
|
+
isPhoneVerified: boolean;
|
82
|
+
firstName: string | null;
|
83
|
+
gender: string | null;
|
84
|
+
birthDate: string | null;
|
85
|
+
instagram: string | null;
|
86
|
+
dni: string | null;
|
87
|
+
alternativeNames: string[];
|
88
|
+
birthLocationId: string | null;
|
89
|
+
residenceLocationId: string | null;
|
90
|
+
isInTrash: boolean;
|
91
|
+
movedToTrashDate: Date | null;
|
92
|
+
}>;
|
93
|
+
}, "strip", z.ZodTypeAny, {
|
94
|
+
profile: {
|
95
|
+
id: string;
|
96
|
+
phoneNumber: string;
|
97
|
+
secondaryPhoneNumber: string | null;
|
98
|
+
fullName: string;
|
99
|
+
profilePictureUrl: string | null;
|
100
|
+
mail: string | null;
|
101
|
+
created_at: Date;
|
102
|
+
updated_at: Date;
|
103
|
+
shortId: number;
|
104
|
+
firstTimeMiExpo: boolean;
|
105
|
+
isPhoneVerified: boolean;
|
106
|
+
firstName: string | null;
|
107
|
+
gender: string | null;
|
108
|
+
birthDate: Date | null;
|
109
|
+
instagram: string | null;
|
110
|
+
dni: string | null;
|
111
|
+
alternativeNames: string[];
|
112
|
+
birthLocationId: string | null;
|
113
|
+
residenceLocationId: string | null;
|
114
|
+
isInTrash: boolean;
|
115
|
+
movedToTrashDate: Date | null;
|
116
|
+
};
|
117
|
+
success: boolean;
|
118
|
+
}, {
|
119
|
+
profile: {
|
120
|
+
id: string;
|
121
|
+
phoneNumber: string;
|
122
|
+
secondaryPhoneNumber: string | null;
|
123
|
+
fullName: string;
|
124
|
+
profilePictureUrl: string | null;
|
125
|
+
mail: string | null;
|
126
|
+
created_at: Date;
|
127
|
+
updated_at: Date;
|
128
|
+
shortId: number;
|
129
|
+
firstTimeMiExpo: boolean;
|
130
|
+
isPhoneVerified: boolean;
|
131
|
+
firstName: string | null;
|
132
|
+
gender: string | null;
|
133
|
+
birthDate: string | null;
|
134
|
+
instagram: string | null;
|
135
|
+
dni: string | null;
|
136
|
+
alternativeNames: string[];
|
137
|
+
birthLocationId: string | null;
|
138
|
+
residenceLocationId: string | null;
|
139
|
+
isInTrash: boolean;
|
140
|
+
movedToTrashDate: Date | null;
|
141
|
+
};
|
142
|
+
success: boolean;
|
143
|
+
}>;
|
144
|
+
declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
145
|
+
success: z.ZodBoolean;
|
146
|
+
profile: z.ZodObject<{
|
147
|
+
id: z.ZodString;
|
148
|
+
shortId: z.ZodNumber;
|
149
|
+
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
150
|
+
isPhoneVerified: z.ZodBoolean;
|
151
|
+
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
152
|
+
fullName: z.ZodString;
|
153
|
+
firstName: z.ZodNullable<z.ZodString>;
|
154
|
+
gender: z.ZodNullable<z.ZodString>;
|
155
|
+
birthDate: z.ZodNullable<z.ZodPipeline<z.ZodString, z.ZodDate>>;
|
156
|
+
profilePictureUrl: z.ZodNullable<z.ZodString>;
|
157
|
+
instagram: z.ZodNullable<z.ZodString>;
|
158
|
+
mail: z.ZodNullable<z.ZodString>;
|
159
|
+
dni: z.ZodNullable<z.ZodString>;
|
160
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
161
|
+
birthLocationId: z.ZodNullable<z.ZodString>;
|
162
|
+
residenceLocationId: z.ZodNullable<z.ZodString>;
|
163
|
+
isInTrash: z.ZodBoolean;
|
164
|
+
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
165
|
+
firstTimeMiExpo: z.ZodBoolean;
|
166
|
+
created_at: z.ZodString;
|
167
|
+
updated_at: z.ZodString;
|
168
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
169
|
+
id: string;
|
170
|
+
phoneNumber: string;
|
171
|
+
secondaryPhoneNumber: string | null;
|
172
|
+
fullName: string;
|
173
|
+
profilePictureUrl: string | null;
|
174
|
+
mail: string | null;
|
175
|
+
created_at: string;
|
176
|
+
updated_at: string;
|
177
|
+
shortId: number;
|
178
|
+
firstTimeMiExpo: boolean;
|
179
|
+
isPhoneVerified: boolean;
|
180
|
+
firstName: string | null;
|
181
|
+
gender: string | null;
|
182
|
+
birthDate: Date | null;
|
183
|
+
instagram: string | null;
|
184
|
+
dni: string | null;
|
185
|
+
alternativeNames: string[];
|
186
|
+
birthLocationId: string | null;
|
187
|
+
residenceLocationId: string | null;
|
188
|
+
isInTrash: boolean;
|
189
|
+
movedToTrashDate: string | null;
|
190
|
+
}, {
|
191
|
+
id: string;
|
192
|
+
phoneNumber: string;
|
193
|
+
secondaryPhoneNumber: string | null;
|
194
|
+
fullName: string;
|
195
|
+
profilePictureUrl: string | null;
|
196
|
+
mail: string | null;
|
197
|
+
created_at: string;
|
198
|
+
updated_at: string;
|
199
|
+
shortId: number;
|
200
|
+
firstTimeMiExpo: boolean;
|
201
|
+
isPhoneVerified: boolean;
|
202
|
+
firstName: string | null;
|
203
|
+
gender: string | null;
|
204
|
+
birthDate: string | null;
|
205
|
+
instagram: string | null;
|
206
|
+
dni: string | null;
|
207
|
+
alternativeNames: string[];
|
208
|
+
birthLocationId: string | null;
|
209
|
+
residenceLocationId: string | null;
|
210
|
+
isInTrash: boolean;
|
211
|
+
movedToTrashDate: string | null;
|
212
|
+
}>;
|
213
|
+
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
214
|
+
profile: {
|
215
|
+
id: string;
|
216
|
+
phoneNumber: string;
|
217
|
+
secondaryPhoneNumber: string | null;
|
218
|
+
fullName: string;
|
219
|
+
profilePictureUrl: string | null;
|
220
|
+
mail: string | null;
|
221
|
+
created_at: string;
|
222
|
+
updated_at: string;
|
223
|
+
shortId: number;
|
224
|
+
firstTimeMiExpo: boolean;
|
225
|
+
isPhoneVerified: boolean;
|
226
|
+
firstName: string | null;
|
227
|
+
gender: string | null;
|
228
|
+
birthDate: Date | null;
|
229
|
+
instagram: string | null;
|
230
|
+
dni: string | null;
|
231
|
+
alternativeNames: string[];
|
232
|
+
birthLocationId: string | null;
|
233
|
+
residenceLocationId: string | null;
|
234
|
+
isInTrash: boolean;
|
235
|
+
movedToTrashDate: string | null;
|
236
|
+
};
|
237
|
+
success: boolean;
|
238
|
+
}, {
|
239
|
+
profile: {
|
240
|
+
id: string;
|
241
|
+
phoneNumber: string;
|
242
|
+
secondaryPhoneNumber: string | null;
|
243
|
+
fullName: string;
|
244
|
+
profilePictureUrl: string | null;
|
245
|
+
mail: string | null;
|
246
|
+
created_at: string;
|
247
|
+
updated_at: string;
|
248
|
+
shortId: number;
|
249
|
+
firstTimeMiExpo: boolean;
|
250
|
+
isPhoneVerified: boolean;
|
251
|
+
firstName: string | null;
|
252
|
+
gender: string | null;
|
253
|
+
birthDate: string | null;
|
254
|
+
instagram: string | null;
|
255
|
+
dni: string | null;
|
256
|
+
alternativeNames: string[];
|
257
|
+
birthLocationId: string | null;
|
258
|
+
residenceLocationId: string | null;
|
259
|
+
isInTrash: boolean;
|
260
|
+
movedToTrashDate: string | null;
|
261
|
+
};
|
262
|
+
success: boolean;
|
263
|
+
}>>;
|
264
|
+
export declare class VerifyOtpResponseDto extends VerifyOtpResponseDto_base {
|
265
|
+
}
|
266
|
+
export {};
|
@@ -0,0 +1,28 @@
|
|
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.VerifyOtpResponseDto = exports.verifyOtpResponseSchema = exports.VerifyOtpDto = exports.verifyOtpSchema = void 0;
|
7
|
+
const translate_1 = require("../../i18n/translate");
|
8
|
+
const otp_service_1 = require("../otp.service");
|
9
|
+
const profile_dto_1 = require("../../profile/dto/profile.dto");
|
10
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
11
|
+
const zod_1 = __importDefault(require("zod"));
|
12
|
+
exports.verifyOtpSchema = zod_1.default.object({
|
13
|
+
phoneNumber: profile_dto_1.profileSchema.shape.phoneNumber,
|
14
|
+
code: zod_1.default.string().length(otp_service_1.OTP_LENGTH, {
|
15
|
+
message: (0, translate_1.translate)('route.otp.verify.error-format'),
|
16
|
+
}),
|
17
|
+
});
|
18
|
+
class VerifyOtpDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.verifyOtpSchema) {
|
19
|
+
}
|
20
|
+
exports.VerifyOtpDto = VerifyOtpDto;
|
21
|
+
exports.verifyOtpResponseSchema = zod_1.default.object({
|
22
|
+
success: zod_1.default.boolean(),
|
23
|
+
profile: profile_dto_1.profileSchema,
|
24
|
+
});
|
25
|
+
class VerifyOtpResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.verifyOtpResponseSchema) {
|
26
|
+
}
|
27
|
+
exports.VerifyOtpResponseDto = VerifyOtpResponseDto;
|
28
|
+
//# sourceMappingURL=verify-otp.dto.js.map
|
@@ -0,0 +1,19 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./dto/send-otp.dto"), exports);
|
18
|
+
__exportStar(require("./dto/verify-otp.dto"), exports);
|
19
|
+
//# sourceMappingURL=exports.js.map
|
@@ -4,6 +4,7 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
4
4
|
id: z.ZodString;
|
5
5
|
shortId: z.ZodNumber;
|
6
6
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
7
|
+
isPhoneVerified: z.ZodBoolean;
|
7
8
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
8
9
|
fullName: z.ZodString;
|
9
10
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -18,6 +19,7 @@ export declare const createProfileSchema: z.ZodObject<{
|
|
18
19
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
19
20
|
isInTrash: z.ZodBoolean;
|
20
21
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
22
|
+
firstTimeMiExpo: z.ZodBoolean;
|
21
23
|
created_at: z.ZodDate;
|
22
24
|
updated_at: z.ZodDate;
|
23
25
|
}, "phoneNumber" | "secondaryPhoneNumber" | "fullName" | "profilePictureUrl" | "mail" | "gender" | "birthDate" | "instagram" | "dni" | "alternativeNames">, {
|
@@ -410,6 +412,7 @@ declare const similarProfileSchema: z.ZodObject<{
|
|
410
412
|
id: z.ZodString;
|
411
413
|
shortId: z.ZodNumber;
|
412
414
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
415
|
+
isPhoneVerified: z.ZodBoolean;
|
413
416
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
414
417
|
fullName: z.ZodString;
|
415
418
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -424,6 +427,7 @@ declare const similarProfileSchema: z.ZodObject<{
|
|
424
427
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
425
428
|
isInTrash: z.ZodBoolean;
|
426
429
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
430
|
+
firstTimeMiExpo: z.ZodBoolean;
|
427
431
|
created_at: z.ZodDate;
|
428
432
|
updated_at: z.ZodDate;
|
429
433
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
@@ -461,6 +465,7 @@ export declare const createProfileResponseSchema: z.ZodObject<{
|
|
461
465
|
id: z.ZodString;
|
462
466
|
shortId: z.ZodNumber;
|
463
467
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
468
|
+
isPhoneVerified: z.ZodBoolean;
|
464
469
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
465
470
|
fullName: z.ZodString;
|
466
471
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -475,6 +480,7 @@ export declare const createProfileResponseSchema: z.ZodObject<{
|
|
475
480
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
476
481
|
isInTrash: z.ZodBoolean;
|
477
482
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
483
|
+
firstTimeMiExpo: z.ZodBoolean;
|
478
484
|
created_at: z.ZodDate;
|
479
485
|
updated_at: z.ZodDate;
|
480
486
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
@@ -580,6 +586,7 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
580
586
|
id: z.ZodString;
|
581
587
|
shortId: z.ZodNumber;
|
582
588
|
phoneNumber: z.ZodEffects<z.ZodString, string, string>;
|
589
|
+
isPhoneVerified: z.ZodBoolean;
|
583
590
|
secondaryPhoneNumber: z.ZodEffects<z.ZodNullable<z.ZodString>, string | null, string | null>;
|
584
591
|
fullName: z.ZodString;
|
585
592
|
firstName: z.ZodNullable<z.ZodString>;
|
@@ -594,6 +601,7 @@ declare const CreateProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
594
601
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
595
602
|
isInTrash: z.ZodBoolean;
|
596
603
|
movedToTrashDate: z.ZodNullable<z.ZodDate>;
|
604
|
+
firstTimeMiExpo: z.ZodBoolean;
|
597
605
|
created_at: z.ZodDate;
|
598
606
|
updated_at: z.ZodDate;
|
599
607
|
}, "id" | "phoneNumber" | "fullName">, "strip", z.ZodTypeAny, {
|
@@ -2,6 +2,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
2
2
|
id: import("zod").ZodString;
|
3
3
|
shortId: import("zod").ZodNumber;
|
4
4
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
5
|
+
isPhoneVerified: import("zod").ZodBoolean;
|
5
6
|
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>;
|
6
7
|
fullName: import("zod").ZodString;
|
7
8
|
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -16,6 +17,7 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
16
17
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
17
18
|
isInTrash: import("zod").ZodBoolean;
|
18
19
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
20
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
19
21
|
created_at: import("zod").ZodDate;
|
20
22
|
updated_at: import("zod").ZodDate;
|
21
23
|
}, "strip", import("zod").ZodTypeAny, {
|
@@ -28,6 +30,8 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
28
30
|
created_at: Date;
|
29
31
|
updated_at: Date;
|
30
32
|
shortId: number;
|
33
|
+
firstTimeMiExpo: boolean;
|
34
|
+
isPhoneVerified: boolean;
|
31
35
|
firstName: string | null;
|
32
36
|
gender: string | null;
|
33
37
|
birthDate: Date | null;
|
@@ -48,6 +52,8 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
48
52
|
created_at: Date;
|
49
53
|
updated_at: Date;
|
50
54
|
shortId: number;
|
55
|
+
firstTimeMiExpo: boolean;
|
56
|
+
isPhoneVerified: boolean;
|
51
57
|
firstName: string | null;
|
52
58
|
gender: string | null;
|
53
59
|
birthDate: string | null;
|
@@ -63,6 +69,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
63
69
|
id: import("zod").ZodString;
|
64
70
|
shortId: import("zod").ZodNumber;
|
65
71
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
72
|
+
isPhoneVerified: import("zod").ZodBoolean;
|
66
73
|
secondaryPhoneNumber: import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>;
|
67
74
|
fullName: import("zod").ZodString;
|
68
75
|
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
@@ -77,6 +84,7 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
77
84
|
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
78
85
|
isInTrash: import("zod").ZodBoolean;
|
79
86
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
87
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
80
88
|
created_at: import("zod").ZodString;
|
81
89
|
updated_at: import("zod").ZodString;
|
82
90
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
@@ -89,6 +97,8 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
89
97
|
created_at: string;
|
90
98
|
updated_at: string;
|
91
99
|
shortId: number;
|
100
|
+
firstTimeMiExpo: boolean;
|
101
|
+
isPhoneVerified: boolean;
|
92
102
|
firstName: string | null;
|
93
103
|
gender: string | null;
|
94
104
|
birthDate: Date | null;
|
@@ -109,6 +119,8 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
109
119
|
created_at: string;
|
110
120
|
updated_at: string;
|
111
121
|
shortId: number;
|
122
|
+
firstTimeMiExpo: boolean;
|
123
|
+
isPhoneVerified: boolean;
|
112
124
|
firstName: string | null;
|
113
125
|
gender: string | null;
|
114
126
|
birthDate: string | null;
|