@experts_hub/shared 1.0.72 → 1.0.73

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.
@@ -23,7 +23,7 @@ export declare class CompanyProfile extends BaseEntity {
23
23
  bio: string;
24
24
  webSite: string;
25
25
  aboutCompany: string;
26
- serviceAgreement: boolean;
26
+ isServiceAgreementSigned: boolean;
27
27
  skills: string[];
28
28
  requiredFreelancer: string;
29
29
  kindOfHiring: KindOfHire;
package/dist/index.d.mts CHANGED
@@ -379,7 +379,7 @@ declare class CompanyProfile extends BaseEntity {
379
379
  bio: string;
380
380
  webSite: string;
381
381
  aboutCompany: string;
382
- serviceAgreement: boolean;
382
+ isServiceAgreementSigned: boolean;
383
383
  skills: string[];
384
384
  requiredFreelancer: string;
385
385
  kindOfHiring: KindOfHire;
package/dist/index.d.ts CHANGED
@@ -379,7 +379,7 @@ declare class CompanyProfile extends BaseEntity {
379
379
  bio: string;
380
380
  webSite: string;
381
381
  aboutCompany: string;
382
- serviceAgreement: boolean;
382
+ isServiceAgreementSigned: boolean;
383
383
  skills: string[];
384
384
  requiredFreelancer: string;
385
385
  kindOfHiring: KindOfHire;
package/dist/index.js CHANGED
@@ -893,14 +893,14 @@ __decorateClass([
893
893
  (0, import_typeorm8.Column)({ name: "bio", type: "varchar", nullable: true })
894
894
  ], CompanyProfile.prototype, "bio", 2);
895
895
  __decorateClass([
896
- (0, import_typeorm8.Column)({ name: "website", type: "varchar" })
896
+ (0, import_typeorm8.Column)({ name: "website", type: "varchar", nullable: true })
897
897
  ], CompanyProfile.prototype, "webSite", 2);
898
898
  __decorateClass([
899
- (0, import_typeorm8.Column)({ name: "about_company", type: "varchar" })
899
+ (0, import_typeorm8.Column)({ name: "about_company", type: "varchar", nullable: true })
900
900
  ], CompanyProfile.prototype, "aboutCompany", 2);
901
901
  __decorateClass([
902
- (0, import_typeorm8.Column)({ name: "service_agreement", type: "boolean", default: false })
903
- ], CompanyProfile.prototype, "serviceAgreement", 2);
902
+ (0, import_typeorm8.Column)({ name: "is_service_aggrement_signed", type: "boolean", default: false })
903
+ ], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
904
904
  __decorateClass([
905
905
  (0, import_typeorm8.Column)({ name: "skills", type: "text", nullable: true })
906
906
  ], CompanyProfile.prototype, "skills", 2);
package/dist/index.mjs CHANGED
@@ -911,14 +911,14 @@ __decorateClass([
911
911
  Column8({ name: "bio", type: "varchar", nullable: true })
912
912
  ], CompanyProfile.prototype, "bio", 2);
913
913
  __decorateClass([
914
- Column8({ name: "website", type: "varchar" })
914
+ Column8({ name: "website", type: "varchar", nullable: true })
915
915
  ], CompanyProfile.prototype, "webSite", 2);
916
916
  __decorateClass([
917
- Column8({ name: "about_company", type: "varchar" })
917
+ Column8({ name: "about_company", type: "varchar", nullable: true })
918
918
  ], CompanyProfile.prototype, "aboutCompany", 2);
919
919
  __decorateClass([
920
- Column8({ name: "service_agreement", type: "boolean", default: false })
921
- ], CompanyProfile.prototype, "serviceAgreement", 2);
920
+ Column8({ name: "is_service_aggrement_signed", type: "boolean", default: false })
921
+ ], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
922
922
  __decorateClass([
923
923
  Column8({ name: "skills", type: "text", nullable: true })
924
924
  ], CompanyProfile.prototype, "skills", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",