@experts_hub/shared 1.0.287 → 1.0.289

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.
@@ -66,6 +66,7 @@ export declare class FreelancerProfile extends BaseEntity {
66
66
  address: string;
67
67
  about: string;
68
68
  profileCompletedPercentage: Record<string, number>;
69
+ isServiceAgreementSigned: boolean;
69
70
  serviceAgreementUrl: string;
70
71
  serviceAggrementSignedOn: Date;
71
72
  isExpertshubVerified: boolean;
@@ -16,6 +16,12 @@ export declare class JobFreelancerRecommendation {
16
16
  freelancerEmail: string;
17
17
  freelancerProfilePicture: string;
18
18
  freelancerCreatedAt: Date;
19
+ freelancerDesignation: string;
20
+ freelancerExperience: string;
21
+ freelancerExpertshubVerified: boolean;
22
+ freelancerHourlyCompensation: number;
23
+ freelancerCountryName: string;
24
+ freelancerCountryIsoCode: string;
19
25
  clientId: number;
20
26
  clientUuid: string;
21
27
  clientFirstName: string;
package/dist/index.d.mts CHANGED
@@ -733,6 +733,7 @@ declare class FreelancerProfile extends BaseEntity {
733
733
  address: string;
734
734
  about: string;
735
735
  profileCompletedPercentage: Record<string, number>;
736
+ isServiceAgreementSigned: boolean;
736
737
  serviceAgreementUrl: string;
737
738
  serviceAggrementSignedOn: Date;
738
739
  isExpertshubVerified: boolean;
@@ -2082,6 +2083,12 @@ declare class JobFreelancerRecommendation {
2082
2083
  freelancerEmail: string;
2083
2084
  freelancerProfilePicture: string;
2084
2085
  freelancerCreatedAt: Date;
2086
+ freelancerDesignation: string;
2087
+ freelancerExperience: string;
2088
+ freelancerExpertshubVerified: boolean;
2089
+ freelancerHourlyCompensation: number;
2090
+ freelancerCountryName: string;
2091
+ freelancerCountryIsoCode: string;
2085
2092
  clientId: number;
2086
2093
  clientUuid: string;
2087
2094
  clientFirstName: string;
package/dist/index.d.ts CHANGED
@@ -733,6 +733,7 @@ declare class FreelancerProfile extends BaseEntity {
733
733
  address: string;
734
734
  about: string;
735
735
  profileCompletedPercentage: Record<string, number>;
736
+ isServiceAgreementSigned: boolean;
736
737
  serviceAgreementUrl: string;
737
738
  serviceAggrementSignedOn: Date;
738
739
  isExpertshubVerified: boolean;
@@ -2082,6 +2083,12 @@ declare class JobFreelancerRecommendation {
2082
2083
  freelancerEmail: string;
2083
2084
  freelancerProfilePicture: string;
2084
2085
  freelancerCreatedAt: Date;
2086
+ freelancerDesignation: string;
2087
+ freelancerExperience: string;
2088
+ freelancerExpertshubVerified: boolean;
2089
+ freelancerHourlyCompensation: number;
2090
+ freelancerCountryName: string;
2091
+ freelancerCountryIsoCode: string;
2085
2092
  clientId: number;
2086
2093
  clientUuid: string;
2087
2094
  clientFirstName: string;
package/dist/index.js CHANGED
@@ -1942,6 +1942,13 @@ __decorateClass([
1942
1942
  }
1943
1943
  })
1944
1944
  ], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
1945
+ __decorateClass([
1946
+ (0, import_typeorm8.Column)({
1947
+ name: "is_service_aggrement_signed",
1948
+ type: "boolean",
1949
+ default: false
1950
+ })
1951
+ ], FreelancerProfile.prototype, "isServiceAgreementSigned", 2);
1945
1952
  __decorateClass([
1946
1953
  (0, import_typeorm8.Column)({ name: "service_agreement_url", type: "varchar", nullable: true })
1947
1954
  ], FreelancerProfile.prototype, "serviceAgreementUrl", 2);
@@ -5132,6 +5139,24 @@ __decorateClass([
5132
5139
  __decorateClass([
5133
5140
  (0, import_typeorm50.ViewColumn)({ name: "freelancer_created_at" })
5134
5141
  ], JobFreelancerRecommendation.prototype, "freelancerCreatedAt", 2);
5142
+ __decorateClass([
5143
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_designation" })
5144
+ ], JobFreelancerRecommendation.prototype, "freelancerDesignation", 2);
5145
+ __decorateClass([
5146
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_experience" })
5147
+ ], JobFreelancerRecommendation.prototype, "freelancerExperience", 2);
5148
+ __decorateClass([
5149
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_expertshub_verified" })
5150
+ ], JobFreelancerRecommendation.prototype, "freelancerExpertshubVerified", 2);
5151
+ __decorateClass([
5152
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_hourly_compensation" })
5153
+ ], JobFreelancerRecommendation.prototype, "freelancerHourlyCompensation", 2);
5154
+ __decorateClass([
5155
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_country_name" })
5156
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryName", 2);
5157
+ __decorateClass([
5158
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_country_iso_code" })
5159
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryIsoCode", 2);
5135
5160
  __decorateClass([
5136
5161
  (0, import_typeorm50.ViewColumn)({ name: "client_id" })
5137
5162
  ], JobFreelancerRecommendation.prototype, "clientId", 2);
package/dist/index.mjs CHANGED
@@ -1886,6 +1886,13 @@ __decorateClass([
1886
1886
  }
1887
1887
  })
1888
1888
  ], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
1889
+ __decorateClass([
1890
+ Column8({
1891
+ name: "is_service_aggrement_signed",
1892
+ type: "boolean",
1893
+ default: false
1894
+ })
1895
+ ], FreelancerProfile.prototype, "isServiceAgreementSigned", 2);
1889
1896
  __decorateClass([
1890
1897
  Column8({ name: "service_agreement_url", type: "varchar", nullable: true })
1891
1898
  ], FreelancerProfile.prototype, "serviceAgreementUrl", 2);
@@ -5280,6 +5287,24 @@ __decorateClass([
5280
5287
  __decorateClass([
5281
5288
  ViewColumn({ name: "freelancer_created_at" })
5282
5289
  ], JobFreelancerRecommendation.prototype, "freelancerCreatedAt", 2);
5290
+ __decorateClass([
5291
+ ViewColumn({ name: "freelancer_designation" })
5292
+ ], JobFreelancerRecommendation.prototype, "freelancerDesignation", 2);
5293
+ __decorateClass([
5294
+ ViewColumn({ name: "freelancer_experience" })
5295
+ ], JobFreelancerRecommendation.prototype, "freelancerExperience", 2);
5296
+ __decorateClass([
5297
+ ViewColumn({ name: "freelancer_expertshub_verified" })
5298
+ ], JobFreelancerRecommendation.prototype, "freelancerExpertshubVerified", 2);
5299
+ __decorateClass([
5300
+ ViewColumn({ name: "freelancer_hourly_compensation" })
5301
+ ], JobFreelancerRecommendation.prototype, "freelancerHourlyCompensation", 2);
5302
+ __decorateClass([
5303
+ ViewColumn({ name: "freelancer_country_name" })
5304
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryName", 2);
5305
+ __decorateClass([
5306
+ ViewColumn({ name: "freelancer_country_iso_code" })
5307
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryIsoCode", 2);
5283
5308
  __decorateClass([
5284
5309
  ViewColumn({ name: "client_id" })
5285
5310
  ], JobFreelancerRecommendation.prototype, "clientId", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.287",
3
+ "version": "1.0.289",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",