@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.
@@ -29,6 +29,7 @@ export declare class Contract extends BaseEntity {
29
29
  status: ContractStatusEnum;
30
30
  type: ContractTypeEnum;
31
31
  invoicingCycle: string;
32
+ escrowDepositeAmount: number;
32
33
  startDate: Date;
33
34
  endDate: Date;
34
35
  originalDocumentUrl: string;
package/dist/index.d.mts CHANGED
@@ -1099,6 +1099,7 @@ declare class Contract extends BaseEntity {
1099
1099
  status: ContractStatusEnum;
1100
1100
  type: ContractTypeEnum;
1101
1101
  invoicingCycle: string;
1102
+ escrowDepositeAmount: number;
1102
1103
  startDate: Date;
1103
1104
  endDate: Date;
1104
1105
  originalDocumentUrl: string;
package/dist/index.d.ts CHANGED
@@ -1099,6 +1099,7 @@ declare class Contract extends BaseEntity {
1099
1099
  status: ContractStatusEnum;
1100
1100
  type: ContractTypeEnum;
1101
1101
  invoicingCycle: string;
1102
+ escrowDepositeAmount: number;
1102
1103
  startDate: Date;
1103
1104
  endDate: Date;
1104
1105
  originalDocumentUrl: string;
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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.448",
3
+ "version": "1.0.449",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",