@crypticdot/defituna-api 1.3.4 → 1.3.5

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.js CHANGED
@@ -831,7 +831,7 @@ var TunaApiClient = class {
831
831
  query.pool = options.pool.join(",");
832
832
  }
833
833
  if (options.action?.length) {
834
- query.status = options.action.join(",");
834
+ query.action = options.action.join(",");
835
835
  }
836
836
  if (options.uiDirection?.length) {
837
837
  query.ui_direction = options.uiDirection.join(",");
package/dist/index.mjs CHANGED
@@ -796,7 +796,7 @@ var TunaApiClient = class {
796
796
  query.pool = options.pool.join(",");
797
797
  }
798
798
  if (options.action?.length) {
799
- query.status = options.action.join(",");
799
+ query.action = options.action.join(",");
800
800
  }
801
801
  if (options.uiDirection?.length) {
802
802
  query.ui_direction = options.uiDirection.join(",");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crypticdot/defituna-api",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",