@experts_hub/shared 1.0.641 → 1.0.643
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 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +7 -0
- package/dist/index.mjs +7 -0
- package/package.json +1 -1
|
@@ -39,6 +39,7 @@ export declare class CompanyProfile extends BaseEntity {
|
|
|
39
39
|
webSite: string;
|
|
40
40
|
aboutCompany: string;
|
|
41
41
|
isServiceAgreementSigned: boolean;
|
|
42
|
+
skipServiceAgreement: boolean;
|
|
42
43
|
isJobPostingRestricted: boolean;
|
|
43
44
|
originalDocumentUrl: string;
|
|
44
45
|
serviceAgreementUrl: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -422,6 +422,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
422
422
|
webSite: string;
|
|
423
423
|
aboutCompany: string;
|
|
424
424
|
isServiceAgreementSigned: boolean;
|
|
425
|
+
skipServiceAgreement: boolean;
|
|
425
426
|
isJobPostingRestricted: boolean;
|
|
426
427
|
originalDocumentUrl: string;
|
|
427
428
|
serviceAgreementUrl: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -422,6 +422,7 @@ declare class CompanyProfile extends BaseEntity {
|
|
|
422
422
|
webSite: string;
|
|
423
423
|
aboutCompany: string;
|
|
424
424
|
isServiceAgreementSigned: boolean;
|
|
425
|
+
skipServiceAgreement: boolean;
|
|
425
426
|
isJobPostingRestricted: boolean;
|
|
426
427
|
originalDocumentUrl: string;
|
|
427
428
|
serviceAgreementUrl: string;
|
package/dist/index.js
CHANGED
|
@@ -1573,6 +1573,13 @@ __decorateClass([
|
|
|
1573
1573
|
default: false
|
|
1574
1574
|
})
|
|
1575
1575
|
], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
|
|
1576
|
+
__decorateClass([
|
|
1577
|
+
(0, import_typeorm5.Column)({
|
|
1578
|
+
name: "skip_service_agreement",
|
|
1579
|
+
type: "boolean",
|
|
1580
|
+
default: false
|
|
1581
|
+
})
|
|
1582
|
+
], CompanyProfile.prototype, "skipServiceAgreement", 2);
|
|
1576
1583
|
__decorateClass([
|
|
1577
1584
|
(0, import_typeorm5.Column)({
|
|
1578
1585
|
name: "is_job_posting_restricted",
|
package/dist/index.mjs
CHANGED
|
@@ -1269,6 +1269,13 @@ __decorateClass([
|
|
|
1269
1269
|
default: false
|
|
1270
1270
|
})
|
|
1271
1271
|
], CompanyProfile.prototype, "isServiceAgreementSigned", 2);
|
|
1272
|
+
__decorateClass([
|
|
1273
|
+
Column5({
|
|
1274
|
+
name: "skip_service_agreement",
|
|
1275
|
+
type: "boolean",
|
|
1276
|
+
default: false
|
|
1277
|
+
})
|
|
1278
|
+
], CompanyProfile.prototype, "skipServiceAgreement", 2);
|
|
1272
1279
|
__decorateClass([
|
|
1273
1280
|
Column5({
|
|
1274
1281
|
name: "is_job_posting_restricted",
|