@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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
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.
|
|
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.
|
|
799
|
+
query.action = options.action.join(",");
|
|
800
800
|
}
|
|
801
801
|
if (options.uiDirection?.length) {
|
|
802
802
|
query.ui_direction = options.uiDirection.join(",");
|