@experts_hub/shared 1.0.639 → 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/entities/contract-summary.entity.d.ts +2 -1
- package/dist/entities/contract.entity.d.ts +2 -1
- package/dist/entities/hiring.entity.d.ts +1 -0
- package/dist/index.d.mts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -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;
|
|
@@ -6,7 +6,8 @@ import { Contract } from "./contract.entity";
|
|
|
6
6
|
export declare enum ContractSummaryStatusEnum {
|
|
7
7
|
PENDING = "PENDING",
|
|
8
8
|
ACTIVE = "ACTIVE",
|
|
9
|
-
COMPLETED = "COMPLETED"
|
|
9
|
+
COMPLETED = "COMPLETED",
|
|
10
|
+
CLOSED = "CLOSED"
|
|
10
11
|
}
|
|
11
12
|
export declare enum ContractSummaryPreferredEngagementTypeEnum {
|
|
12
13
|
FREELANCE = "FREELANCE"
|
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;
|
|
@@ -957,7 +958,8 @@ declare class TimesheetLine extends BaseEntity {
|
|
|
957
958
|
declare enum ContractSummaryStatusEnum {
|
|
958
959
|
PENDING = "PENDING",
|
|
959
960
|
ACTIVE = "ACTIVE",
|
|
960
|
-
COMPLETED = "COMPLETED"
|
|
961
|
+
COMPLETED = "COMPLETED",
|
|
962
|
+
CLOSED = "CLOSED"
|
|
961
963
|
}
|
|
962
964
|
declare enum ContractSummaryPreferredEngagementTypeEnum {
|
|
963
965
|
FREELANCE = "FREELANCE"
|
|
@@ -1003,6 +1005,7 @@ declare class Hiring extends BaseEntity {
|
|
|
1003
1005
|
contractSummary?: ContractSummary;
|
|
1004
1006
|
freelancerNatureOfWork: HiredFreelancerNatureOfWorkEnum;
|
|
1005
1007
|
isInvoiceGenrated: boolean;
|
|
1008
|
+
isClosed?: boolean;
|
|
1006
1009
|
}
|
|
1007
1010
|
|
|
1008
1011
|
declare enum InvoiceTypeEnum {
|
|
@@ -1094,7 +1097,8 @@ declare enum ContractStatusEnum {
|
|
|
1094
1097
|
DISPUTED = "DISPUTED",
|
|
1095
1098
|
REJECTED = "REJECTED",
|
|
1096
1099
|
RENEWED = "RENEWED",
|
|
1097
|
-
EXPIRED = "EXPIRED"
|
|
1100
|
+
EXPIRED = "EXPIRED",
|
|
1101
|
+
CLOSED = "CLOSED"
|
|
1098
1102
|
}
|
|
1099
1103
|
declare enum ContractTypeEnum {
|
|
1100
1104
|
NDA = "NDA",
|
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;
|
|
@@ -957,7 +958,8 @@ declare class TimesheetLine extends BaseEntity {
|
|
|
957
958
|
declare enum ContractSummaryStatusEnum {
|
|
958
959
|
PENDING = "PENDING",
|
|
959
960
|
ACTIVE = "ACTIVE",
|
|
960
|
-
COMPLETED = "COMPLETED"
|
|
961
|
+
COMPLETED = "COMPLETED",
|
|
962
|
+
CLOSED = "CLOSED"
|
|
961
963
|
}
|
|
962
964
|
declare enum ContractSummaryPreferredEngagementTypeEnum {
|
|
963
965
|
FREELANCE = "FREELANCE"
|
|
@@ -1003,6 +1005,7 @@ declare class Hiring extends BaseEntity {
|
|
|
1003
1005
|
contractSummary?: ContractSummary;
|
|
1004
1006
|
freelancerNatureOfWork: HiredFreelancerNatureOfWorkEnum;
|
|
1005
1007
|
isInvoiceGenrated: boolean;
|
|
1008
|
+
isClosed?: boolean;
|
|
1006
1009
|
}
|
|
1007
1010
|
|
|
1008
1011
|
declare enum InvoiceTypeEnum {
|
|
@@ -1094,7 +1097,8 @@ declare enum ContractStatusEnum {
|
|
|
1094
1097
|
DISPUTED = "DISPUTED",
|
|
1095
1098
|
REJECTED = "REJECTED",
|
|
1096
1099
|
RENEWED = "RENEWED",
|
|
1097
|
-
EXPIRED = "EXPIRED"
|
|
1100
|
+
EXPIRED = "EXPIRED",
|
|
1101
|
+
CLOSED = "CLOSED"
|
|
1098
1102
|
}
|
|
1099
1103
|
declare enum ContractTypeEnum {
|
|
1100
1104
|
NDA = "NDA",
|
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",
|
|
@@ -3394,6 +3401,7 @@ var ContractSummaryStatusEnum = /* @__PURE__ */ ((ContractSummaryStatusEnum2) =>
|
|
|
3394
3401
|
ContractSummaryStatusEnum2["PENDING"] = "PENDING";
|
|
3395
3402
|
ContractSummaryStatusEnum2["ACTIVE"] = "ACTIVE";
|
|
3396
3403
|
ContractSummaryStatusEnum2["COMPLETED"] = "COMPLETED";
|
|
3404
|
+
ContractSummaryStatusEnum2["CLOSED"] = "CLOSED";
|
|
3397
3405
|
return ContractSummaryStatusEnum2;
|
|
3398
3406
|
})(ContractSummaryStatusEnum || {});
|
|
3399
3407
|
var ContractSummaryPreferredEngagementTypeEnum = /* @__PURE__ */ ((ContractSummaryPreferredEngagementTypeEnum2) => {
|
|
@@ -3577,6 +3585,9 @@ __decorateClass([
|
|
|
3577
3585
|
__decorateClass([
|
|
3578
3586
|
(0, import_typeorm27.Column)({ name: "is_invoice_genrated", type: "boolean", default: false })
|
|
3579
3587
|
], Hiring.prototype, "isInvoiceGenrated", 2);
|
|
3588
|
+
__decorateClass([
|
|
3589
|
+
(0, import_typeorm27.Column)({ name: "is_closed", type: "boolean", nullable: true })
|
|
3590
|
+
], Hiring.prototype, "isClosed", 2);
|
|
3580
3591
|
Hiring = __decorateClass([
|
|
3581
3592
|
(0, import_typeorm27.Entity)("hirings")
|
|
3582
3593
|
], Hiring);
|
|
@@ -3813,6 +3824,7 @@ var ContractStatusEnum = /* @__PURE__ */ ((ContractStatusEnum2) => {
|
|
|
3813
3824
|
ContractStatusEnum2["REJECTED"] = "REJECTED";
|
|
3814
3825
|
ContractStatusEnum2["RENEWED"] = "RENEWED";
|
|
3815
3826
|
ContractStatusEnum2["EXPIRED"] = "EXPIRED";
|
|
3827
|
+
ContractStatusEnum2["CLOSED"] = "CLOSED";
|
|
3816
3828
|
return ContractStatusEnum2;
|
|
3817
3829
|
})(ContractStatusEnum || {});
|
|
3818
3830
|
var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
|
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",
|
|
@@ -3147,6 +3154,7 @@ var ContractSummaryStatusEnum = /* @__PURE__ */ ((ContractSummaryStatusEnum2) =>
|
|
|
3147
3154
|
ContractSummaryStatusEnum2["PENDING"] = "PENDING";
|
|
3148
3155
|
ContractSummaryStatusEnum2["ACTIVE"] = "ACTIVE";
|
|
3149
3156
|
ContractSummaryStatusEnum2["COMPLETED"] = "COMPLETED";
|
|
3157
|
+
ContractSummaryStatusEnum2["CLOSED"] = "CLOSED";
|
|
3150
3158
|
return ContractSummaryStatusEnum2;
|
|
3151
3159
|
})(ContractSummaryStatusEnum || {});
|
|
3152
3160
|
var ContractSummaryPreferredEngagementTypeEnum = /* @__PURE__ */ ((ContractSummaryPreferredEngagementTypeEnum2) => {
|
|
@@ -3330,6 +3338,9 @@ __decorateClass([
|
|
|
3330
3338
|
__decorateClass([
|
|
3331
3339
|
Column27({ name: "is_invoice_genrated", type: "boolean", default: false })
|
|
3332
3340
|
], Hiring.prototype, "isInvoiceGenrated", 2);
|
|
3341
|
+
__decorateClass([
|
|
3342
|
+
Column27({ name: "is_closed", type: "boolean", nullable: true })
|
|
3343
|
+
], Hiring.prototype, "isClosed", 2);
|
|
3333
3344
|
Hiring = __decorateClass([
|
|
3334
3345
|
Entity26("hirings")
|
|
3335
3346
|
], Hiring);
|
|
@@ -3566,6 +3577,7 @@ var ContractStatusEnum = /* @__PURE__ */ ((ContractStatusEnum2) => {
|
|
|
3566
3577
|
ContractStatusEnum2["REJECTED"] = "REJECTED";
|
|
3567
3578
|
ContractStatusEnum2["RENEWED"] = "RENEWED";
|
|
3568
3579
|
ContractStatusEnum2["EXPIRED"] = "EXPIRED";
|
|
3580
|
+
ContractStatusEnum2["CLOSED"] = "CLOSED";
|
|
3569
3581
|
return ContractStatusEnum2;
|
|
3570
3582
|
})(ContractStatusEnum || {});
|
|
3571
3583
|
var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
|