@deque/axe-auth 1.2.1-next.a75fd13c → 1.2.1-next.bd7463fa

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.
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.discoverSSOConfig = discoverSSOConfig;
4
4
  const errors_1 = require("./errors");
5
5
  const predicates_1 = require("./predicates");
6
+ const retry_1 = require("./retry");
6
7
  const userAgent_1 = require("../userAgent");
7
8
  const LOOPBACK_HOSTS = new Set(["localhost", "127.0.0.1", "[::1]"]);
8
9
  function assertSecureServerURL(serverURL, allowInsecure) {
@@ -58,7 +59,7 @@ async function discoverSSOConfig(serverURL, options = {}) {
58
59
  const url = buildSSOConfigURL(parsed);
59
60
  let response;
60
61
  try {
61
- response = await fetch(url, {
62
+ response = await (0, retry_1.fetchWithRetry)(url, {
62
63
  headers: { "User-Agent": userAgent_1.USER_AGENT },
63
64
  signal: options.signal,
64
65
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/axe-auth",
3
- "version": "1.2.1-next.a75fd13c",
3
+ "version": "1.2.1-next.bd7463fa",
4
4
  "description": "CLI authentication utility for Deque services",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {
@@ -39,7 +39,7 @@
39
39
  "@hono/node-server": "^1.19.14",
40
40
  "@types/node": "^24.0.0",
41
41
  "c8": "^11.0.0",
42
- "hono": "^4.12.21",
42
+ "hono": "^4.12.25",
43
43
  "tsx": "^4.20.6",
44
44
  "typescript": "^6.0.3"
45
45
  },