@experts_hub/shared 1.0.122 → 1.0.123
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 -2
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -327,8 +327,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
327
327
|
portfolioLink: string;
|
|
328
328
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
329
329
|
countryId: number;
|
|
330
|
-
|
|
331
|
-
|
|
330
|
+
address: string;
|
|
331
|
+
about: string;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
declare class Skill extends BaseEntity {
|
package/dist/index.d.ts
CHANGED
|
@@ -327,8 +327,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
327
327
|
portfolioLink: string;
|
|
328
328
|
onboardingStepCompleted: OnboardingStepEnum;
|
|
329
329
|
countryId: number;
|
|
330
|
-
|
|
331
|
-
|
|
330
|
+
address: string;
|
|
331
|
+
about: string;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
declare class Skill extends BaseEntity {
|
package/dist/index.js
CHANGED
|
@@ -822,11 +822,11 @@ __decorateClass([
|
|
|
822
822
|
(0, import_typeorm5.Column)({ name: "country_id", type: "integer", nullable: true })
|
|
823
823
|
], FreelancerProfile.prototype, "countryId", 2);
|
|
824
824
|
__decorateClass([
|
|
825
|
-
(0, import_typeorm5.Column)({ name: "
|
|
826
|
-
], FreelancerProfile.prototype, "
|
|
825
|
+
(0, import_typeorm5.Column)({ name: "address", type: "varchar", nullable: true })
|
|
826
|
+
], FreelancerProfile.prototype, "address", 2);
|
|
827
827
|
__decorateClass([
|
|
828
|
-
(0, import_typeorm5.Column)({ name: "
|
|
829
|
-
], FreelancerProfile.prototype, "
|
|
828
|
+
(0, import_typeorm5.Column)({ name: "about", type: "varchar", nullable: true })
|
|
829
|
+
], FreelancerProfile.prototype, "about", 2);
|
|
830
830
|
FreelancerProfile = __decorateClass([
|
|
831
831
|
(0, import_typeorm5.Entity)("freelancer_profiles")
|
|
832
832
|
], FreelancerProfile);
|
package/dist/index.mjs
CHANGED
|
@@ -799,11 +799,11 @@ __decorateClass([
|
|
|
799
799
|
Column5({ name: "country_id", type: "integer", nullable: true })
|
|
800
800
|
], FreelancerProfile.prototype, "countryId", 2);
|
|
801
801
|
__decorateClass([
|
|
802
|
-
Column5({ name: "
|
|
803
|
-
], FreelancerProfile.prototype, "
|
|
802
|
+
Column5({ name: "address", type: "varchar", nullable: true })
|
|
803
|
+
], FreelancerProfile.prototype, "address", 2);
|
|
804
804
|
__decorateClass([
|
|
805
|
-
Column5({ name: "
|
|
806
|
-
], FreelancerProfile.prototype, "
|
|
805
|
+
Column5({ name: "about", type: "varchar", nullable: true })
|
|
806
|
+
], FreelancerProfile.prototype, "about", 2);
|
|
807
807
|
FreelancerProfile = __decorateClass([
|
|
808
808
|
Entity4("freelancer_profiles")
|
|
809
809
|
], FreelancerProfile);
|