@experts_hub/shared 1.0.364 → 1.0.365

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.
@@ -25,4 +25,5 @@ export declare class Contract extends BaseEntity {
25
25
  type: ContractTypeEnum;
26
26
  startDate: Date;
27
27
  endDate: Date;
28
+ contractDocumentUrl: string;
28
29
  }
package/dist/index.d.mts CHANGED
@@ -1055,6 +1055,7 @@ declare class Contract extends BaseEntity {
1055
1055
  type: ContractTypeEnum;
1056
1056
  startDate: Date;
1057
1057
  endDate: Date;
1058
+ contractDocumentUrl: string;
1058
1059
  }
1059
1060
 
1060
1061
  declare enum JobLocationEnum {
package/dist/index.d.ts CHANGED
@@ -1055,6 +1055,7 @@ declare class Contract extends BaseEntity {
1055
1055
  type: ContractTypeEnum;
1056
1056
  startDate: Date;
1057
1057
  endDate: Date;
1058
+ contractDocumentUrl: string;
1058
1059
  }
1059
1060
 
1060
1061
  declare enum JobLocationEnum {
package/dist/index.js CHANGED
@@ -3017,6 +3017,9 @@ __decorateClass([
3017
3017
  nullable: true
3018
3018
  })
3019
3019
  ], Contract.prototype, "endDate", 2);
3020
+ __decorateClass([
3021
+ (0, import_typeorm21.Column)({ name: "contract_document_url", type: "varchar", nullable: true })
3022
+ ], Contract.prototype, "contractDocumentUrl", 2);
3020
3023
  Contract = __decorateClass([
3021
3024
  (0, import_typeorm21.Entity)("contracts")
3022
3025
  ], Contract);
package/dist/index.mjs CHANGED
@@ -2971,6 +2971,9 @@ __decorateClass([
2971
2971
  nullable: true
2972
2972
  })
2973
2973
  ], Contract.prototype, "endDate", 2);
2974
+ __decorateClass([
2975
+ Column21({ name: "contract_document_url", type: "varchar", nullable: true })
2976
+ ], Contract.prototype, "contractDocumentUrl", 2);
2974
2977
  Contract = __decorateClass([
2975
2978
  Entity20("contracts")
2976
2979
  ], Contract);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.364",
3
+ "version": "1.0.365",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",