@experts_hub/shared 1.0.619 → 1.0.621
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/index.d.mts
CHANGED
|
@@ -1636,7 +1636,7 @@ declare class ContractSummary extends BaseEntity {
|
|
|
1636
1636
|
escrowDepositeAmount: number;
|
|
1637
1637
|
status: ContractSummaryStatusEnum;
|
|
1638
1638
|
contracts: Contract[];
|
|
1639
|
-
|
|
1639
|
+
hiring: Hiring;
|
|
1640
1640
|
}
|
|
1641
1641
|
|
|
1642
1642
|
declare enum HiredFreelancerNatureOfWorkEnum {
|
|
@@ -2039,6 +2039,7 @@ declare class FreelancerFramework extends BaseEntity {
|
|
|
2039
2039
|
declare enum AssessmentStatusEnum {
|
|
2040
2040
|
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
2041
2041
|
ACTIVE = "ACTIVE",
|
|
2042
|
+
EVALUATING = "EVALUATING",
|
|
2042
2043
|
COMPELETED = "COMPELETED",
|
|
2043
2044
|
PASSED = "PASSED",
|
|
2044
2045
|
FAILED = "FAILED",
|
package/dist/index.d.ts
CHANGED
|
@@ -1636,7 +1636,7 @@ declare class ContractSummary extends BaseEntity {
|
|
|
1636
1636
|
escrowDepositeAmount: number;
|
|
1637
1637
|
status: ContractSummaryStatusEnum;
|
|
1638
1638
|
contracts: Contract[];
|
|
1639
|
-
|
|
1639
|
+
hiring: Hiring;
|
|
1640
1640
|
}
|
|
1641
1641
|
|
|
1642
1642
|
declare enum HiredFreelancerNatureOfWorkEnum {
|
|
@@ -2039,6 +2039,7 @@ declare class FreelancerFramework extends BaseEntity {
|
|
|
2039
2039
|
declare enum AssessmentStatusEnum {
|
|
2040
2040
|
NOT_ATTEMPTED = "NOT_ATTEMPTED",
|
|
2041
2041
|
ACTIVE = "ACTIVE",
|
|
2042
|
+
EVALUATING = "EVALUATING",
|
|
2042
2043
|
COMPELETED = "COMPELETED",
|
|
2043
2044
|
PASSED = "PASSED",
|
|
2044
2045
|
FAILED = "FAILED",
|
package/dist/index.js
CHANGED
|
@@ -4688,7 +4688,7 @@ __decorateClass([
|
|
|
4688
4688
|
], ContractSummary.prototype, "contracts", 2);
|
|
4689
4689
|
__decorateClass([
|
|
4690
4690
|
(0, import_typeorm26.OneToOne)(() => Hiring, (hiring) => hiring.contractSummary)
|
|
4691
|
-
], ContractSummary.prototype, "
|
|
4691
|
+
], ContractSummary.prototype, "hiring", 2);
|
|
4692
4692
|
ContractSummary = __decorateClass([
|
|
4693
4693
|
(0, import_typeorm26.Entity)("contract_summaries")
|
|
4694
4694
|
], ContractSummary);
|
|
@@ -4740,7 +4740,7 @@ __decorateClass([
|
|
|
4740
4740
|
__decorateClass([
|
|
4741
4741
|
(0, import_typeorm27.OneToOne)(
|
|
4742
4742
|
() => ContractSummary,
|
|
4743
|
-
(contractSummary) => contractSummary.
|
|
4743
|
+
(contractSummary) => contractSummary.hiring
|
|
4744
4744
|
),
|
|
4745
4745
|
(0, import_typeorm27.JoinColumn)({ name: "contract_summary_id" })
|
|
4746
4746
|
], Hiring.prototype, "contractSummary", 2);
|
|
@@ -5958,6 +5958,7 @@ var import_typeorm44 = require("typeorm");
|
|
|
5958
5958
|
var AssessmentStatusEnum = /* @__PURE__ */ ((AssessmentStatusEnum2) => {
|
|
5959
5959
|
AssessmentStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
5960
5960
|
AssessmentStatusEnum2["ACTIVE"] = "ACTIVE";
|
|
5961
|
+
AssessmentStatusEnum2["EVALUATING"] = "EVALUATING";
|
|
5961
5962
|
AssessmentStatusEnum2["COMPELETED"] = "COMPELETED";
|
|
5962
5963
|
AssessmentStatusEnum2["PASSED"] = "PASSED";
|
|
5963
5964
|
AssessmentStatusEnum2["FAILED"] = "FAILED";
|
package/dist/index.mjs
CHANGED
|
@@ -4494,7 +4494,7 @@ __decorateClass([
|
|
|
4494
4494
|
], ContractSummary.prototype, "contracts", 2);
|
|
4495
4495
|
__decorateClass([
|
|
4496
4496
|
OneToOne5(() => Hiring, (hiring) => hiring.contractSummary)
|
|
4497
|
-
], ContractSummary.prototype, "
|
|
4497
|
+
], ContractSummary.prototype, "hiring", 2);
|
|
4498
4498
|
ContractSummary = __decorateClass([
|
|
4499
4499
|
Entity25("contract_summaries")
|
|
4500
4500
|
], ContractSummary);
|
|
@@ -4546,7 +4546,7 @@ __decorateClass([
|
|
|
4546
4546
|
__decorateClass([
|
|
4547
4547
|
OneToOne6(
|
|
4548
4548
|
() => ContractSummary,
|
|
4549
|
-
(contractSummary) => contractSummary.
|
|
4549
|
+
(contractSummary) => contractSummary.hiring
|
|
4550
4550
|
),
|
|
4551
4551
|
JoinColumn25({ name: "contract_summary_id" })
|
|
4552
4552
|
], Hiring.prototype, "contractSummary", 2);
|
|
@@ -5830,6 +5830,7 @@ import {
|
|
|
5830
5830
|
var AssessmentStatusEnum = /* @__PURE__ */ ((AssessmentStatusEnum2) => {
|
|
5831
5831
|
AssessmentStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
5832
5832
|
AssessmentStatusEnum2["ACTIVE"] = "ACTIVE";
|
|
5833
|
+
AssessmentStatusEnum2["EVALUATING"] = "EVALUATING";
|
|
5833
5834
|
AssessmentStatusEnum2["COMPELETED"] = "COMPELETED";
|
|
5834
5835
|
AssessmentStatusEnum2["PASSED"] = "PASSED";
|
|
5835
5836
|
AssessmentStatusEnum2["FAILED"] = "FAILED";
|