@experts_hub/shared 1.0.368 → 1.0.369

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.
@@ -32,4 +32,6 @@ export declare class Contract extends BaseEntity {
32
32
  contractDocumentUrl: string;
33
33
  clientSignedAt: Date;
34
34
  freelancerSignedAt: Date;
35
+ rejectedAt: Date;
36
+ rejectReason: string;
35
37
  }
package/dist/index.d.mts CHANGED
@@ -1062,6 +1062,8 @@ declare class Contract extends BaseEntity {
1062
1062
  contractDocumentUrl: string;
1063
1063
  clientSignedAt: Date;
1064
1064
  freelancerSignedAt: Date;
1065
+ rejectedAt: Date;
1066
+ rejectReason: string;
1065
1067
  }
1066
1068
 
1067
1069
  declare enum JobLocationEnum {
package/dist/index.d.ts CHANGED
@@ -1062,6 +1062,8 @@ declare class Contract extends BaseEntity {
1062
1062
  contractDocumentUrl: string;
1063
1063
  clientSignedAt: Date;
1064
1064
  freelancerSignedAt: Date;
1065
+ rejectedAt: Date;
1066
+ rejectReason: string;
1065
1067
  }
1066
1068
 
1067
1069
  declare enum JobLocationEnum {
package/dist/index.js CHANGED
@@ -3039,6 +3039,16 @@ __decorateClass([
3039
3039
  nullable: true
3040
3040
  })
3041
3041
  ], Contract.prototype, "freelancerSignedAt", 2);
3042
+ __decorateClass([
3043
+ (0, import_typeorm21.Column)({
3044
+ name: "rejectd_at",
3045
+ type: "timestamp with time zone",
3046
+ nullable: true
3047
+ })
3048
+ ], Contract.prototype, "rejectedAt", 2);
3049
+ __decorateClass([
3050
+ (0, import_typeorm21.Column)({ name: "reject_reason", type: "varchar", nullable: true })
3051
+ ], Contract.prototype, "rejectReason", 2);
3042
3052
  Contract = __decorateClass([
3043
3053
  (0, import_typeorm21.Entity)("contracts")
3044
3054
  ], Contract);
package/dist/index.mjs CHANGED
@@ -2992,6 +2992,16 @@ __decorateClass([
2992
2992
  nullable: true
2993
2993
  })
2994
2994
  ], Contract.prototype, "freelancerSignedAt", 2);
2995
+ __decorateClass([
2996
+ Column21({
2997
+ name: "rejectd_at",
2998
+ type: "timestamp with time zone",
2999
+ nullable: true
3000
+ })
3001
+ ], Contract.prototype, "rejectedAt", 2);
3002
+ __decorateClass([
3003
+ Column21({ name: "reject_reason", type: "varchar", nullable: true })
3004
+ ], Contract.prototype, "rejectReason", 2);
2995
3005
  Contract = __decorateClass([
2996
3006
  Entity20("contracts")
2997
3007
  ], Contract);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.368",
3
+ "version": "1.0.369",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",