@experts_hub/shared 1.0.587 → 1.0.589

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.
@@ -47,5 +47,6 @@ export declare class Contract extends BaseEntity {
47
47
  isWorkContractSent: boolean;
48
48
  isEscrowDeposited: boolean;
49
49
  signaturePositions: any;
50
+ metaData: any;
50
51
  escrowWallet: EscrowWallet;
51
52
  }
package/dist/index.d.mts CHANGED
@@ -1725,6 +1725,7 @@ declare class Contract extends BaseEntity {
1725
1725
  isWorkContractSent: boolean;
1726
1726
  isEscrowDeposited: boolean;
1727
1727
  signaturePositions: any;
1728
+ metaData: any;
1728
1729
  escrowWallet: EscrowWallet;
1729
1730
  }
1730
1731
 
package/dist/index.d.ts CHANGED
@@ -1725,6 +1725,7 @@ declare class Contract extends BaseEntity {
1725
1725
  isWorkContractSent: boolean;
1726
1726
  isEscrowDeposited: boolean;
1727
1727
  signaturePositions: any;
1728
+ metaData: any;
1728
1729
  escrowWallet: EscrowWallet;
1729
1730
  }
1730
1731
 
package/dist/index.js CHANGED
@@ -4911,6 +4911,9 @@ __decorateClass([
4911
4911
  __decorateClass([
4912
4912
  (0, import_typeorm30.Column)({ name: "signature_positions", type: "jsonb", nullable: true })
4913
4913
  ], Contract.prototype, "signaturePositions", 2);
4914
+ __decorateClass([
4915
+ (0, import_typeorm30.Column)({ name: "meta_data", type: "jsonb", nullable: true })
4916
+ ], Contract.prototype, "metaData", 2);
4914
4917
  __decorateClass([
4915
4918
  (0, import_typeorm30.OneToOne)(() => EscrowWallet, (escrowWallet) => escrowWallet.contract)
4916
4919
  ], Contract.prototype, "escrowWallet", 2);
package/dist/index.mjs CHANGED
@@ -4751,6 +4751,9 @@ __decorateClass([
4751
4751
  __decorateClass([
4752
4752
  Column30({ name: "signature_positions", type: "jsonb", nullable: true })
4753
4753
  ], Contract.prototype, "signaturePositions", 2);
4754
+ __decorateClass([
4755
+ Column30({ name: "meta_data", type: "jsonb", nullable: true })
4756
+ ], Contract.prototype, "metaData", 2);
4754
4757
  __decorateClass([
4755
4758
  OneToOne9(() => EscrowWallet, (escrowWallet) => escrowWallet.contract)
4756
4759
  ], Contract.prototype, "escrowWallet", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.587",
3
+ "version": "1.0.589",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",