@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.
- 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 +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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);
|