@experts_hub/shared 1.0.120 → 1.0.121

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.
@@ -36,4 +36,7 @@ export declare class FreelancerProfile extends BaseEntity {
36
36
  stackOverflowProfileLink: string;
37
37
  portfolioLink: string;
38
38
  onboardingStepCompleted: OnboardingStepEnum;
39
+ countryId: number;
40
+ freelancerAddress: string;
41
+ freelancerAbout: string;
39
42
  }
package/dist/index.d.mts CHANGED
@@ -326,6 +326,9 @@ declare class FreelancerProfile extends BaseEntity {
326
326
  stackOverflowProfileLink: string;
327
327
  portfolioLink: string;
328
328
  onboardingStepCompleted: OnboardingStepEnum;
329
+ countryId: number;
330
+ freelancerAddress: string;
331
+ freelancerAbout: string;
329
332
  }
330
333
 
331
334
  declare class Skill extends BaseEntity {
@@ -734,6 +737,7 @@ declare const PROFILE_PATTERN: {
734
737
  fetchFreelancerProfile: string;
735
738
  changeFreelancerPassword: string;
736
739
  uploadFreelancerProfilePic: string;
740
+ updateFreelancerProfile: string;
737
741
  };
738
742
 
739
743
  declare class FreelancerChangePasswordDto {
package/dist/index.d.ts CHANGED
@@ -326,6 +326,9 @@ declare class FreelancerProfile extends BaseEntity {
326
326
  stackOverflowProfileLink: string;
327
327
  portfolioLink: string;
328
328
  onboardingStepCompleted: OnboardingStepEnum;
329
+ countryId: number;
330
+ freelancerAddress: string;
331
+ freelancerAbout: string;
329
332
  }
330
333
 
331
334
  declare class Skill extends BaseEntity {
@@ -734,6 +737,7 @@ declare const PROFILE_PATTERN: {
734
737
  fetchFreelancerProfile: string;
735
738
  changeFreelancerPassword: string;
736
739
  uploadFreelancerProfilePic: string;
740
+ updateFreelancerProfile: string;
737
741
  };
738
742
 
739
743
  declare class FreelancerChangePasswordDto {
package/dist/index.js CHANGED
@@ -814,6 +814,15 @@ __decorateClass([
814
814
  nullable: true
815
815
  })
816
816
  ], FreelancerProfile.prototype, "onboardingStepCompleted", 2);
817
+ __decorateClass([
818
+ (0, import_typeorm5.Column)({ name: "country_id", type: "integer", nullable: true })
819
+ ], FreelancerProfile.prototype, "countryId", 2);
820
+ __decorateClass([
821
+ (0, import_typeorm5.Column)({ name: "freelancer_address", type: "varchar", nullable: true })
822
+ ], FreelancerProfile.prototype, "freelancerAddress", 2);
823
+ __decorateClass([
824
+ (0, import_typeorm5.Column)({ name: "freelancer_about", type: "varchar", nullable: true })
825
+ ], FreelancerProfile.prototype, "freelancerAbout", 2);
817
826
  FreelancerProfile = __decorateClass([
818
827
  (0, import_typeorm5.Entity)("freelancer_profiles")
819
828
  ], FreelancerProfile);
@@ -1761,7 +1770,8 @@ __decorateClass([
1761
1770
  var PROFILE_PATTERN = {
1762
1771
  fetchFreelancerProfile: "fetch.freelancer.profile",
1763
1772
  changeFreelancerPassword: "change.freelancer.password",
1764
- uploadFreelancerProfilePic: "upload.freelancer.profilepic"
1773
+ uploadFreelancerProfilePic: "upload.freelancer.profilepic",
1774
+ updateFreelancerProfile: "update.freelancer.profile"
1765
1775
  };
1766
1776
 
1767
1777
  // src/modules/user/freelancer-profile/dto/freelancer-change-password.dto.ts
package/dist/index.mjs CHANGED
@@ -795,6 +795,15 @@ __decorateClass([
795
795
  nullable: true
796
796
  })
797
797
  ], FreelancerProfile.prototype, "onboardingStepCompleted", 2);
798
+ __decorateClass([
799
+ Column5({ name: "country_id", type: "integer", nullable: true })
800
+ ], FreelancerProfile.prototype, "countryId", 2);
801
+ __decorateClass([
802
+ Column5({ name: "freelancer_address", type: "varchar", nullable: true })
803
+ ], FreelancerProfile.prototype, "freelancerAddress", 2);
804
+ __decorateClass([
805
+ Column5({ name: "freelancer_about", type: "varchar", nullable: true })
806
+ ], FreelancerProfile.prototype, "freelancerAbout", 2);
798
807
  FreelancerProfile = __decorateClass([
799
808
  Entity4("freelancer_profiles")
800
809
  ], FreelancerProfile);
@@ -1786,7 +1795,8 @@ __decorateClass([
1786
1795
  var PROFILE_PATTERN = {
1787
1796
  fetchFreelancerProfile: "fetch.freelancer.profile",
1788
1797
  changeFreelancerPassword: "change.freelancer.password",
1789
- uploadFreelancerProfilePic: "upload.freelancer.profilepic"
1798
+ uploadFreelancerProfilePic: "upload.freelancer.profilepic",
1799
+ updateFreelancerProfile: "update.freelancer.profile"
1790
1800
  };
1791
1801
 
1792
1802
  // src/modules/user/freelancer-profile/dto/freelancer-change-password.dto.ts
@@ -0,0 +1,22 @@
1
+ export declare enum NatureOfWorkDto {
2
+ FULLTIME = "FULLTIME",
3
+ PARTTIME = "PARTTIME",
4
+ BOTH = "BOTH"
5
+ }
6
+ export declare class UpdateFreelancerProfileDto {
7
+ firstName?: string;
8
+ lastName?: string;
9
+ email?: string;
10
+ mobile?: string;
11
+ countryId?: number;
12
+ currency?: string;
13
+ expectedHourlyCompensation?: string;
14
+ natureOfWork: NatureOfWorkDto;
15
+ portfolioLink?: string;
16
+ freelancerAddress?: string;
17
+ freelancerAbout?: string;
18
+ linkedinProfileLink?: string;
19
+ kaggleProfileLink?: string;
20
+ githubProfileLink?: string;
21
+ stackOverflowProfileLink?: string;
22
+ }
@@ -2,4 +2,5 @@ export declare const PROFILE_PATTERN: {
2
2
  fetchFreelancerProfile: string;
3
3
  changeFreelancerPassword: string;
4
4
  uploadFreelancerProfilePic: string;
5
+ updateFreelancerProfile: string;
5
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.120",
3
+ "version": "1.0.121",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",