@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.
@@ -34,4 +34,6 @@ export declare class Contract extends BaseEntity {
34
34
  freelancerSignedAt: Date;
35
35
  rejectedAt: Date;
36
36
  rejectReason: string;
37
+ isWorkContractSent: boolean;
38
+ isEscrowDeposited: boolean;
37
39
  }
package/dist/index.d.mts CHANGED
@@ -1064,6 +1064,8 @@ declare class Contract extends BaseEntity {
1064
1064
  freelancerSignedAt: Date;
1065
1065
  rejectedAt: Date;
1066
1066
  rejectReason: string;
1067
+ isWorkContractSent: boolean;
1068
+ isEscrowDeposited: boolean;
1067
1069
  }
1068
1070
 
1069
1071
  declare enum JobLocationEnum {
package/dist/index.d.ts CHANGED
@@ -1064,6 +1064,8 @@ declare class Contract extends BaseEntity {
1064
1064
  freelancerSignedAt: Date;
1065
1065
  rejectedAt: Date;
1066
1066
  rejectReason: string;
1067
+ isWorkContractSent: boolean;
1068
+ isEscrowDeposited: boolean;
1067
1069
  }
1068
1070
 
1069
1071
  declare enum JobLocationEnum {
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);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.372",
3
+ "version": "1.0.373",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",