Skip to content

Commit

Permalink
Merge pull request #21 from SIDANWhatever/hotfix/type-exporting
Browse files Browse the repository at this point in the history
Hotfix/type exporting
  • Loading branch information
Vardominator authored Oct 11, 2023
2 parents 0287161 + 827b709 commit 606b41c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
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: 2 additions & 0 deletions src/api/addresses/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,3 +212,5 @@ export class AddressesApi extends BaseAPI {
.then((request) => request(this.axios));
}
}

export * from './type';
2 changes: 2 additions & 0 deletions src/api/assets/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,3 +244,5 @@ export class AssetsApi extends BaseAPI {
.then((request) => request(this.axios));
}
}

export * from './type';
Empty file removed src/api/blocks/type.ts
Empty file.
1 change: 1 addition & 0 deletions src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ export * from './scripts';
export * from './transactions';
export * from './transactionManager';
export * from './vesting';
export * from './type';
2 changes: 2 additions & 0 deletions src/api/pools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,5 @@ export class PoolsApi extends BaseAPI {
.then((request) => request(this.axios));
}
}

export * from './type';

0 comments on commit 606b41c

Please sign in to comment.