@vulog/aima-client 1.1.1 → 1.1.3

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.d.mts CHANGED
@@ -37,4 +37,4 @@ type Client = AxiosInstance & {
37
37
 
38
38
  declare const getClient: (options: ClientOptions) => Client;
39
39
 
40
- export { type Client, type ClientError, type ClientOptions, getClient };
40
+ export { type Client, type ClientError, type ClientOptions, type Store, type Token, getClient };
package/dist/index.d.ts CHANGED
@@ -37,4 +37,4 @@ type Client = AxiosInstance & {
37
37
 
38
38
  declare const getClient: (options: ClientOptions) => Client;
39
39
 
40
- export { type Client, type ClientError, type ClientOptions, getClient };
40
+ export { type Client, type ClientError, type ClientOptions, type Store, type Token, getClient };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vulog/aima-client",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
package/src/index.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  import getClient from './getClient';
2
- import { ClientOptions, Client, ClientError } from './types';
2
+ import { ClientOptions, Client, ClientError, Store, Token } from './types';
3
3
 
4
- export { ClientOptions, getClient, Client, ClientError };
4
+ export { ClientOptions, getClient, Client, ClientError, Store, Token };