@experts_hub/shared 1.0.372 → 1.0.373
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 +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3053,6 +3053,12 @@ __decorateClass([
|
|
|
3053
3053
|
__decorateClass([
|
|
3054
3054
|
(0, import_typeorm21.Column)({ name: "reject_reason", type: "varchar", nullable: true })
|
|
3055
3055
|
], Contract.prototype, "rejectReason", 2);
|
|
3056
|
+
__decorateClass([
|
|
3057
|
+
(0, import_typeorm21.Column)({ name: "is_work_contract_sent", type: "boolean", default: false })
|
|
3058
|
+
], Contract.prototype, "isWorkContractSent", 2);
|
|
3059
|
+
__decorateClass([
|
|
3060
|
+
(0, import_typeorm21.Column)({ name: "is_escrow_deposited", type: "boolean", default: false })
|
|
3061
|
+
], Contract.prototype, "isEscrowDeposited", 2);
|
|
3056
3062
|
Contract = __decorateClass([
|
|
3057
3063
|
(0, import_typeorm21.Entity)("contracts")
|
|
3058
3064
|
], Contract);
|
package/dist/index.mjs
CHANGED
|
@@ -3002,6 +3002,12 @@ __decorateClass([
|
|
|
3002
3002
|
__decorateClass([
|
|
3003
3003
|
Column21({ name: "reject_reason", type: "varchar", nullable: true })
|
|
3004
3004
|
], Contract.prototype, "rejectReason", 2);
|
|
3005
|
+
__decorateClass([
|
|
3006
|
+
Column21({ name: "is_work_contract_sent", type: "boolean", default: false })
|
|
3007
|
+
], Contract.prototype, "isWorkContractSent", 2);
|
|
3008
|
+
__decorateClass([
|
|
3009
|
+
Column21({ name: "is_escrow_deposited", type: "boolean", default: false })
|
|
3010
|
+
], Contract.prototype, "isEscrowDeposited", 2);
|
|
3005
3011
|
Contract = __decorateClass([
|
|
3006
3012
|
Entity20("contracts")
|
|
3007
3013
|
], Contract);
|