@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.
@@ -37,6 +37,6 @@ export declare class FreelancerProfile extends BaseEntity {
37
37
  portfolioLink: string;
38
38
  onboardingStepCompleted: OnboardingStepEnum;
39
39
  countryId: number;
40
- freelancerAddress: string;
41
- freelancerAbout: string;
40
+ address: string;
41
+ about: string;
42
42
  }
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
- freelancerAddress: string;
331
- freelancerAbout: string;
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
- freelancerAddress: string;
331
- freelancerAbout: string;
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: "freelancer_address", type: "varchar", nullable: true })
826
- ], FreelancerProfile.prototype, "freelancerAddress", 2);
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: "freelancer_about", type: "varchar", nullable: true })
829
- ], FreelancerProfile.prototype, "freelancerAbout", 2);
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: "freelancer_address", type: "varchar", nullable: true })
803
- ], FreelancerProfile.prototype, "freelancerAddress", 2);
802
+ Column5({ name: "address", type: "varchar", nullable: true })
803
+ ], FreelancerProfile.prototype, "address", 2);
804
804
  __decorateClass([
805
- Column5({ name: "freelancer_about", type: "varchar", nullable: true })
806
- ], FreelancerProfile.prototype, "freelancerAbout", 2);
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.122",
3
+ "version": "1.0.123",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",