@experts_hub/shared 1.0.637 → 1.0.639

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;
@@ -3624,6 +3626,7 @@ declare const CONTRACT_PATTERN: {
3624
3626
  fetchClientDropdownForFreelancer: string;
3625
3627
  escrowFundForContract: string;
3626
3628
  markContractAsActive: string;
3629
+ handleContractManualClosure: string;
3627
3630
  fetchActiveContractsForFreelancer: string;
3628
3631
  fetchHiredFreelancerForGroupCreation: string;
3629
3632
  fetchActiveContractFreelancerCount: string;
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;
@@ -3624,6 +3626,7 @@ declare const CONTRACT_PATTERN: {
3624
3626
  fetchClientDropdownForFreelancer: string;
3625
3627
  escrowFundForContract: string;
3626
3628
  markContractAsActive: string;
3629
+ handleContractManualClosure: string;
3627
3630
  fetchActiveContractsForFreelancer: string;
3628
3631
  fetchHiredFreelancerForGroupCreation: string;
3629
3632
  fetchActiveContractFreelancerCount: string;
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);
@@ -9857,6 +9871,7 @@ var CONTRACT_PATTERN = {
9857
9871
  fetchClientDropdownForFreelancer: "fetch.client.dropdown.for.freelancer",
9858
9872
  escrowFundForContract: "escrow.fund.for.contract",
9859
9873
  markContractAsActive: "mark.contract.as.active",
9874
+ handleContractManualClosure: "handle.contract.manual.closure",
9860
9875
  fetchActiveContractsForFreelancer: "fetch.active.contracts.for.freelancer",
9861
9876
  fetchHiredFreelancerForGroupCreation: "fetch.hired.freelancer.for.group.creation",
9862
9877
  fetchActiveContractFreelancerCount: "fetch.active.contract.freelancer.count",
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);
@@ -9954,6 +9968,7 @@ var CONTRACT_PATTERN = {
9954
9968
  fetchClientDropdownForFreelancer: "fetch.client.dropdown.for.freelancer",
9955
9969
  escrowFundForContract: "escrow.fund.for.contract",
9956
9970
  markContractAsActive: "mark.contract.as.active",
9971
+ handleContractManualClosure: "handle.contract.manual.closure",
9957
9972
  fetchActiveContractsForFreelancer: "fetch.active.contracts.for.freelancer",
9958
9973
  fetchHiredFreelancerForGroupCreation: "fetch.hired.freelancer.for.group.creation",
9959
9974
  fetchActiveContractFreelancerCount: "fetch.active.contract.freelancer.count",
@@ -8,6 +8,7 @@ export declare const CONTRACT_PATTERN: {
8
8
  fetchClientDropdownForFreelancer: string;
9
9
  escrowFundForContract: string;
10
10
  markContractAsActive: string;
11
+ handleContractManualClosure: string;
11
12
  fetchActiveContractsForFreelancer: string;
12
13
  fetchHiredFreelancerForGroupCreation: string;
13
14
  fetchActiveContractFreelancerCount: string;
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.639",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",