@hasna/domains 0.0.45 → 0.0.47

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/cli/index.js CHANGED
@@ -2084,6 +2084,7 @@ var require_commander = __commonJS((exports) => {
2084
2084
  // ../contracts/dist/client/storage.js
2085
2085
  import { isIP } from "net";
2086
2086
  import { readFileSync, statSync } from "fs";
2087
+ import { createRequire } from "module";
2087
2088
  import { join } from "path";
2088
2089
  function envToken(name) {
2089
2090
  return name.toUpperCase().replace(/-/g, "_");
@@ -2098,24 +2099,48 @@ function clientTransportEnvKeys(name) {
2098
2099
  function credentialOverrideEnvKey(name) {
2099
2100
  return `HASNA_${envToken(name)}_API_KEY_OVERRIDE`;
2100
2101
  }
2102
+ function credentialPointerEnvKey(name) {
2103
+ return `HASNA_${envToken(name)}_API_KEY_REF`;
2104
+ }
2101
2105
  function homeDir(env) {
2102
2106
  const home = env.HOME?.trim();
2103
2107
  return home ? home : null;
2104
2108
  }
2105
- function credentialDiskSources(name, env) {
2106
- return profileDiskSources(name, env, null);
2107
- }
2108
- function profileDiskSources(name, env, profile) {
2109
+ function credentialDiskSourceList(name, env, profile = null) {
2109
2110
  const home = homeDir(env);
2110
2111
  if (!home || !SAFE_APP_SLUG.test(name))
2111
2112
  return [];
2112
2113
  const stem = profile ? `${name}.${profile}` : name;
2113
2114
  const configStem = profile ? `${name}-${profile}` : name;
2114
2115
  return [
2115
- join(home, HASNA_STATE_DIR, FLEET_CREDENTIAL_DIR, `${stem}.env`),
2116
- join(home, CONFIG_DIR, CONFIG_NAMESPACE, `${configStem}-cloud.env`)
2116
+ {
2117
+ path: join(home, HASNA_STATE_DIR, FLEET_CREDENTIAL_DIR, `${stem}.env`),
2118
+ tier: "fleet-env",
2119
+ deprecated: false
2120
+ },
2121
+ {
2122
+ path: join(home, HASNA_STATE_DIR, LEGACY_CLOUD_DIR, `${stem}.env`),
2123
+ tier: "legacy-cloud",
2124
+ deprecated: true
2125
+ },
2126
+ {
2127
+ path: join(home, CONFIG_DIR, CONFIG_NAMESPACE, `${configStem}.env`),
2128
+ tier: "config",
2129
+ deprecated: false
2130
+ },
2131
+ {
2132
+ path: join(home, CONFIG_DIR, CONFIG_NAMESPACE, `${configStem}-cloud.env`),
2133
+ tier: "config-legacy",
2134
+ deprecated: true
2135
+ }
2117
2136
  ];
2118
2137
  }
2138
+ function credentialDiskSources(name, env) {
2139
+ return credentialDiskSourceList(name, env, null).map((s) => s.path);
2140
+ }
2141
+ function profileDiskSources(name, env, profile) {
2142
+ return credentialDiskSourceList(name, env, profile).map((s) => s.path);
2143
+ }
2119
2144
  function parseEnvFile(text) {
2120
2145
  const values = new Map;
2121
2146
  for (const rawLine of text.split(/\r?\n/)) {
@@ -2182,6 +2207,9 @@ function appConfigDiskValue(name, env, keys) {
2182
2207
  return null;
2183
2208
  }
2184
2209
  function assertUsableCredential(appName, source, value) {
2210
+ if (VAULT_POINTER_SHAPE.test(value)) {
2211
+ throw new CredentialResolutionError(appName, `The credential from ${source} looks like a secrets-vault pointer (a path-shaped reference like ` + `'namespace/app/live/api_key'). A vault path is NEVER accepted as a literal API key. ` + `Use ${credentialPointerEnvKey(appName)} to resolve the key through the vault, or provide the actual key value.`, [source]);
2212
+ }
2185
2213
  if (!ILLEGAL_IN_HEADER_VALUE.test(value))
2186
2214
  return;
2187
2215
  throw new CredentialResolutionError(appName, `The credential from ${source} contains characters that cannot be sent in an HTTP header ` + `(a control character or non-ASCII byte). A file written with CR-only line endings is the usual ` + `cause. Rewrite that credential file with one LF-terminated KEY=value line. ` + `The value is not shown here, and is deliberately never logged.`, [source]);
@@ -2203,6 +2231,14 @@ function sealCredential(fields) {
2203
2231
  writable: false,
2204
2232
  configurable: false
2205
2233
  });
2234
+ if (fields.pointerVaultKey !== undefined) {
2235
+ Object.defineProperty(sealed, "pointerVaultKey", {
2236
+ value: fields.pointerVaultKey,
2237
+ enumerable: false,
2238
+ writable: false,
2239
+ configurable: false
2240
+ });
2241
+ }
2206
2242
  Object.defineProperty(sealed, INSPECT_CUSTOM, {
2207
2243
  value: () => ({ ...visible, apiKey: "[redacted]" }),
2208
2244
  enumerable: false,
@@ -2254,7 +2290,8 @@ function validateAndSealResolvedCredential(appName, credential) {
2254
2290
  deliberate: credential.deliberate,
2255
2291
  deprecated: credential.deprecated,
2256
2292
  diskCandidates: credential.diskCandidates,
2257
- warning: credential.warning
2293
+ warning: credential.warning,
2294
+ ...credential.pointerVaultKey !== undefined ? { pointerVaultKey: credential.pointerVaultKey } : {}
2258
2295
  });
2259
2296
  }
2260
2297
  function firstEnvValue(env, keys) {
@@ -2314,6 +2351,27 @@ function resolveCredential(name, env, options = {}) {
2314
2351
  warning: null
2315
2352
  });
2316
2353
  }
2354
+ const pointerKeyName = credentialPointerEnvKey(name);
2355
+ const pointerRaw = env[pointerKeyName];
2356
+ if (pointerRaw !== undefined) {
2357
+ const pointer = pointerRaw.trim();
2358
+ if (!pointer) {
2359
+ throw new CredentialResolutionError(name, `${pointerKeyName} is set but empty. It is a deliberate vault pointer, so it is not resolved around: ` + `either give it a vault item key or unset it to fall back to the credential on disk.`, [pointerKeyName]);
2360
+ }
2361
+ if (!VAULT_POINTER_SHAPE.test(pointer)) {
2362
+ throw new CredentialResolutionError(name, `${pointerKeyName} must name a vault ITEM KEY (a path-shaped reference like ` + `'namespace/app/live/api_key'), not a credential value. A pointer that carries a literal is refused.`, [pointerKeyName]);
2363
+ }
2364
+ return sealCredential({
2365
+ apiKey: "",
2366
+ pointerVaultKey: pointer,
2367
+ tier: "pointer",
2368
+ source: pointerKeyName,
2369
+ deliberate: true,
2370
+ deprecated: false,
2371
+ diskCandidates: diskPaths,
2372
+ warning: null
2373
+ });
2374
+ }
2317
2375
  const profile = options.profile?.trim() || env[CREDENTIAL_PROFILE_ENV_KEY]?.trim();
2318
2376
  if (profile) {
2319
2377
  const profileSource = options.profile?.trim() ? "explicit profile argument" : CREDENTIAL_PROFILE_ENV_KEY;
@@ -2338,26 +2396,42 @@ function resolveCredential(name, env, options = {}) {
2338
2396
  }
2339
2397
  throw new CredentialResolutionError(name, `Profile '${profile}' (from ${profileSource}) has no ${apiKeyKeys[0]} for '${name}'. ` + `Looked in: ${paths.join(", ") || "<no HOME in this environment>"}. ` + `A profile names WHICH identity to use, so it is never resolved around \u2014 ` + `create the profile's credential file or unset ${CREDENTIAL_PROFILE_ENV_KEY}.`, paths);
2340
2398
  }
2341
- const diskHits = diskPaths.map((path) => ({ path, value: readCredentialFile(path, apiKeyKeys) })).filter((hit) => hit.value !== null);
2399
+ const diskSourceList = credentialDiskSourceList(name, env, null);
2400
+ const diskHits = diskSourceList.map((src) => ({ src, value: readCredentialFile(src.path, apiKeyKeys) })).filter((hit) => hit.value !== null);
2342
2401
  if (diskHits.length > 0) {
2343
2402
  const winner = diskHits[0];
2344
- assertUsableCredential(name, winner.path, winner.value);
2403
+ assertUsableCredential(name, winner.src.path, winner.value);
2345
2404
  const divergentSources = [
2346
- ...diskHits.slice(1).filter((hit) => hit.value !== winner.value).map((hit) => hit.path),
2405
+ ...diskHits.slice(1).filter((hit) => hit.value !== winner.value).map((hit) => hit.src.path),
2347
2406
  ...(() => {
2348
2407
  const legacyHit = firstEnvValue(env, apiKeyKeys);
2349
2408
  return legacyHit && legacyHit.value !== winner.value ? [legacyHit.key] : [];
2350
2409
  })()
2351
2410
  ];
2352
- const warning = divergentSources.length > 0 ? `Credential sources disagree for '${name}': ${winner.path} and ` + `${divergentSources.join(", ")} hold different keys. ${winner.path} wins, because a file on ` + `disk is re-read on every call while an environment variable is a snapshot. Reconcile them \u2014 ` + `a rotation that updated only one leaves the other to fail 401 wherever it is loaded first.` : null;
2411
+ const warning = divergentSources.length > 0 ? `Credential sources disagree for '${name}': ${winner.src.path} and ` + `${divergentSources.join(", ")} hold different keys. ${winner.src.path} wins, because a file on ` + `disk is re-read on every call while an environment variable is a snapshot. Reconcile them \u2014 ` + `a rotation that updated only one leaves the other to fail 401 wherever it is loaded first.` : null;
2412
+ let deprecated = winner.src.deprecated;
2413
+ let finalWarning = warning;
2414
+ if (winner.src.deprecated) {
2415
+ deprecated = true;
2416
+ const sink = options.onDeprecation ?? defaultDeprecationSink;
2417
+ const notified = deprecationNotified();
2418
+ const noticeKey = `${name}:${winner.src.path}`;
2419
+ if (!notified.has(noticeKey)) {
2420
+ notified.add(noticeKey);
2421
+ const target = diskSourceList[0]?.path ?? "<none>";
2422
+ const message = `[${name}] DEPRECATED: the API key came from ${winner.src.path} \u2014 a legacy credential location. ` + `The primary location is ${target} (~/.hasna/fleet-env/<app>.env). The legacy 'cloud' tiers are ` + `removed after ${LEGACY_CLOUD_REMOVAL_DEADLINE}. Migrate the key to the primary location.`;
2423
+ sink(message);
2424
+ }
2425
+ finalWarning = [warning, `Legacy credential source: ${winner.src.path}. Removed after ${LEGACY_CLOUD_REMOVAL_DEADLINE}.`].filter(Boolean).join(" ") || null;
2426
+ }
2353
2427
  return sealCredential({
2354
2428
  apiKey: winner.value,
2355
- tier: "disk",
2356
- source: winner.path,
2429
+ tier: winner.src.tier,
2430
+ source: winner.src.path,
2357
2431
  deliberate: false,
2358
- deprecated: false,
2432
+ deprecated,
2359
2433
  diskCandidates: diskPaths,
2360
- warning
2434
+ warning: finalWarning
2361
2435
  });
2362
2436
  }
2363
2437
  const legacy = firstEnvValue(env, apiKeyKeys);
@@ -2383,6 +2457,45 @@ function resolveCredential(name, env, options = {}) {
2383
2457
  }
2384
2458
  return null;
2385
2459
  }
2460
+ async function completePointerCredential(name, pointerResolution, env = process.env) {
2461
+ const vaultKey = pointerResolution.pointerVaultKey;
2462
+ const pointerEnvKey = pointerResolution.source;
2463
+ if (!vaultKey) {
2464
+ throw new CredentialResolutionError(name, `Pointer resolution from ${pointerEnvKey} carries no vault item key; this is a defect in the resolver.`, [pointerEnvKey]);
2465
+ }
2466
+ let secretsSdk;
2467
+ try {
2468
+ secretsSdk = requireSecretsSdk(SECRETS_PACKAGE_SPECIFIER);
2469
+ } catch {
2470
+ throw new CredentialResolutionError(name, `${pointerEnvKey} names vault item '${vaultKey}', but the secrets SDK (@hasna/secrets) is not installed ` + `in this process. A vault pointer is TERMINAL: install @hasna/secrets to resolve it, or unset ${pointerEnvKey}.`, [pointerEnvKey]);
2471
+ }
2472
+ let client;
2473
+ try {
2474
+ client = secretsSdk.createSecretsClientFromEnv(env);
2475
+ } catch {
2476
+ throw new CredentialResolutionError(name, `${pointerEnvKey} names vault item '${vaultKey}', but the secrets client could not be configured from this ` + `environment (the secrets service URL and key env are missing or invalid). A vault pointer is TERMINAL and ` + `never falls through to a literal or disk credential.`, [pointerEnvKey]);
2477
+ }
2478
+ let secret;
2479
+ try {
2480
+ secret = await client.getSecret({ key: vaultKey });
2481
+ } catch {
2482
+ throw new CredentialResolutionError(name, `${pointerEnvKey} names vault item '${vaultKey}', but the vault could not be reached or the item is ` + `unavailable. A vault pointer is TERMINAL and never falls through to a literal or disk credential.`, [pointerEnvKey]);
2483
+ }
2484
+ const value = secret.value;
2485
+ if (!value) {
2486
+ throw new CredentialResolutionError(name, `${pointerEnvKey} resolved vault item '${vaultKey}', but it holds no value. A vault pointer is TERMINAL.`, [pointerEnvKey]);
2487
+ }
2488
+ assertUsableCredential(name, `${pointerEnvKey} -> vault:${vaultKey}`, value);
2489
+ return sealCredential({
2490
+ apiKey: value,
2491
+ tier: "pointer",
2492
+ source: `${pointerEnvKey} -> vault:${vaultKey}`,
2493
+ deliberate: true,
2494
+ deprecated: false,
2495
+ diskCandidates: pointerResolution.diskCandidates,
2496
+ warning: null
2497
+ });
2498
+ }
2386
2499
  function isValidDnsDomain(value) {
2387
2500
  if (value.length === 0 || value.length > 253 || ASCII_CONTROL_PATTERN.test(value) || /[^\x00-\x7f]/.test(value)) {
2388
2501
  return false;
@@ -2606,6 +2719,13 @@ function currentCredential(name, apiKey) {
2606
2719
  }
2607
2720
  return explicitCredential(name, apiKey);
2608
2721
  }
2722
+ async function resolveRequestCredential(name, apiKey, env = process.env) {
2723
+ const resolved = currentCredential(name, apiKey);
2724
+ if (resolved.tier === "pointer") {
2725
+ return completePointerCredential(name, resolved, env);
2726
+ }
2727
+ return resolved;
2728
+ }
2609
2729
  function authFailureGuidance(credential) {
2610
2730
  const origin = `The API key for this request came from ${credential.source}`;
2611
2731
  if (credential.deliberate) {
@@ -2751,7 +2871,7 @@ function createHasnaHttpTransport(options) {
2751
2871
  const retry = resolveRetry(opts.retry);
2752
2872
  const methodRetryable = IDEMPOTENT_METHODS.has(upper) || Boolean(opts.idempotencyKey);
2753
2873
  const maxAttempts = retry && methodRetryable ? retry.retries + 1 : 1;
2754
- const credential = currentCredential(options.name, options.apiKey);
2874
+ const credential = await resolveRequestCredential(options.name, options.apiKey);
2755
2875
  let last = null;
2756
2876
  for (let attempt = 1;attempt <= maxAttempts; attempt++) {
2757
2877
  const result = await once(upper, rel, url, body, opts, credential);
@@ -2914,7 +3034,7 @@ function resolveStorageClient(name, env = process.env, overrides) {
2914
3034
  }
2915
3035
  return { transport: "sqlite", client: null };
2916
3036
  }
2917
- var CREDENTIAL_PROFILE_ENV_KEY = "HASNA_PROFILE", CredentialResolutionError, HASNA_STATE_DIR = ".hasna", FLEET_CREDENTIAL_DIR = "cloud", CONFIG_DIR = ".config", CONFIG_NAMESPACE = "hasna", MAX_CREDENTIAL_FILE_BYTES, SAFE_APP_SLUG, SAFE_PROFILE, ILLEGAL_IN_HEADER_VALUE, CREDENTIAL_SHAPED_KEY, INSPECT_CUSTOM, CREDENTIAL_SEAL, CALLER_SUPPLIED_CREDENTIAL_PROVIDER_SOURCE = "caller-supplied CredentialProvider", DEPRECATION_REGISTRY, ASCII_CONTROL_PATTERN, DNS_LABEL_PATTERN, HasnaHttpError, DEFAULT_RETRY_STATUSES, IDEMPOTENT_METHODS, AUTHORITY_OVERRIDE_HEADERS, defaultSleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
3037
+ var CREDENTIAL_PROFILE_ENV_KEY = "HASNA_PROFILE", CredentialResolutionError, HASNA_STATE_DIR = ".hasna", FLEET_CREDENTIAL_DIR = "fleet-env", LEGACY_CLOUD_DIR = "cloud", CONFIG_DIR = ".config", CONFIG_NAMESPACE = "hasna", LEGACY_CLOUD_REMOVAL_DEADLINE = "2026-10-01", MAX_CREDENTIAL_FILE_BYTES, SAFE_APP_SLUG, SAFE_PROFILE, ILLEGAL_IN_HEADER_VALUE, VAULT_POINTER_SHAPE, CREDENTIAL_SHAPED_KEY, INSPECT_CUSTOM, CREDENTIAL_SEAL, CALLER_SUPPLIED_CREDENTIAL_PROVIDER_SOURCE = "caller-supplied CredentialProvider", DEPRECATION_REGISTRY, SECRETS_PACKAGE_SPECIFIER, requireSecretsSdk, ASCII_CONTROL_PATTERN, DNS_LABEL_PATTERN, HasnaHttpError, DEFAULT_RETRY_STATUSES, IDEMPOTENT_METHODS, AUTHORITY_OVERRIDE_HEADERS, defaultSleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
2918
3038
  var init_storage = __esm(() => {
2919
3039
  CredentialResolutionError = class CredentialResolutionError extends Error {
2920
3040
  appName;
@@ -2930,10 +3050,13 @@ var init_storage = __esm(() => {
2930
3050
  SAFE_APP_SLUG = /^[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/;
2931
3051
  SAFE_PROFILE = /^[A-Za-z0-9](?:[A-Za-z0-9._-]*[A-Za-z0-9])?$/;
2932
3052
  ILLEGAL_IN_HEADER_VALUE = /[^\t\x20-\x7e]/;
3053
+ VAULT_POINTER_SHAPE = /^[a-z0-9][a-z0-9-]*(?:\/[a-z0-9][a-z0-9-_.]*){2,}$/;
2933
3054
  CREDENTIAL_SHAPED_KEY = /(?:^|_)(?:API_KEY|KEY|TOKEN|SECRET|PASSWORD|PASSWD|CREDENTIAL|AUTH)(?:_|$)/;
2934
3055
  INSPECT_CUSTOM = Symbol.for("nodejs.util.inspect.custom");
2935
3056
  CREDENTIAL_SEAL = Symbol.for("hasna:contracts:sealedCredential");
2936
3057
  DEPRECATION_REGISTRY = Symbol.for("hasna:contracts:credentialDeprecationNotices");
3058
+ SECRETS_PACKAGE_SPECIFIER = "@hasna/" + "secrets";
3059
+ requireSecretsSdk = createRequire(import.meta.url);
2937
3060
  ASCII_CONTROL_PATTERN = /[\u0000-\u001f\u007f]/;
2938
3061
  DNS_LABEL_PATTERN = /^[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/;
2939
3062
  HasnaHttpError = class HasnaHttpError extends Error {
@@ -2967,6 +3090,7 @@ var init_storage = __esm(() => {
2967
3090
  });
2968
3091
 
2969
3092
  // ../contracts/dist/client/transport.js
3093
+ import { createRequire as createRequire2 } from "module";
2970
3094
  function envToken2(name) {
2971
3095
  return name.toUpperCase().replace(/-/g, "_");
2972
3096
  }
@@ -2977,12 +3101,14 @@ function clientTransportEnvKeys2(name) {
2977
3101
  apiKeyKeys: [`HASNA_${envSegment}_API_KEY`, `${envSegment}_API_KEY`]
2978
3102
  };
2979
3103
  }
2980
- var MAX_CREDENTIAL_FILE_BYTES2, INSPECT_CUSTOM2, CREDENTIAL_SEAL2, DEPRECATION_REGISTRY2, IDEMPOTENT_METHODS2, AUTHORITY_OVERRIDE_HEADERS2;
3104
+ var MAX_CREDENTIAL_FILE_BYTES2, INSPECT_CUSTOM2, CREDENTIAL_SEAL2, DEPRECATION_REGISTRY2, SECRETS_PACKAGE_SPECIFIER2, requireSecretsSdk2, IDEMPOTENT_METHODS2, AUTHORITY_OVERRIDE_HEADERS2;
2981
3105
  var init_transport = __esm(() => {
2982
3106
  MAX_CREDENTIAL_FILE_BYTES2 = 64 * 1024;
2983
3107
  INSPECT_CUSTOM2 = Symbol.for("nodejs.util.inspect.custom");
2984
3108
  CREDENTIAL_SEAL2 = Symbol.for("hasna:contracts:sealedCredential");
2985
3109
  DEPRECATION_REGISTRY2 = Symbol.for("hasna:contracts:credentialDeprecationNotices");
3110
+ SECRETS_PACKAGE_SPECIFIER2 = "@hasna/" + "secrets";
3111
+ requireSecretsSdk2 = createRequire2(import.meta.url);
2986
3112
  IDEMPOTENT_METHODS2 = new Set(["GET", "HEAD", "PUT", "DELETE", "OPTIONS"]);
2987
3113
  AUTHORITY_OVERRIDE_HEADERS2 = new Set([
2988
3114
  "host",
@@ -3263,22 +3389,132 @@ var init_migrations = __esm(() => {
3263
3389
  ];
3264
3390
  });
3265
3391
 
3392
+ // ../../node_modules/.bun/@hasna+paths@0.1.0/node_modules/@hasna/paths/dist/index.js
3393
+ import { homedir } from "os";
3394
+ import { join as join2 } from "path";
3395
+ function assertApp(app) {
3396
+ if (typeof app !== "string" || app.length === 0) {
3397
+ throw new TypeError("paths: app must be a non-empty string");
3398
+ }
3399
+ if (!APP_SLUG_RE.test(app)) {
3400
+ throw new TypeError(`paths: invalid app slug "${app}" \u2014 expected lowercase kebab-case ([a-z0-9]+(-[a-z0-9]+)*)`);
3401
+ }
3402
+ }
3403
+ function envOf(options) {
3404
+ return options.env ?? process.env;
3405
+ }
3406
+ function envValue(options, kind) {
3407
+ const value = envOf(options)[KIND_ENV[kind]];
3408
+ return typeof value === "string" && value.length > 0 ? value : undefined;
3409
+ }
3410
+ function isMacOS(platform) {
3411
+ return platform === "darwin";
3412
+ }
3413
+ function baseDir(kind, options) {
3414
+ const override = envValue(options, kind);
3415
+ if (override)
3416
+ return override;
3417
+ const home = options.home ?? homedir();
3418
+ const platform = options.platform ?? process.platform;
3419
+ if (isMacOS(platform)) {
3420
+ switch (kind) {
3421
+ case "config":
3422
+ case "data":
3423
+ return join2(home, "Library", "Application Support", "Hasna");
3424
+ case "cache":
3425
+ return join2(home, "Library", "Caches", "Hasna");
3426
+ case "state":
3427
+ return join2(home, "Library", "Logs", "Hasna");
3428
+ }
3429
+ }
3430
+ switch (kind) {
3431
+ case "config":
3432
+ return join2(home, ".config", "hasna");
3433
+ case "data":
3434
+ return join2(home, ".local", "share", "hasna");
3435
+ case "state":
3436
+ return join2(home, ".local", "state", "hasna");
3437
+ case "cache":
3438
+ return join2(home, ".cache", "hasna");
3439
+ }
3440
+ }
3441
+ function resolvePath(kind, options) {
3442
+ assertApp(options.app);
3443
+ const appSegment = options.internal === true ? join2("internal", options.app) : options.app;
3444
+ return join2(baseDir(kind, options), appSegment);
3445
+ }
3446
+ function dataDir(options) {
3447
+ return resolvePath("data", options);
3448
+ }
3449
+ var KIND_ENV, APP_SLUG_RE;
3450
+ var init_dist = __esm(() => {
3451
+ KIND_ENV = {
3452
+ config: "HASNA_CONFIG_HOME",
3453
+ data: "HASNA_DATA_HOME",
3454
+ state: "HASNA_STATE_HOME",
3455
+ cache: "HASNA_CACHE_HOME"
3456
+ };
3457
+ APP_SLUG_RE = /^[a-z0-9]+(?:-[a-z0-9]+)*$/;
3458
+ });
3459
+
3460
+ // src/lib/app-home.ts
3461
+ import { existsSync } from "fs";
3462
+ import { homedir as homedir2 } from "os";
3463
+ import { join as join3, resolve } from "path";
3464
+ function effectiveHome(env = process.env) {
3465
+ return env["HOME"] || env["USERPROFILE"] || homedir2();
3466
+ }
3467
+ function legacyHomeDir(env = process.env) {
3468
+ return join3(effectiveHome(env), ".hasna", APP);
3469
+ }
3470
+ function resolverHome(env = process.env) {
3471
+ const home = env["HOME"] || env["USERPROFILE"];
3472
+ return dataDir({ app: APP, home, env });
3473
+ }
3474
+ function adoptResolverHome(resolved, env = process.env) {
3475
+ const dataOverride = env.HASNA_DATA_HOME;
3476
+ if (typeof dataOverride === "string" && dataOverride.trim().length > 0)
3477
+ return true;
3478
+ return existsSync(join3(resolved, "domains.db"));
3479
+ }
3480
+ function exactAppOverride(env = process.env) {
3481
+ const override = env["HASNA_DOMAINS_HOME"] ?? env["DOMAINS_HOME"] ?? env["HASNA_DOMAINS_DIR"] ?? env["DOMAINS_DIR"];
3482
+ return override && override.trim() ? override.trim() : undefined;
3483
+ }
3484
+ function appHome(env = process.env) {
3485
+ const override = exactAppOverride(env);
3486
+ if (override)
3487
+ return resolve(override);
3488
+ const resolved = resolverHome(env);
3489
+ return adoptResolverHome(resolved, env) ? resolve(resolved) : resolve(legacyHomeDir(env));
3490
+ }
3491
+ function getDefaultDbPath(env = process.env) {
3492
+ return join3(appHome(env), `${APP}.db`);
3493
+ }
3494
+ function getDefaultConfigPath(env = process.env) {
3495
+ return join3(appHome(env), "config.json");
3496
+ }
3497
+ var APP = "domains";
3498
+ var init_app_home = __esm(() => {
3499
+ init_dist();
3500
+ });
3501
+
3266
3502
  // src/db/database.ts
3267
3503
  import { Database } from "bun:sqlite";
3268
3504
  import { createHash } from "crypto";
3269
3505
  import {
3270
3506
  copyFileSync,
3271
- existsSync,
3507
+ existsSync as existsSync2,
3272
3508
  mkdirSync,
3273
3509
  readFileSync as readFileSync2,
3274
3510
  readdirSync,
3275
3511
  statSync as statSync2,
3276
3512
  writeFileSync
3277
3513
  } from "fs";
3278
- import { dirname, join as join2, resolve } from "path";
3279
- import { homedir } from "os";
3514
+ import { dirname, join as join4, resolve as resolve2 } from "path";
3515
+ import { homedir as homedir3 } from "os";
3280
3516
  function canonicalHome(env) {
3281
- return env["HOME"] || env["USERPROFILE"] || homedir();
3517
+ return env["HOME"] || env["USERPROFILE"] || homedir3();
3282
3518
  }
3283
3519
  function sha256File(path) {
3284
3520
  return createHash("sha256").update(readFileSync2(path)).digest("hex");
@@ -3286,20 +3522,20 @@ function sha256File(path) {
3286
3522
  function migrateLegacyDataDir(env = process.env, dryRun = false) {
3287
3523
  const report = { dryRun, wouldCopy: [], copied: [] };
3288
3524
  const home = canonicalHome(env);
3289
- const xdgData = env["XDG_DATA_HOME"]?.trim() || join2(home, ".local", "share");
3290
- const oldDir = join2(xdgData, "open-domains");
3291
- const oldDb = join2(oldDir, "domains.db");
3292
- if (!existsSync(oldDb))
3525
+ const xdgData = env["XDG_DATA_HOME"]?.trim() || join4(home, ".local", "share");
3526
+ const oldDir = join4(xdgData, "open-domains");
3527
+ const oldDb = join4(oldDir, "domains.db");
3528
+ if (!existsSync2(oldDb))
3293
3529
  return report;
3294
- const canonicalDir = join2(home, ".hasna", "domains");
3295
- const newDb = join2(canonicalDir, "domains.db");
3296
- if (existsSync(newDb))
3530
+ const canonicalDir = join4(home, ".hasna", "domains");
3531
+ const newDb = join4(canonicalDir, "domains.db");
3532
+ if (existsSync2(newDb))
3297
3533
  return report;
3298
- if (existsSync(join2(canonicalDir, ".migrated-from-xdg.receipt.json")))
3534
+ if (existsSync2(join4(canonicalDir, ".migrated-from-xdg.receipt.json")))
3299
3535
  return report;
3300
3536
  if (dryRun) {
3301
3537
  for (const name of ["domains.db", "domains.db-wal", "domains.db-shm"]) {
3302
- if (existsSync(join2(oldDir, name)) && !existsSync(join2(canonicalDir, name))) {
3538
+ if (existsSync2(join4(oldDir, name)) && !existsSync2(join4(canonicalDir, name))) {
3303
3539
  report.wouldCopy.push(name);
3304
3540
  }
3305
3541
  }
@@ -3308,11 +3544,11 @@ function migrateLegacyDataDir(env = process.env, dryRun = false) {
3308
3544
  mkdirSync(canonicalDir, { recursive: true });
3309
3545
  const copied = [];
3310
3546
  for (const name of ["domains.db", "domains.db-wal", "domains.db-shm"]) {
3311
- const from = join2(oldDir, name);
3312
- if (!existsSync(from))
3547
+ const from = join4(oldDir, name);
3548
+ if (!existsSync2(from))
3313
3549
  continue;
3314
- const to = join2(canonicalDir, name);
3315
- if (existsSync(to))
3550
+ const to = join4(canonicalDir, name);
3551
+ if (existsSync2(to))
3316
3552
  continue;
3317
3553
  copyFileSync(from, to);
3318
3554
  copied.push({ name, bytes: statSync2(to).size, sha256: sha256File(to) });
@@ -3321,7 +3557,7 @@ function migrateLegacyDataDir(env = process.env, dryRun = false) {
3321
3557
  if (statSync2(newDb).size !== statSync2(oldDb).size || sha256File(newDb) !== sha256File(oldDb)) {
3322
3558
  throw new Error(`Refusing migration: copied ${newDb} does not byte-match ${oldDb}; the canonical root was not populated.`);
3323
3559
  }
3324
- writeFileSync(join2(canonicalDir, ".migrated-from-xdg.receipt.json"), `${JSON.stringify({
3560
+ writeFileSync(join4(canonicalDir, ".migrated-from-xdg.receipt.json"), `${JSON.stringify({
3325
3561
  migratedAt: new Date().toISOString(),
3326
3562
  from: oldDir,
3327
3563
  to: canonicalDir,
@@ -3335,26 +3571,26 @@ function getDbPath(env = process.env) {
3335
3571
  return env["DOMAINS_DB_PATH"];
3336
3572
  if (env["HASNA_DOMAINS_DB_PATH"])
3337
3573
  return env["HASNA_DOMAINS_DB_PATH"];
3338
- const explicit = env["DOMAINS_DIR"] ?? env["HASNA_DOMAINS_DIR"];
3574
+ const explicit = exactAppOverride(env);
3339
3575
  if (explicit) {
3340
- return join2(explicit, "domains.db");
3576
+ return join4(explicit, "domains.db");
3341
3577
  }
3342
- const home = canonicalHome(env);
3343
- const canonicalDir = join2(home, ".hasna", "domains");
3344
- migrateLegacyDataDir(env);
3345
- migrateDotfile("domains", canonicalDir, env);
3346
- return join2(canonicalDir, "domains.db");
3578
+ if (!adoptResolverHome(resolverHome(env), env)) {
3579
+ migrateLegacyDataDir(env);
3580
+ migrateDotfile("domains", legacyHomeDir(env), env);
3581
+ }
3582
+ return getDefaultDbPath(env);
3347
3583
  }
3348
3584
  function migrateDotfile(name, newDir, env) {
3349
3585
  const home = canonicalHome(env);
3350
- const oldDir = join2(home, `.${name}`);
3351
- if (!existsSync(oldDir) || existsSync(newDir))
3586
+ const oldDir = join4(home, `.${name}`);
3587
+ if (!existsSync2(oldDir) || existsSync2(newDir))
3352
3588
  return;
3353
3589
  mkdirSync(newDir, { recursive: true });
3354
3590
  for (const file of readdirSync(oldDir)) {
3355
- const oldPath = join2(oldDir, file);
3591
+ const oldPath = join4(oldDir, file);
3356
3592
  if (statSync2(oldPath).isFile())
3357
- copyFileSync(oldPath, join2(newDir, file));
3593
+ copyFileSync(oldPath, join4(newDir, file));
3358
3594
  }
3359
3595
  }
3360
3596
  function getDatabase() {
@@ -3362,7 +3598,7 @@ function getDatabase() {
3362
3598
  return _db;
3363
3599
  const dbPath = getDbPath();
3364
3600
  if (dbPath !== ":memory:") {
3365
- const dir = dirname(resolve(dbPath));
3601
+ const dir = dirname(resolve2(dbPath));
3366
3602
  mkdirSync(dir, { recursive: true });
3367
3603
  }
3368
3604
  _db = new Database(dbPath);
@@ -3395,6 +3631,7 @@ function getDatabase() {
3395
3631
  var _db = null;
3396
3632
  var init_database = __esm(() => {
3397
3633
  init_migrations();
3634
+ init_app_home();
3398
3635
  });
3399
3636
 
3400
3637
  // src/db/domain-records.ts
@@ -4898,7 +5135,7 @@ function assertNoStoreConflict(env) {
4898
5135
  throw new Error(`Refusing to resolve the hosted domains store while ${pathVar} is set: that variable ` + `names a local sqlite file, so the configuration asks for BOTH stores at once and ` + `nothing here can tell which you meant. Writing to the wrong one is silent \u2014 a plain ` + `\`bun run\` script that set ${pathVar} put 230 rows into the production portfolio on ` + `2026-08-07 while reporting success. Pick one: unset HASNA_DOMAINS_API_URL and ` + `HASNA_DOMAINS_API_KEY to use ${pathVar}; unset ${pathVar} to use the hosted store; or set ` + `${ALLOW_CLOUD_WITH_LOCAL_PATH}=1 if you really intend the hosted store with that variable present.`);
4899
5136
  }
4900
5137
  function requireHostedClient(env, flip) {
4901
- const resolved = resolveStorageClient(APP, withoutRetiredModeKeys(env));
5138
+ const resolved = resolveStorageClient(APP2, withoutRetiredModeKeys(env));
4902
5139
  if (resolved.transport !== "http") {
4903
5140
  throw new Error(`Hosted domains client was requested (${flip.urlSource} + ${flip.keySource}) but ` + `@hasna/contracts resolved transport '${resolved.transport}'. Refusing to read the wrong dataset.`);
4904
5141
  }
@@ -4923,7 +5160,7 @@ function isCloudStore(env = process.env) {
4923
5160
  requireHostedClient(env, flip);
4924
5161
  return true;
4925
5162
  }
4926
- var APP = "domains", DOMAINS_PAGE_SIZE = 1000, RETIRED_MODE_KEYS, ALLOW_CLOUD_IN_TESTS = "HASNA_DOMAINS_ALLOW_CLOUD_IN_TESTS", ALLOW_CLOUD_WITH_LOCAL_PATH = "HASNA_DOMAINS_ALLOW_CLOUD_WITH_LOCAL_PATH", LOCAL_PATH_VARS, warnedCloudDowngrade = false;
5163
+ var APP2 = "domains", DOMAINS_PAGE_SIZE = 1000, RETIRED_MODE_KEYS, ALLOW_CLOUD_IN_TESTS = "HASNA_DOMAINS_ALLOW_CLOUD_IN_TESTS", ALLOW_CLOUD_WITH_LOCAL_PATH = "HASNA_DOMAINS_ALLOW_CLOUD_WITH_LOCAL_PATH", LOCAL_PATH_VARS, warnedCloudDowngrade = false;
4927
5164
  var init_store = __esm(() => {
4928
5165
  init_storage();
4929
5166
  init_transport();
@@ -4949,14 +5186,14 @@ var init_store = __esm(() => {
4949
5186
 
4950
5187
  // src/lib/version.ts
4951
5188
  import { readFileSync as readFileSync3 } from "fs";
4952
- import { dirname as dirname2, resolve as resolve2 } from "path";
5189
+ import { dirname as dirname2, resolve as resolve3 } from "path";
4953
5190
  import { fileURLToPath } from "url";
4954
5191
  function getPackageVersion() {
4955
5192
  if (cachedVersion)
4956
5193
  return cachedVersion;
4957
5194
  try {
4958
5195
  const moduleDir = dirname2(fileURLToPath(import.meta.url));
4959
- const packageJsonPath = resolve2(moduleDir, "../../package.json");
5196
+ const packageJsonPath = resolve3(moduleDir, "../../package.json");
4960
5197
  const pkg = JSON.parse(readFileSync3(packageJsonPath, "utf8"));
4961
5198
  cachedVersion = pkg.version ?? "0.0.0";
4962
5199
  } catch {
@@ -5973,7 +6210,7 @@ var init_godaddy = __esm(() => {
5973
6210
  };
5974
6211
  });
5975
6212
 
5976
- // ../../node_modules/.bun/@smithy+types@4.16.1/node_modules/@smithy/types/dist-cjs/index.js
6213
+ // ../../node_modules/.bun/@smithy+types@4.17.2/node_modules/@smithy/types/dist-cjs/index.js
5977
6214
  var require_dist_cjs = __commonJS((exports) => {
5978
6215
  var HttpAuthLocation;
5979
6216
  (function(HttpAuthLocation2) {
@@ -6064,7 +6301,7 @@ var require_dist_cjs = __commonJS((exports) => {
6064
6301
  exports.resolveDefaultRuntimeConfig = resolveDefaultRuntimeConfig;
6065
6302
  });
6066
6303
 
6067
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js
6304
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/transport/index.js
6068
6305
  var require_transport = __commonJS((exports) => {
6069
6306
  var { SMITHY_CONTEXT_KEY } = require_dist_cjs();
6070
6307
  var getSmithyContext = (context) => context[SMITHY_CONTEXT_KEY] || (context[SMITHY_CONTEXT_KEY] = {});
@@ -6231,7 +6468,7 @@ var require_transport = __commonJS((exports) => {
6231
6468
  exports.toEndpointV1 = toEndpointV1;
6232
6469
  });
6233
6470
 
6234
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js
6471
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/schema/index.js
6235
6472
  var require_schema = __commonJS((exports) => {
6236
6473
  var { getSmithyContext, HttpResponse, toEndpointV1 } = require_transport();
6237
6474
  var deref = (schemaRef) => {
@@ -6364,8 +6601,6 @@ var require_schema = __commonJS((exports) => {
6364
6601
 
6365
6602
  class ListSchema extends Schema {
6366
6603
  static symbol = Symbol.for("@smithy/lis");
6367
- name;
6368
- traits;
6369
6604
  valueSchema;
6370
6605
  symbol = ListSchema.symbol;
6371
6606
  }
@@ -6378,8 +6613,6 @@ var require_schema = __commonJS((exports) => {
6378
6613
 
6379
6614
  class MapSchema extends Schema {
6380
6615
  static symbol = Symbol.for("@smithy/map");
6381
- name;
6382
- traits;
6383
6616
  keySchema;
6384
6617
  valueSchema;
6385
6618
  symbol = MapSchema.symbol;
@@ -6394,8 +6627,6 @@ var require_schema = __commonJS((exports) => {
6394
6627
 
6395
6628
  class OperationSchema extends Schema {
6396
6629
  static symbol = Symbol.for("@smithy/ope");
6397
- name;
6398
- traits;
6399
6630
  input;
6400
6631
  output;
6401
6632
  symbol = OperationSchema.symbol;
@@ -6410,8 +6641,6 @@ var require_schema = __commonJS((exports) => {
6410
6641
 
6411
6642
  class StructureSchema extends Schema {
6412
6643
  static symbol = Symbol.for("@smithy/str");
6413
- name;
6414
- traits;
6415
6644
  memberNames;
6416
6645
  memberList;
6417
6646
  symbol = StructureSchema.symbol;
@@ -6746,9 +6975,7 @@ var require_schema = __commonJS((exports) => {
6746
6975
 
6747
6976
  class SimpleSchema extends Schema {
6748
6977
  static symbol = Symbol.for("@smithy/sim");
6749
- name;
6750
6978
  schemaRef;
6751
- traits;
6752
6979
  symbol = SimpleSchema.symbol;
6753
6980
  }
6754
6981
  var sim = (namespace, name, schemaRef, traits) => Schema.assign(new SimpleSchema, {
@@ -6910,7 +7137,7 @@ var require_schema = __commonJS((exports) => {
6910
7137
  exports.translateTraits = translateTraits;
6911
7138
  });
6912
7139
 
6913
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/client/index.js
7140
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/client/index.js
6914
7141
  var require_client = __commonJS((exports) => {
6915
7142
  var { getSmithyContext, normalizeProvider } = require_transport();
6916
7143
  exports.getSmithyContext = getSmithyContext;
@@ -7198,7 +7425,7 @@ var require_client = __commonJS((exports) => {
7198
7425
  };
7199
7426
  };
7200
7427
  var sleep = (seconds) => {
7201
- return new Promise((resolve3) => setTimeout(resolve3, seconds * 1000));
7428
+ return new Promise((resolve4) => setTimeout(resolve4, seconds * 1000));
7202
7429
  };
7203
7430
  var waiterServiceDefaults = {
7204
7431
  minDelay: 2,
@@ -7327,8 +7554,8 @@ var require_client = __commonJS((exports) => {
7327
7554
  };
7328
7555
  var abortTimeout = (abortSignal) => {
7329
7556
  let onAbort;
7330
- const promise = new Promise((resolve3) => {
7331
- onAbort = () => resolve3({ state: WaiterState.ABORTED });
7557
+ const promise = new Promise((resolve4) => {
7558
+ onAbort = () => resolve4({ state: WaiterState.ABORTED });
7332
7559
  if (typeof abortSignal.addEventListener === "function") {
7333
7560
  abortSignal.addEventListener("abort", onAbort);
7334
7561
  } else {
@@ -7979,10 +8206,10 @@ var require_client = __commonJS((exports) => {
7979
8206
  exports.withBaseException = withBaseException;
7980
8207
  });
7981
8208
 
7982
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/config/index.js
8209
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/config/index.js
7983
8210
  var require_config = __commonJS((exports) => {
7984
- var { homedir: homedir2 } = __require("os");
7985
- var { sep, join: join3 } = __require("path");
8211
+ var { homedir: homedir4 } = __require("os");
8212
+ var { sep, join: join5 } = __require("path");
7986
8213
  var { createHash: createHash2 } = __require("crypto");
7987
8214
  var { readFile: readFile$1 } = __require("fs/promises");
7988
8215
  var { IniSectionType } = require_dist_cjs();
@@ -8131,7 +8358,7 @@ var require_config = __commonJS((exports) => {
8131
8358
  return `${HOMEDRIVE}${HOMEPATH}`;
8132
8359
  const homeDirCacheKey = getHomeDirCacheKey();
8133
8360
  if (!homeDirCache[homeDirCacheKey])
8134
- homeDirCache[homeDirCacheKey] = homedir2();
8361
+ homeDirCache[homeDirCacheKey] = homedir4();
8135
8362
  return homeDirCache[homeDirCacheKey];
8136
8363
  };
8137
8364
  var ENV_PROFILE = "AWS_PROFILE";
@@ -8140,7 +8367,7 @@ var require_config = __commonJS((exports) => {
8140
8367
  var getSSOTokenFilepath = (id) => {
8141
8368
  const hasher = createHash2("sha1");
8142
8369
  const cacheName = hasher.update(id).digest("hex");
8143
- return join3(getHomeDir(), ".aws", "sso", "cache", `${cacheName}.json`);
8370
+ return join5(getHomeDir(), ".aws", "sso", "cache", `${cacheName}.json`);
8144
8371
  };
8145
8372
  var tokenIntercept = {};
8146
8373
  var getSSOTokenFromFile = async (id) => {
@@ -8167,9 +8394,9 @@ var require_config = __commonJS((exports) => {
8167
8394
  ...data.default && { default: data.default }
8168
8395
  });
8169
8396
  var ENV_CONFIG_PATH = "AWS_CONFIG_FILE";
8170
- var getConfigFilepath = () => process.env[ENV_CONFIG_PATH] || join3(getHomeDir(), ".aws", "config");
8397
+ var getConfigFilepath = () => process.env[ENV_CONFIG_PATH] || join5(getHomeDir(), ".aws", "config");
8171
8398
  var ENV_CREDENTIALS_PATH = "AWS_SHARED_CREDENTIALS_FILE";
8172
- var getCredentialsFilepath = () => process.env[ENV_CREDENTIALS_PATH] || join3(getHomeDir(), ".aws", "credentials");
8399
+ var getCredentialsFilepath = () => process.env[ENV_CREDENTIALS_PATH] || join5(getHomeDir(), ".aws", "credentials");
8173
8400
  var prefixKeyRegex = /^([\w-]+)\s(["'])?([\w-@+.%:/]+)\2$/;
8174
8401
  var profileNameBlockList = ["__proto__", "profile __proto__"];
8175
8402
  var parseIni = (iniData) => {
@@ -8235,11 +8462,11 @@ var require_config = __commonJS((exports) => {
8235
8462
  const relativeHomeDirPrefix = "~/";
8236
8463
  let resolvedFilepath = filepath;
8237
8464
  if (filepath.startsWith(relativeHomeDirPrefix)) {
8238
- resolvedFilepath = join3(homeDir2, filepath.slice(2));
8465
+ resolvedFilepath = join5(homeDir2, filepath.slice(2));
8239
8466
  }
8240
8467
  let resolvedConfigFilepath = configFilepath;
8241
8468
  if (configFilepath.startsWith(relativeHomeDirPrefix)) {
8242
- resolvedConfigFilepath = join3(homeDir2, configFilepath.slice(2));
8469
+ resolvedConfigFilepath = join5(homeDir2, configFilepath.slice(2));
8243
8470
  }
8244
8471
  const parsedFiles = await Promise.all([
8245
8472
  readFile(resolvedConfigFilepath, {
@@ -8456,7 +8683,7 @@ var require_config = __commonJS((exports) => {
8456
8683
  };
8457
8684
  var imdsRequest = async (options) => {
8458
8685
  const { request } = __require("http");
8459
- return new Promise((resolve3, reject) => {
8686
+ return new Promise((resolve4, reject) => {
8460
8687
  const req = request({
8461
8688
  hostname: options.hostname,
8462
8689
  port: options.port,
@@ -8484,7 +8711,7 @@ var require_config = __commonJS((exports) => {
8484
8711
  const chunks = [];
8485
8712
  res.on("data", (chunk) => chunks.push(chunk));
8486
8713
  res.on("end", () => {
8487
- resolve3(Buffer.concat(chunks));
8714
+ resolve4(Buffer.concat(chunks));
8488
8715
  req.destroy();
8489
8716
  });
8490
8717
  });
@@ -8674,7 +8901,7 @@ var require_config = __commonJS((exports) => {
8674
8901
  exports.resolveRegionConfig = resolveRegionConfig;
8675
8902
  });
8676
8903
 
8677
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js
8904
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/endpoints/index.js
8678
8905
  var require_endpoints = __commonJS((exports) => {
8679
8906
  var { CONFIG_PREFIX_SEPARATOR, booleanSelector, SelectorType, loadConfig } = require_config();
8680
8907
  var { toEndpointV1, getSmithyContext, normalizeProvider, isValidHostLabel } = require_transport();
@@ -9486,7 +9713,7 @@ var require_endpoints = __commonJS((exports) => {
9486
9713
  exports.resolveParams = resolveParams;
9487
9714
  });
9488
9715
 
9489
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js
9716
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/serde/index.js
9490
9717
  var require_serde = __commonJS((exports) => {
9491
9718
  var { createHmac, createHash: createHash2, getRandomValues } = __require("crypto");
9492
9719
  var { ReadStream, lstatSync, fstatSync } = __require("fs");
@@ -10835,7 +11062,7 @@ ${value}\r
10835
11062
  if (isReadableStream(stream)) {
10836
11063
  return headStream$1(stream, bytes);
10837
11064
  }
10838
- return new Promise((resolve3, reject) => {
11065
+ return new Promise((resolve4, reject) => {
10839
11066
  const collector = new Collector$1;
10840
11067
  collector.limit = bytes;
10841
11068
  stream.pipe(collector);
@@ -10846,7 +11073,7 @@ ${value}\r
10846
11073
  collector.on("error", reject);
10847
11074
  collector.on("finish", function() {
10848
11075
  const bytes2 = concatBytes(this.buffers);
10849
- resolve3(bytes2);
11076
+ resolve4(bytes2);
10850
11077
  });
10851
11078
  });
10852
11079
  };
@@ -10960,7 +11187,7 @@ ${value}\r
10960
11187
  if (isReadableStream(stream)) {
10961
11188
  return collectReadableStream(stream);
10962
11189
  }
10963
- return new Promise((resolve3, reject) => {
11190
+ return new Promise((resolve4, reject) => {
10964
11191
  const collector = new Collector;
10965
11192
  const nodeStream = stream;
10966
11193
  nodeStream.pipe(collector);
@@ -10971,7 +11198,7 @@ ${value}\r
10971
11198
  collector.on("error", reject);
10972
11199
  collector.on("finish", function() {
10973
11200
  const bytes = concatBytes(this.bufferedBytes);
10974
- resolve3(bytes);
11201
+ resolve4(bytes);
10975
11202
  });
10976
11203
  });
10977
11204
  };
@@ -11124,7 +11351,7 @@ ${value}\r
11124
11351
  exports.v4 = v4;
11125
11352
  });
11126
11353
 
11127
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js
11354
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/checksum/index.js
11128
11355
  var require_checksum = __commonJS((exports) => {
11129
11356
  var { createReadStream } = __require("fs");
11130
11357
  var { Writable } = __require("stream");
@@ -11163,7 +11390,7 @@ var require_checksum = __commonJS((exports) => {
11163
11390
  callback();
11164
11391
  }
11165
11392
  }
11166
- var fileStreamHasher = (hashCtor, fileStream) => new Promise((resolve3, reject) => {
11393
+ var fileStreamHasher = (hashCtor, fileStream) => new Promise((resolve4, reject) => {
11167
11394
  if (!isReadStream(fileStream)) {
11168
11395
  reject(new Error("Unable to calculate hash for non-file streams."));
11169
11396
  return;
@@ -11181,7 +11408,7 @@ var require_checksum = __commonJS((exports) => {
11181
11408
  });
11182
11409
  hashCalculator.on("error", reject);
11183
11410
  hashCalculator.on("finish", function() {
11184
- hash.digest().then(resolve3).catch(reject);
11411
+ hash.digest().then(resolve4).catch(reject);
11185
11412
  });
11186
11413
  });
11187
11414
  var isReadStream = (stream) => typeof stream.path === "string";
@@ -11192,14 +11419,14 @@ var require_checksum = __commonJS((exports) => {
11192
11419
  const hash = new hashCtor;
11193
11420
  const hashCalculator = new HashCalculator(hash);
11194
11421
  readableStream.pipe(hashCalculator);
11195
- return new Promise((resolve3, reject) => {
11422
+ return new Promise((resolve4, reject) => {
11196
11423
  readableStream.on("error", (err) => {
11197
11424
  hashCalculator.end();
11198
11425
  reject(err);
11199
11426
  });
11200
11427
  hashCalculator.on("error", reject);
11201
11428
  hashCalculator.on("finish", () => {
11202
- hash.digest().then(resolve3).catch(reject);
11429
+ hash.digest().then(resolve4).catch(reject);
11203
11430
  });
11204
11431
  });
11205
11432
  };
@@ -11740,7 +11967,7 @@ var require_checksum = __commonJS((exports) => {
11740
11967
  exports.readableStreamHasher = readableStreamHasher;
11741
11968
  });
11742
11969
 
11743
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js
11970
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/event-streams/index.js
11744
11971
  var require_event_streams = __commonJS((exports) => {
11745
11972
  var { Crc32 } = require_checksum();
11746
11973
  var { toHex, fromHex, toUtf8, fromUtf8 } = require_serde();
@@ -11815,27 +12042,27 @@ var require_event_streams = __commonJS((exports) => {
11815
12042
  formatHeaderValue(header) {
11816
12043
  switch (header.type) {
11817
12044
  case "boolean":
11818
- return Uint8Array.from([header.value ? HEADER_VALUE_TYPE.boolTrue : HEADER_VALUE_TYPE.boolFalse]);
12045
+ return Uint8Array.from([header.value ? 0 : 1]);
11819
12046
  case "byte":
11820
- return Uint8Array.from([HEADER_VALUE_TYPE.byte, header.value]);
12047
+ return Uint8Array.from([2, header.value]);
11821
12048
  case "short":
11822
12049
  const shortView = new DataView(new ArrayBuffer(3));
11823
- shortView.setUint8(0, HEADER_VALUE_TYPE.short);
12050
+ shortView.setUint8(0, 3);
11824
12051
  shortView.setInt16(1, header.value, false);
11825
12052
  return new Uint8Array(shortView.buffer);
11826
12053
  case "integer":
11827
12054
  const intView = new DataView(new ArrayBuffer(5));
11828
- intView.setUint8(0, HEADER_VALUE_TYPE.integer);
12055
+ intView.setUint8(0, 4);
11829
12056
  intView.setInt32(1, header.value, false);
11830
12057
  return new Uint8Array(intView.buffer);
11831
12058
  case "long":
11832
12059
  const longBytes = new Uint8Array(9);
11833
- longBytes[0] = HEADER_VALUE_TYPE.long;
12060
+ longBytes[0] = 5;
11834
12061
  longBytes.set(header.value.bytes, 1);
11835
12062
  return longBytes;
11836
12063
  case "binary":
11837
12064
  const binView = new DataView(new ArrayBuffer(3 + header.value.byteLength));
11838
- binView.setUint8(0, HEADER_VALUE_TYPE.byteArray);
12065
+ binView.setUint8(0, 6);
11839
12066
  binView.setUint16(1, header.value.byteLength, false);
11840
12067
  const binBytes = new Uint8Array(binView.buffer);
11841
12068
  binBytes.set(header.value, 3);
@@ -11843,14 +12070,14 @@ var require_event_streams = __commonJS((exports) => {
11843
12070
  case "string":
11844
12071
  const utf8Bytes = this.fromUtf8(header.value);
11845
12072
  const strView = new DataView(new ArrayBuffer(3 + utf8Bytes.byteLength));
11846
- strView.setUint8(0, HEADER_VALUE_TYPE.string);
12073
+ strView.setUint8(0, 7);
11847
12074
  strView.setUint16(1, utf8Bytes.byteLength, false);
11848
12075
  const strBytes = new Uint8Array(strView.buffer);
11849
12076
  strBytes.set(utf8Bytes, 3);
11850
12077
  return strBytes;
11851
12078
  case "timestamp":
11852
12079
  const tsBytes = new Uint8Array(9);
11853
- tsBytes[0] = HEADER_VALUE_TYPE.timestamp;
12080
+ tsBytes[0] = 8;
11854
12081
  tsBytes.set(Int64.fromNumber(header.value.valueOf()).bytes, 1);
11855
12082
  return tsBytes;
11856
12083
  case "uuid":
@@ -11858,7 +12085,7 @@ var require_event_streams = __commonJS((exports) => {
11858
12085
  throw new Error(`Invalid UUID received: ${header.value}`);
11859
12086
  }
11860
12087
  const uuidBytes = new Uint8Array(17);
11861
- uuidBytes[0] = HEADER_VALUE_TYPE.uuid;
12088
+ uuidBytes[0] = 9;
11862
12089
  uuidBytes.set(fromHex(header.value.replace(/-/g, "")), 1);
11863
12090
  return uuidBytes;
11864
12091
  }
@@ -11871,46 +12098,46 @@ var require_event_streams = __commonJS((exports) => {
11871
12098
  const name = this.toUtf8(new Uint8Array(headers.buffer, headers.byteOffset + position, nameLength));
11872
12099
  position += nameLength;
11873
12100
  switch (headers.getUint8(position++)) {
11874
- case HEADER_VALUE_TYPE.boolTrue:
12101
+ case 0:
11875
12102
  out[name] = {
11876
12103
  type: BOOLEAN_TAG,
11877
12104
  value: true
11878
12105
  };
11879
12106
  break;
11880
- case HEADER_VALUE_TYPE.boolFalse:
12107
+ case 1:
11881
12108
  out[name] = {
11882
12109
  type: BOOLEAN_TAG,
11883
12110
  value: false
11884
12111
  };
11885
12112
  break;
11886
- case HEADER_VALUE_TYPE.byte:
12113
+ case 2:
11887
12114
  out[name] = {
11888
12115
  type: BYTE_TAG,
11889
12116
  value: headers.getInt8(position++)
11890
12117
  };
11891
12118
  break;
11892
- case HEADER_VALUE_TYPE.short:
12119
+ case 3:
11893
12120
  out[name] = {
11894
12121
  type: SHORT_TAG,
11895
12122
  value: headers.getInt16(position, false)
11896
12123
  };
11897
12124
  position += 2;
11898
12125
  break;
11899
- case HEADER_VALUE_TYPE.integer:
12126
+ case 4:
11900
12127
  out[name] = {
11901
12128
  type: INT_TAG,
11902
12129
  value: headers.getInt32(position, false)
11903
12130
  };
11904
12131
  position += 4;
11905
12132
  break;
11906
- case HEADER_VALUE_TYPE.long:
12133
+ case 5:
11907
12134
  out[name] = {
11908
12135
  type: LONG_TAG,
11909
12136
  value: new Int64(new Uint8Array(headers.buffer, headers.byteOffset + position, 8))
11910
12137
  };
11911
12138
  position += 8;
11912
12139
  break;
11913
- case HEADER_VALUE_TYPE.byteArray:
12140
+ case 6:
11914
12141
  const binaryLength = headers.getUint16(position, false);
11915
12142
  position += 2;
11916
12143
  out[name] = {
@@ -11919,7 +12146,7 @@ var require_event_streams = __commonJS((exports) => {
11919
12146
  };
11920
12147
  position += binaryLength;
11921
12148
  break;
11922
- case HEADER_VALUE_TYPE.string:
12149
+ case 7:
11923
12150
  const stringLength = headers.getUint16(position, false);
11924
12151
  position += 2;
11925
12152
  out[name] = {
@@ -11928,14 +12155,14 @@ var require_event_streams = __commonJS((exports) => {
11928
12155
  };
11929
12156
  position += stringLength;
11930
12157
  break;
11931
- case HEADER_VALUE_TYPE.timestamp:
12158
+ case 8:
11932
12159
  out[name] = {
11933
12160
  type: TIMESTAMP_TAG,
11934
12161
  value: new Date(new Int64(new Uint8Array(headers.buffer, headers.byteOffset + position, 8)).valueOf())
11935
12162
  };
11936
12163
  position += 8;
11937
12164
  break;
11938
- case HEADER_VALUE_TYPE.uuid:
12165
+ case 9:
11939
12166
  const uuidBytes = new Uint8Array(headers.buffer, headers.byteOffset + position, 16);
11940
12167
  position += 16;
11941
12168
  out[name] = {
@@ -12305,7 +12532,7 @@ var require_event_streams = __commonJS((exports) => {
12305
12532
  streamEnded = true;
12306
12533
  });
12307
12534
  while (!generationEnded) {
12308
- const value = await new Promise((resolve3) => setTimeout(() => resolve3(records.shift()), 0));
12535
+ const value = await new Promise((resolve4) => setTimeout(() => resolve4(records.shift()), 0));
12309
12536
  if (value) {
12310
12537
  yield value;
12311
12538
  }
@@ -12358,7 +12585,7 @@ var require_event_streams = __commonJS((exports) => {
12358
12585
  this.defaultContentType = defaultContentType;
12359
12586
  this.compositeErrorRegistry = compositeErrorRegistry;
12360
12587
  }
12361
- async serializeEventStream({ eventStream, requestSchema, initialRequest }) {
12588
+ async serializeEventStream({ eventStream, requestSchema, initialRequest, initialMessageType }) {
12362
12589
  const marshaller = this.marshaller;
12363
12590
  const eventStreamMember = requestSchema.getEventStreamMember();
12364
12591
  const unionSchema = requestSchema.getMemberSchema(eventStreamMember);
@@ -12369,7 +12596,7 @@ var require_event_streams = __commonJS((exports) => {
12369
12596
  async* [Symbol.asyncIterator]() {
12370
12597
  if (initialRequest) {
12371
12598
  const headers = {
12372
- ":event-type": { type: "string", value: "initial-request" },
12599
+ ":event-type": { type: "string", value: initialMessageType ?? "initial-request" },
12373
12600
  ":message-type": { type: "string", value: "event" },
12374
12601
  ":content-type": { type: "string", value: defaultContentType }
12375
12602
  };
@@ -12413,7 +12640,7 @@ var require_event_streams = __commonJS((exports) => {
12413
12640
  };
12414
12641
  });
12415
12642
  }
12416
- async deserializeEventStream({ response, responseSchema, initialResponseContainer }) {
12643
+ async deserializeEventStream({ response, responseSchema, initialResponseContainer, initialMessageType }) {
12417
12644
  const marshaller = this.marshaller;
12418
12645
  const eventStreamMember = responseSchema.getEventStreamMember();
12419
12646
  const unionSchema = responseSchema.getMemberSchema(eventStreamMember);
@@ -12428,7 +12655,7 @@ var require_event_streams = __commonJS((exports) => {
12428
12655
  }
12429
12656
  }
12430
12657
  const body = event[unionMember].body;
12431
- if (unionMember === "initial-response") {
12658
+ if (unionMember === (initialMessageType ?? "initial-response")) {
12432
12659
  const dataObject = await this.deserializer.read(responseSchema, body);
12433
12660
  delete dataObject[eventStreamMember];
12434
12661
  return {
@@ -12623,7 +12850,7 @@ var require_event_streams = __commonJS((exports) => {
12623
12850
  exports.universalEventStreamSerdeProvider = eventStreamSerdeProvider$1;
12624
12851
  });
12625
12852
 
12626
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js
12853
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/protocols/index.js
12627
12854
  var require_protocols = __commonJS((exports) => {
12628
12855
  var { Uint8ArrayBlobAdapter, sdkStreamMixin, splitEvery, splitHeader, fromBase64, _parseEpochTimestamp, _parseRfc7231DateTime, _parseRfc3339DateTimeWithOffset, LazyJsonString, NumericValue, toUtf8, fromUtf8, generateIdempotencyToken, toBase64, dateToUtcString, quoteHeader } = require_serde();
12629
12856
  var { TypeRegistry, NormalizedSchema, translateTraits } = require_schema();
@@ -13096,10 +13323,9 @@ var require_protocols = __commonJS((exports) => {
13096
13323
  if (eventStreamMember) {
13097
13324
  if (input[eventStreamMember]) {
13098
13325
  const initialRequest = {};
13099
- for (const [memberName, memberSchema] of ns.structIterator()) {
13100
- if (memberName !== eventStreamMember && input[memberName]) {
13101
- serializer.write(memberSchema, input[memberName]);
13102
- initialRequest[memberName] = serializer.flush();
13326
+ for (const [memberName] of ns.structIterator()) {
13327
+ if (memberName !== eventStreamMember && input[memberName] != null) {
13328
+ initialRequest[memberName] = input[memberName];
13103
13329
  }
13104
13330
  }
13105
13331
  payload = await this.serializeEventStream({
@@ -13186,8 +13412,8 @@ var require_protocols = __commonJS((exports) => {
13186
13412
  async build() {
13187
13413
  const { hostname, protocol = "https", port, path: basePath } = await this.context.endpoint();
13188
13414
  this.path = basePath;
13189
- for (const resolvePath of this.resolvePathStack) {
13190
- resolvePath(this.path);
13415
+ for (const resolvePath2 of this.resolvePathStack) {
13416
+ resolvePath2(this.path);
13191
13417
  }
13192
13418
  return new HttpRequest({
13193
13419
  protocol,
@@ -13508,24 +13734,27 @@ var require_protocols = __commonJS((exports) => {
13508
13734
  }
13509
13735
  }
13510
13736
  var getHttpHandlerExtensionConfiguration = (runtimeConfig) => {
13737
+ if (runtimeConfig.logger && runtimeConfig.logger.constructor?.name !== "NoOpLogger") {
13738
+ runtimeConfig.requestHandler?.updateHttpClientConfig?.(Symbol.for("logger"), runtimeConfig.logger);
13739
+ }
13511
13740
  return {
13512
13741
  setHttpHandler(handler) {
13513
- runtimeConfig.httpHandler = handler;
13742
+ runtimeConfig.requestHandler = handler;
13514
13743
  },
13515
13744
  httpHandler() {
13516
- return runtimeConfig.httpHandler;
13745
+ return runtimeConfig.requestHandler;
13517
13746
  },
13518
13747
  updateHttpClientConfig(key, value) {
13519
- runtimeConfig.httpHandler?.updateHttpClientConfig(key, value);
13748
+ runtimeConfig.requestHandler?.updateHttpClientConfig(key, value);
13520
13749
  },
13521
13750
  httpHandlerConfigs() {
13522
- return runtimeConfig.httpHandler.httpHandlerConfigs();
13751
+ return runtimeConfig.requestHandler.httpHandlerConfigs();
13523
13752
  }
13524
13753
  };
13525
13754
  };
13526
13755
  var resolveHttpHandlerRuntimeConfig = (httpHandlerExtensionConfiguration) => {
13527
13756
  return {
13528
- httpHandler: httpHandlerExtensionConfiguration.httpHandler()
13757
+ requestHandler: httpHandlerExtensionConfiguration.httpHandler()
13529
13758
  };
13530
13759
  };
13531
13760
  var CONTENT_LENGTH_HEADER = "content-length";
@@ -13537,10 +13766,12 @@ var require_protocols = __commonJS((exports) => {
13537
13766
  if (body && Object.keys(headers).map((str) => str.toLowerCase()).indexOf(CONTENT_LENGTH_HEADER) === -1) {
13538
13767
  try {
13539
13768
  const length = bodyLengthChecker(body);
13540
- request.headers = {
13541
- ...request.headers,
13542
- [CONTENT_LENGTH_HEADER]: String(length)
13543
- };
13769
+ if (length != null) {
13770
+ request.headers = {
13771
+ ...request.headers,
13772
+ [CONTENT_LENGTH_HEADER]: String(length)
13773
+ };
13774
+ }
13544
13775
  } catch (ignored) {}
13545
13776
  }
13546
13777
  }
@@ -13609,7 +13840,7 @@ var require_protocols = __commonJS((exports) => {
13609
13840
  exports.resolvedPath = resolvedPath;
13610
13841
  });
13611
13842
 
13612
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js
13843
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/retry/index.js
13613
13844
  var require_retry = __commonJS((exports) => {
13614
13845
  var { Readable } = __require("stream");
13615
13846
  var { NoOpLogger, normalizeProvider } = require_client();
@@ -13796,7 +14027,7 @@ var require_retry = __commonJS((exports) => {
13796
14027
  }
13797
14028
  };
13798
14029
  }
13799
- var cooldown = (ms) => new Promise((resolve3) => setTimeout(resolve3, ms));
14030
+ var cooldown = (ms) => new Promise((resolve4) => setTimeout(resolve4, ms));
13800
14031
  var isRetryStrategyV2 = (retryStrategy) => typeof retryStrategy.acquireInitialRetryToken !== "undefined" && typeof retryStrategy.refreshRetryTokenForRetry !== "undefined" && typeof retryStrategy.recordSuccess !== "undefined";
13801
14032
  var getRetryErrorInfo = (error, logger) => {
13802
14033
  const errorInfo = {
@@ -13895,7 +14126,7 @@ var require_retry = __commonJS((exports) => {
13895
14126
  this.refillTokenBucket();
13896
14127
  while (amount > this.availableTokens) {
13897
14128
  const delay = (amount - this.availableTokens) / this.fillRate * 1000;
13898
- await new Promise((resolve3) => DefaultRateLimiter.setTimeoutFn(resolve3, delay));
14129
+ await new Promise((resolve4) => DefaultRateLimiter.setTimeoutFn(resolve4, delay));
13899
14130
  this.refillTokenBucket();
13900
14131
  }
13901
14132
  this.availableTokens = this.availableTokens - amount;
@@ -14237,7 +14468,7 @@ var require_retry = __commonJS((exports) => {
14237
14468
  const delayFromResponse = getDelayFromRetryAfterHeader(err.$response);
14238
14469
  const delay = Math.max(delayFromResponse || 0, delayFromDecider);
14239
14470
  totalDelay += delay;
14240
- await new Promise((resolve3) => setTimeout(resolve3, delay));
14471
+ await new Promise((resolve4) => setTimeout(resolve4, delay));
14241
14472
  continue;
14242
14473
  }
14243
14474
  if (!err.$metadata) {
@@ -14535,7 +14766,7 @@ var require_invoke_store = __commonJS((exports) => {
14535
14766
  exports.InvokeStoreBase = InvokeStoreBase;
14536
14767
  });
14537
14768
 
14538
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/index.js
14769
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/index.js
14539
14770
  var require_dist_cjs2 = __commonJS((exports) => {
14540
14771
  var { getSmithyContext } = require_transport();
14541
14772
  exports.getSmithyContext = getSmithyContext;
@@ -15701,7 +15932,7 @@ var require_es5 = __commonJS((exports, module) => {
15701
15932
  });
15702
15933
  });
15703
15934
 
15704
- // ../../node_modules/.bun/@aws-sdk+core@3.977.6/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js
15935
+ // ../../node_modules/.bun/@aws-sdk+core@3.977.8/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js
15705
15936
  var require_client2 = __commonJS((exports) => {
15706
15937
  var { Retry, RETRY_MODES } = require_retry();
15707
15938
  var { HttpRequest, parseUrl } = require_protocols();
@@ -16639,7 +16870,7 @@ More information can be found at: https://a.co/c895JFp`);
16639
16870
  exports.userAgentMiddleware = userAgentMiddleware;
16640
16871
  });
16641
16872
 
16642
- // ../../node_modules/.bun/@smithy+signature-v4@5.6.12/node_modules/@smithy/signature-v4/dist-cjs/index.js
16873
+ // ../../node_modules/.bun/@smithy+signature-v4@5.7.2/node_modules/@smithy/signature-v4/dist-cjs/index.js
16643
16874
  var require_dist_cjs3 = __commonJS((exports) => {
16644
16875
  var { fromUtf8, fromHex, toHex, toUint8Array, isArrayBuffer } = require_serde();
16645
16876
  var { normalizeProvider } = require_client();
@@ -16663,27 +16894,27 @@ var require_dist_cjs3 = __commonJS((exports) => {
16663
16894
  formatHeaderValue(header) {
16664
16895
  switch (header.type) {
16665
16896
  case "boolean":
16666
- return Uint8Array.from([header.value ? HEADER_VALUE_TYPE.boolTrue : HEADER_VALUE_TYPE.boolFalse]);
16897
+ return Uint8Array.from([header.value ? 0 : 1]);
16667
16898
  case "byte":
16668
- return Uint8Array.from([HEADER_VALUE_TYPE.byte, header.value]);
16899
+ return Uint8Array.from([2, header.value]);
16669
16900
  case "short":
16670
16901
  const shortView = new DataView(new ArrayBuffer(3));
16671
- shortView.setUint8(0, HEADER_VALUE_TYPE.short);
16902
+ shortView.setUint8(0, 3);
16672
16903
  shortView.setInt16(1, header.value, false);
16673
16904
  return new Uint8Array(shortView.buffer);
16674
16905
  case "integer":
16675
16906
  const intView = new DataView(new ArrayBuffer(5));
16676
- intView.setUint8(0, HEADER_VALUE_TYPE.integer);
16907
+ intView.setUint8(0, 4);
16677
16908
  intView.setInt32(1, header.value, false);
16678
16909
  return new Uint8Array(intView.buffer);
16679
16910
  case "long":
16680
16911
  const longBytes = new Uint8Array(9);
16681
- longBytes[0] = HEADER_VALUE_TYPE.long;
16912
+ longBytes[0] = 5;
16682
16913
  longBytes.set(header.value.bytes, 1);
16683
16914
  return longBytes;
16684
16915
  case "binary":
16685
16916
  const binView = new DataView(new ArrayBuffer(3 + header.value.byteLength));
16686
- binView.setUint8(0, HEADER_VALUE_TYPE.byteArray);
16917
+ binView.setUint8(0, 6);
16687
16918
  binView.setUint16(1, header.value.byteLength, false);
16688
16919
  const binBytes = new Uint8Array(binView.buffer);
16689
16920
  binBytes.set(header.value, 3);
@@ -16691,14 +16922,14 @@ var require_dist_cjs3 = __commonJS((exports) => {
16691
16922
  case "string":
16692
16923
  const utf8Bytes = fromUtf8(header.value);
16693
16924
  const strView = new DataView(new ArrayBuffer(3 + utf8Bytes.byteLength));
16694
- strView.setUint8(0, HEADER_VALUE_TYPE.string);
16925
+ strView.setUint8(0, 7);
16695
16926
  strView.setUint16(1, utf8Bytes.byteLength, false);
16696
16927
  const strBytes = new Uint8Array(strView.buffer);
16697
16928
  strBytes.set(utf8Bytes, 3);
16698
16929
  return strBytes;
16699
16930
  case "timestamp":
16700
16931
  const tsBytes = new Uint8Array(9);
16701
- tsBytes[0] = HEADER_VALUE_TYPE.timestamp;
16932
+ tsBytes[0] = 8;
16702
16933
  tsBytes.set(Int64.fromNumber(header.value.valueOf()).bytes, 1);
16703
16934
  return tsBytes;
16704
16935
  case "uuid":
@@ -16706,7 +16937,7 @@ var require_dist_cjs3 = __commonJS((exports) => {
16706
16937
  throw new Error(`Invalid UUID received: ${header.value}`);
16707
16938
  }
16708
16939
  const uuidBytes = new Uint8Array(17);
16709
- uuidBytes[0] = HEADER_VALUE_TYPE.uuid;
16940
+ uuidBytes[0] = 9;
16710
16941
  uuidBytes.set(fromHex(header.value.replace(/-/g, "")), 1);
16711
16942
  return uuidBytes;
16712
16943
  }
@@ -17179,7 +17410,7 @@ ${toHex(hashedRequest)}`;
17179
17410
  exports.signatureV4aContainer = signatureV4aContainer;
17180
17411
  });
17181
17412
 
17182
- // ../../node_modules/.bun/@aws-sdk+core@3.977.6/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js
17413
+ // ../../node_modules/.bun/@aws-sdk+core@3.977.8/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js
17183
17414
  var require_httpAuthSchemes = __commonJS((exports) => {
17184
17415
  var { ProviderError, booleanSelector, SelectorType, loadConfig } = require_config();
17185
17416
  var { setCredentialFeature } = require_client2();
@@ -17509,7 +17740,7 @@ var require_httpAuthSchemes = __commonJS((exports) => {
17509
17740
  exports.validateSigningProperties = validateSigningProperties;
17510
17741
  });
17511
17742
 
17512
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthSchemeProvider.js
17743
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthSchemeProvider.js
17513
17744
  function createAwsAuthSigv4HttpAuthOption(authParameters) {
17514
17745
  return {
17515
17746
  schemeId: "aws.auth#sigv4",
@@ -17551,7 +17782,7 @@ var init_httpAuthSchemeProvider = __esm(() => {
17551
17782
  import_client2 = __toESM(require_client(), 1);
17552
17783
  });
17553
17784
 
17554
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/EndpointParameters.js
17785
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/EndpointParameters.js
17555
17786
  var resolveClientEndpointParameters = (options) => {
17556
17787
  return Object.assign(options, {
17557
17788
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
@@ -17568,12 +17799,12 @@ var init_EndpointParameters = __esm(() => {
17568
17799
  };
17569
17800
  });
17570
17801
 
17571
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/package.json
17802
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/package.json
17572
17803
  var package_default;
17573
17804
  var init_package = __esm(() => {
17574
17805
  package_default = {
17575
17806
  name: "@aws-sdk/client-route-53",
17576
- version: "3.1106.0",
17807
+ version: "3.1112.0",
17577
17808
  description: "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
17578
17809
  homepage: "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-route-53",
17579
17810
  license: "Apache-2.0",
@@ -17622,13 +17853,13 @@ var init_package = __esm(() => {
17622
17853
  "test:integration:watch": "yarn g:vitest watch --passWithNoTests -c vitest.config.integ.mts",
17623
17854
  "test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts",
17624
17855
  "test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
17625
- "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
17856
+ "test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
17626
17857
  },
17627
17858
  dependencies: {
17628
- "@aws-sdk/core": "^3.977.6",
17629
- "@aws-sdk/credential-provider-node": "^3.972.78",
17630
- "@aws-sdk/middleware-sdk-route53": "^3.972.23",
17631
- "@aws-sdk/types": "^3.974.2",
17859
+ "@aws-sdk/core": "^3.977.8",
17860
+ "@aws-sdk/credential-provider-node": "^3.972.80",
17861
+ "@aws-sdk/middleware-sdk-route53": "^3.972.25",
17862
+ "@aws-sdk/types": "^3.974.4",
17632
17863
  "@smithy/core": "^3.31.1",
17633
17864
  "@smithy/fetch-http-handler": "^5.6.13",
17634
17865
  "@smithy/node-http-handler": "^4.9.13",
@@ -17642,7 +17873,7 @@ var init_package = __esm(() => {
17642
17873
  concurrently: "7.0.0",
17643
17874
  "downlevel-dts": "0.10.1",
17644
17875
  premove: "4.0.0",
17645
- typescript: "~5.8.3",
17876
+ typescript: "~7.0.2",
17646
17877
  vitest: "^4.0.17"
17647
17878
  },
17648
17879
  engines: {
@@ -17651,7 +17882,7 @@ var init_package = __esm(() => {
17651
17882
  };
17652
17883
  });
17653
17884
 
17654
- // ../../node_modules/.bun/@aws-sdk+credential-provider-env@3.972.67/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js
17885
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-env@3.972.69/node_modules/@aws-sdk/credential-provider-env/dist-es/fromEnv.js
17655
17886
  var import_client3, import_config, ENV_KEY = "AWS_ACCESS_KEY_ID", ENV_SECRET = "AWS_SECRET_ACCESS_KEY", ENV_SESSION = "AWS_SESSION_TOKEN", ENV_EXPIRATION = "AWS_CREDENTIAL_EXPIRATION", ENV_CREDENTIAL_SCOPE = "AWS_CREDENTIAL_SCOPE", ENV_ACCOUNT_ID = "AWS_ACCOUNT_ID", fromEnv = (init) => async () => {
17656
17887
  init?.logger?.debug("@aws-sdk/credential-provider-env - fromEnv");
17657
17888
  const accessKeyId = process.env[ENV_KEY];
@@ -17679,7 +17910,7 @@ var init_fromEnv = __esm(() => {
17679
17910
  import_config = __toESM(require_config(), 1);
17680
17911
  });
17681
17912
 
17682
- // ../../node_modules/.bun/@aws-sdk+credential-provider-env@3.972.67/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js
17913
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-env@3.972.69/node_modules/@aws-sdk/credential-provider-env/dist-es/index.js
17683
17914
  var exports_dist_es = {};
17684
17915
  __export(exports_dist_es, {
17685
17916
  fromEnv: () => fromEnv,
@@ -17694,7 +17925,7 @@ var init_dist_es = __esm(() => {
17694
17925
  init_fromEnv();
17695
17926
  });
17696
17927
 
17697
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js
17928
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/ImdsCredentials.js
17698
17929
  var isImdsCredentials = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.AccessKeyId === "string" && typeof arg.SecretAccessKey === "string" && typeof arg.Token === "string" && typeof arg.Expiration === "string", fromImdsCredentials = (creds) => ({
17699
17930
  accessKeyId: creds.AccessKeyId,
17700
17931
  secretAccessKey: creds.SecretAccessKey,
@@ -17703,16 +17934,16 @@ var isImdsCredentials = (arg) => Boolean(arg) && typeof arg === "object" && type
17703
17934
  ...creds.AccountId && { accountId: creds.AccountId }
17704
17935
  });
17705
17936
 
17706
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js
17937
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/RemoteProviderInit.js
17707
17938
  var DEFAULT_TIMEOUT = 1000, DEFAULT_MAX_RETRIES = 0, providerConfigFromInit = ({ maxRetries = DEFAULT_MAX_RETRIES, timeout = DEFAULT_TIMEOUT }) => ({ maxRetries, timeout });
17708
17939
 
17709
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js
17940
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/node-http.js
17710
17941
  import node_http from "http";
17711
17942
  var init_node_http = () => {};
17712
17943
 
17713
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js
17944
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js
17714
17945
  function httpRequest(options) {
17715
- return new Promise((resolve3, reject) => {
17946
+ return new Promise((resolve4, reject) => {
17716
17947
  const req = node_http.request({
17717
17948
  method: "GET",
17718
17949
  ...options,
@@ -17737,7 +17968,7 @@ function httpRequest(options) {
17737
17968
  chunks.push(chunk);
17738
17969
  });
17739
17970
  res.on("end", () => {
17740
- resolve3(Buffer.concat(chunks));
17971
+ resolve4(Buffer.concat(chunks));
17741
17972
  req.destroy();
17742
17973
  });
17743
17974
  });
@@ -17750,7 +17981,7 @@ var init_httpRequest = __esm(() => {
17750
17981
  import_config2 = __toESM(require_config(), 1);
17751
17982
  });
17752
17983
 
17753
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js
17984
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/retry.js
17754
17985
  var retry = (toRetry, maxRetries) => {
17755
17986
  let promise = toRetry();
17756
17987
  for (let i = 0;i < maxRetries; i++) {
@@ -17759,7 +17990,7 @@ var retry = (toRetry, maxRetries) => {
17759
17990
  return promise;
17760
17991
  };
17761
17992
 
17762
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js
17993
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/fromContainerMetadata.js
17763
17994
  var import_config3, ENV_CMDS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI", ENV_CMDS_RELATIVE_URI = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI", ENV_CMDS_AUTH_TOKEN = "AWS_CONTAINER_AUTHORIZATION_TOKEN", fromContainerMetadata = (init = {}) => {
17764
17995
  const { timeout, maxRetries } = providerConfigFromInit(init);
17765
17996
  return () => retry(async () => {
@@ -17829,7 +18060,7 @@ var init_fromContainerMetadata = __esm(() => {
17829
18060
  GREENGRASS_PROTOCOLS = new Set(["http:", "https:"]);
17830
18061
  });
17831
18062
 
17832
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js
18063
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/error/InstanceMetadataV1FallbackError.js
17833
18064
  var import_config4, InstanceMetadataV1FallbackError;
17834
18065
  var init_InstanceMetadataV1FallbackError = __esm(() => {
17835
18066
  import_config4 = __toESM(require_config(), 1);
@@ -17844,7 +18075,7 @@ var init_InstanceMetadataV1FallbackError = __esm(() => {
17844
18075
  };
17845
18076
  });
17846
18077
 
17847
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js
18078
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/Endpoint.js
17848
18079
  var Endpoint;
17849
18080
  var init_Endpoint = __esm(() => {
17850
18081
  (function(Endpoint2) {
@@ -17853,7 +18084,7 @@ var init_Endpoint = __esm(() => {
17853
18084
  })(Endpoint || (Endpoint = {}));
17854
18085
  });
17855
18086
 
17856
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js
18087
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointConfigOptions.js
17857
18088
  var ENV_ENDPOINT_NAME = "AWS_EC2_METADATA_SERVICE_ENDPOINT", CONFIG_ENDPOINT_NAME = "ec2_metadata_service_endpoint", ENDPOINT_CONFIG_OPTIONS;
17858
18089
  var init_EndpointConfigOptions = __esm(() => {
17859
18090
  ENDPOINT_CONFIG_OPTIONS = {
@@ -17863,7 +18094,7 @@ var init_EndpointConfigOptions = __esm(() => {
17863
18094
  };
17864
18095
  });
17865
18096
 
17866
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js
18097
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointMode.js
17867
18098
  var EndpointMode;
17868
18099
  var init_EndpointMode = __esm(() => {
17869
18100
  (function(EndpointMode2) {
@@ -17872,7 +18103,7 @@ var init_EndpointMode = __esm(() => {
17872
18103
  })(EndpointMode || (EndpointMode = {}));
17873
18104
  });
17874
18105
 
17875
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js
18106
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/config/EndpointModeConfigOptions.js
17876
18107
  var ENV_ENDPOINT_MODE_NAME = "AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE", CONFIG_ENDPOINT_MODE_NAME = "ec2_metadata_service_endpoint_mode", ENDPOINT_MODE_CONFIG_OPTIONS;
17877
18108
  var init_EndpointModeConfigOptions = __esm(() => {
17878
18109
  init_EndpointMode();
@@ -17883,7 +18114,7 @@ var init_EndpointModeConfigOptions = __esm(() => {
17883
18114
  };
17884
18115
  });
17885
18116
 
17886
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js
18117
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/utils/getInstanceMetadataEndpoint.js
17887
18118
  var import_config5, import_protocols, getInstanceMetadataEndpoint = async () => import_protocols.parseUrl(await getFromEndpointConfig() || await getFromEndpointModeConfig()), getFromEndpointConfig = async () => import_config5.loadConfig(ENDPOINT_CONFIG_OPTIONS)(), getFromEndpointModeConfig = async () => {
17888
18119
  const endpointMode = await import_config5.loadConfig(ENDPOINT_MODE_CONFIG_OPTIONS)();
17889
18120
  switch (endpointMode) {
@@ -17904,7 +18135,7 @@ var init_getInstanceMetadataEndpoint = __esm(() => {
17904
18135
  import_protocols = __toESM(require_protocols(), 1);
17905
18136
  });
17906
18137
 
17907
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js
18138
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/utils/getExtendedInstanceMetadataCredentials.js
17908
18139
  var STATIC_STABILITY_REFRESH_INTERVAL_SECONDS, STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS, STATIC_STABILITY_DOC_URL = "https://docs.aws.amazon.com/sdkref/latest/guide/feature-static-credentials.html", getExtendedInstanceMetadataCredentials = (credentials, logger) => {
17909
18140
  const refreshInterval = STATIC_STABILITY_REFRESH_INTERVAL_SECONDS + Math.floor(Math.random() * STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS);
17910
18141
  const newExpiration = new Date(Date.now() + refreshInterval * 1000);
@@ -17922,7 +18153,7 @@ var init_getExtendedInstanceMetadataCredentials = __esm(() => {
17922
18153
  STATIC_STABILITY_REFRESH_INTERVAL_JITTER_WINDOW_SECONDS = 5 * 60;
17923
18154
  });
17924
18155
 
17925
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js
18156
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/utils/staticStabilityProvider.js
17926
18157
  var staticStabilityProvider = (provider, options = {}) => {
17927
18158
  const logger = options?.logger || console;
17928
18159
  let pastCredentials;
@@ -17949,7 +18180,7 @@ var init_staticStabilityProvider = __esm(() => {
17949
18180
  init_getExtendedInstanceMetadataCredentials();
17950
18181
  });
17951
18182
 
17952
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js
18183
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/fromInstanceMetadata.js
17953
18184
  var import_config6, IMDS_PATH = "/latest/meta-data/iam/security-credentials/", IMDS_TOKEN_PATH = "/latest/api/token", AWS_EC2_METADATA_V1_DISABLED = "AWS_EC2_METADATA_V1_DISABLED", PROFILE_AWS_EC2_METADATA_V1_DISABLED = "ec2_metadata_v1_disabled", X_AWS_EC2_METADATA_TOKEN = "x-aws-ec2-metadata-token", fromInstanceMetadata = (init = {}) => staticStabilityProvider(getInstanceMetadataProvider(init), { logger: init.logger }), getInstanceMetadataProvider = (init = {}) => {
17954
18185
  let disableFetchToken = false;
17955
18186
  const { logger, profile } = init;
@@ -17961,9 +18192,9 @@ var import_config6, IMDS_PATH = "/latest/meta-data/iam/security-credentials/", I
17961
18192
  let fallbackBlockedFromProcessEnv = false;
17962
18193
  const configValue = await import_config6.loadConfig({
17963
18194
  environmentVariableSelector: (env) => {
17964
- const envValue = env[AWS_EC2_METADATA_V1_DISABLED];
17965
- fallbackBlockedFromProcessEnv = !!envValue && envValue !== "false";
17966
- if (envValue === undefined) {
18195
+ const envValue2 = env[AWS_EC2_METADATA_V1_DISABLED];
18196
+ fallbackBlockedFromProcessEnv = !!envValue2 && envValue2 !== "false";
18197
+ if (envValue2 === undefined) {
17967
18198
  throw new import_config6.CredentialsProviderError(`${AWS_EC2_METADATA_V1_DISABLED} not set in env, checking config file next.`, { logger: init.logger });
17968
18199
  }
17969
18200
  return fallbackBlockedFromProcessEnv;
@@ -18069,7 +18300,7 @@ var init_fromInstanceMetadata = __esm(() => {
18069
18300
  import_config6 = __toESM(require_config(), 1);
18070
18301
  });
18071
18302
 
18072
- // ../../node_modules/.bun/@smithy+credential-provider-imds@4.4.16/node_modules/@smithy/credential-provider-imds/dist-es/index.js
18303
+ // ../../node_modules/.bun/@smithy+credential-provider-imds@4.5.2/node_modules/@smithy/credential-provider-imds/dist-es/index.js
18073
18304
  var exports_dist_es2 = {};
18074
18305
  __export(exports_dist_es2, {
18075
18306
  providerConfigFromInit: () => providerConfigFromInit,
@@ -18092,7 +18323,7 @@ var init_dist_es2 = __esm(() => {
18092
18323
  init_Endpoint();
18093
18324
  });
18094
18325
 
18095
- // ../../node_modules/.bun/@smithy+node-http-handler@4.9.13/node_modules/@smithy/node-http-handler/dist-cjs/index.js
18326
+ // ../../node_modules/.bun/@smithy+node-http-handler@4.11.2/node_modules/@smithy/node-http-handler/dist-cjs/index.js
18096
18327
  var require_dist_cjs4 = __commonJS((exports) => {
18097
18328
  var { buildQueryString, HttpResponse } = require_protocols();
18098
18329
  var node_https = __require("https");
@@ -18231,21 +18462,21 @@ var require_dist_cjs4 = __commonJS((exports) => {
18231
18462
  let sendBody = true;
18232
18463
  if (!externalAgent && expect === "100-continue") {
18233
18464
  sendBody = await Promise.race([
18234
- new Promise((resolve3) => {
18235
- timeoutId = Number(timing.setTimeout(() => resolve3(true), Math.max(MIN_WAIT_TIME, maxContinueTimeoutMs)));
18465
+ new Promise((resolve4) => {
18466
+ timeoutId = Number(timing.setTimeout(() => resolve4(true), Math.max(MIN_WAIT_TIME, maxContinueTimeoutMs)));
18236
18467
  }),
18237
- new Promise((resolve3) => {
18468
+ new Promise((resolve4) => {
18238
18469
  httpRequest2.on("continue", () => {
18239
18470
  timing.clearTimeout(timeoutId);
18240
- resolve3(true);
18471
+ resolve4(true);
18241
18472
  });
18242
18473
  httpRequest2.on("response", () => {
18243
18474
  timing.clearTimeout(timeoutId);
18244
- resolve3(false);
18475
+ resolve4(false);
18245
18476
  });
18246
18477
  httpRequest2.on("error", () => {
18247
18478
  timing.clearTimeout(timeoutId);
18248
- resolve3(false);
18479
+ resolve4(false);
18249
18480
  });
18250
18481
  })
18251
18482
  ]);
@@ -18320,13 +18551,13 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18320
18551
  return socketWarningTimestamp;
18321
18552
  }
18322
18553
  constructor(options) {
18323
- this.configProvider = new Promise((resolve3, reject) => {
18554
+ this.configProvider = new Promise((resolve4, reject) => {
18324
18555
  if (typeof options === "function") {
18325
18556
  options().then((_options) => {
18326
- resolve3(this.resolveDefaultConfig(_options));
18557
+ resolve4(this.resolveDefaultConfig(_options));
18327
18558
  }).catch(reject);
18328
18559
  } else {
18329
- resolve3(this.resolveDefaultConfig(options));
18560
+ resolve4(this.resolveDefaultConfig(options));
18330
18561
  }
18331
18562
  });
18332
18563
  }
@@ -18339,6 +18570,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18339
18570
  this.config = await this.configProvider;
18340
18571
  }
18341
18572
  const config = this.config;
18573
+ const logger = config.logger;
18342
18574
  const isSSL = request.protocol === "https:";
18343
18575
  if (!isSSL && !this.config.httpAgent) {
18344
18576
  this.config.httpAgent = await this.config.httpAgentProvider();
@@ -18357,7 +18589,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18357
18589
  timing.clearTimeout(socketTimeoutId);
18358
18590
  timing.clearTimeout(keepAliveTimeoutId);
18359
18591
  };
18360
- const resolve3 = async (arg) => {
18592
+ const resolve4 = async (arg) => {
18361
18593
  await writeRequestBodyPromise;
18362
18594
  clearTimeouts();
18363
18595
  _resolve(arg);
@@ -18382,7 +18614,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18382
18614
  });
18383
18615
  }
18384
18616
  socketWarningTimeoutId = timing.setTimeout(() => {
18385
- this.socketWarningTimestamp = NodeHttpHandler.checkSocketUsage(agent, this.socketWarningTimestamp, config.logger);
18617
+ this.socketWarningTimestamp = NodeHttpHandler.checkSocketUsage(agent, this.socketWarningTimestamp, logger);
18386
18618
  }, config.socketAcquisitionWarningTimeout ?? (config.requestTimeout ?? 2000) + (config.connectionTimeout ?? 1000));
18387
18619
  const queryString = request.query ? buildQueryString(request.query) : "";
18388
18620
  let auth = undefined;
@@ -18421,7 +18653,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18421
18653
  headers: getTransformedHeaders(res.headers),
18422
18654
  body: res
18423
18655
  });
18424
- resolve3({ response: httpResponse });
18656
+ resolve4({ response: httpResponse });
18425
18657
  });
18426
18658
  req.on("error", (err) => {
18427
18659
  if (NODEJS_TIMEOUT_ERROR_CODES.includes(err.code)) {
@@ -18446,7 +18678,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18446
18678
  }
18447
18679
  const effectiveRequestTimeout = requestTimeout ?? config.requestTimeout;
18448
18680
  connectionTimeoutId = setConnectionTimeout(req, reject, config.connectionTimeout);
18449
- requestTimeoutId = setRequestTimeout(req, reject, effectiveRequestTimeout, config.throwOnRequestTimeout, config.logger ?? console);
18681
+ requestTimeoutId = setRequestTimeout(req, reject, effectiveRequestTimeout, config.throwOnRequestTimeout, logger ?? console);
18450
18682
  socketTimeoutId = setSocketTimeout(req, reject, config.socketTimeout);
18451
18683
  const httpAgent = nodeHttpsOptions.agent;
18452
18684
  if (typeof httpAgent === "object" && "keepAlive" in httpAgent) {
@@ -18464,6 +18696,12 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18464
18696
  updateHttpClientConfig(key, value) {
18465
18697
  this.config = undefined;
18466
18698
  this.configProvider = this.configProvider.then((config) => {
18699
+ if (key === Symbol.for("logger")) {
18700
+ return {
18701
+ ...config,
18702
+ logger: config.logger ?? value
18703
+ };
18704
+ }
18467
18705
  return {
18468
18706
  ...config,
18469
18707
  [key]: value
@@ -18747,13 +18985,13 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18747
18985
  return new NodeHttp2Handler(instanceOrOptions);
18748
18986
  }
18749
18987
  constructor(options) {
18750
- this.configProvider = new Promise((resolve3, reject) => {
18988
+ this.configProvider = new Promise((resolve4, reject) => {
18751
18989
  if (typeof options === "function") {
18752
18990
  options().then((opts) => {
18753
- resolve3(opts || {});
18991
+ resolve4(opts || {});
18754
18992
  }).catch(reject);
18755
18993
  } else {
18756
- resolve3(options || {});
18994
+ resolve4(options || {});
18757
18995
  }
18758
18996
  });
18759
18997
  }
@@ -18778,7 +19016,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18778
19016
  return new Promise((_resolve, _reject) => {
18779
19017
  let fulfilled = false;
18780
19018
  let writeRequestBodyPromise = undefined;
18781
- const resolve3 = async (arg) => {
19019
+ const resolve4 = async (arg) => {
18782
19020
  await writeRequestBodyPromise;
18783
19021
  _resolve(arg);
18784
19022
  };
@@ -18863,7 +19101,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18863
19101
  body: clientHttp2Stream
18864
19102
  });
18865
19103
  fulfilled = true;
18866
- resolve3({ response: httpResponse });
19104
+ resolve4({ response: httpResponse });
18867
19105
  if (useIsolatedSession) {
18868
19106
  session.close();
18869
19107
  }
@@ -18899,7 +19137,7 @@ or increase socketAcquisitionWarningTimeout=(millis) in the NodeHttpHandler conf
18899
19137
  exports.NodeHttpHandler = NodeHttpHandler;
18900
19138
  });
18901
19139
 
18902
- // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.69/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js
19140
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/checkUrl.js
18903
19141
  var import_config7, ECS_CONTAINER_HOST = "169.254.170.2", EKS_CONTAINER_HOST_IPv4 = "169.254.170.23", EKS_CONTAINER_HOST_IPv6 = "[fd00:ec2::23]", checkUrl = (url, logger) => {
18904
19142
  if (url.protocol === "https:") {
18905
19143
  return;
@@ -18933,7 +19171,7 @@ var init_checkUrl = __esm(() => {
18933
19171
  import_config7 = __toESM(require_config(), 1);
18934
19172
  });
18935
19173
 
18936
- // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.69/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js
19174
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/requestHelpers.js
18937
19175
  function createGetRequest(url) {
18938
19176
  return new import_protocols2.HttpRequest({
18939
19177
  protocol: url.protocol,
@@ -18982,21 +19220,21 @@ var init_requestHelpers = __esm(() => {
18982
19220
  import_serde2 = __toESM(require_serde(), 1);
18983
19221
  });
18984
19222
 
18985
- // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.69/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js
19223
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/retry-wrapper.js
18986
19224
  var retryWrapper = (toRetry, maxRetries, delayMs) => {
18987
19225
  return async () => {
18988
19226
  for (let i = 0;i < maxRetries; ++i) {
18989
19227
  try {
18990
19228
  return await toRetry();
18991
19229
  } catch (e) {
18992
- await new Promise((resolve3) => setTimeout(resolve3, delayMs));
19230
+ await new Promise((resolve4) => setTimeout(resolve4, delayMs));
18993
19231
  }
18994
19232
  }
18995
19233
  return await toRetry();
18996
19234
  };
18997
19235
  };
18998
19236
 
18999
- // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.69/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js
19237
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/fromHttp/fromHttp.js
19000
19238
  import fs from "fs/promises";
19001
19239
  var import_client4, import_config9, import_node_http_handler, AWS_CONTAINER_CREDENTIALS_RELATIVE_URI = "AWS_CONTAINER_CREDENTIALS_RELATIVE_URI", DEFAULT_LINK_LOCAL_HOST = "http://169.254.170.2", AWS_CONTAINER_CREDENTIALS_FULL_URI = "AWS_CONTAINER_CREDENTIALS_FULL_URI", AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE = "AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE", AWS_CONTAINER_AUTHORIZATION_TOKEN = "AWS_CONTAINER_AUTHORIZATION_TOKEN", fromHttp = (options = {}) => {
19002
19240
  options.logger?.debug("@aws-sdk/credential-provider-http - fromHttp");
@@ -19062,7 +19300,7 @@ var init_fromHttp = __esm(() => {
19062
19300
  import_node_http_handler = __toESM(require_dist_cjs4(), 1);
19063
19301
  });
19064
19302
 
19065
- // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.69/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js
19303
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-http@3.972.71/node_modules/@aws-sdk/credential-provider-http/dist-es/index.js
19066
19304
  var exports_dist_es3 = {};
19067
19305
  __export(exports_dist_es3, {
19068
19306
  fromHttp: () => fromHttp
@@ -19071,7 +19309,7 @@ var init_dist_es3 = __esm(() => {
19071
19309
  init_fromHttp();
19072
19310
  });
19073
19311
 
19074
- // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.78/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js
19312
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/remoteProvider.js
19075
19313
  var import_config10, ENV_IMDS_DISABLED = "AWS_EC2_METADATA_DISABLED", remoteProvider = async (init) => {
19076
19314
  const { ENV_CMDS_FULL_URI: ENV_CMDS_FULL_URI2, ENV_CMDS_RELATIVE_URI: ENV_CMDS_RELATIVE_URI2, fromContainerMetadata: fromContainerMetadata2, fromInstanceMetadata: fromInstanceMetadata2 } = await Promise.resolve().then(() => (init_dist_es2(), exports_dist_es2));
19077
19315
  if (process.env[ENV_CMDS_RELATIVE_URI2] || process.env[ENV_CMDS_FULL_URI2]) {
@@ -19091,7 +19329,7 @@ var init_remoteProvider = __esm(() => {
19091
19329
  import_config10 = __toESM(require_config(), 1);
19092
19330
  });
19093
19331
 
19094
- // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.78/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js
19332
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/runtime/memoize-chain.js
19095
19333
  function memoizeChain(providers, treatAsExpired) {
19096
19334
  const chain2 = internalCreateChain(providers);
19097
19335
  let activeLock;
@@ -19155,16 +19393,16 @@ var internalCreateChain = (providers) => async (awsIdentityProperties) => {
19155
19393
  throw lastProviderError;
19156
19394
  };
19157
19395
 
19158
- // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.11/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js
19396
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/isSsoProfile.js
19159
19397
  var isSsoProfile = (arg) => arg && (typeof arg.sso_start_url === "string" || typeof arg.sso_account_id === "string" || typeof arg.sso_session === "string" || typeof arg.sso_region === "string" || typeof arg.sso_role_name === "string");
19160
19398
 
19161
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/constants.js
19399
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/constants.js
19162
19400
  var EXPIRE_WINDOW_MS, REFRESH_MESSAGE = `To refresh this SSO session run 'aws sso login' with the corresponding profile.`;
19163
19401
  var init_constants = __esm(() => {
19164
19402
  EXPIRE_WINDOW_MS = 5 * 60 * 1000;
19165
19403
  });
19166
19404
 
19167
- // ../../node_modules/.bun/@smithy+core@3.31.1/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js
19405
+ // ../../node_modules/.bun/@smithy+core@3.33.2/node_modules/@smithy/core/dist-cjs/submodules/cbor/index.js
19168
19406
  var require_cbor = __commonJS((exports) => {
19169
19407
  var { nv, NumericValue, calculateBodyLength, generateIdempotencyToken, fromBase64, _parseEpochTimestamp } = require_serde();
19170
19408
  var { HttpRequest: HttpRequest2, collectBody, SerdeContext, RpcProtocol } = require_protocols();
@@ -21258,9 +21496,9 @@ var require_cbor = __commonJS((exports) => {
21258
21496
  this.serializer.write(15, {});
21259
21497
  request.body = this.serializer.flush();
21260
21498
  }
21261
- try {
21499
+ if (request.body instanceof Uint8Array) {
21262
21500
  request.headers["content-length"] = String(request.body.byteLength);
21263
- } catch (ignored) {}
21501
+ }
21264
21502
  }
21265
21503
  const { service, operation } = getSmithyContext2(context);
21266
21504
  const path = `/service/${service}/operation/${operation}`;
@@ -21532,7 +21770,7 @@ var require_cbor = __commonJS((exports) => {
21532
21770
  exports.tagSymbol = tagSymbol;
21533
21771
  });
21534
21772
 
21535
- // ../../node_modules/.bun/@aws-sdk+xml-builder@3.972.37/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js
21773
+ // ../../node_modules/.bun/@aws-sdk+xml-builder@3.972.39/node_modules/@aws-sdk/xml-builder/dist-cjs/index.js
21536
21774
  var require_dist_cjs5 = __commonJS((exports) => {
21537
21775
  var ATTR_ESCAPE_RE = /[&<>"]/g;
21538
21776
  var ATTR_ESCAPE_MAP = {
@@ -21900,7 +22138,7 @@ var require_dist_cjs5 = __commonJS((exports) => {
21900
22138
  exports.parseXML = parseXML;
21901
22139
  });
21902
22140
 
21903
- // ../../node_modules/.bun/@aws-sdk+core@3.977.6/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js
22141
+ // ../../node_modules/.bun/@aws-sdk+core@3.977.8/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js
21904
22142
  var require_protocols2 = __commonJS((exports) => {
21905
22143
  var { SmithyRpcV2CborProtocol, loadSmithyRpcV2CborErrorCode } = require_cbor();
21906
22144
  var { TypeRegistry, NormalizedSchema, deref } = require_schema();
@@ -24741,7 +24979,7 @@ var require_protocols2 = __commonJS((exports) => {
24741
24979
  exports.parseXmlErrorBody = parseXmlErrorBody;
24742
24980
  });
24743
24981
 
24744
- // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.41/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js
24982
+ // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso-oidc/index.js
24745
24983
  var require_sso_oidc = __commonJS((exports) => {
24746
24984
  var { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require_client2();
24747
24985
  var { NoAuthSigner, getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require_dist_cjs2();
@@ -24819,7 +25057,7 @@ var require_sso_oidc = __commonJS((exports) => {
24819
25057
  Region: { type: "builtInParams", name: "region" },
24820
25058
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }
24821
25059
  };
24822
- var version = "3.997.40";
25060
+ var version = "3.997.42";
24823
25061
  var packageInfo = {
24824
25062
  version
24825
25063
  };
@@ -25496,7 +25734,7 @@ var require_sso_oidc = __commonJS((exports) => {
25496
25734
  exports.errorTypeRegistries = errorTypeRegistries;
25497
25735
  });
25498
25736
 
25499
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js
25737
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/getSsoOidcClient.js
25500
25738
  var getSsoOidcClient = async (ssoRegion, init = {}, callerClientConfig) => {
25501
25739
  const { SSOOIDCClient } = await Promise.resolve().then(() => __toESM(require_sso_oidc(), 1));
25502
25740
  const coalesce = (prop) => init.clientConfig?.[prop] ?? init.parentClientConfig?.[prop] ?? callerClientConfig?.[prop];
@@ -25508,7 +25746,7 @@ var getSsoOidcClient = async (ssoRegion, init = {}, callerClientConfig) => {
25508
25746
  return ssoOidcClient;
25509
25747
  };
25510
25748
 
25511
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js
25749
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/getNewSsoOidcToken.js
25512
25750
  var getNewSsoOidcToken = async (ssoToken, ssoRegion, init = {}, callerClientConfig) => {
25513
25751
  const { CreateTokenCommand } = await Promise.resolve().then(() => __toESM(require_sso_oidc(), 1));
25514
25752
  const ssoOidcClient = await getSsoOidcClient(ssoRegion, init, callerClientConfig);
@@ -25521,7 +25759,7 @@ var getNewSsoOidcToken = async (ssoToken, ssoRegion, init = {}, callerClientConf
25521
25759
  };
25522
25760
  var init_getNewSsoOidcToken = () => {};
25523
25761
 
25524
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js
25762
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/validateTokenExpiry.js
25525
25763
  var import_config11, validateTokenExpiry = (token) => {
25526
25764
  if (token.expiration && token.expiration.getTime() < Date.now()) {
25527
25765
  throw new import_config11.TokenProviderError(`Token is expired. ${REFRESH_MESSAGE}`, false);
@@ -25532,7 +25770,7 @@ var init_validateTokenExpiry = __esm(() => {
25532
25770
  import_config11 = __toESM(require_config(), 1);
25533
25771
  });
25534
25772
 
25535
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js
25773
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/validateTokenKey.js
25536
25774
  var import_config12, validateTokenKey = (key, value, forRefresh = false) => {
25537
25775
  if (typeof value === "undefined") {
25538
25776
  throw new import_config12.TokenProviderError(`Value not present for '${key}' in SSO Token${forRefresh ? ". Cannot refresh" : ""}. ${REFRESH_MESSAGE}`, false);
@@ -25543,7 +25781,7 @@ var init_validateTokenKey = __esm(() => {
25543
25781
  import_config12 = __toESM(require_config(), 1);
25544
25782
  });
25545
25783
 
25546
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js
25784
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/writeSSOTokenToFile.js
25547
25785
  import { promises as fsPromises } from "fs";
25548
25786
  var import_config13, writeFile, writeSSOTokenToFile = (id, ssoToken) => {
25549
25787
  const tokenFilepath = import_config13.getSSOTokenFilepath(id);
@@ -25555,7 +25793,7 @@ var init_writeSSOTokenToFile = __esm(() => {
25555
25793
  ({ writeFile } = fsPromises);
25556
25794
  });
25557
25795
 
25558
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js
25796
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/fromSso.js
25559
25797
  var import_config14, lastRefreshAttemptTime, fromSso = (init = {}) => async ({ callerClientConfig } = {}) => {
25560
25798
  init.logger?.debug("@aws-sdk/token-providers - fromSso");
25561
25799
  const profiles = await import_config14.parseKnownFiles(init);
@@ -25634,12 +25872,12 @@ var init_fromSso = __esm(() => {
25634
25872
  lastRefreshAttemptTime = new Date(0);
25635
25873
  });
25636
25874
 
25637
- // ../../node_modules/.bun/@aws-sdk+token-providers@3.1103.0/node_modules/@aws-sdk/token-providers/dist-es/index.js
25875
+ // ../../node_modules/.bun/@aws-sdk+token-providers@3.1111.0/node_modules/@aws-sdk/token-providers/dist-es/index.js
25638
25876
  var init_dist_es4 = __esm(() => {
25639
25877
  init_fromSso();
25640
25878
  });
25641
25879
 
25642
- // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.41/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js
25880
+ // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sso/index.js
25643
25881
  function createAwsAuthSigv4HttpAuthOption2(authParameters) {
25644
25882
  return {
25645
25883
  schemeId: "aws.auth#sigv4",
@@ -25690,7 +25928,7 @@ var awsEndpointFunctions, emitWarningIfUnsupportedVersion$1, createDefaultUserAg
25690
25928
  useFipsEndpoint: options.useFipsEndpoint ?? false,
25691
25929
  defaultSigningName: "awsssoportal"
25692
25930
  });
25693
- }, commonParams2, version = "3.997.40", packageInfo, k = "ref", a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g, h, i, j, _data, root = 2, r = 1e8, nodes, bdd, cache, defaultEndpointResolver = (endpointParams, context = {}) => {
25931
+ }, commonParams2, version = "3.997.42", packageInfo, k = "ref", a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g, h, i, j, _data, root = 2, r = 1e8, nodes, bdd, cache, defaultEndpointResolver = (endpointParams, context = {}) => {
25694
25932
  return cache.get(endpointParams, () => decideEndpoint(bdd, {
25695
25933
  endpointParams,
25696
25934
  logger: context.logger
@@ -26087,7 +26325,7 @@ var init_sso = __esm(() => {
26087
26325
  $SSOClient = SSOClient;
26088
26326
  });
26089
26327
 
26090
- // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.11/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js
26328
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/loadSso.js
26091
26329
  var exports_loadSso = {};
26092
26330
  __export(exports_loadSso, {
26093
26331
  SSOClient: () => $SSOClient,
@@ -26097,7 +26335,7 @@ var init_loadSso = __esm(() => {
26097
26335
  init_sso();
26098
26336
  });
26099
26337
 
26100
- // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.11/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js
26338
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/resolveSSOCredentials.js
26101
26339
  var import_client5, import_config15, SHOULD_FAIL_CREDENTIAL_CHAIN = false, resolveSSOCredentials = async ({ ssoStartUrl, ssoSession, ssoAccountId, ssoRegion, ssoRoleName, ssoClient, clientConfig, parentClientConfig, callerClientConfig, profile, filepath, configFilepath, ignoreCache, logger }) => {
26102
26340
  let token;
26103
26341
  const refreshMessage = `To refresh this SSO session run aws sso login with the corresponding profile.`;
@@ -26186,7 +26424,7 @@ var init_resolveSSOCredentials = __esm(() => {
26186
26424
  import_config15 = __toESM(require_config(), 1);
26187
26425
  });
26188
26426
 
26189
- // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.11/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js
26427
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/validateSsoProfile.js
26190
26428
  var import_config16, validateSsoProfile = (profile, logger) => {
26191
26429
  const { sso_start_url, sso_account_id, sso_region, sso_role_name } = profile;
26192
26430
  if (!sso_start_url || !sso_account_id || !sso_region || !sso_role_name) {
@@ -26199,7 +26437,7 @@ var init_validateSsoProfile = __esm(() => {
26199
26437
  import_config16 = __toESM(require_config(), 1);
26200
26438
  });
26201
26439
 
26202
- // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.11/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js
26440
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/fromSSO.js
26203
26441
  var import_config17, fromSSO = (init = {}) => async ({ callerClientConfig } = {}) => {
26204
26442
  init.logger?.debug("@aws-sdk/credential-provider-sso - fromSSO");
26205
26443
  const { ssoStartUrl, ssoAccountId, ssoRegion, ssoRoleName, ssoSession } = init;
@@ -26281,7 +26519,7 @@ var init_fromSSO = __esm(() => {
26281
26519
  import_config17 = __toESM(require_config(), 1);
26282
26520
  });
26283
26521
 
26284
- // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.11/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js
26522
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-sso@3.973.13/node_modules/@aws-sdk/credential-provider-sso/dist-es/index.js
26285
26523
  var exports_dist_es4 = {};
26286
26524
  __export(exports_dist_es4, {
26287
26525
  validateSsoProfile: () => validateSsoProfile,
@@ -26293,7 +26531,7 @@ var init_dist_es5 = __esm(() => {
26293
26531
  init_validateSsoProfile();
26294
26532
  });
26295
26533
 
26296
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js
26534
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveCredentialSource.js
26297
26535
  var import_client6, import_config18, resolveCredentialSource = (credentialSource, profileName, logger) => {
26298
26536
  const sourceProvidersMap = {
26299
26537
  EcsContainer: async (options) => {
@@ -26324,7 +26562,7 @@ var init_resolveCredentialSource = __esm(() => {
26324
26562
  import_config18 = __toESM(require_config(), 1);
26325
26563
  });
26326
26564
 
26327
- // ../../node_modules/.bun/@aws-sdk+signature-v4-multi-region@3.996.43/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js
26565
+ // ../../node_modules/.bun/@aws-sdk+signature-v4-multi-region@3.996.45/node_modules/@aws-sdk/signature-v4-multi-region/dist-cjs/index.js
26328
26566
  var require_dist_cjs6 = __commonJS((exports) => {
26329
26567
  var { SignatureV4, signatureV4aContainer } = require_dist_cjs3();
26330
26568
  var signatureV4CrtContainer = {
@@ -26456,7 +26694,7 @@ var require_dist_cjs6 = __commonJS((exports) => {
26456
26694
  exports.signatureV4CrtContainer = signatureV4CrtContainer;
26457
26695
  });
26458
26696
 
26459
- // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.41/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js
26697
+ // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/sts/index.js
26460
26698
  var require_sts = __commonJS((exports) => {
26461
26699
  var { awsEndpointFunctions: awsEndpointFunctions2, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$12, createDefaultUserAgentProvider: createDefaultUserAgentProvider2, NODE_APP_ID_CONFIG_OPTIONS: NODE_APP_ID_CONFIG_OPTIONS2, getAwsRegionExtensionConfiguration: getAwsRegionExtensionConfiguration2, resolveAwsRegionExtensionConfiguration: resolveAwsRegionExtensionConfiguration2, resolveUserAgentConfig: resolveUserAgentConfig2, resolveHostHeaderConfig: resolveHostHeaderConfig2, getUserAgentPlugin: getUserAgentPlugin2, getHostHeaderPlugin: getHostHeaderPlugin2, getLoggerPlugin: getLoggerPlugin2, getRecursionDetectionPlugin: getRecursionDetectionPlugin2, setCredentialFeature: setCredentialFeature5, stsRegionDefaultResolver } = require_client2();
26462
26700
  var { NoAuthSigner: NoAuthSigner2, getHttpAuthSchemeEndpointRuleSetPlugin: getHttpAuthSchemeEndpointRuleSetPlugin2, DefaultIdentityProviderConfig: DefaultIdentityProviderConfig2, getHttpSigningPlugin: getHttpSigningPlugin2 } = require_dist_cjs2();
@@ -26787,7 +27025,7 @@ var require_sts = __commonJS((exports) => {
26787
27025
  Region: { type: "builtInParams", name: "region" },
26788
27026
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }
26789
27027
  };
26790
- var version2 = "3.997.40";
27028
+ var version2 = "3.997.42";
26791
27029
  var packageInfo2 = {
26792
27030
  version: version2
26793
27031
  };
@@ -27478,7 +27716,7 @@ var require_sts = __commonJS((exports) => {
27478
27716
  exports.getDefaultRoleAssumerWithWebIdentity = getDefaultRoleAssumerWithWebIdentity;
27479
27717
  });
27480
27718
 
27481
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js
27719
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveAssumeRoleCredentials.js
27482
27720
  var import_client7, import_config19, isAssumeRoleProfile = (arg, { profile = "default", logger } = {}) => {
27483
27721
  return Boolean(arg) && typeof arg === "object" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1 && ["undefined", "string"].indexOf(typeof arg.external_id) > -1 && ["undefined", "string"].indexOf(typeof arg.mfa_serial) > -1 && (isAssumeRoleWithSourceProfile(arg, { profile, logger }) || isCredentialSourceProfile(arg, { profile, logger }));
27484
27722
  }, isAssumeRoleWithSourceProfile = (arg, { profile, logger }) => {
@@ -27546,7 +27784,7 @@ var init_resolveAssumeRoleCredentials = __esm(() => {
27546
27784
  import_config19 = __toESM(require_config(), 1);
27547
27785
  });
27548
27786
 
27549
- // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.41/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js
27787
+ // ../../node_modules/.bun/@aws-sdk+nested-clients@3.997.43/node_modules/@aws-sdk/nested-clients/dist-cjs/submodules/signin/index.js
27550
27788
  var require_signin = __commonJS((exports) => {
27551
27789
  var { awsEndpointFunctions: awsEndpointFunctions2, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$12, createDefaultUserAgentProvider: createDefaultUserAgentProvider2, NODE_APP_ID_CONFIG_OPTIONS: NODE_APP_ID_CONFIG_OPTIONS2, getAwsRegionExtensionConfiguration: getAwsRegionExtensionConfiguration2, resolveAwsRegionExtensionConfiguration: resolveAwsRegionExtensionConfiguration2, resolveUserAgentConfig: resolveUserAgentConfig2, resolveHostHeaderConfig: resolveHostHeaderConfig2, getUserAgentPlugin: getUserAgentPlugin2, getHostHeaderPlugin: getHostHeaderPlugin2, getLoggerPlugin: getLoggerPlugin2, getRecursionDetectionPlugin: getRecursionDetectionPlugin2 } = require_client2();
27552
27790
  var { NoAuthSigner: NoAuthSigner2, getHttpAuthSchemeEndpointRuleSetPlugin: getHttpAuthSchemeEndpointRuleSetPlugin2, DefaultIdentityProviderConfig: DefaultIdentityProviderConfig2, getHttpSigningPlugin: getHttpSigningPlugin2 } = require_dist_cjs2();
@@ -27624,7 +27862,7 @@ var require_signin = __commonJS((exports) => {
27624
27862
  Region: { type: "builtInParams", name: "region" },
27625
27863
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" }
27626
27864
  };
27627
- var version2 = "3.997.40";
27865
+ var version2 = "3.997.42";
27628
27866
  var packageInfo2 = {
27629
27867
  version: version2
27630
27868
  };
@@ -28278,11 +28516,11 @@ var require_signin = __commonJS((exports) => {
28278
28516
  exports.errorTypeRegistries = errorTypeRegistries2;
28279
28517
  });
28280
28518
 
28281
- // ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.74/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js
28519
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.76/node_modules/@aws-sdk/credential-provider-login/dist-es/LoginCredentialsFetcher.js
28282
28520
  import { createHash as createHash2, createPrivateKey, createPublicKey, sign } from "crypto";
28283
28521
  import { promises as fs2 } from "fs";
28284
- import { homedir as homedir2 } from "os";
28285
- import { dirname as dirname3, join as join3 } from "path";
28522
+ import { homedir as homedir4 } from "os";
28523
+ import { dirname as dirname3, join as join5 } from "path";
28286
28524
  var import_config20, import_protocols3, LoginCredentialsFetcher;
28287
28525
  var init_LoginCredentialsFetcher = __esm(() => {
28288
28526
  import_config20 = __toESM(require_config(), 1);
@@ -28449,10 +28687,10 @@ var init_LoginCredentialsFetcher = __esm(() => {
28449
28687
  await fs2.writeFile(tokenFilePath, JSON.stringify(token, null, 2), "utf8");
28450
28688
  }
28451
28689
  getTokenFilePath() {
28452
- const directory = process.env.AWS_LOGIN_CACHE_DIRECTORY ?? join3(homedir2(), ".aws", "login", "cache");
28690
+ const directory = process.env.AWS_LOGIN_CACHE_DIRECTORY ?? join5(homedir4(), ".aws", "login", "cache");
28453
28691
  const loginSessionBytes = Buffer.from(this.loginSession, "utf8");
28454
28692
  const loginSessionSha256 = createHash2("sha256").update(loginSessionBytes).digest("hex");
28455
- return join3(directory, `${loginSessionSha256}.json`);
28693
+ return join5(directory, `${loginSessionSha256}.json`);
28456
28694
  }
28457
28695
  derToRawSignature(derSignature) {
28458
28696
  let offset = 2;
@@ -28542,7 +28780,7 @@ var init_LoginCredentialsFetcher = __esm(() => {
28542
28780
  };
28543
28781
  });
28544
28782
 
28545
- // ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.74/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js
28783
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.76/node_modules/@aws-sdk/credential-provider-login/dist-es/fromLoginCredentials.js
28546
28784
  var import_client8, import_config21, fromLoginCredentials = (init) => async ({ callerClientConfig } = {}) => {
28547
28785
  init?.logger?.debug?.("@aws-sdk/credential-providers - fromLoginCredentials");
28548
28786
  const profiles = await import_config21.parseKnownFiles(init || {});
@@ -28566,7 +28804,7 @@ var init_fromLoginCredentials = __esm(() => {
28566
28804
  import_config21 = __toESM(require_config(), 1);
28567
28805
  });
28568
28806
 
28569
- // ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.74/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js
28807
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-login@3.972.76/node_modules/@aws-sdk/credential-provider-login/dist-es/index.js
28570
28808
  var exports_dist_es5 = {};
28571
28809
  __export(exports_dist_es5, {
28572
28810
  fromLoginCredentials: () => fromLoginCredentials
@@ -28575,7 +28813,7 @@ var init_dist_es6 = __esm(() => {
28575
28813
  init_fromLoginCredentials();
28576
28814
  });
28577
28815
 
28578
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js
28816
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveLoginCredentials.js
28579
28817
  var import_client9, isLoginProfile = (data) => {
28580
28818
  return Boolean(data && data.login_session);
28581
28819
  }, resolveLoginCredentials = async (profileName, options, callerClientConfig) => {
@@ -28590,7 +28828,7 @@ var init_resolveLoginCredentials = __esm(() => {
28590
28828
  import_client9 = __toESM(require_client2(), 1);
28591
28829
  });
28592
28830
 
28593
- // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.67/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js
28831
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/getValidatedProcessCredentials.js
28594
28832
  var import_client10, getValidatedProcessCredentials = (profileName, data, profiles) => {
28595
28833
  if (data.Version !== 1) {
28596
28834
  throw Error(`Profile ${profileName} credential_process did not return Version 1.`);
@@ -28624,7 +28862,7 @@ var init_getValidatedProcessCredentials = __esm(() => {
28624
28862
  import_client10 = __toESM(require_client2(), 1);
28625
28863
  });
28626
28864
 
28627
- // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.67/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js
28865
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js
28628
28866
  import { exec } from "child_process";
28629
28867
  import { promisify } from "util";
28630
28868
  var import_config22, resolveProcessCredentials = async (profileName, profiles, logger) => {
@@ -28659,7 +28897,7 @@ var init_resolveProcessCredentials = __esm(() => {
28659
28897
  import_config22 = __toESM(require_config(), 1);
28660
28898
  });
28661
28899
 
28662
- // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.67/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js
28900
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/fromProcess.js
28663
28901
  var import_config23, fromProcess = (init = {}) => async ({ callerClientConfig } = {}) => {
28664
28902
  init.logger?.debug("@aws-sdk/credential-provider-process - fromProcess");
28665
28903
  const profiles = await import_config23.parseKnownFiles(init);
@@ -28672,7 +28910,7 @@ var init_fromProcess = __esm(() => {
28672
28910
  import_config23 = __toESM(require_config(), 1);
28673
28911
  });
28674
28912
 
28675
- // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.67/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js
28913
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-process@3.972.69/node_modules/@aws-sdk/credential-provider-process/dist-es/index.js
28676
28914
  var exports_dist_es6 = {};
28677
28915
  __export(exports_dist_es6, {
28678
28916
  fromProcess: () => fromProcess
@@ -28681,7 +28919,7 @@ var init_dist_es7 = __esm(() => {
28681
28919
  init_fromProcess();
28682
28920
  });
28683
28921
 
28684
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js
28922
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProcessCredentials.js
28685
28923
  var import_client11, isProcessProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.credential_process === "string", resolveProcessCredentials2 = async (options, profile) => {
28686
28924
  const { fromProcess: fromProcess2 } = await Promise.resolve().then(() => (init_dist_es7(), exports_dist_es6));
28687
28925
  const credentials = await fromProcess2({
@@ -28694,7 +28932,7 @@ var init_resolveProcessCredentials2 = __esm(() => {
28694
28932
  import_client11 = __toESM(require_client2(), 1);
28695
28933
  });
28696
28934
 
28697
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js
28935
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveSsoCredentials.js
28698
28936
  var import_client12, resolveSsoCredentials = async (profile, profileData, options = {}, callerClientConfig) => {
28699
28937
  const { fromSSO: fromSSO2 } = await Promise.resolve().then(() => (init_dist_es5(), exports_dist_es4));
28700
28938
  return fromSSO2({
@@ -28716,7 +28954,7 @@ var init_resolveSsoCredentials = __esm(() => {
28716
28954
  import_client12 = __toESM(require_client2(), 1);
28717
28955
  });
28718
28956
 
28719
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js
28957
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveStaticCredentials.js
28720
28958
  var import_client13, isStaticCredsProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.aws_access_key_id === "string" && typeof arg.aws_secret_access_key === "string" && ["undefined", "string"].indexOf(typeof arg.aws_session_token) > -1 && ["undefined", "string"].indexOf(typeof arg.aws_account_id) > -1, resolveStaticCredentials = async (profile, options) => {
28721
28959
  options?.logger?.debug("@aws-sdk/credential-provider-ini - resolveStaticCredentials");
28722
28960
  const credentials = {
@@ -28732,7 +28970,7 @@ var init_resolveStaticCredentials = __esm(() => {
28732
28970
  import_client13 = __toESM(require_client2(), 1);
28733
28971
  });
28734
28972
 
28735
- // ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.73/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js
28973
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.75/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js
28736
28974
  var fromWebToken = (init) => async (awsIdentityProperties) => {
28737
28975
  init.logger?.debug("@aws-sdk/credential-provider-web-identity - fromWebToken");
28738
28976
  const { roleArn, roleSessionName, webIdentityToken, providerId, policyArns, policy, durationSeconds } = init;
@@ -28759,7 +28997,7 @@ var fromWebToken = (init) => async (awsIdentityProperties) => {
28759
28997
  });
28760
28998
  };
28761
28999
 
28762
- // ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.73/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js
29000
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.75/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js
28763
29001
  import { readFileSync as readFileSync4 } from "fs";
28764
29002
  var import_client14, import_config24, ENV_TOKEN_FILE = "AWS_WEB_IDENTITY_TOKEN_FILE", ENV_ROLE_ARN = "AWS_ROLE_ARN", ENV_ROLE_SESSION_NAME = "AWS_ROLE_SESSION_NAME", fromTokenFile = (init = {}) => async (awsIdentityProperties) => {
28765
29003
  init.logger?.debug("@aws-sdk/credential-provider-web-identity - fromTokenFile");
@@ -28787,7 +29025,7 @@ var init_fromTokenFile = __esm(() => {
28787
29025
  import_config24 = __toESM(require_config(), 1);
28788
29026
  });
28789
29027
 
28790
- // ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.73/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js
29028
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-web-identity@3.972.75/node_modules/@aws-sdk/credential-provider-web-identity/dist-es/index.js
28791
29029
  var exports_dist_es7 = {};
28792
29030
  __export(exports_dist_es7, {
28793
29031
  fromWebToken: () => fromWebToken,
@@ -28797,7 +29035,7 @@ var init_dist_es8 = __esm(() => {
28797
29035
  init_fromTokenFile();
28798
29036
  });
28799
29037
 
28800
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js
29038
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveWebIdentityCredentials.js
28801
29039
  var import_client15, isWebIdentityProfile = (arg) => Boolean(arg) && typeof arg === "object" && typeof arg.web_identity_token_file === "string" && typeof arg.role_arn === "string" && ["undefined", "string"].indexOf(typeof arg.role_session_name) > -1, resolveWebIdentityCredentials = async (profile, options, callerClientConfig) => {
28802
29040
  const { fromTokenFile: fromTokenFile2 } = await Promise.resolve().then(() => (init_dist_es8(), exports_dist_es7));
28803
29041
  const credentials = await fromTokenFile2({
@@ -28816,7 +29054,7 @@ var init_resolveWebIdentityCredentials = __esm(() => {
28816
29054
  import_client15 = __toESM(require_client2(), 1);
28817
29055
  });
28818
29056
 
28819
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js
29057
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/resolveProfileData.js
28820
29058
  var import_config25, resolveProfileData = async (profileName, profiles, options, callerClientConfig, visitedProfiles = {}, isAssumeRoleRecursiveCall = false) => {
28821
29059
  const data = profiles[profileName];
28822
29060
  if (Object.keys(visitedProfiles).length > 0 && isStaticCredsProfile(data)) {
@@ -28852,7 +29090,7 @@ var init_resolveProfileData = __esm(() => {
28852
29090
  import_config25 = __toESM(require_config(), 1);
28853
29091
  });
28854
29092
 
28855
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js
29093
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/fromIni.js
28856
29094
  var import_config26, fromIni = (init = {}) => async ({ callerClientConfig } = {}) => {
28857
29095
  init.logger?.debug("@aws-sdk/credential-provider-ini - fromIni");
28858
29096
  const profiles = await import_config26.parseKnownFiles(init);
@@ -28865,7 +29103,7 @@ var init_fromIni = __esm(() => {
28865
29103
  import_config26 = __toESM(require_config(), 1);
28866
29104
  });
28867
29105
 
28868
- // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.12/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js
29106
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-ini@3.973.14/node_modules/@aws-sdk/credential-provider-ini/dist-es/index.js
28869
29107
  var exports_dist_es8 = {};
28870
29108
  __export(exports_dist_es8, {
28871
29109
  fromIni: () => fromIni
@@ -28874,7 +29112,7 @@ var init_dist_es9 = __esm(() => {
28874
29112
  init_fromIni();
28875
29113
  });
28876
29114
 
28877
- // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.78/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js
29115
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/defaultProvider.js
28878
29116
  var import_config27, multipleCredentialSourceWarningEmitted = false, defaultProvider = (init = {}) => memoizeChain([
28879
29117
  async () => {
28880
29118
  const profile = init.profile ?? process.env[import_config27.ENV_PROFILE];
@@ -28944,12 +29182,12 @@ var init_defaultProvider = __esm(() => {
28944
29182
  import_config27 = __toESM(require_config(), 1);
28945
29183
  });
28946
29184
 
28947
- // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.78/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js
29185
+ // ../../node_modules/.bun/@aws-sdk+credential-provider-node@3.972.80/node_modules/@aws-sdk/credential-provider-node/dist-es/index.js
28948
29186
  var init_dist_es10 = __esm(() => {
28949
29187
  init_defaultProvider();
28950
29188
  });
28951
29189
 
28952
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/bdd.js
29190
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/bdd.js
28953
29191
  var import_endpoints, s = "ref", t = "authSchemes", u = "name", v = "signingRegion", a2 = -1, b2 = true, c2 = "isSet", d2 = "PartitionResult", e2 = "booleanEquals", f2 = "stringEquals", g2 = "getAttr", h2 = "sigv4", i2, j2, k2, l, m, n, o, p, q2, _data2, root2 = 2, r2 = 1e8, nodes2, bdd2;
28954
29192
  var init_bdd = __esm(() => {
28955
29193
  import_endpoints = __toESM(require_endpoints(), 1);
@@ -29098,7 +29336,7 @@ var init_bdd = __esm(() => {
29098
29336
  bdd2 = import_endpoints.BinaryDecisionDiagram.from(nodes2, root2, _data2.conditions, _data2.results);
29099
29337
  });
29100
29338
 
29101
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/endpointResolver.js
29339
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/endpoint/endpointResolver.js
29102
29340
  var import_client16, import_endpoints2, cache2, defaultEndpointResolver2 = (endpointParams, context = {}) => {
29103
29341
  return cache2.get(endpointParams, () => import_endpoints2.decideEndpoint(bdd2, {
29104
29342
  endpointParams,
@@ -29116,7 +29354,7 @@ var init_endpointResolver = __esm(() => {
29116
29354
  import_endpoints2.customEndpointFunctions.aws = import_client16.awsEndpointFunctions;
29117
29355
  });
29118
29356
 
29119
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/models/Route53ServiceException.js
29357
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/Route53ServiceException.js
29120
29358
  var import_client17, Route53ServiceException;
29121
29359
  var init_Route53ServiceException = __esm(() => {
29122
29360
  import_client17 = __toESM(require_client(), 1);
@@ -29128,7 +29366,7 @@ var init_Route53ServiceException = __esm(() => {
29128
29366
  };
29129
29367
  });
29130
29368
 
29131
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/models/errors.js
29369
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/errors.js
29132
29370
  var ConcurrentModification, InvalidInput, InvalidKeySigningKeyStatus, InvalidKMSArn, InvalidSigningStatus, NoSuchKeySigningKey, ConflictingDomainExists, InvalidVPCId, LimitsExceeded, NoSuchHostedZone, NotAuthorizedException, PriorRequestNotComplete, PublicZoneVPCAssociation, CidrBlockInUseException, CidrCollectionVersionMismatchException, NoSuchCidrCollectionException, InvalidChangeBatch, NoSuchHealthCheck, ThrottlingException, CidrCollectionAlreadyExistsException, HealthCheckAlreadyExists, TooManyHealthChecks, DelegationSetNotAvailable, DelegationSetNotReusable, HostedZoneAlreadyExists, InvalidDomainName, NoSuchDelegationSet, TooManyHostedZones, InvalidArgument, InvalidKeySigningKeyName, KeySigningKeyAlreadyExists, TooManyKeySigningKeys, InsufficientCloudWatchLogsResourcePolicy, NoSuchCloudWatchLogsLogGroup, QueryLoggingConfigAlreadyExists, DelegationSetAlreadyCreated, DelegationSetAlreadyReusable, HostedZoneNotFound, InvalidTrafficPolicyDocument, TooManyTrafficPolicies, TrafficPolicyAlreadyExists, NoSuchTrafficPolicy, TooManyTrafficPolicyInstances, TrafficPolicyInstanceAlreadyExists, TooManyTrafficPolicyVersionsForCurrentPolicy, TooManyVPCAssociationAuthorizations, KeySigningKeyInParentDSRecord, KeySigningKeyInUse, CidrCollectionInUseException, HealthCheckInUse, HostedZoneNotEmpty, NoSuchQueryLoggingConfig, DelegationSetInUse, TrafficPolicyInUse, NoSuchTrafficPolicyInstance, VPCAssociationAuthorizationNotFound, DNSSECNotFound, LastVPCAssociation, VPCAssociationNotFound, HostedZonePartiallyDelegated, KeySigningKeyWithActiveStatusNotFound, NoSuchChange, NoSuchGeoLocation, IncompatibleVersion, HostedZoneNotPrivate, NoSuchCidrLocationException, InvalidPaginationToken, HealthCheckVersionMismatch, ConflictingTypes;
29133
29371
  var init_errors = __esm(() => {
29134
29372
  init_Route53ServiceException();
@@ -29976,7 +30214,7 @@ var init_errors = __esm(() => {
29976
30214
  };
29977
30215
  });
29978
30216
 
29979
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/schemas/schemas_0.js
30217
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/schemas/schemas_0.js
29980
30218
  var import_schema, _A = "Action", _AI = "AlarmIdentifier", _AKSK = "ActivateKeySigningKey", _AKSKR = "ActivateKeySigningKeyRequest", _AKSKRc = "ActivateKeySigningKeyResponse", _AL = "AccountLimit", _AR = "AcceleratedRecovery", _ARS = "AcceleratedRecoveryStatus", _AT = "AliasTarget", _ATd = "AddTags", _AVPCWHZ = "AssociateVPCWithHostedZone", _AVPCWHZR = "AssociateVPCWithHostedZoneRequest", _AVPCWHZRs = "AssociateVPCWithHostedZoneResponse", _AWSR = "AWSRegion", _Ar = "Arn", _B = "Bias", _C = "Comment", _CB = "ChangeBatch", _CBIUE = "CidrBlockInUseException", _CBS = "CidrBlockSummary", _CBSi = "CidrBlockSummaries", _CBi = "CidrBlock", _CBid = "CidrBlocks", _CC = "CidrCollection", _CCAEE = "CidrCollectionAlreadyExistsException", _CCC = "CidrCollectionChange", _CCCR = "ChangeCidrCollectionRequest", _CCCRh = "ChangeCidrCollectionResponse", _CCCRr = "CreateCidrCollectionRequest", _CCCRre = "CreateCidrCollectionResponse", _CCCh = "ChangeCidrCollection", _CCCi = "CidrCollectionChanges", _CCCr = "CreateCidrCollection", _CCIUE = "CidrCollectionInUseException", _CCVME = "CidrCollectionVersionMismatchException", _CCi = "CidrCollections", _CCo = "ContinentCode", _CCou = "CountryCode", _CD = "CreatedDate", _CDE = "ConflictingDomainExists", _CHC = "ChildHealthChecks", _CHCL = "ChildHealthCheckList", _CHCR = "CreateHealthCheckRequest", _CHCRr = "CreateHealthCheckResponse", _CHCh = "ChildHealthCheck", _CHCr = "CreateHealthCheck", _CHZ = "CreateHostedZone", _CHZR = "CreateHostedZoneRequest", _CHZRr = "CreateHostedZoneResponse", _CI = "ChangeInfo", _CIR = "CheckerIpRanges", _CIo = "CollectionId", _CKSK = "CreateKeySigningKey", _CKSKR = "CreateKeySigningKeyRequest", _CKSKRr = "CreateKeySigningKeyResponse", _CL = "CidrList", _CLi = "CidrLocations", _CM = "ConcurrentModification", _CN = "ContinentName", _CNo = "CountryName", _CO = "ComparisonOperator", _CQLC = "CreateQueryLoggingConfig", _CQLCR = "CreateQueryLoggingConfigRequest", _CQLCRr = "CreateQueryLoggingConfigResponse", _CR = "CallerReference", _CRC = "CidrRoutingConfig", _CRDS = "CreateReusableDelegationSet", _CRDSR = "CreateReusableDelegationSetRequest", _CRDSRr = "CreateReusableDelegationSetResponse", _CRRS = "ChangeResourceRecordSets", _CRRSR = "ChangeResourceRecordSetsRequest", _CRRSRh = "ChangeResourceRecordSetsResponse", _CS = "CollectionSummary", _CSo = "CollectionSummaries", _CT = "ConflictingTypes", _CTFR = "ChangeTagsForResource", _CTFRR = "ChangeTagsForResourceRequest", _CTFRRh = "ChangeTagsForResourceResponse", _CTP = "CreateTrafficPolicy", _CTPI = "CreateTrafficPolicyInstance", _CTPIR = "CreateTrafficPolicyInstanceRequest", _CTPIRr = "CreateTrafficPolicyInstanceResponse", _CTPR = "CreateTrafficPolicyRequest", _CTPRr = "CreateTrafficPolicyResponse", _CTPV = "CreateTrafficPolicyVersion", _CTPVR = "CreateTrafficPolicyVersionRequest", _CTPVRr = "CreateTrafficPolicyVersionResponse", _CTh = "CheckedTime", _CV = "CollectionVersion", _CVPCAA = "CreateVPCAssociationAuthorization", _CVPCAAR = "CreateVPCAssociationAuthorizationRequest", _CVPCAARr = "CreateVPCAssociationAuthorizationResponse", _CWAC = "CloudWatchAlarmConfiguration", _CWLLGA = "CloudWatchLogsLogGroupArn", _Ch = "Change", _Cha = "Changes", _Ci = "Cidr", _Co = "Coordinates", _Col = "Collection", _Con = "Config", _Cou = "Count", _D = "Dimensions", _DAM = "DigestAlgorithmMnemonic", _DAT = "DigestAlgorithmType", _DCC = "DeleteCidrCollection", _DCCR = "DeleteCidrCollectionRequest", _DCCRe = "DeleteCidrCollectionResponse", _DHC = "DeleteHealthCheck", _DHCR = "DeleteHealthCheckRequest", _DHCRe = "DeleteHealthCheckResponse", _DHZ = "DeleteHostedZone", _DHZDNSSEC = "DisableHostedZoneDNSSEC", _DHZDNSSECR = "DisableHostedZoneDNSSECRequest", _DHZDNSSECRi = "DisableHostedZoneDNSSECResponse", _DHZR = "DeleteHostedZoneRequest", _DHZRe = "DeleteHostedZoneResponse", _DKSK = "DeactivateKeySigningKey", _DKSKR = "DeactivateKeySigningKeyRequest", _DKSKRe = "DeactivateKeySigningKeyResponse", _DKSKRel = "DeleteKeySigningKeyRequest", _DKSKRele = "DeleteKeySigningKeyResponse", _DKSKe = "DeleteKeySigningKey", _DL = "DimensionList", _DNSKEYR = "DNSKEYRecord", _DNSN = "DNSName", _DNSSECNF = "DNSSECNotFound", _DNSSECS = "DNSSECStatus", _DQLC = "DeleteQueryLoggingConfig", _DQLCR = "DeleteQueryLoggingConfigRequest", _DQLCRe = "DeleteQueryLoggingConfigResponse", _DRDS = "DeleteReusableDelegationSet", _DRDSR = "DeleteReusableDelegationSetRequest", _DRDSRe = "DeleteReusableDelegationSetResponse", _DS = "DelegationSet", _DSAC = "DelegationSetAlreadyCreated", _DSAR = "DelegationSetAlreadyReusable", _DSI = "DelegationSetId", _DSIU = "DelegationSetInUse", _DSNA = "DelegationSetNotAvailable", _DSNR = "DelegationSetNotReusable", _DSNS = "DelegationSetNameServers", _DSR = "DSRecord", _DSe = "DelegationSets", _DTP = "DeleteTrafficPolicy", _DTPI = "DeleteTrafficPolicyInstance", _DTPIR = "DeleteTrafficPolicyInstanceRequest", _DTPIRe = "DeleteTrafficPolicyInstanceResponse", _DTPR = "DeleteTrafficPolicyRequest", _DTPRe = "DeleteTrafficPolicyResponse", _DV = "DigestValue", _DVPCAA = "DeleteVPCAssociationAuthorization", _DVPCAAR = "DeleteVPCAssociationAuthorizationRequest", _DVPCAARe = "DeleteVPCAssociationAuthorizationResponse", _DVPCFHZ = "DisassociateVPCFromHostedZone", _DVPCFHZR = "DisassociateVPCFromHostedZoneRequest", _DVPCFHZRi = "DisassociateVPCFromHostedZoneResponse", _De = "Description", _Di = "Dimension", _Dis = "Disabled", _Do = "Document", _EAR = "EnableAcceleratedRecovery", _EDNSCSIP = "EDNS0ClientSubnetIP", _EDNSCSM = "EDNS0ClientSubnetMask", _EHZDNSSEC = "EnableHostedZoneDNSSEC", _EHZDNSSECR = "EnableHostedZoneDNSSECRequest", _EHZDNSSECRn = "EnableHostedZoneDNSSECResponse", _EM = "ErrorMessages", _EP = "EvaluationPeriods", _ESNI = "EnableSNI", _ETH = "EvaluateTargetHealth", _F = "Features", _FQDN = "FullyQualifiedDomainName", _FR = "FailureReasons", _FT = "FailureThreshold", _Fa = "Failover", _Fl = "Flag", _GAL = "GetAccountLimit", _GALR = "GetAccountLimitRequest", _GALRe = "GetAccountLimitResponse", _GC = "GetChange", _GCIR = "GetCheckerIpRanges", _GCIRR = "GetCheckerIpRangesRequest", _GCIRRe = "GetCheckerIpRangesResponse", _GCR = "GetChangeRequest", _GCRe = "GetChangeResponse", _GDNSSEC = "GetDNSSEC", _GDNSSECR = "GetDNSSECRequest", _GDNSSECRe = "GetDNSSECResponse", _GGL = "GetGeoLocation", _GGLR = "GetGeoLocationRequest", _GGLRe = "GetGeoLocationResponse", _GHC = "GetHealthCheck", _GHCC = "GetHealthCheckCount", _GHCCR = "GetHealthCheckCountRequest", _GHCCRe = "GetHealthCheckCountResponse", _GHCLFR = "GetHealthCheckLastFailureReason", _GHCLFRR = "GetHealthCheckLastFailureReasonRequest", _GHCLFRRe = "GetHealthCheckLastFailureReasonResponse", _GHCR = "GetHealthCheckRequest", _GHCRe = "GetHealthCheckResponse", _GHCS = "GetHealthCheckStatus", _GHCSR = "GetHealthCheckStatusRequest", _GHCSRe = "GetHealthCheckStatusResponse", _GHZ = "GetHostedZone", _GHZC = "GetHostedZoneCount", _GHZCR = "GetHostedZoneCountRequest", _GHZCRe = "GetHostedZoneCountResponse", _GHZL = "GetHostedZoneLimit", _GHZLR = "GetHostedZoneLimitRequest", _GHZLRe = "GetHostedZoneLimitResponse", _GHZR = "GetHostedZoneRequest", _GHZRe = "GetHostedZoneResponse", _GL = "GeoLocation", _GLD = "GeoLocationDetails", _GLDL = "GeoLocationDetailsList", _GPL = "GeoProximityLocation", _GQLC = "GetQueryLoggingConfig", _GQLCR = "GetQueryLoggingConfigRequest", _GQLCRe = "GetQueryLoggingConfigResponse", _GRDS = "GetReusableDelegationSet", _GRDSL = "GetReusableDelegationSetLimit", _GRDSLR = "GetReusableDelegationSetLimitRequest", _GRDSLRe = "GetReusableDelegationSetLimitResponse", _GRDSR = "GetReusableDelegationSetRequest", _GRDSRe = "GetReusableDelegationSetResponse", _GTP = "GetTrafficPolicy", _GTPI = "GetTrafficPolicyInstance", _GTPIC = "GetTrafficPolicyInstanceCount", _GTPICR = "GetTrafficPolicyInstanceCountRequest", _GTPICRe = "GetTrafficPolicyInstanceCountResponse", _GTPIR = "GetTrafficPolicyInstanceRequest", _GTPIRe = "GetTrafficPolicyInstanceResponse", _GTPR = "GetTrafficPolicyRequest", _GTPRe = "GetTrafficPolicyResponse", _HC = "HealthCheck", _HCAE = "HealthCheckAlreadyExists", _HCC = "HealthCheckConfig", _HCCe = "HealthCheckCount", _HCI = "HealthCheckId", _HCIU = "HealthCheckInUse", _HCO = "HealthCheckObservations", _HCOe = "HealthCheckObservation", _HCRL = "HealthCheckRegionList", _HCV = "HealthCheckVersion", _HCVM = "HealthCheckVersionMismatch", _HCe = "HealthChecks", _HT = "HealthThreshold", _HZ = "HostedZone", _HZAE = "HostedZoneAlreadyExists", _HZC = "HostedZoneConfig", _HZCo = "HostedZoneCount", _HZF = "HostedZoneFeatures", _HZFR = "HostedZoneFailureReasons", _HZI = "HostedZoneId", _HZIM = "HostedZoneIdMarker", _HZL = "HostedZoneLimit", _HZNE = "HostedZoneNotEmpty", _HZNF = "HostedZoneNotFound", _HZNP = "HostedZoneNotPrivate", _HZO = "HostedZoneOwner", _HZPD = "HostedZonePartiallyDelegated", _HZS = "HostedZoneSummary", _HZSo = "HostedZoneSummaries", _HZT = "HostedZoneType", _HZo = "HostedZones", _I = "Id", _IA = "InvalidArgument", _ICB = "InvalidChangeBatch", _ICWLRP = "InsufficientCloudWatchLogsResourcePolicy", _IDHS = "InsufficientDataHealthStatus", _IDN = "InvalidDomainName", _II = "InvalidInput", _IKMSA = "InvalidKMSArn", _IKSKN = "InvalidKeySigningKeyName", _IKSKS = "InvalidKeySigningKeyStatus", _IPA = "IPAddress", _IPT = "InvalidPaginationToken", _ISS = "InvalidSigningStatus", _IT = "IsTruncated", _ITPD = "InvalidTrafficPolicyDocument", _IV = "IncompatibleVersion", _IVPCI = "InvalidVPCId", _In = "Inverted", _K = "Key", _KA = "KmsArn", _KMSA = "KeyManagementServiceArn", _KSK = "KeySigningKey", _KSKAE = "KeySigningKeyAlreadyExists", _KSKIPDSR = "KeySigningKeyInParentDSRecord", _KSKIU = "KeySigningKeyInUse", _KSKWASNF = "KeySigningKeyWithActiveStatusNotFound", _KSKe = "KeySigningKeys", _KT = "KeyTag", _L = "Latitude", _LCB = "ListCidrBlocks", _LCBR = "ListCidrBlocksRequest", _LCBRi = "ListCidrBlocksResponse", _LCC = "ListCidrCollections", _LCCR = "ListCidrCollectionsRequest", _LCCRi = "ListCidrCollectionsResponse", _LCL = "ListCidrLocations", _LCLR = "ListCidrLocationsRequest", _LCLRi = "ListCidrLocationsResponse", _LE = "LimitsExceeded", _LGL = "ListGeoLocations", _LGLR = "ListGeoLocationsRequest", _LGLRi = "ListGeoLocationsResponse", _LHC = "ListHealthChecks", _LHCR = "ListHealthChecksRequest", _LHCRi = "ListHealthChecksResponse", _LHZ = "ListHostedZones", _LHZBN = "ListHostedZonesByName", _LHZBNR = "ListHostedZonesByNameRequest", _LHZBNRi = "ListHostedZonesByNameResponse", _LHZBVPC = "ListHostedZonesByVPC", _LHZBVPCR = "ListHostedZonesByVPCRequest", _LHZBVPCRi = "ListHostedZonesByVPCResponse", _LHZR = "ListHostedZonesRequest", _LHZRi = "ListHostedZonesResponse", _LMD = "LastModifiedDate", _LN = "LocationName", _LQLC = "ListQueryLoggingConfigs", _LQLCR = "ListQueryLoggingConfigsRequest", _LQLCRi = "ListQueryLoggingConfigsResponse", _LRDS = "ListReusableDelegationSets", _LRDSR = "ListReusableDelegationSetsRequest", _LRDSRi = "ListReusableDelegationSetsResponse", _LRRS = "ListResourceRecordSets", _LRRSR = "ListResourceRecordSetsRequest", _LRRSRi = "ListResourceRecordSetsResponse", _LS = "LinkedService", _LSo = "LocationSummary", _LSoc = "LocationSummaries", _LTFR = "ListTagsForResource", _LTFRR = "ListTagsForResourceRequest", _LTFRRi = "ListTagsForResourceResponse", _LTFRRis = "ListTagsForResourcesRequest", _LTFRRist = "ListTagsForResourcesResponse", _LTFRi = "ListTagsForResources", _LTP = "ListTrafficPolicies", _LTPI = "ListTrafficPolicyInstances", _LTPIBHZ = "ListTrafficPolicyInstancesByHostedZone", _LTPIBHZR = "ListTrafficPolicyInstancesByHostedZoneRequest", _LTPIBHZRi = "ListTrafficPolicyInstancesByHostedZoneResponse", _LTPIBP = "ListTrafficPolicyInstancesByPolicy", _LTPIBPR = "ListTrafficPolicyInstancesByPolicyRequest", _LTPIBPRi = "ListTrafficPolicyInstancesByPolicyResponse", _LTPIR = "ListTrafficPolicyInstancesRequest", _LTPIRi = "ListTrafficPolicyInstancesResponse", _LTPR = "ListTrafficPoliciesRequest", _LTPRi = "ListTrafficPoliciesResponse", _LTPV = "ListTrafficPolicyVersions", _LTPVR = "ListTrafficPolicyVersionsRequest", _LTPVRi = "ListTrafficPolicyVersionsResponse", _LV = "LatestVersion", _LVPCA = "LastVPCAssociation", _LVPCAA = "ListVPCAssociationAuthorizations", _LVPCAAR = "ListVPCAssociationAuthorizationsRequest", _LVPCAARi = "ListVPCAssociationAuthorizationsResponse", _LZG = "LocalZoneGroup", _Li = "Limit", _Lo = "Longitude", _Loc = "Location", _M = "Message", _MI = "MaxItems", _ML = "MeasureLatency", _MN = "MetricName", _MR = "MaxResults", _MVA = "MultiValueAnswer", _Ma = "Marker", _N = "Name", _NAE = "NotAuthorizedException", _NCC = "NextContinentCode", _NCCe = "NextCountryCode", _NDNSN = "NextDNSName", _NHZI = "NextHostedZoneId", _NM = "NextMarker", _NRI = "NextRecordIdentifier", _NRN = "NextRecordName", _NRT = "NextRecordType", _NS = "NameServers", _NSC = "NoSuchChange", _NSCCE = "NoSuchCidrCollectionException", _NSCLE = "NoSuchCidrLocationException", _NSCWLLG = "NoSuchCloudWatchLogsLogGroup", _NSCe = "NextSubdivisionCode", _NSDS = "NoSuchDelegationSet", _NSGL = "NoSuchGeoLocation", _NSHC = "NoSuchHealthCheck", _NSHZ = "NoSuchHostedZone", _NSKSK = "NoSuchKeySigningKey", _NSQLC = "NoSuchQueryLoggingConfig", _NSTP = "NoSuchTrafficPolicy", _NSTPI = "NoSuchTrafficPolicyInstance", _NSa = "NameServer", _NT = "NextToken", _Na = "Namespace", _Nam = "Nameserver", _O = "Owner", _OA = "OwningAccount", _OS = "OwningService", _P = "Period", _PK = "PublicKey", _PRNC = "PriorRequestNotComplete", _PZ = "PrivateZone", _PZVPCA = "PublicZoneVPCAssociation", _Po = "Port", _Pr = "Protocol", _QLC = "QueryLoggingConfig", _QLCAE = "QueryLoggingConfigAlreadyExists", _QLCu = "QueryLoggingConfigs", _R = "Region", _RC2 = "ResponseCode", _RCA = "RoutingControlArn", _RD = "RecordData", _RDE = "RecordDataEntry", _RDSL = "ReusableDelegationSetLimit", _RE = "ResetElements", _REN = "ResettableElementName", _RENL = "ResettableElementNameList", _RI = "ResourceId", _RIP = "ResolverIP", _RIe = "RequestInterval", _RIes = "ResourceIds", _RN = "RecordName", _RP = "ResourcePath", _RR = "ResourceRecord", _RRS = "ResourceRecordSet", _RRSC = "ResourceRecordSetCount", _RRSe = "ResourceRecordSets", _RRe = "ResourceRecords", _RT = "ResourceType", _RTK = "RemoveTagKeys", _RTS = "ResourceTagSet", _RTSL = "ResourceTagSetList", _RTSe = "ResourceTagSets", _RTe = "RecordType", _Re = "Regions", _S = "Status", _SA = "SubmittedAt", _SAM = "SigningAlgorithmMnemonic", _SAT = "SigningAlgorithmType", _SC = "SubdivisionCode", _SCC = "StartContinentCode", _SCCt = "StartCountryCode", _SI = "SetIdentifier", _SM = "StatusMessage", _SN = "SubdivisionName", _SP = "ServicePrincipal", _SR = "StatusReport", _SRI = "StartRecordIdentifier", _SRN = "StartRecordName", _SRT = "StartRecordType", _SS = "ServeSignature", _SSC = "StartSubdivisionCode", _SSe = "SearchString", _St = "Statistic", _Sta = "State", _T = "Type", _TDNSA = "TestDNSAnswer", _TDNSAR = "TestDNSAnswerRequest", _TDNSARe = "TestDNSAnswerResponse", _TE = "ThrottlingException", _TKL = "TagKeyList", _TL = "TagList", _TMHC = "TooManyHealthChecks", _TMHZ = "TooManyHostedZones", _TMKSK = "TooManyKeySigningKeys", _TMTP = "TooManyTrafficPolicies", _TMTPI = "TooManyTrafficPolicyInstances", _TMTPVFCP = "TooManyTrafficPolicyVersionsForCurrentPolicy", _TMVPCAA = "TooManyVPCAssociationAuthorizations", _TP = "TrafficPolicy", _TPAE = "TrafficPolicyAlreadyExists", _TPC = "TrafficPolicyCount", _TPI = "TrafficPolicyId", _TPIAE = "TrafficPolicyInstanceAlreadyExists", _TPIC = "TrafficPolicyInstanceCount", _TPII = "TrafficPolicyInstanceId", _TPIM = "TrafficPolicyIdMarker", _TPINM = "TrafficPolicyInstanceNameMarker", _TPITM = "TrafficPolicyInstanceTypeMarker", _TPIU = "TrafficPolicyInUse", _TPIr = "TrafficPolicyInstance", _TPIra = "TrafficPolicyInstances", _TPS = "TrafficPolicySummaries", _TPSr = "TrafficPolicySummary", _TPT = "TrafficPolicyType", _TPV = "TrafficPolicyVersion", _TPVM = "TrafficPolicyVersionMarker", _TPr = "TrafficPolicies", _TRIL = "TagResourceIdList", _TTL = "TTL", _Ta = "Tags", _Tag = "Tag", _Th = "Threshold", _UHC = "UpdateHealthCheck", _UHCR = "UpdateHealthCheckRequest", _UHCRp = "UpdateHealthCheckResponse", _UHZC = "UpdateHostedZoneComment", _UHZCR = "UpdateHostedZoneCommentRequest", _UHZCRp = "UpdateHostedZoneCommentResponse", _UHZF = "UpdateHostedZoneFeatures", _UHZFR = "UpdateHostedZoneFeaturesRequest", _UHZFRp = "UpdateHostedZoneFeaturesResponse", _UTPC = "UpdateTrafficPolicyComment", _UTPCR = "UpdateTrafficPolicyCommentRequest", _UTPCRp = "UpdateTrafficPolicyCommentResponse", _UTPI = "UpdateTrafficPolicyInstance", _UTPIR = "UpdateTrafficPolicyInstanceRequest", _UTPIRp = "UpdateTrafficPolicyInstanceResponse", _V = "Value", _VPC = "VPC", _VPCAANF = "VPCAssociationAuthorizationNotFound", _VPCANF = "VPCAssociationNotFound", _VPCI = "VPCId", _VPCR = "VPCRegion", _VPCs = "VPCs", _Ve = "Version", _W = "Weight", _c2 = "client", _co = "continentcode", _cou = "countrycode", _d = "dnsname", _de = "delegationsetid", _e2 = "error", _ed = "edns0clientsubnetip", _edn = "edns0clientsubnetmask", _h2 = "hostedzoneid", _hE2 = "httpError", _hH2 = "httpHeader", _hQ2 = "httpQuery", _ho = "hostedzonetype", _ht = "http", _i = "identifier", _id = "id", _l = "location", _m2 = "message", _ma = "maxresults", _mar = "marker", _max = "maxitems", _me = "messages", _n = "nexttoken", _na = "name", _r = "recordname", _re = "recordtype", _res = "resolverip", _s2 = "smithy.ts.sdk.synthetic.com.amazonaws.route53", _st = "startcontinentcode", _sta = "startcountrycode", _star = "startsubdivisioncode", _su = "subdivisioncode", _t = "type", _tr = "trafficpolicyid", _tra = "trafficpolicyinstancename", _traf = "trafficpolicyinstancetype", _traff = "trafficpolicyversion", _v = "vpcid", _ve = "version", _vp = "vpcregion", _xN = "xmlName", n02 = "com.amazonaws.route53", _s_registry2, Route53ServiceException$, n0_registry2, CidrBlockInUseException$, CidrCollectionAlreadyExistsException$, CidrCollectionInUseException$, CidrCollectionVersionMismatchException$, ConcurrentModification$, ConflictingDomainExists$, ConflictingTypes$, DelegationSetAlreadyCreated$, DelegationSetAlreadyReusable$, DelegationSetInUse$, DelegationSetNotAvailable$, DelegationSetNotReusable$, DNSSECNotFound$, HealthCheckAlreadyExists$, HealthCheckInUse$, HealthCheckVersionMismatch$, HostedZoneAlreadyExists$, HostedZoneNotEmpty$, HostedZoneNotFound$, HostedZoneNotPrivate$, HostedZonePartiallyDelegated$, IncompatibleVersion$, InsufficientCloudWatchLogsResourcePolicy$, InvalidArgument$, InvalidChangeBatch$, InvalidDomainName$, InvalidInput$, InvalidKeySigningKeyName$, InvalidKeySigningKeyStatus$, InvalidKMSArn$, InvalidPaginationToken$, InvalidSigningStatus$, InvalidTrafficPolicyDocument$, InvalidVPCId$, KeySigningKeyAlreadyExists$, KeySigningKeyInParentDSRecord$, KeySigningKeyInUse$, KeySigningKeyWithActiveStatusNotFound$, LastVPCAssociation$, LimitsExceeded$, NoSuchChange$, NoSuchCidrCollectionException$, NoSuchCidrLocationException$, NoSuchCloudWatchLogsLogGroup$, NoSuchDelegationSet$, NoSuchGeoLocation$, NoSuchHealthCheck$, NoSuchHostedZone$, NoSuchKeySigningKey$, NoSuchQueryLoggingConfig$, NoSuchTrafficPolicy$, NoSuchTrafficPolicyInstance$, NotAuthorizedException$, PriorRequestNotComplete$, PublicZoneVPCAssociation$, QueryLoggingConfigAlreadyExists$, ThrottlingException$, TooManyHealthChecks$, TooManyHostedZones$, TooManyKeySigningKeys$, TooManyTrafficPolicies$, TooManyTrafficPolicyInstances$, TooManyTrafficPolicyVersionsForCurrentPolicy$, TooManyVPCAssociationAuthorizations$, TrafficPolicyAlreadyExists$, TrafficPolicyInstanceAlreadyExists$, TrafficPolicyInUse$, VPCAssociationAuthorizationNotFound$, VPCAssociationNotFound$, errorTypeRegistries2, AccountLimit$, ActivateKeySigningKeyRequest$, ActivateKeySigningKeyResponse$, AlarmIdentifier$, AliasTarget$, AssociateVPCWithHostedZoneRequest$, AssociateVPCWithHostedZoneResponse$, Change$, ChangeBatch$, ChangeCidrCollectionRequest$, ChangeCidrCollectionResponse$, ChangeInfo$, ChangeResourceRecordSetsRequest$, ChangeResourceRecordSetsResponse$, ChangeTagsForResourceRequest$, ChangeTagsForResourceResponse$, CidrBlockSummary$, CidrCollection$, CidrCollectionChange$, CidrRoutingConfig$, CloudWatchAlarmConfiguration$, CollectionSummary$, Coordinates$, CreateCidrCollectionRequest$, CreateCidrCollectionResponse$, CreateHealthCheckRequest$, CreateHealthCheckResponse$, CreateHostedZoneRequest$, CreateHostedZoneResponse$, CreateKeySigningKeyRequest$, CreateKeySigningKeyResponse$, CreateQueryLoggingConfigRequest$, CreateQueryLoggingConfigResponse$, CreateReusableDelegationSetRequest$, CreateReusableDelegationSetResponse$, CreateTrafficPolicyInstanceRequest$, CreateTrafficPolicyInstanceResponse$, CreateTrafficPolicyRequest$, CreateTrafficPolicyResponse$, CreateTrafficPolicyVersionRequest$, CreateTrafficPolicyVersionResponse$, CreateVPCAssociationAuthorizationRequest$, CreateVPCAssociationAuthorizationResponse$, DeactivateKeySigningKeyRequest$, DeactivateKeySigningKeyResponse$, DelegationSet$, DeleteCidrCollectionRequest$, DeleteCidrCollectionResponse$, DeleteHealthCheckRequest$, DeleteHealthCheckResponse$, DeleteHostedZoneRequest$, DeleteHostedZoneResponse$, DeleteKeySigningKeyRequest$, DeleteKeySigningKeyResponse$, DeleteQueryLoggingConfigRequest$, DeleteQueryLoggingConfigResponse$, DeleteReusableDelegationSetRequest$, DeleteReusableDelegationSetResponse$, DeleteTrafficPolicyInstanceRequest$, DeleteTrafficPolicyInstanceResponse$, DeleteTrafficPolicyRequest$, DeleteTrafficPolicyResponse$, DeleteVPCAssociationAuthorizationRequest$, DeleteVPCAssociationAuthorizationResponse$, Dimension$, DisableHostedZoneDNSSECRequest$, DisableHostedZoneDNSSECResponse$, DisassociateVPCFromHostedZoneRequest$, DisassociateVPCFromHostedZoneResponse$, DNSSECStatus$, EnableHostedZoneDNSSECRequest$, EnableHostedZoneDNSSECResponse$, GeoLocation$, GeoLocationDetails$, GeoProximityLocation$, GetAccountLimitRequest$, GetAccountLimitResponse$, GetChangeRequest$, GetChangeResponse$, GetCheckerIpRangesRequest$, GetCheckerIpRangesResponse$, GetDNSSECRequest$, GetDNSSECResponse$, GetGeoLocationRequest$, GetGeoLocationResponse$, GetHealthCheckCountRequest$, GetHealthCheckCountResponse$, GetHealthCheckLastFailureReasonRequest$, GetHealthCheckLastFailureReasonResponse$, GetHealthCheckRequest$, GetHealthCheckResponse$, GetHealthCheckStatusRequest$, GetHealthCheckStatusResponse$, GetHostedZoneCountRequest$, GetHostedZoneCountResponse$, GetHostedZoneLimitRequest$, GetHostedZoneLimitResponse$, GetHostedZoneRequest$, GetHostedZoneResponse$, GetQueryLoggingConfigRequest$, GetQueryLoggingConfigResponse$, GetReusableDelegationSetLimitRequest$, GetReusableDelegationSetLimitResponse$, GetReusableDelegationSetRequest$, GetReusableDelegationSetResponse$, GetTrafficPolicyInstanceCountRequest$, GetTrafficPolicyInstanceCountResponse$, GetTrafficPolicyInstanceRequest$, GetTrafficPolicyInstanceResponse$, GetTrafficPolicyRequest$, GetTrafficPolicyResponse$, HealthCheck$, HealthCheckConfig$, HealthCheckObservation$, HostedZone$, HostedZoneConfig$, HostedZoneFailureReasons$, HostedZoneFeatures$, HostedZoneLimit$, HostedZoneOwner$, HostedZoneSummary$, KeySigningKey$, LinkedService$, ListCidrBlocksRequest$, ListCidrBlocksResponse$, ListCidrCollectionsRequest$, ListCidrCollectionsResponse$, ListCidrLocationsRequest$, ListCidrLocationsResponse$, ListGeoLocationsRequest$, ListGeoLocationsResponse$, ListHealthChecksRequest$, ListHealthChecksResponse$, ListHostedZonesByNameRequest$, ListHostedZonesByNameResponse$, ListHostedZonesByVPCRequest$, ListHostedZonesByVPCResponse$, ListHostedZonesRequest$, ListHostedZonesResponse$, ListQueryLoggingConfigsRequest$, ListQueryLoggingConfigsResponse$, ListResourceRecordSetsRequest$, ListResourceRecordSetsResponse$, ListReusableDelegationSetsRequest$, ListReusableDelegationSetsResponse$, ListTagsForResourceRequest$, ListTagsForResourceResponse$, ListTagsForResourcesRequest$, ListTagsForResourcesResponse$, ListTrafficPoliciesRequest$, ListTrafficPoliciesResponse$, ListTrafficPolicyInstancesByHostedZoneRequest$, ListTrafficPolicyInstancesByHostedZoneResponse$, ListTrafficPolicyInstancesByPolicyRequest$, ListTrafficPolicyInstancesByPolicyResponse$, ListTrafficPolicyInstancesRequest$, ListTrafficPolicyInstancesResponse$, ListTrafficPolicyVersionsRequest$, ListTrafficPolicyVersionsResponse$, ListVPCAssociationAuthorizationsRequest$, ListVPCAssociationAuthorizationsResponse$, LocationSummary$, QueryLoggingConfig$, ResourceRecord$, ResourceRecordSet$, ResourceTagSet$, ReusableDelegationSetLimit$, StatusReport$, Tag$, TestDNSAnswerRequest$, TestDNSAnswerResponse$, TrafficPolicy$, TrafficPolicyInstance$, TrafficPolicySummary$, UpdateHealthCheckRequest$, UpdateHealthCheckResponse$, UpdateHostedZoneCommentRequest$, UpdateHostedZoneCommentResponse$, UpdateHostedZoneFeaturesRequest$, UpdateHostedZoneFeaturesResponse$, UpdateTrafficPolicyCommentRequest$, UpdateTrafficPolicyCommentResponse$, UpdateTrafficPolicyInstanceRequest$, UpdateTrafficPolicyInstanceResponse$, VPC$, Changes, CheckerIpRanges, ChildHealthCheckList, CidrBlockSummaries, CidrCollectionChanges, CidrList, CollectionSummaries, DelegationSetNameServers, DelegationSets, DimensionList, ErrorMessages, GeoLocationDetailsList, HealthCheckObservations, HealthCheckRegionList, HealthChecks, HostedZones, HostedZoneSummaries, KeySigningKeys, LocationSummaries, QueryLoggingConfigs, RecordData, ResettableElementNameList, ResourceRecords, ResourceRecordSets, ResourceTagSetList, TagKeyList, TagList, TagResourceIdList, TrafficPolicies, TrafficPolicyInstances, TrafficPolicySummaries, VPCs, ActivateKeySigningKey$, AssociateVPCWithHostedZone$, ChangeCidrCollection$, ChangeResourceRecordSets$, ChangeTagsForResource$, CreateCidrCollection$, CreateHealthCheck$, CreateHostedZone$, CreateKeySigningKey$, CreateQueryLoggingConfig$, CreateReusableDelegationSet$, CreateTrafficPolicy$, CreateTrafficPolicyInstance$, CreateTrafficPolicyVersion$, CreateVPCAssociationAuthorization$, DeactivateKeySigningKey$, DeleteCidrCollection$, DeleteHealthCheck$, DeleteHostedZone$, DeleteKeySigningKey$, DeleteQueryLoggingConfig$, DeleteReusableDelegationSet$, DeleteTrafficPolicy$, DeleteTrafficPolicyInstance$, DeleteVPCAssociationAuthorization$, DisableHostedZoneDNSSEC$, DisassociateVPCFromHostedZone$, EnableHostedZoneDNSSEC$, GetAccountLimit$, GetChange$, GetCheckerIpRanges$, GetDNSSEC$, GetGeoLocation$, GetHealthCheck$, GetHealthCheckCount$, GetHealthCheckLastFailureReason$, GetHealthCheckStatus$, GetHostedZone$, GetHostedZoneCount$, GetHostedZoneLimit$, GetQueryLoggingConfig$, GetReusableDelegationSet$, GetReusableDelegationSetLimit$, GetTrafficPolicy$, GetTrafficPolicyInstance$, GetTrafficPolicyInstanceCount$, ListCidrBlocks$, ListCidrCollections$, ListCidrLocations$, ListGeoLocations$, ListHealthChecks$, ListHostedZones$, ListHostedZonesByName$, ListHostedZonesByVPC$, ListQueryLoggingConfigs$, ListResourceRecordSets$, ListReusableDelegationSets$, ListTagsForResource$, ListTagsForResources$, ListTrafficPolicies$, ListTrafficPolicyInstances$, ListTrafficPolicyInstancesByHostedZone$, ListTrafficPolicyInstancesByPolicy$, ListTrafficPolicyVersions$, ListVPCAssociationAuthorizations$, TestDNSAnswer$, UpdateHealthCheck$, UpdateHostedZoneComment$, UpdateHostedZoneFeatures$, UpdateTrafficPolicyComment$, UpdateTrafficPolicyInstance$;
29981
30219
  var init_schemas_0 = __esm(() => {
29982
30220
  init_errors();
@@ -33099,7 +33337,7 @@ var init_schemas_0 = __esm(() => {
33099
33337
  ];
33100
33338
  });
33101
33339
 
33102
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.shared.js
33340
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.shared.js
33103
33341
  var import_httpAuthSchemes2, import_protocols4, import_checksum, import_client18, import_protocols5, import_serde3, getRuntimeConfig2 = (config) => {
33104
33342
  return {
33105
33343
  apiVersion: "2013-04-01",
@@ -33144,7 +33382,7 @@ var init_runtimeConfig_shared = __esm(() => {
33144
33382
  import_serde3 = __toESM(require_serde(), 1);
33145
33383
  });
33146
33384
 
33147
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.js
33385
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeConfig.js
33148
33386
  var import_client19, import_httpAuthSchemes3, import_client20, import_config28, import_retry3, import_serde4, import_node_http_handler2, getRuntimeConfig3 = (config) => {
33149
33387
  import_client20.emitWarningIfUnsupportedVersion(process.version);
33150
33388
  const defaultsMode = import_config28.resolveDefaultsModeConfig(config);
@@ -33190,7 +33428,7 @@ var init_runtimeConfig = __esm(() => {
33190
33428
  import_node_http_handler2 = __toESM(require_dist_cjs4(), 1);
33191
33429
  });
33192
33430
 
33193
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthExtensionConfiguration.js
33431
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/auth/httpAuthExtensionConfiguration.js
33194
33432
  var getHttpAuthExtensionConfiguration2 = (runtimeConfig) => {
33195
33433
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
33196
33434
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -33228,7 +33466,7 @@ var getHttpAuthExtensionConfiguration2 = (runtimeConfig) => {
33228
33466
  };
33229
33467
  };
33230
33468
 
33231
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeExtensions.js
33469
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/runtimeExtensions.js
33232
33470
  var import_client21, import_client22, import_protocols6, resolveRuntimeExtensions2 = (runtimeConfig, extensions) => {
33233
33471
  const extensionConfiguration = Object.assign(import_client21.getAwsRegionExtensionConfiguration(runtimeConfig), import_client22.getDefaultExtensionConfiguration(runtimeConfig), import_protocols6.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration2(runtimeConfig));
33234
33472
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
@@ -33240,7 +33478,7 @@ var init_runtimeExtensions = __esm(() => {
33240
33478
  import_protocols6 = __toESM(require_protocols(), 1);
33241
33479
  });
33242
33480
 
33243
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/Route53Client.js
33481
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/Route53Client.js
33244
33482
  var import_client23, import_core, import_client24, import_config29, import_endpoints3, import_protocols7, import_retry4, import_schema2, Route53Client;
33245
33483
  var init_Route53Client = __esm(() => {
33246
33484
  init_httpAuthSchemeProvider();
@@ -33291,13 +33529,13 @@ var init_Route53Client = __esm(() => {
33291
33529
  };
33292
33530
  });
33293
33531
 
33294
- // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.23/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/constants.js
33532
+ // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/constants.js
33295
33533
  var IDENTIFIER_PREFIX_PATTERN;
33296
33534
  var init_constants2 = __esm(() => {
33297
33535
  IDENTIFIER_PREFIX_PATTERN = /^\/(hostedzone|change|delegationset)\//;
33298
33536
  });
33299
33537
 
33300
- // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.23/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/change-resource-record-sets.js
33538
+ // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/change-resource-record-sets.js
33301
33539
  function changeResourceRecordSetsMiddleware() {
33302
33540
  return (next) => async (args) => {
33303
33541
  const { ChangeBatch } = args.input;
@@ -33346,7 +33584,7 @@ var init_change_resource_record_sets = __esm(() => {
33346
33584
  };
33347
33585
  });
33348
33586
 
33349
- // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.23/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/id-normalizer.js
33587
+ // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/id-normalizer.js
33350
33588
  function idNormalizerMiddleware() {
33351
33589
  return (next) => async (args) => {
33352
33590
  const input = { ...args.input };
@@ -33378,13 +33616,13 @@ var init_id_normalizer = __esm(() => {
33378
33616
  };
33379
33617
  });
33380
33618
 
33381
- // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.23/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/index.js
33619
+ // ../../node_modules/.bun/@aws-sdk+middleware-sdk-route53@3.972.25/node_modules/@aws-sdk/middleware-sdk-route53/dist-es/index.js
33382
33620
  var init_dist_es11 = __esm(() => {
33383
33621
  init_change_resource_record_sets();
33384
33622
  init_id_normalizer();
33385
33623
  });
33386
33624
 
33387
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commandBuilder.js
33625
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commandBuilder.js
33388
33626
  var import_client25, import_endpoints4, command2, _ep02, _mw02 = (Command2, cs, config, o2) => [
33389
33627
  getIdNormalizerPlugin(config)
33390
33628
  ], _mw1 = (Command2, cs, config, o2) => [
@@ -33400,7 +33638,7 @@ var init_commandBuilder = __esm(() => {
33400
33638
  _ep02 = {};
33401
33639
  });
33402
33640
 
33403
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ActivateKeySigningKeyCommand.js
33641
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ActivateKeySigningKeyCommand.js
33404
33642
  var ActivateKeySigningKeyCommand;
33405
33643
  var init_ActivateKeySigningKeyCommand = __esm(() => {
33406
33644
  init_commandBuilder();
@@ -33409,7 +33647,7 @@ var init_ActivateKeySigningKeyCommand = __esm(() => {
33409
33647
  };
33410
33648
  });
33411
33649
 
33412
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/AssociateVPCWithHostedZoneCommand.js
33650
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/AssociateVPCWithHostedZoneCommand.js
33413
33651
  var AssociateVPCWithHostedZoneCommand;
33414
33652
  var init_AssociateVPCWithHostedZoneCommand = __esm(() => {
33415
33653
  init_commandBuilder();
@@ -33418,7 +33656,7 @@ var init_AssociateVPCWithHostedZoneCommand = __esm(() => {
33418
33656
  };
33419
33657
  });
33420
33658
 
33421
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeCidrCollectionCommand.js
33659
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeCidrCollectionCommand.js
33422
33660
  var ChangeCidrCollectionCommand;
33423
33661
  var init_ChangeCidrCollectionCommand = __esm(() => {
33424
33662
  init_commandBuilder();
@@ -33427,7 +33665,7 @@ var init_ChangeCidrCollectionCommand = __esm(() => {
33427
33665
  };
33428
33666
  });
33429
33667
 
33430
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeResourceRecordSetsCommand.js
33668
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeResourceRecordSetsCommand.js
33431
33669
  var ChangeResourceRecordSetsCommand;
33432
33670
  var init_ChangeResourceRecordSetsCommand = __esm(() => {
33433
33671
  init_commandBuilder();
@@ -33436,7 +33674,7 @@ var init_ChangeResourceRecordSetsCommand = __esm(() => {
33436
33674
  };
33437
33675
  });
33438
33676
 
33439
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeTagsForResourceCommand.js
33677
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ChangeTagsForResourceCommand.js
33440
33678
  var ChangeTagsForResourceCommand;
33441
33679
  var init_ChangeTagsForResourceCommand = __esm(() => {
33442
33680
  init_commandBuilder();
@@ -33445,7 +33683,7 @@ var init_ChangeTagsForResourceCommand = __esm(() => {
33445
33683
  };
33446
33684
  });
33447
33685
 
33448
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateCidrCollectionCommand.js
33686
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateCidrCollectionCommand.js
33449
33687
  var CreateCidrCollectionCommand;
33450
33688
  var init_CreateCidrCollectionCommand = __esm(() => {
33451
33689
  init_commandBuilder();
@@ -33454,7 +33692,7 @@ var init_CreateCidrCollectionCommand = __esm(() => {
33454
33692
  };
33455
33693
  });
33456
33694
 
33457
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHealthCheckCommand.js
33695
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHealthCheckCommand.js
33458
33696
  var CreateHealthCheckCommand;
33459
33697
  var init_CreateHealthCheckCommand = __esm(() => {
33460
33698
  init_commandBuilder();
@@ -33463,7 +33701,7 @@ var init_CreateHealthCheckCommand = __esm(() => {
33463
33701
  };
33464
33702
  });
33465
33703
 
33466
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHostedZoneCommand.js
33704
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateHostedZoneCommand.js
33467
33705
  var CreateHostedZoneCommand;
33468
33706
  var init_CreateHostedZoneCommand = __esm(() => {
33469
33707
  init_commandBuilder();
@@ -33472,7 +33710,7 @@ var init_CreateHostedZoneCommand = __esm(() => {
33472
33710
  };
33473
33711
  });
33474
33712
 
33475
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateKeySigningKeyCommand.js
33713
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateKeySigningKeyCommand.js
33476
33714
  var CreateKeySigningKeyCommand;
33477
33715
  var init_CreateKeySigningKeyCommand = __esm(() => {
33478
33716
  init_commandBuilder();
@@ -33481,7 +33719,7 @@ var init_CreateKeySigningKeyCommand = __esm(() => {
33481
33719
  };
33482
33720
  });
33483
33721
 
33484
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateQueryLoggingConfigCommand.js
33722
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateQueryLoggingConfigCommand.js
33485
33723
  var CreateQueryLoggingConfigCommand;
33486
33724
  var init_CreateQueryLoggingConfigCommand = __esm(() => {
33487
33725
  init_commandBuilder();
@@ -33490,7 +33728,7 @@ var init_CreateQueryLoggingConfigCommand = __esm(() => {
33490
33728
  };
33491
33729
  });
33492
33730
 
33493
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateReusableDelegationSetCommand.js
33731
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateReusableDelegationSetCommand.js
33494
33732
  var CreateReusableDelegationSetCommand;
33495
33733
  var init_CreateReusableDelegationSetCommand = __esm(() => {
33496
33734
  init_commandBuilder();
@@ -33499,7 +33737,7 @@ var init_CreateReusableDelegationSetCommand = __esm(() => {
33499
33737
  };
33500
33738
  });
33501
33739
 
33502
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyCommand.js
33740
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyCommand.js
33503
33741
  var CreateTrafficPolicyCommand;
33504
33742
  var init_CreateTrafficPolicyCommand = __esm(() => {
33505
33743
  init_commandBuilder();
@@ -33508,7 +33746,7 @@ var init_CreateTrafficPolicyCommand = __esm(() => {
33508
33746
  };
33509
33747
  });
33510
33748
 
33511
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyInstanceCommand.js
33749
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyInstanceCommand.js
33512
33750
  var CreateTrafficPolicyInstanceCommand;
33513
33751
  var init_CreateTrafficPolicyInstanceCommand = __esm(() => {
33514
33752
  init_commandBuilder();
@@ -33517,7 +33755,7 @@ var init_CreateTrafficPolicyInstanceCommand = __esm(() => {
33517
33755
  };
33518
33756
  });
33519
33757
 
33520
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyVersionCommand.js
33758
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateTrafficPolicyVersionCommand.js
33521
33759
  var CreateTrafficPolicyVersionCommand;
33522
33760
  var init_CreateTrafficPolicyVersionCommand = __esm(() => {
33523
33761
  init_commandBuilder();
@@ -33526,7 +33764,7 @@ var init_CreateTrafficPolicyVersionCommand = __esm(() => {
33526
33764
  };
33527
33765
  });
33528
33766
 
33529
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateVPCAssociationAuthorizationCommand.js
33767
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/CreateVPCAssociationAuthorizationCommand.js
33530
33768
  var CreateVPCAssociationAuthorizationCommand;
33531
33769
  var init_CreateVPCAssociationAuthorizationCommand = __esm(() => {
33532
33770
  init_commandBuilder();
@@ -33535,7 +33773,7 @@ var init_CreateVPCAssociationAuthorizationCommand = __esm(() => {
33535
33773
  };
33536
33774
  });
33537
33775
 
33538
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeactivateKeySigningKeyCommand.js
33776
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeactivateKeySigningKeyCommand.js
33539
33777
  var DeactivateKeySigningKeyCommand;
33540
33778
  var init_DeactivateKeySigningKeyCommand = __esm(() => {
33541
33779
  init_commandBuilder();
@@ -33544,7 +33782,7 @@ var init_DeactivateKeySigningKeyCommand = __esm(() => {
33544
33782
  };
33545
33783
  });
33546
33784
 
33547
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteCidrCollectionCommand.js
33785
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteCidrCollectionCommand.js
33548
33786
  var DeleteCidrCollectionCommand;
33549
33787
  var init_DeleteCidrCollectionCommand = __esm(() => {
33550
33788
  init_commandBuilder();
@@ -33553,7 +33791,7 @@ var init_DeleteCidrCollectionCommand = __esm(() => {
33553
33791
  };
33554
33792
  });
33555
33793
 
33556
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHealthCheckCommand.js
33794
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHealthCheckCommand.js
33557
33795
  var DeleteHealthCheckCommand;
33558
33796
  var init_DeleteHealthCheckCommand = __esm(() => {
33559
33797
  init_commandBuilder();
@@ -33562,7 +33800,7 @@ var init_DeleteHealthCheckCommand = __esm(() => {
33562
33800
  };
33563
33801
  });
33564
33802
 
33565
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHostedZoneCommand.js
33803
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteHostedZoneCommand.js
33566
33804
  var DeleteHostedZoneCommand;
33567
33805
  var init_DeleteHostedZoneCommand = __esm(() => {
33568
33806
  init_commandBuilder();
@@ -33571,7 +33809,7 @@ var init_DeleteHostedZoneCommand = __esm(() => {
33571
33809
  };
33572
33810
  });
33573
33811
 
33574
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteKeySigningKeyCommand.js
33812
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteKeySigningKeyCommand.js
33575
33813
  var DeleteKeySigningKeyCommand;
33576
33814
  var init_DeleteKeySigningKeyCommand = __esm(() => {
33577
33815
  init_commandBuilder();
@@ -33580,7 +33818,7 @@ var init_DeleteKeySigningKeyCommand = __esm(() => {
33580
33818
  };
33581
33819
  });
33582
33820
 
33583
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteQueryLoggingConfigCommand.js
33821
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteQueryLoggingConfigCommand.js
33584
33822
  var DeleteQueryLoggingConfigCommand;
33585
33823
  var init_DeleteQueryLoggingConfigCommand = __esm(() => {
33586
33824
  init_commandBuilder();
@@ -33589,7 +33827,7 @@ var init_DeleteQueryLoggingConfigCommand = __esm(() => {
33589
33827
  };
33590
33828
  });
33591
33829
 
33592
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteReusableDelegationSetCommand.js
33830
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteReusableDelegationSetCommand.js
33593
33831
  var DeleteReusableDelegationSetCommand;
33594
33832
  var init_DeleteReusableDelegationSetCommand = __esm(() => {
33595
33833
  init_commandBuilder();
@@ -33598,7 +33836,7 @@ var init_DeleteReusableDelegationSetCommand = __esm(() => {
33598
33836
  };
33599
33837
  });
33600
33838
 
33601
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyCommand.js
33839
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyCommand.js
33602
33840
  var DeleteTrafficPolicyCommand;
33603
33841
  var init_DeleteTrafficPolicyCommand = __esm(() => {
33604
33842
  init_commandBuilder();
@@ -33607,7 +33845,7 @@ var init_DeleteTrafficPolicyCommand = __esm(() => {
33607
33845
  };
33608
33846
  });
33609
33847
 
33610
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyInstanceCommand.js
33848
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteTrafficPolicyInstanceCommand.js
33611
33849
  var DeleteTrafficPolicyInstanceCommand;
33612
33850
  var init_DeleteTrafficPolicyInstanceCommand = __esm(() => {
33613
33851
  init_commandBuilder();
@@ -33616,7 +33854,7 @@ var init_DeleteTrafficPolicyInstanceCommand = __esm(() => {
33616
33854
  };
33617
33855
  });
33618
33856
 
33619
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteVPCAssociationAuthorizationCommand.js
33857
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DeleteVPCAssociationAuthorizationCommand.js
33620
33858
  var DeleteVPCAssociationAuthorizationCommand;
33621
33859
  var init_DeleteVPCAssociationAuthorizationCommand = __esm(() => {
33622
33860
  init_commandBuilder();
@@ -33625,7 +33863,7 @@ var init_DeleteVPCAssociationAuthorizationCommand = __esm(() => {
33625
33863
  };
33626
33864
  });
33627
33865
 
33628
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisableHostedZoneDNSSECCommand.js
33866
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisableHostedZoneDNSSECCommand.js
33629
33867
  var DisableHostedZoneDNSSECCommand;
33630
33868
  var init_DisableHostedZoneDNSSECCommand = __esm(() => {
33631
33869
  init_commandBuilder();
@@ -33634,7 +33872,7 @@ var init_DisableHostedZoneDNSSECCommand = __esm(() => {
33634
33872
  };
33635
33873
  });
33636
33874
 
33637
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisassociateVPCFromHostedZoneCommand.js
33875
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/DisassociateVPCFromHostedZoneCommand.js
33638
33876
  var DisassociateVPCFromHostedZoneCommand;
33639
33877
  var init_DisassociateVPCFromHostedZoneCommand = __esm(() => {
33640
33878
  init_commandBuilder();
@@ -33643,7 +33881,7 @@ var init_DisassociateVPCFromHostedZoneCommand = __esm(() => {
33643
33881
  };
33644
33882
  });
33645
33883
 
33646
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/EnableHostedZoneDNSSECCommand.js
33884
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/EnableHostedZoneDNSSECCommand.js
33647
33885
  var EnableHostedZoneDNSSECCommand;
33648
33886
  var init_EnableHostedZoneDNSSECCommand = __esm(() => {
33649
33887
  init_commandBuilder();
@@ -33652,7 +33890,7 @@ var init_EnableHostedZoneDNSSECCommand = __esm(() => {
33652
33890
  };
33653
33891
  });
33654
33892
 
33655
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetAccountLimitCommand.js
33893
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetAccountLimitCommand.js
33656
33894
  var GetAccountLimitCommand;
33657
33895
  var init_GetAccountLimitCommand = __esm(() => {
33658
33896
  init_commandBuilder();
@@ -33661,7 +33899,7 @@ var init_GetAccountLimitCommand = __esm(() => {
33661
33899
  };
33662
33900
  });
33663
33901
 
33664
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetChangeCommand.js
33902
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetChangeCommand.js
33665
33903
  var GetChangeCommand;
33666
33904
  var init_GetChangeCommand = __esm(() => {
33667
33905
  init_commandBuilder();
@@ -33670,7 +33908,7 @@ var init_GetChangeCommand = __esm(() => {
33670
33908
  };
33671
33909
  });
33672
33910
 
33673
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetCheckerIpRangesCommand.js
33911
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetCheckerIpRangesCommand.js
33674
33912
  var GetCheckerIpRangesCommand;
33675
33913
  var init_GetCheckerIpRangesCommand = __esm(() => {
33676
33914
  init_commandBuilder();
@@ -33679,7 +33917,7 @@ var init_GetCheckerIpRangesCommand = __esm(() => {
33679
33917
  };
33680
33918
  });
33681
33919
 
33682
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetDNSSECCommand.js
33920
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetDNSSECCommand.js
33683
33921
  var GetDNSSECCommand;
33684
33922
  var init_GetDNSSECCommand = __esm(() => {
33685
33923
  init_commandBuilder();
@@ -33688,7 +33926,7 @@ var init_GetDNSSECCommand = __esm(() => {
33688
33926
  };
33689
33927
  });
33690
33928
 
33691
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetGeoLocationCommand.js
33929
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetGeoLocationCommand.js
33692
33930
  var GetGeoLocationCommand;
33693
33931
  var init_GetGeoLocationCommand = __esm(() => {
33694
33932
  init_commandBuilder();
@@ -33697,7 +33935,7 @@ var init_GetGeoLocationCommand = __esm(() => {
33697
33935
  };
33698
33936
  });
33699
33937
 
33700
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCommand.js
33938
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCommand.js
33701
33939
  var GetHealthCheckCommand;
33702
33940
  var init_GetHealthCheckCommand = __esm(() => {
33703
33941
  init_commandBuilder();
@@ -33706,7 +33944,7 @@ var init_GetHealthCheckCommand = __esm(() => {
33706
33944
  };
33707
33945
  });
33708
33946
 
33709
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCountCommand.js
33947
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckCountCommand.js
33710
33948
  var GetHealthCheckCountCommand;
33711
33949
  var init_GetHealthCheckCountCommand = __esm(() => {
33712
33950
  init_commandBuilder();
@@ -33715,7 +33953,7 @@ var init_GetHealthCheckCountCommand = __esm(() => {
33715
33953
  };
33716
33954
  });
33717
33955
 
33718
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckLastFailureReasonCommand.js
33956
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckLastFailureReasonCommand.js
33719
33957
  var GetHealthCheckLastFailureReasonCommand;
33720
33958
  var init_GetHealthCheckLastFailureReasonCommand = __esm(() => {
33721
33959
  init_commandBuilder();
@@ -33724,7 +33962,7 @@ var init_GetHealthCheckLastFailureReasonCommand = __esm(() => {
33724
33962
  };
33725
33963
  });
33726
33964
 
33727
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckStatusCommand.js
33965
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHealthCheckStatusCommand.js
33728
33966
  var GetHealthCheckStatusCommand;
33729
33967
  var init_GetHealthCheckStatusCommand = __esm(() => {
33730
33968
  init_commandBuilder();
@@ -33733,7 +33971,7 @@ var init_GetHealthCheckStatusCommand = __esm(() => {
33733
33971
  };
33734
33972
  });
33735
33973
 
33736
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCommand.js
33974
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCommand.js
33737
33975
  var GetHostedZoneCommand;
33738
33976
  var init_GetHostedZoneCommand = __esm(() => {
33739
33977
  init_commandBuilder();
@@ -33742,7 +33980,7 @@ var init_GetHostedZoneCommand = __esm(() => {
33742
33980
  };
33743
33981
  });
33744
33982
 
33745
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCountCommand.js
33983
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneCountCommand.js
33746
33984
  var GetHostedZoneCountCommand;
33747
33985
  var init_GetHostedZoneCountCommand = __esm(() => {
33748
33986
  init_commandBuilder();
@@ -33751,7 +33989,7 @@ var init_GetHostedZoneCountCommand = __esm(() => {
33751
33989
  };
33752
33990
  });
33753
33991
 
33754
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneLimitCommand.js
33992
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetHostedZoneLimitCommand.js
33755
33993
  var GetHostedZoneLimitCommand;
33756
33994
  var init_GetHostedZoneLimitCommand = __esm(() => {
33757
33995
  init_commandBuilder();
@@ -33760,7 +33998,7 @@ var init_GetHostedZoneLimitCommand = __esm(() => {
33760
33998
  };
33761
33999
  });
33762
34000
 
33763
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetQueryLoggingConfigCommand.js
34001
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetQueryLoggingConfigCommand.js
33764
34002
  var GetQueryLoggingConfigCommand;
33765
34003
  var init_GetQueryLoggingConfigCommand = __esm(() => {
33766
34004
  init_commandBuilder();
@@ -33769,7 +34007,7 @@ var init_GetQueryLoggingConfigCommand = __esm(() => {
33769
34007
  };
33770
34008
  });
33771
34009
 
33772
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetCommand.js
34010
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetCommand.js
33773
34011
  var GetReusableDelegationSetCommand;
33774
34012
  var init_GetReusableDelegationSetCommand = __esm(() => {
33775
34013
  init_commandBuilder();
@@ -33778,7 +34016,7 @@ var init_GetReusableDelegationSetCommand = __esm(() => {
33778
34016
  };
33779
34017
  });
33780
34018
 
33781
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetLimitCommand.js
34019
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetReusableDelegationSetLimitCommand.js
33782
34020
  var GetReusableDelegationSetLimitCommand;
33783
34021
  var init_GetReusableDelegationSetLimitCommand = __esm(() => {
33784
34022
  init_commandBuilder();
@@ -33787,7 +34025,7 @@ var init_GetReusableDelegationSetLimitCommand = __esm(() => {
33787
34025
  };
33788
34026
  });
33789
34027
 
33790
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyCommand.js
34028
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyCommand.js
33791
34029
  var GetTrafficPolicyCommand;
33792
34030
  var init_GetTrafficPolicyCommand = __esm(() => {
33793
34031
  init_commandBuilder();
@@ -33796,7 +34034,7 @@ var init_GetTrafficPolicyCommand = __esm(() => {
33796
34034
  };
33797
34035
  });
33798
34036
 
33799
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCommand.js
34037
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCommand.js
33800
34038
  var GetTrafficPolicyInstanceCommand;
33801
34039
  var init_GetTrafficPolicyInstanceCommand = __esm(() => {
33802
34040
  init_commandBuilder();
@@ -33805,7 +34043,7 @@ var init_GetTrafficPolicyInstanceCommand = __esm(() => {
33805
34043
  };
33806
34044
  });
33807
34045
 
33808
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCountCommand.js
34046
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/GetTrafficPolicyInstanceCountCommand.js
33809
34047
  var GetTrafficPolicyInstanceCountCommand;
33810
34048
  var init_GetTrafficPolicyInstanceCountCommand = __esm(() => {
33811
34049
  init_commandBuilder();
@@ -33814,7 +34052,7 @@ var init_GetTrafficPolicyInstanceCountCommand = __esm(() => {
33814
34052
  };
33815
34053
  });
33816
34054
 
33817
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrBlocksCommand.js
34055
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrBlocksCommand.js
33818
34056
  var ListCidrBlocksCommand;
33819
34057
  var init_ListCidrBlocksCommand = __esm(() => {
33820
34058
  init_commandBuilder();
@@ -33823,7 +34061,7 @@ var init_ListCidrBlocksCommand = __esm(() => {
33823
34061
  };
33824
34062
  });
33825
34063
 
33826
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrCollectionsCommand.js
34064
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrCollectionsCommand.js
33827
34065
  var ListCidrCollectionsCommand;
33828
34066
  var init_ListCidrCollectionsCommand = __esm(() => {
33829
34067
  init_commandBuilder();
@@ -33832,7 +34070,7 @@ var init_ListCidrCollectionsCommand = __esm(() => {
33832
34070
  };
33833
34071
  });
33834
34072
 
33835
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrLocationsCommand.js
34073
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListCidrLocationsCommand.js
33836
34074
  var ListCidrLocationsCommand;
33837
34075
  var init_ListCidrLocationsCommand = __esm(() => {
33838
34076
  init_commandBuilder();
@@ -33841,7 +34079,7 @@ var init_ListCidrLocationsCommand = __esm(() => {
33841
34079
  };
33842
34080
  });
33843
34081
 
33844
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListGeoLocationsCommand.js
34082
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListGeoLocationsCommand.js
33845
34083
  var ListGeoLocationsCommand;
33846
34084
  var init_ListGeoLocationsCommand = __esm(() => {
33847
34085
  init_commandBuilder();
@@ -33850,7 +34088,7 @@ var init_ListGeoLocationsCommand = __esm(() => {
33850
34088
  };
33851
34089
  });
33852
34090
 
33853
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHealthChecksCommand.js
34091
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHealthChecksCommand.js
33854
34092
  var ListHealthChecksCommand;
33855
34093
  var init_ListHealthChecksCommand = __esm(() => {
33856
34094
  init_commandBuilder();
@@ -33859,7 +34097,7 @@ var init_ListHealthChecksCommand = __esm(() => {
33859
34097
  };
33860
34098
  });
33861
34099
 
33862
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByNameCommand.js
34100
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByNameCommand.js
33863
34101
  var ListHostedZonesByNameCommand;
33864
34102
  var init_ListHostedZonesByNameCommand = __esm(() => {
33865
34103
  init_commandBuilder();
@@ -33868,7 +34106,7 @@ var init_ListHostedZonesByNameCommand = __esm(() => {
33868
34106
  };
33869
34107
  });
33870
34108
 
33871
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByVPCCommand.js
34109
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesByVPCCommand.js
33872
34110
  var ListHostedZonesByVPCCommand;
33873
34111
  var init_ListHostedZonesByVPCCommand = __esm(() => {
33874
34112
  init_commandBuilder();
@@ -33877,7 +34115,7 @@ var init_ListHostedZonesByVPCCommand = __esm(() => {
33877
34115
  };
33878
34116
  });
33879
34117
 
33880
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesCommand.js
34118
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListHostedZonesCommand.js
33881
34119
  var ListHostedZonesCommand;
33882
34120
  var init_ListHostedZonesCommand = __esm(() => {
33883
34121
  init_commandBuilder();
@@ -33886,7 +34124,7 @@ var init_ListHostedZonesCommand = __esm(() => {
33886
34124
  };
33887
34125
  });
33888
34126
 
33889
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListQueryLoggingConfigsCommand.js
34127
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListQueryLoggingConfigsCommand.js
33890
34128
  var ListQueryLoggingConfigsCommand;
33891
34129
  var init_ListQueryLoggingConfigsCommand = __esm(() => {
33892
34130
  init_commandBuilder();
@@ -33895,7 +34133,7 @@ var init_ListQueryLoggingConfigsCommand = __esm(() => {
33895
34133
  };
33896
34134
  });
33897
34135
 
33898
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListResourceRecordSetsCommand.js
34136
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListResourceRecordSetsCommand.js
33899
34137
  var ListResourceRecordSetsCommand;
33900
34138
  var init_ListResourceRecordSetsCommand = __esm(() => {
33901
34139
  init_commandBuilder();
@@ -33904,7 +34142,7 @@ var init_ListResourceRecordSetsCommand = __esm(() => {
33904
34142
  };
33905
34143
  });
33906
34144
 
33907
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListReusableDelegationSetsCommand.js
34145
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListReusableDelegationSetsCommand.js
33908
34146
  var ListReusableDelegationSetsCommand;
33909
34147
  var init_ListReusableDelegationSetsCommand = __esm(() => {
33910
34148
  init_commandBuilder();
@@ -33913,7 +34151,7 @@ var init_ListReusableDelegationSetsCommand = __esm(() => {
33913
34151
  };
33914
34152
  });
33915
34153
 
33916
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourceCommand.js
34154
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourceCommand.js
33917
34155
  var ListTagsForResourceCommand;
33918
34156
  var init_ListTagsForResourceCommand = __esm(() => {
33919
34157
  init_commandBuilder();
@@ -33922,7 +34160,7 @@ var init_ListTagsForResourceCommand = __esm(() => {
33922
34160
  };
33923
34161
  });
33924
34162
 
33925
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourcesCommand.js
34163
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTagsForResourcesCommand.js
33926
34164
  var ListTagsForResourcesCommand;
33927
34165
  var init_ListTagsForResourcesCommand = __esm(() => {
33928
34166
  init_commandBuilder();
@@ -33931,7 +34169,7 @@ var init_ListTagsForResourcesCommand = __esm(() => {
33931
34169
  };
33932
34170
  });
33933
34171
 
33934
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPoliciesCommand.js
34172
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPoliciesCommand.js
33935
34173
  var ListTrafficPoliciesCommand;
33936
34174
  var init_ListTrafficPoliciesCommand = __esm(() => {
33937
34175
  init_commandBuilder();
@@ -33940,7 +34178,7 @@ var init_ListTrafficPoliciesCommand = __esm(() => {
33940
34178
  };
33941
34179
  });
33942
34180
 
33943
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByHostedZoneCommand.js
34181
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByHostedZoneCommand.js
33944
34182
  var ListTrafficPolicyInstancesByHostedZoneCommand;
33945
34183
  var init_ListTrafficPolicyInstancesByHostedZoneCommand = __esm(() => {
33946
34184
  init_commandBuilder();
@@ -33949,7 +34187,7 @@ var init_ListTrafficPolicyInstancesByHostedZoneCommand = __esm(() => {
33949
34187
  };
33950
34188
  });
33951
34189
 
33952
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByPolicyCommand.js
34190
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesByPolicyCommand.js
33953
34191
  var ListTrafficPolicyInstancesByPolicyCommand;
33954
34192
  var init_ListTrafficPolicyInstancesByPolicyCommand = __esm(() => {
33955
34193
  init_commandBuilder();
@@ -33958,7 +34196,7 @@ var init_ListTrafficPolicyInstancesByPolicyCommand = __esm(() => {
33958
34196
  };
33959
34197
  });
33960
34198
 
33961
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesCommand.js
34199
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyInstancesCommand.js
33962
34200
  var ListTrafficPolicyInstancesCommand;
33963
34201
  var init_ListTrafficPolicyInstancesCommand = __esm(() => {
33964
34202
  init_commandBuilder();
@@ -33967,7 +34205,7 @@ var init_ListTrafficPolicyInstancesCommand = __esm(() => {
33967
34205
  };
33968
34206
  });
33969
34207
 
33970
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyVersionsCommand.js
34208
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListTrafficPolicyVersionsCommand.js
33971
34209
  var ListTrafficPolicyVersionsCommand;
33972
34210
  var init_ListTrafficPolicyVersionsCommand = __esm(() => {
33973
34211
  init_commandBuilder();
@@ -33976,7 +34214,7 @@ var init_ListTrafficPolicyVersionsCommand = __esm(() => {
33976
34214
  };
33977
34215
  });
33978
34216
 
33979
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListVPCAssociationAuthorizationsCommand.js
34217
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/ListVPCAssociationAuthorizationsCommand.js
33980
34218
  var ListVPCAssociationAuthorizationsCommand;
33981
34219
  var init_ListVPCAssociationAuthorizationsCommand = __esm(() => {
33982
34220
  init_commandBuilder();
@@ -33985,7 +34223,7 @@ var init_ListVPCAssociationAuthorizationsCommand = __esm(() => {
33985
34223
  };
33986
34224
  });
33987
34225
 
33988
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/TestDNSAnswerCommand.js
34226
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/TestDNSAnswerCommand.js
33989
34227
  var TestDNSAnswerCommand;
33990
34228
  var init_TestDNSAnswerCommand = __esm(() => {
33991
34229
  init_commandBuilder();
@@ -33994,7 +34232,7 @@ var init_TestDNSAnswerCommand = __esm(() => {
33994
34232
  };
33995
34233
  });
33996
34234
 
33997
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHealthCheckCommand.js
34235
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHealthCheckCommand.js
33998
34236
  var UpdateHealthCheckCommand;
33999
34237
  var init_UpdateHealthCheckCommand = __esm(() => {
34000
34238
  init_commandBuilder();
@@ -34003,7 +34241,7 @@ var init_UpdateHealthCheckCommand = __esm(() => {
34003
34241
  };
34004
34242
  });
34005
34243
 
34006
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneCommentCommand.js
34244
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneCommentCommand.js
34007
34245
  var UpdateHostedZoneCommentCommand;
34008
34246
  var init_UpdateHostedZoneCommentCommand = __esm(() => {
34009
34247
  init_commandBuilder();
@@ -34012,7 +34250,7 @@ var init_UpdateHostedZoneCommentCommand = __esm(() => {
34012
34250
  };
34013
34251
  });
34014
34252
 
34015
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneFeaturesCommand.js
34253
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateHostedZoneFeaturesCommand.js
34016
34254
  var UpdateHostedZoneFeaturesCommand;
34017
34255
  var init_UpdateHostedZoneFeaturesCommand = __esm(() => {
34018
34256
  init_commandBuilder();
@@ -34021,7 +34259,7 @@ var init_UpdateHostedZoneFeaturesCommand = __esm(() => {
34021
34259
  };
34022
34260
  });
34023
34261
 
34024
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyCommentCommand.js
34262
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyCommentCommand.js
34025
34263
  var UpdateTrafficPolicyCommentCommand;
34026
34264
  var init_UpdateTrafficPolicyCommentCommand = __esm(() => {
34027
34265
  init_commandBuilder();
@@ -34030,7 +34268,7 @@ var init_UpdateTrafficPolicyCommentCommand = __esm(() => {
34030
34268
  };
34031
34269
  });
34032
34270
 
34033
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyInstanceCommand.js
34271
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/UpdateTrafficPolicyInstanceCommand.js
34034
34272
  var UpdateTrafficPolicyInstanceCommand;
34035
34273
  var init_UpdateTrafficPolicyInstanceCommand = __esm(() => {
34036
34274
  init_commandBuilder();
@@ -34039,7 +34277,7 @@ var init_UpdateTrafficPolicyInstanceCommand = __esm(() => {
34039
34277
  };
34040
34278
  });
34041
34279
 
34042
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrBlocksPaginator.js
34280
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrBlocksPaginator.js
34043
34281
  var import_core2, paginateListCidrBlocks;
34044
34282
  var init_ListCidrBlocksPaginator = __esm(() => {
34045
34283
  init_ListCidrBlocksCommand();
@@ -34048,7 +34286,7 @@ var init_ListCidrBlocksPaginator = __esm(() => {
34048
34286
  paginateListCidrBlocks = import_core2.createPaginator(Route53Client, ListCidrBlocksCommand, "NextToken", "NextToken", "MaxResults");
34049
34287
  });
34050
34288
 
34051
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrCollectionsPaginator.js
34289
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrCollectionsPaginator.js
34052
34290
  var import_core3, paginateListCidrCollections;
34053
34291
  var init_ListCidrCollectionsPaginator = __esm(() => {
34054
34292
  init_ListCidrCollectionsCommand();
@@ -34057,7 +34295,7 @@ var init_ListCidrCollectionsPaginator = __esm(() => {
34057
34295
  paginateListCidrCollections = import_core3.createPaginator(Route53Client, ListCidrCollectionsCommand, "NextToken", "NextToken", "MaxResults");
34058
34296
  });
34059
34297
 
34060
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrLocationsPaginator.js
34298
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListCidrLocationsPaginator.js
34061
34299
  var import_core4, paginateListCidrLocations;
34062
34300
  var init_ListCidrLocationsPaginator = __esm(() => {
34063
34301
  init_ListCidrLocationsCommand();
@@ -34066,7 +34304,7 @@ var init_ListCidrLocationsPaginator = __esm(() => {
34066
34304
  paginateListCidrLocations = import_core4.createPaginator(Route53Client, ListCidrLocationsCommand, "NextToken", "NextToken", "MaxResults");
34067
34305
  });
34068
34306
 
34069
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHealthChecksPaginator.js
34307
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHealthChecksPaginator.js
34070
34308
  var import_core5, paginateListHealthChecks;
34071
34309
  var init_ListHealthChecksPaginator = __esm(() => {
34072
34310
  init_ListHealthChecksCommand();
@@ -34075,7 +34313,7 @@ var init_ListHealthChecksPaginator = __esm(() => {
34075
34313
  paginateListHealthChecks = import_core5.createPaginator(Route53Client, ListHealthChecksCommand, "Marker", "NextMarker", "MaxItems");
34076
34314
  });
34077
34315
 
34078
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHostedZonesPaginator.js
34316
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListHostedZonesPaginator.js
34079
34317
  var import_core6, paginateListHostedZones;
34080
34318
  var init_ListHostedZonesPaginator = __esm(() => {
34081
34319
  init_ListHostedZonesCommand();
@@ -34084,7 +34322,7 @@ var init_ListHostedZonesPaginator = __esm(() => {
34084
34322
  paginateListHostedZones = import_core6.createPaginator(Route53Client, ListHostedZonesCommand, "Marker", "NextMarker", "MaxItems");
34085
34323
  });
34086
34324
 
34087
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListQueryLoggingConfigsPaginator.js
34325
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/ListQueryLoggingConfigsPaginator.js
34088
34326
  var import_core7, paginateListQueryLoggingConfigs;
34089
34327
  var init_ListQueryLoggingConfigsPaginator = __esm(() => {
34090
34328
  init_ListQueryLoggingConfigsCommand();
@@ -34093,7 +34331,7 @@ var init_ListQueryLoggingConfigsPaginator = __esm(() => {
34093
34331
  paginateListQueryLoggingConfigs = import_core7.createPaginator(Route53Client, ListQueryLoggingConfigsCommand, "NextToken", "NextToken", "MaxResults");
34094
34332
  });
34095
34333
 
34096
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/waiters/waitForResourceRecordSetsChanged.js
34334
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/waiters/waitForResourceRecordSetsChanged.js
34097
34335
  var import_client26, checkState = async (client, input) => {
34098
34336
  let reason;
34099
34337
  try {
@@ -34121,7 +34359,7 @@ var init_waitForResourceRecordSetsChanged = __esm(() => {
34121
34359
  import_client26 = __toESM(require_client(), 1);
34122
34360
  });
34123
34361
 
34124
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/Route53.js
34362
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/Route53.js
34125
34363
  var import_client27, commands2, paginators, waiters, Route53;
34126
34364
  var init_Route53 = __esm(() => {
34127
34365
  init_ActivateKeySigningKeyCommand();
@@ -34293,7 +34531,7 @@ var init_Route53 = __esm(() => {
34293
34531
  import_client27.createAggregatedClient(commands2, Route53, { paginators, waiters });
34294
34532
  });
34295
34533
 
34296
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/index.js
34534
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/commands/index.js
34297
34535
  var init_commands = __esm(() => {
34298
34536
  init_ActivateKeySigningKeyCommand();
34299
34537
  init_AssociateVPCWithHostedZoneCommand();
@@ -34368,10 +34606,10 @@ var init_commands = __esm(() => {
34368
34606
  init_UpdateTrafficPolicyInstanceCommand();
34369
34607
  });
34370
34608
 
34371
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/Interfaces.js
34609
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/Interfaces.js
34372
34610
  var init_Interfaces = () => {};
34373
34611
 
34374
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/index.js
34612
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/pagination/index.js
34375
34613
  var init_pagination = __esm(() => {
34376
34614
  init_Interfaces();
34377
34615
  init_ListCidrBlocksPaginator();
@@ -34382,31 +34620,31 @@ var init_pagination = __esm(() => {
34382
34620
  init_ListQueryLoggingConfigsPaginator();
34383
34621
  });
34384
34622
 
34385
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/waiters/index.js
34623
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/waiters/index.js
34386
34624
  var init_waiters = __esm(() => {
34387
34625
  init_waitForResourceRecordSetsChanged();
34388
34626
  });
34389
34627
 
34390
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/models/enums.js
34628
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/enums.js
34391
34629
  var init_enums = () => {};
34392
34630
 
34393
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/models/models_0.js
34631
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/models/models_0.js
34394
34632
  var init_models_0 = () => {};
34395
34633
 
34396
- // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1106.0/node_modules/@aws-sdk/client-route-53/dist-es/index.js
34634
+ // ../../node_modules/.bun/@aws-sdk+client-route-53@3.1112.0/node_modules/@aws-sdk/client-route-53/dist-es/index.js
34397
34635
  var init_dist_es12 = __esm(() => {
34398
34636
  init_Route53Client();
34399
34637
  init_Route53();
34400
34638
  init_commands();
34401
- init_schemas_0();
34402
34639
  init_pagination();
34403
34640
  init_waiters();
34641
+ init_schemas_0();
34404
34642
  init_enums();
34405
34643
  init_errors();
34406
34644
  init_models_0();
34407
34645
  });
34408
34646
 
34409
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthSchemeProvider.js
34647
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthSchemeProvider.js
34410
34648
  function createAwsAuthSigv4HttpAuthOption3(authParameters) {
34411
34649
  return {
34412
34650
  schemeId: "aws.auth#sigv4",
@@ -34448,7 +34686,7 @@ var init_httpAuthSchemeProvider2 = __esm(() => {
34448
34686
  import_client29 = __toESM(require_client(), 1);
34449
34687
  });
34450
34688
 
34451
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/EndpointParameters.js
34689
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/EndpointParameters.js
34452
34690
  var resolveClientEndpointParameters3 = (options) => {
34453
34691
  return Object.assign(options, {
34454
34692
  useDualstackEndpoint: options.useDualstackEndpoint ?? false,
@@ -34465,12 +34703,12 @@ var init_EndpointParameters2 = __esm(() => {
34465
34703
  };
34466
34704
  });
34467
34705
 
34468
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/package.json
34706
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/package.json
34469
34707
  var package_default2;
34470
34708
  var init_package2 = __esm(() => {
34471
34709
  package_default2 = {
34472
34710
  name: "@aws-sdk/client-route-53-domains",
34473
- version: "3.1106.0",
34711
+ version: "3.1112.0",
34474
34712
  description: "AWS SDK for JavaScript Route 53 Domains Client for Node.js, Browser and React Native",
34475
34713
  homepage: "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-route-53-domains",
34476
34714
  license: "Apache-2.0",
@@ -34515,12 +34753,12 @@ var init_package2 = __esm(() => {
34515
34753
  "generate:client": "node ../../scripts/generate-clients/single-service",
34516
34754
  "test:e2e": "yarn g:vitest run -c vitest.config.e2e.mts",
34517
34755
  "test:e2e:watch": "yarn g:vitest watch -c vitest.config.e2e.mts",
34518
- "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
34756
+ "test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
34519
34757
  },
34520
34758
  dependencies: {
34521
- "@aws-sdk/core": "^3.977.6",
34522
- "@aws-sdk/credential-provider-node": "^3.972.78",
34523
- "@aws-sdk/types": "^3.974.2",
34759
+ "@aws-sdk/core": "^3.977.8",
34760
+ "@aws-sdk/credential-provider-node": "^3.972.80",
34761
+ "@aws-sdk/types": "^3.974.4",
34524
34762
  "@smithy/core": "^3.31.1",
34525
34763
  "@smithy/fetch-http-handler": "^5.6.13",
34526
34764
  "@smithy/node-http-handler": "^4.9.13",
@@ -34533,7 +34771,7 @@ var init_package2 = __esm(() => {
34533
34771
  concurrently: "7.0.0",
34534
34772
  "downlevel-dts": "0.10.1",
34535
34773
  premove: "4.0.0",
34536
- typescript: "~5.8.3"
34774
+ typescript: "~7.0.2"
34537
34775
  },
34538
34776
  engines: {
34539
34777
  node: ">=20.0.0"
@@ -34541,7 +34779,7 @@ var init_package2 = __esm(() => {
34541
34779
  };
34542
34780
  });
34543
34781
 
34544
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/bdd.js
34782
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/bdd.js
34545
34783
  var import_endpoints5, k3 = "ref", a3 = -1, b3 = true, c3 = "isSet", d3 = "PartitionResult", e3 = "booleanEquals", f3 = "getAttr", g3, h3, i3, j3, _data3, root3 = 2, r3 = 1e8, nodes3, bdd3;
34546
34784
  var init_bdd2 = __esm(() => {
34547
34785
  import_endpoints5 = __toESM(require_endpoints(), 1);
@@ -34618,7 +34856,7 @@ var init_bdd2 = __esm(() => {
34618
34856
  bdd3 = import_endpoints5.BinaryDecisionDiagram.from(nodes3, root3, _data3.conditions, _data3.results);
34619
34857
  });
34620
34858
 
34621
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/endpointResolver.js
34859
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/endpoint/endpointResolver.js
34622
34860
  var import_client30, import_endpoints6, cache3, defaultEndpointResolver3 = (endpointParams, context = {}) => {
34623
34861
  return cache3.get(endpointParams, () => import_endpoints6.decideEndpoint(bdd3, {
34624
34862
  endpointParams,
@@ -34636,7 +34874,7 @@ var init_endpointResolver2 = __esm(() => {
34636
34874
  import_endpoints6.customEndpointFunctions.aws = import_client30.awsEndpointFunctions;
34637
34875
  });
34638
34876
 
34639
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/Route53DomainsServiceException.js
34877
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/Route53DomainsServiceException.js
34640
34878
  var import_client31, Route53DomainsServiceException;
34641
34879
  var init_Route53DomainsServiceException = __esm(() => {
34642
34880
  import_client31 = __toESM(require_client(), 1);
@@ -34648,7 +34886,7 @@ var init_Route53DomainsServiceException = __esm(() => {
34648
34886
  };
34649
34887
  });
34650
34888
 
34651
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/errors.js
34889
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/errors.js
34652
34890
  var DomainLimitExceeded, InvalidInput2, OperationLimitExceeded, UnsupportedTLD, DnssecLimitExceeded, DuplicateRequest, TLDRulesViolation, TLDInMaintenance;
34653
34891
  var init_errors2 = __esm(() => {
34654
34892
  init_Route53DomainsServiceException();
@@ -34754,7 +34992,7 @@ var init_errors2 = __esm(() => {
34754
34992
  };
34755
34993
  });
34756
34994
 
34757
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/schemas/schemas_0.js
34995
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/schemas/schemas_0.js
34758
34996
  var import_schema3, _A2 = "Availability", _AC = "AuthCode", _ACE = "AbuseContactEmail", _ACP = "AbuseContactPhone", _ACd = "AdminContact", _ADSTD = "AssociateDelegationSignerToDomain", _ADSTDR = "AssociateDelegationSignerToDomainRequest", _ADSTDRs = "AssociateDelegationSignerToDomainResponse", _ADTFAAA = "AcceptDomainTransferFromAnotherAwsAccount", _ADTFAAAR = "AcceptDomainTransferFromAnotherAwsAccountRequest", _ADTFAAARc = "AcceptDomainTransferFromAnotherAwsAccountResponse", _AI2 = "AccountId", _AL2 = "AddressLine", _ALd = "AddressLine1", _ALdd = "AddressLine2", _AP = "AdminPrivacy", _AR2 = "AutoRenew", _Al = "Algorithm", _BC = "BillingContact", _BD = "BillDate", _BP = "BillingPrivacy", _BR = "BillingRecord", _BRi = "BillingRecords", _C2 = "City", _CC2 = "CountryCode", _CD2 = "ContactDetail", _CDA = "CheckDomainAvailability", _CDAR = "CheckDomainAvailabilityRequest", _CDARh = "CheckDomainAvailabilityResponse", _CDT = "CheckDomainTransferability", _CDTR = "CheckDomainTransferabilityRequest", _CDTRh = "CheckDomainTransferabilityResponse", _CDTTAAA = "CancelDomainTransferToAnotherAwsAccount", _CDTTAAAR = "CancelDomainTransferToAnotherAwsAccountRequest", _CDTTAAARa = "CancelDomainTransferToAnotherAwsAccountResponse", _CDr = "CreationDate", _CEY = "CurrentExpiryYear", _CN2 = "ContactName", _CNo2 = "ContactNumber", _COP = "ChangeOwnershipPrice", _CT2 = "ContactType", _Co2 = "Consent", _Cu = "Currency", _D2 = "Digest", _DAC = "DomainAuthCode", _DD = "DeleteDomain", _DDAR = "DisableDomainAutoRenew", _DDARR = "DisableDomainAutoRenewRequest", _DDARRi = "DisableDomainAutoRenewResponse", _DDR = "DeleteDomainRequest", _DDRe = "DeleteDomainResponse", _DDSFD = "DisassociateDelegationSignerFromDomain", _DDSFDR = "DisassociateDelegationSignerFromDomainRequest", _DDSFDRi = "DisassociateDelegationSignerFromDomainResponse", _DDTL = "DisableDomainTransferLock", _DDTLR = "DisableDomainTransferLockRequest", _DDTLRi = "DisableDomainTransferLockResponse", _DIY = "DurationInYears", _DK = "DnssecKey", _DKL = "DnssecKeyList", _DKn = "DnssecKeys", _DLE = "DnssecLimitExceeded", _DLEo = "DomainLimitExceeded", _DN = "DomainName", _DP = "DomainPrice", _DPL = "DomainPriceList", _DR = "DuplicateRequest", _DS2 = "DomainSuggestion", _DSA = "DnssecSigningAttributes", _DSL = "DomainSuggestionsList", _DSLo = "DomainSummaryList", _DSn = "DnsSec", _DSo = "DomainSummary", _DT = "DigestType", _DTFD = "DeleteTagsForDomain", _DTFDR = "DeleteTagsForDomainRequest", _DTFDRe = "DeleteTagsForDomainResponse", _DTo = "DomainTransferability", _Do2 = "Domains", _E = "Email", _ED = "ExpirationDate", _EDAR = "EnableDomainAutoRenew", _EDARR = "EnableDomainAutoRenewRequest", _EDARRn = "EnableDomainAutoRenewResponse", _EDTL = "EnableDomainTransferLock", _EDTLR = "EnableDomainTransferLockRequest", _EDTLRn = "EnableDomainTransferLockResponse", _EP2 = "ExtraParams", _EPL = "ExtraParamList", _EPV = "ExtraParamValue", _EPx = "ExtraParam", _En = "End", _Ex = "Expiry", _F2 = "Fax", _FC = "FilterCondition", _FCi = "FilterConditions", _FIAK = "FIAuthKey", _FN = "FirstName", _Fl2 = "Flags", _GCRS = "GetContactReachabilityStatus", _GCRSR = "GetContactReachabilityStatusRequest", _GCRSRe = "GetContactReachabilityStatusResponse", _GDD = "GetDomainDetail", _GDDR = "GetDomainDetailRequest", _GDDRe = "GetDomainDetailResponse", _GDS = "GetDomainSuggestions", _GDSR = "GetDomainSuggestionsRequest", _GDSRe = "GetDomainSuggestionsResponse", _GI = "GlueIps", _GOD = "GetOperationDetail", _GODR = "GetOperationDetailRequest", _GODRe = "GetOperationDetailResponse", _I2 = "Id", _II2 = "InvalidInput", _IIn = "InvoiceId", _ILC = "IdnLangCode", _K2 = "Key", _KT2 = "KeyTag", _LD = "ListDomains", _LDR = "ListDomainsRequest", _LDRi = "ListDomainsResponse", _LN2 = "LastName", _LO = "ListOperations", _LOR = "ListOperationsRequest", _LORi = "ListOperationsResponse", _LP = "ListPrices", _LPR = "ListPricesRequest", _LPRi = "ListPricesResponse", _LTFD = "ListTagsForDomain", _LTFDR = "ListTagsForDomainRequest", _LTFDRi = "ListTagsForDomainResponse", _LUD = "LastUpdatedDate", _M2 = "Message", _MI2 = "MaxItems", _MP = "MaxPrice", _Ma2 = "Marker", _N2 = "Name", _NL = "NameserverList", _NPM = "NextPageMarker", _Na2 = "Nameservers", _Nam2 = "Nameserver", _O2 = "Operation", _OA2 = "OnlyAvailable", _OI = "OperationId", _OLE = "OperationLimitExceeded", _ON = "OrganizationName", _OS2 = "OperationSummary", _OSL = "OperationSummaryList", _Op = "Operator", _Ope = "Operations", _P2 = "Password", _PD = "PushDomain", _PDR = "PushDomainRequest", _PK2 = "PublicKey", _PN = "PhoneNumber", _PPAC = "PrivacyProtectAdminContact", _PPBC = "PrivacyProtectBillingContact", _PPRC = "PrivacyProtectRegistrantContact", _PPTC = "PrivacyProtectTechContact", _PWC = "PriceWithCurrency", _Pr2 = "Price", _Pri = "Prices", _R2 = "Reseller", _RC3 = "RegistrantContact", _RCRE = "ResendContactReachabilityEmail", _RCRER = "ResendContactReachabilityEmailRequest", _RCRERe = "ResendContactReachabilityEmailResponse", _RD2 = "RegisterDomain", _RDAC = "RetrieveDomainAuthCode", _RDACR = "RetrieveDomainAuthCodeRequest", _RDACRe = "RetrieveDomainAuthCodeResponse", _RDI = "RegistryDomainId", _RDR = "RegisterDomainRequest", _RDRe = "RegisterDomainResponse", _RDRen = "RenewDomainRequest", _RDRene = "RenewDomainResponse", _RDTFAAA = "RejectDomainTransferFromAnotherAwsAccount", _RDTFAAAR = "RejectDomainTransferFromAnotherAwsAccountRequest", _RDTFAAARe = "RejectDomainTransferFromAnotherAwsAccountResponse", _RDe = "RenewDomain", _RN2 = "RegistrarName", _ROA = "ResendOperationAuthorization", _ROAR = "ResendOperationAuthorizationRequest", _RP2 = "RegistrationPrice", _RPe = "RenewalPrice", _RPeg = "RegistrantPrivacy", _RPes = "RestorationPrice", _RU = "RegistrarUrl", _S2 = "State", _SA2 = "SigningAttributes", _SB = "SortBy", _SC2 = "SuggestionCount", _SCo = "SortCondition", _SD = "SubmittedDate", _SF = "StatusFlag", _SL = "StatusList", _SLu = "SuggestionsList", _SO = "SortOrder", _SS2 = "SubmittedSince", _St2 = "Status", _Sta2 = "Start", _T2 = "Transferability", _TC = "TechContact", _TD = "TransferDomain", _TDR = "TransferDomainRequest", _TDRr = "TransferDomainResponse", _TDTAAA = "TransferDomainToAnotherAwsAccount", _TDTAAAR = "TransferDomainToAnotherAwsAccountRequest", _TDTAAARr = "TransferDomainToAnotherAwsAccountResponse", _TL2 = "TransferLock", _TLDIM = "TLDInMaintenance", _TLDRV = "TLDRulesViolation", _TLa = "TagList", _TP2 = "TransferPrice", _TPe = "TechPrivacy", _TTD = "TagsToDelete", _TTU = "TagsToUpdate", _Ta2 = "Target", _Tag2 = "Tag", _Tl = "Tld", _Tr = "Transferable", _Ty = "Type", _UD = "UpdatedDate", _UDC = "UpdateDomainContact", _UDCP = "UpdateDomainContactPrivacy", _UDCPR = "UpdateDomainContactPrivacyRequest", _UDCPRp = "UpdateDomainContactPrivacyResponse", _UDCR = "UpdateDomainContactRequest", _UDCRp = "UpdateDomainContactResponse", _UDN = "UpdateDomainNameservers", _UDNR = "UpdateDomainNameserversRequest", _UDNRp = "UpdateDomainNameserversResponse", _UTFD = "UpdateTagsForDomain", _UTFDR = "UpdateTagsForDomainRequest", _UTFDRp = "UpdateTagsForDomainResponse", _UTLD = "UnsupportedTLD", _V2 = "Value", _VB = "ViewBilling", _VBR = "ViewBillingRequest", _VBRi = "ViewBillingResponse", _Va = "Values", _WIS = "WhoIsServer", _ZC = "ZipCode", _c3 = "client", _dN = "domainName", _e3 = "error", _eA = "emailAddress", _hE3 = "httpError", _iAV = "isAlreadyVerified", _m3 = "message", _rI = "requestId", _s3 = "smithy.ts.sdk.synthetic.com.amazonaws.route53domains", _st2 = "status", _t2 = "tld", n03 = "com.amazonaws.route53domains", _s_registry3, Route53DomainsServiceException$, n0_registry3, DnssecLimitExceeded$, DomainLimitExceeded$, DuplicateRequest$, InvalidInput$2, OperationLimitExceeded$, TLDInMaintenance$, TLDRulesViolation$, UnsupportedTLD$, errorTypeRegistries3, AddressLine, City, ContactName, ContactNumber, CountryCode, DomainAuthCode, Email, ExtraParamValue, FIAuthKey, Password, State, ZipCode, AcceptDomainTransferFromAnotherAwsAccountRequest$, AcceptDomainTransferFromAnotherAwsAccountResponse$, AssociateDelegationSignerToDomainRequest$, AssociateDelegationSignerToDomainResponse$, BillingRecord$, CancelDomainTransferToAnotherAwsAccountRequest$, CancelDomainTransferToAnotherAwsAccountResponse$, CheckDomainAvailabilityRequest$, CheckDomainAvailabilityResponse$, CheckDomainTransferabilityRequest$, CheckDomainTransferabilityResponse$, Consent$, ContactDetail$, DeleteDomainRequest$, DeleteDomainResponse$, DeleteTagsForDomainRequest$, DeleteTagsForDomainResponse$, DisableDomainAutoRenewRequest$, DisableDomainAutoRenewResponse$, DisableDomainTransferLockRequest$, DisableDomainTransferLockResponse$, DisassociateDelegationSignerFromDomainRequest$, DisassociateDelegationSignerFromDomainResponse$, DnssecKey$, DnssecSigningAttributes$, DomainPrice$, DomainSuggestion$, DomainSummary$, DomainTransferability$, EnableDomainAutoRenewRequest$, EnableDomainAutoRenewResponse$, EnableDomainTransferLockRequest$, EnableDomainTransferLockResponse$, ExtraParam$, FilterCondition$, GetContactReachabilityStatusRequest$, GetContactReachabilityStatusResponse$, GetDomainDetailRequest$, GetDomainDetailResponse$, GetDomainSuggestionsRequest$, GetDomainSuggestionsResponse$, GetOperationDetailRequest$, GetOperationDetailResponse$, ListDomainsRequest$, ListDomainsResponse$, ListOperationsRequest$, ListOperationsResponse$, ListPricesRequest$, ListPricesResponse$, ListTagsForDomainRequest$, ListTagsForDomainResponse$, Nameserver$, OperationSummary$, PriceWithCurrency$, PushDomainRequest$, RegisterDomainRequest$, RegisterDomainResponse$, RejectDomainTransferFromAnotherAwsAccountRequest$, RejectDomainTransferFromAnotherAwsAccountResponse$, RenewDomainRequest$, RenewDomainResponse$, ResendContactReachabilityEmailRequest$, ResendContactReachabilityEmailResponse$, ResendOperationAuthorizationRequest$, RetrieveDomainAuthCodeRequest$, RetrieveDomainAuthCodeResponse$, SortCondition$, Tag$2, TransferDomainRequest$, TransferDomainResponse$, TransferDomainToAnotherAwsAccountRequest$, TransferDomainToAnotherAwsAccountResponse$, UpdateDomainContactPrivacyRequest$, UpdateDomainContactPrivacyResponse$, UpdateDomainContactRequest$, UpdateDomainContactResponse$, UpdateDomainNameserversRequest$, UpdateDomainNameserversResponse$, UpdateTagsForDomainRequest$, UpdateTagsForDomainResponse$, ViewBillingRequest$, ViewBillingResponse$, __Unit = "unit", BillingRecords, DnssecKeyList, DomainPriceList, DomainStatusList, DomainSuggestionsList, DomainSummaryList, ExtraParamList, FilterConditions, GlueIpList, NameserverList, OperationStatusList, OperationSummaryList, OperationTypeList, TagKeyList2, TagList2, Values, AcceptDomainTransferFromAnotherAwsAccount$, AssociateDelegationSignerToDomain$, CancelDomainTransferToAnotherAwsAccount$, CheckDomainAvailability$, CheckDomainTransferability$, DeleteDomain$, DeleteTagsForDomain$, DisableDomainAutoRenew$, DisableDomainTransferLock$, DisassociateDelegationSignerFromDomain$, EnableDomainAutoRenew$, EnableDomainTransferLock$, GetContactReachabilityStatus$, GetDomainDetail$, GetDomainSuggestions$, GetOperationDetail$, ListDomains$, ListOperations$, ListPrices$, ListTagsForDomain$, PushDomain$, RegisterDomain$, RejectDomainTransferFromAnotherAwsAccount$, RenewDomain$, ResendContactReachabilityEmail$, ResendOperationAuthorization$, RetrieveDomainAuthCode$, TransferDomain$, TransferDomainToAnotherAwsAccount$, UpdateDomainContact$, UpdateDomainContactPrivacy$, UpdateDomainNameservers$, UpdateTagsForDomain$, ViewBilling$;
34759
34997
  var init_schemas_02 = __esm(() => {
34760
34998
  init_errors2();
@@ -35895,7 +36133,7 @@ var init_schemas_02 = __esm(() => {
35895
36133
  ];
35896
36134
  });
35897
36135
 
35898
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.shared.js
36136
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.shared.js
35899
36137
  var import_httpAuthSchemes5, import_protocols8, import_checksum2, import_client32, import_protocols9, import_serde5, getRuntimeConfig4 = (config) => {
35900
36138
  return {
35901
36139
  apiVersion: "2014-05-15",
@@ -35940,7 +36178,7 @@ var init_runtimeConfig_shared2 = __esm(() => {
35940
36178
  import_serde5 = __toESM(require_serde(), 1);
35941
36179
  });
35942
36180
 
35943
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.js
36181
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeConfig.js
35944
36182
  var import_client33, import_httpAuthSchemes6, import_client34, import_config30, import_retry5, import_serde6, import_node_http_handler3, getRuntimeConfig5 = (config) => {
35945
36183
  import_client34.emitWarningIfUnsupportedVersion(process.version);
35946
36184
  const defaultsMode = import_config30.resolveDefaultsModeConfig(config);
@@ -35986,7 +36224,7 @@ var init_runtimeConfig2 = __esm(() => {
35986
36224
  import_node_http_handler3 = __toESM(require_dist_cjs4(), 1);
35987
36225
  });
35988
36226
 
35989
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthExtensionConfiguration.js
36227
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/auth/httpAuthExtensionConfiguration.js
35990
36228
  var getHttpAuthExtensionConfiguration3 = (runtimeConfig) => {
35991
36229
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
35992
36230
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -36024,7 +36262,7 @@ var getHttpAuthExtensionConfiguration3 = (runtimeConfig) => {
36024
36262
  };
36025
36263
  };
36026
36264
 
36027
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeExtensions.js
36265
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/runtimeExtensions.js
36028
36266
  var import_client35, import_client36, import_protocols10, resolveRuntimeExtensions3 = (runtimeConfig, extensions) => {
36029
36267
  const extensionConfiguration = Object.assign(import_client35.getAwsRegionExtensionConfiguration(runtimeConfig), import_client36.getDefaultExtensionConfiguration(runtimeConfig), import_protocols10.getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration3(runtimeConfig));
36030
36268
  extensions.forEach((extension) => extension.configure(extensionConfiguration));
@@ -36036,7 +36274,7 @@ var init_runtimeExtensions2 = __esm(() => {
36036
36274
  import_protocols10 = __toESM(require_protocols(), 1);
36037
36275
  });
36038
36276
 
36039
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53DomainsClient.js
36277
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53DomainsClient.js
36040
36278
  var import_client37, import_core8, import_client38, import_config31, import_endpoints7, import_protocols11, import_retry6, import_schema4, Route53DomainsClient;
36041
36279
  var init_Route53DomainsClient = __esm(() => {
36042
36280
  init_httpAuthSchemeProvider2();
@@ -36087,7 +36325,7 @@ var init_Route53DomainsClient = __esm(() => {
36087
36325
  };
36088
36326
  });
36089
36327
 
36090
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commandBuilder.js
36328
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commandBuilder.js
36091
36329
  var import_client39, import_endpoints8, command3, _ep03, _mw03 = (Command3, cs, config, o2) => [];
36092
36330
  var init_commandBuilder2 = __esm(() => {
36093
36331
  init_EndpointParameters2();
@@ -36097,7 +36335,7 @@ var init_commandBuilder2 = __esm(() => {
36097
36335
  _ep03 = {};
36098
36336
  });
36099
36337
 
36100
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.js
36338
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AcceptDomainTransferFromAnotherAwsAccountCommand.js
36101
36339
  var AcceptDomainTransferFromAnotherAwsAccountCommand;
36102
36340
  var init_AcceptDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
36103
36341
  init_commandBuilder2();
@@ -36106,7 +36344,7 @@ var init_AcceptDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
36106
36344
  };
36107
36345
  });
36108
36346
 
36109
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AssociateDelegationSignerToDomainCommand.js
36347
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/AssociateDelegationSignerToDomainCommand.js
36110
36348
  var AssociateDelegationSignerToDomainCommand;
36111
36349
  var init_AssociateDelegationSignerToDomainCommand = __esm(() => {
36112
36350
  init_commandBuilder2();
@@ -36115,7 +36353,7 @@ var init_AssociateDelegationSignerToDomainCommand = __esm(() => {
36115
36353
  };
36116
36354
  });
36117
36355
 
36118
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CancelDomainTransferToAnotherAwsAccountCommand.js
36356
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CancelDomainTransferToAnotherAwsAccountCommand.js
36119
36357
  var CancelDomainTransferToAnotherAwsAccountCommand;
36120
36358
  var init_CancelDomainTransferToAnotherAwsAccountCommand = __esm(() => {
36121
36359
  init_commandBuilder2();
@@ -36124,7 +36362,7 @@ var init_CancelDomainTransferToAnotherAwsAccountCommand = __esm(() => {
36124
36362
  };
36125
36363
  });
36126
36364
 
36127
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainAvailabilityCommand.js
36365
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainAvailabilityCommand.js
36128
36366
  var CheckDomainAvailabilityCommand;
36129
36367
  var init_CheckDomainAvailabilityCommand = __esm(() => {
36130
36368
  init_commandBuilder2();
@@ -36133,7 +36371,7 @@ var init_CheckDomainAvailabilityCommand = __esm(() => {
36133
36371
  };
36134
36372
  });
36135
36373
 
36136
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainTransferabilityCommand.js
36374
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/CheckDomainTransferabilityCommand.js
36137
36375
  var CheckDomainTransferabilityCommand;
36138
36376
  var init_CheckDomainTransferabilityCommand = __esm(() => {
36139
36377
  init_commandBuilder2();
@@ -36142,7 +36380,7 @@ var init_CheckDomainTransferabilityCommand = __esm(() => {
36142
36380
  };
36143
36381
  });
36144
36382
 
36145
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteDomainCommand.js
36383
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteDomainCommand.js
36146
36384
  var DeleteDomainCommand;
36147
36385
  var init_DeleteDomainCommand = __esm(() => {
36148
36386
  init_commandBuilder2();
@@ -36151,7 +36389,7 @@ var init_DeleteDomainCommand = __esm(() => {
36151
36389
  };
36152
36390
  });
36153
36391
 
36154
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteTagsForDomainCommand.js
36392
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DeleteTagsForDomainCommand.js
36155
36393
  var DeleteTagsForDomainCommand;
36156
36394
  var init_DeleteTagsForDomainCommand = __esm(() => {
36157
36395
  init_commandBuilder2();
@@ -36160,7 +36398,7 @@ var init_DeleteTagsForDomainCommand = __esm(() => {
36160
36398
  };
36161
36399
  });
36162
36400
 
36163
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainAutoRenewCommand.js
36401
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainAutoRenewCommand.js
36164
36402
  var DisableDomainAutoRenewCommand;
36165
36403
  var init_DisableDomainAutoRenewCommand = __esm(() => {
36166
36404
  init_commandBuilder2();
@@ -36169,7 +36407,7 @@ var init_DisableDomainAutoRenewCommand = __esm(() => {
36169
36407
  };
36170
36408
  });
36171
36409
 
36172
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainTransferLockCommand.js
36410
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisableDomainTransferLockCommand.js
36173
36411
  var DisableDomainTransferLockCommand;
36174
36412
  var init_DisableDomainTransferLockCommand = __esm(() => {
36175
36413
  init_commandBuilder2();
@@ -36178,7 +36416,7 @@ var init_DisableDomainTransferLockCommand = __esm(() => {
36178
36416
  };
36179
36417
  });
36180
36418
 
36181
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisassociateDelegationSignerFromDomainCommand.js
36419
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/DisassociateDelegationSignerFromDomainCommand.js
36182
36420
  var DisassociateDelegationSignerFromDomainCommand;
36183
36421
  var init_DisassociateDelegationSignerFromDomainCommand = __esm(() => {
36184
36422
  init_commandBuilder2();
@@ -36187,7 +36425,7 @@ var init_DisassociateDelegationSignerFromDomainCommand = __esm(() => {
36187
36425
  };
36188
36426
  });
36189
36427
 
36190
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainAutoRenewCommand.js
36428
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainAutoRenewCommand.js
36191
36429
  var EnableDomainAutoRenewCommand;
36192
36430
  var init_EnableDomainAutoRenewCommand = __esm(() => {
36193
36431
  init_commandBuilder2();
@@ -36196,7 +36434,7 @@ var init_EnableDomainAutoRenewCommand = __esm(() => {
36196
36434
  };
36197
36435
  });
36198
36436
 
36199
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainTransferLockCommand.js
36437
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/EnableDomainTransferLockCommand.js
36200
36438
  var EnableDomainTransferLockCommand;
36201
36439
  var init_EnableDomainTransferLockCommand = __esm(() => {
36202
36440
  init_commandBuilder2();
@@ -36205,7 +36443,7 @@ var init_EnableDomainTransferLockCommand = __esm(() => {
36205
36443
  };
36206
36444
  });
36207
36445
 
36208
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetContactReachabilityStatusCommand.js
36446
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetContactReachabilityStatusCommand.js
36209
36447
  var GetContactReachabilityStatusCommand;
36210
36448
  var init_GetContactReachabilityStatusCommand = __esm(() => {
36211
36449
  init_commandBuilder2();
@@ -36214,7 +36452,7 @@ var init_GetContactReachabilityStatusCommand = __esm(() => {
36214
36452
  };
36215
36453
  });
36216
36454
 
36217
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainDetailCommand.js
36455
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainDetailCommand.js
36218
36456
  var GetDomainDetailCommand;
36219
36457
  var init_GetDomainDetailCommand = __esm(() => {
36220
36458
  init_commandBuilder2();
@@ -36223,7 +36461,7 @@ var init_GetDomainDetailCommand = __esm(() => {
36223
36461
  };
36224
36462
  });
36225
36463
 
36226
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainSuggestionsCommand.js
36464
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetDomainSuggestionsCommand.js
36227
36465
  var GetDomainSuggestionsCommand;
36228
36466
  var init_GetDomainSuggestionsCommand = __esm(() => {
36229
36467
  init_commandBuilder2();
@@ -36232,7 +36470,7 @@ var init_GetDomainSuggestionsCommand = __esm(() => {
36232
36470
  };
36233
36471
  });
36234
36472
 
36235
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetOperationDetailCommand.js
36473
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/GetOperationDetailCommand.js
36236
36474
  var GetOperationDetailCommand;
36237
36475
  var init_GetOperationDetailCommand = __esm(() => {
36238
36476
  init_commandBuilder2();
@@ -36241,7 +36479,7 @@ var init_GetOperationDetailCommand = __esm(() => {
36241
36479
  };
36242
36480
  });
36243
36481
 
36244
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListDomainsCommand.js
36482
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListDomainsCommand.js
36245
36483
  var ListDomainsCommand;
36246
36484
  var init_ListDomainsCommand = __esm(() => {
36247
36485
  init_commandBuilder2();
@@ -36250,7 +36488,7 @@ var init_ListDomainsCommand = __esm(() => {
36250
36488
  };
36251
36489
  });
36252
36490
 
36253
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListOperationsCommand.js
36491
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListOperationsCommand.js
36254
36492
  var ListOperationsCommand;
36255
36493
  var init_ListOperationsCommand = __esm(() => {
36256
36494
  init_commandBuilder2();
@@ -36259,7 +36497,7 @@ var init_ListOperationsCommand = __esm(() => {
36259
36497
  };
36260
36498
  });
36261
36499
 
36262
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListPricesCommand.js
36500
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListPricesCommand.js
36263
36501
  var ListPricesCommand;
36264
36502
  var init_ListPricesCommand = __esm(() => {
36265
36503
  init_commandBuilder2();
@@ -36268,7 +36506,7 @@ var init_ListPricesCommand = __esm(() => {
36268
36506
  };
36269
36507
  });
36270
36508
 
36271
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListTagsForDomainCommand.js
36509
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ListTagsForDomainCommand.js
36272
36510
  var ListTagsForDomainCommand;
36273
36511
  var init_ListTagsForDomainCommand = __esm(() => {
36274
36512
  init_commandBuilder2();
@@ -36277,7 +36515,7 @@ var init_ListTagsForDomainCommand = __esm(() => {
36277
36515
  };
36278
36516
  });
36279
36517
 
36280
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/PushDomainCommand.js
36518
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/PushDomainCommand.js
36281
36519
  var PushDomainCommand;
36282
36520
  var init_PushDomainCommand = __esm(() => {
36283
36521
  init_commandBuilder2();
@@ -36286,7 +36524,7 @@ var init_PushDomainCommand = __esm(() => {
36286
36524
  };
36287
36525
  });
36288
36526
 
36289
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RegisterDomainCommand.js
36527
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RegisterDomainCommand.js
36290
36528
  var RegisterDomainCommand;
36291
36529
  var init_RegisterDomainCommand = __esm(() => {
36292
36530
  init_commandBuilder2();
@@ -36295,7 +36533,7 @@ var init_RegisterDomainCommand = __esm(() => {
36295
36533
  };
36296
36534
  });
36297
36535
 
36298
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RejectDomainTransferFromAnotherAwsAccountCommand.js
36536
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RejectDomainTransferFromAnotherAwsAccountCommand.js
36299
36537
  var RejectDomainTransferFromAnotherAwsAccountCommand;
36300
36538
  var init_RejectDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
36301
36539
  init_commandBuilder2();
@@ -36304,7 +36542,7 @@ var init_RejectDomainTransferFromAnotherAwsAccountCommand = __esm(() => {
36304
36542
  };
36305
36543
  });
36306
36544
 
36307
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RenewDomainCommand.js
36545
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RenewDomainCommand.js
36308
36546
  var RenewDomainCommand;
36309
36547
  var init_RenewDomainCommand = __esm(() => {
36310
36548
  init_commandBuilder2();
@@ -36313,7 +36551,7 @@ var init_RenewDomainCommand = __esm(() => {
36313
36551
  };
36314
36552
  });
36315
36553
 
36316
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendContactReachabilityEmailCommand.js
36554
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendContactReachabilityEmailCommand.js
36317
36555
  var ResendContactReachabilityEmailCommand;
36318
36556
  var init_ResendContactReachabilityEmailCommand = __esm(() => {
36319
36557
  init_commandBuilder2();
@@ -36322,7 +36560,7 @@ var init_ResendContactReachabilityEmailCommand = __esm(() => {
36322
36560
  };
36323
36561
  });
36324
36562
 
36325
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendOperationAuthorizationCommand.js
36563
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ResendOperationAuthorizationCommand.js
36326
36564
  var ResendOperationAuthorizationCommand;
36327
36565
  var init_ResendOperationAuthorizationCommand = __esm(() => {
36328
36566
  init_commandBuilder2();
@@ -36331,7 +36569,7 @@ var init_ResendOperationAuthorizationCommand = __esm(() => {
36331
36569
  };
36332
36570
  });
36333
36571
 
36334
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RetrieveDomainAuthCodeCommand.js
36572
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/RetrieveDomainAuthCodeCommand.js
36335
36573
  var RetrieveDomainAuthCodeCommand;
36336
36574
  var init_RetrieveDomainAuthCodeCommand = __esm(() => {
36337
36575
  init_commandBuilder2();
@@ -36340,7 +36578,7 @@ var init_RetrieveDomainAuthCodeCommand = __esm(() => {
36340
36578
  };
36341
36579
  });
36342
36580
 
36343
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainCommand.js
36581
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainCommand.js
36344
36582
  var TransferDomainCommand;
36345
36583
  var init_TransferDomainCommand = __esm(() => {
36346
36584
  init_commandBuilder2();
@@ -36349,7 +36587,7 @@ var init_TransferDomainCommand = __esm(() => {
36349
36587
  };
36350
36588
  });
36351
36589
 
36352
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainToAnotherAwsAccountCommand.js
36590
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/TransferDomainToAnotherAwsAccountCommand.js
36353
36591
  var TransferDomainToAnotherAwsAccountCommand;
36354
36592
  var init_TransferDomainToAnotherAwsAccountCommand = __esm(() => {
36355
36593
  init_commandBuilder2();
@@ -36358,7 +36596,7 @@ var init_TransferDomainToAnotherAwsAccountCommand = __esm(() => {
36358
36596
  };
36359
36597
  });
36360
36598
 
36361
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactCommand.js
36599
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactCommand.js
36362
36600
  var UpdateDomainContactCommand;
36363
36601
  var init_UpdateDomainContactCommand = __esm(() => {
36364
36602
  init_commandBuilder2();
@@ -36367,7 +36605,7 @@ var init_UpdateDomainContactCommand = __esm(() => {
36367
36605
  };
36368
36606
  });
36369
36607
 
36370
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactPrivacyCommand.js
36608
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainContactPrivacyCommand.js
36371
36609
  var UpdateDomainContactPrivacyCommand;
36372
36610
  var init_UpdateDomainContactPrivacyCommand = __esm(() => {
36373
36611
  init_commandBuilder2();
@@ -36376,7 +36614,7 @@ var init_UpdateDomainContactPrivacyCommand = __esm(() => {
36376
36614
  };
36377
36615
  });
36378
36616
 
36379
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainNameserversCommand.js
36617
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateDomainNameserversCommand.js
36380
36618
  var UpdateDomainNameserversCommand;
36381
36619
  var init_UpdateDomainNameserversCommand = __esm(() => {
36382
36620
  init_commandBuilder2();
@@ -36385,7 +36623,7 @@ var init_UpdateDomainNameserversCommand = __esm(() => {
36385
36623
  };
36386
36624
  });
36387
36625
 
36388
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateTagsForDomainCommand.js
36626
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/UpdateTagsForDomainCommand.js
36389
36627
  var UpdateTagsForDomainCommand;
36390
36628
  var init_UpdateTagsForDomainCommand = __esm(() => {
36391
36629
  init_commandBuilder2();
@@ -36394,7 +36632,7 @@ var init_UpdateTagsForDomainCommand = __esm(() => {
36394
36632
  };
36395
36633
  });
36396
36634
 
36397
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ViewBillingCommand.js
36635
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/ViewBillingCommand.js
36398
36636
  var ViewBillingCommand;
36399
36637
  var init_ViewBillingCommand = __esm(() => {
36400
36638
  init_commandBuilder2();
@@ -36403,7 +36641,7 @@ var init_ViewBillingCommand = __esm(() => {
36403
36641
  };
36404
36642
  });
36405
36643
 
36406
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListDomainsPaginator.js
36644
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListDomainsPaginator.js
36407
36645
  var import_core9, paginateListDomains;
36408
36646
  var init_ListDomainsPaginator = __esm(() => {
36409
36647
  init_ListDomainsCommand();
@@ -36412,7 +36650,7 @@ var init_ListDomainsPaginator = __esm(() => {
36412
36650
  paginateListDomains = import_core9.createPaginator(Route53DomainsClient, ListDomainsCommand, "Marker", "NextPageMarker", "MaxItems");
36413
36651
  });
36414
36652
 
36415
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListOperationsPaginator.js
36653
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListOperationsPaginator.js
36416
36654
  var import_core10, paginateListOperations;
36417
36655
  var init_ListOperationsPaginator = __esm(() => {
36418
36656
  init_ListOperationsCommand();
@@ -36421,7 +36659,7 @@ var init_ListOperationsPaginator = __esm(() => {
36421
36659
  paginateListOperations = import_core10.createPaginator(Route53DomainsClient, ListOperationsCommand, "Marker", "NextPageMarker", "MaxItems");
36422
36660
  });
36423
36661
 
36424
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListPricesPaginator.js
36662
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ListPricesPaginator.js
36425
36663
  var import_core11, paginateListPrices;
36426
36664
  var init_ListPricesPaginator = __esm(() => {
36427
36665
  init_ListPricesCommand();
@@ -36430,7 +36668,7 @@ var init_ListPricesPaginator = __esm(() => {
36430
36668
  paginateListPrices = import_core11.createPaginator(Route53DomainsClient, ListPricesCommand, "Marker", "NextPageMarker", "MaxItems");
36431
36669
  });
36432
36670
 
36433
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ViewBillingPaginator.js
36671
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/ViewBillingPaginator.js
36434
36672
  var import_core12, paginateViewBilling;
36435
36673
  var init_ViewBillingPaginator = __esm(() => {
36436
36674
  init_ViewBillingCommand();
@@ -36439,7 +36677,7 @@ var init_ViewBillingPaginator = __esm(() => {
36439
36677
  paginateViewBilling = import_core12.createPaginator(Route53DomainsClient, ViewBillingCommand, "Marker", "NextPageMarker", "MaxItems");
36440
36678
  });
36441
36679
 
36442
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53Domains.js
36680
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/Route53Domains.js
36443
36681
  var import_client40, commands4, paginators2, Route53Domains;
36444
36682
  var init_Route53Domains = __esm(() => {
36445
36683
  init_AcceptDomainTransferFromAnotherAwsAccountCommand();
@@ -36529,7 +36767,7 @@ var init_Route53Domains = __esm(() => {
36529
36767
  import_client40.createAggregatedClient(commands4, Route53Domains, { paginators: paginators2 });
36530
36768
  });
36531
36769
 
36532
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/index.js
36770
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/commands/index.js
36533
36771
  var init_commands2 = __esm(() => {
36534
36772
  init_AcceptDomainTransferFromAnotherAwsAccountCommand();
36535
36773
  init_AssociateDelegationSignerToDomainCommand();
@@ -36567,10 +36805,10 @@ var init_commands2 = __esm(() => {
36567
36805
  init_ViewBillingCommand();
36568
36806
  });
36569
36807
 
36570
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/Interfaces.js
36808
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/Interfaces.js
36571
36809
  var init_Interfaces2 = () => {};
36572
36810
 
36573
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/index.js
36811
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/pagination/index.js
36574
36812
  var init_pagination2 = __esm(() => {
36575
36813
  init_Interfaces2();
36576
36814
  init_ListDomainsPaginator();
@@ -36579,19 +36817,19 @@ var init_pagination2 = __esm(() => {
36579
36817
  init_ViewBillingPaginator();
36580
36818
  });
36581
36819
 
36582
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/enums.js
36820
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/enums.js
36583
36821
  var init_enums2 = () => {};
36584
36822
 
36585
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/models_0.js
36823
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/models/models_0.js
36586
36824
  var init_models_02 = () => {};
36587
36825
 
36588
- // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1106.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/index.js
36826
+ // ../../node_modules/.bun/@aws-sdk+client-route-53-domains@3.1112.0/node_modules/@aws-sdk/client-route-53-domains/dist-es/index.js
36589
36827
  var init_dist_es13 = __esm(() => {
36590
36828
  init_Route53DomainsClient();
36591
36829
  init_Route53Domains();
36592
36830
  init_commands2();
36593
- init_schemas_02();
36594
36831
  init_pagination2();
36832
+ init_schemas_02();
36595
36833
  init_enums2();
36596
36834
  init_errors2();
36597
36835
  init_models_02();
@@ -38437,9 +38675,9 @@ __export(exports_config, {
38437
38675
  applyPurchaseProfile: () => applyPurchaseProfile
38438
38676
  });
38439
38677
  import { createHash as createHash3 } from "crypto";
38440
- import { copyFileSync as copyFileSync2, existsSync as existsSync2, mkdirSync as mkdirSync2, readFileSync as readFileSync5, writeFileSync as writeFileSync2 } from "fs";
38441
- import { homedir as homedir3 } from "os";
38442
- import { dirname as dirname4, join as join4 } from "path";
38678
+ import { copyFileSync as copyFileSync2, existsSync as existsSync3, mkdirSync as mkdirSync2, readFileSync as readFileSync5, writeFileSync as writeFileSync2 } from "fs";
38679
+ import { homedir as homedir5 } from "os";
38680
+ import { dirname as dirname4, join as join6 } from "path";
38443
38681
  function getPurchaseProfile() {
38444
38682
  return process.env["DOMAINS_PURCHASE_AWS_PROFILE"] ?? loadConfig4().purchase_aws_profile ?? undefined;
38445
38683
  }
@@ -38452,20 +38690,20 @@ function applyPurchaseProfile() {
38452
38690
  return profile;
38453
38691
  }
38454
38692
  function canonicalHome2(env) {
38455
- return env["HOME"] || env["USERPROFILE"] || homedir3();
38693
+ return env["HOME"] || env["USERPROFILE"] || homedir5();
38456
38694
  }
38457
38695
  function migrateLegacyConfig(env = process.env, dryRun = false) {
38458
38696
  const report = { dryRun, wouldCopy: false, copied: false };
38459
38697
  const home = canonicalHome2(env);
38460
- const canonicalDir = join4(home, ".hasna", "domains");
38461
- const newPath = join4(canonicalDir, "config.json");
38462
- if (existsSync2(newPath))
38698
+ const canonicalDir = join6(home, ".hasna", "domains");
38699
+ const newPath = join6(canonicalDir, "config.json");
38700
+ if (existsSync3(newPath))
38463
38701
  return report;
38464
- if (existsSync2(join4(canonicalDir, ".migrated-from-xdg-config.receipt.json")))
38702
+ if (existsSync3(join6(canonicalDir, ".migrated-from-xdg-config.receipt.json")))
38465
38703
  return report;
38466
- const xdgConfig = env["XDG_CONFIG_HOME"]?.trim() || join4(home, ".config");
38467
- const oldPath = join4(xdgConfig, "open-domains", "config.json");
38468
- if (!existsSync2(oldPath))
38704
+ const xdgConfig = env["XDG_CONFIG_HOME"]?.trim() || join6(home, ".config");
38705
+ const oldPath = join6(xdgConfig, "open-domains", "config.json");
38706
+ if (!existsSync3(oldPath))
38469
38707
  return report;
38470
38708
  report.wouldCopy = true;
38471
38709
  if (dryRun)
@@ -38477,7 +38715,7 @@ function migrateLegacyConfig(env = process.env, dryRun = false) {
38477
38715
  if (!oldBytes.equals(newBytes)) {
38478
38716
  throw new Error(`Refusing migration: copied ${newPath} does not byte-match ${oldPath}; the canonical config was not populated.`);
38479
38717
  }
38480
- writeFileSync2(join4(canonicalDir, ".migrated-from-xdg-config.receipt.json"), `${JSON.stringify({
38718
+ writeFileSync2(join6(canonicalDir, ".migrated-from-xdg-config.receipt.json"), `${JSON.stringify({
38481
38719
  migratedAt: new Date().toISOString(),
38482
38720
  from: oldPath,
38483
38721
  to: newPath,
@@ -38493,13 +38731,15 @@ function getConfigPath(env = process.env) {
38493
38731
  return env["DOMAINS_CONFIG_PATH"];
38494
38732
  const dir = env["DOMAINS_CONFIG_DIR"];
38495
38733
  if (dir)
38496
- return join4(dir, "config.json");
38497
- migrateLegacyConfig(env);
38498
- return join4(canonicalHome2(env), ".hasna", "domains", "config.json");
38734
+ return join6(dir, "config.json");
38735
+ if (!adoptResolverHome(resolverHome(env), env)) {
38736
+ migrateLegacyConfig(env);
38737
+ }
38738
+ return getDefaultConfigPath(env);
38499
38739
  }
38500
38740
  function loadConfig4(env = process.env) {
38501
38741
  const path = getConfigPath(env);
38502
- if (!existsSync2(path))
38742
+ if (!existsSync3(path))
38503
38743
  return {};
38504
38744
  try {
38505
38745
  return JSON.parse(readFileSync5(path, "utf-8"));
@@ -38510,7 +38750,7 @@ function loadConfig4(env = process.env) {
38510
38750
  function saveConfig(config, env = process.env) {
38511
38751
  const path = getConfigPath(env);
38512
38752
  const dir = dirname4(path);
38513
- if (!existsSync2(dir))
38753
+ if (!existsSync3(dir))
38514
38754
  mkdirSync2(dir, { recursive: true });
38515
38755
  writeFileSync2(path, JSON.stringify(config, null, 2), "utf-8");
38516
38756
  }
@@ -38559,7 +38799,9 @@ function getConfigKey(keyPath) {
38559
38799
  }
38560
38800
  return;
38561
38801
  }
38562
- var init_config = () => {};
38802
+ var init_config = __esm(() => {
38803
+ init_app_home();
38804
+ });
38563
38805
 
38564
38806
  // src/lib/compact-output.ts
38565
38807
  function parseLimit(value, fallback = DEFAULT_LIST_LIMIT, maxLimit = MAX_LIST_LIMIT) {
@@ -41356,9 +41598,9 @@ __export(exports_commander, {
41356
41598
  });
41357
41599
  import { chmod, mkdir, readFile, rename, writeFile as writeFile2 } from "fs/promises";
41358
41600
  import { Buffer as Buffer2 } from "buffer";
41359
- import { existsSync as existsSync4 } from "fs";
41360
- import { homedir as homedir5 } from "os";
41361
- import { join as join6 } from "path";
41601
+ import { existsSync as existsSync5 } from "fs";
41602
+ import { homedir as homedir7 } from "os";
41603
+ import { join as join8 } from "path";
41362
41604
  import { createHmac, timingSafeEqual } from "crypto";
41363
41605
  import { lookup as dnsLookup } from "dns/promises";
41364
41606
  import { isIP as isIP2 } from "net";
@@ -41463,7 +41705,7 @@ function channelMatchesEvent(channel, event) {
41463
41705
  return channel.filters.some((filter) => eventMatchesFilter(event, filter));
41464
41706
  }
41465
41707
  function getEventsDataDir(override) {
41466
- return override || process.env[HASNA_EVENTS_DIR_ENV] || process.env[HASNA_EVENTS_HOME_ENV] || join6(homedir5(), ".hasna", "events");
41708
+ return override || process.env[HASNA_EVENTS_DIR_ENV] || process.env[HASNA_EVENTS_HOME_ENV] || join8(homedir7(), ".hasna", "events");
41467
41709
  }
41468
41710
  function getActiveEventsDirEnv() {
41469
41711
  if (process.env[HASNA_EVENTS_DIR_ENV])
@@ -41479,12 +41721,12 @@ class JsonEventsStore {
41479
41721
  channelsPath;
41480
41722
  eventsPath;
41481
41723
  deliveriesPath;
41482
- constructor(dataDir = getEventsDataDir()) {
41483
- this.dataDir = dataDir;
41484
- this.runtime = localJsonRuntime(dataDir);
41485
- this.channelsPath = join6(dataDir, "channels.json");
41486
- this.eventsPath = join6(dataDir, "events.json");
41487
- this.deliveriesPath = join6(dataDir, "deliveries.json");
41724
+ constructor(dataDir2 = getEventsDataDir()) {
41725
+ this.dataDir = dataDir2;
41726
+ this.runtime = localJsonRuntime(dataDir2);
41727
+ this.channelsPath = join8(dataDir2, "channels.json");
41728
+ this.eventsPath = join8(dataDir2, "events.json");
41729
+ this.deliveriesPath = join8(dataDir2, "deliveries.json");
41488
41730
  }
41489
41731
  async init() {
41490
41732
  await mkdir(this.dataDir, { recursive: true, mode: 448 });
@@ -41601,7 +41843,7 @@ class JsonEventsStore {
41601
41843
  };
41602
41844
  }
41603
41845
  async ensureArrayFile(path) {
41604
- if (!existsSync4(path)) {
41846
+ if (!existsSync5(path)) {
41605
41847
  await writeFile2(path, `[]
41606
41848
  `, { encoding: "utf-8", mode: 384 });
41607
41849
  }
@@ -41631,7 +41873,7 @@ class JsonEventsStore {
41631
41873
  });
41632
41874
  }
41633
41875
  }
41634
- function localJsonRuntime(dataDir = getEventsDataDir()) {
41876
+ function localJsonRuntime(dataDir2 = getEventsDataDir()) {
41635
41877
  return {
41636
41878
  mode: "local-files",
41637
41879
  name: "json-events-store",
@@ -41644,7 +41886,7 @@ function localJsonRuntime(dataDir = getEventsDataDir()) {
41644
41886
  durable: true,
41645
41887
  idempotency: "best-effort-local",
41646
41888
  replayCursors: true,
41647
- description: `Local JSON files in ${dataDir}; no SQLite, Postgres, S3, or AWS runtime is configured by this store.`
41889
+ description: `Local JSON files in ${dataDir2}; no SQLite, Postgres, S3, or AWS runtime is configured by this store.`
41648
41890
  };
41649
41891
  }
41650
41892
  function encodeLocalJsonEventCursor(offset, options = {}) {
@@ -41708,8 +41950,8 @@ function assertCursorFilter(name, cursorValue, optionValue) {
41708
41950
  function findEventByIdentity(events, identity2) {
41709
41951
  return events.find((event) => identity2.id !== undefined && event.id === identity2.id || identity2.dedupeKey !== undefined && event.dedupeKey === identity2.dedupeKey);
41710
41952
  }
41711
- async function getEventsStatus(dataDir) {
41712
- const store = new JsonEventsStore(dataDir);
41953
+ async function getEventsStatus(dataDir2) {
41954
+ const store = new JsonEventsStore(dataDir2);
41713
41955
  await store.init();
41714
41956
  const [channels, events, deliveries] = await Promise.all([
41715
41957
  store.listChannels(),
@@ -41751,9 +41993,9 @@ async function getEventsStatus(dataDir) {
41751
41993
  }
41752
41994
  };
41753
41995
  }
41754
- function statusFile(dataDir, fileName, records) {
41755
- const path = join6(dataDir, fileName);
41756
- return { path, exists: existsSync4(path), records };
41996
+ function statusFile(dataDir2, fileName, records) {
41997
+ const path = join8(dataDir2, fileName);
41998
+ return { path, exists: existsSync5(path), records };
41757
41999
  }
41758
42000
  function buildSignatureBase(timestamp, body) {
41759
42001
  return `${timestamp}.${body}`;
@@ -42054,7 +42296,7 @@ async function pinnedNativeRequest(target, addresses, method, headers, body, sig
42054
42296
  callback(null, entries);
42055
42297
  }
42056
42298
  };
42057
- return new Promise((resolve3, reject) => {
42299
+ return new Promise((resolve4, reject) => {
42058
42300
  const request = isHttps ? nodeHttpsRequest(requestOptions, onResponse) : nodeHttpRequest(requestOptions, onResponse);
42059
42301
  const onAbort = () => {
42060
42302
  const error = new Error("The operation was aborted.");
@@ -42081,7 +42323,7 @@ async function pinnedNativeRequest(target, addresses, method, headers, body, sig
42081
42323
  else if (Array.isArray(value))
42082
42324
  headersRecord[name] = value.join(", ");
42083
42325
  }
42084
- resolve3(new Response(Buffer.concat(chunks), { status: response.statusCode ?? 200, headers: headersRecord }));
42326
+ resolve4(new Response(Buffer.concat(chunks), { status: response.statusCode ?? 200, headers: headersRecord }));
42085
42327
  });
42086
42328
  }
42087
42329
  });
@@ -42178,7 +42420,7 @@ async function dispatchCommand(event, channel) {
42178
42420
  HASNA_EVENT_SCHEMA_VERSION: event.schemaVersion,
42179
42421
  HASNA_EVENT_JSON: eventJson
42180
42422
  };
42181
- return new Promise((resolve3) => {
42423
+ return new Promise((resolve4) => {
42182
42424
  const child = spawn(channel.command.command, channel.command.args ?? [], {
42183
42425
  cwd: channel.command.cwd,
42184
42426
  env,
@@ -42196,7 +42438,7 @@ async function dispatchCommand(event, channel) {
42196
42438
  });
42197
42439
  child.on("error", (error) => {
42198
42440
  clearTimeout(timeout);
42199
- resolve3({
42441
+ resolve4({
42200
42442
  attempt: 1,
42201
42443
  status: "failed",
42202
42444
  startedAt,
@@ -42209,7 +42451,7 @@ async function dispatchCommand(event, channel) {
42209
42451
  child.on("close", (code, signal) => {
42210
42452
  clearTimeout(timeout);
42211
42453
  const success = code === 0;
42212
- resolve3({
42454
+ resolve4({
42213
42455
  attempt: 1,
42214
42456
  status: success ? "success" : "failed",
42215
42457
  startedAt,
@@ -45576,15 +45818,15 @@ ${"\u2500".repeat(45)}`);
45576
45818
 
45577
45819
  // src/cli/commands/mcp-install.ts
45578
45820
  init_stdout();
45579
- import { existsSync as existsSync3, mkdirSync as mkdirSync3, readFileSync as readFileSync7, writeFileSync as writeFileSync4 } from "fs";
45580
- import { homedir as homedir4 } from "os";
45581
- import { dirname as dirname5, join as join5 } from "path";
45821
+ import { existsSync as existsSync4, mkdirSync as mkdirSync3, readFileSync as readFileSync7, writeFileSync as writeFileSync4 } from "fs";
45822
+ import { homedir as homedir6 } from "os";
45823
+ import { dirname as dirname5, join as join7 } from "path";
45582
45824
  import { execSync as execSync2 } from "child_process";
45583
45825
  var MCP_SERVER_NAME = "domains";
45584
45826
  function getClaudeConfigPaths() {
45585
45827
  return {
45586
- global: join5(homedir4(), ".claude", "claude_desktop_config.json"),
45587
- project: join5(process.cwd(), ".claude", "settings.json")
45828
+ global: join7(homedir6(), ".claude", "claude_desktop_config.json"),
45829
+ project: join7(process.cwd(), ".claude", "settings.json")
45588
45830
  };
45589
45831
  }
45590
45832
  function getMcpBinaryPath() {
@@ -45596,12 +45838,12 @@ function getMcpBinaryPath() {
45596
45838
  }
45597
45839
  function ensureConfigDir(configPath) {
45598
45840
  const dir = dirname5(configPath);
45599
- if (!existsSync3(dir)) {
45841
+ if (!existsSync4(dir)) {
45600
45842
  mkdirSync3(dir, { recursive: true });
45601
45843
  }
45602
45844
  }
45603
45845
  function readConfig(configPath) {
45604
- if (!existsSync3(configPath))
45846
+ if (!existsSync4(configPath))
45605
45847
  return {};
45606
45848
  try {
45607
45849
  return JSON.parse(readFileSync7(configPath, "utf-8"));
@@ -45630,7 +45872,7 @@ function registerMcpCommand(program2) {
45630
45872
  mcp.command("uninstall").description("Remove domains MCP server from Claude Code config").option("--project", "Remove from project config instead of global").action((opts) => {
45631
45873
  const paths = getClaudeConfigPaths();
45632
45874
  const configPath = opts.project ? paths.project : paths.global;
45633
- if (!existsSync3(configPath)) {
45875
+ if (!existsSync4(configPath)) {
45634
45876
  printLine("Config file not found \u2014 nothing to remove.");
45635
45877
  return;
45636
45878
  }
@@ -45648,7 +45890,7 @@ function registerMcpCommand(program2) {
45648
45890
  const paths = getClaudeConfigPaths();
45649
45891
  const status = [];
45650
45892
  for (const [scope, configPath] of [["global", paths.global], ["project", paths.project]]) {
45651
- if (!existsSync3(configPath)) {
45893
+ if (!existsSync4(configPath)) {
45652
45894
  status.push({ scope, config_path: configPath, exists: false, registered: false });
45653
45895
  continue;
45654
45896
  }
@@ -46071,6 +46313,7 @@ class MigrationLedger {
46071
46313
  client;
46072
46314
  migrations;
46073
46315
  ledgerTable;
46316
+ acknowledgedLegacyIds;
46074
46317
  constructor(client, migrations, options = {}) {
46075
46318
  this.client = client;
46076
46319
  this.migrations = migrations;
@@ -46081,6 +46324,20 @@ class MigrationLedger {
46081
46324
  throw new Error(`Duplicate migration id: ${migration.id}`);
46082
46325
  seen.add(migration.id);
46083
46326
  }
46327
+ const rawAcknowledged = ownProp(options, "acknowledgedLegacyIds");
46328
+ if (rawAcknowledged !== undefined) {
46329
+ if (!Array.isArray(rawAcknowledged) || rawAcknowledged.some((id) => typeof id !== "string")) {
46330
+ throw new Error("acknowledgedLegacyIds must be an array of migration id strings");
46331
+ }
46332
+ this.acknowledgedLegacyIds = new Set(rawAcknowledged);
46333
+ } else {
46334
+ this.acknowledgedLegacyIds = new Set;
46335
+ }
46336
+ for (const id of this.acknowledgedLegacyIds) {
46337
+ if (seen.has(id)) {
46338
+ throw new Error(`Acknowledged legacy migration id '${id}' is also declared as a migration.`);
46339
+ }
46340
+ }
46084
46341
  }
46085
46342
  async ensureLedger() {
46086
46343
  await this.client.execute(`CREATE TABLE IF NOT EXISTS ${this.ledgerTable} (
@@ -46104,9 +46361,10 @@ class MigrationLedger {
46104
46361
  buildPlan(applied) {
46105
46362
  const known = new Set(this.migrations.map((m2) => m2.id));
46106
46363
  for (const row of applied) {
46107
- if (!known.has(row.id)) {
46108
- throw new Error(`Applied migration '${row.id}' is not recognized by this build (downgrade?).`);
46364
+ if (known.has(row.id) || this.acknowledgedLegacyIds.has(row.id)) {
46365
+ continue;
46109
46366
  }
46367
+ throw new Error(`Applied migration '${row.id}' is not recognized by this build (downgrade?).`);
46110
46368
  }
46111
46369
  const appliedById = new Map(applied.map((row) => [row.id, row]));
46112
46370
  for (const migration of this.migrations) {
@@ -46270,6 +46528,20 @@ var PG_MIGRATIONS = [
46270
46528
  var OWNER_DSN_ENV = "HASNA_DOMAINS_DATABASE_URL_OWNER";
46271
46529
  var APP_DSN_ENV = "HASNA_DOMAINS_DATABASE_URL";
46272
46530
  var LEGACY_DSN_ENV = "DATABASE_URL";
46531
+ var ACKNOWLEDGED_LEGACY_MIGRATION_IDS = [
46532
+ "domains_apikeys_tenancy_0001",
46533
+ "domains_apikeys_tenancy_0002",
46534
+ "domains_tenancy_0001",
46535
+ "domains_tenancy_0002",
46536
+ "domains_tenancy_0003",
46537
+ "domains_tenancy_0004",
46538
+ "domains_tenancy_0005",
46539
+ "domains_tenancy_0006",
46540
+ "domains_tenancy_0007",
46541
+ "domains_tenancy_0008",
46542
+ "domains_tenancy_0009",
46543
+ "domains_tenancy_0010"
46544
+ ];
46273
46545
  function buildMigrations() {
46274
46546
  const migrations2 = [];
46275
46547
  PG_MIGRATIONS.forEach((sql, i4) => {
@@ -46294,7 +46566,9 @@ async function runMigrations(opts = {}) {
46294
46566
  const pool2 = createPgPool({ connectionString: dsn, env, applicationName: "domains-migrate" });
46295
46567
  try {
46296
46568
  const client = wrapExecutor(pool2);
46297
- const ledger = new MigrationLedger(client, buildMigrations());
46569
+ const ledger = new MigrationLedger(client, buildMigrations(), {
46570
+ acknowledgedLegacyIds: ACKNOWLEDGED_LEGACY_MIGRATION_IDS
46571
+ });
46298
46572
  return await ledger.migrate(opts.dryRun ? { dryRun: true } : {});
46299
46573
  } finally {
46300
46574
  await pool2.end();
@@ -47204,13 +47478,13 @@ async function loadRdapBootstrap(path) {
47204
47478
  return map;
47205
47479
  }
47206
47480
  function whoisRaw(server, query2, timeoutMs = 25000) {
47207
- return new Promise((resolve3) => {
47481
+ return new Promise((resolve4) => {
47208
47482
  const chunks = [];
47209
47483
  let settled = false;
47210
47484
  const done = (r4) => {
47211
47485
  if (!settled) {
47212
47486
  settled = true;
47213
- resolve3(r4);
47487
+ resolve4(r4);
47214
47488
  }
47215
47489
  };
47216
47490
  const sock = net.createConnection({ host: server, port: 43 });