Skip to content

Commit

Permalink
fix: updating datum url
Browse files Browse the repository at this point in the history
  • Loading branch information
HinsonSIDAN committed Feb 9, 2024
1 parent 25923ce commit cbb5ae4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maestro-org/typescript-sdk",
"version": "1.1.1",
"version": "1.1.2",
"description": "TypeScript SDK for the Maestro Dapp Platform",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/api/datum/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const DatumApiAxiosParamCreator = function (configuration: Configuration)
lookupDatum: async (datumHash: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'datumHash' is not null or undefined
assertParamExists('lookupDatum', 'datumHash', datumHash);
const localVarPath = `/datum/{datum_hash}`.replace(
const localVarPath = `/datums/{datum_hash}`.replace(
`{${'datum_hash'}}`,
encodeURIComponent(String(datumHash)),
);
Expand Down

0 comments on commit cbb5ae4

Please sign in to comment.