@aloma.io/integration-sdk 3.8.9 → 3.8.10

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.
@@ -15,7 +15,7 @@ export default class Fetcher {
15
15
  [key: string]: any;
16
16
  }) => void;
17
17
  });
18
- getToken(force: boolean): Promise<void>;
18
+ getToken(force: boolean): Promise<string>;
19
19
  protected customize(options?: {}, args?: {}): Promise<void>;
20
20
  protected onError(e: any, url: string, options: any, retries: number, args: any, rateLimit?: any): Promise<unknown>;
21
21
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.8.9",
3
+ "version": "3.8.10",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -15,7 +15,7 @@ export default class Fetcher {
15
15
  if (customize) this.customize0 = customize;
16
16
  }
17
17
 
18
- async getToken(force: boolean) {
18
+ async getToken(force: boolean): Promise<string> {
19
19
  throw new Error('not implemented');
20
20
  }
21
21