@experts_hub/shared 1.0.282 → 1.0.283

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.
@@ -68,4 +68,5 @@ export declare class FreelancerProfile extends BaseEntity {
68
68
  profileCompletedPercentage: Record<string, number>;
69
69
  serviceAgreementUrl: string;
70
70
  serviceAggrementSignedOn: Date;
71
+ isExpertshubVerified: boolean;
71
72
  }
package/dist/index.d.mts CHANGED
@@ -735,6 +735,7 @@ declare class FreelancerProfile extends BaseEntity {
735
735
  profileCompletedPercentage: Record<string, number>;
736
736
  serviceAgreementUrl: string;
737
737
  serviceAggrementSignedOn: Date;
738
+ isExpertshubVerified: boolean;
738
739
  }
739
740
 
740
741
  declare enum KindOfHire {
package/dist/index.d.ts CHANGED
@@ -735,6 +735,7 @@ declare class FreelancerProfile extends BaseEntity {
735
735
  profileCompletedPercentage: Record<string, number>;
736
736
  serviceAgreementUrl: string;
737
737
  serviceAggrementSignedOn: Date;
738
+ isExpertshubVerified: boolean;
738
739
  }
739
740
 
740
741
  declare enum KindOfHire {
package/dist/index.js CHANGED
@@ -1862,6 +1862,9 @@ __decorateClass([
1862
1862
  __decorateClass([
1863
1863
  (0, import_typeorm8.Column)({ name: "service_agreement_signed_on", type: "timestamp with time zone", nullable: true })
1864
1864
  ], FreelancerProfile.prototype, "serviceAggrementSignedOn", 2);
1865
+ __decorateClass([
1866
+ (0, import_typeorm8.Column)({ name: "is_expertshub_verified", type: "boolean", default: false })
1867
+ ], FreelancerProfile.prototype, "isExpertshubVerified", 2);
1865
1868
  FreelancerProfile = __decorateClass([
1866
1869
  (0, import_typeorm8.Entity)("freelancer_profiles")
1867
1870
  ], FreelancerProfile);
package/dist/index.mjs CHANGED
@@ -1805,6 +1805,9 @@ __decorateClass([
1805
1805
  __decorateClass([
1806
1806
  Column8({ name: "service_agreement_signed_on", type: "timestamp with time zone", nullable: true })
1807
1807
  ], FreelancerProfile.prototype, "serviceAggrementSignedOn", 2);
1808
+ __decorateClass([
1809
+ Column8({ name: "is_expertshub_verified", type: "boolean", default: false })
1810
+ ], FreelancerProfile.prototype, "isExpertshubVerified", 2);
1808
1811
  FreelancerProfile = __decorateClass([
1809
1812
  Entity7("freelancer_profiles")
1810
1813
  ], FreelancerProfile);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.282",
3
+ "version": "1.0.283",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",