@experts_hub/shared 1.0.242 → 1.0.243
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/freelancer-profile.entity.d.ts +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
|
@@ -61,6 +61,8 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
61
61
|
stackOverflowProfileLink: string;
|
|
62
62
|
portfolioLink: string;
|
|
63
63
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
64
|
+
designation: string;
|
|
65
|
+
experience: string;
|
|
64
66
|
address: string;
|
|
65
67
|
about: string;
|
|
66
68
|
profileCompletedPercentage: Record<string, number>;
|
package/dist/index.d.mts
CHANGED
|
@@ -712,6 +712,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
712
712
|
stackOverflowProfileLink: string;
|
|
713
713
|
portfolioLink: string;
|
|
714
714
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
715
|
+
designation: string;
|
|
716
|
+
experience: string;
|
|
715
717
|
address: string;
|
|
716
718
|
about: string;
|
|
717
719
|
profileCompletedPercentage: Record<string, number>;
|
package/dist/index.d.ts
CHANGED
|
@@ -712,6 +712,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
712
712
|
stackOverflowProfileLink: string;
|
|
713
713
|
portfolioLink: string;
|
|
714
714
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
715
|
+
designation: string;
|
|
716
|
+
experience: string;
|
|
715
717
|
address: string;
|
|
716
718
|
about: string;
|
|
717
719
|
profileCompletedPercentage: Record<string, number>;
|
package/dist/index.js
CHANGED
|
@@ -1746,6 +1746,12 @@ __decorateClass([
|
|
|
1746
1746
|
nullable: true
|
|
1747
1747
|
})
|
|
1748
1748
|
], FreelancerProfile.prototype, "onboardingStepCompleted", 2);
|
|
1749
|
+
__decorateClass([
|
|
1750
|
+
(0, import_typeorm8.Column)({ name: "designation", type: "varchar", nullable: true })
|
|
1751
|
+
], FreelancerProfile.prototype, "designation", 2);
|
|
1752
|
+
__decorateClass([
|
|
1753
|
+
(0, import_typeorm8.Column)({ name: "experience", type: "varchar", nullable: true })
|
|
1754
|
+
], FreelancerProfile.prototype, "experience", 2);
|
|
1749
1755
|
__decorateClass([
|
|
1750
1756
|
(0, import_typeorm8.Column)({ name: "address", type: "varchar", nullable: true })
|
|
1751
1757
|
], FreelancerProfile.prototype, "address", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -1692,6 +1692,12 @@ __decorateClass([
|
|
|
1692
1692
|
nullable: true
|
|
1693
1693
|
})
|
|
1694
1694
|
], FreelancerProfile.prototype, "onboardingStepCompleted", 2);
|
|
1695
|
+
__decorateClass([
|
|
1696
|
+
Column8({ name: "designation", type: "varchar", nullable: true })
|
|
1697
|
+
], FreelancerProfile.prototype, "designation", 2);
|
|
1698
|
+
__decorateClass([
|
|
1699
|
+
Column8({ name: "experience", type: "varchar", nullable: true })
|
|
1700
|
+
], FreelancerProfile.prototype, "experience", 2);
|
|
1695
1701
|
__decorateClass([
|
|
1696
1702
|
Column8({ name: "address", type: "varchar", nullable: true })
|
|
1697
1703
|
], FreelancerProfile.prototype, "address", 2);
|