expo-backend-types 0.30.0-EXPO-308-auth.7 → 0.30.0-EXPO-308-auth.8
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.
@@ -17,17 +17,29 @@ export declare class SendOtpDto extends SendOtpDto_base {
|
|
17
17
|
}
|
18
18
|
export declare const sendOtpResponseSchema: z.ZodObject<{
|
19
19
|
success: z.ZodBoolean;
|
20
|
+
hasVerified: z.ZodBoolean;
|
21
|
+
hasUsername: z.ZodBoolean;
|
20
22
|
}, "strip", z.ZodTypeAny, {
|
21
23
|
success: boolean;
|
24
|
+
hasVerified: boolean;
|
25
|
+
hasUsername: boolean;
|
22
26
|
}, {
|
23
27
|
success: boolean;
|
28
|
+
hasVerified: boolean;
|
29
|
+
hasUsername: boolean;
|
24
30
|
}>;
|
25
31
|
declare const SendOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
26
32
|
success: z.ZodBoolean;
|
33
|
+
hasVerified: z.ZodBoolean;
|
34
|
+
hasUsername: z.ZodBoolean;
|
27
35
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
28
36
|
success: boolean;
|
37
|
+
hasVerified: boolean;
|
38
|
+
hasUsername: boolean;
|
29
39
|
}, {
|
30
40
|
success: boolean;
|
41
|
+
hasVerified: boolean;
|
42
|
+
hasUsername: boolean;
|
31
43
|
}>>;
|
32
44
|
export declare class SendOtpResponseDto extends SendOtpResponseDto_base {
|
33
45
|
}
|
@@ -15,6 +15,8 @@ class SendOtpDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDa
|
|
15
15
|
exports.SendOtpDto = SendOtpDto;
|
16
16
|
exports.sendOtpResponseSchema = zod_1.default.object({
|
17
17
|
success: zod_1.default.boolean(),
|
18
|
+
hasVerified: zod_1.default.boolean(),
|
19
|
+
hasUsername: zod_1.default.boolean(),
|
18
20
|
});
|
19
21
|
class SendOtpResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.sendOtpResponseSchema) {
|
20
22
|
}
|
package/dist/types/schema.d.ts
CHANGED