@experts_hub/shared 1.0.292 → 1.0.293

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.
@@ -61,6 +61,7 @@ export declare class User extends BaseEntity {
61
61
  accountStatus: AccountStatus;
62
62
  isEmailVerified: boolean;
63
63
  isMobileVerified: boolean;
64
+ isSocial: boolean;
64
65
  lastLoginAt: Date;
65
66
  lastLoginIp: string;
66
67
  resetToken: string | null;
package/dist/index.d.mts CHANGED
@@ -1210,6 +1210,7 @@ declare class User extends BaseEntity {
1210
1210
  accountStatus: AccountStatus;
1211
1211
  isEmailVerified: boolean;
1212
1212
  isMobileVerified: boolean;
1213
+ isSocial: boolean;
1213
1214
  lastLoginAt: Date;
1214
1215
  lastLoginIp: string;
1215
1216
  resetToken: string | null;
package/dist/index.d.ts CHANGED
@@ -1210,6 +1210,7 @@ declare class User extends BaseEntity {
1210
1210
  accountStatus: AccountStatus;
1211
1211
  isEmailVerified: boolean;
1212
1212
  isMobileVerified: boolean;
1213
+ isSocial: boolean;
1213
1214
  lastLoginAt: Date;
1214
1215
  lastLoginIp: string;
1215
1216
  resetToken: string | null;
package/dist/index.js CHANGED
@@ -3458,6 +3458,9 @@ __decorateClass([
3458
3458
  __decorateClass([
3459
3459
  (0, import_typeorm41.Column)({ name: "is_mobile_verified", type: "boolean", default: false })
3460
3460
  ], User.prototype, "isMobileVerified", 2);
3461
+ __decorateClass([
3462
+ (0, import_typeorm41.Column)({ name: "is_social", type: "boolean", default: false })
3463
+ ], User.prototype, "isSocial", 2);
3461
3464
  __decorateClass([
3462
3465
  (0, import_typeorm41.Column)({
3463
3466
  name: "last_login_at",
package/dist/index.mjs CHANGED
@@ -3521,6 +3521,9 @@ __decorateClass([
3521
3521
  __decorateClass([
3522
3522
  Column41({ name: "is_mobile_verified", type: "boolean", default: false })
3523
3523
  ], User.prototype, "isMobileVerified", 2);
3524
+ __decorateClass([
3525
+ Column41({ name: "is_social", type: "boolean", default: false })
3526
+ ], User.prototype, "isSocial", 2);
3524
3527
  __decorateClass([
3525
3528
  Column41({
3526
3529
  name: "last_login_at",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.292",
3
+ "version": "1.0.293",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",