@overmap-ai/core 1.0.60-sdk-refactor.13 → 1.0.60-sdk-refactor.14

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.
@@ -15535,8 +15535,9 @@ class JWTService extends BaseAuthService {
15535
15535
  return secondsUntilExpiry < EXPIRING_SOON_THRESHOLD;
15536
15536
  }
15537
15537
  getAuthHeader() {
15538
- const accesseToken = this.getAccessToken();
15539
- return `Bearer ${accesseToken}`;
15538
+ const accessToken = this.getAccessToken();
15539
+ console.debug("getAuthHeader", accessToken);
15540
+ return `Bearer ${accessToken}`;
15540
15541
  }
15541
15542
  async prepareAuth() {
15542
15543
  if (!this.tokenIsExpiringSoon())