Skip to content

Commit 4f473d5

Browse files
committed
feat: new handlers
1 parent 5b7dd37 commit 4f473d5

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@maestro-org/typescript-sdk",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"description": "TypeScript SDK for the Maestro Dapp Platform",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",
@@ -50,4 +50,3 @@
5050
]
5151
}
5252
}
53-

src/api/assets/helpers.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -446,10 +446,7 @@ export const AssetsApiAxiosParamCreator = (configuration: Configuration) => ({
446446
): RequestArgs => {
447447
// verify required parameter 'policy' is not null or undefined
448448
assertParamExists('policyUtxos', 'policy', policy);
449-
const localVarPath = `/policy/{policy}/utxos`.replace(
450-
`{${'policy'}}`,
451-
encodeURIComponent(String(policy)),
452-
);
449+
const localVarPath = `/policy/{policy}/utxos`.replace(`{${'policy'}}`, encodeURIComponent(String(policy)));
453450
// use dummy base URL string because the URL constructor only accepts absolute URLs.
454451
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
455452
const { baseOptions } = configuration;

0 commit comments

Comments
 (0)