@experts_hub/shared 1.0.462 → 1.0.464
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/wallet-transaction.entity.d.ts +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +7 -1
- package/dist/index.mjs +7 -1
- package/package.json +1 -1
|
@@ -15,6 +15,8 @@ export declare class WalletTransaction extends BaseEntity {
|
|
|
15
15
|
walletId: number;
|
|
16
16
|
wallet: Wallet;
|
|
17
17
|
amount: number;
|
|
18
|
+
balanceBefore: number;
|
|
19
|
+
balanceAfter: number;
|
|
18
20
|
type: WalletTransactionTypeEnum;
|
|
19
21
|
status: WalletTransactionStatusEnum;
|
|
20
22
|
description: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -1687,6 +1687,8 @@ declare class WalletTransaction extends BaseEntity {
|
|
|
1687
1687
|
walletId: number;
|
|
1688
1688
|
wallet: Wallet;
|
|
1689
1689
|
amount: number;
|
|
1690
|
+
balanceBefore: number;
|
|
1691
|
+
balanceAfter: number;
|
|
1690
1692
|
type: WalletTransactionTypeEnum;
|
|
1691
1693
|
status: WalletTransactionStatusEnum;
|
|
1692
1694
|
description: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1687,6 +1687,8 @@ declare class WalletTransaction extends BaseEntity {
|
|
|
1687
1687
|
walletId: number;
|
|
1688
1688
|
wallet: Wallet;
|
|
1689
1689
|
amount: number;
|
|
1690
|
+
balanceBefore: number;
|
|
1691
|
+
balanceAfter: number;
|
|
1690
1692
|
type: WalletTransactionTypeEnum;
|
|
1691
1693
|
status: WalletTransactionStatusEnum;
|
|
1692
1694
|
description: string;
|
package/dist/index.js
CHANGED
|
@@ -4011,7 +4011,7 @@ __decorateClass([
|
|
|
4011
4011
|
(0, import_typeorm29.Column)({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
4012
4012
|
], BankDetail.prototype, "mobile", 2);
|
|
4013
4013
|
__decorateClass([
|
|
4014
|
-
(0, import_typeorm29.Column)({ name: "email", type: "varchar"
|
|
4014
|
+
(0, import_typeorm29.Column)({ name: "email", type: "varchar" })
|
|
4015
4015
|
], BankDetail.prototype, "email", 2);
|
|
4016
4016
|
__decorateClass([
|
|
4017
4017
|
(0, import_typeorm29.Column)({ name: "address", type: "varchar", nullable: true })
|
|
@@ -5000,6 +5000,12 @@ __decorateClass([
|
|
|
5000
5000
|
__decorateClass([
|
|
5001
5001
|
(0, import_typeorm56.Column)({ name: "amount", type: "bigint", nullable: true })
|
|
5002
5002
|
], WalletTransaction.prototype, "amount", 2);
|
|
5003
|
+
__decorateClass([
|
|
5004
|
+
(0, import_typeorm56.Column)({ name: "balance_before", type: "bigint", nullable: true })
|
|
5005
|
+
], WalletTransaction.prototype, "balanceBefore", 2);
|
|
5006
|
+
__decorateClass([
|
|
5007
|
+
(0, import_typeorm56.Column)({ name: "balance_after", type: "bigint", nullable: true })
|
|
5008
|
+
], WalletTransaction.prototype, "balanceAfter", 2);
|
|
5003
5009
|
__decorateClass([
|
|
5004
5010
|
(0, import_typeorm56.Column)({ name: "type", type: "enum", enum: WalletTransactionTypeEnum })
|
|
5005
5011
|
], WalletTransaction.prototype, "type", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -3940,7 +3940,7 @@ __decorateClass([
|
|
|
3940
3940
|
Column29({ name: "mobile", type: "varchar", unique: true, nullable: true })
|
|
3941
3941
|
], BankDetail.prototype, "mobile", 2);
|
|
3942
3942
|
__decorateClass([
|
|
3943
|
-
Column29({ name: "email", type: "varchar"
|
|
3943
|
+
Column29({ name: "email", type: "varchar" })
|
|
3944
3944
|
], BankDetail.prototype, "email", 2);
|
|
3945
3945
|
__decorateClass([
|
|
3946
3946
|
Column29({ name: "address", type: "varchar", nullable: true })
|
|
@@ -5027,6 +5027,12 @@ __decorateClass([
|
|
|
5027
5027
|
__decorateClass([
|
|
5028
5028
|
Column56({ name: "amount", type: "bigint", nullable: true })
|
|
5029
5029
|
], WalletTransaction.prototype, "amount", 2);
|
|
5030
|
+
__decorateClass([
|
|
5031
|
+
Column56({ name: "balance_before", type: "bigint", nullable: true })
|
|
5032
|
+
], WalletTransaction.prototype, "balanceBefore", 2);
|
|
5033
|
+
__decorateClass([
|
|
5034
|
+
Column56({ name: "balance_after", type: "bigint", nullable: true })
|
|
5035
|
+
], WalletTransaction.prototype, "balanceAfter", 2);
|
|
5030
5036
|
__decorateClass([
|
|
5031
5037
|
Column56({ name: "type", type: "enum", enum: WalletTransactionTypeEnum })
|
|
5032
5038
|
], WalletTransaction.prototype, "type", 2);
|