@experts_hub/shared 1.0.144 → 1.0.145
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/entities/user.entity.d.ts +0 -1
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1 -4
- package/dist/index.mjs +1 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -2049,7 +2049,7 @@ __decorateClass([
|
|
|
2049
2049
|
(0, import_typeorm18.Column)({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
2050
2050
|
], User.prototype, "mobile", 2);
|
|
2051
2051
|
__decorateClass([
|
|
2052
|
-
(0, import_typeorm18.Column)({ name: "password", type: "varchar" })
|
|
2052
|
+
(0, import_typeorm18.Column)({ name: "password", type: "varchar", nullable: true })
|
|
2053
2053
|
], User.prototype, "password", 2);
|
|
2054
2054
|
__decorateClass([
|
|
2055
2055
|
(0, import_typeorm18.Column)({
|
|
@@ -2073,9 +2073,6 @@ __decorateClass([
|
|
|
2073
2073
|
__decorateClass([
|
|
2074
2074
|
(0, import_typeorm18.Column)({ name: "is_mobile_verified", type: "boolean", default: false })
|
|
2075
2075
|
], User.prototype, "isMobileVerified", 2);
|
|
2076
|
-
__decorateClass([
|
|
2077
|
-
(0, import_typeorm18.Column)({ name: "is_password_set_by_user", type: "boolean", default: false })
|
|
2078
|
-
], User.prototype, "isPasswordSetByUser", 2);
|
|
2079
2076
|
__decorateClass([
|
|
2080
2077
|
(0, import_typeorm18.Column)({
|
|
2081
2078
|
name: "last_login_at",
|
package/dist/index.mjs
CHANGED
|
@@ -2090,7 +2090,7 @@ __decorateClass([
|
|
|
2090
2090
|
Column18({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
2091
2091
|
], User.prototype, "mobile", 2);
|
|
2092
2092
|
__decorateClass([
|
|
2093
|
-
Column18({ name: "password", type: "varchar" })
|
|
2093
|
+
Column18({ name: "password", type: "varchar", nullable: true })
|
|
2094
2094
|
], User.prototype, "password", 2);
|
|
2095
2095
|
__decorateClass([
|
|
2096
2096
|
Column18({
|
|
@@ -2114,9 +2114,6 @@ __decorateClass([
|
|
|
2114
2114
|
__decorateClass([
|
|
2115
2115
|
Column18({ name: "is_mobile_verified", type: "boolean", default: false })
|
|
2116
2116
|
], User.prototype, "isMobileVerified", 2);
|
|
2117
|
-
__decorateClass([
|
|
2118
|
-
Column18({ name: "is_password_set_by_user", type: "boolean", default: false })
|
|
2119
|
-
], User.prototype, "isPasswordSetByUser", 2);
|
|
2120
2117
|
__decorateClass([
|
|
2121
2118
|
Column18({
|
|
2122
2119
|
name: "last_login_at",
|