@experts_hub/shared 1.0.649 → 1.0.650
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.
|
@@ -14,7 +14,7 @@ export declare class EscrowWalletTransaction extends BaseEntity {
|
|
|
14
14
|
escrowWallet: EscrowWallet;
|
|
15
15
|
invoiceId?: number;
|
|
16
16
|
invoice?: Invoice;
|
|
17
|
-
amount:
|
|
17
|
+
amount: string;
|
|
18
18
|
escrowType: EscrowWalletTransactionTypeEnum;
|
|
19
19
|
description: string;
|
|
20
20
|
completedAt: Date;
|
package/dist/index.d.mts
CHANGED
|
@@ -1071,7 +1071,7 @@ declare class EscrowWalletTransaction extends BaseEntity {
|
|
|
1071
1071
|
escrowWallet: EscrowWallet;
|
|
1072
1072
|
invoiceId?: number;
|
|
1073
1073
|
invoice?: Invoice;
|
|
1074
|
-
amount:
|
|
1074
|
+
amount: string;
|
|
1075
1075
|
escrowType: EscrowWalletTransactionTypeEnum;
|
|
1076
1076
|
description: string;
|
|
1077
1077
|
completedAt: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -1071,7 +1071,7 @@ declare class EscrowWalletTransaction extends BaseEntity {
|
|
|
1071
1071
|
escrowWallet: EscrowWallet;
|
|
1072
1072
|
invoiceId?: number;
|
|
1073
1073
|
invoice?: Invoice;
|
|
1074
|
-
amount:
|
|
1074
|
+
amount: string;
|
|
1075
1075
|
escrowType: EscrowWalletTransactionTypeEnum;
|
|
1076
1076
|
description: string;
|
|
1077
1077
|
completedAt: Date;
|
package/dist/index.js
CHANGED
|
@@ -3763,7 +3763,7 @@ __decorateClass([
|
|
|
3763
3763
|
(0, import_typeorm29.JoinColumn)({ name: "invoice_id" })
|
|
3764
3764
|
], EscrowWalletTransaction.prototype, "invoice", 2);
|
|
3765
3765
|
__decorateClass([
|
|
3766
|
-
(0, import_typeorm29.Column)({ name: "amount", type: "
|
|
3766
|
+
(0, import_typeorm29.Column)({ name: "amount", type: "varchar", default: 0 })
|
|
3767
3767
|
], EscrowWalletTransaction.prototype, "amount", 2);
|
|
3768
3768
|
__decorateClass([
|
|
3769
3769
|
(0, import_typeorm29.Column)({ name: "escrow_type", type: "enum", enum: EscrowWalletTransactionTypeEnum })
|
package/dist/index.mjs
CHANGED
|
@@ -3511,7 +3511,7 @@ __decorateClass([
|
|
|
3511
3511
|
JoinColumn27({ name: "invoice_id" })
|
|
3512
3512
|
], EscrowWalletTransaction.prototype, "invoice", 2);
|
|
3513
3513
|
__decorateClass([
|
|
3514
|
-
Column29({ name: "amount", type: "
|
|
3514
|
+
Column29({ name: "amount", type: "varchar", default: 0 })
|
|
3515
3515
|
], EscrowWalletTransaction.prototype, "amount", 2);
|
|
3516
3516
|
__decorateClass([
|
|
3517
3517
|
Column29({ name: "escrow_type", type: "enum", enum: EscrowWalletTransactionTypeEnum })
|