@amohamud23/notihub 1.0.142 → 1.0.143
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/index.cjs +2 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -117,7 +117,8 @@ var UserSchema = {
|
|
|
117
117
|
name: { type: String, required: true },
|
|
118
118
|
email: { type: String, required: true },
|
|
119
119
|
pushToken: { type: String, required: true },
|
|
120
|
-
isSignedIn: { type: Boolean, required: true, default: false }
|
|
120
|
+
isSignedIn: { type: Boolean, required: true, default: false },
|
|
121
|
+
dob: { type: String, required: true }
|
|
121
122
|
};
|
|
122
123
|
var UserSchema_default = UserSchema;
|
|
123
124
|
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -66,7 +66,8 @@ var UserSchema = {
|
|
|
66
66
|
name: { type: String, required: true },
|
|
67
67
|
email: { type: String, required: true },
|
|
68
68
|
pushToken: { type: String, required: true },
|
|
69
|
-
isSignedIn: { type: Boolean, required: true, default: false }
|
|
69
|
+
isSignedIn: { type: Boolean, required: true, default: false },
|
|
70
|
+
dob: { type: String, required: true }
|
|
70
71
|
};
|
|
71
72
|
var UserSchema_default = UserSchema;
|
|
72
73
|
|