@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.
- package/dist/entities/otp.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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" }),
|