@experts_hub/shared 1.0.262 → 1.0.263

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.
@@ -5,6 +5,7 @@ export declare class Otp {
5
5
  otp: string;
6
6
  otpPurpose: string;
7
7
  target: string;
8
+ fallbackTarget: string;
8
9
  expiresAt: Date;
9
10
  isUsed: boolean;
10
11
  isVerified: boolean;
package/dist/index.d.mts CHANGED
@@ -625,6 +625,7 @@ declare class Otp {
625
625
  otp: string;
626
626
  otpPurpose: string;
627
627
  target: string;
628
+ fallbackTarget: string;
628
629
  expiresAt: Date;
629
630
  isUsed: boolean;
630
631
  isVerified: boolean;
package/dist/index.d.ts CHANGED
@@ -625,6 +625,7 @@ declare class Otp {
625
625
  otp: string;
626
626
  otpPurpose: string;
627
627
  target: string;
628
+ fallbackTarget: string;
628
629
  expiresAt: Date;
629
630
  isUsed: boolean;
630
631
  isVerified: boolean;
package/dist/index.js CHANGED
@@ -1446,6 +1446,10 @@ __decorateClass([
1446
1446
  (0, import_typeorm4.Column)({ name: "target", type: "varchar", nullable: true }),
1447
1447
  (0, import_typeorm4.Index)()
1448
1448
  ], Otp.prototype, "target", 2);
1449
+ __decorateClass([
1450
+ (0, import_typeorm4.Column)({ name: "fallback_target", type: "varchar", nullable: true }),
1451
+ (0, import_typeorm4.Index)()
1452
+ ], Otp.prototype, "fallbackTarget", 2);
1449
1453
  // support expiration checks
1450
1454
  __decorateClass([
1451
1455
  (0, import_typeorm4.Column)({ name: "expire_at", type: "timestamp" }),
package/dist/index.mjs CHANGED
@@ -1378,6 +1378,10 @@ __decorateClass([
1378
1378
  Column4({ name: "target", type: "varchar", nullable: true }),
1379
1379
  Index()
1380
1380
  ], Otp.prototype, "target", 2);
1381
+ __decorateClass([
1382
+ Column4({ name: "fallback_target", type: "varchar", nullable: true }),
1383
+ Index()
1384
+ ], Otp.prototype, "fallbackTarget", 2);
1381
1385
  // support expiration checks
1382
1386
  __decorateClass([
1383
1387
  Column4({ name: "expire_at", type: "timestamp" }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.262",
3
+ "version": "1.0.263",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",