@experts_hub/shared 1.0.694 → 1.0.696
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/user.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -1
- package/dist/index.mjs +4 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -6520,7 +6520,7 @@ __decorateClass([
|
|
|
6520
6520
|
(0, import_typeorm76.Column)({ name: "is_free", type: "boolean", default: false })
|
|
6521
6521
|
], UserSubscriptionPlanPricing.prototype, "isFree", 2);
|
|
6522
6522
|
__decorateClass([
|
|
6523
|
-
(0, import_typeorm76.Column)({ name: "stripe_price_id", type: "varchar", length: 100, nullable: true
|
|
6523
|
+
(0, import_typeorm76.Column)({ name: "stripe_price_id", type: "varchar", length: 100, nullable: true })
|
|
6524
6524
|
], UserSubscriptionPlanPricing.prototype, "stripePriceId", 2);
|
|
6525
6525
|
__decorateClass([
|
|
6526
6526
|
(0, import_typeorm76.Column)({ name: "is_active", type: "boolean", default: true })
|
|
@@ -6839,6 +6839,9 @@ __decorateClass([
|
|
|
6839
6839
|
__decorateClass([
|
|
6840
6840
|
(0, import_typeorm79.Column)({ name: "onboarded_by", type: "varchar", nullable: true })
|
|
6841
6841
|
], User.prototype, "onBoardedBy", 2);
|
|
6842
|
+
__decorateClass([
|
|
6843
|
+
(0, import_typeorm79.Column)({ name: "ip", type: "varchar", nullable: true })
|
|
6844
|
+
], User.prototype, "ip", 2);
|
|
6842
6845
|
__decorateClass([
|
|
6843
6846
|
(0, import_typeorm79.OneToMany)(() => Otp, (otp) => otp.user)
|
|
6844
6847
|
], User.prototype, "otps", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -6325,7 +6325,7 @@ __decorateClass([
|
|
|
6325
6325
|
Column76({ name: "is_free", type: "boolean", default: false })
|
|
6326
6326
|
], UserSubscriptionPlanPricing.prototype, "isFree", 2);
|
|
6327
6327
|
__decorateClass([
|
|
6328
|
-
Column76({ name: "stripe_price_id", type: "varchar", length: 100, nullable: true
|
|
6328
|
+
Column76({ name: "stripe_price_id", type: "varchar", length: 100, nullable: true })
|
|
6329
6329
|
], UserSubscriptionPlanPricing.prototype, "stripePriceId", 2);
|
|
6330
6330
|
__decorateClass([
|
|
6331
6331
|
Column76({ name: "is_active", type: "boolean", default: true })
|
|
@@ -6644,6 +6644,9 @@ __decorateClass([
|
|
|
6644
6644
|
__decorateClass([
|
|
6645
6645
|
Column79({ name: "onboarded_by", type: "varchar", nullable: true })
|
|
6646
6646
|
], User.prototype, "onBoardedBy", 2);
|
|
6647
|
+
__decorateClass([
|
|
6648
|
+
Column79({ name: "ip", type: "varchar", nullable: true })
|
|
6649
|
+
], User.prototype, "ip", 2);
|
|
6647
6650
|
__decorateClass([
|
|
6648
6651
|
OneToMany27(() => Otp, (otp) => otp.user)
|
|
6649
6652
|
], User.prototype, "otps", 2);
|