@experts_hub/shared 1.0.448 → 1.0.449
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 +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3180,6 +3180,15 @@ __decorateClass([
|
|
|
3180
3180
|
__decorateClass([
|
|
3181
3181
|
(0, import_typeorm22.Column)({ name: "invoicing_cycle", type: "varchar", nullable: true })
|
|
3182
3182
|
], Contract.prototype, "invoicingCycle", 2);
|
|
3183
|
+
__decorateClass([
|
|
3184
|
+
(0, import_typeorm22.Column)({
|
|
3185
|
+
name: "escrow_deposite_amount",
|
|
3186
|
+
type: "decimal",
|
|
3187
|
+
precision: 10,
|
|
3188
|
+
scale: 2,
|
|
3189
|
+
nullable: true
|
|
3190
|
+
})
|
|
3191
|
+
], Contract.prototype, "escrowDepositeAmount", 2);
|
|
3183
3192
|
__decorateClass([
|
|
3184
3193
|
(0, import_typeorm22.Column)({
|
|
3185
3194
|
name: "start_date",
|
package/dist/index.mjs
CHANGED
|
@@ -3106,6 +3106,15 @@ __decorateClass([
|
|
|
3106
3106
|
__decorateClass([
|
|
3107
3107
|
Column22({ name: "invoicing_cycle", type: "varchar", nullable: true })
|
|
3108
3108
|
], Contract.prototype, "invoicingCycle", 2);
|
|
3109
|
+
__decorateClass([
|
|
3110
|
+
Column22({
|
|
3111
|
+
name: "escrow_deposite_amount",
|
|
3112
|
+
type: "decimal",
|
|
3113
|
+
precision: 10,
|
|
3114
|
+
scale: 2,
|
|
3115
|
+
nullable: true
|
|
3116
|
+
})
|
|
3117
|
+
], Contract.prototype, "escrowDepositeAmount", 2);
|
|
3109
3118
|
__decorateClass([
|
|
3110
3119
|
Column22({
|
|
3111
3120
|
name: "start_date",
|