@aloma.io/integration-sdk 3.8.8 → 3.8.9

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