@experts_hub/shared 1.0.334 → 1.0.335

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.
@@ -74,6 +74,7 @@ export declare class User extends BaseEntity {
74
74
  linkedInId: string;
75
75
  googleId: string;
76
76
  gitLabsId: string;
77
+ onBoardedBy: string;
77
78
  otps: Otp[];
78
79
  senseloafLogs: SenseloafLog[];
79
80
  companyProfile: CompanyProfile;
package/dist/index.d.mts CHANGED
@@ -1342,6 +1342,7 @@ declare class User extends BaseEntity {
1342
1342
  linkedInId: string;
1343
1343
  googleId: string;
1344
1344
  gitLabsId: string;
1345
+ onBoardedBy: string;
1345
1346
  otps: Otp[];
1346
1347
  senseloafLogs: SenseloafLog[];
1347
1348
  companyProfile: CompanyProfile;
package/dist/index.d.ts CHANGED
@@ -1342,6 +1342,7 @@ declare class User extends BaseEntity {
1342
1342
  linkedInId: string;
1343
1343
  googleId: string;
1344
1344
  gitLabsId: string;
1345
+ onBoardedBy: string;
1345
1346
  otps: Otp[];
1346
1347
  senseloafLogs: SenseloafLog[];
1347
1348
  companyProfile: CompanyProfile;
package/dist/index.js CHANGED
@@ -3941,6 +3941,9 @@ __decorateClass([
3941
3941
  __decorateClass([
3942
3942
  (0, import_typeorm45.Column)({ name: "gitlabs_id", type: "varchar", nullable: true })
3943
3943
  ], User.prototype, "gitLabsId", 2);
3944
+ __decorateClass([
3945
+ (0, import_typeorm45.Column)({ name: "onboarded_by", type: "varchar", nullable: true })
3946
+ ], User.prototype, "onBoardedBy", 2);
3944
3947
  __decorateClass([
3945
3948
  (0, import_typeorm45.OneToMany)(() => Otp, (otp) => otp.user)
3946
3949
  ], User.prototype, "otps", 2);
package/dist/index.mjs CHANGED
@@ -4006,6 +4006,9 @@ __decorateClass([
4006
4006
  __decorateClass([
4007
4007
  Column45({ name: "gitlabs_id", type: "varchar", nullable: true })
4008
4008
  ], User.prototype, "gitLabsId", 2);
4009
+ __decorateClass([
4010
+ Column45({ name: "onboarded_by", type: "varchar", nullable: true })
4011
+ ], User.prototype, "onBoardedBy", 2);
4009
4012
  __decorateClass([
4010
4013
  OneToMany14(() => Otp, (otp) => otp.user)
4011
4014
  ], User.prototype, "otps", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.334",
3
+ "version": "1.0.335",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",