this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add support for serving assets from the routing layer (#768)

authored by

Victor Berchet and committed by
GitHub
40f7e724 2797c3f7

+1078 -680
+5
.changeset/angry-lizards-add.md
··· 1 + --- 2 + "@opennextjs/cloudflare": minor 3 + --- 4 + 5 + Add an asset resolver to support `run_worker_first=true`
+4 -1
examples/playground14/e2e/cloudflare.spec.ts
··· 28 28 29 29 test("400 when fetching an image disallowed by remotePatterns", async ({ page }) => { 30 30 const res = await page.request.get("/_next/image?url=https://avatars.githubusercontent.com/u/248817"); 31 - expect(res.status()).toBe(400); 31 + // The request should be blocked by either the remote patterns or the asset worker 32 + const isBlockedByRemotePattern = res.status() === 400; 33 + const isBlockedByAssetWorker = res.status() === 403; 34 + expect(isBlockedByRemotePattern || isBlockedByAssetWorker).toBe(true); 32 35 }); 33 36 }); 34 37
+2 -1
examples/playground15/wrangler.jsonc
··· 6 6 "compatibility_flags": ["nodejs_compat", "global_fetch_strictly_public"], 7 7 "assets": { 8 8 "directory": ".open-next/assets", 9 - "binding": "ASSETS" 9 + "binding": "ASSETS", 10 + "run_worker_first": true 10 11 }, 11 12 "kv_namespaces": [ 12 13 {
+3
packages/cloudflare/src/api/config.ts
··· 12 12 TagCache, 13 13 } from "@opennextjs/aws/types/overrides"; 14 14 15 + import assetResolver from "./overrides/asset-resolver/index.js"; 16 + 15 17 export type Override<T extends BaseOverride> = "dummy" | T | LazyLoadedOverride<T>; 16 18 17 19 /** ··· 102 104 tagCache: resolveTagCache(tagCache), 103 105 queue: resolveQueue(queue), 104 106 }, 107 + assetResolver: () => assetResolver, 105 108 }, 106 109 }; 107 110 }
+47
packages/cloudflare/src/api/overrides/asset-resolver/index.spec.ts
··· 1 + import { describe, expect, test } from "vitest"; 2 + 3 + import { isUserWorkerFirst } from "./index.js"; 4 + 5 + describe("isUserWorkerFirst", () => { 6 + test("run_worker_first = false", () => { 7 + expect(isUserWorkerFirst(false, "/test")).toBe(false); 8 + expect(isUserWorkerFirst(false, "/")).toBe(false); 9 + }); 10 + 11 + test("run_worker_first is undefined", () => { 12 + expect(isUserWorkerFirst(undefined, "/test")).toBe(false); 13 + expect(isUserWorkerFirst(undefined, "/")).toBe(false); 14 + }); 15 + 16 + test("run_worker_first = true", () => { 17 + expect(isUserWorkerFirst(true, "/test")).toBe(true); 18 + expect(isUserWorkerFirst(true, "/")).toBe(true); 19 + }); 20 + 21 + describe("run_worker_first is an array", () => { 22 + test("positive string match", () => { 23 + expect(isUserWorkerFirst(["/test.ext"], "/test.ext")).toBe(true); 24 + expect(isUserWorkerFirst(["/a", "/b", "/test.ext"], "/test.ext")).toBe(true); 25 + expect(isUserWorkerFirst(["/a", "/b", "/test.ext"], "/test")).toBe(false); 26 + expect(isUserWorkerFirst(["/before/test.ext"], "/test.ext")).toBe(false); 27 + expect(isUserWorkerFirst(["/test.ext/after"], "/test.ext")).toBe(false); 28 + }); 29 + 30 + test("negative string match", () => { 31 + expect(isUserWorkerFirst(["!/test.ext"], "/test.ext")).toBe(false); 32 + expect(isUserWorkerFirst(["!/a", "!/b", "!/test.ext"], "/test.ext")).toBe(false); 33 + }); 34 + 35 + test("positive patterns", () => { 36 + expect(isUserWorkerFirst(["/images/*"], "/images/pic.jpg")).toBe(true); 37 + expect(isUserWorkerFirst(["/images/*"], "/other/pic.jpg")).toBe(false); 38 + }); 39 + 40 + test("negative patterns", () => { 41 + expect(isUserWorkerFirst(["/*", "!/images/*"], "/images/pic.jpg")).toBe(false); 42 + expect(isUserWorkerFirst(["/*", "!/images/*"], "/index.html")).toBe(true); 43 + expect(isUserWorkerFirst(["!/images/*", "/*"], "/images/pic.jpg")).toBe(false); 44 + expect(isUserWorkerFirst(["!/images/*", "/*"], "/index.html")).toBe(true); 45 + }); 46 + }); 47 + });
+96
packages/cloudflare/src/api/overrides/asset-resolver/index.ts
··· 1 + import type { InternalEvent, InternalResult } from "@opennextjs/aws/types/open-next"; 2 + import type { AssetResolver } from "@opennextjs/aws/types/overrides"; 3 + 4 + import { getCloudflareContext } from "../../cloudflare-context.js"; 5 + 6 + /** 7 + * Serves assets when `run_worker_first` is set to true. 8 + * 9 + * When `run_worker_first` is `false`, the assets are served directly bypassing Next routing. 10 + * 11 + * When it is `true`, assets are served from the routing layer. It should be used when assets 12 + * should be behind the middleware or when skew protection is enabled. 13 + * 14 + * See https://developers.cloudflare.com/workers/static-assets/binding/#run_worker_first 15 + */ 16 + const resolver: AssetResolver = { 17 + name: "cloudflare-asset-resolver", 18 + async maybeGetAssetResult(event: InternalEvent) { 19 + const { ASSETS } = getCloudflareContext().env; 20 + 21 + if (!ASSETS || !isUserWorkerFirst(globalThis.__ASSETS_RUN_WORKER_FIRST__, event.rawPath)) { 22 + // Only handle assets when the user worker runs first for the path 23 + return undefined; 24 + } 25 + 26 + const { method, headers } = event; 27 + 28 + if (method !== "GET" && method != "HEAD") { 29 + return undefined; 30 + } 31 + 32 + const url = new URL(event.rawPath, "https://assets.local"); 33 + const response = await ASSETS.fetch(url, { 34 + headers, 35 + method, 36 + }); 37 + 38 + if (response.status === 404) { 39 + return undefined; 40 + } 41 + 42 + return { 43 + type: "core", 44 + statusCode: response.status, 45 + headers: Object.fromEntries(response.headers.entries()), 46 + // Workers and Node types differ. 47 + // eslint-disable-next-line @typescript-eslint/no-explicit-any 48 + body: response.body || (new ReadableStream() as any), 49 + isBase64Encoded: false, 50 + } satisfies InternalResult; 51 + }, 52 + }; 53 + 54 + /** 55 + * @param runWorkerFirst `run_worker_first` config 56 + * @param pathname pathname of the request 57 + * @returns Whether the user worker runs first 58 + */ 59 + export function isUserWorkerFirst(runWorkerFirst: boolean | string[] | undefined, pathname: string): boolean { 60 + if (!Array.isArray(runWorkerFirst)) { 61 + return runWorkerFirst ?? false; 62 + } 63 + 64 + let hasPositiveMatch = false; 65 + 66 + for (let rule of runWorkerFirst) { 67 + let isPositiveRule = true; 68 + 69 + if (rule.startsWith("!")) { 70 + rule = rule.slice(1); 71 + isPositiveRule = false; 72 + } else if (hasPositiveMatch) { 73 + // Do not look for more positive rules once we have a match 74 + continue; 75 + } 76 + 77 + // - Escapes special characters 78 + // - Replaces * with .* 79 + const match = new RegExp(`^${rule.replace(/([[\]().*+?^$|{}\\])/g, "\\$1").replace("\\*", ".*")}$`).test( 80 + pathname 81 + ); 82 + 83 + if (match) { 84 + if (isPositiveRule) { 85 + hasPositiveMatch = true; 86 + } else { 87 + // Exit early when there is a negative match 88 + return false; 89 + } 90 + } 91 + } 92 + 93 + return hasPositiveMatch; 94 + } 95 + 96 + export default resolver;
+4 -3
packages/cloudflare/src/cli/build/build.ts
··· 5 5 import * as buildHelper from "@opennextjs/aws/build/helper.js"; 6 6 import { printHeader } from "@opennextjs/aws/build/utils.js"; 7 7 import logger from "@opennextjs/aws/logger.js"; 8 + import type { Unstable_Config } from "wrangler"; 8 9 9 10 import { OpenNextConfig } from "../../api/config.js"; 10 11 import type { ProjectOptions } from "../project-options.js"; ··· 30 31 export async function build( 31 32 options: buildHelper.BuildOptions, 32 33 config: OpenNextConfig, 33 - projectOpts: ProjectOptions 34 + projectOpts: ProjectOptions, 35 + wranglerConfig: Unstable_Config 34 36 ): Promise<void> { 35 37 // Do not minify the code so that we can apply string replacement patch. 36 - // Note that wrangler will still minify the bundle. 37 38 options.minify = false; 38 39 39 40 // Pre-build validation ··· 65 66 compileEnvFiles(options); 66 67 67 68 // Compile workerd init 68 - compileInit(options); 69 + compileInit(options, wranglerConfig); 69 70 70 71 // Compile image helpers 71 72 compileImages(options);
+3 -1
packages/cloudflare/src/cli/build/open-next/compile-init.ts
··· 4 4 import { loadConfig } from "@opennextjs/aws/adapters/config/util.js"; 5 5 import type { BuildOptions } from "@opennextjs/aws/build/helper.js"; 6 6 import { build } from "esbuild"; 7 + import type { Unstable_Config } from "wrangler"; 7 8 8 9 /** 9 10 * Compiles the initialization code for the workerd runtime 10 11 */ 11 - export async function compileInit(options: BuildOptions) { 12 + export async function compileInit(options: BuildOptions, wranglerConfig: Unstable_Config) { 12 13 const currentDir = path.join(path.dirname(fileURLToPath(import.meta.url))); 13 14 const templatesDir = path.join(currentDir, "../../templates"); 14 15 const initPath = path.join(templatesDir, "init.js"); ··· 27 28 define: { 28 29 __BUILD_TIMESTAMP_MS__: JSON.stringify(Date.now()), 29 30 __NEXT_BASE_PATH__: JSON.stringify(basePath), 31 + __ASSETS_RUN_WORKER_FIRST__: JSON.stringify(wranglerConfig.assets?.run_worker_first ?? false), 30 32 }, 31 33 }); 32 34 }
+10 -2
packages/cloudflare/src/cli/index.ts
··· 6 6 import { normalizeOptions } from "@opennextjs/aws/build/helper.js"; 7 7 import { printHeader, showWarningOnWindows } from "@opennextjs/aws/build/utils.js"; 8 8 import logger from "@opennextjs/aws/logger.js"; 9 + import { unstable_readConfig } from "wrangler"; 9 10 10 11 import { Arguments, getArgs } from "./args.js"; 11 12 import { build } from "./build/build.js"; ··· 14 15 import { populateCache } from "./commands/populate-cache.js"; 15 16 import { preview } from "./commands/preview.js"; 16 17 import { upload } from "./commands/upload.js"; 18 + import { getWranglerConfigFlag, getWranglerEnvironmentFlag } from "./utils/run-wrangler.js"; 17 19 18 20 const nextAppDir = process.cwd(); 19 21 ··· 38 40 logger.setLevel(options.debug ? "debug" : "info"); 39 41 40 42 switch (args.command) { 41 - case "build": 42 - return build(options, config, { ...args, sourceDir: baseDir }); 43 + case "build": { 44 + const argv = process.argv.slice(2); 45 + const wranglerEnv = getWranglerEnvironmentFlag(argv); 46 + const wranglerConfigFile = getWranglerConfigFlag(argv); 47 + const wranglerConfig = unstable_readConfig({ env: wranglerEnv, config: wranglerConfigFile }); 48 + 49 + return build(options, config, { ...args, sourceDir: baseDir }, wranglerConfig); 50 + } 43 51 case "preview": 44 52 return preview(options, config, args); 45 53 case "deploy":
+5 -2
packages/cloudflare/src/cli/templates/init.ts
··· 94 94 95 95 Object.assign(globalThis, { 96 96 Request: CustomRequest, 97 - __BUILD_TIMESTAMP_MS__: __BUILD_TIMESTAMP_MS__, 98 - __NEXT_BASE_PATH__: __NEXT_BASE_PATH__, 97 + __BUILD_TIMESTAMP_MS__, 98 + __NEXT_BASE_PATH__, 99 + __ASSETS_RUN_WORKER_FIRST__, 99 100 // The external middleware will use the convertTo function of the `edge` converter 100 101 // by default it will try to fetch the request, but since we are running everything in the same worker 101 102 // we need to use the request as is. ··· 146 147 var __BUILD_TIMESTAMP_MS__: number; 147 148 // Next basePath 148 149 var __NEXT_BASE_PATH__: string; 150 + // Value of `run_worker_first` for the asset binding 151 + var __ASSETS_RUN_WORKER_FIRST__: boolean | string[] | undefined; 149 152 } 150 153 /* eslint-enable no-var */
+54
packages/cloudflare/src/cli/utils/run-wrangler.spec.ts
··· 1 + import { describe, expect, test } from "vitest"; 2 + 3 + import { getFlagValue, getWranglerConfigFlag, getWranglerEnvironmentFlag } from "./run-wrangler.js"; 4 + 5 + describe("getFlagValue", () => { 6 + test("long", () => { 7 + expect(getFlagValue(["--flag", "value"], "--flag", "-f")).toEqual("value"); 8 + expect(getFlagValue(["--flag=value"], "--flag", "-f")).toEqual("value"); 9 + }); 10 + 11 + test("short", () => { 12 + expect(getFlagValue(["-f", "value"], "--flag", "-f")).toEqual("value"); 13 + expect(getFlagValue(["-f=value"], "--flag", "-f")).toEqual("value"); 14 + }); 15 + 16 + test("not found", () => { 17 + expect(getFlagValue(["--some", "value"], "--other", "-o")).toBeUndefined(); 18 + expect(getFlagValue(["--some=value"], "--other", "-o")).toBeUndefined(); 19 + }); 20 + }); 21 + 22 + describe("getWranglerEnvironmentFlag", () => { 23 + test("long", () => { 24 + expect(getWranglerEnvironmentFlag(["--env", "value"])).toEqual("value"); 25 + expect(getWranglerEnvironmentFlag(["--env=value"])).toEqual("value"); 26 + }); 27 + 28 + test("short", () => { 29 + expect(getWranglerEnvironmentFlag(["-e", "value"])).toEqual("value"); 30 + expect(getWranglerEnvironmentFlag(["-e=value"])).toEqual("value"); 31 + }); 32 + 33 + test("not found", () => { 34 + expect(getWranglerEnvironmentFlag(["--some", "value"])).toBeUndefined(); 35 + expect(getWranglerEnvironmentFlag(["--some=value"])).toBeUndefined(); 36 + }); 37 + }); 38 + 39 + describe("getWranglerConfigFlag", () => { 40 + test("long", () => { 41 + expect(getWranglerConfigFlag(["--config", "path/to/wrangler.jsonc"])).toEqual("path/to/wrangler.jsonc"); 42 + expect(getWranglerConfigFlag(["--config=path/to/wrangler.jsonc"])).toEqual("path/to/wrangler.jsonc"); 43 + }); 44 + 45 + test("short", () => { 46 + expect(getWranglerConfigFlag(["-c", "path/to/wrangler.jsonc"])).toEqual("path/to/wrangler.jsonc"); 47 + expect(getWranglerConfigFlag(["-c=path/to/wrangler.jsonc"])).toEqual("path/to/wrangler.jsonc"); 48 + }); 49 + 50 + test("not found", () => { 51 + expect(getWranglerConfigFlag(["--some", "value"])).toBeUndefined(); 52 + expect(getWranglerConfigFlag(["--some=value"])).toBeUndefined(); 53 + }); 54 + });
+42 -12
packages/cloudflare/src/cli/utils/run-wrangler.ts
··· 91 91 } 92 92 93 93 /** 94 - * Find the value of the environment flag (`--env` / `-e`) used by Wrangler. 94 + * Returns the value of the flag. 95 + * 96 + * The value is retrieved for `<argName> value` or `<argName>=value`. 95 97 * 96 - * @param args - CLI arguments. 97 - * @returns Value of the environment flag. 98 + * @param args List of args 99 + * @param argName The arg name with leading dashes, i.e. `--env` or `-e` 100 + * @returns The value or undefined when not found 98 101 */ 99 - export function getWranglerEnvironmentFlag(args: string[]) { 100 - for (let i = 0; i <= args.length; i++) { 101 - const arg = args[i]; 102 - if (!arg) continue; 102 + export function getFlagValue(args: string[], ...argNames: string[]): string | undefined { 103 + if (argNames.some((name) => !name.startsWith("-"))) { 104 + // Names should start with "-" or "--" 105 + throw new Error(`Invalid arg names: ${argNames}`); 106 + } 103 107 104 - if (arg === "--env" || arg === "-e") { 105 - return args[i + 1]; 106 - } 108 + for (const argName of argNames) { 109 + for (let i = 0; i <= args.length; i++) { 110 + const arg = args[i]; 111 + if (!arg) continue; 107 112 108 - if (arg.startsWith("--env=") || arg.startsWith("-e=")) { 109 - return arg.split("=")[1]; 113 + if (arg === argName) { 114 + return args[i + 1]; 115 + } 116 + 117 + if (arg.startsWith(argName)) { 118 + return arg.split("=")[1]; 119 + } 110 120 } 111 121 } 112 122 } 123 + 124 + /** 125 + * Find the value of the environment flag (`--env` / `-e`) used by Wrangler. 126 + * 127 + * @param args - CLI arguments. 128 + * @returns Value of the environment flag or undefined when not found 129 + */ 130 + export function getWranglerEnvironmentFlag(args: string[]): string | undefined { 131 + return getFlagValue(args, "--env", "-e"); 132 + } 133 + 134 + /** 135 + * Find the value of the config flag (`--config` / `-c`) used by Wrangler. 136 + * 137 + * @param args - CLI arguments. 138 + * @returns Value of the config flag or undefined when not found 139 + */ 140 + export function getWranglerConfigFlag(args: string[]): string | undefined { 141 + return getFlagValue(args, "--config", "-c"); 142 + }
+802 -657
pnpm-lock.yaml
··· 82 82 specifier: ^2.1.1 83 83 version: 2.1.1 84 84 wrangler: 85 - specifier: ^4.19.1 86 - version: 4.19.1 85 + specifier: ^4.23.0 86 + version: 4.23.0 87 87 e2e: 88 88 '@types/node': 89 89 specifier: 20.17.6 ··· 192 192 version: 5.7.3 193 193 wrangler: 194 194 specifier: 'catalog:' 195 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 195 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 196 196 197 197 examples/bugs/gh-219: 198 198 dependencies: ··· 319 319 version: 39.4.2(rollup@4.40.1) 320 320 wrangler: 321 321 specifier: 'catalog:' 322 - version: 4.19.1(@cloudflare/workers-types@4.20250109.0) 322 + version: 4.23.0(@cloudflare/workers-types@4.20250109.0) 323 323 324 324 examples/bugs/gh-223: 325 325 dependencies: ··· 374 374 version: 5.7.3 375 375 wrangler: 376 376 specifier: 'catalog:' 377 - version: 4.19.1(@cloudflare/workers-types@4.20250109.0) 377 + version: 4.23.0(@cloudflare/workers-types@4.20250109.0) 378 378 379 379 examples/create-next-app: 380 380 dependencies: ··· 420 420 version: 5.7.3 421 421 wrangler: 422 422 specifier: 'catalog:' 423 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 423 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 424 424 425 425 examples/e2e/app-pages-router: 426 426 dependencies: ··· 466 466 version: 5.7.3 467 467 wrangler: 468 468 specifier: 'catalog:' 469 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 469 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 470 470 471 471 examples/e2e/app-router: 472 472 dependencies: ··· 512 512 version: 5.7.3 513 513 wrangler: 514 514 specifier: 'catalog:' 515 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 515 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 516 516 517 517 examples/e2e/experimental: 518 518 dependencies: ··· 546 546 version: 5.7.3 547 547 wrangler: 548 548 specifier: 'catalog:' 549 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 549 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 550 550 551 551 examples/e2e/pages-router: 552 552 dependencies: ··· 592 592 version: 5.7.3 593 593 wrangler: 594 594 specifier: 'catalog:' 595 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 595 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 596 596 597 597 examples/e2e/shared: 598 598 dependencies: ··· 651 651 version: 5.7.3 652 652 wrangler: 653 653 specifier: 'catalog:' 654 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 654 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 655 655 656 656 examples/next-partial-prerendering: 657 657 dependencies: ··· 712 712 version: 5.5.3 713 713 wrangler: 714 714 specifier: 'catalog:' 715 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 715 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 716 716 717 717 examples/overrides/d1-tag-next: 718 718 dependencies: ··· 746 746 version: 5.7.3 747 747 wrangler: 748 748 specifier: 'catalog:' 749 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 749 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 750 750 751 751 examples/overrides/memory-queue: 752 752 dependencies: ··· 780 780 version: 5.7.3 781 781 wrangler: 782 782 specifier: 'catalog:' 783 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 783 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 784 784 785 785 examples/overrides/r2-incremental-cache: 786 786 dependencies: ··· 814 814 version: 5.7.3 815 815 wrangler: 816 816 specifier: 'catalog:' 817 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 817 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 818 818 819 819 examples/overrides/static-assets-incremental-cache: 820 820 dependencies: ··· 848 848 version: 5.7.3 849 849 wrangler: 850 850 specifier: 'catalog:' 851 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 851 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 852 852 853 853 examples/playground14: 854 854 dependencies: ··· 873 873 version: 22.2.0 874 874 wrangler: 875 875 specifier: 'catalog:' 876 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 876 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 877 877 878 878 examples/playground15: 879 879 dependencies: ··· 898 898 version: 22.2.0 899 899 wrangler: 900 900 specifier: 'catalog:' 901 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 901 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 902 902 903 903 examples/prisma: 904 904 dependencies: ··· 938 938 version: 5.7.3 939 939 wrangler: 940 940 specifier: 'catalog:' 941 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 941 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 942 942 943 943 examples/ssg-app: 944 944 dependencies: ··· 972 972 version: 5.7.3 973 973 wrangler: 974 974 specifier: 'catalog:' 975 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 975 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 976 976 977 977 examples/vercel-blog-starter: 978 978 dependencies: ··· 1027 1027 version: 5.7.3 1028 1028 wrangler: 1029 1029 specifier: 'catalog:' 1030 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 1030 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 1031 1031 1032 1032 packages/cloudflare: 1033 1033 dependencies: ··· 1048 1048 version: 0.8.6 1049 1049 wrangler: 1050 1050 specifier: 'catalog:' 1051 - version: 4.19.1(@cloudflare/workers-types@4.20250224.0) 1051 + version: 4.23.0(@cloudflare/workers-types@4.20250224.0) 1052 1052 devDependencies: 1053 1053 '@cloudflare/workers-types': 1054 1054 specifier: 'catalog:' ··· 1217 1217 resolution: {integrity: sha512-kISKhqN1k48TaMPbLgq9jj7mO2jvbJdhirvfu4JW3jhFhENnkY0oCwTPvR4Q6Ne2as6GFAMo2XZDZq4rxC7YDw==} 1218 1218 engines: {node: '>=14.0.0'} 1219 1219 1220 - '@aws-sdk/client-dynamodb@3.799.0': 1221 - resolution: {integrity: sha512-EPUxhG5Kk5bs5P0Lnv97i5mUb8e6b3jokbOnElrEQxnGd+1uZFM0X+3w7IjVNrLR4nAeFE4+k+h4p44YOAFNKg==} 1220 + '@aws-sdk/client-dynamodb@3.840.0': 1221 + resolution: {integrity: sha512-eLLKMwORBJ32YyKRo2LhWtYAYoWdnEPZSo6CyD4QUcsOosvPGdJgz4s13O3AmC60Sn43X5g3Zc4vgKvhZCfkUw==} 1222 1222 engines: {node: '>=18.0.0'} 1223 1223 1224 - '@aws-sdk/client-lambda@3.799.0': 1225 - resolution: {integrity: sha512-6GTL1zLtbi4ebcx+RBpU1dVYX7ReI3lt+rG3lzdYzRFa1OFnKVLSC5h06Y6arIMub9jtIWE060LioD3DoQteLw==} 1224 + '@aws-sdk/client-lambda@3.840.0': 1225 + resolution: {integrity: sha512-aUKHKWW4Z1nxQ0q/shHkSA278oyv+lRJSvpin1GJXQumDdMKcOuXktmufOCZzjbl6UVw/Pqaw6V1Vo2gda6RdQ==} 1226 1226 engines: {node: '>=18.0.0'} 1227 1227 1228 1228 '@aws-sdk/client-s3@3.726.1': 1229 1229 resolution: {integrity: sha512-UpOGcob87DiuS2d3fW6vDZg94g57mNiOSkzvR/6GOdvBSlUgk8LLwVzGASB71FdKMl1EGEr4MeD5uKH9JsG+dw==} 1230 1230 engines: {node: '>=18.0.0'} 1231 1231 1232 - '@aws-sdk/client-s3@3.802.0': 1233 - resolution: {integrity: sha512-YIwLLiqRZArEmRI94X8MOpWuXlmxI3NnxYv+3kk6HIc2YWPaOAf0YN7vWlnQFWo6Yi1gBRtP0HM8WzK4Bn5ORQ==} 1234 - engines: {node: '>=18.0.0'} 1235 - 1236 - '@aws-sdk/client-sqs@3.799.0': 1237 - resolution: {integrity: sha512-2GEiwR2SO74AtSakEAQqHQdcWQsofUFeBGv5HVJeu/ewhKuKb8T6cm0RJ+Xhr7BWqOTRbP8sTQYPV+XVV6cn7A==} 1232 + '@aws-sdk/client-sqs@3.840.0': 1233 + resolution: {integrity: sha512-e14G4W8hw9uFrKh4w9CNUrIUuAd6sETOuuTQFD7FYPMoZDlNvEcStE53yr0Egw0D0poqNzedKF4aZJH5MzyB9A==} 1238 1234 engines: {node: '>=18.0.0'} 1239 1235 1240 1236 '@aws-sdk/client-sso-oidc@3.726.0': ··· 1251 1247 resolution: {integrity: sha512-NM5pjv2qglEc4XN3nnDqtqGsSGv1k5YTmzDo3W3pObItHmpS8grSeNfX9zSH+aVl0Q8hE4ZIgvTPNZ+GzwVlqg==} 1252 1248 engines: {node: '>=18.0.0'} 1253 1249 1254 - '@aws-sdk/client-sso@3.799.0': 1255 - resolution: {integrity: sha512-/i/LG7AiWPmPxKCA2jnR2zaf7B3HYSTbxaZI21ElIz9wASlNAsKr8CnLY7qb50kOyXiNfQ834S5Q3Gl8dX9o3Q==} 1250 + '@aws-sdk/client-sso@3.840.0': 1251 + resolution: {integrity: sha512-3Zp+FWN2hhmKdpS0Ragi5V2ZPsZNScE3jlbgoJjzjI/roHZqO+e3/+XFN4TlM0DsPKYJNp+1TAjmhxN6rOnfYA==} 1256 1252 engines: {node: '>=18.0.0'} 1257 1253 1258 1254 '@aws-sdk/client-sts@3.398.0': ··· 1271 1267 resolution: {integrity: sha512-SxnDqf3vobdm50OLyAKfqZetv6zzwnSqwIwd3jrbopxxHKqNIM/I0xcYjD6Tn+mPig+u7iRKb9q3QnEooFTlmg==} 1272 1268 engines: {node: '>=18.0.0'} 1273 1269 1274 - '@aws-sdk/core@3.799.0': 1275 - resolution: {integrity: sha512-hkKF3Zpc6+H8GI1rlttYVRh9uEE77cqAzLmLpY3iu7sql8cZgPERRBfaFct8p1SaDyrksLNiboD1vKW58mbsYg==} 1270 + '@aws-sdk/core@3.840.0': 1271 + resolution: {integrity: sha512-x3Zgb39tF1h2XpU+yA4OAAQlW6LVEfXNlSedSYJ7HGKXqA/E9h3rWQVpYfhXXVVsLdYXdNw5KBUkoAoruoZSZA==} 1276 1272 engines: {node: '>=18.0.0'} 1277 1273 1278 1274 '@aws-sdk/credential-provider-env@3.398.0': ··· 1283 1279 resolution: {integrity: sha512-OuH2yULYUHTVDUotBoP/9AEUIJPn81GQ/YBtZLoo2QyezRJ2QiO/1epVtbJlhNZRwXrToLEDmQGA2QfC8c7pbA==} 1284 1280 engines: {node: '>=18.0.0'} 1285 1281 1286 - '@aws-sdk/credential-provider-env@3.799.0': 1287 - resolution: {integrity: sha512-vT/SSWtbUIOW/U21qgEySmmO44SFWIA7WeQPX1OrI8WJ5n7OEI23JWLHjLvHTkYmuZK6z1rPcv7HzRgmuGRibA==} 1282 + '@aws-sdk/credential-provider-env@3.840.0': 1283 + resolution: {integrity: sha512-EzF6VcJK7XvQ/G15AVEfJzN2mNXU8fcVpXo4bRyr1S6t2q5zx6UPH/XjDbn18xyUmOq01t+r8gG+TmHEVo18fA==} 1288 1284 engines: {node: '>=18.0.0'} 1289 1285 1290 1286 '@aws-sdk/credential-provider-http@3.723.0': 1291 1287 resolution: {integrity: sha512-DTsKC6xo/kz/ZSs1IcdbQMTgiYbpGTGEd83kngFc1bzmw7AmK92DBZKNZpumf8R/UfSpTcj9zzUUmrWz1kD0eQ==} 1292 1288 engines: {node: '>=18.0.0'} 1293 1289 1294 - '@aws-sdk/credential-provider-http@3.799.0': 1295 - resolution: {integrity: sha512-2CjBpOWmhaPAExOgHnIB5nOkS5ef+mfRlJ1JC4nsnjAx0nrK4tk0XRE0LYz11P3+ue+a86cU8WTmBo+qjnGxPQ==} 1290 + '@aws-sdk/credential-provider-http@3.840.0': 1291 + resolution: {integrity: sha512-wbnUiPGLVea6mXbUh04fu+VJmGkQvmToPeTYdHE8eRZq3NRDi3t3WltT+jArLBKD/4NppRpMjf2ju4coMCz91g==} 1296 1292 engines: {node: '>=18.0.0'} 1297 1293 1298 1294 '@aws-sdk/credential-provider-ini@3.398.0': ··· 1305 1301 peerDependencies: 1306 1302 '@aws-sdk/client-sts': ^3.726.0 1307 1303 1308 - '@aws-sdk/credential-provider-ini@3.799.0': 1309 - resolution: {integrity: sha512-M9ubILFxerqw4QJwk83MnjtZyoA2eNCiea5V+PzZeHlwk2PON/EnawKqy65x9/hMHGoSvvNuby7iMAmPptu7yw==} 1304 + '@aws-sdk/credential-provider-ini@3.840.0': 1305 + resolution: {integrity: sha512-7F290BsWydShHb+7InXd+IjJc3mlEIm9I0R57F/Pjl1xZB69MdkhVGCnuETWoBt4g53ktJd6NEjzm/iAhFXFmw==} 1310 1306 engines: {node: '>=18.0.0'} 1311 1307 1312 1308 '@aws-sdk/credential-provider-node@3.398.0': ··· 1317 1313 resolution: {integrity: sha512-jjsewBcw/uLi24x8JbnuDjJad4VA9ROCE94uVRbEnGmUEsds75FWOKp3fWZLQlmjLtzsIbJOZLALkZP86liPaw==} 1318 1314 engines: {node: '>=18.0.0'} 1319 1315 1320 - '@aws-sdk/credential-provider-node@3.799.0': 1321 - resolution: {integrity: sha512-nd9fSJc0wUlgKUkIr2ldJhcIIrzJFS29AGZoyY22J3xih63nNDv61eTGVMsDZzHlV21XzMlPEljTR7axiimckg==} 1316 + '@aws-sdk/credential-provider-node@3.840.0': 1317 + resolution: {integrity: sha512-KufP8JnxA31wxklLm63evUPSFApGcH8X86z3mv9SRbpCm5ycgWIGVCTXpTOdgq6rPZrwT9pftzv2/b4mV/9clg==} 1322 1318 engines: {node: '>=18.0.0'} 1323 1319 1324 1320 '@aws-sdk/credential-provider-process@3.398.0': ··· 1329 1325 resolution: {integrity: sha512-fgupvUjz1+jeoCBA7GMv0L6xEk92IN6VdF4YcFhsgRHlHvNgm7ayaoKQg7pz2JAAhG/3jPX6fp0ASNy+xOhmPA==} 1330 1326 engines: {node: '>=18.0.0'} 1331 1327 1332 - '@aws-sdk/credential-provider-process@3.799.0': 1333 - resolution: {integrity: sha512-g8jmNs2k98WNHMYcea1YKA+7ao2Ma4w0P42Dz4YpcI155pQHxHx25RwbOG+rsAKuo3bKwkW53HVE/ZTKhcWFgw==} 1328 + '@aws-sdk/credential-provider-process@3.840.0': 1329 + resolution: {integrity: sha512-HkDQWHy8tCI4A0Ps2NVtuVYMv9cB4y/IuD/TdOsqeRIAT12h8jDb98BwQPNLAImAOwOWzZJ8Cu0xtSpX7CQhMw==} 1334 1330 engines: {node: '>=18.0.0'} 1335 1331 1336 1332 '@aws-sdk/credential-provider-sso@3.398.0': ··· 1341 1337 resolution: {integrity: sha512-WxkN76WeB08j2yw7jUH9yCMPxmT9eBFd9ZA/aACG7yzOIlsz7gvG3P2FQ0tVg25GHM0E4PdU3p/ByTOawzcOAg==} 1342 1338 engines: {node: '>=18.0.0'} 1343 1339 1344 - '@aws-sdk/credential-provider-sso@3.799.0': 1345 - resolution: {integrity: sha512-lQv27QkNU9FJFZqEf5DIEN3uXEN409Iaym9WJzhOouGtxvTIAWiD23OYh1u8PvBdrordJGS2YddfQvhcmq9akw==} 1340 + '@aws-sdk/credential-provider-sso@3.840.0': 1341 + resolution: {integrity: sha512-2qgdtdd6R0Z1y0KL8gzzwFUGmhBHSUx4zy85L2XV1CXhpRNwV71SVWJqLDVV5RVWVf9mg50Pm3AWrUC0xb0pcA==} 1346 1342 engines: {node: '>=18.0.0'} 1347 1343 1348 1344 '@aws-sdk/credential-provider-web-identity@3.398.0': ··· 1355 1351 peerDependencies: 1356 1352 '@aws-sdk/client-sts': ^3.723.0 1357 1353 1358 - '@aws-sdk/credential-provider-web-identity@3.799.0': 1359 - resolution: {integrity: sha512-8k1i9ut+BEg0QZ+I6UQMxGNR1T8paLmAOAZXU+nLQR0lcxS6lr8v+dqofgzQPuHLBkWNCr1Av1IKeL3bJjgU7g==} 1354 + '@aws-sdk/credential-provider-web-identity@3.840.0': 1355 + resolution: {integrity: sha512-dpEeVXG8uNZSmVXReE4WP0lwoioX2gstk4RnUgrdUE3YaPq8A+hJiVAyc3h+cjDeIqfbsQbZm9qFetKC2LF9dQ==} 1360 1356 engines: {node: '>=18.0.0'} 1361 1357 1362 - '@aws-sdk/endpoint-cache@3.723.0': 1363 - resolution: {integrity: sha512-2+a4WXRc+07uiPR+zJiPGKSOWaNJQNqitkks+6Hhm/haTLJqNVTgY2OWDh2PXvwMNpKB+AlGdhE65Oy6NzUgXg==} 1358 + '@aws-sdk/endpoint-cache@3.804.0': 1359 + resolution: {integrity: sha512-TQVDkA/lV6ua75ELZaichMzlp6x7tDa1bqdy/+0ZftmODPtKXuOOEcJxmdN7Ui/YRo1gkRz2D9txYy7IlNg1Og==} 1364 1360 engines: {node: '>=18.0.0'} 1365 1361 1366 1362 '@aws-sdk/middleware-bucket-endpoint@3.726.0': 1367 1363 resolution: {integrity: sha512-vpaP80rZqwu0C3ELayIcRIW84/nd1tadeoqllT+N9TDshuEvq4UJ+w47OBHB7RkHFJoc79lXXNYle0fdQdaE/A==} 1368 1364 engines: {node: '>=18.0.0'} 1369 1365 1370 - '@aws-sdk/middleware-bucket-endpoint@3.775.0': 1371 - resolution: {integrity: sha512-qogMIpVChDYr4xiUNC19/RDSw/sKoHkAhouS6Skxiy6s27HBhow1L3Z1qVYXuBmOZGSWPU0xiyZCvOyWrv9s+Q==} 1372 - engines: {node: '>=18.0.0'} 1373 - 1374 - '@aws-sdk/middleware-endpoint-discovery@3.775.0': 1375 - resolution: {integrity: sha512-L0PmjSg7t+wovRo/Lin1kpei3e7wBhrENWb1Bbccu3PWUIfxolGeWplOmNhSlXjuQe9GXjf3z8kJRYOGBMFOvw==} 1366 + '@aws-sdk/middleware-endpoint-discovery@3.840.0': 1367 + resolution: {integrity: sha512-IJDShY5NOg9luTE8h4o2Bm+gsPnHIU0tVWCjMz8vZMLevYjKdIsatcXiu3huTOjKSnelzC9fBHfU6KKsHmjjBQ==} 1376 1368 engines: {node: '>=18.0.0'} 1377 1369 1378 1370 '@aws-sdk/middleware-expect-continue@3.723.0': 1379 1371 resolution: {integrity: sha512-w/O0EkIzkiqvGu7U8Ke7tue0V0HYM5dZQrz6nVU+R8T2LddWJ+njEIHU4Wh8aHPLQXdZA5NQumv0xLPdEutykw==} 1380 1372 engines: {node: '>=18.0.0'} 1381 1373 1382 - '@aws-sdk/middleware-expect-continue@3.775.0': 1383 - resolution: {integrity: sha512-Apd3owkIeUW5dnk3au9np2IdW2N0zc9NjTjHiH+Mx3zqwSrc+m+ANgJVgk9mnQjMzU/vb7VuxJ0eqdEbp5gYsg==} 1384 - engines: {node: '>=18.0.0'} 1385 - 1386 1374 '@aws-sdk/middleware-flexible-checksums@3.723.0': 1387 1375 resolution: {integrity: sha512-JY76mrUCLa0FHeMZp8X9+KK6uEuZaRZaQrlgq6zkXX/3udukH0T3YdFC+Y9uw5ddbiwZ5+KwgmlhnPpiXKfP4g==} 1388 1376 engines: {node: '>=18.0.0'} 1389 1377 1390 - '@aws-sdk/middleware-flexible-checksums@3.799.0': 1391 - resolution: {integrity: sha512-vBIAdDl2neaFiUMxyr7dAtX7m9Iw5c0bz7OirD0JGW0nYn0mBcqKpFZEU75ewA5p2+Cm7RQDdt6099ne3gj0WA==} 1392 - engines: {node: '>=18.0.0'} 1393 - 1394 1378 '@aws-sdk/middleware-host-header@3.398.0': 1395 1379 resolution: {integrity: sha512-m+5laWdBaxIZK2ko0OwcCHJZJ5V1MgEIt8QVQ3k4/kOkN9ICjevOYmba751pHoTnbOYB7zQd6D2OT3EYEEsUcA==} 1396 1380 engines: {node: '>=14.0.0'} ··· 1399 1383 resolution: {integrity: sha512-LLVzLvk299pd7v4jN9yOSaWDZDfH0SnBPb6q+FDPaOCMGBY8kuwQso7e/ozIKSmZHRMGO3IZrflasHM+rI+2YQ==} 1400 1384 engines: {node: '>=18.0.0'} 1401 1385 1402 - '@aws-sdk/middleware-host-header@3.775.0': 1403 - resolution: {integrity: sha512-tkSegM0Z6WMXpLB8oPys/d+umYIocvO298mGvcMCncpRl77L9XkvSLJIFzaHes+o7djAgIduYw8wKIMStFss2w==} 1386 + '@aws-sdk/middleware-host-header@3.840.0': 1387 + resolution: {integrity: sha512-ub+hXJAbAje94+Ya6c6eL7sYujoE8D4Bumu1NUI8TXjUhVVn0HzVWQjpRLshdLsUp1AW7XyeJaxyajRaJQ8+Xg==} 1404 1388 engines: {node: '>=18.0.0'} 1405 1389 1406 1390 '@aws-sdk/middleware-location-constraint@3.723.0': 1407 1391 resolution: {integrity: sha512-inp9tyrdRWjGOMu1rzli8i2gTo0P4X6L7nNRXNTKfyPNZcBimZ4H0H1B671JofSI5isaklVy5r4pvv2VjjLSHw==} 1408 1392 engines: {node: '>=18.0.0'} 1409 1393 1410 - '@aws-sdk/middleware-location-constraint@3.775.0': 1411 - resolution: {integrity: sha512-8TMXEHZXZTFTckQLyBT5aEI8fX11HZcwZseRifvBKKpj0RZDk4F0EEYGxeNSPpUQ7n+PRWyfAEnnZNRdAj/1NQ==} 1412 - engines: {node: '>=18.0.0'} 1413 - 1414 1394 '@aws-sdk/middleware-logger@3.398.0': 1415 1395 resolution: {integrity: sha512-CiJjW+FL12elS6Pn7/UVjVK8HWHhXMfvHZvOwx/Qkpy340sIhkuzOO6fZEruECDTZhl2Wqn81XdJ1ZQ4pRKpCg==} 1416 1396 engines: {node: '>=14.0.0'} ··· 1419 1399 resolution: {integrity: sha512-chASQfDG5NJ8s5smydOEnNK7N0gDMyuPbx7dYYcm1t/PKtnVfvWF+DHCTrRC2Ej76gLJVCVizlAJKM8v8Kg3cg==} 1420 1400 engines: {node: '>=18.0.0'} 1421 1401 1422 - '@aws-sdk/middleware-logger@3.775.0': 1423 - resolution: {integrity: sha512-FaxO1xom4MAoUJsldmR92nT1G6uZxTdNYOFYtdHfd6N2wcNaTuxgjIvqzg5y7QIH9kn58XX/dzf1iTjgqUStZw==} 1402 + '@aws-sdk/middleware-logger@3.840.0': 1403 + resolution: {integrity: sha512-lSV8FvjpdllpGaRspywss4CtXV8M7NNNH+2/j86vMH+YCOZ6fu2T/TyFd/tHwZ92vDfHctWkRbQxg0bagqwovA==} 1424 1404 engines: {node: '>=18.0.0'} 1425 1405 1426 1406 '@aws-sdk/middleware-recursion-detection@3.398.0': ··· 1431 1411 resolution: {integrity: sha512-7usZMtoynT9/jxL/rkuDOFQ0C2mhXl4yCm67Rg7GNTstl67u7w5WN1aIRImMeztaKlw8ExjoTyo6WTs1Kceh7A==} 1432 1412 engines: {node: '>=18.0.0'} 1433 1413 1434 - '@aws-sdk/middleware-recursion-detection@3.775.0': 1435 - resolution: {integrity: sha512-GLCzC8D0A0YDG5u3F5U03Vb9j5tcOEFhr8oc6PDk0k0vm5VwtZOE6LvK7hcCSoAB4HXyOUM0sQuXrbaAh9OwXA==} 1414 + '@aws-sdk/middleware-recursion-detection@3.840.0': 1415 + resolution: {integrity: sha512-Gu7lGDyfddyhIkj1Z1JtrY5NHb5+x/CRiB87GjaSrKxkDaydtX2CU977JIABtt69l9wLbcGDIQ+W0uJ5xPof7g==} 1436 1416 engines: {node: '>=18.0.0'} 1437 1417 1438 1418 '@aws-sdk/middleware-sdk-s3@3.723.0': ··· 1443 1423 resolution: {integrity: sha512-VML9TzNoQdAs5lSPQSEgZiPgMUSz2H7SltaLb9g4tHwKK5xQoTq5WcDd6V1d2aPxSN5Q2Q63aiVUBby6MdUN/Q==} 1444 1424 engines: {node: '>=18.0.0'} 1445 1425 1446 - '@aws-sdk/middleware-sdk-s3@3.799.0': 1447 - resolution: {integrity: sha512-Zwdge5NArgcJwPuGZwgfXY6XXkWEBmMS9dqu5g3DcfHmZUuSjQUqmOsDdSZlE3RFHrDAEbuGQlrFUE8zuwdKQA==} 1448 - engines: {node: '>=18.0.0'} 1449 - 1450 - '@aws-sdk/middleware-sdk-sqs@3.798.0': 1451 - resolution: {integrity: sha512-vWIlwbgNuWJ4FvsEMCN5CLdwUzCvIU20QT4g0g05+y0CbXCD3FIhcRyQv3LF1tujZNSvQp9z7FZsfghm9oLFLw==} 1426 + '@aws-sdk/middleware-sdk-sqs@3.840.0': 1427 + resolution: {integrity: sha512-NJVSWkidhfKvU8CTqK17mJnP2IPuJxgbjbSHm3gmvamuewTM291cdgU/xM8eKhHfiF8Us8P7rji3ZhoOzz797w==} 1452 1428 engines: {node: '>=18.0.0'} 1453 1429 1454 1430 '@aws-sdk/middleware-sdk-sts@3.398.0': ··· 1461 1437 1462 1438 '@aws-sdk/middleware-ssec@3.723.0': 1463 1439 resolution: {integrity: sha512-Bs+8RAeSMik6ZYCGSDJzJieGsDDh2fRbh1HQG94T8kpwBXVxMYihm6e9Xp2cyl+w9fyyCnh0IdCKChP/DvrdhA==} 1464 - engines: {node: '>=18.0.0'} 1465 - 1466 - '@aws-sdk/middleware-ssec@3.775.0': 1467 - resolution: {integrity: sha512-Iw1RHD8vfAWWPzBBIKaojO4GAvQkHOYIpKdAfis/EUSUmSa79QsnXnRqsdcE0mCB0Ylj23yi+ah4/0wh9FsekA==} 1468 1440 engines: {node: '>=18.0.0'} 1469 1441 1470 1442 '@aws-sdk/middleware-user-agent@3.398.0': ··· 1475 1447 resolution: {integrity: sha512-hZvzuE5S0JmFie1r68K2wQvJbzyxJFdzltj9skgnnwdvLe8F/tz7MqLkm28uV0m4jeHk0LpiBo6eZaPkQiwsZQ==} 1476 1448 engines: {node: '>=18.0.0'} 1477 1449 1478 - '@aws-sdk/middleware-user-agent@3.799.0': 1479 - resolution: {integrity: sha512-TropQZanbOTxa+p+Nl4fWkzlRhgFwDfW+Wb6TR3jZN7IXHNlPpgGFpdrgvBExhW/RBhqr+94OsR8Ou58lp3hhA==} 1450 + '@aws-sdk/middleware-user-agent@3.840.0': 1451 + resolution: {integrity: sha512-hiiMf7BP5ZkAFAvWRcK67Mw/g55ar7OCrvrynC92hunx/xhMkrgSLM0EXIZ1oTn3uql9kH/qqGF0nqsK6K555A==} 1480 1452 engines: {node: '>=18.0.0'} 1481 1453 1482 - '@aws-sdk/nested-clients@3.799.0': 1483 - resolution: {integrity: sha512-zILlWh7asrcQG9JYMYgnvEQBfwmWKfED0yWCf3UNAmQcfS9wkCAWCgicNy/y5KvNvEYnHidsU117STtyuUNG5g==} 1454 + '@aws-sdk/nested-clients@3.840.0': 1455 + resolution: {integrity: sha512-LXYYo9+n4hRqnRSIMXLBb+BLz+cEmjMtTudwK1BF6Bn2RfdDv29KuyeDRrPCS3TwKl7ZKmXUmE9n5UuHAPfBpA==} 1484 1456 engines: {node: '>=18.0.0'} 1485 1457 1486 1458 '@aws-sdk/region-config-resolver@3.723.0': 1487 1459 resolution: {integrity: sha512-tGF/Cvch3uQjZIj34LY2mg8M2Dr4kYG8VU8Yd0dFnB1ybOEOveIK/9ypUo9ycZpB9oO6q01KRe5ijBaxNueUQg==} 1488 1460 engines: {node: '>=18.0.0'} 1489 1461 1490 - '@aws-sdk/region-config-resolver@3.775.0': 1491 - resolution: {integrity: sha512-40iH3LJjrQS3LKUJAl7Wj0bln7RFPEvUYKFxtP8a+oKFDO0F65F52xZxIJbPn6sHkxWDAnZlGgdjZXM3p2g5wQ==} 1462 + '@aws-sdk/region-config-resolver@3.840.0': 1463 + resolution: {integrity: sha512-Qjnxd/yDv9KpIMWr90ZDPtRj0v75AqGC92Lm9+oHXZ8p1MjG5JE2CW0HL8JRgK9iKzgKBL7pPQRXI8FkvEVfrA==} 1492 1464 engines: {node: '>=18.0.0'} 1493 1465 1494 1466 '@aws-sdk/s3-request-presigner@3.741.0': ··· 1503 1475 resolution: {integrity: sha512-w+psidN3i+kl51nQEV3V+fKjKUqcEbqUA1GtubruDBvBqrl5El/fU2NF3Lo53y8CfI9wCdf3V7KOEpHIqxHNng==} 1504 1476 engines: {node: '>=18.0.0'} 1505 1477 1506 - '@aws-sdk/signature-v4-multi-region@3.800.0': 1507 - resolution: {integrity: sha512-c71wZuiSUHNFCvcuqOv3jbqP+NquB2YKN4qX90OwYXEqUKn8F8fKJPpjjHjz1eK6qWKtECR4V/NTno2P70Yz/Q==} 1508 - engines: {node: '>=18.0.0'} 1509 - 1510 1478 '@aws-sdk/token-providers@3.398.0': 1511 1479 resolution: {integrity: sha512-nrYgjzavGCKJL/48Vt0EL+OlIc5UZLfNGpgyUW9cv3XZwl+kXV0QB+HH0rHZZLfpbBgZ2RBIJR9uD5ieu/6hpQ==} 1512 1480 engines: {node: '>=14.0.0'} ··· 1517 1485 peerDependencies: 1518 1486 '@aws-sdk/client-sso-oidc': ^3.723.0 1519 1487 1520 - '@aws-sdk/token-providers@3.799.0': 1521 - resolution: {integrity: sha512-/8iDjnsJs/D8AhGbDAmdF5oSHzE4jsDsM2RIIxmBAKTZXkaaclQBNX9CmAqLKQmO3IUMZsDH2KENHLVAk/N/mw==} 1488 + '@aws-sdk/token-providers@3.840.0': 1489 + resolution: {integrity: sha512-6BuTOLTXvmgwjK7ve7aTg9JaWFdM5UoMolLVPMyh3wTv9Ufalh8oklxYHUBIxsKkBGO2WiHXytveuxH6tAgTYg==} 1522 1490 engines: {node: '>=18.0.0'} 1523 1491 1524 1492 '@aws-sdk/types@3.398.0': ··· 1537 1505 resolution: {integrity: sha512-ZoGKwa4C9fC9Av6bdfqcW6Ix5ot05F/S4VxWR2nHuMv7hzfmAjTOcUiWT7UR4hM/U0whf84VhDtXN/DWAk52KA==} 1538 1506 engines: {node: '>=18.0.0'} 1539 1507 1508 + '@aws-sdk/types@3.840.0': 1509 + resolution: {integrity: sha512-xliuHaUFZxEx1NSXeLLZ9Dyu6+EJVQKEoD+yM+zqUo3YDZ7medKJWY6fIOKiPX/N7XbLdBYwajb15Q7IL8KkeA==} 1510 + engines: {node: '>=18.0.0'} 1511 + 1540 1512 '@aws-sdk/util-arn-parser@3.723.0': 1541 1513 resolution: {integrity: sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==} 1542 1514 engines: {node: '>=18.0.0'} ··· 1549 1521 resolution: {integrity: sha512-sLd30ASsPMoPn3XBK50oe/bkpJ4N8Bpb7SbhoxcY3Lk+fSASaWxbbXE81nbvCnkxrZCvkPOiDHzJCp1E2im71A==} 1550 1522 engines: {node: '>=18.0.0'} 1551 1523 1552 - '@aws-sdk/util-endpoints@3.787.0': 1553 - resolution: {integrity: sha512-fd3zkiOkwnbdbN0Xp9TsP5SWrmv0SpT70YEdbb8wAj2DWQwiCmFszaSs+YCvhoCdmlR3Wl9Spu0pGpSAGKeYvQ==} 1524 + '@aws-sdk/util-endpoints@3.840.0': 1525 + resolution: {integrity: sha512-eqE9ROdg/Kk0rj3poutyRCFauPDXIf/WSvCqFiRDDVi6QOnCv/M0g2XW8/jSvkJlOyaXkNCptapIp6BeeFFGYw==} 1554 1526 engines: {node: '>=18.0.0'} 1555 1527 1556 1528 '@aws-sdk/util-format-url@3.734.0': ··· 1561 1533 resolution: {integrity: sha512-ttrag6haJLWABhLqtg1Uf+4LgHWIMOVSYL+VYZmAp2v4PUGOwWmWQH0Zk8RM7YuQcLfH/EoR72/Yxz6A4FKcuw==} 1562 1534 engines: {node: '>=16.0.0'} 1563 1535 1564 - '@aws-sdk/util-locate-window@3.723.0': 1565 - resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==} 1566 - engines: {node: '>=18.0.0'} 1567 - 1568 1536 '@aws-sdk/util-user-agent-browser@3.398.0': 1569 1537 resolution: {integrity: sha512-A3Tzx1tkDHlBT+IgxmsMCHbV8LM7SwwCozq2ZjJRx0nqw3MCrrcxQFXldHeX/gdUMO+0Oocb7HGSnVODTq+0EA==} 1570 1538 1571 1539 '@aws-sdk/util-user-agent-browser@3.723.0': 1572 1540 resolution: {integrity: sha512-Wh9I6j2jLhNFq6fmXydIpqD1WyQLyTfSxjW9B+PXSnPyk3jtQW8AKQur7p97rO8LAUzVI0bv8kb3ZzDEVbquIg==} 1573 1541 1574 - '@aws-sdk/util-user-agent-browser@3.775.0': 1575 - resolution: {integrity: sha512-txw2wkiJmZKVdDbscK7VBK+u+TJnRtlUjRTLei+elZg2ADhpQxfVAQl436FUeIv6AhB/oRHW6/K/EAGXUSWi0A==} 1542 + '@aws-sdk/util-user-agent-browser@3.840.0': 1543 + resolution: {integrity: sha512-JdyZM3EhhL4PqwFpttZu1afDpPJCCc3eyZOLi+srpX11LsGj6sThf47TYQN75HT1CarZ7cCdQHGzP2uy3/xHfQ==} 1576 1544 1577 1545 '@aws-sdk/util-user-agent-node@3.398.0': 1578 1546 resolution: {integrity: sha512-RTVQofdj961ej4//fEkppFf4KXqKGMTCqJYghx3G0C/MYXbg7MGl7LjfNGtJcboRE8pfHHQ/TUWBDA7RIAPPlQ==} ··· 1592 1560 aws-crt: 1593 1561 optional: true 1594 1562 1595 - '@aws-sdk/util-user-agent-node@3.799.0': 1596 - resolution: {integrity: sha512-iXBk38RbIWPF5Nq9O4AnktORAzXovSVqWYClvS1qbE7ILsnTLJbagU9HlU25O2iV5COVh1qZkwuP5NHQ2yTEyw==} 1563 + '@aws-sdk/util-user-agent-node@3.840.0': 1564 + resolution: {integrity: sha512-Fy5JUEDQU1tPm2Yw/YqRYYc27W5+QD/J4mYvQvdWjUGZLB5q3eLFMGD35Uc28ZFoGMufPr4OCxK/bRfWROBRHQ==} 1597 1565 engines: {node: '>=18.0.0'} 1598 1566 peerDependencies: 1599 1567 aws-crt: '>=1.0.0' ··· 1612 1580 resolution: {integrity: sha512-5xK2SqGU1mzzsOeemy7cy3fGKxR1sEpUs4pEiIjaT0OIvU+fZaDVUEYWOqsgns6wI90XZEQJlXtI8uAHX/do5Q==} 1613 1581 engines: {node: '>=18.0.0'} 1614 1582 1615 - '@aws-sdk/xml-builder@3.775.0': 1616 - resolution: {integrity: sha512-b9NGO6FKJeLGYnV7Z1yvcP1TNU4dkD5jNsLWOF1/sygZoASaQhNOlaiJ/1OH331YQ1R1oWk38nBb0frsYkDsOQ==} 1583 + '@aws-sdk/xml-builder@3.821.0': 1584 + resolution: {integrity: sha512-DIIotRnefVL6DiaHtO6/21DhJ4JZnnIwdNbpwiAhdt/AVbttcE4yw925gsjur0OGv5BTYXQXU3YnANBYnZjuQA==} 1617 1585 engines: {node: '>=18.0.0'} 1618 1586 1619 1587 '@babel/code-frame@7.27.1': ··· 1732 1700 resolution: {integrity: sha512-+tv3z+SPp+gqTIcImN9o0hqE9xyfQjI1XD9pL6NuKjua9B1y7mNYv0S9cP+QEbA4ppVgGZEmKOvHX5G5Ei1CVA==} 1733 1701 engines: {node: '>=18.0.0'} 1734 1702 1735 - '@cloudflare/unenv-preset@2.3.2': 1736 - resolution: {integrity: sha512-MtUgNl+QkQyhQvv5bbWP+BpBC1N0me4CHHuP2H4ktmOMKdB/6kkz/lo+zqiA4mEazb4y+1cwyNjVrQ2DWeE4mg==} 1703 + '@cloudflare/unenv-preset@2.3.3': 1704 + resolution: {integrity: sha512-/M3MEcj3V2WHIRSW1eAQBPRJ6JnGQHc6JKMAPLkDb7pLs3m6X9ES/+K3ceGqxI6TKeF32AWAi7ls0AYzVxCP0A==} 1737 1705 peerDependencies: 1738 1706 unenv: 2.0.0-rc.17 1739 1707 workerd: ^1.20250508.0 ··· 1741 1709 workerd: 1742 1710 optional: true 1743 1711 1744 - '@cloudflare/workerd-darwin-64@1.20250525.0': 1745 - resolution: {integrity: sha512-L5l+7sSJJT2+riR5rS3Q3PKNNySPjWfRIeaNGMVRi1dPO6QPi4lwuxfRUFNoeUdilZJUVPfSZvTtj9RedsKznQ==} 1712 + '@cloudflare/workerd-darwin-64@1.20250617.0': 1713 + resolution: {integrity: sha512-toG8JUKVLIks4oOJLe9FeuixE84pDpMZ32ip7mCpE7JaFc5BqGFvevk0YC/db3T71AQlialjRwioH3jS/dzItA==} 1746 1714 engines: {node: '>=16'} 1747 1715 cpu: [x64] 1748 1716 os: [darwin] 1749 1717 1750 - '@cloudflare/workerd-darwin-arm64@1.20250525.0': 1751 - resolution: {integrity: sha512-Y3IbIdrF/vJWh/WBvshwcSyUh175VAiLRW7963S1dXChrZ1N5wuKGQm9xY69cIGVtitpMJWWW3jLq7J/Xxwm0Q==} 1718 + '@cloudflare/workerd-darwin-arm64@1.20250617.0': 1719 + resolution: {integrity: sha512-JTX0exbC9/ZtMmQQA8tDZEZFMXZrxOpTUj2hHnsUkErWYkr5SSZH04RBhPg6dU4VL8bXuB5/eJAh7+P9cZAp7g==} 1752 1720 engines: {node: '>=16'} 1753 1721 cpu: [arm64] 1754 1722 os: [darwin] 1755 1723 1756 - '@cloudflare/workerd-linux-64@1.20250525.0': 1757 - resolution: {integrity: sha512-KSyQPAby+c6cpENoO0ayCQlY6QIh28l/+QID7VC1SLXfiNHy+hPNsH1vVBTST6CilHVAQSsy9tCZ9O9XECB8yg==} 1724 + '@cloudflare/workerd-linux-64@1.20250617.0': 1725 + resolution: {integrity: sha512-8jkSoVRJ+1bOx3tuWlZCGaGCV2ew7/jFMl6V3CPXOoEtERUHsZBQLVkQIGKcmC/LKSj7f/mpyBUeu2EPTo2HEg==} 1758 1726 engines: {node: '>=16'} 1759 1727 cpu: [x64] 1760 1728 os: [linux] 1761 1729 1762 - '@cloudflare/workerd-linux-arm64@1.20250525.0': 1763 - resolution: {integrity: sha512-Nt0FUxS2kQhJUea4hMCNPaetkrAFDhPnNX/ntwcqVlGgnGt75iaAhupWJbU0GB+gIWlKeuClUUnDZqKbicoKyg==} 1730 + '@cloudflare/workerd-linux-arm64@1.20250617.0': 1731 + resolution: {integrity: sha512-YAzcOyu897z5dQKFzme1oujGWMGEJCR7/Wrrm1nSP6dqutxFPTubRADM8BHn2CV3ij//vaPnAeLmZE3jVwOwig==} 1764 1732 engines: {node: '>=16'} 1765 1733 cpu: [arm64] 1766 1734 os: [linux] 1767 1735 1768 - '@cloudflare/workerd-windows-64@1.20250525.0': 1769 - resolution: {integrity: sha512-mwTj+9f3uIa4NEXR1cOa82PjLa6dbrb3J+KCVJFYIaq7e63VxEzOchCXS4tublT2pmOhmFqkgBMXrxozxNkR2Q==} 1736 + '@cloudflare/workerd-windows-64@1.20250617.0': 1737 + resolution: {integrity: sha512-XWM/6sagDrO0CYDKhXhPjM23qusvIN1ju9ZEml6gOQs8tNOFnq6Cn6X9FAmnyapRFCGUSEC3HZYJAm7zwVKaMA==} 1770 1738 engines: {node: '>=16'} 1771 1739 cpu: [x64] 1772 1740 os: [win32] ··· 3978 3946 resolution: {integrity: sha512-Sl/78VDtgqKxN2+1qduaVE140XF+Xg+TafkncspwM4jFP/LHr76ZHmIY/y3V1M0mMLNk+Je6IGbzxy23RSToMw==} 3979 3947 engines: {node: '>=18.0.0'} 3980 3948 3949 + '@smithy/abort-controller@4.0.4': 3950 + resolution: {integrity: sha512-gJnEjZMvigPDQWHrW3oPrFhQtkrgqBkyjj3pCIdF3A5M6vsZODG93KNlfJprv6bp4245bdT32fsHK4kkH3KYDA==} 3951 + engines: {node: '>=18.0.0'} 3952 + 3981 3953 '@smithy/chunked-blob-reader-native@4.0.0': 3982 3954 resolution: {integrity: sha512-R9wM2yPmfEMsUmlMlIgSzOyICs0x9uu7UTHoccMyt7BWw8shcGM8HqB355+BZCPBcySvbTYMs62EgEQkNxz2ig==} 3983 3955 engines: {node: '>=18.0.0'} ··· 3998 3970 resolution: {integrity: sha512-8smPlwhga22pwl23fM5ew4T9vfLUCeFXlcqNOCD5M5h8VmNPNUE9j6bQSuRXpDSV11L/E/SwEBQuW8hr6+nS1A==} 3999 3971 engines: {node: '>=18.0.0'} 4000 3972 3973 + '@smithy/config-resolver@4.1.4': 3974 + resolution: {integrity: sha512-prmU+rDddxHOH0oNcwemL+SwnzcG65sBF2yXRO7aeXIn/xTlq2pX7JLVbkBnVLowHLg4/OL4+jBmv9hVrVGS+w==} 3975 + engines: {node: '>=18.0.0'} 3976 + 4001 3977 '@smithy/core@3.1.0': 4002 3978 resolution: {integrity: sha512-swFv0wQiK7TGHeuAp6lfF5Kw1dHWsTrCuc+yh4Kh05gEShjsE2RUxHucEerR9ih9JITNtaHcSpUThn5Y/vDw0A==} 4003 3979 engines: {node: '>=18.0.0'} ··· 4010 3986 resolution: {integrity: sha512-r6gvs5OfRq/w+9unPm7B3po4rmWaGh0CIL/OwHntGGux7+RhOOZLGuurbeMgWV6W55ZuyMTypJLeH0vn/ZRaWQ==} 4011 3987 engines: {node: '>=18.0.0'} 4012 3988 3989 + '@smithy/core@3.6.0': 3990 + resolution: {integrity: sha512-Pgvfb+TQ4wUNLyHzvgCP4aYZMh16y7GcfF59oirRHcgGgkH1e/s9C0nv/v3WP+Quymyr5je71HeFQCwh+44XLg==} 3991 + engines: {node: '>=18.0.0'} 3992 + 4013 3993 '@smithy/credential-provider-imds@2.3.0': 4014 3994 resolution: {integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==} 4015 3995 engines: {node: '>=14.0.0'} ··· 4022 4002 resolution: {integrity: sha512-32lVig6jCaWBHnY+OEQ6e6Vnt5vDHaLiydGrwYMW9tPqO688hPGTYRamYJ1EptxEC2rAwJrHWmPoKRBl4iTa8w==} 4023 4003 engines: {node: '>=18.0.0'} 4024 4004 4005 + '@smithy/credential-provider-imds@4.0.6': 4006 + resolution: {integrity: sha512-hKMWcANhUiNbCJouYkZ9V3+/Qf9pteR1dnwgdyzR09R4ODEYx8BbUysHwRSyex4rZ9zapddZhLFTnT4ZijR4pw==} 4007 + engines: {node: '>=18.0.0'} 4008 + 4025 4009 '@smithy/eventstream-codec@4.0.1': 4026 4010 resolution: {integrity: sha512-Q2bCAAR6zXNVtJgifsU16ZjKGqdw/DyecKNgIgi7dlqw04fqDu0mnq+JmGphqheypVc64CYq3azSuCpAdFk2+A==} 4027 4011 engines: {node: '>=18.0.0'} 4028 4012 4029 - '@smithy/eventstream-codec@4.0.2': 4030 - resolution: {integrity: sha512-p+f2kLSK7ZrXVfskU/f5dzksKTewZk8pJLPvER3aFHPt76C2MxD9vNatSfLzzQSQB4FNO96RK4PSXfhD1TTeMQ==} 4013 + '@smithy/eventstream-codec@4.0.4': 4014 + resolution: {integrity: sha512-7XoWfZqWb/QoR/rAU4VSi0mWnO2vu9/ltS6JZ5ZSZv0eovLVfDfu0/AX4ub33RsJTOth3TiFWSHS5YdztvFnig==} 4031 4015 engines: {node: '>=18.0.0'} 4032 4016 4033 4017 '@smithy/eventstream-serde-browser@4.0.1': 4034 4018 resolution: {integrity: sha512-HbIybmz5rhNg+zxKiyVAnvdM3vkzjE6ccrJ620iPL8IXcJEntd3hnBl+ktMwIy12Te/kyrSbUb8UCdnUT4QEdA==} 4035 4019 engines: {node: '>=18.0.0'} 4036 4020 4037 - '@smithy/eventstream-serde-browser@4.0.2': 4038 - resolution: {integrity: sha512-CepZCDs2xgVUtH7ZZ7oDdZFH8e6Y2zOv8iiX6RhndH69nlojCALSKK+OXwZUgOtUZEUaZ5e1hULVCHYbCn7pug==} 4021 + '@smithy/eventstream-serde-browser@4.0.4': 4022 + resolution: {integrity: sha512-3fb/9SYaYqbpy/z/H3yIi0bYKyAa89y6xPmIqwr2vQiUT2St+avRt8UKwsWt9fEdEasc5d/V+QjrviRaX1JRFA==} 4039 4023 engines: {node: '>=18.0.0'} 4040 4024 4041 4025 '@smithy/eventstream-serde-config-resolver@4.0.1': 4042 4026 resolution: {integrity: sha512-lSipaiq3rmHguHa3QFF4YcCM3VJOrY9oq2sow3qlhFY+nBSTF/nrO82MUQRPrxHQXA58J5G1UnU2WuJfi465BA==} 4043 4027 engines: {node: '>=18.0.0'} 4044 4028 4045 - '@smithy/eventstream-serde-config-resolver@4.1.0': 4046 - resolution: {integrity: sha512-1PI+WPZ5TWXrfj3CIoKyUycYynYJgZjuQo8U+sphneOtjsgrttYybdqESFReQrdWJ+LKt6NEdbYzmmfDBmjX2A==} 4029 + '@smithy/eventstream-serde-config-resolver@4.1.2': 4030 + resolution: {integrity: sha512-JGtambizrWP50xHgbzZI04IWU7LdI0nh/wGbqH3sJesYToMi2j/DcoElqyOcqEIG/D4tNyxgRuaqBXWE3zOFhQ==} 4047 4031 engines: {node: '>=18.0.0'} 4048 4032 4049 4033 '@smithy/eventstream-serde-node@4.0.1': 4050 4034 resolution: {integrity: sha512-o4CoOI6oYGYJ4zXo34U8X9szDe3oGjmHgsMGiZM0j4vtNoT+h80TLnkUcrLZR3+E6HIxqW+G+9WHAVfl0GXK0Q==} 4051 4035 engines: {node: '>=18.0.0'} 4052 4036 4053 - '@smithy/eventstream-serde-node@4.0.2': 4054 - resolution: {integrity: sha512-C5bJ/C6x9ENPMx2cFOirspnF9ZsBVnBMtP6BdPl/qYSuUawdGQ34Lq0dMcf42QTjUZgWGbUIZnz6+zLxJlb9aw==} 4037 + '@smithy/eventstream-serde-node@4.0.4': 4038 + resolution: {integrity: sha512-RD6UwNZ5zISpOWPuhVgRz60GkSIp0dy1fuZmj4RYmqLVRtejFqQ16WmfYDdoSoAjlp1LX+FnZo+/hkdmyyGZ1w==} 4055 4039 engines: {node: '>=18.0.0'} 4056 4040 4057 4041 '@smithy/eventstream-serde-universal@4.0.1': 4058 4042 resolution: {integrity: sha512-Z94uZp0tGJuxds3iEAZBqGU2QiaBHP4YytLUjwZWx+oUeohCsLyUm33yp4MMBmhkuPqSbQCXq5hDet6JGUgHWA==} 4059 4043 engines: {node: '>=18.0.0'} 4060 4044 4061 - '@smithy/eventstream-serde-universal@4.0.2': 4062 - resolution: {integrity: sha512-St8h9JqzvnbB52FtckiHPN4U/cnXcarMniXRXTKn0r4b4XesZOGiAyUdj1aXbqqn1icSqBlzzUsCl6nPB018ng==} 4045 + '@smithy/eventstream-serde-universal@4.0.4': 4046 + resolution: {integrity: sha512-UeJpOmLGhq1SLox79QWw/0n2PFX+oPRE1ZyRMxPIaFEfCqWaqpB7BU9C8kpPOGEhLF7AwEqfFbtwNxGy4ReENA==} 4063 4047 engines: {node: '>=18.0.0'} 4064 4048 4065 4049 '@smithy/fetch-http-handler@2.5.0': ··· 4073 4057 resolution: {integrity: sha512-+9Dz8sakS9pe7f2cBocpJXdeVjMopUDLgZs1yWeu7h++WqSbjUYv/JAJwKwXw1HV6gq1jyWjxuyn24E2GhoEcQ==} 4074 4058 engines: {node: '>=18.0.0'} 4075 4059 4060 + '@smithy/fetch-http-handler@5.0.4': 4061 + resolution: {integrity: sha512-AMtBR5pHppYMVD7z7G+OlHHAcgAN7v0kVKEpHuTO4Gb199Gowh0taYi9oDStFeUhetkeP55JLSVlTW1n9rFtUw==} 4062 + engines: {node: '>=18.0.0'} 4063 + 4076 4064 '@smithy/hash-blob-browser@4.0.1': 4077 4065 resolution: {integrity: sha512-rkFIrQOKZGS6i1D3gKJ8skJ0RlXqDvb1IyAphksaFOMzkn3v3I1eJ8m7OkLj0jf1McP63rcCEoLlkAn/HjcTRw==} 4078 - engines: {node: '>=18.0.0'} 4079 - 4080 - '@smithy/hash-blob-browser@4.0.2': 4081 - resolution: {integrity: sha512-3g188Z3DyhtzfBRxpZjU8R9PpOQuYsbNnyStc/ZVS+9nVX1f6XeNOa9IrAh35HwwIZg+XWk8bFVtNINVscBP+g==} 4082 4066 engines: {node: '>=18.0.0'} 4083 4067 4084 4068 '@smithy/hash-node@2.2.0': ··· 4093 4077 resolution: {integrity: sha512-VnTpYPnRUE7yVhWozFdlxcYknv9UN7CeOqSrMH+V877v4oqtVYuoqhIhtSjmGPvYrYnAkaM61sLMKHvxL138yg==} 4094 4078 engines: {node: '>=18.0.0'} 4095 4079 4080 + '@smithy/hash-node@4.0.4': 4081 + resolution: {integrity: sha512-qnbTPUhCVnCgBp4z4BUJUhOEkVwxiEi1cyFM+Zj6o+aY8OFGxUQleKWq8ltgp3dujuhXojIvJWdoqpm6dVO3lQ==} 4082 + engines: {node: '>=18.0.0'} 4083 + 4096 4084 '@smithy/hash-stream-node@4.0.1': 4097 4085 resolution: {integrity: sha512-U1rAE1fxmReCIr6D2o/4ROqAQX+GffZpyMt3d7njtGDr2pUNmAKRWa49gsNVhCh2vVAuf3wXzWwNr2YN8PAXIw==} 4098 4086 engines: {node: '>=18.0.0'} 4099 4087 4100 - '@smithy/hash-stream-node@4.0.2': 4101 - resolution: {integrity: sha512-POWDuTznzbIwlEXEvvXoPMS10y0WKXK790soe57tFRfvf4zBHyzE529HpZMqmDdwG9MfFflnyzndUQ8j78ZdSg==} 4102 - engines: {node: '>=18.0.0'} 4103 - 4104 4088 '@smithy/invalid-dependency@2.2.0': 4105 4089 resolution: {integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==} 4106 4090 ··· 4110 4094 4111 4095 '@smithy/invalid-dependency@4.0.2': 4112 4096 resolution: {integrity: sha512-GatB4+2DTpgWPday+mnUkoumP54u/MDM/5u44KF9hIu8jF0uafZtQLcdfIKkIcUNuF/fBojpLEHZS/56JqPeXQ==} 4097 + engines: {node: '>=18.0.0'} 4098 + 4099 + '@smithy/invalid-dependency@4.0.4': 4100 + resolution: {integrity: sha512-bNYMi7WKTJHu0gn26wg8OscncTt1t2b8KcsZxvOv56XA6cyXtOAAAaNP7+m45xfppXfOatXF3Sb1MNsLUgVLTw==} 4113 4101 engines: {node: '>=18.0.0'} 4114 4102 4115 4103 '@smithy/is-array-buffer@2.2.0': ··· 4124 4112 resolution: {integrity: sha512-HLZ647L27APi6zXkZlzSFZIjpo8po45YiyjMGJZM3gyDY8n7dPGdmxIIljLm4gPt/7rRvutLTTkYJpZVfG5r+A==} 4125 4113 engines: {node: '>=18.0.0'} 4126 4114 4127 - '@smithy/md5-js@4.0.2': 4128 - resolution: {integrity: sha512-Hc0R8EiuVunUewCse2syVgA2AfSRco3LyAv07B/zCOMa+jpXI9ll+Q21Nc6FAlYPcpNcAXqBzMhNs1CD/pP2bA==} 4115 + '@smithy/md5-js@4.0.4': 4116 + resolution: {integrity: sha512-uGLBVqcOwrLvGh/v/jw423yWHq/ofUGK1W31M2TNspLQbUV1Va0F5kTxtirkoHawODAZcjXTSGi7JwbnPcDPJg==} 4129 4117 engines: {node: '>=18.0.0'} 4130 4118 4131 4119 '@smithy/middleware-content-length@2.2.0': ··· 4140 4128 resolution: {integrity: sha512-hAfEXm1zU+ELvucxqQ7I8SszwQ4znWMbNv6PLMndN83JJN41EPuS93AIyh2N+gJ6x8QFhzSO6b7q2e6oClDI8A==} 4141 4129 engines: {node: '>=18.0.0'} 4142 4130 4131 + '@smithy/middleware-content-length@4.0.4': 4132 + resolution: {integrity: sha512-F7gDyfI2BB1Kc+4M6rpuOLne5LOcEknH1n6UQB69qv+HucXBR1rkzXBnQTB2q46sFy1PM/zuSJOB532yc8bg3w==} 4133 + engines: {node: '>=18.0.0'} 4134 + 4143 4135 '@smithy/middleware-endpoint@2.5.1': 4144 4136 resolution: {integrity: sha512-1/8kFp6Fl4OsSIVTWHnNjLnTL8IqpIb/D3sTSczrKFnrE9VMNWxnrRKNvpUHOJ6zpGD5f62TPm7+17ilTJpiCQ==} 4145 4137 engines: {node: '>=14.0.0'} ··· 4154 4146 4155 4147 '@smithy/middleware-endpoint@4.1.1': 4156 4148 resolution: {integrity: sha512-z5RmcHxjvScL+LwEDU2mTNCOhgUs4lu5PGdF1K36IPRmUHhNFxNxgenSB7smyDiYD4vdKQ7CAZtG5cUErqib9w==} 4149 + engines: {node: '>=18.0.0'} 4150 + 4151 + '@smithy/middleware-endpoint@4.1.13': 4152 + resolution: {integrity: sha512-xg3EHV/Q5ZdAO5b0UiIMj3RIOCobuS40pBBODguUDVdko6YK6QIzCVRrHTogVuEKglBWqWenRnZ71iZnLL3ZAQ==} 4157 4153 engines: {node: '>=18.0.0'} 4158 4154 4159 4155 '@smithy/middleware-retry@2.3.1': ··· 4164 4160 resolution: {integrity: sha512-n3g2zZFgOWaz2ZYCy8+4wxSmq+HSTD8QKkRhFDv+nkxY1o7gzyp4PDz/+tOdcNPMPZ/A6Mt4aVECYNjQNiaHJw==} 4165 4161 engines: {node: '>=18.0.0'} 4166 4162 4163 + '@smithy/middleware-retry@4.1.14': 4164 + resolution: {integrity: sha512-eoXaLlDGpKvdmvt+YBfRXE7HmIEtFF+DJCbTPwuLunP0YUnrydl+C4tS+vEM0+nyxXrX3PSUFqC+lP1+EHB1Tw==} 4165 + engines: {node: '>=18.0.0'} 4166 + 4167 4167 '@smithy/middleware-retry@4.1.2': 4168 4168 resolution: {integrity: sha512-qN/Mmxm8JWtFAjozJ8VSTM83KOX4cIks8UjDqqNkKIegzPrE5ZKPNCQ/DqUSIF90pue5a/NycNXnBod2NwvZZQ==} 4169 4169 engines: {node: '>=18.0.0'} ··· 4184 4184 resolution: {integrity: sha512-rfgDVrgLEVMmMn0BI8O+8OVr6vXzjV7HZj57l0QxslhzbvVfikZbVfBVthjLHqib4BW44QhcIgJpvebHlRaC9A==} 4185 4185 engines: {node: '>=18.0.0'} 4186 4186 4187 + '@smithy/middleware-serde@4.0.8': 4188 + resolution: {integrity: sha512-iSSl7HJoJaGyMIoNn2B7czghOVwJ9nD7TMvLhMWeSB5vt0TnEYyRRqPJu/TqW76WScaNvYYB8nRoiBHR9S1Ddw==} 4189 + engines: {node: '>=18.0.0'} 4190 + 4187 4191 '@smithy/middleware-stack@2.2.0': 4188 4192 resolution: {integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==} 4189 4193 engines: {node: '>=14.0.0'} ··· 4196 4200 resolution: {integrity: sha512-eSPVcuJJGVYrFYu2hEq8g8WWdJav3sdrI4o2c6z/rjnYDd3xH9j9E7deZQCzFn4QvGPouLngH3dQ+QVTxv5bOQ==} 4197 4201 engines: {node: '>=18.0.0'} 4198 4202 4203 + '@smithy/middleware-stack@4.0.4': 4204 + resolution: {integrity: sha512-kagK5ggDrBUCCzI93ft6DjteNSfY8Ulr83UtySog/h09lTIOAJ/xUSObutanlPT0nhoHAkpmW9V5K8oPyLh+QA==} 4205 + engines: {node: '>=18.0.0'} 4206 + 4199 4207 '@smithy/node-config-provider@2.3.0': 4200 4208 resolution: {integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==} 4201 4209 engines: {node: '>=14.0.0'} ··· 4208 4216 resolution: {integrity: sha512-WgCkILRZfJwJ4Da92a6t3ozN/zcvYyJGUTmfGbgS/FkCcoCjl7G4FJaCDN1ySdvLvemnQeo25FdkyMSTSwulsw==} 4209 4217 engines: {node: '>=18.0.0'} 4210 4218 4219 + '@smithy/node-config-provider@4.1.3': 4220 + resolution: {integrity: sha512-HGHQr2s59qaU1lrVH6MbLlmOBxadtzTsoO4c+bF5asdgVik3I8o7JIOzoeqWc5MjVa+vD36/LWE0iXKpNqooRw==} 4221 + engines: {node: '>=18.0.0'} 4222 + 4211 4223 '@smithy/node-http-handler@2.5.0': 4212 4224 resolution: {integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==} 4213 4225 engines: {node: '>=14.0.0'} ··· 4224 4236 resolution: {integrity: sha512-/mdqabuAT3o/ihBGjL94PUbTSPSRJ0eeVTdgADzow0wRJ0rN4A27EOrtlK56MYiO1fDvlO3jVTCxQtQmK9dZ1g==} 4225 4237 engines: {node: '>=18.0.0'} 4226 4238 4239 + '@smithy/node-http-handler@4.0.6': 4240 + resolution: {integrity: sha512-NqbmSz7AW2rvw4kXhKGrYTiJVDHnMsFnX4i+/FzcZAfbOBauPYs2ekuECkSbtqaxETLLTu9Rl/ex6+I2BKErPA==} 4241 + engines: {node: '>=18.0.0'} 4242 + 4227 4243 '@smithy/property-provider@2.2.0': 4228 4244 resolution: {integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==} 4229 4245 engines: {node: '>=14.0.0'} ··· 4234 4250 4235 4251 '@smithy/property-provider@4.0.2': 4236 4252 resolution: {integrity: sha512-wNRoQC1uISOuNc2s4hkOYwYllmiyrvVXWMtq+TysNRVQaHm4yoafYQyjN/goYZS+QbYlPIbb/QRjaUZMuzwQ7A==} 4253 + engines: {node: '>=18.0.0'} 4254 + 4255 + '@smithy/property-provider@4.0.4': 4256 + resolution: {integrity: sha512-qHJ2sSgu4FqF4U/5UUp4DhXNmdTrgmoAai6oQiM+c5RZ/sbDwJ12qxB1M6FnP+Tn/ggkPZf9ccn4jqKSINaquw==} 4237 4257 engines: {node: '>=18.0.0'} 4238 4258 4239 4259 '@smithy/protocol-http@2.0.5': ··· 4250 4270 4251 4271 '@smithy/protocol-http@5.1.0': 4252 4272 resolution: {integrity: sha512-KxAOL1nUNw2JTYrtviRRjEnykIDhxc84qMBzxvu1MUfQfHTuBlCG7PA6EdVwqpJjH7glw7FqQoFxUJSyBQgu7g==} 4273 + engines: {node: '>=18.0.0'} 4274 + 4275 + '@smithy/protocol-http@5.1.2': 4276 + resolution: {integrity: sha512-rOG5cNLBXovxIrICSBm95dLqzfvxjEmuZx4KK3hWwPFHGdW3lxY0fZNXfv2zebfRO7sJZ5pKJYHScsqopeIWtQ==} 4253 4277 engines: {node: '>=18.0.0'} 4254 4278 4255 4279 '@smithy/querystring-builder@2.2.0': ··· 4264 4288 resolution: {integrity: sha512-NTOs0FwHw1vimmQM4ebh+wFQvOwkEf/kQL6bSM1Lock+Bv4I89B3hGYoUEPkmvYPkDKyp5UdXJYu+PoTQ3T31Q==} 4265 4289 engines: {node: '>=18.0.0'} 4266 4290 4291 + '@smithy/querystring-builder@4.0.4': 4292 + resolution: {integrity: sha512-SwREZcDnEYoh9tLNgMbpop+UTGq44Hl9tdj3rf+yeLcfH7+J8OXEBaMc2kDxtyRHu8BhSg9ADEx0gFHvpJgU8w==} 4293 + engines: {node: '>=18.0.0'} 4294 + 4267 4295 '@smithy/querystring-parser@2.2.0': 4268 4296 resolution: {integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==} 4269 4297 engines: {node: '>=14.0.0'} ··· 4276 4304 resolution: {integrity: sha512-v6w8wnmZcVXjfVLjxw8qF7OwESD9wnpjp0Dqry/Pod0/5vcEA3qxCr+BhbOHlxS8O+29eLpT3aagxXGwIoEk7Q==} 4277 4305 engines: {node: '>=18.0.0'} 4278 4306 4307 + '@smithy/querystring-parser@4.0.4': 4308 + resolution: {integrity: sha512-6yZf53i/qB8gRHH/l2ZwUG5xgkPgQF15/KxH0DdXMDHjesA9MeZje/853ifkSY0x4m5S+dfDZ+c4x439PF0M2w==} 4309 + engines: {node: '>=18.0.0'} 4310 + 4279 4311 '@smithy/service-error-classification@2.1.5': 4280 4312 resolution: {integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==} 4281 4313 engines: {node: '>=14.0.0'} ··· 4288 4320 resolution: {integrity: sha512-FTbcajmltovWMjj3tksDQdD23b2w6gH+A0DYA1Yz3iSpjDj8fmkwy62UnXcWMy4d5YoMoSyLFHMfkEVEzbiN8Q==} 4289 4321 engines: {node: '>=18.0.0'} 4290 4322 4323 + '@smithy/service-error-classification@4.0.6': 4324 + resolution: {integrity: sha512-RRoTDL//7xi4tn5FrN2NzH17jbgmnKidUqd4KvquT0954/i6CXXkh1884jBiunq24g9cGtPBEXlU40W6EpNOOg==} 4325 + engines: {node: '>=18.0.0'} 4326 + 4291 4327 '@smithy/shared-ini-file-loader@2.4.0': 4292 4328 resolution: {integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==} 4293 4329 engines: {node: '>=14.0.0'} ··· 4300 4336 resolution: {integrity: sha512-J9/gTWBGVuFZ01oVA6vdb4DAjf1XbDhK6sLsu3OS9qmLrS6KB5ygpeHiM3miIbj1qgSJ96GYszXFWv6ErJ8QEw==} 4301 4337 engines: {node: '>=18.0.0'} 4302 4338 4339 + '@smithy/shared-ini-file-loader@4.0.4': 4340 + resolution: {integrity: sha512-63X0260LoFBjrHifPDs+nM9tV0VMkOTl4JRMYNuKh/f5PauSjowTfvF3LogfkWdcPoxsA9UjqEOgjeYIbhb7Nw==} 4341 + engines: {node: '>=18.0.0'} 4342 + 4303 4343 '@smithy/signature-v4@2.3.0': 4304 4344 resolution: {integrity: sha512-ui/NlpILU+6HAQBfJX8BBsDXuKSNrjTSuOYArRblcrErwKFutjrCNb/OExfVRyj9+26F9J+ZmfWT+fKWuDrH3Q==} 4305 4345 engines: {node: '>=14.0.0'} ··· 4312 4352 resolution: {integrity: sha512-4t5WX60sL3zGJF/CtZsUQTs3UrZEDO2P7pEaElrekbLqkWPYkgqNW1oeiNYC6xXifBnT9dVBOnNQRvOE9riU9w==} 4313 4353 engines: {node: '>=18.0.0'} 4314 4354 4355 + '@smithy/signature-v4@5.1.2': 4356 + resolution: {integrity: sha512-d3+U/VpX7a60seHziWnVZOHuEgJlclufjkS6zhXvxcJgkJq4UWdH5eOBLzHRMx6gXjsdT9h6lfpmLzbrdupHgQ==} 4357 + engines: {node: '>=18.0.0'} 4358 + 4315 4359 '@smithy/smithy-client@2.5.1': 4316 4360 resolution: {integrity: sha512-jrbSQrYCho0yDaaf92qWgd+7nAeap5LtHTI51KXqmpIFCceKU3K9+vIVTUH72bOJngBMqa4kyu1VJhRcSrk/CQ==} 4317 4361 engines: {node: '>=14.0.0'} ··· 4326 4370 4327 4371 '@smithy/smithy-client@4.2.1': 4328 4372 resolution: {integrity: sha512-fbniZef60QdsBc4ZY0iyI8xbFHIiC/QRtPi66iE4ufjiE/aaz7AfUXzcWMkpO8r+QhLeNRIfmPchIG+3/QDZ6g==} 4373 + engines: {node: '>=18.0.0'} 4374 + 4375 + '@smithy/smithy-client@4.4.5': 4376 + resolution: {integrity: sha512-+lynZjGuUFJaMdDYSTMnP/uPBBXXukVfrJlP+1U/Dp5SFTEI++w6NMga8DjOENxecOF71V9Z2DllaVDYRnGlkg==} 4329 4377 engines: {node: '>=18.0.0'} 4330 4378 4331 4379 '@smithy/types@2.12.0': ··· 4340 4388 resolution: {integrity: sha512-7eMk09zQKCO+E/ivsjQv+fDlOupcFUCSC/L2YUPgwhvowVGWbPQHjEFcmjt7QQ4ra5lyowS92SV53Zc6XD4+fg==} 4341 4389 engines: {node: '>=18.0.0'} 4342 4390 4391 + '@smithy/types@4.3.1': 4392 + resolution: {integrity: sha512-UqKOQBL2x6+HWl3P+3QqFD4ncKq0I8Nuz9QItGv5WuKuMHuuwlhvqcZCoXGfc+P1QmfJE7VieykoYYmrOoFJxA==} 4393 + engines: {node: '>=18.0.0'} 4394 + 4343 4395 '@smithy/url-parser@2.2.0': 4344 4396 resolution: {integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==} 4345 4397 ··· 4351 4403 resolution: {integrity: sha512-Bm8n3j2ScqnT+kJaClSVCMeiSenK6jVAzZCNewsYWuZtnBehEz4r2qP0riZySZVfzB+03XZHJeqfmJDkeeSLiQ==} 4352 4404 engines: {node: '>=18.0.0'} 4353 4405 4406 + '@smithy/url-parser@4.0.4': 4407 + resolution: {integrity: sha512-eMkc144MuN7B0TDA4U2fKs+BqczVbk3W+qIvcoCY6D1JY3hnAdCuhCZODC+GAeaxj0p6Jroz4+XMUn3PCxQQeQ==} 4408 + engines: {node: '>=18.0.0'} 4409 + 4354 4410 '@smithy/util-base64@2.3.0': 4355 4411 resolution: {integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==} 4356 4412 engines: {node: '>=14.0.0'} ··· 4398 4454 resolution: {integrity: sha512-nkQifWzWUHw/D0aLPgyKut+QnJ5X+5E8wBvGfvrYLLZ86xPfVO6MoqfQo/9s4bF3Xscefua1M6KLZtobHMWrBg==} 4399 4455 engines: {node: '>=18.0.0'} 4400 4456 4457 + '@smithy/util-defaults-mode-browser@4.0.21': 4458 + resolution: {integrity: sha512-wM0jhTytgXu3wzJoIqpbBAG5U6BwiubZ6QKzSbP7/VbmF1v96xlAbX2Am/mz0Zep0NLvLh84JT0tuZnk3wmYQA==} 4459 + engines: {node: '>=18.0.0'} 4460 + 4401 4461 '@smithy/util-defaults-mode-browser@4.0.9': 4402 4462 resolution: {integrity: sha512-B8j0XsElvyhv6+5hlFf6vFV/uCSyLKcInpeXOGnOImX2mGXshE01RvPoGipTlRpIk53e6UfYj7WdDdgbVfXDZw==} 4403 4463 engines: {node: '>=18.0.0'} ··· 4410 4470 resolution: {integrity: sha512-LeAx2faB83litC9vaOdwFaldtto2gczUHxfFf8yoRwDU3cwL4/pDm7i0hxsuBCRk5mzHsrVGw+3EVCj32UZMdw==} 4411 4471 engines: {node: '>=18.0.0'} 4412 4472 4473 + '@smithy/util-defaults-mode-node@4.0.21': 4474 + resolution: {integrity: sha512-/F34zkoU0GzpUgLJydHY8Rxu9lBn8xQC/s/0M0U9lLBkYbA1htaAFjWYJzpzsbXPuri5D1H8gjp2jBum05qBrA==} 4475 + engines: {node: '>=18.0.0'} 4476 + 4413 4477 '@smithy/util-defaults-mode-node@4.0.9': 4414 4478 resolution: {integrity: sha512-wTDU8P/zdIf9DOpV5qm64HVgGRXvqjqB/fJZTEQbrz3s79JHM/E7XkMm/876Oq+ZLHJQgnXM9QHDo29dlM62eA==} 4415 4479 engines: {node: '>=18.0.0'} ··· 4420 4484 4421 4485 '@smithy/util-endpoints@3.0.2': 4422 4486 resolution: {integrity: sha512-6QSutU5ZyrpNbnd51zRTL7goojlcnuOB55+F9VBD+j8JpRY50IGamsjlycrmpn8PQkmJucFW8A0LSfXj7jjtLQ==} 4487 + engines: {node: '>=18.0.0'} 4488 + 4489 + '@smithy/util-endpoints@3.0.6': 4490 + resolution: {integrity: sha512-YARl3tFL3WgPuLzljRUnrS2ngLiUtkwhQtj8PAL13XZSyUiNLQxwG3fBBq3QXFqGFUXepIN73pINp3y8c2nBmA==} 4423 4491 engines: {node: '>=18.0.0'} 4424 4492 4425 4493 '@smithy/util-hex-encoding@2.2.0': ··· 4440 4508 4441 4509 '@smithy/util-middleware@4.0.2': 4442 4510 resolution: {integrity: sha512-6GDamTGLuBQVAEuQ4yDQ+ti/YINf/MEmIegrEeg7DdB/sld8BX1lqt9RRuIcABOhAGTA50bRbPzErez7SlDtDQ==} 4511 + engines: {node: '>=18.0.0'} 4512 + 4513 + '@smithy/util-middleware@4.0.4': 4514 + resolution: {integrity: sha512-9MLKmkBmf4PRb0ONJikCbCwORACcil6gUWojwARCClT7RmLzF04hUR4WdRprIXal7XVyrddadYNfp2eF3nrvtQ==} 4443 4515 engines: {node: '>=18.0.0'} 4444 4516 4445 4517 '@smithy/util-retry@2.2.0': ··· 4454 4526 resolution: {integrity: sha512-DPuYjZQDXmKr/sNvy9Spu8R/ESa2e22wXZzSAY6NkjOLj6spbIje/Aq8rT97iUMdDj0qHMRIe+bTxvlU74d9Ng==} 4455 4527 engines: {node: '>=18.0.0'} 4456 4528 4529 + '@smithy/util-retry@4.0.6': 4530 + resolution: {integrity: sha512-+YekoF2CaSMv6zKrA6iI/N9yva3Gzn4L6n35Luydweu5MMPYpiGZlWqehPHDHyNbnyaYlz/WJyYAZnC+loBDZg==} 4531 + engines: {node: '>=18.0.0'} 4532 + 4457 4533 '@smithy/util-stream@2.2.0': 4458 4534 resolution: {integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==} 4459 4535 engines: {node: '>=14.0.0'} ··· 4468 4544 4469 4545 '@smithy/util-stream@4.2.0': 4470 4546 resolution: {integrity: sha512-Vj1TtwWnuWqdgQI6YTUF5hQ/0jmFiOYsc51CSMgj7QfyO+RF4EnT2HNjoviNlOOmgzgvf3f5yno+EiC4vrnaWQ==} 4547 + engines: {node: '>=18.0.0'} 4548 + 4549 + '@smithy/util-stream@4.2.2': 4550 + resolution: {integrity: sha512-aI+GLi7MJoVxg24/3J1ipwLoYzgkB4kUfogZfnslcYlynj3xsQ0e7vk4TnTro9hhsS5PvX1mwmkRqqHQjwcU7w==} 4471 4551 engines: {node: '>=18.0.0'} 4472 4552 4473 4553 '@smithy/util-uri-escape@2.2.0': ··· 4494 4574 resolution: {integrity: sha512-piUTHyp2Axx3p/kc2CIJkYSv0BAaheBQmbACZgQSSfWUumWNW+R1lL+H9PDBxKJkvOeEX+hKYEFiwO8xagL8AQ==} 4495 4575 engines: {node: '>=18.0.0'} 4496 4576 4497 - '@smithy/util-waiter@4.0.3': 4498 - resolution: {integrity: sha512-JtaY3FxmD+te+KSI2FJuEcfNC9T/DGGVf551babM7fAaXhjJUt7oSYurH1Devxd2+BOSUACCgt3buinx4UnmEA==} 4577 + '@smithy/util-waiter@4.0.6': 4578 + resolution: {integrity: sha512-slcr1wdRbX7NFphXZOxtxRNA7hXAAtJAXJDE/wdoMAos27SIquVCKiSqfB6/28YzQ8FCsB5NKkhdM5gMADbqxg==} 4499 4579 engines: {node: '>=18.0.0'} 4500 4580 4501 4581 '@swc/counter@0.1.3': ··· 5202 5282 5203 5283 chalk@5.3.0: 5204 5284 resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} 5205 - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 5206 - 5207 - chalk@5.4.1: 5208 - resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} 5209 5285 engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 5210 5286 5211 5287 character-entities-html4@2.1.0: ··· 7357 7433 resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} 7358 7434 hasBin: true 7359 7435 7360 - miniflare@4.20250525.1: 7361 - resolution: {integrity: sha512-4PJlT5WA+hfclFU5Q7xnpG1G1VGYTXaf/3iu6iKQ8IsbSi9QvPTA2bSZ5goCFxmJXDjV4cxttVxB0Wl1CLuQ0w==} 7436 + miniflare@4.20250617.5: 7437 + resolution: {integrity: sha512-Qqn30jR6dCjXaKVizT6vH4KOb+GyLccoxLNOJEfu63yBPn8eoXa7PrdiSGTmjs2RY8/tr7eTO8Wu/Yr14k0xVA==} 7362 7438 engines: {node: '>=18.0.0'} 7363 7439 hasBin: true 7364 7440 ··· 8780 8856 strnum@1.0.5: 8781 8857 resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} 8782 8858 8783 - strnum@1.1.2: 8784 - resolution: {integrity: sha512-vrN+B7DBIoTTZjnPNewwhx6cBA/H+IS7rfW68n7XxC1y7uoiGQBxaKzqucGUgavX15dJgiGztLJ8vxuEzwqBdA==} 8785 - 8786 8859 stubs@3.0.0: 8787 8860 resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==} 8788 8861 ··· 9172 9245 resolution: {integrity: sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==} 9173 9246 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 9174 9247 9175 - urlpattern-polyfill@10.0.0: 9176 - resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==} 9248 + urlpattern-polyfill@10.1.0: 9249 + resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==} 9177 9250 9178 9251 use-sync-external-store@1.4.0: 9179 9252 resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==} ··· 9353 9426 resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 9354 9427 engines: {node: '>=0.10.0'} 9355 9428 9356 - workerd@1.20250525.0: 9357 - resolution: {integrity: sha512-SXJgLREy/Aqw2J71Oah0Pbu+SShbqbTExjVQyRBTM1r7MG7fS5NUlknhnt6sikjA/t4cO09Bi8OJqHdTkrcnYQ==} 9429 + workerd@1.20250617.0: 9430 + resolution: {integrity: sha512-Uv6p0PYUHp/W/aWfUPLkZVAoAjapisM27JJlwcX9wCPTfCfnuegGOxFMvvlYpmNaX4YCwEdLCwuNn3xkpSkuZw==} 9358 9431 engines: {node: '>=16'} 9359 9432 hasBin: true 9360 9433 9361 - wrangler@4.19.1: 9362 - resolution: {integrity: sha512-b+ed2SJKauHgndl4Im1wHE+FeSSlrdlEZNuvpc8q/94k4EmRxRkXnwBAsVWuicBxG3HStFLQPGGlvL8wGKTtHw==} 9434 + wrangler@4.23.0: 9435 + resolution: {integrity: sha512-JSeDt3IwA4TEmg/V3tRblImPjdxynBt9PUVO/acQJ83XGlMMSwswDKL1FuwvbFzgX6+JXc3GMHeu7r8AQIxw9w==} 9363 9436 engines: {node: '>=18.0.0'} 9364 9437 hasBin: true 9365 9438 peerDependencies: 9366 - '@cloudflare/workers-types': ^4.20250525.0 9439 + '@cloudflare/workers-types': ^4.20250617.0 9367 9440 peerDependenciesMeta: 9368 9441 '@cloudflare/workers-types': 9369 9442 optional: true ··· 9543 9616 '@aws-crypto/supports-web-crypto': 3.0.0 9544 9617 '@aws-crypto/util': 3.0.0 9545 9618 '@aws-sdk/types': 3.775.0 9546 - '@aws-sdk/util-locate-window': 3.723.0 9619 + '@aws-sdk/util-locate-window': 3.693.0 9547 9620 '@aws-sdk/util-utf8-browser': 3.259.0 9548 9621 tslib: 1.14.1 9549 9622 ··· 9634 9707 transitivePeerDependencies: 9635 9708 - aws-crt 9636 9709 9637 - '@aws-sdk/client-dynamodb@3.799.0': 9710 + '@aws-sdk/client-dynamodb@3.840.0': 9638 9711 dependencies: 9639 9712 '@aws-crypto/sha256-browser': 5.2.0 9640 9713 '@aws-crypto/sha256-js': 5.2.0 9641 - '@aws-sdk/core': 3.799.0 9642 - '@aws-sdk/credential-provider-node': 3.799.0 9643 - '@aws-sdk/middleware-endpoint-discovery': 3.775.0 9644 - '@aws-sdk/middleware-host-header': 3.775.0 9645 - '@aws-sdk/middleware-logger': 3.775.0 9646 - '@aws-sdk/middleware-recursion-detection': 3.775.0 9647 - '@aws-sdk/middleware-user-agent': 3.799.0 9648 - '@aws-sdk/region-config-resolver': 3.775.0 9649 - '@aws-sdk/types': 3.775.0 9650 - '@aws-sdk/util-endpoints': 3.787.0 9651 - '@aws-sdk/util-user-agent-browser': 3.775.0 9652 - '@aws-sdk/util-user-agent-node': 3.799.0 9653 - '@smithy/config-resolver': 4.1.0 9654 - '@smithy/core': 3.3.0 9655 - '@smithy/fetch-http-handler': 5.0.2 9656 - '@smithy/hash-node': 4.0.2 9657 - '@smithy/invalid-dependency': 4.0.2 9658 - '@smithy/middleware-content-length': 4.0.2 9659 - '@smithy/middleware-endpoint': 4.1.1 9660 - '@smithy/middleware-retry': 4.1.2 9661 - '@smithy/middleware-serde': 4.0.3 9662 - '@smithy/middleware-stack': 4.0.2 9663 - '@smithy/node-config-provider': 4.0.2 9664 - '@smithy/node-http-handler': 4.0.4 9665 - '@smithy/protocol-http': 5.1.0 9666 - '@smithy/smithy-client': 4.2.1 9667 - '@smithy/types': 4.2.0 9668 - '@smithy/url-parser': 4.0.2 9714 + '@aws-sdk/core': 3.840.0 9715 + '@aws-sdk/credential-provider-node': 3.840.0 9716 + '@aws-sdk/middleware-endpoint-discovery': 3.840.0 9717 + '@aws-sdk/middleware-host-header': 3.840.0 9718 + '@aws-sdk/middleware-logger': 3.840.0 9719 + '@aws-sdk/middleware-recursion-detection': 3.840.0 9720 + '@aws-sdk/middleware-user-agent': 3.840.0 9721 + '@aws-sdk/region-config-resolver': 3.840.0 9722 + '@aws-sdk/types': 3.840.0 9723 + '@aws-sdk/util-endpoints': 3.840.0 9724 + '@aws-sdk/util-user-agent-browser': 3.840.0 9725 + '@aws-sdk/util-user-agent-node': 3.840.0 9726 + '@smithy/config-resolver': 4.1.4 9727 + '@smithy/core': 3.6.0 9728 + '@smithy/fetch-http-handler': 5.0.4 9729 + '@smithy/hash-node': 4.0.4 9730 + '@smithy/invalid-dependency': 4.0.4 9731 + '@smithy/middleware-content-length': 4.0.4 9732 + '@smithy/middleware-endpoint': 4.1.13 9733 + '@smithy/middleware-retry': 4.1.14 9734 + '@smithy/middleware-serde': 4.0.8 9735 + '@smithy/middleware-stack': 4.0.4 9736 + '@smithy/node-config-provider': 4.1.3 9737 + '@smithy/node-http-handler': 4.0.6 9738 + '@smithy/protocol-http': 5.1.2 9739 + '@smithy/smithy-client': 4.4.5 9740 + '@smithy/types': 4.3.1 9741 + '@smithy/url-parser': 4.0.4 9669 9742 '@smithy/util-base64': 4.0.0 9670 9743 '@smithy/util-body-length-browser': 4.0.0 9671 9744 '@smithy/util-body-length-node': 4.0.0 9672 - '@smithy/util-defaults-mode-browser': 4.0.9 9673 - '@smithy/util-defaults-mode-node': 4.0.9 9674 - '@smithy/util-endpoints': 3.0.2 9675 - '@smithy/util-middleware': 4.0.2 9676 - '@smithy/util-retry': 4.0.3 9745 + '@smithy/util-defaults-mode-browser': 4.0.21 9746 + '@smithy/util-defaults-mode-node': 4.0.21 9747 + '@smithy/util-endpoints': 3.0.6 9748 + '@smithy/util-middleware': 4.0.4 9749 + '@smithy/util-retry': 4.0.6 9677 9750 '@smithy/util-utf8': 4.0.0 9678 - '@smithy/util-waiter': 4.0.3 9751 + '@smithy/util-waiter': 4.0.6 9679 9752 '@types/uuid': 9.0.8 9680 9753 tslib: 2.8.1 9681 9754 uuid: 9.0.1 9682 9755 transitivePeerDependencies: 9683 9756 - aws-crt 9684 9757 9685 - '@aws-sdk/client-lambda@3.799.0': 9758 + '@aws-sdk/client-lambda@3.840.0': 9686 9759 dependencies: 9687 9760 '@aws-crypto/sha256-browser': 5.2.0 9688 9761 '@aws-crypto/sha256-js': 5.2.0 9689 - '@aws-sdk/core': 3.799.0 9690 - '@aws-sdk/credential-provider-node': 3.799.0 9691 - '@aws-sdk/middleware-host-header': 3.775.0 9692 - '@aws-sdk/middleware-logger': 3.775.0 9693 - '@aws-sdk/middleware-recursion-detection': 3.775.0 9694 - '@aws-sdk/middleware-user-agent': 3.799.0 9695 - '@aws-sdk/region-config-resolver': 3.775.0 9696 - '@aws-sdk/types': 3.775.0 9697 - '@aws-sdk/util-endpoints': 3.787.0 9698 - '@aws-sdk/util-user-agent-browser': 3.775.0 9699 - '@aws-sdk/util-user-agent-node': 3.799.0 9700 - '@smithy/config-resolver': 4.1.0 9701 - '@smithy/core': 3.3.0 9702 - '@smithy/eventstream-serde-browser': 4.0.2 9703 - '@smithy/eventstream-serde-config-resolver': 4.1.0 9704 - '@smithy/eventstream-serde-node': 4.0.2 9705 - '@smithy/fetch-http-handler': 5.0.2 9706 - '@smithy/hash-node': 4.0.2 9707 - '@smithy/invalid-dependency': 4.0.2 9708 - '@smithy/middleware-content-length': 4.0.2 9709 - '@smithy/middleware-endpoint': 4.1.1 9710 - '@smithy/middleware-retry': 4.1.2 9711 - '@smithy/middleware-serde': 4.0.3 9712 - '@smithy/middleware-stack': 4.0.2 9713 - '@smithy/node-config-provider': 4.0.2 9714 - '@smithy/node-http-handler': 4.0.4 9715 - '@smithy/protocol-http': 5.1.0 9716 - '@smithy/smithy-client': 4.2.1 9717 - '@smithy/types': 4.2.0 9718 - '@smithy/url-parser': 4.0.2 9762 + '@aws-sdk/core': 3.840.0 9763 + '@aws-sdk/credential-provider-node': 3.840.0 9764 + '@aws-sdk/middleware-host-header': 3.840.0 9765 + '@aws-sdk/middleware-logger': 3.840.0 9766 + '@aws-sdk/middleware-recursion-detection': 3.840.0 9767 + '@aws-sdk/middleware-user-agent': 3.840.0 9768 + '@aws-sdk/region-config-resolver': 3.840.0 9769 + '@aws-sdk/types': 3.840.0 9770 + '@aws-sdk/util-endpoints': 3.840.0 9771 + '@aws-sdk/util-user-agent-browser': 3.840.0 9772 + '@aws-sdk/util-user-agent-node': 3.840.0 9773 + '@smithy/config-resolver': 4.1.4 9774 + '@smithy/core': 3.6.0 9775 + '@smithy/eventstream-serde-browser': 4.0.4 9776 + '@smithy/eventstream-serde-config-resolver': 4.1.2 9777 + '@smithy/eventstream-serde-node': 4.0.4 9778 + '@smithy/fetch-http-handler': 5.0.4 9779 + '@smithy/hash-node': 4.0.4 9780 + '@smithy/invalid-dependency': 4.0.4 9781 + '@smithy/middleware-content-length': 4.0.4 9782 + '@smithy/middleware-endpoint': 4.1.13 9783 + '@smithy/middleware-retry': 4.1.14 9784 + '@smithy/middleware-serde': 4.0.8 9785 + '@smithy/middleware-stack': 4.0.4 9786 + '@smithy/node-config-provider': 4.1.3 9787 + '@smithy/node-http-handler': 4.0.6 9788 + '@smithy/protocol-http': 5.1.2 9789 + '@smithy/smithy-client': 4.4.5 9790 + '@smithy/types': 4.3.1 9791 + '@smithy/url-parser': 4.0.4 9719 9792 '@smithy/util-base64': 4.0.0 9720 9793 '@smithy/util-body-length-browser': 4.0.0 9721 9794 '@smithy/util-body-length-node': 4.0.0 9722 - '@smithy/util-defaults-mode-browser': 4.0.9 9723 - '@smithy/util-defaults-mode-node': 4.0.9 9724 - '@smithy/util-endpoints': 3.0.2 9725 - '@smithy/util-middleware': 4.0.2 9726 - '@smithy/util-retry': 4.0.3 9727 - '@smithy/util-stream': 4.2.0 9795 + '@smithy/util-defaults-mode-browser': 4.0.21 9796 + '@smithy/util-defaults-mode-node': 4.0.21 9797 + '@smithy/util-endpoints': 3.0.6 9798 + '@smithy/util-middleware': 4.0.4 9799 + '@smithy/util-retry': 4.0.6 9800 + '@smithy/util-stream': 4.2.2 9728 9801 '@smithy/util-utf8': 4.0.0 9729 - '@smithy/util-waiter': 4.0.3 9802 + '@smithy/util-waiter': 4.0.6 9730 9803 tslib: 2.8.1 9731 9804 transitivePeerDependencies: 9732 9805 - aws-crt ··· 9794 9867 transitivePeerDependencies: 9795 9868 - aws-crt 9796 9869 9797 - '@aws-sdk/client-s3@3.802.0': 9870 + '@aws-sdk/client-sqs@3.840.0': 9798 9871 dependencies: 9799 - '@aws-crypto/sha1-browser': 5.2.0 9800 9872 '@aws-crypto/sha256-browser': 5.2.0 9801 9873 '@aws-crypto/sha256-js': 5.2.0 9802 - '@aws-sdk/core': 3.799.0 9803 - '@aws-sdk/credential-provider-node': 3.799.0 9804 - '@aws-sdk/middleware-bucket-endpoint': 3.775.0 9805 - '@aws-sdk/middleware-expect-continue': 3.775.0 9806 - '@aws-sdk/middleware-flexible-checksums': 3.799.0 9807 - '@aws-sdk/middleware-host-header': 3.775.0 9808 - '@aws-sdk/middleware-location-constraint': 3.775.0 9809 - '@aws-sdk/middleware-logger': 3.775.0 9810 - '@aws-sdk/middleware-recursion-detection': 3.775.0 9811 - '@aws-sdk/middleware-sdk-s3': 3.799.0 9812 - '@aws-sdk/middleware-ssec': 3.775.0 9813 - '@aws-sdk/middleware-user-agent': 3.799.0 9814 - '@aws-sdk/region-config-resolver': 3.775.0 9815 - '@aws-sdk/signature-v4-multi-region': 3.800.0 9816 - '@aws-sdk/types': 3.775.0 9817 - '@aws-sdk/util-endpoints': 3.787.0 9818 - '@aws-sdk/util-user-agent-browser': 3.775.0 9819 - '@aws-sdk/util-user-agent-node': 3.799.0 9820 - '@aws-sdk/xml-builder': 3.775.0 9821 - '@smithy/config-resolver': 4.1.0 9822 - '@smithy/core': 3.3.0 9823 - '@smithy/eventstream-serde-browser': 4.0.2 9824 - '@smithy/eventstream-serde-config-resolver': 4.1.0 9825 - '@smithy/eventstream-serde-node': 4.0.2 9826 - '@smithy/fetch-http-handler': 5.0.2 9827 - '@smithy/hash-blob-browser': 4.0.2 9828 - '@smithy/hash-node': 4.0.2 9829 - '@smithy/hash-stream-node': 4.0.2 9830 - '@smithy/invalid-dependency': 4.0.2 9831 - '@smithy/md5-js': 4.0.2 9832 - '@smithy/middleware-content-length': 4.0.2 9833 - '@smithy/middleware-endpoint': 4.1.1 9834 - '@smithy/middleware-retry': 4.1.2 9835 - '@smithy/middleware-serde': 4.0.3 9836 - '@smithy/middleware-stack': 4.0.2 9837 - '@smithy/node-config-provider': 4.0.2 9838 - '@smithy/node-http-handler': 4.0.4 9839 - '@smithy/protocol-http': 5.1.0 9840 - '@smithy/smithy-client': 4.2.1 9841 - '@smithy/types': 4.2.0 9842 - '@smithy/url-parser': 4.0.2 9843 - '@smithy/util-base64': 4.0.0 9844 - '@smithy/util-body-length-browser': 4.0.0 9845 - '@smithy/util-body-length-node': 4.0.0 9846 - '@smithy/util-defaults-mode-browser': 4.0.9 9847 - '@smithy/util-defaults-mode-node': 4.0.9 9848 - '@smithy/util-endpoints': 3.0.2 9849 - '@smithy/util-middleware': 4.0.2 9850 - '@smithy/util-retry': 4.0.3 9851 - '@smithy/util-stream': 4.2.0 9852 - '@smithy/util-utf8': 4.0.0 9853 - '@smithy/util-waiter': 4.0.3 9854 - tslib: 2.8.1 9855 - transitivePeerDependencies: 9856 - - aws-crt 9857 - 9858 - '@aws-sdk/client-sqs@3.799.0': 9859 - dependencies: 9860 - '@aws-crypto/sha256-browser': 5.2.0 9861 - '@aws-crypto/sha256-js': 5.2.0 9862 - '@aws-sdk/core': 3.799.0 9863 - '@aws-sdk/credential-provider-node': 3.799.0 9864 - '@aws-sdk/middleware-host-header': 3.775.0 9865 - '@aws-sdk/middleware-logger': 3.775.0 9866 - '@aws-sdk/middleware-recursion-detection': 3.775.0 9867 - '@aws-sdk/middleware-sdk-sqs': 3.798.0 9868 - '@aws-sdk/middleware-user-agent': 3.799.0 9869 - '@aws-sdk/region-config-resolver': 3.775.0 9870 - '@aws-sdk/types': 3.775.0 9871 - '@aws-sdk/util-endpoints': 3.787.0 9872 - '@aws-sdk/util-user-agent-browser': 3.775.0 9873 - '@aws-sdk/util-user-agent-node': 3.799.0 9874 - '@smithy/config-resolver': 4.1.0 9875 - '@smithy/core': 3.3.0 9876 - '@smithy/fetch-http-handler': 5.0.2 9877 - '@smithy/hash-node': 4.0.2 9878 - '@smithy/invalid-dependency': 4.0.2 9879 - '@smithy/md5-js': 4.0.2 9880 - '@smithy/middleware-content-length': 4.0.2 9881 - '@smithy/middleware-endpoint': 4.1.1 9882 - '@smithy/middleware-retry': 4.1.2 9883 - '@smithy/middleware-serde': 4.0.3 9884 - '@smithy/middleware-stack': 4.0.2 9885 - '@smithy/node-config-provider': 4.0.2 9886 - '@smithy/node-http-handler': 4.0.4 9887 - '@smithy/protocol-http': 5.1.0 9888 - '@smithy/smithy-client': 4.2.1 9889 - '@smithy/types': 4.2.0 9890 - '@smithy/url-parser': 4.0.2 9874 + '@aws-sdk/core': 3.840.0 9875 + '@aws-sdk/credential-provider-node': 3.840.0 9876 + '@aws-sdk/middleware-host-header': 3.840.0 9877 + '@aws-sdk/middleware-logger': 3.840.0 9878 + '@aws-sdk/middleware-recursion-detection': 3.840.0 9879 + '@aws-sdk/middleware-sdk-sqs': 3.840.0 9880 + '@aws-sdk/middleware-user-agent': 3.840.0 9881 + '@aws-sdk/region-config-resolver': 3.840.0 9882 + '@aws-sdk/types': 3.840.0 9883 + '@aws-sdk/util-endpoints': 3.840.0 9884 + '@aws-sdk/util-user-agent-browser': 3.840.0 9885 + '@aws-sdk/util-user-agent-node': 3.840.0 9886 + '@smithy/config-resolver': 4.1.4 9887 + '@smithy/core': 3.6.0 9888 + '@smithy/fetch-http-handler': 5.0.4 9889 + '@smithy/hash-node': 4.0.4 9890 + '@smithy/invalid-dependency': 4.0.4 9891 + '@smithy/md5-js': 4.0.4 9892 + '@smithy/middleware-content-length': 4.0.4 9893 + '@smithy/middleware-endpoint': 4.1.13 9894 + '@smithy/middleware-retry': 4.1.14 9895 + '@smithy/middleware-serde': 4.0.8 9896 + '@smithy/middleware-stack': 4.0.4 9897 + '@smithy/node-config-provider': 4.1.3 9898 + '@smithy/node-http-handler': 4.0.6 9899 + '@smithy/protocol-http': 5.1.2 9900 + '@smithy/smithy-client': 4.4.5 9901 + '@smithy/types': 4.3.1 9902 + '@smithy/url-parser': 4.0.4 9891 9903 '@smithy/util-base64': 4.0.0 9892 9904 '@smithy/util-body-length-browser': 4.0.0 9893 9905 '@smithy/util-body-length-node': 4.0.0 9894 - '@smithy/util-defaults-mode-browser': 4.0.9 9895 - '@smithy/util-defaults-mode-node': 4.0.9 9896 - '@smithy/util-endpoints': 3.0.2 9897 - '@smithy/util-middleware': 4.0.2 9898 - '@smithy/util-retry': 4.0.3 9906 + '@smithy/util-defaults-mode-browser': 4.0.21 9907 + '@smithy/util-defaults-mode-node': 4.0.21 9908 + '@smithy/util-endpoints': 3.0.6 9909 + '@smithy/util-middleware': 4.0.4 9910 + '@smithy/util-retry': 4.0.6 9899 9911 '@smithy/util-utf8': 4.0.0 9900 9912 tslib: 2.8.1 9901 9913 transitivePeerDependencies: ··· 10027 10039 transitivePeerDependencies: 10028 10040 - aws-crt 10029 10041 10030 - '@aws-sdk/client-sso@3.799.0': 10042 + '@aws-sdk/client-sso@3.840.0': 10031 10043 dependencies: 10032 10044 '@aws-crypto/sha256-browser': 5.2.0 10033 10045 '@aws-crypto/sha256-js': 5.2.0 10034 - '@aws-sdk/core': 3.799.0 10035 - '@aws-sdk/middleware-host-header': 3.775.0 10036 - '@aws-sdk/middleware-logger': 3.775.0 10037 - '@aws-sdk/middleware-recursion-detection': 3.775.0 10038 - '@aws-sdk/middleware-user-agent': 3.799.0 10039 - '@aws-sdk/region-config-resolver': 3.775.0 10040 - '@aws-sdk/types': 3.775.0 10041 - '@aws-sdk/util-endpoints': 3.787.0 10042 - '@aws-sdk/util-user-agent-browser': 3.775.0 10043 - '@aws-sdk/util-user-agent-node': 3.799.0 10044 - '@smithy/config-resolver': 4.1.0 10045 - '@smithy/core': 3.3.0 10046 - '@smithy/fetch-http-handler': 5.0.2 10047 - '@smithy/hash-node': 4.0.2 10048 - '@smithy/invalid-dependency': 4.0.2 10049 - '@smithy/middleware-content-length': 4.0.2 10050 - '@smithy/middleware-endpoint': 4.1.1 10051 - '@smithy/middleware-retry': 4.1.2 10052 - '@smithy/middleware-serde': 4.0.3 10053 - '@smithy/middleware-stack': 4.0.2 10054 - '@smithy/node-config-provider': 4.0.2 10055 - '@smithy/node-http-handler': 4.0.4 10056 - '@smithy/protocol-http': 5.1.0 10057 - '@smithy/smithy-client': 4.2.1 10058 - '@smithy/types': 4.2.0 10059 - '@smithy/url-parser': 4.0.2 10046 + '@aws-sdk/core': 3.840.0 10047 + '@aws-sdk/middleware-host-header': 3.840.0 10048 + '@aws-sdk/middleware-logger': 3.840.0 10049 + '@aws-sdk/middleware-recursion-detection': 3.840.0 10050 + '@aws-sdk/middleware-user-agent': 3.840.0 10051 + '@aws-sdk/region-config-resolver': 3.840.0 10052 + '@aws-sdk/types': 3.840.0 10053 + '@aws-sdk/util-endpoints': 3.840.0 10054 + '@aws-sdk/util-user-agent-browser': 3.840.0 10055 + '@aws-sdk/util-user-agent-node': 3.840.0 10056 + '@smithy/config-resolver': 4.1.4 10057 + '@smithy/core': 3.6.0 10058 + '@smithy/fetch-http-handler': 5.0.4 10059 + '@smithy/hash-node': 4.0.4 10060 + '@smithy/invalid-dependency': 4.0.4 10061 + '@smithy/middleware-content-length': 4.0.4 10062 + '@smithy/middleware-endpoint': 4.1.13 10063 + '@smithy/middleware-retry': 4.1.14 10064 + '@smithy/middleware-serde': 4.0.8 10065 + '@smithy/middleware-stack': 4.0.4 10066 + '@smithy/node-config-provider': 4.1.3 10067 + '@smithy/node-http-handler': 4.0.6 10068 + '@smithy/protocol-http': 5.1.2 10069 + '@smithy/smithy-client': 4.4.5 10070 + '@smithy/types': 4.3.1 10071 + '@smithy/url-parser': 4.0.4 10060 10072 '@smithy/util-base64': 4.0.0 10061 10073 '@smithy/util-body-length-browser': 4.0.0 10062 10074 '@smithy/util-body-length-node': 4.0.0 10063 - '@smithy/util-defaults-mode-browser': 4.0.9 10064 - '@smithy/util-defaults-mode-node': 4.0.9 10065 - '@smithy/util-endpoints': 3.0.2 10066 - '@smithy/util-middleware': 4.0.2 10067 - '@smithy/util-retry': 4.0.3 10075 + '@smithy/util-defaults-mode-browser': 4.0.21 10076 + '@smithy/util-defaults-mode-node': 4.0.21 10077 + '@smithy/util-endpoints': 3.0.6 10078 + '@smithy/util-middleware': 4.0.4 10079 + '@smithy/util-retry': 4.0.6 10068 10080 '@smithy/util-utf8': 4.0.0 10069 10081 tslib: 2.8.1 10070 10082 transitivePeerDependencies: ··· 10185 10197 fast-xml-parser: 4.4.1 10186 10198 tslib: 2.8.1 10187 10199 10188 - '@aws-sdk/core@3.799.0': 10200 + '@aws-sdk/core@3.840.0': 10189 10201 dependencies: 10190 - '@aws-sdk/types': 3.775.0 10191 - '@smithy/core': 3.3.0 10192 - '@smithy/node-config-provider': 4.0.2 10193 - '@smithy/property-provider': 4.0.2 10194 - '@smithy/protocol-http': 5.1.0 10195 - '@smithy/signature-v4': 5.1.0 10196 - '@smithy/smithy-client': 4.2.1 10197 - '@smithy/types': 4.2.0 10198 - '@smithy/util-middleware': 4.0.2 10202 + '@aws-sdk/types': 3.840.0 10203 + '@aws-sdk/xml-builder': 3.821.0 10204 + '@smithy/core': 3.6.0 10205 + '@smithy/node-config-provider': 4.1.3 10206 + '@smithy/property-provider': 4.0.4 10207 + '@smithy/protocol-http': 5.1.2 10208 + '@smithy/signature-v4': 5.1.2 10209 + '@smithy/smithy-client': 4.4.5 10210 + '@smithy/types': 4.3.1 10211 + '@smithy/util-base64': 4.0.0 10212 + '@smithy/util-body-length-browser': 4.0.0 10213 + '@smithy/util-middleware': 4.0.4 10214 + '@smithy/util-utf8': 4.0.0 10199 10215 fast-xml-parser: 4.4.1 10200 10216 tslib: 2.8.1 10201 10217 ··· 10214 10230 '@smithy/types': 4.2.0 10215 10231 tslib: 2.8.1 10216 10232 10217 - '@aws-sdk/credential-provider-env@3.799.0': 10233 + '@aws-sdk/credential-provider-env@3.840.0': 10218 10234 dependencies: 10219 - '@aws-sdk/core': 3.799.0 10220 - '@aws-sdk/types': 3.775.0 10221 - '@smithy/property-provider': 4.0.2 10222 - '@smithy/types': 4.2.0 10235 + '@aws-sdk/core': 3.840.0 10236 + '@aws-sdk/types': 3.840.0 10237 + '@smithy/property-provider': 4.0.4 10238 + '@smithy/types': 4.3.1 10223 10239 tslib: 2.8.1 10224 10240 10225 10241 '@aws-sdk/credential-provider-http@3.723.0': ··· 10235 10251 '@smithy/util-stream': 4.2.0 10236 10252 tslib: 2.8.1 10237 10253 10238 - '@aws-sdk/credential-provider-http@3.799.0': 10254 + '@aws-sdk/credential-provider-http@3.840.0': 10239 10255 dependencies: 10240 - '@aws-sdk/core': 3.799.0 10241 - '@aws-sdk/types': 3.775.0 10242 - '@smithy/fetch-http-handler': 5.0.2 10243 - '@smithy/node-http-handler': 4.0.4 10244 - '@smithy/property-provider': 4.0.2 10245 - '@smithy/protocol-http': 5.1.0 10246 - '@smithy/smithy-client': 4.2.1 10247 - '@smithy/types': 4.2.0 10248 - '@smithy/util-stream': 4.2.0 10256 + '@aws-sdk/core': 3.840.0 10257 + '@aws-sdk/types': 3.840.0 10258 + '@smithy/fetch-http-handler': 5.0.4 10259 + '@smithy/node-http-handler': 4.0.6 10260 + '@smithy/property-provider': 4.0.4 10261 + '@smithy/protocol-http': 5.1.2 10262 + '@smithy/smithy-client': 4.4.5 10263 + '@smithy/types': 4.3.1 10264 + '@smithy/util-stream': 4.2.2 10249 10265 tslib: 2.8.1 10250 10266 10251 10267 '@aws-sdk/credential-provider-ini@3.398.0': ··· 10282 10298 - '@aws-sdk/client-sso-oidc' 10283 10299 - aws-crt 10284 10300 10285 - '@aws-sdk/credential-provider-ini@3.799.0': 10301 + '@aws-sdk/credential-provider-ini@3.840.0': 10286 10302 dependencies: 10287 - '@aws-sdk/core': 3.799.0 10288 - '@aws-sdk/credential-provider-env': 3.799.0 10289 - '@aws-sdk/credential-provider-http': 3.799.0 10290 - '@aws-sdk/credential-provider-process': 3.799.0 10291 - '@aws-sdk/credential-provider-sso': 3.799.0 10292 - '@aws-sdk/credential-provider-web-identity': 3.799.0 10293 - '@aws-sdk/nested-clients': 3.799.0 10294 - '@aws-sdk/types': 3.775.0 10295 - '@smithy/credential-provider-imds': 4.0.2 10296 - '@smithy/property-provider': 4.0.2 10297 - '@smithy/shared-ini-file-loader': 4.0.2 10298 - '@smithy/types': 4.2.0 10303 + '@aws-sdk/core': 3.840.0 10304 + '@aws-sdk/credential-provider-env': 3.840.0 10305 + '@aws-sdk/credential-provider-http': 3.840.0 10306 + '@aws-sdk/credential-provider-process': 3.840.0 10307 + '@aws-sdk/credential-provider-sso': 3.840.0 10308 + '@aws-sdk/credential-provider-web-identity': 3.840.0 10309 + '@aws-sdk/nested-clients': 3.840.0 10310 + '@aws-sdk/types': 3.840.0 10311 + '@smithy/credential-provider-imds': 4.0.6 10312 + '@smithy/property-provider': 4.0.4 10313 + '@smithy/shared-ini-file-loader': 4.0.4 10314 + '@smithy/types': 4.3.1 10299 10315 tslib: 2.8.1 10300 10316 transitivePeerDependencies: 10301 10317 - aws-crt ··· 10335 10351 - '@aws-sdk/client-sts' 10336 10352 - aws-crt 10337 10353 10338 - '@aws-sdk/credential-provider-node@3.799.0': 10354 + '@aws-sdk/credential-provider-node@3.840.0': 10339 10355 dependencies: 10340 - '@aws-sdk/credential-provider-env': 3.799.0 10341 - '@aws-sdk/credential-provider-http': 3.799.0 10342 - '@aws-sdk/credential-provider-ini': 3.799.0 10343 - '@aws-sdk/credential-provider-process': 3.799.0 10344 - '@aws-sdk/credential-provider-sso': 3.799.0 10345 - '@aws-sdk/credential-provider-web-identity': 3.799.0 10346 - '@aws-sdk/types': 3.775.0 10347 - '@smithy/credential-provider-imds': 4.0.2 10348 - '@smithy/property-provider': 4.0.2 10349 - '@smithy/shared-ini-file-loader': 4.0.2 10350 - '@smithy/types': 4.2.0 10356 + '@aws-sdk/credential-provider-env': 3.840.0 10357 + '@aws-sdk/credential-provider-http': 3.840.0 10358 + '@aws-sdk/credential-provider-ini': 3.840.0 10359 + '@aws-sdk/credential-provider-process': 3.840.0 10360 + '@aws-sdk/credential-provider-sso': 3.840.0 10361 + '@aws-sdk/credential-provider-web-identity': 3.840.0 10362 + '@aws-sdk/types': 3.840.0 10363 + '@smithy/credential-provider-imds': 4.0.6 10364 + '@smithy/property-provider': 4.0.4 10365 + '@smithy/shared-ini-file-loader': 4.0.4 10366 + '@smithy/types': 4.3.1 10351 10367 tslib: 2.8.1 10352 10368 transitivePeerDependencies: 10353 10369 - aws-crt ··· 10369 10385 '@smithy/types': 4.2.0 10370 10386 tslib: 2.8.1 10371 10387 10372 - '@aws-sdk/credential-provider-process@3.799.0': 10388 + '@aws-sdk/credential-provider-process@3.840.0': 10373 10389 dependencies: 10374 - '@aws-sdk/core': 3.799.0 10375 - '@aws-sdk/types': 3.775.0 10376 - '@smithy/property-provider': 4.0.2 10377 - '@smithy/shared-ini-file-loader': 4.0.2 10378 - '@smithy/types': 4.2.0 10390 + '@aws-sdk/core': 3.840.0 10391 + '@aws-sdk/types': 3.840.0 10392 + '@smithy/property-provider': 4.0.4 10393 + '@smithy/shared-ini-file-loader': 4.0.4 10394 + '@smithy/types': 4.3.1 10379 10395 tslib: 2.8.1 10380 10396 10381 10397 '@aws-sdk/credential-provider-sso@3.398.0': ··· 10404 10420 - '@aws-sdk/client-sso-oidc' 10405 10421 - aws-crt 10406 10422 10407 - '@aws-sdk/credential-provider-sso@3.799.0': 10423 + '@aws-sdk/credential-provider-sso@3.840.0': 10408 10424 dependencies: 10409 - '@aws-sdk/client-sso': 3.799.0 10410 - '@aws-sdk/core': 3.799.0 10411 - '@aws-sdk/token-providers': 3.799.0 10412 - '@aws-sdk/types': 3.775.0 10413 - '@smithy/property-provider': 4.0.2 10414 - '@smithy/shared-ini-file-loader': 4.0.2 10415 - '@smithy/types': 4.2.0 10425 + '@aws-sdk/client-sso': 3.840.0 10426 + '@aws-sdk/core': 3.840.0 10427 + '@aws-sdk/token-providers': 3.840.0 10428 + '@aws-sdk/types': 3.840.0 10429 + '@smithy/property-provider': 4.0.4 10430 + '@smithy/shared-ini-file-loader': 4.0.4 10431 + '@smithy/types': 4.3.1 10416 10432 tslib: 2.8.1 10417 10433 transitivePeerDependencies: 10418 10434 - aws-crt ··· 10433 10449 '@smithy/types': 4.2.0 10434 10450 tslib: 2.8.1 10435 10451 10436 - '@aws-sdk/credential-provider-web-identity@3.799.0': 10452 + '@aws-sdk/credential-provider-web-identity@3.840.0': 10437 10453 dependencies: 10438 - '@aws-sdk/core': 3.799.0 10439 - '@aws-sdk/nested-clients': 3.799.0 10440 - '@aws-sdk/types': 3.775.0 10441 - '@smithy/property-provider': 4.0.2 10442 - '@smithy/types': 4.2.0 10454 + '@aws-sdk/core': 3.840.0 10455 + '@aws-sdk/nested-clients': 3.840.0 10456 + '@aws-sdk/types': 3.840.0 10457 + '@smithy/property-provider': 4.0.4 10458 + '@smithy/types': 4.3.1 10443 10459 tslib: 2.8.1 10444 10460 transitivePeerDependencies: 10445 10461 - aws-crt 10446 10462 10447 - '@aws-sdk/endpoint-cache@3.723.0': 10463 + '@aws-sdk/endpoint-cache@3.804.0': 10448 10464 dependencies: 10449 10465 mnemonist: 0.38.3 10450 10466 tslib: 2.8.1 ··· 10459 10475 '@smithy/util-config-provider': 4.0.0 10460 10476 tslib: 2.8.1 10461 10477 10462 - '@aws-sdk/middleware-bucket-endpoint@3.775.0': 10478 + '@aws-sdk/middleware-endpoint-discovery@3.840.0': 10463 10479 dependencies: 10464 - '@aws-sdk/types': 3.775.0 10465 - '@aws-sdk/util-arn-parser': 3.723.0 10466 - '@smithy/node-config-provider': 4.0.2 10467 - '@smithy/protocol-http': 5.1.0 10468 - '@smithy/types': 4.2.0 10469 - '@smithy/util-config-provider': 4.0.0 10470 - tslib: 2.8.1 10471 - 10472 - '@aws-sdk/middleware-endpoint-discovery@3.775.0': 10473 - dependencies: 10474 - '@aws-sdk/endpoint-cache': 3.723.0 10475 - '@aws-sdk/types': 3.775.0 10476 - '@smithy/node-config-provider': 4.0.2 10477 - '@smithy/protocol-http': 5.1.0 10478 - '@smithy/types': 4.2.0 10480 + '@aws-sdk/endpoint-cache': 3.804.0 10481 + '@aws-sdk/types': 3.840.0 10482 + '@smithy/node-config-provider': 4.1.3 10483 + '@smithy/protocol-http': 5.1.2 10484 + '@smithy/types': 4.3.1 10479 10485 tslib: 2.8.1 10480 10486 10481 10487 '@aws-sdk/middleware-expect-continue@3.723.0': ··· 10483 10489 '@aws-sdk/types': 3.723.0 10484 10490 '@smithy/protocol-http': 5.0.1 10485 10491 '@smithy/types': 4.1.0 10486 - tslib: 2.8.1 10487 - 10488 - '@aws-sdk/middleware-expect-continue@3.775.0': 10489 - dependencies: 10490 - '@aws-sdk/types': 3.775.0 10491 - '@smithy/protocol-http': 5.1.0 10492 - '@smithy/types': 4.2.0 10493 10492 tslib: 2.8.1 10494 10493 10495 10494 '@aws-sdk/middleware-flexible-checksums@3.723.0': ··· 10508 10507 '@smithy/util-utf8': 4.0.0 10509 10508 tslib: 2.8.1 10510 10509 10511 - '@aws-sdk/middleware-flexible-checksums@3.799.0': 10512 - dependencies: 10513 - '@aws-crypto/crc32': 5.2.0 10514 - '@aws-crypto/crc32c': 5.2.0 10515 - '@aws-crypto/util': 5.2.0 10516 - '@aws-sdk/core': 3.799.0 10517 - '@aws-sdk/types': 3.775.0 10518 - '@smithy/is-array-buffer': 4.0.0 10519 - '@smithy/node-config-provider': 4.0.2 10520 - '@smithy/protocol-http': 5.1.0 10521 - '@smithy/types': 4.2.0 10522 - '@smithy/util-middleware': 4.0.2 10523 - '@smithy/util-stream': 4.2.0 10524 - '@smithy/util-utf8': 4.0.0 10525 - tslib: 2.8.1 10526 - 10527 10510 '@aws-sdk/middleware-host-header@3.398.0': 10528 10511 dependencies: 10529 10512 '@aws-sdk/types': 3.398.0 ··· 10538 10521 '@smithy/types': 4.1.0 10539 10522 tslib: 2.8.1 10540 10523 10541 - '@aws-sdk/middleware-host-header@3.775.0': 10524 + '@aws-sdk/middleware-host-header@3.840.0': 10542 10525 dependencies: 10543 - '@aws-sdk/types': 3.775.0 10544 - '@smithy/protocol-http': 5.1.0 10545 - '@smithy/types': 4.2.0 10526 + '@aws-sdk/types': 3.840.0 10527 + '@smithy/protocol-http': 5.1.2 10528 + '@smithy/types': 4.3.1 10546 10529 tslib: 2.8.1 10547 10530 10548 10531 '@aws-sdk/middleware-location-constraint@3.723.0': ··· 10551 10534 '@smithy/types': 4.1.0 10552 10535 tslib: 2.8.1 10553 10536 10554 - '@aws-sdk/middleware-location-constraint@3.775.0': 10555 - dependencies: 10556 - '@aws-sdk/types': 3.775.0 10557 - '@smithy/types': 4.2.0 10558 - tslib: 2.8.1 10559 - 10560 10537 '@aws-sdk/middleware-logger@3.398.0': 10561 10538 dependencies: 10562 10539 '@aws-sdk/types': 3.398.0 ··· 10569 10546 '@smithy/types': 4.1.0 10570 10547 tslib: 2.8.1 10571 10548 10572 - '@aws-sdk/middleware-logger@3.775.0': 10549 + '@aws-sdk/middleware-logger@3.840.0': 10573 10550 dependencies: 10574 - '@aws-sdk/types': 3.775.0 10575 - '@smithy/types': 4.2.0 10551 + '@aws-sdk/types': 3.840.0 10552 + '@smithy/types': 4.3.1 10576 10553 tslib: 2.8.1 10577 10554 10578 10555 '@aws-sdk/middleware-recursion-detection@3.398.0': ··· 10589 10566 '@smithy/types': 4.1.0 10590 10567 tslib: 2.8.1 10591 10568 10592 - '@aws-sdk/middleware-recursion-detection@3.775.0': 10569 + '@aws-sdk/middleware-recursion-detection@3.840.0': 10593 10570 dependencies: 10594 - '@aws-sdk/types': 3.775.0 10595 - '@smithy/protocol-http': 5.1.0 10596 - '@smithy/types': 4.2.0 10571 + '@aws-sdk/types': 3.840.0 10572 + '@smithy/protocol-http': 5.1.2 10573 + '@smithy/types': 4.3.1 10597 10574 tslib: 2.8.1 10598 10575 10599 10576 '@aws-sdk/middleware-sdk-s3@3.723.0': ··· 10630 10607 '@smithy/util-utf8': 4.0.0 10631 10608 tslib: 2.8.1 10632 10609 10633 - '@aws-sdk/middleware-sdk-s3@3.799.0': 10610 + '@aws-sdk/middleware-sdk-sqs@3.840.0': 10634 10611 dependencies: 10635 - '@aws-sdk/core': 3.799.0 10636 - '@aws-sdk/types': 3.775.0 10637 - '@aws-sdk/util-arn-parser': 3.723.0 10638 - '@smithy/core': 3.3.0 10639 - '@smithy/node-config-provider': 4.0.2 10640 - '@smithy/protocol-http': 5.1.0 10641 - '@smithy/signature-v4': 5.1.0 10642 - '@smithy/smithy-client': 4.2.1 10643 - '@smithy/types': 4.2.0 10644 - '@smithy/util-config-provider': 4.0.0 10645 - '@smithy/util-middleware': 4.0.2 10646 - '@smithy/util-stream': 4.2.0 10647 - '@smithy/util-utf8': 4.0.0 10648 - tslib: 2.8.1 10649 - 10650 - '@aws-sdk/middleware-sdk-sqs@3.798.0': 10651 - dependencies: 10652 - '@aws-sdk/types': 3.775.0 10653 - '@smithy/smithy-client': 4.2.1 10654 - '@smithy/types': 4.2.0 10612 + '@aws-sdk/types': 3.840.0 10613 + '@smithy/smithy-client': 4.4.5 10614 + '@smithy/types': 4.3.1 10655 10615 '@smithy/util-hex-encoding': 4.0.0 10656 10616 '@smithy/util-utf8': 4.0.0 10657 10617 tslib: 2.8.1 ··· 10679 10639 '@smithy/types': 4.1.0 10680 10640 tslib: 2.8.1 10681 10641 10682 - '@aws-sdk/middleware-ssec@3.775.0': 10683 - dependencies: 10684 - '@aws-sdk/types': 3.775.0 10685 - '@smithy/types': 4.2.0 10686 - tslib: 2.8.1 10687 - 10688 10642 '@aws-sdk/middleware-user-agent@3.398.0': 10689 10643 dependencies: 10690 10644 '@aws-sdk/types': 3.398.0 ··· 10703 10657 '@smithy/types': 4.1.0 10704 10658 tslib: 2.8.1 10705 10659 10706 - '@aws-sdk/middleware-user-agent@3.799.0': 10660 + '@aws-sdk/middleware-user-agent@3.840.0': 10707 10661 dependencies: 10708 - '@aws-sdk/core': 3.799.0 10709 - '@aws-sdk/types': 3.775.0 10710 - '@aws-sdk/util-endpoints': 3.787.0 10711 - '@smithy/core': 3.3.0 10712 - '@smithy/protocol-http': 5.1.0 10713 - '@smithy/types': 4.2.0 10662 + '@aws-sdk/core': 3.840.0 10663 + '@aws-sdk/types': 3.840.0 10664 + '@aws-sdk/util-endpoints': 3.840.0 10665 + '@smithy/core': 3.6.0 10666 + '@smithy/protocol-http': 5.1.2 10667 + '@smithy/types': 4.3.1 10714 10668 tslib: 2.8.1 10715 10669 10716 - '@aws-sdk/nested-clients@3.799.0': 10670 + '@aws-sdk/nested-clients@3.840.0': 10717 10671 dependencies: 10718 10672 '@aws-crypto/sha256-browser': 5.2.0 10719 10673 '@aws-crypto/sha256-js': 5.2.0 10720 - '@aws-sdk/core': 3.799.0 10721 - '@aws-sdk/middleware-host-header': 3.775.0 10722 - '@aws-sdk/middleware-logger': 3.775.0 10723 - '@aws-sdk/middleware-recursion-detection': 3.775.0 10724 - '@aws-sdk/middleware-user-agent': 3.799.0 10725 - '@aws-sdk/region-config-resolver': 3.775.0 10726 - '@aws-sdk/types': 3.775.0 10727 - '@aws-sdk/util-endpoints': 3.787.0 10728 - '@aws-sdk/util-user-agent-browser': 3.775.0 10729 - '@aws-sdk/util-user-agent-node': 3.799.0 10730 - '@smithy/config-resolver': 4.1.0 10731 - '@smithy/core': 3.3.0 10732 - '@smithy/fetch-http-handler': 5.0.2 10733 - '@smithy/hash-node': 4.0.2 10734 - '@smithy/invalid-dependency': 4.0.2 10735 - '@smithy/middleware-content-length': 4.0.2 10736 - '@smithy/middleware-endpoint': 4.1.1 10737 - '@smithy/middleware-retry': 4.1.2 10738 - '@smithy/middleware-serde': 4.0.3 10739 - '@smithy/middleware-stack': 4.0.2 10740 - '@smithy/node-config-provider': 4.0.2 10741 - '@smithy/node-http-handler': 4.0.4 10742 - '@smithy/protocol-http': 5.1.0 10743 - '@smithy/smithy-client': 4.2.1 10744 - '@smithy/types': 4.2.0 10745 - '@smithy/url-parser': 4.0.2 10674 + '@aws-sdk/core': 3.840.0 10675 + '@aws-sdk/middleware-host-header': 3.840.0 10676 + '@aws-sdk/middleware-logger': 3.840.0 10677 + '@aws-sdk/middleware-recursion-detection': 3.840.0 10678 + '@aws-sdk/middleware-user-agent': 3.840.0 10679 + '@aws-sdk/region-config-resolver': 3.840.0 10680 + '@aws-sdk/types': 3.840.0 10681 + '@aws-sdk/util-endpoints': 3.840.0 10682 + '@aws-sdk/util-user-agent-browser': 3.840.0 10683 + '@aws-sdk/util-user-agent-node': 3.840.0 10684 + '@smithy/config-resolver': 4.1.4 10685 + '@smithy/core': 3.6.0 10686 + '@smithy/fetch-http-handler': 5.0.4 10687 + '@smithy/hash-node': 4.0.4 10688 + '@smithy/invalid-dependency': 4.0.4 10689 + '@smithy/middleware-content-length': 4.0.4 10690 + '@smithy/middleware-endpoint': 4.1.13 10691 + '@smithy/middleware-retry': 4.1.14 10692 + '@smithy/middleware-serde': 4.0.8 10693 + '@smithy/middleware-stack': 4.0.4 10694 + '@smithy/node-config-provider': 4.1.3 10695 + '@smithy/node-http-handler': 4.0.6 10696 + '@smithy/protocol-http': 5.1.2 10697 + '@smithy/smithy-client': 4.4.5 10698 + '@smithy/types': 4.3.1 10699 + '@smithy/url-parser': 4.0.4 10746 10700 '@smithy/util-base64': 4.0.0 10747 10701 '@smithy/util-body-length-browser': 4.0.0 10748 10702 '@smithy/util-body-length-node': 4.0.0 10749 - '@smithy/util-defaults-mode-browser': 4.0.9 10750 - '@smithy/util-defaults-mode-node': 4.0.9 10751 - '@smithy/util-endpoints': 3.0.2 10752 - '@smithy/util-middleware': 4.0.2 10753 - '@smithy/util-retry': 4.0.3 10703 + '@smithy/util-defaults-mode-browser': 4.0.21 10704 + '@smithy/util-defaults-mode-node': 4.0.21 10705 + '@smithy/util-endpoints': 3.0.6 10706 + '@smithy/util-middleware': 4.0.4 10707 + '@smithy/util-retry': 4.0.6 10754 10708 '@smithy/util-utf8': 4.0.0 10755 10709 tslib: 2.8.1 10756 10710 transitivePeerDependencies: ··· 10765 10719 '@smithy/util-middleware': 4.0.1 10766 10720 tslib: 2.8.1 10767 10721 10768 - '@aws-sdk/region-config-resolver@3.775.0': 10722 + '@aws-sdk/region-config-resolver@3.840.0': 10769 10723 dependencies: 10770 - '@aws-sdk/types': 3.775.0 10771 - '@smithy/node-config-provider': 4.0.2 10772 - '@smithy/types': 4.2.0 10724 + '@aws-sdk/types': 3.840.0 10725 + '@smithy/node-config-provider': 4.1.3 10726 + '@smithy/types': 4.3.1 10773 10727 '@smithy/util-config-provider': 4.0.0 10774 - '@smithy/util-middleware': 4.0.2 10728 + '@smithy/util-middleware': 4.0.4 10775 10729 tslib: 2.8.1 10776 10730 10777 10731 '@aws-sdk/s3-request-presigner@3.741.0': ··· 10801 10755 '@smithy/protocol-http': 5.0.1 10802 10756 '@smithy/signature-v4': 5.0.1 10803 10757 '@smithy/types': 4.1.0 10804 - tslib: 2.8.1 10805 - 10806 - '@aws-sdk/signature-v4-multi-region@3.800.0': 10807 - dependencies: 10808 - '@aws-sdk/middleware-sdk-s3': 3.799.0 10809 - '@aws-sdk/types': 3.775.0 10810 - '@smithy/protocol-http': 5.1.0 10811 - '@smithy/signature-v4': 5.1.0 10812 - '@smithy/types': 4.2.0 10813 10758 tslib: 2.8.1 10814 10759 10815 10760 '@aws-sdk/token-providers@3.398.0': ··· 10861 10806 '@smithy/types': 4.2.0 10862 10807 tslib: 2.8.1 10863 10808 10864 - '@aws-sdk/token-providers@3.799.0': 10809 + '@aws-sdk/token-providers@3.840.0': 10865 10810 dependencies: 10866 - '@aws-sdk/nested-clients': 3.799.0 10867 - '@aws-sdk/types': 3.775.0 10868 - '@smithy/property-provider': 4.0.2 10869 - '@smithy/shared-ini-file-loader': 4.0.2 10870 - '@smithy/types': 4.2.0 10811 + '@aws-sdk/core': 3.840.0 10812 + '@aws-sdk/nested-clients': 3.840.0 10813 + '@aws-sdk/types': 3.840.0 10814 + '@smithy/property-provider': 4.0.4 10815 + '@smithy/shared-ini-file-loader': 4.0.4 10816 + '@smithy/types': 4.3.1 10871 10817 tslib: 2.8.1 10872 10818 transitivePeerDependencies: 10873 10819 - aws-crt ··· 10892 10838 '@smithy/types': 4.2.0 10893 10839 tslib: 2.8.1 10894 10840 10841 + '@aws-sdk/types@3.840.0': 10842 + dependencies: 10843 + '@smithy/types': 4.3.1 10844 + tslib: 2.8.1 10845 + 10895 10846 '@aws-sdk/util-arn-parser@3.723.0': 10896 10847 dependencies: 10897 10848 tslib: 2.8.1 ··· 10908 10859 '@smithy/util-endpoints': 3.0.1 10909 10860 tslib: 2.8.1 10910 10861 10911 - '@aws-sdk/util-endpoints@3.787.0': 10862 + '@aws-sdk/util-endpoints@3.840.0': 10912 10863 dependencies: 10913 - '@aws-sdk/types': 3.775.0 10914 - '@smithy/types': 4.2.0 10915 - '@smithy/util-endpoints': 3.0.2 10864 + '@aws-sdk/types': 3.840.0 10865 + '@smithy/types': 4.3.1 10866 + '@smithy/util-endpoints': 3.0.6 10916 10867 tslib: 2.8.1 10917 10868 10918 10869 '@aws-sdk/util-format-url@3.734.0': ··· 10926 10877 dependencies: 10927 10878 tslib: 2.8.1 10928 10879 10929 - '@aws-sdk/util-locate-window@3.723.0': 10930 - dependencies: 10931 - tslib: 2.8.1 10932 - 10933 10880 '@aws-sdk/util-user-agent-browser@3.398.0': 10934 10881 dependencies: 10935 10882 '@aws-sdk/types': 3.398.0 ··· 10944 10891 bowser: 2.11.0 10945 10892 tslib: 2.8.1 10946 10893 10947 - '@aws-sdk/util-user-agent-browser@3.775.0': 10894 + '@aws-sdk/util-user-agent-browser@3.840.0': 10948 10895 dependencies: 10949 - '@aws-sdk/types': 3.775.0 10950 - '@smithy/types': 4.2.0 10896 + '@aws-sdk/types': 3.840.0 10897 + '@smithy/types': 4.3.1 10951 10898 bowser: 2.11.0 10952 10899 tslib: 2.8.1 10953 10900 ··· 10966 10913 '@smithy/types': 4.1.0 10967 10914 tslib: 2.8.1 10968 10915 10969 - '@aws-sdk/util-user-agent-node@3.799.0': 10916 + '@aws-sdk/util-user-agent-node@3.840.0': 10970 10917 dependencies: 10971 - '@aws-sdk/middleware-user-agent': 3.799.0 10972 - '@aws-sdk/types': 3.775.0 10973 - '@smithy/node-config-provider': 4.0.2 10974 - '@smithy/types': 4.2.0 10918 + '@aws-sdk/middleware-user-agent': 3.840.0 10919 + '@aws-sdk/types': 3.840.0 10920 + '@smithy/node-config-provider': 4.1.3 10921 + '@smithy/types': 4.3.1 10975 10922 tslib: 2.8.1 10976 10923 10977 10924 '@aws-sdk/util-utf8-browser@3.259.0': ··· 10987 10934 '@smithy/types': 4.1.0 10988 10935 tslib: 2.8.1 10989 10936 10990 - '@aws-sdk/xml-builder@3.775.0': 10937 + '@aws-sdk/xml-builder@3.821.0': 10991 10938 dependencies: 10992 - '@smithy/types': 4.2.0 10939 + '@smithy/types': 4.3.1 10993 10940 tslib: 2.8.1 10994 10941 10995 10942 '@babel/code-frame@7.27.1': ··· 11215 11162 dependencies: 11216 11163 mime: 3.0.0 11217 11164 11218 - '@cloudflare/unenv-preset@2.3.2(unenv@2.0.0-rc.17)(workerd@1.20250525.0)': 11165 + '@cloudflare/unenv-preset@2.3.3(unenv@2.0.0-rc.17)(workerd@1.20250617.0)': 11219 11166 dependencies: 11220 11167 unenv: 2.0.0-rc.17 11221 11168 optionalDependencies: 11222 - workerd: 1.20250525.0 11169 + workerd: 1.20250617.0 11223 11170 11224 - '@cloudflare/workerd-darwin-64@1.20250525.0': 11171 + '@cloudflare/workerd-darwin-64@1.20250617.0': 11225 11172 optional: true 11226 11173 11227 - '@cloudflare/workerd-darwin-arm64@1.20250525.0': 11174 + '@cloudflare/workerd-darwin-arm64@1.20250617.0': 11228 11175 optional: true 11229 11176 11230 - '@cloudflare/workerd-linux-64@1.20250525.0': 11177 + '@cloudflare/workerd-linux-64@1.20250617.0': 11231 11178 optional: true 11232 11179 11233 - '@cloudflare/workerd-linux-arm64@1.20250525.0': 11180 + '@cloudflare/workerd-linux-arm64@1.20250617.0': 11234 11181 optional: true 11235 11182 11236 - '@cloudflare/workerd-windows-64@1.20250525.0': 11183 + '@cloudflare/workerd-windows-64@1.20250617.0': 11237 11184 optional: true 11238 11185 11239 11186 '@cloudflare/workers-types@4.20250109.0': {} ··· 12841 12788 dependencies: 12842 12789 '@ast-grep/napi': 0.35.0 12843 12790 '@aws-sdk/client-cloudfront': 3.398.0 12844 - '@aws-sdk/client-dynamodb': 3.799.0 12845 - '@aws-sdk/client-lambda': 3.799.0 12846 - '@aws-sdk/client-s3': 3.802.0 12847 - '@aws-sdk/client-sqs': 3.799.0 12791 + '@aws-sdk/client-dynamodb': 3.840.0 12792 + '@aws-sdk/client-lambda': 3.840.0 12793 + '@aws-sdk/client-s3': 3.726.1 12794 + '@aws-sdk/client-sqs': 3.840.0 12848 12795 '@node-minify/core': 8.0.6 12849 12796 '@node-minify/terser': 8.0.6 12850 12797 '@tsconfig/node18': 1.0.3 12851 12798 aws4fetch: 1.0.20 12852 - chalk: 5.4.1 12799 + chalk: 5.3.0 12853 12800 cookie: 1.0.2 12854 12801 esbuild: 0.25.4 12855 12802 express: 5.0.1 12856 12803 path-to-regexp: 6.3.0 12857 - urlpattern-polyfill: 10.0.0 12804 + urlpattern-polyfill: 10.1.0 12858 12805 yaml: 2.7.1 12859 12806 transitivePeerDependencies: 12860 12807 - aws-crt ··· 13027 12974 '@smithy/types': 4.2.0 13028 12975 tslib: 2.8.1 13029 12976 12977 + '@smithy/abort-controller@4.0.4': 12978 + dependencies: 12979 + '@smithy/types': 4.3.1 12980 + tslib: 2.8.1 12981 + 13030 12982 '@smithy/chunked-blob-reader-native@4.0.0': 13031 12983 dependencies: 13032 12984 '@smithy/util-base64': 4.0.0 ··· 13060 13012 '@smithy/util-middleware': 4.0.2 13061 13013 tslib: 2.8.1 13062 13014 13015 + '@smithy/config-resolver@4.1.4': 13016 + dependencies: 13017 + '@smithy/node-config-provider': 4.1.3 13018 + '@smithy/types': 4.3.1 13019 + '@smithy/util-config-provider': 4.0.0 13020 + '@smithy/util-middleware': 4.0.4 13021 + tslib: 2.8.1 13022 + 13063 13023 '@smithy/core@3.1.0': 13064 13024 dependencies: 13065 13025 '@smithy/middleware-serde': 4.0.2 ··· 13093 13053 '@smithy/util-utf8': 4.0.0 13094 13054 tslib: 2.8.1 13095 13055 13056 + '@smithy/core@3.6.0': 13057 + dependencies: 13058 + '@smithy/middleware-serde': 4.0.8 13059 + '@smithy/protocol-http': 5.1.2 13060 + '@smithy/types': 4.3.1 13061 + '@smithy/util-base64': 4.0.0 13062 + '@smithy/util-body-length-browser': 4.0.0 13063 + '@smithy/util-middleware': 4.0.4 13064 + '@smithy/util-stream': 4.2.2 13065 + '@smithy/util-utf8': 4.0.0 13066 + tslib: 2.8.1 13067 + 13096 13068 '@smithy/credential-provider-imds@2.3.0': 13097 13069 dependencies: 13098 13070 '@smithy/node-config-provider': 2.3.0 ··· 13117 13089 '@smithy/url-parser': 4.0.2 13118 13090 tslib: 2.8.1 13119 13091 13092 + '@smithy/credential-provider-imds@4.0.6': 13093 + dependencies: 13094 + '@smithy/node-config-provider': 4.1.3 13095 + '@smithy/property-provider': 4.0.4 13096 + '@smithy/types': 4.3.1 13097 + '@smithy/url-parser': 4.0.4 13098 + tslib: 2.8.1 13099 + 13120 13100 '@smithy/eventstream-codec@4.0.1': 13121 13101 dependencies: 13122 13102 '@aws-crypto/crc32': 5.2.0 ··· 13124 13104 '@smithy/util-hex-encoding': 4.0.0 13125 13105 tslib: 2.8.1 13126 13106 13127 - '@smithy/eventstream-codec@4.0.2': 13107 + '@smithy/eventstream-codec@4.0.4': 13128 13108 dependencies: 13129 13109 '@aws-crypto/crc32': 5.2.0 13130 - '@smithy/types': 4.2.0 13110 + '@smithy/types': 4.3.1 13131 13111 '@smithy/util-hex-encoding': 4.0.0 13132 13112 tslib: 2.8.1 13133 13113 ··· 13137 13117 '@smithy/types': 4.1.0 13138 13118 tslib: 2.8.1 13139 13119 13140 - '@smithy/eventstream-serde-browser@4.0.2': 13120 + '@smithy/eventstream-serde-browser@4.0.4': 13141 13121 dependencies: 13142 - '@smithy/eventstream-serde-universal': 4.0.2 13143 - '@smithy/types': 4.2.0 13122 + '@smithy/eventstream-serde-universal': 4.0.4 13123 + '@smithy/types': 4.3.1 13144 13124 tslib: 2.8.1 13145 13125 13146 13126 '@smithy/eventstream-serde-config-resolver@4.0.1': ··· 13148 13128 '@smithy/types': 4.1.0 13149 13129 tslib: 2.8.1 13150 13130 13151 - '@smithy/eventstream-serde-config-resolver@4.1.0': 13131 + '@smithy/eventstream-serde-config-resolver@4.1.2': 13152 13132 dependencies: 13153 - '@smithy/types': 4.2.0 13133 + '@smithy/types': 4.3.1 13154 13134 tslib: 2.8.1 13155 13135 13156 13136 '@smithy/eventstream-serde-node@4.0.1': ··· 13159 13139 '@smithy/types': 4.1.0 13160 13140 tslib: 2.8.1 13161 13141 13162 - '@smithy/eventstream-serde-node@4.0.2': 13142 + '@smithy/eventstream-serde-node@4.0.4': 13163 13143 dependencies: 13164 - '@smithy/eventstream-serde-universal': 4.0.2 13165 - '@smithy/types': 4.2.0 13144 + '@smithy/eventstream-serde-universal': 4.0.4 13145 + '@smithy/types': 4.3.1 13166 13146 tslib: 2.8.1 13167 13147 13168 13148 '@smithy/eventstream-serde-universal@4.0.1': ··· 13171 13151 '@smithy/types': 4.2.0 13172 13152 tslib: 2.8.1 13173 13153 13174 - '@smithy/eventstream-serde-universal@4.0.2': 13154 + '@smithy/eventstream-serde-universal@4.0.4': 13175 13155 dependencies: 13176 - '@smithy/eventstream-codec': 4.0.2 13177 - '@smithy/types': 4.2.0 13156 + '@smithy/eventstream-codec': 4.0.4 13157 + '@smithy/types': 4.3.1 13178 13158 tslib: 2.8.1 13179 13159 13180 13160 '@smithy/fetch-http-handler@2.5.0': ··· 13201 13181 '@smithy/util-base64': 4.0.0 13202 13182 tslib: 2.8.1 13203 13183 13204 - '@smithy/hash-blob-browser@4.0.1': 13184 + '@smithy/fetch-http-handler@5.0.4': 13205 13185 dependencies: 13206 - '@smithy/chunked-blob-reader': 5.0.0 13207 - '@smithy/chunked-blob-reader-native': 4.0.0 13208 - '@smithy/types': 4.1.0 13186 + '@smithy/protocol-http': 5.1.2 13187 + '@smithy/querystring-builder': 4.0.4 13188 + '@smithy/types': 4.3.1 13189 + '@smithy/util-base64': 4.0.0 13209 13190 tslib: 2.8.1 13210 13191 13211 - '@smithy/hash-blob-browser@4.0.2': 13192 + '@smithy/hash-blob-browser@4.0.1': 13212 13193 dependencies: 13213 13194 '@smithy/chunked-blob-reader': 5.0.0 13214 13195 '@smithy/chunked-blob-reader-native': 4.0.0 13215 - '@smithy/types': 4.2.0 13196 + '@smithy/types': 4.1.0 13216 13197 tslib: 2.8.1 13217 13198 13218 13199 '@smithy/hash-node@2.2.0': ··· 13236 13217 '@smithy/util-utf8': 4.0.0 13237 13218 tslib: 2.8.1 13238 13219 13239 - '@smithy/hash-stream-node@4.0.1': 13220 + '@smithy/hash-node@4.0.4': 13240 13221 dependencies: 13241 - '@smithy/types': 4.1.0 13222 + '@smithy/types': 4.3.1 13223 + '@smithy/util-buffer-from': 4.0.0 13242 13224 '@smithy/util-utf8': 4.0.0 13243 13225 tslib: 2.8.1 13244 13226 13245 - '@smithy/hash-stream-node@4.0.2': 13227 + '@smithy/hash-stream-node@4.0.1': 13246 13228 dependencies: 13247 - '@smithy/types': 4.2.0 13229 + '@smithy/types': 4.1.0 13248 13230 '@smithy/util-utf8': 4.0.0 13249 13231 tslib: 2.8.1 13250 13232 ··· 13261 13243 '@smithy/invalid-dependency@4.0.2': 13262 13244 dependencies: 13263 13245 '@smithy/types': 4.2.0 13246 + tslib: 2.8.1 13247 + 13248 + '@smithy/invalid-dependency@4.0.4': 13249 + dependencies: 13250 + '@smithy/types': 4.3.1 13264 13251 tslib: 2.8.1 13265 13252 13266 13253 '@smithy/is-array-buffer@2.2.0': ··· 13277 13264 '@smithy/util-utf8': 4.0.0 13278 13265 tslib: 2.8.1 13279 13266 13280 - '@smithy/md5-js@4.0.2': 13267 + '@smithy/md5-js@4.0.4': 13281 13268 dependencies: 13282 - '@smithy/types': 4.2.0 13269 + '@smithy/types': 4.3.1 13283 13270 '@smithy/util-utf8': 4.0.0 13284 13271 tslib: 2.8.1 13285 13272 ··· 13299 13286 dependencies: 13300 13287 '@smithy/protocol-http': 5.1.0 13301 13288 '@smithy/types': 4.2.0 13289 + tslib: 2.8.1 13290 + 13291 + '@smithy/middleware-content-length@4.0.4': 13292 + dependencies: 13293 + '@smithy/protocol-http': 5.1.2 13294 + '@smithy/types': 4.3.1 13302 13295 tslib: 2.8.1 13303 13296 13304 13297 '@smithy/middleware-endpoint@2.5.1': ··· 13344 13337 '@smithy/util-middleware': 4.0.2 13345 13338 tslib: 2.8.1 13346 13339 13340 + '@smithy/middleware-endpoint@4.1.13': 13341 + dependencies: 13342 + '@smithy/core': 3.6.0 13343 + '@smithy/middleware-serde': 4.0.8 13344 + '@smithy/node-config-provider': 4.1.3 13345 + '@smithy/shared-ini-file-loader': 4.0.4 13346 + '@smithy/types': 4.3.1 13347 + '@smithy/url-parser': 4.0.4 13348 + '@smithy/util-middleware': 4.0.4 13349 + tslib: 2.8.1 13350 + 13347 13351 '@smithy/middleware-retry@2.3.1': 13348 13352 dependencies: 13349 13353 '@smithy/node-config-provider': 2.3.0 ··· 13368 13372 tslib: 2.8.1 13369 13373 uuid: 9.0.1 13370 13374 13375 + '@smithy/middleware-retry@4.1.14': 13376 + dependencies: 13377 + '@smithy/node-config-provider': 4.1.3 13378 + '@smithy/protocol-http': 5.1.2 13379 + '@smithy/service-error-classification': 4.0.6 13380 + '@smithy/smithy-client': 4.4.5 13381 + '@smithy/types': 4.3.1 13382 + '@smithy/util-middleware': 4.0.4 13383 + '@smithy/util-retry': 4.0.6 13384 + tslib: 2.8.1 13385 + uuid: 9.0.1 13386 + 13371 13387 '@smithy/middleware-retry@4.1.2': 13372 13388 dependencies: 13373 13389 '@smithy/node-config-provider': 4.0.2 ··· 13400 13416 '@smithy/types': 4.2.0 13401 13417 tslib: 2.8.1 13402 13418 13419 + '@smithy/middleware-serde@4.0.8': 13420 + dependencies: 13421 + '@smithy/protocol-http': 5.1.2 13422 + '@smithy/types': 4.3.1 13423 + tslib: 2.8.1 13424 + 13403 13425 '@smithy/middleware-stack@2.2.0': 13404 13426 dependencies: 13405 13427 '@smithy/types': 2.12.0 ··· 13413 13435 '@smithy/middleware-stack@4.0.2': 13414 13436 dependencies: 13415 13437 '@smithy/types': 4.2.0 13438 + tslib: 2.8.1 13439 + 13440 + '@smithy/middleware-stack@4.0.4': 13441 + dependencies: 13442 + '@smithy/types': 4.3.1 13416 13443 tslib: 2.8.1 13417 13444 13418 13445 '@smithy/node-config-provider@2.3.0': ··· 13436 13463 '@smithy/types': 4.2.0 13437 13464 tslib: 2.8.1 13438 13465 13466 + '@smithy/node-config-provider@4.1.3': 13467 + dependencies: 13468 + '@smithy/property-provider': 4.0.4 13469 + '@smithy/shared-ini-file-loader': 4.0.4 13470 + '@smithy/types': 4.3.1 13471 + tslib: 2.8.1 13472 + 13439 13473 '@smithy/node-http-handler@2.5.0': 13440 13474 dependencies: 13441 13475 '@smithy/abort-controller': 2.2.0 ··· 13468 13502 '@smithy/types': 4.2.0 13469 13503 tslib: 2.8.1 13470 13504 13505 + '@smithy/node-http-handler@4.0.6': 13506 + dependencies: 13507 + '@smithy/abort-controller': 4.0.4 13508 + '@smithy/protocol-http': 5.1.2 13509 + '@smithy/querystring-builder': 4.0.4 13510 + '@smithy/types': 4.3.1 13511 + tslib: 2.8.1 13512 + 13471 13513 '@smithy/property-provider@2.2.0': 13472 13514 dependencies: 13473 13515 '@smithy/types': 2.12.0 ··· 13483 13525 '@smithy/types': 4.2.0 13484 13526 tslib: 2.8.1 13485 13527 13528 + '@smithy/property-provider@4.0.4': 13529 + dependencies: 13530 + '@smithy/types': 4.3.1 13531 + tslib: 2.8.1 13532 + 13486 13533 '@smithy/protocol-http@2.0.5': 13487 13534 dependencies: 13488 13535 '@smithy/types': 2.12.0 ··· 13503 13550 '@smithy/types': 4.2.0 13504 13551 tslib: 2.8.1 13505 13552 13553 + '@smithy/protocol-http@5.1.2': 13554 + dependencies: 13555 + '@smithy/types': 4.3.1 13556 + tslib: 2.8.1 13557 + 13506 13558 '@smithy/querystring-builder@2.2.0': 13507 13559 dependencies: 13508 13560 '@smithy/types': 2.12.0 ··· 13521 13573 '@smithy/util-uri-escape': 4.0.0 13522 13574 tslib: 2.8.1 13523 13575 13576 + '@smithy/querystring-builder@4.0.4': 13577 + dependencies: 13578 + '@smithy/types': 4.3.1 13579 + '@smithy/util-uri-escape': 4.0.0 13580 + tslib: 2.8.1 13581 + 13524 13582 '@smithy/querystring-parser@2.2.0': 13525 13583 dependencies: 13526 13584 '@smithy/types': 2.12.0 ··· 13536 13594 '@smithy/types': 4.2.0 13537 13595 tslib: 2.8.1 13538 13596 13597 + '@smithy/querystring-parser@4.0.4': 13598 + dependencies: 13599 + '@smithy/types': 4.3.1 13600 + tslib: 2.8.1 13601 + 13539 13602 '@smithy/service-error-classification@2.1.5': 13540 13603 dependencies: 13541 13604 '@smithy/types': 2.12.0 ··· 13547 13610 '@smithy/service-error-classification@4.0.3': 13548 13611 dependencies: 13549 13612 '@smithy/types': 4.2.0 13613 + 13614 + '@smithy/service-error-classification@4.0.6': 13615 + dependencies: 13616 + '@smithy/types': 4.3.1 13550 13617 13551 13618 '@smithy/shared-ini-file-loader@2.4.0': 13552 13619 dependencies: ··· 13563 13630 '@smithy/types': 4.2.0 13564 13631 tslib: 2.8.1 13565 13632 13633 + '@smithy/shared-ini-file-loader@4.0.4': 13634 + dependencies: 13635 + '@smithy/types': 4.3.1 13636 + tslib: 2.8.1 13637 + 13566 13638 '@smithy/signature-v4@2.3.0': 13567 13639 dependencies: 13568 13640 '@smithy/is-array-buffer': 2.2.0 ··· 13595 13667 '@smithy/util-utf8': 4.0.0 13596 13668 tslib: 2.8.1 13597 13669 13670 + '@smithy/signature-v4@5.1.2': 13671 + dependencies: 13672 + '@smithy/is-array-buffer': 4.0.0 13673 + '@smithy/protocol-http': 5.1.2 13674 + '@smithy/types': 4.3.1 13675 + '@smithy/util-hex-encoding': 4.0.0 13676 + '@smithy/util-middleware': 4.0.4 13677 + '@smithy/util-uri-escape': 4.0.0 13678 + '@smithy/util-utf8': 4.0.0 13679 + tslib: 2.8.1 13680 + 13598 13681 '@smithy/smithy-client@2.5.1': 13599 13682 dependencies: 13600 13683 '@smithy/middleware-endpoint': 2.5.1 ··· 13634 13717 '@smithy/util-stream': 4.2.0 13635 13718 tslib: 2.8.1 13636 13719 13720 + '@smithy/smithy-client@4.4.5': 13721 + dependencies: 13722 + '@smithy/core': 3.6.0 13723 + '@smithy/middleware-endpoint': 4.1.13 13724 + '@smithy/middleware-stack': 4.0.4 13725 + '@smithy/protocol-http': 5.1.2 13726 + '@smithy/types': 4.3.1 13727 + '@smithy/util-stream': 4.2.2 13728 + tslib: 2.8.1 13729 + 13637 13730 '@smithy/types@2.12.0': 13638 13731 dependencies: 13639 13732 tslib: 2.8.1 ··· 13646 13739 dependencies: 13647 13740 tslib: 2.8.1 13648 13741 13742 + '@smithy/types@4.3.1': 13743 + dependencies: 13744 + tslib: 2.8.1 13745 + 13649 13746 '@smithy/url-parser@2.2.0': 13650 13747 dependencies: 13651 13748 '@smithy/querystring-parser': 2.2.0 ··· 13662 13759 dependencies: 13663 13760 '@smithy/querystring-parser': 4.0.2 13664 13761 '@smithy/types': 4.2.0 13762 + tslib: 2.8.1 13763 + 13764 + '@smithy/url-parser@4.0.4': 13765 + dependencies: 13766 + '@smithy/querystring-parser': 4.0.4 13767 + '@smithy/types': 4.3.1 13665 13768 tslib: 2.8.1 13666 13769 13667 13770 '@smithy/util-base64@2.3.0': ··· 13726 13829 bowser: 2.11.0 13727 13830 tslib: 2.8.1 13728 13831 13832 + '@smithy/util-defaults-mode-browser@4.0.21': 13833 + dependencies: 13834 + '@smithy/property-provider': 4.0.4 13835 + '@smithy/smithy-client': 4.4.5 13836 + '@smithy/types': 4.3.1 13837 + bowser: 2.11.0 13838 + tslib: 2.8.1 13839 + 13729 13840 '@smithy/util-defaults-mode-browser@4.0.9': 13730 13841 dependencies: 13731 13842 '@smithy/property-provider': 4.0.2 ··· 13754 13865 '@smithy/types': 4.1.0 13755 13866 tslib: 2.8.1 13756 13867 13868 + '@smithy/util-defaults-mode-node@4.0.21': 13869 + dependencies: 13870 + '@smithy/config-resolver': 4.1.4 13871 + '@smithy/credential-provider-imds': 4.0.6 13872 + '@smithy/node-config-provider': 4.1.3 13873 + '@smithy/property-provider': 4.0.4 13874 + '@smithy/smithy-client': 4.4.5 13875 + '@smithy/types': 4.3.1 13876 + tslib: 2.8.1 13877 + 13757 13878 '@smithy/util-defaults-mode-node@4.0.9': 13758 13879 dependencies: 13759 13880 '@smithy/config-resolver': 4.1.0 ··· 13776 13897 '@smithy/types': 4.2.0 13777 13898 tslib: 2.8.1 13778 13899 13900 + '@smithy/util-endpoints@3.0.6': 13901 + dependencies: 13902 + '@smithy/node-config-provider': 4.1.3 13903 + '@smithy/types': 4.3.1 13904 + tslib: 2.8.1 13905 + 13779 13906 '@smithy/util-hex-encoding@2.2.0': 13780 13907 dependencies: 13781 13908 tslib: 2.8.1 ··· 13799 13926 '@smithy/types': 4.2.0 13800 13927 tslib: 2.8.1 13801 13928 13929 + '@smithy/util-middleware@4.0.4': 13930 + dependencies: 13931 + '@smithy/types': 4.3.1 13932 + tslib: 2.8.1 13933 + 13802 13934 '@smithy/util-retry@2.2.0': 13803 13935 dependencies: 13804 13936 '@smithy/service-error-classification': 2.1.5 ··· 13815 13947 dependencies: 13816 13948 '@smithy/service-error-classification': 4.0.3 13817 13949 '@smithy/types': 4.2.0 13950 + tslib: 2.8.1 13951 + 13952 + '@smithy/util-retry@4.0.6': 13953 + dependencies: 13954 + '@smithy/service-error-classification': 4.0.6 13955 + '@smithy/types': 4.3.1 13818 13956 tslib: 2.8.1 13819 13957 13820 13958 '@smithy/util-stream@2.2.0': ··· 13861 13999 '@smithy/util-utf8': 4.0.0 13862 14000 tslib: 2.8.1 13863 14001 14002 + '@smithy/util-stream@4.2.2': 14003 + dependencies: 14004 + '@smithy/fetch-http-handler': 5.0.4 14005 + '@smithy/node-http-handler': 4.0.6 14006 + '@smithy/types': 4.3.1 14007 + '@smithy/util-base64': 4.0.0 14008 + '@smithy/util-buffer-from': 4.0.0 14009 + '@smithy/util-hex-encoding': 4.0.0 14010 + '@smithy/util-utf8': 4.0.0 14011 + tslib: 2.8.1 14012 + 13864 14013 '@smithy/util-uri-escape@2.2.0': 13865 14014 dependencies: 13866 14015 tslib: 2.8.1 ··· 13891 14040 '@smithy/types': 4.1.0 13892 14041 tslib: 2.8.1 13893 14042 13894 - '@smithy/util-waiter@4.0.3': 14043 + '@smithy/util-waiter@4.0.6': 13895 14044 dependencies: 13896 - '@smithy/abort-controller': 4.0.2 13897 - '@smithy/types': 4.2.0 14045 + '@smithy/abort-controller': 4.0.4 14046 + '@smithy/types': 4.3.1 13898 14047 tslib: 2.8.1 13899 14048 13900 14049 '@swc/counter@0.1.3': {} ··· 14885 15034 supports-color: 7.2.0 14886 15035 14887 15036 chalk@5.3.0: {} 14888 - 14889 - chalk@5.4.1: {} 14890 15037 14891 15038 character-entities-html4@2.1.0: {} 14892 15039 ··· 16408 16555 accepts: 2.0.0 16409 16556 body-parser: 2.2.0 16410 16557 content-disposition: 1.0.0 16411 - content-type: 1.0.5 16558 + content-type: 1.0.4 16412 16559 cookie: 0.7.1 16413 16560 cookie-signature: 1.2.2 16414 16561 debug: 4.3.6 ··· 16490 16637 16491 16638 fast-xml-parser@4.2.5: 16492 16639 dependencies: 16493 - strnum: 1.1.2 16640 + strnum: 1.0.5 16494 16641 16495 16642 fast-xml-parser@4.4.1: 16496 16643 dependencies: ··· 17782 17929 17783 17930 mini-svg-data-uri@1.4.4: {} 17784 17931 17785 - miniflare@4.20250525.1: 17932 + miniflare@4.20250617.5: 17786 17933 dependencies: 17787 17934 '@cspotcode/source-map-support': 0.8.1 17788 17935 acorn: 8.14.0 ··· 17792 17939 sharp: 0.33.5 17793 17940 stoppable: 1.1.0 17794 17941 undici: 5.29.0 17795 - workerd: 1.20250525.0 17942 + workerd: 1.20250617.0 17796 17943 ws: 8.18.0 17797 17944 youch: 3.3.4 17798 17945 zod: 3.22.3 ··· 19467 19614 19468 19615 strnum@1.0.5: {} 19469 19616 19470 - strnum@1.1.2: {} 19471 - 19472 19617 stubs@3.0.0: 19473 19618 optional: true 19474 19619 ··· 20071 20216 20072 20217 url-join@5.0.0: {} 20073 20218 20074 - urlpattern-polyfill@10.0.0: {} 20219 + urlpattern-polyfill@10.1.0: {} 20075 20220 20076 20221 use-sync-external-store@1.4.0(react@18.3.1): 20077 20222 dependencies: ··· 20291 20436 20292 20437 word-wrap@1.2.5: {} 20293 20438 20294 - workerd@1.20250525.0: 20439 + workerd@1.20250617.0: 20295 20440 optionalDependencies: 20296 - '@cloudflare/workerd-darwin-64': 1.20250525.0 20297 - '@cloudflare/workerd-darwin-arm64': 1.20250525.0 20298 - '@cloudflare/workerd-linux-64': 1.20250525.0 20299 - '@cloudflare/workerd-linux-arm64': 1.20250525.0 20300 - '@cloudflare/workerd-windows-64': 1.20250525.0 20441 + '@cloudflare/workerd-darwin-64': 1.20250617.0 20442 + '@cloudflare/workerd-darwin-arm64': 1.20250617.0 20443 + '@cloudflare/workerd-linux-64': 1.20250617.0 20444 + '@cloudflare/workerd-linux-arm64': 1.20250617.0 20445 + '@cloudflare/workerd-windows-64': 1.20250617.0 20301 20446 20302 - wrangler@4.19.1(@cloudflare/workers-types@4.20250109.0): 20447 + wrangler@4.23.0(@cloudflare/workers-types@4.20250109.0): 20303 20448 dependencies: 20304 20449 '@cloudflare/kv-asset-handler': 0.4.0 20305 - '@cloudflare/unenv-preset': 2.3.2(unenv@2.0.0-rc.17)(workerd@1.20250525.0) 20450 + '@cloudflare/unenv-preset': 2.3.3(unenv@2.0.0-rc.17)(workerd@1.20250617.0) 20306 20451 blake3-wasm: 2.1.5 20307 20452 esbuild: 0.25.4 20308 - miniflare: 4.20250525.1 20453 + miniflare: 4.20250617.5 20309 20454 path-to-regexp: 6.3.0 20310 20455 unenv: 2.0.0-rc.17 20311 - workerd: 1.20250525.0 20456 + workerd: 1.20250617.0 20312 20457 optionalDependencies: 20313 20458 '@cloudflare/workers-types': 4.20250109.0 20314 20459 fsevents: 2.3.3 ··· 20316 20461 - bufferutil 20317 20462 - utf-8-validate 20318 20463 20319 - wrangler@4.19.1(@cloudflare/workers-types@4.20250224.0): 20464 + wrangler@4.23.0(@cloudflare/workers-types@4.20250224.0): 20320 20465 dependencies: 20321 20466 '@cloudflare/kv-asset-handler': 0.4.0 20322 - '@cloudflare/unenv-preset': 2.3.2(unenv@2.0.0-rc.17)(workerd@1.20250525.0) 20467 + '@cloudflare/unenv-preset': 2.3.3(unenv@2.0.0-rc.17)(workerd@1.20250617.0) 20323 20468 blake3-wasm: 2.1.5 20324 20469 esbuild: 0.25.4 20325 - miniflare: 4.20250525.1 20470 + miniflare: 4.20250617.5 20326 20471 path-to-regexp: 6.3.0 20327 20472 unenv: 2.0.0-rc.17 20328 - workerd: 1.20250525.0 20473 + workerd: 1.20250617.0 20329 20474 optionalDependencies: 20330 20475 '@cloudflare/workers-types': 4.20250224.0 20331 20476 fsevents: 2.3.3
+1 -1
pnpm-workspace.yaml
··· 34 34 typescript-eslint: ^8.7.0 35 35 typescript: ^5.7.3 36 36 vitest: ^2.1.1 37 - wrangler: ^4.19.1 37 + wrangler: ^4.23.0 38 38 39 39 # e2e tests 40 40 catalogs: