@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 +1 -1
- package/src/internal/index.mjs +1 -2
package/package.json
CHANGED
package/src/internal/index.mjs
CHANGED
@@ -96,7 +96,7 @@ class Fetcher {
|
|
96
96
|
} catch (e) {
|
97
97
|
--retries;
|
98
98
|
|
99
|
-
console.log(theURL, e
|
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}`,
|