@experts_hub/shared 1.0.380 → 1.0.381

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,4 +38,5 @@ export declare class Contract extends BaseEntity {
38
38
  rejectReason: string;
39
39
  isWorkContractSent: boolean;
40
40
  isEscrowDeposited: boolean;
41
+ signaturePositions: any;
41
42
  }
package/dist/index.d.mts CHANGED
@@ -1068,6 +1068,7 @@ declare class Contract extends BaseEntity {
1068
1068
  rejectReason: string;
1069
1069
  isWorkContractSent: boolean;
1070
1070
  isEscrowDeposited: boolean;
1071
+ signaturePositions: any;
1071
1072
  }
1072
1073
 
1073
1074
  declare enum JobLocationEnum {
package/dist/index.d.ts CHANGED
@@ -1068,6 +1068,7 @@ declare class Contract extends BaseEntity {
1068
1068
  rejectReason: string;
1069
1069
  isWorkContractSent: boolean;
1070
1070
  isEscrowDeposited: boolean;
1071
+ signaturePositions: any;
1071
1072
  }
1072
1073
 
1073
1074
  declare enum JobLocationEnum {
package/dist/index.js CHANGED
@@ -2971,6 +2971,7 @@ var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
2971
2971
  return ContractTypeEnum2;
2972
2972
  })(ContractTypeEnum || {});
2973
2973
  var Contract = class extends BaseEntity {
2974
+ // stores the positions JSON
2974
2975
  };
2975
2976
  __decorateClass([
2976
2977
  (0, import_typeorm21.Column)({ name: "contract_unique_id", type: "varchar", nullable: true, unique: true })
@@ -3068,6 +3069,9 @@ __decorateClass([
3068
3069
  __decorateClass([
3069
3070
  (0, import_typeorm21.Column)({ name: "is_escrow_deposited", type: "boolean", default: false })
3070
3071
  ], Contract.prototype, "isEscrowDeposited", 2);
3072
+ __decorateClass([
3073
+ (0, import_typeorm21.Column)({ name: "signature_positions", type: "jsonb", nullable: true })
3074
+ ], Contract.prototype, "signaturePositions", 2);
3071
3075
  Contract = __decorateClass([
3072
3076
  (0, import_typeorm21.Entity)("contracts")
3073
3077
  ], Contract);
package/dist/index.mjs CHANGED
@@ -2915,6 +2915,7 @@ var ContractTypeEnum = /* @__PURE__ */ ((ContractTypeEnum2) => {
2915
2915
  return ContractTypeEnum2;
2916
2916
  })(ContractTypeEnum || {});
2917
2917
  var Contract = class extends BaseEntity {
2918
+ // stores the positions JSON
2918
2919
  };
2919
2920
  __decorateClass([
2920
2921
  Column21({ name: "contract_unique_id", type: "varchar", nullable: true, unique: true })
@@ -3012,6 +3013,9 @@ __decorateClass([
3012
3013
  __decorateClass([
3013
3014
  Column21({ name: "is_escrow_deposited", type: "boolean", default: false })
3014
3015
  ], Contract.prototype, "isEscrowDeposited", 2);
3016
+ __decorateClass([
3017
+ Column21({ name: "signature_positions", type: "jsonb", nullable: true })
3018
+ ], Contract.prototype, "signaturePositions", 2);
3015
3019
  Contract = __decorateClass([
3016
3020
  Entity20("contracts")
3017
3021
  ], Contract);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.380",
3
+ "version": "1.0.381",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",