@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.
- package/dist/entities/contract.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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);
|