@experts_hub/shared 1.0.158 → 1.0.159

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.
@@ -7,6 +7,7 @@ export declare class Otp {
7
7
  target: string;
8
8
  expiresAt: Date;
9
9
  isUsed: boolean;
10
+ isVerified: boolean;
10
11
  resendCount: number;
11
12
  createdAt: Date;
12
13
  user: User;
package/dist/index.d.mts CHANGED
@@ -572,6 +572,7 @@ declare class Otp {
572
572
  target: string;
573
573
  expiresAt: Date;
574
574
  isUsed: boolean;
575
+ isVerified: boolean;
575
576
  resendCount: number;
576
577
  createdAt: Date;
577
578
  user: User;
package/dist/index.d.ts CHANGED
@@ -572,6 +572,7 @@ declare class Otp {
572
572
  target: string;
573
573
  expiresAt: Date;
574
574
  isUsed: boolean;
575
+ isVerified: boolean;
575
576
  resendCount: number;
576
577
  createdAt: Date;
577
578
  user: User;
package/dist/index.js CHANGED
@@ -1223,6 +1223,10 @@ __decorateClass([
1223
1223
  (0, import_typeorm4.Column)({ name: "is_used", type: "boolean", default: false }),
1224
1224
  (0, import_typeorm4.Index)()
1225
1225
  ], Otp.prototype, "isUsed", 2);
1226
+ __decorateClass([
1227
+ (0, import_typeorm4.Column)({ name: "is_verified", type: "boolean", default: false }),
1228
+ (0, import_typeorm4.Index)()
1229
+ ], Otp.prototype, "isVerified", 2);
1226
1230
  __decorateClass([
1227
1231
  (0, import_typeorm4.Column)({ name: "resend_count", type: "int", default: 0 })
1228
1232
  ], Otp.prototype, "resendCount", 2);
package/dist/index.mjs CHANGED
@@ -1203,6 +1203,10 @@ __decorateClass([
1203
1203
  Column4({ name: "is_used", type: "boolean", default: false }),
1204
1204
  Index()
1205
1205
  ], Otp.prototype, "isUsed", 2);
1206
+ __decorateClass([
1207
+ Column4({ name: "is_verified", type: "boolean", default: false }),
1208
+ Index()
1209
+ ], Otp.prototype, "isVerified", 2);
1206
1210
  __decorateClass([
1207
1211
  Column4({ name: "resend_count", type: "int", default: 0 })
1208
1212
  ], Otp.prototype, "resendCount", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.158",
3
+ "version": "1.0.159",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",