@experts_hub/shared 1.0.447 → 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;
@@ -39,4 +39,5 @@ export declare class Invoice extends BaseEntity {
39
39
  invoiceType: InvoiceTypeEnum;
40
40
  status: InvoiceStatusEnum;
41
41
  paymentStatus: InvoicePaymentStatusEnum;
42
+ clientInvoiceUrl: string;
42
43
  }
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;
@@ -1227,6 +1228,7 @@ declare class Invoice extends BaseEntity {
1227
1228
  invoiceType: InvoiceTypeEnum;
1228
1229
  status: InvoiceStatusEnum;
1229
1230
  paymentStatus: InvoicePaymentStatusEnum;
1231
+ clientInvoiceUrl: string;
1230
1232
  }
1231
1233
 
1232
1234
  declare enum TimesheetLineStatusEnum {
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;
@@ -1227,6 +1228,7 @@ declare class Invoice extends BaseEntity {
1227
1228
  invoiceType: InvoiceTypeEnum;
1228
1229
  status: InvoiceStatusEnum;
1229
1230
  paymentStatus: InvoicePaymentStatusEnum;
1231
+ clientInvoiceUrl: string;
1230
1232
  }
1231
1233
 
1232
1234
  declare enum TimesheetLineStatusEnum {
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",
@@ -3573,6 +3582,9 @@ __decorateClass([
3573
3582
  __decorateClass([
3574
3583
  (0, import_typeorm26.Column)({ name: "payment_status", type: "enum", enum: InvoicePaymentStatusEnum, nullable: true })
3575
3584
  ], Invoice.prototype, "paymentStatus", 2);
3585
+ __decorateClass([
3586
+ (0, import_typeorm26.Column)({ name: "client_invoice_url", type: "varchar", nullable: true })
3587
+ ], Invoice.prototype, "clientInvoiceUrl", 2);
3576
3588
  Invoice = __decorateClass([
3577
3589
  (0, import_typeorm26.Entity)("invoices")
3578
3590
  ], Invoice);
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",
@@ -3499,6 +3508,9 @@ __decorateClass([
3499
3508
  __decorateClass([
3500
3509
  Column26({ name: "payment_status", type: "enum", enum: InvoicePaymentStatusEnum, nullable: true })
3501
3510
  ], Invoice.prototype, "paymentStatus", 2);
3511
+ __decorateClass([
3512
+ Column26({ name: "client_invoice_url", type: "varchar", nullable: true })
3513
+ ], Invoice.prototype, "clientInvoiceUrl", 2);
3502
3514
  Invoice = __decorateClass([
3503
3515
  Entity25("invoices")
3504
3516
  ], Invoice);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.447",
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/",