@experts_hub/shared 1.0.71 → 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.
- package/dist/entities/company-profile.entity.d.ts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ export declare class CompanyProfile extends BaseEntity {
|
|
|
23
23
|
bio: string;
|
|
24
24
|
webSite: string;
|
|
25
25
|
aboutCompany: string;
|
|
26
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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: "
|
|
903
|
-
], CompanyProfile.prototype, "
|
|
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);
|
|
@@ -946,7 +946,7 @@ __decorateClass([
|
|
|
946
946
|
], UpdateCompanyProfileDto.prototype, "companyName", 2);
|
|
947
947
|
__decorateClass([
|
|
948
948
|
(0, import_class_validator15.IsOptional)(),
|
|
949
|
-
(0, import_class_validator15.IsString)({ message: "
|
|
949
|
+
(0, import_class_validator15.IsString)({ message: "Company bio must be a string." })
|
|
950
950
|
], UpdateCompanyProfileDto.prototype, "bio", 2);
|
|
951
951
|
__decorateClass([
|
|
952
952
|
(0, import_class_validator15.IsOptional)(),
|
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: "
|
|
921
|
-
], CompanyProfile.prototype, "
|
|
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);
|
|
@@ -964,7 +964,7 @@ __decorateClass([
|
|
|
964
964
|
], UpdateCompanyProfileDto.prototype, "companyName", 2);
|
|
965
965
|
__decorateClass([
|
|
966
966
|
IsOptional4(),
|
|
967
|
-
IsString8({ message: "
|
|
967
|
+
IsString8({ message: "Company bio must be a string." })
|
|
968
968
|
], UpdateCompanyProfileDto.prototype, "bio", 2);
|
|
969
969
|
__decorateClass([
|
|
970
970
|
IsOptional4(),
|