@_henriquewilson/gabirubi-domain 1.0.21 → 1.0.22
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.
|
@@ -9,7 +9,7 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
9
9
|
email: z.ZodString;
|
|
10
10
|
password: z.ZodOptional<z.ZodString>;
|
|
11
11
|
name: z.ZodOptional<z.ZodString>;
|
|
12
|
-
phone: z.ZodOptional<z.
|
|
12
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
13
13
|
}>, {
|
|
14
14
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
15
15
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -21,7 +21,7 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
21
21
|
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
22
22
|
password?: string | undefined;
|
|
23
23
|
name?: string | undefined;
|
|
24
|
-
phone?:
|
|
24
|
+
phone?: string | undefined;
|
|
25
25
|
}, {
|
|
26
26
|
email: string;
|
|
27
27
|
id?: string | null | undefined;
|
|
@@ -31,7 +31,7 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
31
31
|
enabled?: boolean | undefined;
|
|
32
32
|
password?: string | undefined;
|
|
33
33
|
name?: string | undefined;
|
|
34
|
-
phone?:
|
|
34
|
+
phone?: string | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
type User = z.infer<typeof UserSchema>;
|
|
37
37
|
|
|
@@ -9,7 +9,7 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
9
9
|
email: z.ZodString;
|
|
10
10
|
password: z.ZodOptional<z.ZodString>;
|
|
11
11
|
name: z.ZodOptional<z.ZodString>;
|
|
12
|
-
phone: z.ZodOptional<z.
|
|
12
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
13
13
|
}>, {
|
|
14
14
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
15
15
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -21,7 +21,7 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
21
21
|
updateAt?: FirebaseFirestore.Timestamp | undefined;
|
|
22
22
|
password?: string | undefined;
|
|
23
23
|
name?: string | undefined;
|
|
24
|
-
phone?:
|
|
24
|
+
phone?: string | undefined;
|
|
25
25
|
}, {
|
|
26
26
|
email: string;
|
|
27
27
|
id?: string | null | undefined;
|
|
@@ -31,7 +31,7 @@ declare const UserSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
31
31
|
enabled?: boolean | undefined;
|
|
32
32
|
password?: string | undefined;
|
|
33
33
|
name?: string | undefined;
|
|
34
|
-
phone?:
|
|
34
|
+
phone?: string | undefined;
|
|
35
35
|
}>;
|
|
36
36
|
type User = z.infer<typeof UserSchema>;
|
|
37
37
|
|
package/dist/model/user.model.js
CHANGED
|
@@ -186801,7 +186801,7 @@ var UserSchema = ModelSchema.extend({
|
|
|
186801
186801
|
email: import_zod3.z.string().email(),
|
|
186802
186802
|
password: import_zod3.z.string().optional(),
|
|
186803
186803
|
name: import_zod3.z.string().optional(),
|
|
186804
|
-
phone: import_zod3.z.coerce.
|
|
186804
|
+
phone: import_zod3.z.coerce.string().optional()
|
|
186805
186805
|
}).merge(EnabledSchema);
|
|
186806
186806
|
// Annotate the CommonJS export names for ESM import in node:
|
|
186807
186807
|
0 && (module.exports = {
|