@experts_hub/shared 1.0.726 → 1.0.727

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.
@@ -15,6 +15,7 @@ export declare class WalletTransaction extends BaseEntity {
15
15
  walletId: number;
16
16
  wallet: Wallet;
17
17
  amount: number;
18
+ markUpAmount: number;
18
19
  balanceBefore: number;
19
20
  balanceAfter: number;
20
21
  type: WalletTransactionTypeEnum;
package/dist/index.d.mts CHANGED
@@ -1902,6 +1902,7 @@ declare class WalletTransaction extends BaseEntity {
1902
1902
  walletId: number;
1903
1903
  wallet: Wallet;
1904
1904
  amount: number;
1905
+ markUpAmount: number;
1905
1906
  balanceBefore: number;
1906
1907
  balanceAfter: number;
1907
1908
  type: WalletTransactionTypeEnum;
package/dist/index.d.ts CHANGED
@@ -1902,6 +1902,7 @@ declare class WalletTransaction extends BaseEntity {
1902
1902
  walletId: number;
1903
1903
  wallet: Wallet;
1904
1904
  amount: number;
1905
+ markUpAmount: number;
1905
1906
  balanceBefore: number;
1906
1907
  balanceAfter: number;
1907
1908
  type: WalletTransactionTypeEnum;
package/dist/index.js CHANGED
@@ -6474,6 +6474,9 @@ __decorateClass([
6474
6474
  __decorateClass([
6475
6475
  (0, import_typeorm72.Column)({ name: "amount", type: "bigint", nullable: true })
6476
6476
  ], WalletTransaction.prototype, "amount", 2);
6477
+ __decorateClass([
6478
+ (0, import_typeorm72.Column)({ name: "mark_up_amount", type: "bigint", nullable: true })
6479
+ ], WalletTransaction.prototype, "markUpAmount", 2);
6477
6480
  __decorateClass([
6478
6481
  (0, import_typeorm72.Column)({ name: "balance_before", type: "bigint", nullable: true })
6479
6482
  ], WalletTransaction.prototype, "balanceBefore", 2);
package/dist/index.mjs CHANGED
@@ -6264,6 +6264,9 @@ __decorateClass([
6264
6264
  __decorateClass([
6265
6265
  Column72({ name: "amount", type: "bigint", nullable: true })
6266
6266
  ], WalletTransaction.prototype, "amount", 2);
6267
+ __decorateClass([
6268
+ Column72({ name: "mark_up_amount", type: "bigint", nullable: true })
6269
+ ], WalletTransaction.prototype, "markUpAmount", 2);
6267
6270
  __decorateClass([
6268
6271
  Column72({ name: "balance_before", type: "bigint", nullable: true })
6269
6272
  ], WalletTransaction.prototype, "balanceBefore", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.726",
3
+ "version": "1.0.727",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",