arky-sdk 0.3.18 → 0.3.19

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.cjs CHANGED
@@ -81,15 +81,20 @@ function createHttpClient(cfg) {
81
81
  "Content-Type": "application/json",
82
82
  ...options?.headers || {}
83
83
  };
84
- let { accessToken, expiresAt } = await cfg.getToken();
84
+ let { accessToken, expiresAt, provider } = await cfg.getToken();
85
85
  const nowSec = Date.now() / 1e3;
86
86
  if (expiresAt && nowSec > expiresAt) {
87
87
  await ensureFreshToken();
88
88
  const tokens = await cfg.getToken();
89
89
  accessToken = tokens.accessToken;
90
+ provider = tokens.provider;
90
91
  }
91
92
  if (accessToken) {
92
- headers["Authorization"] = `Bearer ${accessToken}`;
93
+ if (provider === "API") {
94
+ headers["X-API-Key"] = accessToken;
95
+ } else {
96
+ headers["Authorization"] = `Bearer ${accessToken}`;
97
+ }
93
98
  }
94
99
  const finalPath = options?.params ? path + buildQueryString(options.params) : path;
95
100
  const fetchOpts = { method, headers };