@aloma.io/integration-sdk 3.0.12 → 3.0.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.0.12",
3
+ "version": "3.0.13",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -96,7 +96,7 @@ class Fetcher {
96
96
  } catch (e) {
97
97
  --retries;
98
98
 
99
- console.log(theURL, e, this);
99
+ console.log(theURL, e);
100
100
 
101
101
  if (retries <= 0) throw e;
102
102
 
@@ -158,7 +158,6 @@ class OAuthFetcher extends Fetcher {
158
158
  const local = this;
159
159
  const token = await local.getToken(args.forceTokenRefresh);
160
160
 
161
- options = { ...options };
162
161
  options.headers = {
163
162
  ...options.headers,
164
163
  Authorization: `Bearer ${token}`,