@gbozee/ultimate 0.0.2-63 → 0.0.2-64

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/index.cjs CHANGED
@@ -56434,7 +56434,7 @@ class ExchangeAccount {
56434
56434
  symbol,
56435
56435
  long_position: active_account.position.long,
56436
56436
  short_position: active_account.position.short,
56437
- usd_balance: active_account.usd_balance || 0
56437
+ usd_balance: active_account.balance || 0
56438
56438
  });
56439
56439
  await this.syncOrders({
56440
56440
  symbol,
package/dist/index.js CHANGED
@@ -56392,7 +56392,7 @@ class ExchangeAccount {
56392
56392
  symbol,
56393
56393
  long_position: active_account.position.long,
56394
56394
  short_position: active_account.position.short,
56395
- usd_balance: active_account.usd_balance || 0
56395
+ usd_balance: active_account.balance || 0
56396
56396
  });
56397
56397
  await this.syncOrders({
56398
56398
  symbol,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gbozee/ultimate",
3
3
  "type": "module",
4
- "version": "0.0.2-63",
4
+ "version": "0.0.2-64",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",