@experts_hub/shared 1.0.188 → 1.0.189
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/index.js +1 -4
- package/dist/index.mjs +1 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2574,10 +2574,7 @@ __decorateClass([
|
|
|
2574
2574
|
(0, import_typeorm28.OneToMany)(() => SenseloafLog, (senseloafLog) => senseloafLog.user)
|
|
2575
2575
|
], User.prototype, "senseloafLogs", 2);
|
|
2576
2576
|
__decorateClass([
|
|
2577
|
-
(0, import_typeorm28.OneToOne)(
|
|
2578
|
-
() => FreelancerProfile,
|
|
2579
|
-
(freelancerProfile) => freelancerProfile.user
|
|
2580
|
-
)
|
|
2577
|
+
(0, import_typeorm28.OneToOne)(() => FreelancerProfile, (freelancerProfile) => freelancerProfile.user, { cascade: true })
|
|
2581
2578
|
], User.prototype, "freelancerProfile", 2);
|
|
2582
2579
|
__decorateClass([
|
|
2583
2580
|
(0, import_typeorm28.OneToOne)(() => CompanyProfile, (companyProfile) => companyProfile.user, {
|
package/dist/index.mjs
CHANGED
|
@@ -2650,10 +2650,7 @@ __decorateClass([
|
|
|
2650
2650
|
OneToMany8(() => SenseloafLog, (senseloafLog) => senseloafLog.user)
|
|
2651
2651
|
], User.prototype, "senseloafLogs", 2);
|
|
2652
2652
|
__decorateClass([
|
|
2653
|
-
OneToOne(
|
|
2654
|
-
() => FreelancerProfile,
|
|
2655
|
-
(freelancerProfile) => freelancerProfile.user
|
|
2656
|
-
)
|
|
2653
|
+
OneToOne(() => FreelancerProfile, (freelancerProfile) => freelancerProfile.user, { cascade: true })
|
|
2657
2654
|
], User.prototype, "freelancerProfile", 2);
|
|
2658
2655
|
__decorateClass([
|
|
2659
2656
|
OneToOne(() => CompanyProfile, (companyProfile) => companyProfile.user, {
|