@experts_hub/shared 1.0.633 → 1.0.635
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
|
@@ -1634,6 +1634,8 @@ declare class ContractSummary extends BaseEntity {
|
|
|
1634
1634
|
freelancer: User;
|
|
1635
1635
|
startDate: Date;
|
|
1636
1636
|
endDate: Date;
|
|
1637
|
+
actualStartDate: Date;
|
|
1638
|
+
actualEndDate: Date;
|
|
1637
1639
|
duration: number;
|
|
1638
1640
|
contractValue: number;
|
|
1639
1641
|
invoicingCycle: string;
|
|
@@ -2064,6 +2066,7 @@ declare class FreelancerAssessment extends BaseEntity {
|
|
|
2064
2066
|
recordingLink: string;
|
|
2065
2067
|
iframeResponse: string;
|
|
2066
2068
|
interviewSummary: string;
|
|
2069
|
+
score: number;
|
|
2067
2070
|
status: AssessmentStatusEnum;
|
|
2068
2071
|
taskId: string;
|
|
2069
2072
|
metaData: any;
|
package/dist/index.d.ts
CHANGED
|
@@ -1634,6 +1634,8 @@ declare class ContractSummary extends BaseEntity {
|
|
|
1634
1634
|
freelancer: User;
|
|
1635
1635
|
startDate: Date;
|
|
1636
1636
|
endDate: Date;
|
|
1637
|
+
actualStartDate: Date;
|
|
1638
|
+
actualEndDate: Date;
|
|
1637
1639
|
duration: number;
|
|
1638
1640
|
contractValue: number;
|
|
1639
1641
|
invoicingCycle: string;
|
|
@@ -2064,6 +2066,7 @@ declare class FreelancerAssessment extends BaseEntity {
|
|
|
2064
2066
|
recordingLink: string;
|
|
2065
2067
|
iframeResponse: string;
|
|
2066
2068
|
interviewSummary: string;
|
|
2069
|
+
score: number;
|
|
2067
2070
|
status: AssessmentStatusEnum;
|
|
2068
2071
|
taskId: string;
|
|
2069
2072
|
metaData: any;
|
package/dist/index.js
CHANGED
|
@@ -4624,6 +4624,20 @@ __decorateClass([
|
|
|
4624
4624
|
nullable: true
|
|
4625
4625
|
})
|
|
4626
4626
|
], ContractSummary.prototype, "endDate", 2);
|
|
4627
|
+
__decorateClass([
|
|
4628
|
+
(0, import_typeorm26.Column)({
|
|
4629
|
+
name: "actual_start_date",
|
|
4630
|
+
type: "timestamp with time zone",
|
|
4631
|
+
nullable: true
|
|
4632
|
+
})
|
|
4633
|
+
], ContractSummary.prototype, "actualStartDate", 2);
|
|
4634
|
+
__decorateClass([
|
|
4635
|
+
(0, import_typeorm26.Column)({
|
|
4636
|
+
name: "actual_end_date",
|
|
4637
|
+
type: "timestamp with time zone",
|
|
4638
|
+
nullable: true
|
|
4639
|
+
})
|
|
4640
|
+
], ContractSummary.prototype, "actualEndDate", 2);
|
|
4627
4641
|
__decorateClass([
|
|
4628
4642
|
(0, import_typeorm26.Column)({ name: "duration", type: "integer", nullable: true })
|
|
4629
4643
|
], ContractSummary.prototype, "duration", 2);
|
|
@@ -5985,6 +5999,9 @@ __decorateClass([
|
|
|
5985
5999
|
__decorateClass([
|
|
5986
6000
|
(0, import_typeorm44.Column)({ name: "interview_summary", type: "jsonb", nullable: true })
|
|
5987
6001
|
], FreelancerAssessment.prototype, "interviewSummary", 2);
|
|
6002
|
+
__decorateClass([
|
|
6003
|
+
(0, import_typeorm44.Column)({ name: "score", type: "float", nullable: true })
|
|
6004
|
+
], FreelancerAssessment.prototype, "score", 2);
|
|
5988
6005
|
__decorateClass([
|
|
5989
6006
|
(0, import_typeorm44.Column)({
|
|
5990
6007
|
name: "status",
|
package/dist/index.mjs
CHANGED
|
@@ -4457,6 +4457,20 @@ __decorateClass([
|
|
|
4457
4457
|
nullable: true
|
|
4458
4458
|
})
|
|
4459
4459
|
], ContractSummary.prototype, "endDate", 2);
|
|
4460
|
+
__decorateClass([
|
|
4461
|
+
Column26({
|
|
4462
|
+
name: "actual_start_date",
|
|
4463
|
+
type: "timestamp with time zone",
|
|
4464
|
+
nullable: true
|
|
4465
|
+
})
|
|
4466
|
+
], ContractSummary.prototype, "actualStartDate", 2);
|
|
4467
|
+
__decorateClass([
|
|
4468
|
+
Column26({
|
|
4469
|
+
name: "actual_end_date",
|
|
4470
|
+
type: "timestamp with time zone",
|
|
4471
|
+
nullable: true
|
|
4472
|
+
})
|
|
4473
|
+
], ContractSummary.prototype, "actualEndDate", 2);
|
|
4460
4474
|
__decorateClass([
|
|
4461
4475
|
Column26({ name: "duration", type: "integer", nullable: true })
|
|
4462
4476
|
], ContractSummary.prototype, "duration", 2);
|
|
@@ -5884,6 +5898,9 @@ __decorateClass([
|
|
|
5884
5898
|
__decorateClass([
|
|
5885
5899
|
Column44({ name: "interview_summary", type: "jsonb", nullable: true })
|
|
5886
5900
|
], FreelancerAssessment.prototype, "interviewSummary", 2);
|
|
5901
|
+
__decorateClass([
|
|
5902
|
+
Column44({ name: "score", type: "float", nullable: true })
|
|
5903
|
+
], FreelancerAssessment.prototype, "score", 2);
|
|
5887
5904
|
__decorateClass([
|
|
5888
5905
|
Column44({
|
|
5889
5906
|
name: "status",
|