@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.
- 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
|
@@ -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);
|