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