@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.
@@ -99,6 +99,7 @@ export declare class User extends BaseEntity {
99
99
  googleId: string;
100
100
  gitLabsId: string;
101
101
  onBoardedBy: string;
102
+ ip: string;
102
103
  otps: Otp[];
103
104
  senseloafLogs: SenseloafLog[];
104
105
  companyProfile: CompanyProfile;
package/dist/index.d.mts CHANGED
@@ -2042,6 +2042,7 @@ declare class User extends BaseEntity {
2042
2042
  googleId: string;
2043
2043
  gitLabsId: string;
2044
2044
  onBoardedBy: string;
2045
+ ip: string;
2045
2046
  otps: Otp[];
2046
2047
  senseloafLogs: SenseloafLog[];
2047
2048
  companyProfile: CompanyProfile;
package/dist/index.d.ts CHANGED
@@ -2042,6 +2042,7 @@ declare class User extends BaseEntity {
2042
2042
  googleId: string;
2043
2043
  gitLabsId: string;
2044
2044
  onBoardedBy: string;
2045
+ ip: string;
2045
2046
  otps: Otp[];
2046
2047
  senseloafLogs: SenseloafLog[];
2047
2048
  companyProfile: CompanyProfile;
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, unique: 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, unique: 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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.694",
3
+ "version": "1.0.696",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",