@experts_hub/shared 1.0.737 → 1.0.738
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 +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
|
@@ -93,8 +93,8 @@ export declare class User extends BaseEntity {
|
|
|
93
93
|
isMobileVerified: boolean;
|
|
94
94
|
isSocial: boolean;
|
|
95
95
|
isReferralUser: boolean;
|
|
96
|
-
|
|
97
|
-
|
|
96
|
+
isEkycVerified: boolean;
|
|
97
|
+
ekycVerifiedAt: Date | null;
|
|
98
98
|
lastLoginAt: Date;
|
|
99
99
|
lastLoginIp: string;
|
|
100
100
|
resetToken: string | null;
|
package/dist/index.d.mts
CHANGED
|
@@ -2145,8 +2145,8 @@ declare class User extends BaseEntity {
|
|
|
2145
2145
|
isMobileVerified: boolean;
|
|
2146
2146
|
isSocial: boolean;
|
|
2147
2147
|
isReferralUser: boolean;
|
|
2148
|
-
|
|
2149
|
-
|
|
2148
|
+
isEkycVerified: boolean;
|
|
2149
|
+
ekycVerifiedAt: Date | null;
|
|
2150
2150
|
lastLoginAt: Date;
|
|
2151
2151
|
lastLoginIp: string;
|
|
2152
2152
|
resetToken: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -2145,8 +2145,8 @@ declare class User extends BaseEntity {
|
|
|
2145
2145
|
isMobileVerified: boolean;
|
|
2146
2146
|
isSocial: boolean;
|
|
2147
2147
|
isReferralUser: boolean;
|
|
2148
|
-
|
|
2149
|
-
|
|
2148
|
+
isEkycVerified: boolean;
|
|
2149
|
+
ekycVerifiedAt: Date | null;
|
|
2150
2150
|
lastLoginAt: Date;
|
|
2151
2151
|
lastLoginIp: string;
|
|
2152
2152
|
resetToken: string | null;
|
package/dist/index.js
CHANGED
|
@@ -7166,15 +7166,15 @@ __decorateClass([
|
|
|
7166
7166
|
(0, import_typeorm82.Column)({ name: "is_referral_user", type: "boolean", default: false })
|
|
7167
7167
|
], User.prototype, "isReferralUser", 2);
|
|
7168
7168
|
__decorateClass([
|
|
7169
|
-
(0, import_typeorm82.Column)({ name: "
|
|
7170
|
-
], User.prototype, "
|
|
7169
|
+
(0, import_typeorm82.Column)({ name: "is_ekyc_verified", type: "boolean", default: false })
|
|
7170
|
+
], User.prototype, "isEkycVerified", 2);
|
|
7171
7171
|
__decorateClass([
|
|
7172
7172
|
(0, import_typeorm82.Column)({
|
|
7173
|
-
name: "
|
|
7173
|
+
name: "ekyc_verified_at",
|
|
7174
7174
|
type: "timestamp with time zone",
|
|
7175
7175
|
nullable: true
|
|
7176
7176
|
})
|
|
7177
|
-
], User.prototype, "
|
|
7177
|
+
], User.prototype, "ekycVerifiedAt", 2);
|
|
7178
7178
|
__decorateClass([
|
|
7179
7179
|
(0, import_typeorm82.Column)({
|
|
7180
7180
|
name: "last_login_at",
|
package/dist/index.mjs
CHANGED
|
@@ -6971,15 +6971,15 @@ __decorateClass([
|
|
|
6971
6971
|
Column82({ name: "is_referral_user", type: "boolean", default: false })
|
|
6972
6972
|
], User.prototype, "isReferralUser", 2);
|
|
6973
6973
|
__decorateClass([
|
|
6974
|
-
Column82({ name: "
|
|
6975
|
-
], User.prototype, "
|
|
6974
|
+
Column82({ name: "is_ekyc_verified", type: "boolean", default: false })
|
|
6975
|
+
], User.prototype, "isEkycVerified", 2);
|
|
6976
6976
|
__decorateClass([
|
|
6977
6977
|
Column82({
|
|
6978
|
-
name: "
|
|
6978
|
+
name: "ekyc_verified_at",
|
|
6979
6979
|
type: "timestamp with time zone",
|
|
6980
6980
|
nullable: true
|
|
6981
6981
|
})
|
|
6982
|
-
], User.prototype, "
|
|
6982
|
+
], User.prototype, "ekycVerifiedAt", 2);
|
|
6983
6983
|
__decorateClass([
|
|
6984
6984
|
Column82({
|
|
6985
6985
|
name: "last_login_at",
|