Skip to content

Commit 606b41c

Browse files
authored
Merge pull request #21 from SIDANWhatever/hotfix/type-exporting
Hotfix/type exporting
2 parents 0287161 + 827b709 commit 606b41c

File tree

6 files changed

+8
-1
lines changed

6 files changed

+8
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@maestro-org/typescript-sdk",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "TypeScript SDK for the Maestro Dapp Platform",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

src/api/addresses/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,3 +212,5 @@ export class AddressesApi extends BaseAPI {
212212
.then((request) => request(this.axios));
213213
}
214214
}
215+
216+
export * from './type';

src/api/assets/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,3 +244,5 @@ export class AssetsApi extends BaseAPI {
244244
.then((request) => request(this.axios));
245245
}
246246
}
247+
248+
export * from './type';

src/api/blocks/type.ts

Whitespace-only changes.

src/api/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ export * from './scripts';
1111
export * from './transactions';
1212
export * from './transactionManager';
1313
export * from './vesting';
14+
export * from './type';

src/api/pools/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,5 @@ export class PoolsApi extends BaseAPI {
147147
.then((request) => request(this.axios));
148148
}
149149
}
150+
151+
export * from './type';

0 commit comments

Comments
 (0)