@experts_hub/shared 1.0.186 → 1.0.188

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.
@@ -41,4 +41,5 @@ export declare class FreelancerProfile extends BaseEntity {
41
41
  countryId: number;
42
42
  address: string;
43
43
  about: string;
44
+ profileCompletedPercentage: Record<string, number>;
44
45
  }
package/dist/index.d.mts CHANGED
@@ -634,6 +634,7 @@ declare class FreelancerProfile extends BaseEntity {
634
634
  countryId: number;
635
635
  address: string;
636
636
  about: string;
637
+ profileCompletedPercentage: Record<string, number>;
637
638
  }
638
639
 
639
640
  declare enum KindOfHire {
package/dist/index.d.ts CHANGED
@@ -634,6 +634,7 @@ declare class FreelancerProfile extends BaseEntity {
634
634
  countryId: number;
635
635
  address: string;
636
636
  about: string;
637
+ profileCompletedPercentage: Record<string, number>;
637
638
  }
638
639
 
639
640
  declare enum KindOfHire {
package/dist/index.js CHANGED
@@ -1421,6 +1421,9 @@ __decorateClass([
1421
1421
  __decorateClass([
1422
1422
  (0, import_typeorm5.Column)({ name: "about", type: "varchar", nullable: true })
1423
1423
  ], FreelancerProfile.prototype, "about", 2);
1424
+ __decorateClass([
1425
+ (0, import_typeorm5.Column)({ name: "profile_completed_percentage", type: "json", default: { about: 0, skills: 0, project: 0, experience: 0, education: 0, declaration: 0 } })
1426
+ ], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
1424
1427
  FreelancerProfile = __decorateClass([
1425
1428
  (0, import_typeorm5.Entity)("freelancer_profiles")
1426
1429
  ], FreelancerProfile);
package/dist/index.mjs CHANGED
@@ -1392,6 +1392,9 @@ __decorateClass([
1392
1392
  __decorateClass([
1393
1393
  Column5({ name: "about", type: "varchar", nullable: true })
1394
1394
  ], FreelancerProfile.prototype, "about", 2);
1395
+ __decorateClass([
1396
+ Column5({ name: "profile_completed_percentage", type: "json", default: { about: 0, skills: 0, project: 0, experience: 0, education: 0, declaration: 0 } })
1397
+ ], FreelancerProfile.prototype, "profileCompletedPercentage", 2);
1395
1398
  FreelancerProfile = __decorateClass([
1396
1399
  Entity4("freelancer_profiles")
1397
1400
  ], FreelancerProfile);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.186",
3
+ "version": "1.0.188",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",