@experts_hub/shared 1.0.633 → 1.0.634
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/contract-summary.entity.d.ts +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +14 -0
- package/dist/index.mjs +14 -0
- package/package.json +1 -1
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;
|
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;
|
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);
|
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);
|