@experts_hub/shared 1.0.380 → 1.0.382
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 +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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);
|