@experts_hub/shared 1.0.288 → 1.0.290

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.
@@ -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;
@@ -6,5 +6,6 @@ export declare class State extends BaseEntity {
6
6
  country: Country;
7
7
  cities: City[];
8
8
  stateName: string;
9
+ stateCode: string;
9
10
  isActive: boolean;
10
11
  }
package/dist/index.d.mts CHANGED
@@ -655,6 +655,7 @@ declare class State extends BaseEntity {
655
655
  country: Country;
656
656
  cities: City[];
657
657
  stateName: string;
658
+ stateCode: string;
658
659
  isActive: boolean;
659
660
  }
660
661
 
@@ -2083,6 +2084,12 @@ declare class JobFreelancerRecommendation {
2083
2084
  freelancerEmail: string;
2084
2085
  freelancerProfilePicture: string;
2085
2086
  freelancerCreatedAt: Date;
2087
+ freelancerDesignation: string;
2088
+ freelancerExperience: string;
2089
+ freelancerExpertshubVerified: boolean;
2090
+ freelancerHourlyCompensation: number;
2091
+ freelancerCountryName: string;
2092
+ freelancerCountryIsoCode: string;
2086
2093
  clientId: number;
2087
2094
  clientUuid: string;
2088
2095
  clientFirstName: string;
package/dist/index.d.ts CHANGED
@@ -655,6 +655,7 @@ declare class State extends BaseEntity {
655
655
  country: Country;
656
656
  cities: City[];
657
657
  stateName: string;
658
+ stateCode: string;
658
659
  isActive: boolean;
659
660
  }
660
661
 
@@ -2083,6 +2084,12 @@ declare class JobFreelancerRecommendation {
2083
2084
  freelancerEmail: string;
2084
2085
  freelancerProfilePicture: string;
2085
2086
  freelancerCreatedAt: Date;
2087
+ freelancerDesignation: string;
2088
+ freelancerExperience: string;
2089
+ freelancerExpertshubVerified: boolean;
2090
+ freelancerHourlyCompensation: number;
2091
+ freelancerCountryName: string;
2092
+ freelancerCountryIsoCode: string;
2086
2093
  clientId: number;
2087
2094
  clientUuid: string;
2088
2095
  clientFirstName: string;
package/dist/index.js CHANGED
@@ -1688,6 +1688,15 @@ __decorateClass([
1688
1688
  comment: "Name of the state"
1689
1689
  })
1690
1690
  ], State.prototype, "stateName", 2);
1691
+ __decorateClass([
1692
+ (0, import_typeorm6.Column)({
1693
+ name: "state_code",
1694
+ type: "varchar",
1695
+ length: 2,
1696
+ nullable: true,
1697
+ comment: ""
1698
+ })
1699
+ ], State.prototype, "stateCode", 2);
1691
1700
  __decorateClass([
1692
1701
  (0, import_typeorm6.Column)({
1693
1702
  name: "is_active",
@@ -5139,6 +5148,24 @@ __decorateClass([
5139
5148
  __decorateClass([
5140
5149
  (0, import_typeorm50.ViewColumn)({ name: "freelancer_created_at" })
5141
5150
  ], JobFreelancerRecommendation.prototype, "freelancerCreatedAt", 2);
5151
+ __decorateClass([
5152
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_designation" })
5153
+ ], JobFreelancerRecommendation.prototype, "freelancerDesignation", 2);
5154
+ __decorateClass([
5155
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_experience" })
5156
+ ], JobFreelancerRecommendation.prototype, "freelancerExperience", 2);
5157
+ __decorateClass([
5158
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_expertshub_verified" })
5159
+ ], JobFreelancerRecommendation.prototype, "freelancerExpertshubVerified", 2);
5160
+ __decorateClass([
5161
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_hourly_compensation" })
5162
+ ], JobFreelancerRecommendation.prototype, "freelancerHourlyCompensation", 2);
5163
+ __decorateClass([
5164
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_country_name" })
5165
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryName", 2);
5166
+ __decorateClass([
5167
+ (0, import_typeorm50.ViewColumn)({ name: "freelancer_country_iso_code" })
5168
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryIsoCode", 2);
5142
5169
  __decorateClass([
5143
5170
  (0, import_typeorm50.ViewColumn)({ name: "client_id" })
5144
5171
  ], JobFreelancerRecommendation.prototype, "clientId", 2);
package/dist/index.mjs CHANGED
@@ -1632,6 +1632,15 @@ __decorateClass([
1632
1632
  comment: "Name of the state"
1633
1633
  })
1634
1634
  ], State.prototype, "stateName", 2);
1635
+ __decorateClass([
1636
+ Column6({
1637
+ name: "state_code",
1638
+ type: "varchar",
1639
+ length: 2,
1640
+ nullable: true,
1641
+ comment: ""
1642
+ })
1643
+ ], State.prototype, "stateCode", 2);
1635
1644
  __decorateClass([
1636
1645
  Column6({
1637
1646
  name: "is_active",
@@ -5287,6 +5296,24 @@ __decorateClass([
5287
5296
  __decorateClass([
5288
5297
  ViewColumn({ name: "freelancer_created_at" })
5289
5298
  ], JobFreelancerRecommendation.prototype, "freelancerCreatedAt", 2);
5299
+ __decorateClass([
5300
+ ViewColumn({ name: "freelancer_designation" })
5301
+ ], JobFreelancerRecommendation.prototype, "freelancerDesignation", 2);
5302
+ __decorateClass([
5303
+ ViewColumn({ name: "freelancer_experience" })
5304
+ ], JobFreelancerRecommendation.prototype, "freelancerExperience", 2);
5305
+ __decorateClass([
5306
+ ViewColumn({ name: "freelancer_expertshub_verified" })
5307
+ ], JobFreelancerRecommendation.prototype, "freelancerExpertshubVerified", 2);
5308
+ __decorateClass([
5309
+ ViewColumn({ name: "freelancer_hourly_compensation" })
5310
+ ], JobFreelancerRecommendation.prototype, "freelancerHourlyCompensation", 2);
5311
+ __decorateClass([
5312
+ ViewColumn({ name: "freelancer_country_name" })
5313
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryName", 2);
5314
+ __decorateClass([
5315
+ ViewColumn({ name: "freelancer_country_iso_code" })
5316
+ ], JobFreelancerRecommendation.prototype, "freelancerCountryIsoCode", 2);
5290
5317
  __decorateClass([
5291
5318
  ViewColumn({ name: "client_id" })
5292
5319
  ], JobFreelancerRecommendation.prototype, "clientId", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.288",
3
+ "version": "1.0.290",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",