@experts_hub/shared 1.0.637 → 1.0.638

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.
@@ -38,6 +38,8 @@ export declare class Contract extends BaseEntity {
38
38
  escrowDepositeAmount: number;
39
39
  startDate: Date;
40
40
  endDate: Date;
41
+ actualStartDate: Date;
42
+ actualEndDate: Date;
41
43
  originalDocumentUrl: string;
42
44
  contractDocumentUrl: string;
43
45
  clientSignedAt: Date;
package/dist/index.d.mts CHANGED
@@ -1119,6 +1119,8 @@ declare class Contract extends BaseEntity {
1119
1119
  escrowDepositeAmount: number;
1120
1120
  startDate: Date;
1121
1121
  endDate: Date;
1122
+ actualStartDate: Date;
1123
+ actualEndDate: Date;
1122
1124
  originalDocumentUrl: string;
1123
1125
  contractDocumentUrl: string;
1124
1126
  clientSignedAt: Date;
package/dist/index.d.ts CHANGED
@@ -1119,6 +1119,8 @@ declare class Contract extends BaseEntity {
1119
1119
  escrowDepositeAmount: number;
1120
1120
  startDate: Date;
1121
1121
  endDate: Date;
1122
+ actualStartDate: Date;
1123
+ actualEndDate: Date;
1122
1124
  originalDocumentUrl: string;
1123
1125
  contractDocumentUrl: string;
1124
1126
  clientSignedAt: Date;
package/dist/index.js CHANGED
@@ -3904,6 +3904,20 @@ __decorateClass([
3904
3904
  nullable: true
3905
3905
  })
3906
3906
  ], Contract.prototype, "endDate", 2);
3907
+ __decorateClass([
3908
+ (0, import_typeorm31.Column)({
3909
+ name: "actual_start_date",
3910
+ type: "timestamp with time zone",
3911
+ nullable: true
3912
+ })
3913
+ ], Contract.prototype, "actualStartDate", 2);
3914
+ __decorateClass([
3915
+ (0, import_typeorm31.Column)({
3916
+ name: "actual_end_date",
3917
+ type: "timestamp with time zone",
3918
+ nullable: true
3919
+ })
3920
+ ], Contract.prototype, "actualEndDate", 2);
3907
3921
  __decorateClass([
3908
3922
  (0, import_typeorm31.Column)({ name: "original_document_url", type: "varchar", nullable: true })
3909
3923
  ], Contract.prototype, "originalDocumentUrl", 2);
package/dist/index.mjs CHANGED
@@ -3657,6 +3657,20 @@ __decorateClass([
3657
3657
  nullable: true
3658
3658
  })
3659
3659
  ], Contract.prototype, "endDate", 2);
3660
+ __decorateClass([
3661
+ Column31({
3662
+ name: "actual_start_date",
3663
+ type: "timestamp with time zone",
3664
+ nullable: true
3665
+ })
3666
+ ], Contract.prototype, "actualStartDate", 2);
3667
+ __decorateClass([
3668
+ Column31({
3669
+ name: "actual_end_date",
3670
+ type: "timestamp with time zone",
3671
+ nullable: true
3672
+ })
3673
+ ], Contract.prototype, "actualEndDate", 2);
3660
3674
  __decorateClass([
3661
3675
  Column31({ name: "original_document_url", type: "varchar", nullable: true })
3662
3676
  ], Contract.prototype, "originalDocumentUrl", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.637",
3
+ "version": "1.0.638",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",