From 3b5466113562893fb375b4932bbfd770c0cc74c5 Mon Sep 17 00:00:00 2001
From: Rafael Sales
Date: Sat, 20 Jun 2026 21:23:58 -0300
Subject: [PATCH 1/2] feat: add +/- keyboard shortcuts for canvas zoom
Map the + (and =) key to zoom in and - to zoom out on the ReactFlow
canvas. The key mapping lives in useKeyboardShortcuts and reaches the
canvas through window CustomEvents, since the hook runs outside the
ReactFlowProvider. Shortcuts are listed under View in the help dialog
and are ignored while typing in inputs.
Bump version to 0.11.0.
---
CHANGELOG.md | 8 ++++++++
package.json | 2 +-
src/components/diagram/FlowCanvas.tsx | 19 ++++++++++++++++++-
src/hooks/useKeyboardShortcuts.ts | 14 ++++++++++++++
src/lib/shortcuts.ts | 2 ++
5 files changed, 43 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e94efc8..7e6424d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
---
+## [0.11.0] - 2026-06-20
+
+### Added
+
+- Keyboard shortcuts to zoom the canvas: `+` / `=` to zoom in, `-` to zoom out. The shortcuts are listed under **View** in the keyboard shortcuts dialog and are ignored while typing in inputs.
+
+---
+
## [0.9.0] - 2026-05-21
### Added
diff --git a/package.json b/package.json
index cd4b47c..299f329 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "open-arch-flow",
- "version": "0.10.0",
+ "version": "0.11.0",
"private": true,
"packageManager": "pnpm@11.1.2",
"author": "Rafael Sales ",
diff --git a/src/components/diagram/FlowCanvas.tsx b/src/components/diagram/FlowCanvas.tsx
index 29f52bb..3c7ccb9 100644
--- a/src/components/diagram/FlowCanvas.tsx
+++ b/src/components/diagram/FlowCanvas.tsx
@@ -1,6 +1,6 @@
"use client";
-import React, { useCallback, useMemo, useState } from "react";
+import React, { useCallback, useEffect, useMemo, useState } from "react";
import ReactFlow, {
Background,
Controls,
@@ -9,6 +9,7 @@ import ReactFlow, {
MarkerType,
ConnectionLineType,
ConnectionMode,
+ useReactFlow,
} from "reactflow";
import "reactflow/dist/style.css";
import { useDiagramStore } from "@/lib/store";
@@ -128,6 +129,22 @@ function FlowCanvas() {
const [showMiniMap, setShowMiniMap] = useState(false);
+ const { zoomIn, zoomOut } = useReactFlow();
+
+ // Zoom via keyboard shortcuts (+/-). The key mapping lives in
+ // useKeyboardShortcuts (outside the ReactFlowProvider) and reaches us here
+ // through window CustomEvents.
+ useEffect(() => {
+ const handleZoomIn = () => zoomIn({ duration: 200 });
+ const handleZoomOut = () => zoomOut({ duration: 200 });
+ window.addEventListener("diagram:zoomIn", handleZoomIn);
+ window.addEventListener("diagram:zoomOut", handleZoomOut);
+ return () => {
+ window.removeEventListener("diagram:zoomIn", handleZoomIn);
+ window.removeEventListener("diagram:zoomOut", handleZoomOut);
+ };
+ }, [zoomIn, zoomOut]);
+
const isLaserMode = interactionMode === "laser";
const isPanMode = interactionMode === "pan";
diff --git a/src/hooks/useKeyboardShortcuts.ts b/src/hooks/useKeyboardShortcuts.ts
index e8cee4b..60bf0d0 100644
--- a/src/hooks/useKeyboardShortcuts.ts
+++ b/src/hooks/useKeyboardShortcuts.ts
@@ -125,6 +125,20 @@ export function useKeyboardShortcuts() {
return;
}
+ // Zoom in — '+' or '=' (the '+' glyph requires Shift on most layouts)
+ if (!mod && (e.key === "+" || e.key === "=")) {
+ e.preventDefault();
+ window.dispatchEvent(new CustomEvent("diagram:zoomIn"));
+ return;
+ }
+
+ // Zoom out — '-' or '_'
+ if (!mod && (e.key === "-" || e.key === "_")) {
+ e.preventDefault();
+ window.dispatchEvent(new CustomEvent("diagram:zoomOut"));
+ return;
+ }
+
// Delete / Backspace — remove selected nodes and edges
if (e.key === "Delete" || e.key === "Backspace") {
e.preventDefault();
diff --git a/src/lib/shortcuts.ts b/src/lib/shortcuts.ts
index 0060a7c..157bc18 100644
--- a/src/lib/shortcuts.ts
+++ b/src/lib/shortcuts.ts
@@ -19,6 +19,8 @@ export const SHORTCUTS: ShortcutDef[] = [
{ keys: ["Esc"], description: "Deselect all", category: "Edit" },
// View
{ keys: ["Ctrl", "L"], description: "Auto layout", category: "View" },
+ { keys: ["+"], description: "Zoom in", category: "View" },
+ { keys: ["-"], description: "Zoom out", category: "View" },
// Help
{ keys: ["Ctrl", "?"], description: "Show shortcuts", category: "Help" },
];
From b12c945f5df10aeb275105b5817adc1291e6b6fd Mon Sep 17 00:00:00 2001
From: Rafael Sales
Date: Sat, 20 Jun 2026 21:41:19 -0300
Subject: [PATCH 2/2] chore: update dependencies and bump version to 0.12.0
- Update all dependencies to latest patch/minor within current major
(AWS SDK 3.1073.0, Radix UI, Next.js 16.2.9, React 19.2.7, Zod 4.4.3, etc.)
- Remove deprecated @types/jspdf (jspdf v4 ships its own types)
- Translate remaining "Import from AWS" menu label to English
- Bump version to 0.12.0 in package.json and README badge; update CHANGELOG
---
CHANGELOG.md | 12 +
README.md | 2 +-
package.json | 115 +-
pnpm-lock.yaml | 4646 +++++++---------------
src/components/layout/UnifiedToolbar.tsx | 2 +-
5 files changed, 1539 insertions(+), 3238 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7e6424d..955518e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
---
+## [0.12.0] - 2026-06-20
+
+### Changed
+
+- Updated dependencies to their latest patch/minor releases within the current major versions, including the AWS SDK clients (`3.1073.0`), Radix UI primitives, Next.js (`16.2.9`), React and React DOM (`19.2.7`), Zod (`4.4.3`), Zustand, Yjs, Framer Motion, `tailwind-merge`, `@upstash/redis`, and the TypeScript ESLint toolchain.
+
+### Removed
+
+- `@types/jspdf` — the package is deprecated; `jspdf` v4 ships its own type definitions.
+
+---
+
## [0.11.0] - 2026-06-20
### Added
diff --git a/README.md b/README.md
index dd013c7..4e32e7b 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@
-
+
diff --git a/package.json b/package.json
index 299f329..e2ef192 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "open-arch-flow",
- "version": "0.11.0",
+ "version": "0.12.0",
"private": true,
"packageManager": "pnpm@11.1.2",
"author": "Rafael Sales ",
@@ -25,53 +25,52 @@
"signaling": "node scripts/signaling.mjs"
},
"dependencies": {
- "@aws-sdk/client-api-gateway": "^3.1045.0",
- "@aws-sdk/client-bedrock": "^3.1045.0",
- "@aws-sdk/client-bedrock-runtime": "^3.1045.0",
- "@aws-sdk/client-cloudfront": "^3.1051.0",
- "@aws-sdk/client-cloudwatch-logs": "^3.1045.0",
- "@aws-sdk/client-cognito-identity-provider": "^3.1051.0",
- "@aws-sdk/client-dynamodb": "^3.1045.0",
- "@aws-sdk/client-ec2": "^3.1051.0",
- "@aws-sdk/client-ecs": "^3.1051.0",
- "@aws-sdk/client-eks": "^3.1051.0",
- "@aws-sdk/client-elastic-load-balancing-v2": "^3.1051.0",
- "@aws-sdk/client-elasticache": "^3.1051.0",
- "@aws-sdk/client-eventbridge": "^3.1045.0",
- "@aws-sdk/client-iam": "^3.1045.0",
- "@aws-sdk/client-kinesis": "^3.1045.0",
- "@aws-sdk/client-kms": "^3.1045.0",
- "@aws-sdk/client-lambda": "^3.1045.0",
- "@aws-sdk/client-pricing": "^3.1038.0",
- "@aws-sdk/client-rds": "^3.1051.0",
- "@aws-sdk/client-route-53": "^3.1051.0",
- "@aws-sdk/client-s3": "^3.1045.0",
- "@aws-sdk/client-secrets-manager": "^3.1045.0",
- "@aws-sdk/client-sfn": "^3.1051.0",
- "@aws-sdk/client-sns": "^3.1045.0",
- "@aws-sdk/client-sqs": "^3.1045.0",
- "@aws-sdk/client-ssm": "^3.1045.0",
- "@aws-sdk/client-sso": "^3.1045.0",
- "@aws-sdk/client-sso-oidc": "^3.1045.0",
+ "@aws-sdk/client-api-gateway": "^3.1073.0",
+ "@aws-sdk/client-bedrock": "^3.1073.0",
+ "@aws-sdk/client-bedrock-runtime": "^3.1073.0",
+ "@aws-sdk/client-cloudfront": "^3.1073.0",
+ "@aws-sdk/client-cloudwatch-logs": "^3.1073.0",
+ "@aws-sdk/client-cognito-identity-provider": "^3.1073.0",
+ "@aws-sdk/client-dynamodb": "^3.1073.0",
+ "@aws-sdk/client-ec2": "^3.1073.0",
+ "@aws-sdk/client-ecs": "^3.1073.0",
+ "@aws-sdk/client-eks": "^3.1073.0",
+ "@aws-sdk/client-elastic-load-balancing-v2": "^3.1073.0",
+ "@aws-sdk/client-elasticache": "^3.1073.0",
+ "@aws-sdk/client-eventbridge": "^3.1073.0",
+ "@aws-sdk/client-iam": "^3.1073.0",
+ "@aws-sdk/client-kinesis": "^3.1073.0",
+ "@aws-sdk/client-kms": "^3.1073.0",
+ "@aws-sdk/client-lambda": "^3.1073.0",
+ "@aws-sdk/client-pricing": "^3.1073.0",
+ "@aws-sdk/client-rds": "^3.1073.0",
+ "@aws-sdk/client-route-53": "^3.1073.0",
+ "@aws-sdk/client-s3": "^3.1073.0",
+ "@aws-sdk/client-secrets-manager": "^3.1073.0",
+ "@aws-sdk/client-sfn": "^3.1073.0",
+ "@aws-sdk/client-sns": "^3.1073.0",
+ "@aws-sdk/client-sqs": "^3.1073.0",
+ "@aws-sdk/client-ssm": "^3.1073.0",
+ "@aws-sdk/client-sso": "^3.1073.0",
+ "@aws-sdk/client-sso-oidc": "^3.1073.0",
"@google/generative-ai": "^0.24.1",
- "@mlc-ai/web-llm": "^0.2.82",
+ "@mlc-ai/web-llm": "^0.2.84",
"@modelcontextprotocol/sdk": "^1.29.0",
"@monaco-editor/react": "^4.7.0",
- "@radix-ui/react-alert-dialog": "^1.1.15",
- "@radix-ui/react-dialog": "^1.1.15",
- "@radix-ui/react-dropdown-menu": "^2.1.16",
- "@radix-ui/react-label": "^2.1.8",
- "@radix-ui/react-popover": "^1.1.15",
- "@radix-ui/react-progress": "^1.1.8",
- "@radix-ui/react-scroll-area": "^1.2.10",
- "@radix-ui/react-separator": "^1.1.8",
- "@radix-ui/react-slider": "^1.3.6",
- "@radix-ui/react-slot": "^1.2.4",
- "@radix-ui/react-switch": "^1.2.6",
- "@radix-ui/react-tooltip": "^1.2.8",
- "@types/jspdf": "^2.0.0",
+ "@radix-ui/react-alert-dialog": "^1.1.17",
+ "@radix-ui/react-dialog": "^1.1.17",
+ "@radix-ui/react-dropdown-menu": "^2.1.18",
+ "@radix-ui/react-label": "^2.1.10",
+ "@radix-ui/react-popover": "^1.1.17",
+ "@radix-ui/react-progress": "^1.1.10",
+ "@radix-ui/react-scroll-area": "^1.2.12",
+ "@radix-ui/react-separator": "^1.1.10",
+ "@radix-ui/react-slider": "^1.4.1",
+ "@radix-ui/react-slot": "^1.3.0",
+ "@radix-ui/react-switch": "^1.3.1",
+ "@radix-ui/react-tooltip": "^1.2.10",
"@upstash/ratelimit": "^2.0.8",
- "@upstash/redis": "^1.37.0",
+ "@upstash/redis": "^1.38.0",
"@vercel/analytics": "^1.6.1",
"@vercel/speed-insights": "^2.0.0",
"aws-react-icons": "^3.3.0",
@@ -81,42 +80,42 @@
"dagre": "^0.8.5",
"dotenv": "^17.4.2",
"elkjs": "^0.11.1",
- "fflate": "^0.8.2",
- "framer-motion": "^12.38.0",
+ "fflate": "^0.8.3",
+ "framer-motion": "^12.40.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"lucide-react": "^0.577.0",
- "next": "^16.2.4",
+ "next": "^16.2.9",
"next-themes": "^0.4.6",
- "react": "^19.2.5",
- "react-dom": "^19.2.5",
+ "react": "^19.2.7",
+ "react-dom": "^19.2.7",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"reactflow": "^11.11.4",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
- "tailwind-merge": "^3.5.0",
+ "tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"y-webrtc": "^10.3.0",
- "yjs": "^13.6.30",
- "zod": "^4.3.6",
+ "yjs": "^13.6.31",
+ "zod": "^4.4.3",
"zundo": "^2.3.0",
- "zustand": "^5.0.12"
+ "zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/dagre": "^0.7.54",
"@types/node": "^25.6.0",
- "@types/react": "^19.2.14",
+ "@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
- "@typescript-eslint/eslint-plugin": "^8.59.1",
- "@typescript-eslint/parser": "^8.59.1",
+ "@typescript-eslint/eslint-plugin": "^8.61.1",
+ "@typescript-eslint/parser": "^8.61.1",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
- "eslint-config-next": "^16.2.4",
- "postcss": "^8.5.12",
+ "eslint-config-next": "^16.2.9",
+ "postcss": "^8.5.15",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 4b174e8..924bb70 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,158 +9,155 @@ importers:
.:
dependencies:
'@aws-sdk/client-api-gateway':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-bedrock':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-bedrock-runtime':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-cloudfront':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-cloudwatch-logs':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-cognito-identity-provider':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-dynamodb':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-ec2':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-ecs':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-eks':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-elastic-load-balancing-v2':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-elasticache':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-eventbridge':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-iam':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-kinesis':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-kms':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-lambda':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-pricing':
- specifier: ^3.1038.0
- version: 3.1038.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-rds':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-route-53':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-s3':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-secrets-manager':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-sfn':
- specifier: ^3.1051.0
- version: 3.1051.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-sns':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-sqs':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-ssm':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-sso':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@aws-sdk/client-sso-oidc':
- specifier: ^3.1045.0
- version: 3.1045.0
+ specifier: ^3.1073.0
+ version: 3.1073.0
'@google/generative-ai':
specifier: ^0.24.1
version: 0.24.1
'@mlc-ai/web-llm':
- specifier: ^0.2.82
- version: 0.2.82
+ specifier: ^0.2.84
+ version: 0.2.84
'@modelcontextprotocol/sdk':
specifier: ^1.29.0
- version: 1.29.0(zod@4.3.6)
+ version: 1.29.0(zod@4.4.3)
'@monaco-editor/react':
specifier: ^4.7.0
- version: 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ version: 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-alert-dialog':
- specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.1.17
+ version: 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-dialog':
- specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.1.17
+ version: 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-dropdown-menu':
- specifier: ^2.1.16
- version: 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^2.1.18
+ version: 2.1.18(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-label':
- specifier: ^2.1.8
- version: 2.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^2.1.10
+ version: 2.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-popover':
- specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.1.17
+ version: 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-progress':
- specifier: ^1.1.8
- version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.1.10
+ version: 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-scroll-area':
- specifier: ^1.2.10
- version: 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.2.12
+ version: 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-separator':
- specifier: ^1.1.8
- version: 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.1.10
+ version: 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-slider':
- specifier: ^1.3.6
- version: 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.4.1
+ version: 1.4.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-slot':
- specifier: ^1.2.4
- version: 1.2.4(@types/react@19.2.14)(react@19.2.5)
+ specifier: ^1.3.0
+ version: 1.3.0(@types/react@19.2.17)(react@19.2.7)
'@radix-ui/react-switch':
- specifier: ^1.2.6
- version: 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^1.3.1
+ version: 1.3.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@radix-ui/react-tooltip':
- specifier: ^1.2.8
- version: 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@types/jspdf':
- specifier: ^2.0.0
- version: 2.0.0
+ specifier: ^1.2.10
+ version: 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@upstash/ratelimit':
specifier: ^2.0.8
- version: 2.0.8(@upstash/redis@1.37.0)
+ version: 2.0.8(@upstash/redis@1.38.0)
'@upstash/redis':
- specifier: ^1.37.0
- version: 1.37.0
+ specifier: ^1.38.0
+ version: 1.38.0
'@vercel/analytics':
specifier: ^1.6.1
- version: 1.6.1(next@16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5))(react@19.2.5)
+ version: 1.6.1(next@16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)
'@vercel/speed-insights':
specifier: ^2.0.0
- version: 2.0.0(next@16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5))(react@19.2.5)
+ version: 2.0.0(next@16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)
aws-react-icons:
specifier: ^3.3.0
- version: 3.3.0(react@19.2.5)
+ version: 3.3.0(react@19.2.7)
azure-react-icons:
specifier: ^0.10.1
- version: 0.10.1(react@19.2.5)
+ version: 0.10.1(react@19.2.7)
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
@@ -177,11 +174,11 @@ importers:
specifier: ^0.11.1
version: 0.11.1
fflate:
- specifier: ^0.8.2
- version: 0.8.2
+ specifier: ^0.8.3
+ version: 0.8.3
framer-motion:
- specifier: ^12.38.0
- version: 12.38.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^12.40.0
+ version: 12.40.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
html2canvas:
specifier: ^1.4.1
version: 1.4.1
@@ -190,58 +187,58 @@ importers:
version: 4.2.1
lucide-react:
specifier: ^0.577.0
- version: 0.577.0(react@19.2.5)
+ version: 0.577.0(react@19.2.7)
next:
- specifier: ^16.2.4
- version: 16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ specifier: ^16.2.9
+ version: 16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
next-themes:
specifier: ^0.4.6
- version: 0.4.6(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ version: 0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
react:
- specifier: ^19.2.5
- version: 19.2.5
+ specifier: ^19.2.7
+ version: 19.2.7
react-dom:
- specifier: ^19.2.5
- version: 19.2.5(react@19.2.5)
+ specifier: ^19.2.7
+ version: 19.2.7(react@19.2.7)
react-icons:
specifier: ^5.6.0
- version: 5.6.0(react@19.2.5)
+ version: 5.6.0(react@19.2.7)
react-markdown:
specifier: ^10.1.0
- version: 10.1.0(@types/react@19.2.14)(react@19.2.5)
+ version: 10.1.0(@types/react@19.2.17)(react@19.2.7)
react-syntax-highlighter:
specifier: ^16.1.1
- version: 16.1.1(react@19.2.5)
+ version: 16.1.1(react@19.2.7)
reactflow:
specifier: ^11.11.4
- version: 11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ version: 11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
remark-gfm:
specifier: ^4.0.1
version: 4.0.1
sonner:
specifier: ^2.0.7
- version: 2.0.7(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ version: 2.0.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
tailwind-merge:
- specifier: ^3.5.0
- version: 3.5.0
+ specifier: ^3.6.0
+ version: 3.6.0
tailwindcss-animate:
specifier: ^1.0.7
version: 1.0.7(tailwindcss@3.4.19)
y-webrtc:
specifier: ^10.3.0
- version: 10.3.0(yjs@13.6.30)
+ version: 10.3.0(yjs@13.6.31)
yjs:
- specifier: ^13.6.30
- version: 13.6.30
+ specifier: ^13.6.31
+ version: 13.6.31
zod:
- specifier: ^4.3.6
- version: 4.3.6
+ specifier: ^4.4.3
+ version: 4.4.3
zundo:
specifier: ^2.3.0
- version: 2.3.0(zustand@5.0.12(@types/react@19.2.14)(react@19.2.5)(use-sync-external-store@1.6.0(react@19.2.5)))
+ version: 2.3.0(zustand@5.0.14(@types/react@19.2.17)(react@19.2.7)(use-sync-external-store@1.6.0(react@19.2.7)))
zustand:
- specifier: ^5.0.12
- version: 5.0.12(@types/react@19.2.14)(react@19.2.5)(use-sync-external-store@1.6.0(react@19.2.5))
+ specifier: ^5.0.14
+ version: 5.0.14(@types/react@19.2.17)(react@19.2.7)(use-sync-external-store@1.6.0(react@19.2.7))
devDependencies:
'@eslint/eslintrc':
specifier: ^3.3.5
@@ -253,32 +250,32 @@ importers:
specifier: ^25.6.0
version: 25.6.0
'@types/react':
- specifier: ^19.2.14
- version: 19.2.14
+ specifier: ^19.2.17
+ version: 19.2.17
'@types/react-dom':
specifier: ^19.2.3
- version: 19.2.3(@types/react@19.2.14)
+ version: 19.2.3(@types/react@19.2.17)
'@types/react-syntax-highlighter':
specifier: ^15.5.13
version: 15.5.13
'@typescript-eslint/eslint-plugin':
- specifier: ^8.59.1
- version: 8.59.1(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ specifier: ^8.61.1
+ version: 8.61.1(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
'@typescript-eslint/parser':
- specifier: ^8.59.1
- version: 8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ specifier: ^8.61.1
+ version: 8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
autoprefixer:
specifier: ^10.5.0
- version: 10.5.0(postcss@8.5.12)
+ version: 10.5.0(postcss@8.5.15)
eslint:
specifier: ^9.39.4
version: 9.39.4(jiti@1.21.7)
eslint-config-next:
- specifier: ^16.2.4
- version: 16.2.4(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ specifier: ^16.2.9
+ version: 16.2.9(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
postcss:
- specifier: ^8.5.12
- version: 8.5.12
+ specifier: ^8.5.15
+ version: 8.5.15
tailwindcss:
specifier: ^3.4.19
version: 3.4.19
@@ -315,417 +312,240 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-api-gateway@3.1045.0':
- resolution: {integrity: sha512-lV8ZlD4bYg+WNWXVHdKD5n/tC4tQICPoinj1caVh1aA+uC4JjJ/0PtdslLdLAtN3F/5cQqtiSfnUAfx81ajrvQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-bedrock-runtime@3.1045.0':
- resolution: {integrity: sha512-aPC6gAz9uKRiwfnKB7peTs6yD0FpSzmVnSkx0f2QtJfosFM6J6KtBvR1lMKby050K4C4PAyEScwA5YTsGfTcGA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-bedrock@3.1045.0':
- resolution: {integrity: sha512-r5yL2OrEVkLmB3riv064cK0z/WxzDNbTZtd6iSp21G7EWxbPt6umpynsDuDVkjjhxrPZoePfXpUv+45EjjDJ6g==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-cloudfront@3.1051.0':
- resolution: {integrity: sha512-OdKLq5OdfoSZdKDJgrPLZ6xFLulofQCrcxgz5wcY6GXTAniBlKHoMZe29E30jJ5s63/2nmGrmj3c69VMEARHPg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-cloudwatch-logs@3.1045.0':
- resolution: {integrity: sha512-8p8jQuiIteWVYF7NhNHTXv4I7w6ZsDUWa4S6F+j8XIu8x5t+f38RKusQCHN4z8YEAzHSmg/8eIXkagP6N4UNMw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-cognito-identity-provider@3.1051.0':
- resolution: {integrity: sha512-7bJ2fxeEVNtrxH/kL5Tk8H2EGuNbPtuI4BfpwogHmJfn7oUrIODlnJJL43l/LU2i6d5MoXCZKJf18EufkGpgVw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-dynamodb@3.1045.0':
- resolution: {integrity: sha512-TxZmhpziFxWD3pdXGbuwntKOX5OkW14yvCITYsRz+QDM5EUL4cIygu2xRGHiKDvKmb3QUOA4yKetAQcIMLe2zw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-ec2@3.1051.0':
- resolution: {integrity: sha512-2gHRbED7f/TV2mMyzAgyMdFlT0zV417T8iLoXPEnfeKzoc/k1nyJbRgXvh3VX97kmgkKFwGQY1UEf7AIzBjOiw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-ecs@3.1051.0':
- resolution: {integrity: sha512-h9Uf1tDUp36Iob11AqUd7GIunbC/LHH3TJ8ZsSYa2CMZYqN6/O14M0XjLtJyQAmE4k1LDEhxh90+aTGl7wI2FQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-eks@3.1051.0':
- resolution: {integrity: sha512-26s+g1Fnx8GCE+7nzzDTiYu6waweG0P+o0sEw01HCr1sMSZrZb62UIvGEFMK/N38PEIDueizQGq7v84wTMwZhg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-elastic-load-balancing-v2@3.1051.0':
- resolution: {integrity: sha512-TbdAUNJo57svShDCi8yF6eCIPaMHDbO3OGGGD4XdisFP6wvmL1lGodOLdlxm7owFqorjPWNVtgmYF60wjCbNPw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-elasticache@3.1051.0':
- resolution: {integrity: sha512-zCyEny/pR2c6SPY/rc+1QA9qNE7jvSdnFC+allJA3hnp5o7AvjNi5DC8QBT+squEk4nUXLALUjzhD6SBp/Vr2Q==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-eventbridge@3.1045.0':
- resolution: {integrity: sha512-10WH+Fn3gKBwGpfGcpSg+oC8ST08IV4HQ0SYq4zNON8HkQMfa2Bulb+v1fHNUNjr0EVG2Qp/Xg5z3C8qGK7bdw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-iam@3.1045.0':
- resolution: {integrity: sha512-1kCDjvkOUyZ7MxQu2ybgXxYDW+8PG+cHjVCk0IXZwYy5R2dhAeHLLlDGJB9jA/KeSh6+XcN5uMlApqJGP1zbUg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/client-kinesis@3.1045.0':
- resolution: {integrity: sha512-yx6KdlUNSx6oRewQ+n+/BWHehR7uy5X1TmDBywnPU+7Bv9/0XCw9A+PC94Z9Il8rZ1u2TmhXR60/cbPMxZfSXQ==}
+ '@aws-sdk/checksums@3.1000.7':
+ resolution: {integrity: sha512-qh0fG/RtrFztst4+vn1HZehAvAhr5Jlq/WMP7e5KvvfF16oNVBc9CDNVdxdm19vzOY2x0qiDMFCRjhxQAusGWQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-kms@3.1045.0':
- resolution: {integrity: sha512-IWnBhZ/tOi/gCc7xaTCBQQYZWb8z1z8uQnARtT3j8y1jBJ6/1o2/YVXiW2Lkakh0vcXtI8b40n0KSqhXXEx4Tw==}
+ '@aws-sdk/client-api-gateway@3.1073.0':
+ resolution: {integrity: sha512-mex6z2epRBR33Qa8YO6o3U7DCvpnT/NbtwPJMV9sntOucImJwh47xORxiH8gvmctw66iTRR4VDUAE6QTzLSIDw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-lambda@3.1045.0':
- resolution: {integrity: sha512-9EDPinh03XanJQssTBdTY+9E7PkyQ0NLLJiaOAM71/g4DI+0OZboGqhX7KKizwUGqKkj0paKEAwgWaMLgEkQFQ==}
+ '@aws-sdk/client-bedrock-runtime@3.1073.0':
+ resolution: {integrity: sha512-Vecj8r9/KIh/Nu9T7CRoCw5EBqnmAa9Q+Iwi5J5Mr0IEBMH6KUoOgAjayfyEZjvvZTllLJ2dOAx5cYeIz8QD6A==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-pricing@3.1038.0':
- resolution: {integrity: sha512-MVL6jsIX9KJnAHf3bNdAdRVuMULVO1GeyXTYGR79yNvbnH8SZmYrdOBBeqoHzQCHjTQzMNOMeHQAHsCWQN2b0w==}
+ '@aws-sdk/client-bedrock@3.1073.0':
+ resolution: {integrity: sha512-4E03+Koc/uP7fAjI5zg4zTosGwclQG3QYQAg90H0o+5KngUfEZFCP791TTQL+gv8BJtG4odx6fdAlwxolbUeQg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-rds@3.1051.0':
- resolution: {integrity: sha512-qmsgOg2P72WdMXPrf0l1oGpwkYcm1FQWj9jvmhWd7Tita+Yikc8ca8XcrS2NVasq17hpIEnQ73YpqRPnKvNLrw==}
+ '@aws-sdk/client-cloudfront@3.1073.0':
+ resolution: {integrity: sha512-D6SXls6EO/ncFPV6D6p5M8D0vwoZFp/UpOFUL2QRf8cswfU0Z4wAz32ozGsGhITyCFKWCj4s3LWqnsex8FyOcQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-route-53@3.1051.0':
- resolution: {integrity: sha512-DdQHUNeuTYJixi1lnTrqVGFQqkuaFfoHkJEmcVmi/T2RdWldJWgEeZDJGlHcTWdLjOxxuXnYy5MGvM5rgA9BDg==}
+ '@aws-sdk/client-cloudwatch-logs@3.1073.0':
+ resolution: {integrity: sha512-gkBSjPtr45W14QM+uYWsG7Wn8AqtqwxHaZo5zTTA7r6bIbB1tqYRFGEwOlBkGFQboCl0Xp/doCoHZRnaxNHn3A==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-s3@3.1045.0':
- resolution: {integrity: sha512-fsuO3Y6t+3Ro9Bsg41DKj4Sfy53CGSrhnMldNplWmG8Tx0UbYk+YDa4RD1hVlJpERw4JBmPkl0+J9qlxMh1pcA==}
+ '@aws-sdk/client-cognito-identity-provider@3.1073.0':
+ resolution: {integrity: sha512-fx0FfHQ3XQWXf2aKEqxEP20P2MjTjIqXdXCFTlVWxWDQppDFZIpr2t8CADnF/GCYa3XVVN5C7XyOYxZmWV6vMQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-secrets-manager@3.1045.0':
- resolution: {integrity: sha512-ceXmaTE/3j7bHgVzUrpL/ECjQQ+aE/x8wNbblC/SIb020OxYRMj0DscFimnI5kEjutGHQ+A68bbX2A+bZuAMEA==}
+ '@aws-sdk/client-dynamodb@3.1073.0':
+ resolution: {integrity: sha512-2GUPeI0drcms+LOoSC2DfVLCUWQxjjUm4jN08MrVh40XnIRQZ9PxCjFCqAj6yMRXPAzze925MMXEXBQC7IS6jw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-sfn@3.1051.0':
- resolution: {integrity: sha512-fAaCJIpaLfkiFQM9Hpfges2VIoMG8H/S0dAbUjR0f2sBQBvZVsrjT3NlkH4TOB8uchVEQT/WeijcXFg+Ss6Vlw==}
+ '@aws-sdk/client-ec2@3.1073.0':
+ resolution: {integrity: sha512-vo7Q39L9oKK8UKP1rTscCTbxrYnm4nkz3nuEoXy+iZZ3eDaqhSZGxA6fwXlS5nDdZnk75ww9tpKQYc2pxONs1A==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-sns@3.1045.0':
- resolution: {integrity: sha512-w/iwPYVAXx62dD2E5nBQaUOntlYWCjaIPXGZpdC6+WWF/idTPjN3qu5Q0KgcrP6zQDGCgtAVaLlLVaK36/5x7A==}
+ '@aws-sdk/client-ecs@3.1073.0':
+ resolution: {integrity: sha512-FWtTnH1JrxRX9eqNvTcES6b8g8XT3qoMZ/DBlx9Hp5QY1Xp5UBL8A4ijPR2rtHK3HsvacH6BJrfCrdMeL7bACg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-sqs@3.1045.0':
- resolution: {integrity: sha512-reWeEE53mgCv8uUFSicvVf0A6BoWGImdC4y5x5clkeEmfIikahIBtons6u0d32kwI4NczpcretpUkOCE/nvWAA==}
+ '@aws-sdk/client-eks@3.1073.0':
+ resolution: {integrity: sha512-8xWM5vFBnNvg1w5EbD59GVi3jx1aDSVMS/8SAM87ffEeD3cfh5RTxV4vtC8671InN+FGptLfjZDU6enzd8Wk7g==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-ssm@3.1045.0':
- resolution: {integrity: sha512-cNMoUJcFb+u52rvQynNW9HrjeW9rd8iyfz8Z0TgS2aTEvc8p8s4zdBHTmaUF/SpC1GatUEqKnogGC0RkD1k8NA==}
+ '@aws-sdk/client-elastic-load-balancing-v2@3.1073.0':
+ resolution: {integrity: sha512-AoVHUbcIGZsYdHklex5nmbVqraAfJfkx3xReeG5xK5or61d42uvGJVkW12Dfxk1IYu1/JmEjwJVpVwaJVlEOUA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-sso-oidc@3.1045.0':
- resolution: {integrity: sha512-4ZlFBIrUr5udEfc2nOj5IkAt4uWLHc9xGy+UQpaX4byUn7QKHXSwh5nS1EJsVK2UhId8h9FBISgOVrWCTdilhA==}
+ '@aws-sdk/client-elasticache@3.1073.0':
+ resolution: {integrity: sha512-gvEySkOJSdRCT0wfj872A80Hd5YowFsOqeaJDdW/rGzhC59pa1KwzaA9w/1rwqzZ6AmH7tY3TdCYtqLlWqBH/Q==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/client-sso@3.1045.0':
- resolution: {integrity: sha512-kRct16ZSJ6aO1SqnZ9zEXOyOYkMw7MEs8YRgrVp/E1OF6LekKvyrdrvpgGXAFfKcMG1XzvrGV1yWnB5kelu5Mg==}
+ '@aws-sdk/client-eventbridge@3.1073.0':
+ resolution: {integrity: sha512-h37GDGdaWifY7MxGDdgN9byhMZ6qqwxZ8KuE6/l/NYeFYv7LsXXa3FJp/EruiH+U78EQdOFYbfyO/mMxCZJewQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/core@3.974.12':
- resolution: {integrity: sha512-qrqgioqYFjwR6LatVNS1L2Vk++EwRIxqSQXPKNv5Ofux2D8UNgqMQ1znnMyEImXquVPTtbf71fc128pvmU6y9A==}
+ '@aws-sdk/client-iam@3.1073.0':
+ resolution: {integrity: sha512-TEovDL6IPOiThcSWj0xVJe0Mffc06xFD1xEry+kAREra0d8ArxGFnYeCRBOxQkGpw0H3z0T8STWxw73ibkm/Mw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/core@3.974.6':
- resolution: {integrity: sha512-8Vu7zGxu+39ChR/s5J7nXBw3a2kMHAi0OfKT8ohgTVjX0qYed/8mIfdBb638oBmKrWCwwKjYAM5J/4gMJ8nAJA==}
+ '@aws-sdk/client-kinesis@3.1073.0':
+ resolution: {integrity: sha512-wqyICoxkNL9B3WQW3uk21836liP/zGYwjkJR5B/TE1xtt2QJ0+asBWbFfTyCA+eXE+59Ls6RuEVXuTak7fDepw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/core@3.974.8':
- resolution: {integrity: sha512-njR2qoG6ZuB0kvAS2FyICsFZJ6gmCcf2X/7JcD14sUvGDm26wiZ5BrA6LOiUxKFEF+IVe7kdroxyE00YlkiYsw==}
+ '@aws-sdk/client-kms@3.1073.0':
+ resolution: {integrity: sha512-AWRLUXT/BgzgxURmSQCruqtJ5OOahaxRf0vGHhQdH2N6C/+SGxIHLaiBseDDEJtlC04JSqMLawdLP1JIeb6Big==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/crc64-nvme@3.972.7':
- resolution: {integrity: sha512-QUagVVBbC8gODCF6e1aV0mE2TXWB9Opz4k8EJFdNrujUVQm5R4AjJa1mpOqzwOuROBzqJU9zawzig7M96L8Ejg==}
+ '@aws-sdk/client-lambda@3.1073.0':
+ resolution: {integrity: sha512-MN/r01tJTXSZIWtMa6SCPEnci/WR9D/xJgW9GyY5WG8WhveMPUUgZjM7yul+thBOVzkb0yopqzNO0p/ae92PzQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-env@3.972.32':
- resolution: {integrity: sha512-7vA4GHg8NSmQxquJHSBcSM3RgB4ZaaRi6u4+zGFKOmOH6aqlgr2Sda46clkZDYzlirgfY96w15Zj0jh6PT48ng==}
+ '@aws-sdk/client-pricing@3.1073.0':
+ resolution: {integrity: sha512-7KhfGrqaBEJW/oKem5Ar4fVN69i2ndUm0xmijO8RD8pK8+1FYoA50U2OIQQVxdVe9v5I9tOnREqIGopZh8Na4g==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-env@3.972.34':
- resolution: {integrity: sha512-XT0jtf8Fw9JE6ppsQeoNnZRiG+jqRixMT1v1ZR17G60UvVdsQmTG8nbEyHuEPfMxDXEhfdARaM/XiEhca4lGHQ==}
+ '@aws-sdk/client-rds@3.1073.0':
+ resolution: {integrity: sha512-tqEEManszSiO2pDoasJswcXyDZ2Xh4wxa6Q7Kkl2+HugnKT59VmnXbLZE9iQA7P7co7qh6o0D0HjOHo+4hxGug==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-env@3.972.38':
- resolution: {integrity: sha512-m3WjZEgPtioMhPmwqUt+DhlTJ2i9ufR6DhfkyXojb9puEvfR+ur2U5shavu5/Cc9WHHsDCvALi6UFHgcqjhQ5w==}
+ '@aws-sdk/client-route-53@3.1073.0':
+ resolution: {integrity: sha512-VeepdEP2YMuSkbbT5yyGV27Ji5UYp/rRujRMfiUSExxtvfBDmrXeV7Ga2TggEO8vkR5ikhoVNZcZNYvnmVZruQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-http@3.972.34':
- resolution: {integrity: sha512-vBrhWujFCLp1u8ptJRWYlipMutzPptb8pDQ00rKVH9q67T7rGd3VTWIj63aKrlLuY6qSsw1Rt5F/D/7wnNgryA==}
+ '@aws-sdk/client-s3@3.1073.0':
+ resolution: {integrity: sha512-/Dvhrff0I4D2YUWSdm8uLKa1bfXdw9BMRDUME6ZeoTrrdQKQDeo2scLDjdpC5X2YdvTc/ZnUCR2HAvD7qXvS1w==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-http@3.972.36':
- resolution: {integrity: sha512-DPoGWfy7J7RKxvbf5kOKIGQkD2ek3dbKgzKIGrnLuvZBz5myU+Im/H6pmc14QcnFbqHMqxvtWSgRDSJW3qXLQg==}
+ '@aws-sdk/client-secrets-manager@3.1073.0':
+ resolution: {integrity: sha512-Qfey4X2/DtP6k6GrOa6YVByWNt26ZUxEm/GSg91LDYHWmbprF2GKflLuDxqw5why94MF5aYE40laWGgWYl9zrg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-http@3.972.40':
- resolution: {integrity: sha512-D78L/m2Dr6cJnnSvWoAudPhQmCwmJ7j6APXsPYmFpPaKfQTfCSu0rdm8j14Np+VmXF9z8Aj8HE3xFpsrwtfgeg==}
+ '@aws-sdk/client-sfn@3.1073.0':
+ resolution: {integrity: sha512-UN3JYIsc8cXQiTZdDVO2so+67k0GEnjJtRkLQa1wT4y0B6lUf0QvjSsTanNccq6sdUO+/O95TZU5+zU55ccJqA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-ini@3.972.36':
- resolution: {integrity: sha512-FBHyCmV8EB0gUvh1d+CZm87zt2PrdC7OyWexLRoH3I5zWSOUGa+9t58Y5jbxRfwUp3AWpHAFvKY6YzgR845sVA==}
+ '@aws-sdk/client-sns@3.1073.0':
+ resolution: {integrity: sha512-nvhM/meCUotd3480WccQXty5T29Vx7mClySIKwAszeQjsKSKTypvLLGUJvlWbY7X42i8x8ctj+puWjytzWUsuQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-ini@3.972.38':
- resolution: {integrity: sha512-oDzUBu2MGJFgoar05sPMCwSrhw44ASyccrHzj66vO69OZqi7I6hZZxXfuPLC8OCzW7C+sU+bI73XHij41yekgQ==}
+ '@aws-sdk/client-sqs@3.1073.0':
+ resolution: {integrity: sha512-Is7xWCAOQP9oNqFktcjcBJhZ171u7/Ewtnoxh5qL0CiL/v+LxDi2UK/0KTu0jiZNWxiMeVznjLHktVGyqnl+Zw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-ini@3.972.42':
- resolution: {integrity: sha512-Mu5ESvFXeinafVM8jTIvRqcvK2Ehj4kz3auT39yUcHwu1Vfxo6xRlmUafdKLW4tusjAJukQwK09sCSMgOm7OKg==}
+ '@aws-sdk/client-ssm@3.1073.0':
+ resolution: {integrity: sha512-NzgVU75oLlbJnpVofYFQGGcq+gWKEsLcynZKXFLQ+ae+ItpZi86ad45k71q8NXeRNtxB3qR9X6Z7K+wkaGQODQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-login@3.972.36':
- resolution: {integrity: sha512-IFap01lJKxQc0C/OHmZwZQr/cKq0DhrcmKedRrdnnl42D+P0SImnnnWQjv07uIPqpEdtqmkPXb9TiPYTU+prxQ==}
+ '@aws-sdk/client-sso-oidc@3.1073.0':
+ resolution: {integrity: sha512-bQaBuCJuNq09Hs0Y16j4ifxZNxV/BnC8rViShsBABM/4bOM00CuMr8sxVnN6brVIwVgJM40L0ftAZbHDMVB6tA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-login@3.972.38':
- resolution: {integrity: sha512-g1NosS8qe4OF++G2UFCM5ovSkgipC7YYor5KCWatG0UoMSO5YFj9C8muePlyVmOBV/WTI16Jo3/s1NUo/o1Bww==}
+ '@aws-sdk/client-sso@3.1073.0':
+ resolution: {integrity: sha512-dQ/EDuhdQn3Gp4XBX6Xpj5SIdpBvF588fyFCI2oZkhBcXtGEcl0MQpHdCUdK+BIIZtNq2Y4/lahclRmAiYsSYw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-login@3.972.42':
- resolution: {integrity: sha512-O6WkZga3kf0yqyJYd1dbeJqVhEgJx/x1UaLgtbR+XuL/YP+K5y6QTxQKL7ka9z3jnQASESKGAPnRyt4D5hQrxA==}
+ '@aws-sdk/core@3.974.22':
+ resolution: {integrity: sha512-YofH63shc6YRdXjz80BJkpJW+Bkn0Cuu2dn4Rv7s9G2Idt58tgtzQEWxrR2xVljlVfIBeUjPuULnSVYLke3sUQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-node@3.972.37':
- resolution: {integrity: sha512-/WFixFAAiw8WpmjZcI0l4t3DerXLmVinOIfuotmRZnu2qmsFPoqqmstASz0z8bi1pGdFXzeLzf6bwucM3mZcUQ==}
+ '@aws-sdk/credential-provider-env@3.972.48':
+ resolution: {integrity: sha512-h6FEC95fbexUd6zxm4PdgS82bTcI2PRtUb2ZwMipb/Xr8bPwtf0G8rBo2jp7NA24Mbx2JA8/WingiYpA9RCCyw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-node@3.972.39':
- resolution: {integrity: sha512-HEswDQyxUtadoZ/bJsPPENHg7R0Lzym5LuMksJeHvqhCOpP+rtkDLKI4/ZChH4w3cf5kG8n6bZuI8PzajoiqMg==}
+ '@aws-sdk/credential-provider-http@3.972.50':
+ resolution: {integrity: sha512-lJO3OLpjvz5m/RSBQmsG/CEUGsvCy5ruxKwPQaOCqxqCMuyYT2BZwQUTDZVVwqQ9LrZKuK24JSa6r31hL/tvkg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-node@3.972.43':
- resolution: {integrity: sha512-D/DJmbrWRP5BXEO3FH+ar4el+2n6OlGofiud7dQun2jES+AQEJjczenp1jBb4MBN7CpGpS8nsWGQLtuzc9tQbA==}
+ '@aws-sdk/credential-provider-ini@3.972.55':
+ resolution: {integrity: sha512-TBoF4buBGYhXjdZAryayY2TrkQj2B2KfE/msG4V53XCt+w0EhEwM2JRjx8p2grJ2C6gtH5++SAwEvGMRdi0yyw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-process@3.972.32':
- resolution: {integrity: sha512-uZp4tlGbpczV8QxmtIwOpSkcyGtBRR8/T4BAumRKfAt1nwCig3FSCZvrKl6ARDIDVRYn5p2oRcAsfFR01EgMGA==}
+ '@aws-sdk/credential-provider-login@3.972.54':
+ resolution: {integrity: sha512-hBWI3wZTdTGiuMfmPts6AWbAjFfRniOQnqx68tc2cQvRKWawFbN9wkLOVPWM1FAOyowZU73mC6Fi+rHSHNyLFw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-process@3.972.34':
- resolution: {integrity: sha512-T3IFs4EVmVi1dVN5RciFnklCANSzvrQd/VuHY9ThHSQmYkTogjcGkoJEr+oNUPQZnso52183088NqysMPji1/Q==}
+ '@aws-sdk/credential-provider-node@3.972.57':
+ resolution: {integrity: sha512-u6dClpzNdWf1HGWz4wwhdXi1wiOofCLniM9S4BQQGlLAN9TW7VB+ld5V533GdKrYMaFeBGFqKnj0JCYvynLqwQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-process@3.972.38':
- resolution: {integrity: sha512-EnbYVajGgbkb24s0K1eo4VNAPV5mHIET7LSvirTaFCwkfrfaOJxtSE+wY/tJdKDS21cEYkZs2ruCaAm+W4iblg==}
+ '@aws-sdk/credential-provider-process@3.972.48':
+ resolution: {integrity: sha512-w6VZwojPt12WnEkAUy6Nu4K6sWCbBmR7QX390b0nE6vRvkXbrYr9Lq9VySGkfjiMjpUA87op+J4EgvRmtWIDoQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-sso@3.972.36':
- resolution: {integrity: sha512-DsLr0UHMyKzRJKe2bjlwU8q1cfoXg8TIJKV/xwvnalAemiZLOZunFzj/whGnFDZIBVLdnbLiwv5SvRf1+CSwkg==}
+ '@aws-sdk/credential-provider-sso@3.972.54':
+ resolution: {integrity: sha512-23uZpIpF2SIFDCa1fcWa202tK4gGeyvX6GIIAjiB8WBsvsVRBMnJ/7dCxHzxf7eZT7GToJg837LDIBnZsl/VUg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-sso@3.972.38':
- resolution: {integrity: sha512-5ZxG+t0+3Q3QPh8KEjX6syskhgNf7I0MN7oGioTf6Lm1NTjfP7sIcYGNsthXC2qR8vcD3edNZwCr2ovfSSWuRA==}
+ '@aws-sdk/credential-provider-web-identity@3.972.54':
+ resolution: {integrity: sha512-0Iv5QttS6wcATlodYKgvQj6B9Db51rx7NU9fqu0PoLeS4BIgdYMc/QK4smwLwpm5RFrs02V/eLyEFp3FklvlNQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-sso@3.972.42':
- resolution: {integrity: sha512-RVV/9NbFwI8ZHEH5dn39lGyFmSbSVj1+orZdr6QsOe1mW9DCglmlen0cFaNZmCcqkqc7erNRHNBduxbeZuHAnw==}
+ '@aws-sdk/dynamodb-codec@3.973.22':
+ resolution: {integrity: sha512-QBs7/nWHsPA0wTEqhU5iPgaDjeZzQHhmwJr6Q0f56rW3Fk8ExJQgXFzEg/l48iDwJVUIMLjPqhw7dNP3cShUxA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.972.36':
- resolution: {integrity: sha512-uzrURO7frJhHQVVNR5zBJcCYeMYflmXcWBK1+MiBym2Dfjh6nXATrMixrmGZi+97Q7ETZ+y/4lUwAy0Nfnznjw==}
+ '@aws-sdk/endpoint-cache@3.972.8':
+ resolution: {integrity: sha512-bBmkG0Dnhfq0/T4Z0PpUr7HkncBVaWvvCbvafeaUM+yC9wa8GGjLJmonq0QL17REB9WivgGeYgWQ5A80Uw5UnQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.972.38':
- resolution: {integrity: sha512-lYHFF30DGI20jZcYX8cm6Ns0V7f1dDN6g/MBDLTyD/5iw+bXs3yBr2iAiHDkx4RFU5JgsnZvCHYKiRVPRdmOgw==}
+ '@aws-sdk/eventstream-handler-node@3.972.22':
+ resolution: {integrity: sha512-tqPJv0dz4+O0hWGm1a6YekcMZyPhDFs/zH73Von7icaVT5n0Jqvm86typ3jRrG+qoUdPhALOnboRLTmnWQTlYQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.972.42':
- resolution: {integrity: sha512-/67fXX0ddllD4u2Nujc5PvT4byHgpMUfz6+RxIKi/0nFIckeorm7JvXgzBuDyVKw0s58EbofmETDWUf9vTEuHQ==}
+ '@aws-sdk/middleware-endpoint-discovery@3.972.19':
+ resolution: {integrity: sha512-FMgyzUq3Jh+ONRYxryBRNdBd+FUX8PwRl07ccQknNdoms6KCeAEusCkl6whqpDrPQ6OH0ddeSifKyqYSs2DLIw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/dynamodb-codec@3.973.8':
- resolution: {integrity: sha512-dYQ/cQqHZd23hcl8oEGwPphTqyGnmvf2HrVmz4J90Q5Bv89oJjlwcBcifiiTvApqsVpx7Pr0IebMpkYwWJvZlQ==}
+ '@aws-sdk/middleware-eventstream@3.972.18':
+ resolution: {integrity: sha512-OHpk8YoZi3yexPq8aFt1vN1IxA2zLKvsIR5GpWYylX/ve6kQmY7wxHNSFy/D3t2apMZ16rs76Co4dJWcDyIk3A==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/endpoint-cache@3.972.5':
- resolution: {integrity: sha512-itVdge0NozgtgmtbZ25FVwWU3vGlE7x7feE/aOEJNkQfEpbkrF8Rj1QmnK+2blFfYE1xWt/iU+6/jUp/pv1+MA==}
+ '@aws-sdk/middleware-flexible-checksums@3.974.32':
+ resolution: {integrity: sha512-KhuzFMzUbb3oEj43CdPDbEJ/RG/RkErkmXk3J/LE8OPFNvkCn8PYPMpjOLgzAzvxBacsSyytdWf+R50q0alJ4w==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/eventstream-handler-node@3.972.14':
- resolution: {integrity: sha512-m4X56gxG76/CKfxNVbOFuYwnAZcHgS6HOH8lgp15HoGHIAVTcZfZrXvcYzJFOMLEJgVn+JHBu6EiNV+xSNXXFg==}
+ '@aws-sdk/middleware-sdk-api-gateway@3.972.18':
+ resolution: {integrity: sha512-3xZO1L3f+OshQ+ChcyCQtwZ2eeK7V4xqAxZ3cBDVgyEd8HTnIol9t4UNB5YoCaXOtYWduCtyFDBzKT0tSEAjGQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-bucket-endpoint@3.972.10':
- resolution: {integrity: sha512-Vbc2frZH7wXlMNd+ZZSXUEs/l1Sv8Jj4zUnIfwrYF5lwaLdXHZ9xx4U3rjUcaye3HRhFVc+E5DbBxpRAbB16BA==}
+ '@aws-sdk/middleware-sdk-ec2@3.972.36':
+ resolution: {integrity: sha512-ib23mbklPdXeU/7OIAtkCu86nqJoiyJREQQa1IVOJo/AfkEmGyQH3IZPbsetK72qI1ZcUdcxA0zxfWNM1Z1/Rw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-endpoint-discovery@3.972.11':
- resolution: {integrity: sha512-vXARCZVFQHdsd6qPPZyC/hh+5x2XsCYKqUQDCqnUlpGpChMpDojOOacQWdLJ+FFXKN8X3cmLOGrtgx/zysCKqQ==}
+ '@aws-sdk/middleware-sdk-rds@3.972.36':
+ resolution: {integrity: sha512-NuqAVqPEsEZ2PADr1W6UWoDsb5ukUKoMgHy7bfqGkYCKpBivSgNdlfgzZN56fnitE+EjOqMj4pb7e2C84uvQVA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-eventstream@3.972.10':
- resolution: {integrity: sha512-QUqLs7Af1II9X4fCRAu+EGHG3KHyOp4RkuLhRKoA3NuFlh6TL8i+zXBl8w2LUxqm44B/Kom45hgSlwA1SpTsXQ==}
+ '@aws-sdk/middleware-sdk-route53@3.972.17':
+ resolution: {integrity: sha512-llqZ4sab/gQGTDRbWjorH+JblWcXfi3QcBrVjyApgPR8uLP0YbgJZI6aNafGww0Nbxlnf08n032qA6/JWfRUhA==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-expect-continue@3.972.10':
- resolution: {integrity: sha512-2Yn0f1Qiq/DjxYR3wfI3LokXnjOhFM7Ssn4LTdFDIxRMCE6I32MAsVnhPX1cUZsuVA9tiZtwwhlSLAtFGxAZlQ==}
+ '@aws-sdk/middleware-sdk-s3@3.972.53':
+ resolution: {integrity: sha512-keWp6Z5cEIJzPwoCf/WRm0ceAeephPDDivhRsK/xXs2ZYXyypJ2/DL9G1IR0bz/s+iZC0EgzmFV4r7rlvLlxQQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-flexible-checksums@3.974.16':
- resolution: {integrity: sha512-6ru8doI0/XzszqLIPXf0E/V7HhAw1Pu94010XCKYtBUfD0LxF0BuOzrUf8OQGR6j2o6wgKTHUniOmndQycHwCA==}
+ '@aws-sdk/middleware-sdk-sqs@3.972.31':
+ resolution: {integrity: sha512-56ifsBmK9bLn5EE/t6c0nmjOB1BO8cJDLkA1VOlsN1GR85ROqnaCwVDspqcwsLaBDgPlwyYNedoDIoT3t6Ho1A==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/middleware-host-header@3.972.10':
- resolution: {integrity: sha512-IJSsIMeVQ8MMCPbuh1AbltkFhLBLXn7aejzfX5YKT/VLDHn++Dcz8886tXckE+wQssyPUhaXrJhdakO2VilRhg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-location-constraint@3.972.10':
- resolution: {integrity: sha512-rI3NZvJcEvjoD0+0PI0iUAwlPw2IlSlhyvgBK/3WkKJQE/YiKFedd9dMN2lVacdNxPNhxL/jzQaKQdrGtQagjQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-logger@3.972.10':
- resolution: {integrity: sha512-OOuGvvz1Dm20SjZo5oEBePFqxt5nf8AwkNDSyUHvD9/bfNASmstcYxFAHUowy4n6Io7mWUZ04JURZwSBvyQanQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-recursion-detection@3.972.11':
- resolution: {integrity: sha512-+zz6f79Kj9V5qFK2P+D8Ehjnw4AhphAlCAsPjUqEcInA9umtSSKMrHbSagEeOIsDNuvVrH98bjRHcyQukTrhaQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-sdk-api-gateway@3.972.10':
- resolution: {integrity: sha512-CeiwtgS4wvq5KQHjXUJ3bxacBkuu3jy3jGkr8d3lFbQ67E53AdLuxD2ZFh2C3fCykjRXSPC504ThyC/PTtaOSA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-sdk-ec2@3.972.26':
- resolution: {integrity: sha512-sHc/vgigKtDZa1D19Go9jQT/IjMACinFnwg7I+vmhdie3rPFjB5VF57T9cDgcG0TAQnhBTkXSm1w4+ZlKR0bEA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-sdk-rds@3.972.26':
- resolution: {integrity: sha512-ppBgzaFIVXa5b9wWDSdD5BL7lSRrx/+zNRWYQYVORGQZXc36RdnLWeN9XTRof5z9poD4+NVMcEJl10XqANelNA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-sdk-route53@3.972.12':
- resolution: {integrity: sha512-nj08j4q/Rp8zb3SqwxE+dex22NdXoSKJAh445x0SLGAI23lYfDTujFDG1JRYLRc1uR2/FPPr76L/ki/VE4J9ig==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-sdk-s3@3.972.35':
- resolution: {integrity: sha512-lLppaNTAz+wNgLdi4FtHzrlwrGF0ODTnBWHBaFg85SKs0eJ+M+tP5ifrA8f/0lNd+Ak3MC1NGC6RavV3ny4HTg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-sdk-s3@3.972.37':
- resolution: {integrity: sha512-Km7M+i8DrLArVzrid1gfxeGhYHBd3uxvE77g0s5a52zPSVosxzQBnJ0gwWb6NIp/DOk8gsBMhi7V+cpJG0ndTA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-sdk-sqs@3.972.22':
- resolution: {integrity: sha512-DtR3mEiOUJcnEX/QuXmvbJto6xvQzp2ftnHb29c0aQYdmmzbKf0gsu9ovx1i/yy4ZR6m0rttTucS0iiP32dlGA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-ssec@3.972.10':
- resolution: {integrity: sha512-Gli9A0u8EVVb+5bFDGS/QbSVg28w/wpEidg1ggVcSj65BDTdGR6punsOcVjqdiu1i42WHWo51MCvARPIIz9juw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-user-agent@3.972.36':
- resolution: {integrity: sha512-O2beToxguBvrZFFZ+fFgPbbae8MvyIBjQ6lImee4APHEXXNAD5ZJ2ayLF1mb7rsKw86TM81y5czg82bZncjSjg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-user-agent@3.972.38':
- resolution: {integrity: sha512-iz+B29TXcAZsJpwB+AwG/TTGA5l/VnmMZ2UxtiySOZjI6gCdmviXPwdgzcmuazMy16rXoPY4mYCGe7zdNKfx5A==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/middleware-websocket@3.972.16':
- resolution: {integrity: sha512-86+S9oCyRVGzoMRpQhxkArp7kD2K75GPmaNevd9B6EyNhWoNvnCZZ3WbgN4j7ZT+jvtvBCGZvI2XHsWZJ+BRIg==}
+ '@aws-sdk/middleware-websocket@3.972.30':
+ resolution: {integrity: sha512-kH6N4f/Fzi9r/dYap8EQ+Zk4NOz8pl4AtWKhzAoG2C1/4YkIHok9APp/e+75woreWQq264n+LkrJsJVZ0Q+M1Q==}
engines: {node: '>= 14.0.0'}
- '@aws-sdk/nested-clients@3.997.10':
- resolution: {integrity: sha512-FtQ/Bt327peZJuyo4WZSOLVUTw9ujRxntepiC7L65FxA2P82Xlq0g14T22BuqBUeMjDoxa9nvwiMHjLIfP3eUg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/nested-clients@3.997.4':
- resolution: {integrity: sha512-4Sf+WY1lMJzXlw5MiyCMe/UzdILCwvuaHThbqMXS6dfh9gZy3No360I42RXquOI/ULUOhWy2HCyU0Fp20fQGPQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/nested-clients@3.997.6':
- resolution: {integrity: sha512-WBDnqatJl+kGObpfmfSxqnXeYTu3Me8wx8WCtvoxX3pfWrrTv8I4WTMSSs7PZqcRcVh8WeUKMgGFjMG+52SR1w==}
+ '@aws-sdk/nested-clients@3.997.22':
+ resolution: {integrity: sha512-4IwtcYSxEIVw5hcp8ogq0CMbFNZFw7jJUetpfFUhFFeqsa1K8j2Ihg2hnxLyOp3stMZnXda6VzOmPi1AFZQXcg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/region-config-resolver@3.972.13':
- resolution: {integrity: sha512-CvJ2ZIjK/jVD/lbOpowBVElJyC1YxLTIJ13yM0AEo0t2v7swOzGjSA6lJGH+DwZXQhcjUjoYwc8bVYCX5MDr1A==}
+ '@aws-sdk/signature-v4-multi-region@3.996.35':
+ resolution: {integrity: sha512-6L/VWs+Wch2stHemCGTmUNqKLMzURxQDK5boNG3Jn3kAOp71meDUuS5sbObpEvFxHDq0uWeSLFDNSYsjNt+Dlg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.996.23':
- resolution: {integrity: sha512-wBbys3Y53Ikly556vyADurKpYQHXS7Jjaskbz+Ga9PZCz7PB/9f3VdKbDlz7dqIzn+xwz7L/a6TR4iXcOi8IRw==}
+ '@aws-sdk/token-providers@3.1071.0':
+ resolution: {integrity: sha512-4LDW2Qob6LoLFuqYSYZq2AyTE9koSE9+i+n5UZcm10GpmQOK0zRD9L4uYlzItiTKksIWgC/qMFChAi3RvKYtMg==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.996.25':
- resolution: {integrity: sha512-+CMIt3e1VzlklAECmG+DtP1sV8iKq25FuA0OKpnJ4KA0kxUtd7CgClY7/RU6VzJBQwbN4EJ9Ue6plvqx1qGadw==}
+ '@aws-sdk/token-providers@3.1073.0':
+ resolution: {integrity: sha512-Tolawuc3I9Q6pElcqoBQMLCiCOfKn3eqG4oNIRci4BurhsrJmzXkhF3N+6LRXJrWYFtJKfTkBuLbYCLr8+pwig==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.996.27':
- resolution: {integrity: sha512-0Phbz4t6HI3D3skxvG2uI+VWU034/nSIw1T8d+FPzzQG9EQTrw94o9mOKO2Gv3n3Oc8P7JD7RAUxkoneLWv5Eg==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/token-providers@3.1038.0':
- resolution: {integrity: sha512-Qniru+9oGGb/HNK/gGZWbV3jsD0k71ngE7qMQ/x6gYNYLd2EOwHCS6E2E6jfkaqO4i0d+nNKmfRy8bNcshKdGQ==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/token-providers@3.1041.0':
- resolution: {integrity: sha512-Th7kPI6YPtvJUcdznooXJMy+9rQWjmEF81LxaJssngBzuysK4a/x+l8kjm1zb7nYsUPbndnBdUnwng/3PLvtGw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/token-providers@3.1045.0':
- resolution: {integrity: sha512-/o4qcty0DmQola0DBniRVeBakYY6ALOvKEFo1AtJpTmMn/cJ+Fk3RWGe5ieT/f/eYbHG9k5E7poKge/E+WGv4Q==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/token-providers@3.1049.0':
- resolution: {integrity: sha512-r7+d0lQMTHKypkmaF5jRTBYLYHCUHzt3gaVoN9SidLhQeWhCmHk3AKrboDTpPF5b7Pt7vKu3+oeMjznM2Eu1ow==}
+ '@aws-sdk/types@3.973.13':
+ resolution: {integrity: sha512-pEHZqRkAlHfnfAU9tK+WpKv/gBNjGJrHMgA3A0iYRGyswBS2t0pfez+lWlwktb3Bqa0ovh7w/QJTFwp3fDxLNg==}
engines: {node: '>=20.0.0'}
'@aws-sdk/types@3.973.8':
resolution: {integrity: sha512-gjlAdtHMbtR9X5iIhVUvbVcy55KnznpC6bkDUWW9z915bi0ckdUr5cjf16Kp6xq0bP5HBD2xzgbL9F9Quv5vUw==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/util-arn-parser@3.972.3':
- resolution: {integrity: sha512-HzSD8PMFrvgi2Kserxuff5VitNq2sgf3w9qxmskKDiDTThWfVteJxuCS9JXiPIPtmCrp+7N9asfIaVhBFORllA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/util-endpoints@3.996.8':
- resolution: {integrity: sha512-oOZHcRDihk5iEe5V25NVWg45b3qEA8OpHWVdU/XQh8Zj4heVPAJqWvMphQnU7LkufmUo10EpvFPZuQMiFLJK3g==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/util-format-url@3.972.10':
- resolution: {integrity: sha512-DEKiHNJVtNxdyTeQspzY+15Po/kHm6sF0Cs4HV9Q2+lplB63+DrvdeiSoOSdWEWAoO2RcY1veoXVDz2tWxWCgQ==}
- engines: {node: '>=20.0.0'}
-
'@aws-sdk/util-locate-window@3.965.5':
resolution: {integrity: sha512-WhlJNNINQB+9qtLtZJcpQdgZw3SCDCpXdUJP7cToGwHbCWCnRckGlc6Bx/OhWwIYFNAn+FIydY8SZ0QmVu3xTQ==}
engines: {node: '>=20.0.0'}
- '@aws-sdk/util-user-agent-browser@3.972.10':
- resolution: {integrity: sha512-FAzqXvfEssGdSIz8ejatan0bOdx1qefBWKF/gWmVBXIP1HkS7v/wjjaqrAGGKvyihrXTXW00/2/1nTJtxpXz7g==}
-
- '@aws-sdk/util-user-agent-node@3.973.22':
- resolution: {integrity: sha512-YTYqTmOUrwbm1h99Ee4y/mVYpFRl0oSO/amtP5cc1BZZWdaAVWs9zj3TkyRHWvR9aI/ZS8m3mS6awXtYUlWyaw==}
- engines: {node: '>=20.0.0'}
- peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
-
- '@aws-sdk/util-user-agent-node@3.973.24':
- resolution: {integrity: sha512-ZWwlkjcIp7cEL8ZfTpTAPNkwx25p7xol0xlKoWVVf22+nsjwmLcHYtTPjIV1cSpmB/b6DaK4cb1fSkvCXHgRdw==}
- engines: {node: '>=20.0.0'}
- peerDependencies:
- aws-crt: '>=1.0.0'
- peerDependenciesMeta:
- aws-crt:
- optional: true
-
- '@aws-sdk/xml-builder@3.972.21':
- resolution: {integrity: sha512-qxNiHUtlrsjTeSlrPWiFkWps7uD6YB4eKzg7eLAFH8jbiHTlt0ePNlo2Xu+WlftP38JIcMaIX4jTUjOlE2ySWw==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/xml-builder@3.972.22':
- resolution: {integrity: sha512-PMYKKtJd70IsSG0yHrdAbxBr+ZWBKLvzFZfD3/urxgf6hXVMzuU5M+3MJ5G67RpOmLBu1fAUN65SbWuKUCOlAA==}
- engines: {node: '>=20.0.0'}
-
- '@aws-sdk/xml-builder@3.972.24':
- resolution: {integrity: sha512-V8z5YcDPfsvzrBlj0xR1vhRtocblhYbqdreCJB/voGd4Sr5zjNAeWxexbnqVtskTJe0vFb5KMqbSL++ePl+zRw==}
+ '@aws-sdk/xml-builder@3.972.30':
+ resolution: {integrity: sha512-StElZPEoBquWwNqw1AcfpzEyZqJvFxouG+mpDNYlcH6ZOrqd2CuIryv+8LV8gNHZUOyKyJF3Dq9vxaXEmDR9TQ==}
engines: {node: '>=20.0.0'}
'@aws/lambda-invoke-store@0.2.4':
@@ -1064,8 +884,8 @@ packages:
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
- '@mlc-ai/web-llm@0.2.82':
- resolution: {integrity: sha512-ONhW+28PPVSUI1m0RkJcm7suwc47b65i5b/rTEIADq5I22p1+9uf/CBbDPRkkjj1WJB9s8oFp0ywAW0NY1G6fg==}
+ '@mlc-ai/web-llm@0.2.84':
+ resolution: {integrity: sha512-hrOWzK4/nGNmgoRKT8pgVmZZ2oEPpbblIWQOwpqNyvK2dysHw3KVB1gNJOuRcQfKOPhucEhX1NJzXzgMDnwSCQ==}
'@modelcontextprotocol/sdk@1.29.0':
resolution: {integrity: sha512-zo37mZA9hJWpULgkRpowewez1y6ML5GsXJPY8FI0tBBCd77HEvza4jDqRKOXgHNn867PVGCyTdzqpz0izu5ZjQ==}
@@ -1090,60 +910,60 @@ packages:
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
- '@next/env@16.2.4':
- resolution: {integrity: sha512-dKkkOzOSwFYe5RX6y26fZgkSpVAlIOJKQHIiydQcrWH6y/97+RceSOAdjZ14Qa3zLduVUy0TXcn+EiM6t4rPgw==}
+ '@next/env@16.2.9':
+ resolution: {integrity: sha512-ki5VxxXfzD/9TDe13wyeTKIjQTAwBVpnr8KhRDUr8ltMUq1/NBpWNT5tiPoxiGl+PHM4X2ahSOiPk6iAimIzPg==}
- '@next/eslint-plugin-next@16.2.4':
- resolution: {integrity: sha512-tOX826JJ96gYK/go18sPUgMq9FK1tqxBFfUCEufJb5XIkWFFmpgU7mahJANKGkHs7F41ir3tReJ3Lv5La0RvhA==}
+ '@next/eslint-plugin-next@16.2.9':
+ resolution: {integrity: sha512-UZi8+YT/MLgTC9nrrn2Xd4lBYv1B7lVmtWHfPcthAI5Tt/C1LuDe6DfmtCtJ+WQod3ksY4VrKSvk3oMVAnL7qw==}
- '@next/swc-darwin-arm64@16.2.4':
- resolution: {integrity: sha512-OXTFFox5EKN1Ym08vfrz+OXxmCcEjT4SFMbNRsWZE99dMqt2Kcusl5MqPXcW232RYkMLQTy0hqgAMEsfEd/l2A==}
+ '@next/swc-darwin-arm64@16.2.9':
+ resolution: {integrity: sha512-HkfxNYUCmcct0Xsqib5KxqMSHV4AHJq857BNRchyBDs4YS19aHzVfn1kDuBYKqLLQBjXgnkIsjV2Kd4d2wzYhw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@16.2.4':
- resolution: {integrity: sha512-XhpVnUfmYWvD3YrXu55XdcAkQtOnvaI6wtQa8fuF5fGoKoxIUZ0kWPtcOfqJEWngFF/lOS9l3+O9CcownhiQxQ==}
+ '@next/swc-darwin-x64@16.2.9':
+ resolution: {integrity: sha512-7IAtK4MeybpqRV9GRABWEhJ62mOS+rzWOzOTFie4cSEtm12xsoOMJRcECoZx3FHPzFAqN/IJtHqWAFOLfl152w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@16.2.4':
- resolution: {integrity: sha512-Mx/tjlNA3G8kg14QvuGAJ4xBwPk1tUHq56JxZ8CXnZwz1Etz714soCEzGQQzVMz4bEnGPowzkV6Xrp6wAkEWOQ==}
+ '@next/swc-linux-arm64-gnu@16.2.9':
+ resolution: {integrity: sha512-hBD75iWpUtkL9SmQmcRhmLomn9jgkPzCEkbOcLgHymPEKzv+6ONy13RRiIEz/iEObjkS2Jlb5gYS2XGoS3X4rw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-arm64-musl@16.2.4':
- resolution: {integrity: sha512-iVMMp14514u7Nup2umQS03nT/bN9HurK8ufylC3FZNykrwjtx7V1A7+4kvhbDSCeonTVqV3Txnv0Lu+m2oDXNg==}
+ '@next/swc-linux-arm64-musl@16.2.9':
+ resolution: {integrity: sha512-qZTI3pf9SGc/obr8NkQAekBxmp1QK+kVm+VAf3BALLfFAj+1kUhkTxmrWpVos9R/UYIA8AWX2p6cGI5WdwzVUA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@next/swc-linux-x64-gnu@16.2.4':
- resolution: {integrity: sha512-EZOvm1aQWgnI/N/xcWOlnS3RQBk0VtVav5Zo7n4p0A7UKyTDx047k8opDbXgBpHl4CulRqRfbw3QrX2w5UOXMQ==}
+ '@next/swc-linux-x64-gnu@16.2.9':
+ resolution: {integrity: sha512-xm0HfRNX+UkH4R3c18ynswjj5o5uEj/7iI9p9omdtTSIsRCzQqkGMA+10nzJ4EHnYC3as65IMhbbl5fWRUWHYg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@next/swc-linux-x64-musl@16.2.4':
- resolution: {integrity: sha512-h9FxsngCm9cTBf71AR4fGznDEDx1hS7+kSEiIRjq5kO1oXWm07DxVGZjCvk0SGx7TSjlUqhI8oOyz7NfwAdPoA==}
+ '@next/swc-linux-x64-musl@16.2.9':
+ resolution: {integrity: sha512-QumimHkGEG6vM3PfEDWKyKen03NcqLOkeKB1EfcPe7VxzmEiCa4jNnMyBn/US5zcd/VE1CI+O8Ovb3lfjVHfGw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
libc: [musl]
- '@next/swc-win32-arm64-msvc@16.2.4':
- resolution: {integrity: sha512-3NdJV5OXMSOeJYijX+bjaLge3mJBlh4ybydbT4GFoB/2hAojWHtMhl3CYlYoMrjPuodp0nzFVi4Tj2+WaMg+Ow==}
+ '@next/swc-win32-arm64-msvc@16.2.9':
+ resolution: {integrity: sha512-hzQpKZvw8rAwI6A2uQh6SacCSvNAXaIkPNsWwzqqfRiIMiXMfH936skDhz1OO6KpvdKkJrgHHtqQOq5PIXOvdQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-x64-msvc@16.2.4':
- resolution: {integrity: sha512-kMVGgsqhO5YTYODD9IPGGhA6iprWidQckK3LmPeW08PIFENRmgfb4MjXHO+p//d+ts2rpjvK5gXWzXSMrPl9cw==}
+ '@next/swc-win32-x64-msvc@16.2.9':
+ resolution: {integrity: sha512-qr2VL3Ce5QrwgO2yh1ujSBawrimjVKX8FGF/cOynmdYKJY0BdHpGVNIRK1tqONB10Vkm25Ub1BD2bkjWs4+96w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -1167,14 +987,14 @@ packages:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- '@radix-ui/number@1.1.1':
- resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
+ '@radix-ui/number@1.1.2':
+ resolution: {integrity: sha512-ceTwaxc4I5IOi97DgCotl3pqiyRGvffcc0oOsE2dQYaJOFIDsDt4VWG6xEbg1QePv9QWausCEIppud/tJ1wNig==}
- '@radix-ui/primitive@1.1.3':
- resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
+ '@radix-ui/primitive@1.1.4':
+ resolution: {integrity: sha512-7AdCK9PQyiljKoBDbN8OuctCbd/esdwZPQ8RtOE3SsyQtUpiPb+ND75q0jEhC1m1ecBI0MFNeLJvwIh9iKHRcQ==}
- '@radix-ui/react-alert-dialog@1.1.15':
- resolution: {integrity: sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==}
+ '@radix-ui/react-alert-dialog@1.1.17':
+ resolution: {integrity: sha512-563ygGeyWPrxyVCNp7OV4rE2aIXhFPknpFyo4wbDlcyMMPZ6ySh+zC5WTvY0ZFLgPTg/QB6tA8PyDQyJ2b4cPg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1186,8 +1006,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-arrow@1.1.7':
- resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
+ '@radix-ui/react-arrow@1.1.10':
+ resolution: {integrity: sha512-j2VTDz1vgCsmuG0k5lBfOcM8n5JPFqZBcMryasFjHYMhwxYL5SRUV5lMSUpRdNtw3D/Sv8pzJtrlAgkssYSsQQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1199,8 +1019,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-collection@1.1.7':
- resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
+ '@radix-ui/react-collection@1.1.10':
+ resolution: {integrity: sha512-IVVz4EvBcKjrzKgof714qDnz/SzQAkLA2Emh5edlHbgcE6fNd3Un6CJLlaYcnm8N4JmAtzQgse4dOKxcD2yc9g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1212,17 +1032,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-compose-refs@1.1.2':
- resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-context@1.1.2':
- resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
+ '@radix-ui/react-compose-refs@1.1.3':
+ resolution: {integrity: sha512-rYOP8OMnuuPMQF1uhPVlGNcCDlkokKqGFE3JcxFViIkAXP7EvFWUliJAstrapypaBLJNHbZL6jGhbVDGTwmVhA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1230,8 +1041,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-context@1.1.3':
- resolution: {integrity: sha512-ieIFACdMpYfMEjF0rEf5KLvfVyIkOz6PDGyNnP+u+4xQ6jny3VCgA4OgXOwNx2aUkxn8zx9fiVcM8CfFYv9Lxw==}
+ '@radix-ui/react-context@1.1.4':
+ resolution: {integrity: sha512-QwH4PO5urrbO+FaGd5Aglg+YJgWTyyuZ3g/6mKvsqraLkglDdckw9JafgL5McL5VEJ6EPNduPaT3ZE9BttDAqg==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1239,8 +1050,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-dialog@1.1.15':
- resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
+ '@radix-ui/react-dialog@1.1.17':
+ resolution: {integrity: sha512-TDTYmpdq8dI2+Xgvgj9AJ8Ghqq+Eph/TRVEdaFQPDItIY+6QSkU7MJMeevw1568Yw/2Ijz8BTphPSP2XejKphw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1252,8 +1063,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-direction@1.1.1':
- resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
+ '@radix-ui/react-direction@1.1.2':
+ resolution: {integrity: sha512-C3vFhbyi4SW3PmbAi6Awpu4OzJtd0MxGurvSsYtr7p7nM8RNB3VAF3CUmnp2j50knpkrRcB7+ycVXzgLgF6yNA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1261,8 +1072,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-dismissable-layer@1.1.11':
- resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
+ '@radix-ui/react-dismissable-layer@1.1.13':
+ resolution: {integrity: sha512-2v+zNAWWe0ySxgC0D0yeXMPQ23xZVgXZTerTz+JKlmdRj6gfTqmCcR29jb6d290DezXPGgruHWDX/vYUebtErg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1274,8 +1085,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dropdown-menu@2.1.16':
- resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
+ '@radix-ui/react-dropdown-menu@2.1.18':
+ resolution: {integrity: sha512-PZGV82gFk0WltDRI//SsG28ZIjlo9ANTmoNYg0jLNzXXiDsAy5PkOOYQaVD1pPxY6t7gxffb1QMD6qaUvsBZdw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1287,8 +1098,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-focus-guards@1.1.3':
- resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
+ '@radix-ui/react-focus-guards@1.1.4':
+ resolution: {integrity: sha512-cot/aB/mOm0IYVYTTmQcEEK1M48lZWi8FlYe5nDPQQ8NYZUlXEFgncJ9p2Kzer3RKSrY7cTTpEMLZKNo9QoP5Q==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1296,8 +1107,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-focus-scope@1.1.7':
- resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
+ '@radix-ui/react-focus-scope@1.1.10':
+ resolution: {integrity: sha512-Fas/lXQqhVvqwAb64s5RFeHiHYElZ6SUQbZaNd6EkfhP/Al7wTIQ9WIR4QVX475tlu5yFCEdDcJH6/UwsZjMWw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1309,30 +1120,17 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-id@1.1.1':
- resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-label@2.1.8':
- resolution: {integrity: sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==}
+ '@radix-ui/react-id@1.1.2':
+ resolution: {integrity: sha512-orBC88futVpqCmhX1p4cvquNHsELQ+w+vBJnuj3ftETI5bJb0bZn3Tqu3SWN2IOcPycTnMGnhwoermvISt72sA==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-menu@2.1.16':
- resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
+ '@radix-ui/react-label@2.1.10':
+ resolution: {integrity: sha512-ib0zvq2ZsAqKm5tRnqGJn3vOxSgIts5ToxsXT0q1S/GfLD1Zj7UOEnkw8u2w6sRmn47djpQWuSU1DCL1R29/yw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1344,8 +1142,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-popover@1.1.15':
- resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
+ '@radix-ui/react-menu@2.1.18':
+ resolution: {integrity: sha512-lj8Rxjtn6zJq1oSbE/uDtAwCbB9BnxgHD+8MwJMuTh6u1dPamYhW9iuELr/Z8d0D/UysFblYYHeBPwi7T4k0YQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1357,8 +1155,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-popper@1.2.8':
- resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
+ '@radix-ui/react-popover@1.1.17':
+ resolution: {integrity: sha512-/YSAOdJ7YJvdn7bn5sdSx2egW+SKY+u7O5RyAVs94Ymrg2fg5QTSFPMRkzvhGyFuE4/qsmPBdrwYoZMZh/4f+g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1370,8 +1168,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-portal@1.1.9':
- resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
+ '@radix-ui/react-popper@1.3.1':
+ resolution: {integrity: sha512-bhnq/0DEPTi2lsOD3J5rTL65qUKHbKbhqHsmN9TMiclSXpipi651ooUKPPp6G5lF/WiHBdn1s0Wuqsn+myVAvw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1383,8 +1181,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-presence@1.1.5':
- resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
+ '@radix-ui/react-portal@1.1.12':
+ resolution: {integrity: sha512-m309havGzsjLHHaIX50G5PlvRs3xkgPCsGk/5PTvYm8D5q33yG0J7w/712PTOhid7NTaFETtnSXjngHQavvhVw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1396,8 +1194,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-primitive@2.1.3':
- resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
+ '@radix-ui/react-presence@1.1.6':
+ resolution: {integrity: sha512-zdTk4PlUO0E18HnZ3wYbW0KkJJxWCdiNYp6g6X1PtONFhxVkg01vliTJAmwIszU6mHiyBOoW9P0rAugl5/hULQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1409,8 +1207,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-primitive@2.1.4':
- resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
+ '@radix-ui/react-primitive@2.1.6':
+ resolution: {integrity: sha512-wetd0QI77DbvrPpTAvH1SqOxsYF2wZe5TNxqwOd5Ty4XDpV3dpV0s8K/1MGMJBeY5o7lg8ub5VIt1Ub+yVen6g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1422,8 +1220,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-progress@1.1.8':
- resolution: {integrity: sha512-+gISHcSPUJ7ktBy9RnTqbdKW78bcGke3t6taawyZ71pio1JewwGSJizycs7rLhGTvMJYCQB1DBK4KQsxs7U8dA==}
+ '@radix-ui/react-progress@1.1.10':
+ resolution: {integrity: sha512-JYzEg60lk79PwKM27WZyKd7PW8O4OM5jOaFfRPfOyeXmMw7tLJh5kSj+CEjVTehszuwml/AdCzPGMXBTGf4BBw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1435,8 +1233,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-roving-focus@1.1.11':
- resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
+ '@radix-ui/react-roving-focus@1.1.13':
+ resolution: {integrity: sha512-9gkwneI0guf8JDmrFxPjJF6Ozzgioyw+/lonYNCwefS9ZHA05er0BVHiXr+LbWGHxUfczvMY6G1oiZZi1VzjRw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1448,8 +1246,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-scroll-area@1.2.10':
- resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
+ '@radix-ui/react-scroll-area@1.2.12':
+ resolution: {integrity: sha512-xuafVzQiTCLsyEjakowTdG3OgTXsmO7IdCiO77otIa+z44xoLNs9Do5eg7POFumIOCjtG6djfm6RKUKpUa/csA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1461,8 +1259,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-separator@1.1.8':
- resolution: {integrity: sha512-sDvqVY4itsKwwSMEe0jtKgfTh+72Sy3gPmQpjqcQneqQ4PFmr/1I0YA+2/puilhggCe2gJcx5EBAYFkWkdpa5g==}
+ '@radix-ui/react-separator@1.1.10':
+ resolution: {integrity: sha512-Y6K6jLQCVfCnTL2MEtGxDLffkhNfEfHsEg3Wa8JU+IWdn3EWbLXd3OuOfQRN7p/W/cUce1WyTk3QeuAoDBzN9g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1474,8 +1272,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-slider@1.3.6':
- resolution: {integrity: sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==}
+ '@radix-ui/react-slider@1.4.1':
+ resolution: {integrity: sha512-r91WSpQucNGFKAIxT8FT0H0zyjd5tJlqObLp7LOMV4z49KoDCwjy01w3vDOU4e1wxhF9IgjYco7SB6byOW7Buw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1487,17 +1285,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-slot@1.2.3':
- resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- '@radix-ui/react-slot@1.2.4':
- resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
+ '@radix-ui/react-slot@1.3.0':
+ resolution: {integrity: sha512-MojKku4U/miO8Av4Dkb+ctMAQx7JmY96LmtDQlAarCRtd7rN52QCSzBF+XAvr5S6coSVj9HEPBgHAHKEJVk/WA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1505,8 +1294,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-switch@1.2.6':
- resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
+ '@radix-ui/react-switch@1.3.1':
+ resolution: {integrity: sha512-55bQtCnOB0BohomSHi6qvQXpJEEqUGDm6hRrM0Bph5OXwhSegqkd8IqgBAQkM1IlgUlWZIxpxRcpOEfRIgimyw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1518,8 +1307,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-tooltip@1.2.8':
- resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
+ '@radix-ui/react-tooltip@1.2.10':
+ resolution: {integrity: sha512-NlNe8D0dWEpVfXFli90IO6X07Josx/b1iu98tDnx9Xv0HT4wLIL+m2VOheMHhK7qbp2HoTBqALEFzGyZs/levw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1531,8 +1320,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-use-callback-ref@1.1.1':
- resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
+ '@radix-ui/react-use-callback-ref@1.1.2':
+ resolution: {integrity: sha512-xCso9j1/u8sEgP1RNHjFrXJLApL8LiqOkI1R4ywuN00rxWdYg4oQXuwKLS3i0j5NWLromUD27/4nlxj2UFVvIw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1540,8 +1329,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-controllable-state@1.2.2':
- resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
+ '@radix-ui/react-use-controllable-state@1.2.3':
+ resolution: {integrity: sha512-PLzC90MS+ReootmjC597dvopoelpZ8Q61HJkDXZSExitIq7PL55vHNnesAHwguHK0aPfBnpdNzQtv1uliaqQrA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1549,8 +1338,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-effect-event@0.0.2':
- resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
+ '@radix-ui/react-use-effect-event@0.0.3':
+ resolution: {integrity: sha512-6c8ZqvPTWILEKnyVkP53EGRCcpnJiKTC21sS/6R1GF5xKyHJJWQEPfkqlcgUkdRQivd6tb23abUwe4ngWmY0JA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1558,8 +1347,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-escape-keydown@1.1.1':
- resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
+ '@radix-ui/react-use-escape-keydown@1.1.2':
+ resolution: {integrity: sha512-2uVLvLjgO7NZCWw01/FdqRwmA42J0BcjPMUCA+koFEOAb+zjqIP7SiFz/7zWPrKnVmSqr76Omq2ALyCuX4dhLw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1567,8 +1356,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-layout-effect@1.1.1':
- resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
+ '@radix-ui/react-use-layout-effect@1.1.2':
+ resolution: {integrity: sha512-jrBWOxZITuGcnjRCM2t2U5ZPkCLxD+Ym6DjfssS5haTj2iiak/DOb64JeN6OdLfLgptb6/e2kKR+ZuTrGoZTPA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1576,8 +1365,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-previous@1.1.1':
- resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
+ '@radix-ui/react-use-previous@1.1.2':
+ resolution: {integrity: sha512-IGBQPtRFdhN6MQ8dbegVmBq1LVZluya3F1jWY+puIcQC3MHctRwTDSBWCkL/3ZcnMJLTMJ++Z+ktmvg0F89iCw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1585,8 +1374,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-rect@1.1.1':
- resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
+ '@radix-ui/react-use-rect@1.1.2':
+ resolution: {integrity: sha512-d8a+bBY/FxikNPlgJJoaBHZX+zKVbWHYJGTLnLvveQgFSTntkGdEKv3JDtHrMS0DNYpllz2nRsTLGLKYttbpmw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1594,8 +1383,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-size@1.1.1':
- resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
+ '@radix-ui/react-use-size@1.1.2':
+ resolution: {integrity: sha512-giWQp+4mxjBPt4KZ0MmyuykFNWfbDxKt4x+fPkRYmgRFJSbCZFzUglvMb/Kjn38tm10YP4ufiQZDx3zna4LU6w==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -1603,8 +1392,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-visually-hidden@1.2.3':
- resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
+ '@radix-ui/react-visually-hidden@1.2.6':
+ resolution: {integrity: sha512-jCE0WljWifTI4niIMCll06kGpsJTAPiZVU9H4WR1N6qW7At9ystHbN7dDB+we2xH535roFHj7qKS+RGj0FMDWQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -1616,8 +1405,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/rect@1.1.1':
- resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
+ '@radix-ui/rect@1.1.2':
+ resolution: {integrity: sha512-xnXE7wG13PI+cxieVssYXlQJuYVRhH9NBoxt3KNwzghDIA69GMm7d4wXRouHIYjE+KvS6U/MsMO73NdS2MH9ZA==}
'@reactflow/background@11.3.14':
resolution: {integrity: sha512-Gewd7blEVT5Lh6jqrvOgd4G6Qk17eGKQfsDXgyRSqM+CTwDqRldG2LsWN4sNeno6sbqVIC2fZ+rAUBFA9ZEUDA==}
@@ -1658,241 +1447,46 @@ packages:
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@smithy/config-resolver@4.4.17':
- resolution: {integrity: sha512-TzDZcAnhTyAHbXVxWZo7/tEcrIeFq20IBk8So3OLOetWpR8EwY/yEqBMBFaJMeyEiREDq4NfEl+qO3OAUD+vbQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/core@3.23.17':
- resolution: {integrity: sha512-x7BlLbUFL8NWCGjMF9C+1N5cVCxcPa7g6Tv9B4A2luWx3be3oU8hQ96wIwxe/s7OhIzvoJH73HAUSg5JXVlEtQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/core@3.24.0':
- resolution: {integrity: sha512-rZ5YfycIXX6puoGjthnDiMpUgtKNOq3c7CndQYkCNYQTv26AiCrZQOJPy7ANSfZ6Okk3UvCRnmO1OYWlLnYZgg==}
- engines: {node: '>=18.0.0'}
- deprecated: Deprecated due to incompatibility with Node.js 18 in some environments https://github.com/smithy-lang/smithy-typescript/issues/2022
-
- '@smithy/core@3.24.1':
- resolution: {integrity: sha512-3mT7o4qQyUWttYnVK3A0Z/u3Xha3E81tXn32Tz6vjZiUXhBrkEivpw1hBYfh84iFF9CSzkBU9Y1DJ3Q6RQ231g==}
- engines: {node: '>=18.0.0'}
- deprecated: Deprecated due to bug in browser bundling instructions https://github.com/smithy-lang/smithy-typescript/issues/2025
-
- '@smithy/core@3.24.3':
- resolution: {integrity: sha512-Ep/7tPamGY8mgESE3LyLKtxJyy6U52WWAqr/3wial47Sj4u3PiIF73AOGI27UyLy9duTkhZbgzodOfLV4TduZg==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/credential-provider-imds@4.2.14':
- resolution: {integrity: sha512-Au28zBN48ZAoXdooGUHemuVBrkE+Ie6RPmGNIAJsFqj33Vhb6xAgRifUydZ2aY+M+KaMAETAlKk5NC5h1G7wpg==}
+ '@smithy/core@3.25.1':
+ resolution: {integrity: sha512-zpDbpXBCBsxfLtG2GEUyfgvHvSFrw5CwDZSNzL0v52gx/c3oPlPbm+7W7num8xs6vyiUBn+bvYPHcQDOXZynCQ==}
engines: {node: '>=18.0.0'}
- '@smithy/credential-provider-imds@4.3.3':
- resolution: {integrity: sha512-I2Bti0DKFo2IJyN28ijCsx51BAumEYR4/1yZ1FXyBygy9MqbnMqCev4JPth/MbpRfBSRAX35hITSnAdJRo1u5w==}
+ '@smithy/credential-provider-imds@4.4.1':
+ resolution: {integrity: sha512-TSAF5NHgxEsllbErYWbK8aLnl5L601NGc5VYJlSPsKnf3YlkhdoBN+geGcaU00oiw2OK3QO5LA3QNXiiWhCidQ==}
engines: {node: '>=18.0.0'}
- '@smithy/eventstream-codec@4.3.1':
- resolution: {integrity: sha512-yS8AiJM3Kf7LR+lZyUilUyjdJGksAqxfSC3C9k3d1OCrAvWjpMlsJ+rW9cIslZJM4AtWh2UAqgZUWTtMeMdtDQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/eventstream-serde-browser@4.3.0':
- resolution: {integrity: sha512-JlY17/ZwBJ2O7FK/bKt8PZR+HBkyFwvgssgT6LiB0xYtz5/E5XG/HeKr5q2NMaVm8u8xjFfGk/6DVlbBe1qNkA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/eventstream-serde-config-resolver@4.4.0':
- resolution: {integrity: sha512-1Pg7aqxIdMilTbGJKCHTx0toIkKSrHdO6VHCh9oCncWJG+1wkJa90O/xb9mmRPuoOFCg2DLZAqnRyuBiUQnNIA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/eventstream-serde-node@4.3.0':
- resolution: {integrity: sha512-Xte1Td6CQpc/D0WnPZ2k98CvF7y1GopylMoGY/r26a9wbRHV5xusRbT6O9vouSeZlvtxoVb4ON/1fLRofO7m4Q==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/fetch-http-handler@5.3.17':
- resolution: {integrity: sha512-bXOvQzaSm6MnmLaWA1elgfQcAtN4UP3vXqV97bHuoOrHQOJiLT3ds6o9eo5bqd0TJfRFpzdGnDQdW3FACiAVdw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/fetch-http-handler@5.4.3':
- resolution: {integrity: sha512-F+DRf8IJazRJgYog2A/yJK7eYVc0rqTlRzO+5ZxjJd4WkZoKz0IJRncf7G6t1pdVT3kryJcwuTFhN1c5m6N47A==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/hash-blob-browser@4.3.0':
- resolution: {integrity: sha512-xOQ7w5hSzTe8IAwQ6BAbX+1d9s9SRwWUbU8cYYh5DHgkYOi131Q5+B9Blelg9u0zoPfM4VYOuuBRAmregPkzpQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/hash-node@4.2.14':
- resolution: {integrity: sha512-8ZBDY2DD4wr+GGjTpPtiglEsqr0lUP+KHqgZcWczFf6qeZ/YRjMIOoQWVQlmwu7EtxKTd8YXD8lblmYcpBIA1g==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/hash-stream-node@4.3.0':
- resolution: {integrity: sha512-DPDT0UyOREMPwipO7BzSJfD8z2YYp/x1FMpHqEppBF+gmGr7FoqUUFlXfK+YPOfHhlr8HDJRQpmShNb9C9po5Q==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/invalid-dependency@4.2.14':
- resolution: {integrity: sha512-c21qJiTSb25xvvOp+H2TNZzPCngrvl5vIPqPB8zQ/DmJF4QWXO19x1dWfMJZ6wZuuWUPPm0gV8C0cU3+ifcWuw==}
+ '@smithy/fetch-http-handler@5.5.1':
+ resolution: {integrity: sha512-96JrD1q71anokymx9Iblb+zKmNQYNstlV/25A9ZYIJ2A0rp1r7/GZAIm0bDWSmVvz3DpNOCZuabzsiL+w0UHhw==}
engines: {node: '>=18.0.0'}
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
- '@smithy/is-array-buffer@4.2.2':
- resolution: {integrity: sha512-n6rQ4N8Jj4YTQO3YFrlgZuwKodf4zUFs7EJIWH86pSCWBaAtAGBFfCM7Wx6D2bBJ2xqFNxGBSrUWswT3M0VJow==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/md5-js@4.3.0':
- resolution: {integrity: sha512-bODwWrXILREpCL7XZq1/QxiMqFxdWadw3noiKGjNKsPl1/nvWtLVFInNjK6pmHjM4BUOgfgZkrl9+V56ez2FNA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/middleware-content-length@4.2.14':
- resolution: {integrity: sha512-xhHq7fX4/3lv5NHxLUk3OeEvl0xZ+Ek3qIbWaCL4f9JwgDZEclPBElljaZCAItdGPQl/kSM4LPMOpy1MYgprpw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/middleware-endpoint@4.4.32':
- resolution: {integrity: sha512-ZZkgyjnJppiZbIm6Qbx92pbXYi1uzenIvGhBSCDlc7NwuAkiqSgS75j1czAD25ZLs2FjMjYy1q7gyRVWG6JA0Q==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/middleware-retry@4.5.7':
- resolution: {integrity: sha512-bRt6ZImqVSeTk39Nm81K20ObIiAZ3WefY7G6+iz/0tZjs4dgRRjvRX2sgsH+zi6iDCRR/aQvQofLKxxz4rPBZg==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/middleware-serde@4.2.20':
- resolution: {integrity: sha512-Lx9JMO9vArPtiChE3wbEZ5akMIDQpWQtlu90lhACQmNOXcGXRbaDywMHDzuDZ2OkZzP+9wQfZi3YJT9F67zTQQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/middleware-stack@4.2.14':
- resolution: {integrity: sha512-2dvkUKLuFdKsCRmOE4Mn63co0Djtsm+JMh0bYZQupN1pJwMeE8FmQmRLLzzEMN0dnNi7CDCYYH8F0EVwWiPBeA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/node-config-provider@4.3.14':
- resolution: {integrity: sha512-S+gFjyo/weSVL0P1b9Ts8C/CwIfNCgUPikk3sl6QVsfE/uUuO+QsF+NsE/JkpvWqqyz1wg7HFdiaZuj5CoBMRg==}
+ '@smithy/node-http-handler@4.8.1':
+ resolution: {integrity: sha512-emtXvoky671puri18ETf64AFIQUGIEA093F2drXpBgB0OGnBLjcwNR3CA2mYu62IAqNsS56xa5lnTxAgPq7cjw==}
engines: {node: '>=18.0.0'}
- '@smithy/node-http-handler@4.6.1':
- resolution: {integrity: sha512-iB+orM4x3xrr57X3YaXazfKnntl0LHlZB1kcXSGzMV1Tt0+YwEjGlbjk/44qEGtBzXAz6yFDzkYTKSV6Pj2HUg==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/node-http-handler@4.7.3':
- resolution: {integrity: sha512-/jPhevcTFPMVl6KNjbaI47iOg1zxC7IsnX4PQDGVZKMFceOXtB8IEYaB7a9VvkP/3oC60WzTeKocvSI7vLT0vA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/property-provider@4.2.14':
- resolution: {integrity: sha512-WuM31CgfsnQ/10i7NYr0PyxqknD72Y5uMfUMVSniPjbEPceiTErb4eIqJQ+pdxNEAUEWrewrGjIRjVbVHsxZiQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/protocol-http@5.3.14':
- resolution: {integrity: sha512-dN5F8kHx8RNU0r+pCwNmFZyz6ChjMkzShy/zup6MtkRmmix4vZzJdW+di7x//b1LiynIev88FM18ie+wwPcQtQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/querystring-builder@4.2.14':
- resolution: {integrity: sha512-XYA5Z0IqTeF+5XDdh4BBmSA0HvbgVZIyv4cmOoUheDNR57K1HgBp9ukUMx3Cr3XpDHHpLBnexPE3LAtDsZkj2A==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/querystring-parser@4.2.14':
- resolution: {integrity: sha512-hr+YyqBD23GVvRxGGrcc/oOeNlK3PzT5Fu4dzrDXxzS1LpFiuL2PQQqKPs87M79aW7ziMs+nvB3qdw77SqE7Lw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/service-error-classification@4.3.1':
- resolution: {integrity: sha512-aUQuDGh760ts/8MU+APjIZhlLPKhIIfqyzZaJikLEIMrdxFvxuLYD0WxWzaYWpmLbQlXDe9p7EWM3HsBe0K6Gw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/shared-ini-file-loader@4.4.9':
- resolution: {integrity: sha512-495/V2I15SHgedSJoDPD23JuSfKAp726ZI1V0wtjB07Wh7q/0tri/0e0DLefZCHgxZonrGKt/OCTpAtP1wE1kQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/signature-v4@5.3.14':
- resolution: {integrity: sha512-1D9Y/nmlVjCeSivCbhZ7hgEpmHyY1h0GvpSZt3l0xcD9JjmjVC1CHOozS6+Gh+/ldMH8JuJ6cujObQqfayAVFA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/signature-v4@5.4.3':
- resolution: {integrity: sha512-53+75QuPl6DL+ct6vVEB51FDO5oulXr20TPV46VvJZg76lIlXNWfxi8j+G2V/t0I2qxCBOa3vX/8bmjrpFVo9g==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/smithy-client@4.12.13':
- resolution: {integrity: sha512-y/Pcj1V9+qG98gyu1gvftHB7rDpdh+7kIBIggs55yGm3JdtBV8GT8IFF3a1qxZ79QnaJHX9GXzvBG6tAd+czJA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/types@4.14.1':
- resolution: {integrity: sha512-59b5HtSVrVR/eYNei3BUj3DCPKD/G7EtDDe7OEJE7i7FtQFugYo6MxbotS8mVJkLNVf8gYaAlEBwwtJ9HzhWSg==}
+ '@smithy/signature-v4@5.5.1':
+ resolution: {integrity: sha512-X9rVls3En0z3NtrmguTmpRM0/NqtWUxBjal6fcAkwtsub+gOdLZ6kD+V7xhUgFMGdG14bHbZ7M5QjaRI1+DatQ==}
engines: {node: '>=18.0.0'}
'@smithy/types@4.14.2':
resolution: {integrity: sha512-P+otAxbV4CqBybp7EkcJCrig63yE2E7PuNVOmilVMRcx/O+QDzGULTrKsq4DV13gSfak9ObPrWaHl/9bL5YcWw==}
engines: {node: '>=18.0.0'}
- '@smithy/url-parser@4.2.14':
- resolution: {integrity: sha512-p06BiBigJ8bTA3MgnOfCtDUWnAMY0YfedO/GRpmc7p+wg3KW8vbXy1xwSu5ASy0wV7rRYtlfZOIKH4XqfhjSQQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-base64@4.3.2':
- resolution: {integrity: sha512-XRH6b0H/5A3SgblmMa5ErXQ2XKhfbQB+Fm/oyLZ2O2kCUrwgg55bU0RekmzAhuwOjA9qdN5VU2BprOvGGUkOOQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-body-length-browser@4.2.2':
- resolution: {integrity: sha512-JKCrLNOup3OOgmzeaKQwi4ZCTWlYR5H4Gm1r2uTMVBXoemo1UEghk5vtMi1xSu2ymgKVGW631e2fp9/R610ZjQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-body-length-node@4.2.3':
- resolution: {integrity: sha512-ZkJGvqBzMHVHE7r/hcuCxlTY8pQr1kMtdsVPs7ex4mMU+EAbcXppfo5NmyxMYi2XU49eqaz56j2gsk4dHHPG/g==}
+ '@smithy/types@4.15.0':
+ resolution: {integrity: sha512-Z5TAOxygoFvybJV3igo5SloFflSokHx2hu1eFA+DxDTcn+FtKxUSui+rbTRG1pAafMA888Z3MVvCWUuvCrTXjg==}
engines: {node: '>=18.0.0'}
'@smithy/util-buffer-from@2.2.0':
resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
engines: {node: '>=14.0.0'}
- '@smithy/util-buffer-from@4.2.2':
- resolution: {integrity: sha512-FDXD7cvUoFWwN6vtQfEta540Y/YBe5JneK3SoZg9bThSoOAC/eGeYEua6RkBgKjGa/sz6Y+DuBZj3+YEY21y4Q==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-config-provider@4.2.2':
- resolution: {integrity: sha512-dWU03V3XUprJwaUIFVv4iOnS1FC9HnMHDfUrlNDSh4315v0cWyaIErP8KiqGVbf5z+JupoVpNM7ZB3jFiTejvQ==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-defaults-mode-browser@4.3.49':
- resolution: {integrity: sha512-a5bNrdiONYB/qE2BuKegvUMd/+ZDwdg4vsNuuSzYE8qs2EYAdK9CynL+Rzn29PbPiUqoz/cbpRbcLzD5lEevHw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-defaults-mode-node@4.2.54':
- resolution: {integrity: sha512-g1cvrJvOnzeJgEdf7AE4luI7gp6L8weE0y9a9wQUSGtjb8QRHDbCJYuE4Sy0SD9N8RrnNPFsPltAz/OSoBR9Zw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-endpoints@3.4.2':
- resolution: {integrity: sha512-a55Tr+3OKld4TTtnT+RhKOQHyPxm3j/xL4OR83WBUhLJaKDS9dnJ7arRMOp3t31dcLhApwG9bgvrRXBHlLdIkg==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-hex-encoding@4.2.2':
- resolution: {integrity: sha512-Qcz3W5vuHK4sLQdyT93k/rfrUwdJ8/HZ+nMUOyGdpeGA1Wxt65zYwi3oEl9kOM+RswvYq90fzkNDahPS8K0OIg==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-middleware@4.2.14':
- resolution: {integrity: sha512-1Su2vj9RYNDEv/V+2E+jXkkwGsgR7dc4sfHn9Z7ruzQHJIEni9zzw5CauvRXlFJfmgcqYP8fWa0dkh2Q2YaQyw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-retry@4.3.6':
- resolution: {integrity: sha512-p6/FO1n2KxMeQyna067i0uJ6TSbb165ZhnRtCpWh4Foxqbfc6oW+XITaL8QkFJj3KFnDe2URt4gOhgU06EP9ew==}
- engines: {node: '>=18.0.0'}
- deprecated: '@smithy/util-retry v4.3.6 contains a bug in Adaptive Retry, see https://github.com/smithy-lang/smithy-typescript/issues/1993. Upgrade to 4.3.7+'
-
- '@smithy/util-stream@4.5.25':
- resolution: {integrity: sha512-/PFpG4k8Ze8Ei+mMKj3oiPICYekthuzePZMgZbCqMiXIHHf4n2aZ4Ps0aSRShycFTGuj/J6XldmC0x0DwednIA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-uri-escape@4.2.2':
- resolution: {integrity: sha512-2kAStBlvq+lTXHyAZYfJRb/DfS3rsinLiwb+69SstC9Vb0s9vNWkRwpnj918Pfi85mzi42sOqdV72OLxWAISnw==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-utf8@2.3.0':
resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
engines: {node: '>=14.0.0'}
- '@smithy/util-utf8@4.2.2':
- resolution: {integrity: sha512-75MeYpjdWRe8M5E3AW0O4Cx3UadweS+cwdXjwYGBW5h/gxxnbeZ877sLPX/ZJA9GVTlL/qG0dXP29JWFCD1Ayw==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/util-waiter@4.4.0':
- resolution: {integrity: sha512-7kAlrB3n7/BHyw+uLq83d5jdadPUcDkdMOUSGxvpXjrJ++G0hTedTnoNChjybIxhZ/Gk7sCrfIOLkMAB0LhRBA==}
- engines: {node: '>=18.0.0'}
-
- '@smithy/uuid@1.1.2':
- resolution: {integrity: sha512-O/IEdcCUKkubz60tFbGA7ceITTAJsty+lBjNoorP4Z6XRqaFb/OjQjZODophEcuq68nKm6/0r+6/lLQ+XVpk8g==}
- engines: {node: '>=18.0.0'}
-
'@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
@@ -2016,10 +1610,6 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/jspdf@2.0.0':
- resolution: {integrity: sha512-oonYDXI4GegGaG7FFVtriJ+Yqlh4YR3L3NVDiwCEBVG7sbya19SoGx4MW4kg1MCMRPgkbbFTck8YKJL8PrkDfA==}
- deprecated: This is a stub types definition. jspdf provides its own type definitions, so you do not need this installed.
-
'@types/mdast@4.0.4':
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
@@ -2049,6 +1639,9 @@ packages:
'@types/react@19.2.14':
resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==}
+ '@types/react@19.2.17':
+ resolution: {integrity: sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==}
+
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
@@ -2066,6 +1659,14 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/eslint-plugin@8.61.1':
+ resolution: {integrity: sha512-ZPlVl3PB3et/59Ne0fv/sci6ZXz4T4Hp4nTJ56i/Y0gR89ARb+KphojTq6j+56E5PIezmOIOOWyY+aWQFd+IkQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.61.1
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/parser@8.59.1':
resolution: {integrity: sha512-HDQH9O/47Dxi1ceDhBXdaldtf/WV9yRYMjbjCuNk3qnaTD564qwv61Y7+gTxwxRKzSrgO5uhtw584igXVuuZkA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2073,22 +1674,45 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/parser@8.61.1':
+ resolution: {integrity: sha512-PJ5vePq5/ognBbrIcoC5+SHO5dfpeLPzP9FpLkzWrguoYQEeeSjlJpVwOpo1JRSTEi7dRcwNy4h4dzV70PqHcg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/project-service@8.59.1':
resolution: {integrity: sha512-+MuHQlHiEr00Of/IQbE/MmEoi44znZHbR/Pz7Opq4HryUOlRi+/44dro9Ycy8Fyo+/024IWtw8m4JUMCGTYxDg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/project-service@8.61.1':
+ resolution: {integrity: sha512-PrC4JYGmR241lYnfhmKGTXkFqv8+ymbTFgSAY0fVXpY82/QkMw5TZPl+vGzuDDU2QYJk9fIDOBTntF+yDv9LEA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/scope-manager@8.59.1':
resolution: {integrity: sha512-LwuHQI4pDOYVKvmH2dkaJo6YZCSgouVgnS/z7yBPKBMvgtBvyLqiLy9Z6b7+m/TRcX1NFYUqZetI5Y+aT4GEfg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/scope-manager@8.61.1':
+ resolution: {integrity: sha512-L2bdIeoQS8FlKAvONAr20w6OcLXeB+qiDKbAooS9A0Ben+iSIkBef0FxqwKWYqt5sa0i4KJtxVyVmhMylKzF5w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/tsconfig-utils@8.59.1':
resolution: {integrity: sha512-/0nEyPbX7gRsk0Uwfe4ALwwgxuA66d/l2mhRDNlAvaj4U3juhUtJNq0DsY8M2AYwwb9rEq2hrC3IcIcEt++iJA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/tsconfig-utils@8.61.1':
+ resolution: {integrity: sha512-UN/H4di+OO7EWx2ovME+8t31YO+KVnK0RRKEHR3kOt21/Ay8BOq3M1OMvWs5vNiqcFCYGYoxK3MXPZzmMUE+yg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/type-utils@8.59.1':
resolution: {integrity: sha512-klWPBR2ciQHS3f++ug/mVnWKPjBUo7icEL3FAO1lhAR1Z1i5NQYZ1EannMSRYcq5qCv5wNALlXr6fksRHyYl7w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2096,16 +1720,33 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/type-utils@8.61.1':
+ resolution: {integrity: sha512-GYRicKmVK0C4fsKgaACaknOUAq9Oa2kwsjnpFhFcS/5p4Ht5IP9OVLbgIgcK4SRk92nVHFluurg1lumD9dBcLw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/types@8.59.1':
resolution: {integrity: sha512-ZDCjgccSdYPw5Bxh+my4Z0lJU96ZDN7jbBzvmEn0FZx3RtU1C7VWl6NbDx94bwY3V5YsgwRzJPOgeY2Q/nLG8A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/types@8.61.1':
+ resolution: {integrity: sha512-G+CRlPqLv7Bz1IZVs03x5K59F1veqL0EJUROAdGhKsEq8qOiRiZbI+HUojPq5l0fEGOKModD9br6lObhB8zkoA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/typescript-estree@8.59.1':
resolution: {integrity: sha512-OUd+vJS05sSkOip+BkZ/2NS8RMxrAAJemsC6vU3kmfLyeaJT0TftHkV9mcx2107MmsBVXXexhVu4F0TZXyMl4g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/typescript-estree@8.61.1':
+ resolution: {integrity: sha512-u+oQD3BqYWPc8YV9Zab4vaJElJuwOLPRc10Jm1o/qS+6Qwen14HCWwx0Seo4LnSn2wxea2Ik8DxPt2/FHmuhrg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/utils@8.59.1':
resolution: {integrity: sha512-3pIeoXhCeYH9FSCBI8P3iNwJlGuzPlYKkTlen2O9T1DSeeg8UG8jstq6BLk+Mda0qup7mgk4z4XL4OzRaxZ8LA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2113,10 +1754,21 @@ packages:
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
typescript: '>=4.8.4 <6.1.0'
+ '@typescript-eslint/utils@8.61.1':
+ resolution: {integrity: sha512-1+P/3Dj6jvtybE1q0HQ6yBt/gq+oKJyLdEv4HdnqasaEXRSYCAsD59mXEVQnM/ULNdQxbX77tdG4jPRjIS6knA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
+ typescript: '>=4.8.4 <6.1.0'
+
'@typescript-eslint/visitor-keys@8.59.1':
resolution: {integrity: sha512-LdDNl6C5iJExcM0Yh0PwAIBb9PrSiCsWamF/JyEZawm3kFDnRoaq3LGE4bpyRao/fWeGKKyw7icx0YxrLFC5Cg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/visitor-keys@8.61.1':
+ resolution: {integrity: sha512-6fJ9MHWtK14C1DSkiMlHUSOmrVebL7150xZJBlJiL62jjhIA4JmOq6flwBgDxIdBKKdoiZRel+dfPD5MLfny3w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
deprecated: Potential CWE-502 - Update to 1.3.1 or higher
@@ -2236,6 +1888,9 @@ packages:
'@upstash/redis@1.37.0':
resolution: {integrity: sha512-LqOJ3+XWPLSZ2rGSed5DYG3ixybxb8EhZu3yQqF7MdZX1wLBG/FRcI6xcUZXHy/SS7mmXWyadrud0HJHkOc+uw==}
+ '@upstash/redis@1.38.0':
+ resolution: {integrity: sha512-wu+dZBptlLy0+MCUEoHmzrY/TnmgDey3+c7EbIGwrLqAvkP8yi5MWZHYGIFtAygmL4Bkz2TdFu+eU0vFPncIcg==}
+
'@vercel/analytics@1.6.1':
resolution: {integrity: sha512-oH9He/bEM+6oKlv3chWuOOcp8Y6fo6/PSro8hEkgCW3pu9/OiCXiUpRUogDh3Fs3LH2sosDrx8CxeOLBEE+afg==}
peerDependencies:
@@ -2781,8 +2436,8 @@ packages:
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
engines: {node: '>=12'}
- eslint-config-next@16.2.4:
- resolution: {integrity: sha512-A6ekXYFj/YQxBPMl45g3e+U8zJo+X2+ZQwcz34pPKjpc/3S4roBA2Rd9xWB4FKuSxhofo1/95WjzmUY+wHrOhg==}
+ eslint-config-next@16.2.9:
+ resolution: {integrity: sha512-olGtBrs07bQchpaJWeqbk9GaMoU0oGmN/pYNEBXSbfgKngb5uHnPe37X6tVeh6DJfaWFQildvinGEOrolo5fmw==}
peerDependencies:
eslint: '>=9.0.0'
typescript: '>=3.3.1'
@@ -2952,16 +2607,9 @@ packages:
fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
- fast-xml-builder@1.1.5:
- resolution: {integrity: sha512-4TJn/8FKLeslLAH3dnohXqE3QSoxkhvaMzepOIZytwJXZO69Bfz0HBdDHzOTOon6G59Zrk6VQ2bEiv1t61rfkA==}
-
fast-xml-builder@1.2.0:
resolution: {integrity: sha512-00aAWieqff+ZJhsXA4g1g7M8k+7AYoMUUHF+/zFb5U6Uv/P0Vl4QZo84/IcufzYalLuEj9928bXN9PbbFzMF0Q==}
- fast-xml-parser@5.7.2:
- resolution: {integrity: sha512-P7oW7tLbYnhOLQk/Gv7cZgzgMPP/XN03K02/Jy6Y/NHzyIAIpxuZIM/YqAkfiXFPxA2CTm7NtCijK9EDu09u2w==}
- hasBin: true
-
fast-xml-parser@5.7.3:
resolution: {integrity: sha512-C0AaNuC+mscy6vrAQKAc/rMq+zAPHodfHGZu4sGVehvAQt/JLG1O5zEcYcXSY5zSqr4YVgxsB+pHXTq0i7eDlg==}
hasBin: true
@@ -2984,6 +2632,9 @@ packages:
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
+ fflate@0.8.3:
+ resolution: {integrity: sha512-tbZNuJrLwGUp3zshBtdy4W+ORxZuIh8a5ilyIEQDC5rY1f3U20JMry0Ll3WBzU58EZKsEuJFXhb5gwv8CsPvgA==}
+
file-entry-cache@8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
@@ -3022,8 +2673,8 @@ packages:
fraction.js@5.3.4:
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
- framer-motion@12.38.0:
- resolution: {integrity: sha512-rFYkY/pigbcswl1XQSb7q424kSTQ8q6eAC+YUsSKooHQYuLdzdHjrt6uxUC+PRAO++q5IS7+TamgIw1AphxR+g==}
+ framer-motion@12.40.0:
+ resolution: {integrity: sha512-uaBd3qC1v3KQqBEjwTUd183K6PbS+j0yR9w9VmEOLWA/tnUcSn8Xa3uck7t4dgpDoUss8xQTcj8W2L07lrnLFg==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -3650,11 +3301,11 @@ packages:
monaco-editor@0.55.1:
resolution: {integrity: sha512-jz4x+TJNFHwHtwuV9vA9rMujcZRb0CEilTEwG2rRSpe/A7Jdkuj8xPKttCgOh+v/lkHy7HsZ64oj+q3xoAFl9A==}
- motion-dom@12.38.0:
- resolution: {integrity: sha512-pdkHLD8QYRp8VfiNLb8xIBJis1byQ9gPT3Jnh2jqfFtAsWUA3dEepDlsWe/xMpO8McV+VdpKVcp+E+TGJEtOoA==}
+ motion-dom@12.40.0:
+ resolution: {integrity: sha512-HxU3ZaBwNPVQUBQf1xxgq+7JrPNZvjLVxgbpEZL7RrWJnsxOf0/OM+yrHG9ogLQ31Do/r57Oz2gQWPK+6q62mg==}
- motion-utils@12.36.0:
- resolution: {integrity: sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg==}
+ motion-utils@12.39.0:
+ resolution: {integrity: sha512-8nadJAJjTtqRkmRF36FoJTrywK9nnFmnPwnSMyxaOCU7GDjN9RTMJIxx9De8ErM+vpPhMccr/6fo5WciyQLnMQ==}
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -3667,6 +3318,11 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
+ nanoid@3.3.13:
+ resolution: {integrity: sha512-sPdqC6ByMVVGvF1ynvvMo0/o+oD1VX7DaHhijt1bFgjvBkHBib4t49GoNDhf2NDta4oeUNlaGbSt5K7qjZ955Q==}
+ engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
+ hasBin: true
+
napi-postinstall@0.3.4:
resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
@@ -3685,8 +3341,8 @@ packages:
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
- next@16.2.4:
- resolution: {integrity: sha512-kPvz56wF5frc+FxlHI5qnklCzbq53HTwORaWBGdT0vNoKh1Aya9XC8aPauH4NJxqtzbWsS5mAbctm4cr+EkQ2Q==}
+ next@16.2.9:
+ resolution: {integrity: sha512-MEOJiq/UvuezAdqVSceHbqDgZt1kDw2tpGVOlsdIoJsQdbN2JY2hpVG4xnXGkbdJUOEWhnRfiu/O4Hpc9Juwww==}
engines: {node: '>=20.9.0'}
hasBin: true
peerDependencies:
@@ -3892,6 +3548,10 @@ packages:
resolution: {integrity: sha512-W62t/Se6rA0Az3DfCL0AqJwXuKwBeYg6nOaIgzP+xZ7N5BFCI7DYi1qs6ygUYT6rvfi6t9k65UMLJC+PHZpDAA==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.5.15:
+ resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
+ engines: {node: ^10 || ^12 || >=14}
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -3935,10 +3595,10 @@ packages:
resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
engines: {node: '>= 0.10'}
- react-dom@19.2.5:
- resolution: {integrity: sha512-J5bAZz+DXMMwW/wV3xzKke59Af6CHY7G4uYLN1OvBcKEsWOs4pQExj86BBKamxl/Ik5bx9whOrvBlSDfWzgSag==}
+ react-dom@19.2.7:
+ resolution: {integrity: sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==}
peerDependencies:
- react: ^19.2.5
+ react: ^19.2.7
react-icons@5.6.0:
resolution: {integrity: sha512-RH93p5ki6LfOiIt0UtDyNg/cee+HLVR6cHHtW3wALfo+eOHTp8RnU2kRkI6E+H19zMIs03DyxUG/GfZMOGvmiA==}
@@ -3990,8 +3650,8 @@ packages:
peerDependencies:
react: '>= 0.14.0'
- react@19.2.5:
- resolution: {integrity: sha512-llUJLzz1zTUBrskt2pwZgLq59AemifIftw4aB7JxOqf1HY2FDaGDxgwpAPVzHU1kdWabH7FauP4i1oEeer2WCA==}
+ react@19.2.7:
+ resolution: {integrity: sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==}
engines: {node: '>=0.10.0'}
reactflow@11.11.4:
@@ -4264,8 +3924,8 @@ packages:
resolution: {integrity: sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==}
engines: {node: '>=12.0.0'}
- tailwind-merge@3.5.0:
- resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
+ tailwind-merge@3.6.0:
+ resolution: {integrity: sha512-uxL7qAVQriqRQPAyK3pj66VqskWqoZ37PW94jwOTwNfq/z9oyu1V+eqrZqtR2+fCiXdYOZe/Modt8GtvqNzu+w==}
tailwindcss-animate@1.0.7:
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
@@ -4501,8 +4161,8 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yjs@13.6.30:
- resolution: {integrity: sha512-vv/9h42eCMC81ZHDFswuu/MKzkl/vyq1BhaNGfHyOonwlG4CJbQF4oiBBJPvfdeCt/PlVDWh7Nov9D34YY09uQ==}
+ yjs@13.6.31:
+ resolution: {integrity: sha512-Eq+5BRfbeGyqGVrTJL3bEcr8gKkxPuyuoHmAwpk52fDb8kOVMrfVSTRPd6yiGgX5Fskb96qCRjzjbRjrL4YEnw==}
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
yocto-queue@0.1.0:
@@ -4523,6 +4183,9 @@ packages:
zod@4.3.6:
resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==}
+ zod@4.4.3:
+ resolution: {integrity: sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==}
+
zundo@2.3.0:
resolution: {integrity: sha512-4GXYxXA17SIKYhVbWHdSEU04P697IMyVGXrC2TnzoyohEAWytFNOKqOp5gTGvaW93F/PM5Y0evbGtOPF0PWQwQ==}
peerDependencies:
@@ -4543,8 +4206,8 @@ packages:
react:
optional: true
- zustand@5.0.12:
- resolution: {integrity: sha512-i77ae3aZq4dhMlRhJVCYgMLKuSiZAaUPAct2AksxQ+gOtimhGMdXljRT21P5BNpeT4kXlLIckvkPM029OljD7g==}
+ zustand@5.0.14:
+ resolution: {integrity: sha512-/8tAspM5LMPr28b3fwLYrtdj77ECpfZviaP75CMTnwO8ISyaE4GDIG/9rDDYq/cH9D2Xw2A2RXglLInmVBQB/g==}
engines: {node: '>=12.20.0'}
peerDependencies:
'@types/react': '>=18.0.0'
@@ -4615,1784 +4278,643 @@ snapshots:
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
- '@aws-sdk/client-api-gateway@3.1045.0':
+ '@aws-sdk/checksums@3.1000.7':
+ dependencies:
+ '@aws-crypto/crc32': 5.2.0
+ '@aws-crypto/crc32c': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
+ tslib: 2.8.1
+
+ '@aws-sdk/client-api-gateway@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-sdk-api-gateway': 3.972.10
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/middleware-sdk-api-gateway': 3.972.18
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-bedrock-runtime@3.1045.0':
+ '@aws-sdk/client-bedrock-runtime@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/eventstream-handler-node': 3.972.14
- '@aws-sdk/middleware-eventstream': 3.972.10
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/middleware-websocket': 3.972.16
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/token-providers': 3.1045.0
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.24.0
- '@smithy/eventstream-serde-browser': 4.3.0
- '@smithy/eventstream-serde-config-resolver': 4.4.0
- '@smithy/eventstream-serde-node': 4.3.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/eventstream-handler-node': 3.972.22
+ '@aws-sdk/middleware-eventstream': 3.972.18
+ '@aws-sdk/middleware-websocket': 3.972.30
+ '@aws-sdk/token-providers': 3.1073.0
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-bedrock@3.1045.0':
+ '@aws-sdk/client-bedrock@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/token-providers': 3.1045.0
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.24.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/token-providers': 3.1073.0
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-cloudfront@3.1051.0':
+ '@aws-sdk/client-cloudfront@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-cloudwatch-logs@3.1045.0':
+ '@aws-sdk/client-cloudwatch-logs@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/eventstream-serde-browser': 4.3.0
- '@smithy/eventstream-serde-config-resolver': 4.4.0
- '@smithy/eventstream-serde-node': 4.3.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-cognito-identity-provider@3.1051.0':
+ '@aws-sdk/client-cognito-identity-provider@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-dynamodb@3.1045.0':
+ '@aws-sdk/client-dynamodb@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/dynamodb-codec': 3.973.8
- '@aws-sdk/middleware-endpoint-discovery': 3.972.11
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
- '@smithy/util-waiter': 4.4.0
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/dynamodb-codec': 3.973.22
+ '@aws-sdk/middleware-endpoint-discovery': 3.972.19
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-ec2@3.1051.0':
+ '@aws-sdk/client-ec2@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/middleware-sdk-ec2': 3.972.26
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/middleware-sdk-ec2': 3.972.36
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-ecs@3.1051.0':
+ '@aws-sdk/client-ecs@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-eks@3.1051.0':
+ '@aws-sdk/client-eks@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-elastic-load-balancing-v2@3.1051.0':
+ '@aws-sdk/client-elastic-load-balancing-v2@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-elasticache@3.1051.0':
+ '@aws-sdk/client-elasticache@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-eventbridge@3.1045.0':
+ '@aws-sdk/client-eventbridge@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/signature-v4-multi-region': 3.996.25
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/signature-v4-multi-region': 3.996.35
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-iam@3.1045.0':
+ '@aws-sdk/client-iam@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
- '@smithy/util-waiter': 4.4.0
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-kinesis@3.1045.0':
+ '@aws-sdk/client-kinesis@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/eventstream-serde-browser': 4.3.0
- '@smithy/eventstream-serde-config-resolver': 4.4.0
- '@smithy/eventstream-serde-node': 4.3.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
- '@smithy/util-waiter': 4.4.0
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-kms@3.1045.0':
+ '@aws-sdk/client-kms@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-lambda@3.1045.0':
+ '@aws-sdk/client-lambda@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/eventstream-serde-browser': 4.3.0
- '@smithy/eventstream-serde-config-resolver': 4.4.0
- '@smithy/eventstream-serde-node': 4.3.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
- '@smithy/util-waiter': 4.4.0
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-pricing@3.1038.0':
+ '@aws-sdk/client-pricing@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.6
- '@aws-sdk/credential-provider-node': 3.972.37
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.36
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.22
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-rds@3.1051.0':
+ '@aws-sdk/client-rds@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/middleware-sdk-rds': 3.972.26
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/middleware-sdk-rds': 3.972.36
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-route-53@3.1051.0':
+ '@aws-sdk/client-route-53@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/middleware-sdk-route53': 3.972.12
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/middleware-sdk-route53': 3.972.17
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-s3@3.1045.0':
+ '@aws-sdk/client-s3@3.1073.0':
dependencies:
'@aws-crypto/sha1-browser': 5.2.0
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-bucket-endpoint': 3.972.10
- '@aws-sdk/middleware-expect-continue': 3.972.10
- '@aws-sdk/middleware-flexible-checksums': 3.974.16
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-location-constraint': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-sdk-s3': 3.972.37
- '@aws-sdk/middleware-ssec': 3.972.10
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/signature-v4-multi-region': 3.996.25
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/eventstream-serde-browser': 4.3.0
- '@smithy/eventstream-serde-config-resolver': 4.4.0
- '@smithy/eventstream-serde-node': 4.3.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-blob-browser': 4.3.0
- '@smithy/hash-node': 4.2.14
- '@smithy/hash-stream-node': 4.3.0
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/md5-js': 4.3.0
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
- '@smithy/util-waiter': 4.4.0
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/middleware-flexible-checksums': 3.974.32
+ '@aws-sdk/middleware-sdk-s3': 3.972.53
+ '@aws-sdk/signature-v4-multi-region': 3.996.35
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-secrets-manager@3.1045.0':
+ '@aws-sdk/client-secrets-manager@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-sfn@3.1051.0':
+ '@aws-sdk/client-sfn@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-node': 3.972.43
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/client-sns@3.1045.0':
+ '@aws-sdk/client-sns@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-sqs@3.1045.0':
+ '@aws-sdk/client-sqs@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-sdk-sqs': 3.972.22
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/md5-js': 4.3.0
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/middleware-sdk-sqs': 3.972.31
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-ssm@3.1045.0':
+ '@aws-sdk/client-ssm@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.23.17
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
- '@smithy/util-waiter': 4.4.0
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-sso-oidc@3.1045.0':
+ '@aws-sdk/client-sso-oidc@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-node': 3.972.39
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.24.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-node': 3.972.57
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/client-sso@3.1045.0':
+ '@aws-sdk/client-sso@3.1073.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.24.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/core@3.974.12':
+ '@aws-sdk/core@3.974.22':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/xml-builder': 3.972.24
+ '@aws-sdk/types': 3.973.13
+ '@aws-sdk/xml-builder': 3.972.30
'@aws/lambda-invoke-store': 0.2.4
- '@smithy/core': 3.24.3
- '@smithy/signature-v4': 5.4.3
- '@smithy/types': 4.14.1
+ '@smithy/core': 3.25.1
+ '@smithy/signature-v4': 5.5.1
+ '@smithy/types': 4.15.0
bowser: 2.14.1
tslib: 2.8.1
- '@aws-sdk/core@3.974.6':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/xml-builder': 3.972.21
- '@smithy/core': 3.24.1
- '@smithy/node-config-provider': 4.3.14
- '@smithy/property-provider': 4.2.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/signature-v4': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-base64': 4.3.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
- tslib: 2.8.1
-
- '@aws-sdk/core@3.974.8':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/xml-builder': 3.972.22
- '@smithy/core': 3.24.1
- '@smithy/node-config-provider': 4.3.14
- '@smithy/property-provider': 4.2.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/signature-v4': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-base64': 4.3.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
- tslib: 2.8.1
-
- '@aws-sdk/crc64-nvme@3.972.7':
- dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-env@3.972.32':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-env@3.972.34':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-env@3.972.38':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-http@3.972.34':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/node-http-handler': 4.6.1
- '@smithy/property-provider': 4.2.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-stream': 4.5.25
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-http@3.972.36':
+ '@aws-sdk/credential-provider-env@3.972.48':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/node-http-handler': 4.6.1
- '@smithy/property-provider': 4.2.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-stream': 4.5.25
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-http@3.972.40':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-ini@3.972.36':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-env': 3.972.32
- '@aws-sdk/credential-provider-http': 3.972.34
- '@aws-sdk/credential-provider-login': 3.972.36
- '@aws-sdk/credential-provider-process': 3.972.32
- '@aws-sdk/credential-provider-sso': 3.972.36
- '@aws-sdk/credential-provider-web-identity': 3.972.36
- '@aws-sdk/nested-clients': 3.997.4
- '@aws-sdk/types': 3.973.8
- '@smithy/credential-provider-imds': 4.2.14
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-ini@3.972.38':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/credential-provider-env': 3.972.34
- '@aws-sdk/credential-provider-http': 3.972.36
- '@aws-sdk/credential-provider-login': 3.972.38
- '@aws-sdk/credential-provider-process': 3.972.34
- '@aws-sdk/credential-provider-sso': 3.972.38
- '@aws-sdk/credential-provider-web-identity': 3.972.38
- '@aws-sdk/nested-clients': 3.997.6
- '@aws-sdk/types': 3.973.8
- '@smithy/credential-provider-imds': 4.2.14
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-ini@3.972.42':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/credential-provider-env': 3.972.38
- '@aws-sdk/credential-provider-http': 3.972.40
- '@aws-sdk/credential-provider-login': 3.972.42
- '@aws-sdk/credential-provider-process': 3.972.38
- '@aws-sdk/credential-provider-sso': 3.972.42
- '@aws-sdk/credential-provider-web-identity': 3.972.42
- '@aws-sdk/nested-clients': 3.997.10
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/credential-provider-imds': 4.3.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-login@3.972.36':
+ '@aws-sdk/credential-provider-http@3.972.50':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.6
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/credential-provider-login@3.972.38':
+ '@aws-sdk/credential-provider-ini@3.972.55':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.6
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/credential-provider-env': 3.972.48
+ '@aws-sdk/credential-provider-http': 3.972.50
+ '@aws-sdk/credential-provider-login': 3.972.54
+ '@aws-sdk/credential-provider-process': 3.972.48
+ '@aws-sdk/credential-provider-sso': 3.972.54
+ '@aws-sdk/credential-provider-web-identity': 3.972.54
+ '@aws-sdk/nested-clients': 3.997.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/credential-provider-imds': 4.4.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/credential-provider-login@3.972.42':
+ '@aws-sdk/credential-provider-login@3.972.54':
dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/nested-clients': 3.997.10
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/nested-clients': 3.997.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-node@3.972.37':
+ '@aws-sdk/credential-provider-node@3.972.57':
dependencies:
- '@aws-sdk/credential-provider-env': 3.972.32
- '@aws-sdk/credential-provider-http': 3.972.34
- '@aws-sdk/credential-provider-ini': 3.972.36
- '@aws-sdk/credential-provider-process': 3.972.32
- '@aws-sdk/credential-provider-sso': 3.972.36
- '@aws-sdk/credential-provider-web-identity': 3.972.36
- '@aws-sdk/types': 3.973.8
- '@smithy/credential-provider-imds': 4.2.14
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
+ '@aws-sdk/credential-provider-env': 3.972.48
+ '@aws-sdk/credential-provider-http': 3.972.50
+ '@aws-sdk/credential-provider-ini': 3.972.55
+ '@aws-sdk/credential-provider-process': 3.972.48
+ '@aws-sdk/credential-provider-sso': 3.972.54
+ '@aws-sdk/credential-provider-web-identity': 3.972.54
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/credential-provider-imds': 4.4.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/credential-provider-node@3.972.39':
+ '@aws-sdk/credential-provider-process@3.972.48':
dependencies:
- '@aws-sdk/credential-provider-env': 3.972.34
- '@aws-sdk/credential-provider-http': 3.972.36
- '@aws-sdk/credential-provider-ini': 3.972.38
- '@aws-sdk/credential-provider-process': 3.972.34
- '@aws-sdk/credential-provider-sso': 3.972.38
- '@aws-sdk/credential-provider-web-identity': 3.972.38
- '@aws-sdk/types': 3.973.8
- '@smithy/credential-provider-imds': 4.2.14
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/credential-provider-node@3.972.43':
+ '@aws-sdk/credential-provider-sso@3.972.54':
dependencies:
- '@aws-sdk/credential-provider-env': 3.972.38
- '@aws-sdk/credential-provider-http': 3.972.40
- '@aws-sdk/credential-provider-ini': 3.972.42
- '@aws-sdk/credential-provider-process': 3.972.38
- '@aws-sdk/credential-provider-sso': 3.972.42
- '@aws-sdk/credential-provider-web-identity': 3.972.42
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/credential-provider-imds': 4.3.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/nested-clients': 3.997.22
+ '@aws-sdk/token-providers': 3.1071.0
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-process@3.972.32':
+ '@aws-sdk/credential-provider-web-identity@3.972.54':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/nested-clients': 3.997.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-process@3.972.34':
+ '@aws-sdk/dynamodb-codec@3.973.22':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/credential-provider-process@3.972.38':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-sso@3.972.36':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.4
- '@aws-sdk/token-providers': 3.1038.0
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-sso@3.972.38':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.6
- '@aws-sdk/token-providers': 3.1041.0
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-sso@3.972.42':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/nested-clients': 3.997.10
- '@aws-sdk/token-providers': 3.1049.0
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/credential-provider-web-identity@3.972.36':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.4
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-web-identity@3.972.38':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.6
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/credential-provider-web-identity@3.972.42':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/nested-clients': 3.997.10
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/dynamodb-codec@3.973.8':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@smithy/core': 3.24.1
- '@smithy/types': 4.14.1
- '@smithy/util-base64': 4.3.2
- tslib: 2.8.1
-
- '@aws-sdk/endpoint-cache@3.972.5':
+ '@aws-sdk/endpoint-cache@3.972.8':
dependencies:
mnemonist: 0.38.3
tslib: 2.8.1
- '@aws-sdk/eventstream-handler-node@3.972.14':
+ '@aws-sdk/eventstream-handler-node@3.972.22':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/eventstream-codec': 4.3.1
- '@smithy/types': 4.14.1
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-bucket-endpoint@3.972.10':
+ '@aws-sdk/middleware-endpoint-discovery@3.972.19':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-arn-parser': 3.972.3
- '@smithy/node-config-provider': 4.3.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-config-provider': 4.2.2
+ '@aws-sdk/endpoint-cache': 3.972.8
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-endpoint-discovery@3.972.11':
+ '@aws-sdk/middleware-eventstream@3.972.18':
dependencies:
- '@aws-sdk/endpoint-cache': 3.972.5
- '@aws-sdk/types': 3.973.8
- '@smithy/node-config-provider': 4.3.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-eventstream@3.972.10':
+ '@aws-sdk/middleware-flexible-checksums@3.974.32':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
+ '@aws-sdk/checksums': 3.1000.7
tslib: 2.8.1
- '@aws-sdk/middleware-expect-continue@3.972.10':
+ '@aws-sdk/middleware-sdk-api-gateway@3.972.18':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-flexible-checksums@3.974.16':
+ '@aws-sdk/middleware-sdk-ec2@3.972.36':
dependencies:
- '@aws-crypto/crc32': 5.2.0
- '@aws-crypto/crc32c': 5.2.0
- '@aws-crypto/util': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/crc64-nvme': 3.972.7
- '@aws-sdk/types': 3.973.8
- '@smithy/is-array-buffer': 4.2.2
- '@smithy/node-config-provider': 4.3.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
- tslib: 2.8.1
-
- '@aws-sdk/middleware-host-header@3.972.10':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/middleware-location-constraint@3.972.10':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/middleware-logger@3.972.10':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/middleware-recursion-detection@3.972.11':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@aws/lambda-invoke-store': 0.2.4
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/middleware-sdk-api-gateway@3.972.10':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/middleware-sdk-ec2@3.972.26':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/signature-v4': 5.4.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/middleware-sdk-rds@3.972.26':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/signature-v4': 5.4.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/middleware-sdk-route53@3.972.12':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/signature-v4': 5.5.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-sdk-s3@3.972.35':
+ '@aws-sdk/middleware-sdk-rds@3.972.36':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-arn-parser': 3.972.3
- '@smithy/core': 3.24.1
- '@smithy/node-config-provider': 4.3.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/signature-v4': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-config-provider': 4.2.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/signature-v4': 5.5.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-sdk-s3@3.972.37':
+ '@aws-sdk/middleware-sdk-route53@3.972.17':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-arn-parser': 3.972.3
- '@smithy/core': 3.24.1
- '@smithy/node-config-provider': 4.3.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/signature-v4': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-config-provider': 4.2.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/types': 3.973.13
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-sdk-sqs@3.972.22':
+ '@aws-sdk/middleware-sdk-s3@3.972.53':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-hex-encoding': 4.2.2
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/signature-v4-multi-region': 3.996.35
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-ssec@3.972.10':
+ '@aws-sdk/middleware-sdk-sqs@3.972.31':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/types': 4.14.1
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-user-agent@3.972.36':
+ '@aws-sdk/middleware-websocket@3.972.30':
dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@smithy/core': 3.24.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-retry': 4.3.6
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/signature-v4': 5.5.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/middleware-user-agent@3.972.38':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@smithy/core': 3.24.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-retry': 4.3.6
- tslib: 2.8.1
-
- '@aws-sdk/middleware-websocket@3.972.16':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-format-url': 3.972.10
- '@smithy/eventstream-codec': 4.3.1
- '@smithy/eventstream-serde-browser': 4.3.0
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/protocol-http': 5.3.14
- '@smithy/signature-v4': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-base64': 4.3.2
- '@smithy/util-hex-encoding': 4.2.2
- '@smithy/util-utf8': 4.2.2
- tslib: 2.8.1
-
- '@aws-sdk/nested-clients@3.997.10':
+ '@aws-sdk/nested-clients@3.997.22':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/signature-v4-multi-region': 3.996.27
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/fetch-http-handler': 5.4.3
- '@smithy/node-http-handler': 4.7.3
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/signature-v4-multi-region': 3.996.35
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/fetch-http-handler': 5.5.1
+ '@smithy/node-http-handler': 4.8.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/nested-clients@3.997.4':
+ '@aws-sdk/signature-v4-multi-region@3.996.35':
dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.36
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/signature-v4-multi-region': 3.996.23
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.22
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.24.1
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/types': 3.973.13
+ '@smithy/signature-v4': 5.5.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/nested-clients@3.997.6':
+ '@aws-sdk/token-providers@3.1071.0':
dependencies:
- '@aws-crypto/sha256-browser': 5.2.0
- '@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/middleware-host-header': 3.972.10
- '@aws-sdk/middleware-logger': 3.972.10
- '@aws-sdk/middleware-recursion-detection': 3.972.11
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/region-config-resolver': 3.972.13
- '@aws-sdk/signature-v4-multi-region': 3.996.25
- '@aws-sdk/types': 3.973.8
- '@aws-sdk/util-endpoints': 3.996.8
- '@aws-sdk/util-user-agent-browser': 3.972.10
- '@aws-sdk/util-user-agent-node': 3.973.24
- '@smithy/config-resolver': 4.4.17
- '@smithy/core': 3.24.1
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/hash-node': 4.2.14
- '@smithy/invalid-dependency': 4.2.14
- '@smithy/middleware-content-length': 4.2.14
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-retry': 4.5.7
- '@smithy/middleware-serde': 4.2.20
- '@smithy/middleware-stack': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/node-http-handler': 4.6.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-body-length-node': 4.2.3
- '@smithy/util-defaults-mode-browser': 4.3.49
- '@smithy/util-defaults-mode-node': 4.2.54
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/util-utf8': 4.2.2
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/nested-clients': 3.997.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
- '@aws-sdk/region-config-resolver@3.972.13':
+ '@aws-sdk/token-providers@3.1073.0':
dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/config-resolver': 4.4.17
- '@smithy/node-config-provider': 4.3.14
- '@smithy/types': 4.14.1
+ '@aws-sdk/core': 3.974.22
+ '@aws-sdk/nested-clients': 3.997.22
+ '@aws-sdk/types': 3.973.13
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@aws-sdk/signature-v4-multi-region@3.996.23':
+ '@aws-sdk/types@3.973.13':
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.972.35
- '@aws-sdk/types': 3.973.8
- '@smithy/protocol-http': 5.3.14
- '@smithy/signature-v4': 5.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/signature-v4-multi-region@3.996.25':
- dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.972.37
- '@aws-sdk/types': 3.973.8
- '@smithy/protocol-http': 5.3.14
- '@smithy/signature-v4': 5.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/signature-v4-multi-region@3.996.27':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/signature-v4': 5.4.3
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/token-providers@3.1038.0':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.4
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/token-providers@3.1041.0':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.6
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/token-providers@3.1045.0':
- dependencies:
- '@aws-sdk/core': 3.974.8
- '@aws-sdk/nested-clients': 3.997.6
- '@aws-sdk/types': 3.973.8
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
- transitivePeerDependencies:
- - aws-crt
-
- '@aws-sdk/token-providers@3.1049.0':
- dependencies:
- '@aws-sdk/core': 3.974.12
- '@aws-sdk/nested-clients': 3.997.10
- '@aws-sdk/types': 3.973.8
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
'@aws-sdk/types@3.973.8':
dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@aws-sdk/util-arn-parser@3.972.3':
- dependencies:
- tslib: 2.8.1
-
- '@aws-sdk/util-endpoints@3.996.8':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-endpoints': 3.4.2
- tslib: 2.8.1
-
- '@aws-sdk/util-format-url@3.972.10':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/querystring-builder': 4.2.14
- '@smithy/types': 4.14.1
+ '@smithy/types': 4.14.2
tslib: 2.8.1
'@aws-sdk/util-locate-window@3.965.5':
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-user-agent-browser@3.972.10':
- dependencies:
- '@aws-sdk/types': 3.973.8
- '@smithy/types': 4.14.1
- bowser: 2.14.1
- tslib: 2.8.1
-
- '@aws-sdk/util-user-agent-node@3.973.22':
- dependencies:
- '@aws-sdk/middleware-user-agent': 3.972.36
- '@aws-sdk/types': 3.973.8
- '@smithy/node-config-provider': 4.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-config-provider': 4.2.2
- tslib: 2.8.1
-
- '@aws-sdk/util-user-agent-node@3.973.24':
- dependencies:
- '@aws-sdk/middleware-user-agent': 3.972.38
- '@aws-sdk/types': 3.973.8
- '@smithy/node-config-provider': 4.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-config-provider': 4.2.2
- tslib: 2.8.1
-
- '@aws-sdk/xml-builder@3.972.21':
- dependencies:
- '@nodable/entities': 2.1.0
- '@smithy/types': 4.14.1
- fast-xml-parser: 5.7.2
- tslib: 2.8.1
-
- '@aws-sdk/xml-builder@3.972.22':
- dependencies:
- '@nodable/entities': 2.1.0
- '@smithy/types': 4.14.1
- fast-xml-parser: 5.7.2
- tslib: 2.8.1
-
- '@aws-sdk/xml-builder@3.972.24':
+ '@aws-sdk/xml-builder@3.972.30':
dependencies:
- '@nodable/entities': 2.1.0
- '@smithy/types': 4.14.1
+ '@smithy/types': 4.15.0
fast-xml-parser: 5.7.3
tslib: 2.8.1
@@ -6571,11 +5093,11 @@ snapshots:
'@floating-ui/core': 1.7.5
'@floating-ui/utils': 0.2.11
- '@floating-ui/react-dom@2.1.8(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@floating-ui/react-dom@2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@floating-ui/dom': 1.7.6
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
'@floating-ui/utils@0.2.11': {}
@@ -6717,11 +5239,11 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.5
- '@mlc-ai/web-llm@0.2.82':
+ '@mlc-ai/web-llm@0.2.84':
dependencies:
loglevel: 1.9.2
- '@modelcontextprotocol/sdk@1.29.0(zod@4.3.6)':
+ '@modelcontextprotocol/sdk@1.29.0(zod@4.4.3)':
dependencies:
'@hono/node-server': 1.19.14(hono@4.12.15)
ajv: 8.20.0
@@ -6738,8 +5260,8 @@ snapshots:
json-schema-typed: 8.0.2
pkce-challenge: 5.0.1
raw-body: 3.0.2
- zod: 4.3.6
- zod-to-json-schema: 3.25.2(zod@4.3.6)
+ zod: 4.4.3
+ zod-to-json-schema: 3.25.2(zod@4.4.3)
transitivePeerDependencies:
- supports-color
@@ -6747,12 +5269,12 @@ snapshots:
dependencies:
state-local: 1.0.7
- '@monaco-editor/react@4.7.0(monaco-editor@0.55.1)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@monaco-editor/react@4.7.0(monaco-editor@0.55.1)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@monaco-editor/loader': 1.7.0
monaco-editor: 0.55.1
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
@@ -6761,34 +5283,34 @@ snapshots:
'@tybys/wasm-util': 0.10.1
optional: true
- '@next/env@16.2.4': {}
+ '@next/env@16.2.9': {}
- '@next/eslint-plugin-next@16.2.4':
+ '@next/eslint-plugin-next@16.2.9':
dependencies:
fast-glob: 3.3.1
- '@next/swc-darwin-arm64@16.2.4':
+ '@next/swc-darwin-arm64@16.2.9':
optional: true
- '@next/swc-darwin-x64@16.2.4':
+ '@next/swc-darwin-x64@16.2.9':
optional: true
- '@next/swc-linux-arm64-gnu@16.2.4':
+ '@next/swc-linux-arm64-gnu@16.2.9':
optional: true
- '@next/swc-linux-arm64-musl@16.2.4':
+ '@next/swc-linux-arm64-musl@16.2.9':
optional: true
- '@next/swc-linux-x64-gnu@16.2.4':
+ '@next/swc-linux-x64-gnu@16.2.9':
optional: true
- '@next/swc-linux-x64-musl@16.2.4':
+ '@next/swc-linux-x64-musl@16.2.9':
optional: true
- '@next/swc-win32-arm64-msvc@16.2.4':
+ '@next/swc-win32-arm64-msvc@16.2.9':
optional: true
- '@next/swc-win32-x64-msvc@16.2.4':
+ '@next/swc-win32-x64-msvc@16.2.9':
optional: true
'@nodable/entities@2.1.0': {}
@@ -6807,466 +5329,442 @@ snapshots:
'@nolyfill/is-core-module@1.0.39': {}
- '@radix-ui/number@1.1.1': {}
+ '@radix-ui/number@1.1.2': {}
- '@radix-ui/primitive@1.1.3': {}
-
- '@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@radix-ui/primitive@1.1.4': {}
- '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-alert-dialog@1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dialog': 1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-arrow@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-collection@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- react: 19.2.5
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-context@1.1.2(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-compose-refs@1.1.3(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-context@1.1.3(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-context@1.1.4(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
-
- '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5)
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-dialog@1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
aria-hidden: 1.2.6
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-direction@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-direction@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-dismissable-layer@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-escape-keydown': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-dropdown-menu@2.1.18(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-menu': 2.1.18(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-focus-guards@1.1.4(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-focus-scope@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-id@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-id@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-label@2.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-label@2.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-menu@2.1.18(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-collection': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-roving-focus': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
aria-hidden: 1.2.6
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-popover@1.1.17(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-focus-guards': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-focus-scope': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
aria-hidden: 1.2.6
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ react-remove-scroll: 2.7.2(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@floating-ui/react-dom': 2.1.8(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/rect': 1.1.1
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-popper@1.3.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.8(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-arrow': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-rect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/rect': 1.1.2
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-portal@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-presence@1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-primitive@2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-progress@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-slot': 1.2.4(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-progress@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/react-context': 1.1.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-roving-focus@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-collection': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/number': 1.1.1
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-scroll-area@1.2.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/number': 1.1.2
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-separator@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-separator@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-slider@1.3.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/number': 1.1.1
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-slot@1.2.3(@types/react@19.2.14)(react@19.2.5)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-slider@1.4.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/number': 1.1.2
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-collection': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-direction': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-slot@1.2.4(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-slot@1.3.0(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
-
- '@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@types/react': 19.2.17
+
+ '@radix-ui/react-switch@1.3.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-previous': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-size': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
-
- '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
- dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
+
+ '@radix-ui/react-tooltip@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.4
+ '@radix-ui/react-compose-refs': 1.1.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-context': 1.1.4(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-dismissable-layer': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-id': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-popper': 1.3.1(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-portal': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-presence': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@radix-ui/react-slot': 1.3.0(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-controllable-state': 1.2.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-visually-hidden': 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-callback-ref@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-controllable-state@1.2.3(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.5)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
+ '@radix-ui/react-use-effect-event': 0.0.3(@types/react@19.2.17)(react@19.2.7)
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-effect-event@0.0.3(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-escape-keydown@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
+ '@radix-ui/react-use-callback-ref': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-layout-effect@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-previous@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-rect@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/rect': 1.1.1
- react: 19.2.5
+ '@radix-ui/rect': 1.1.2
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-use-size@1.1.1(@types/react@19.2.14)(react@19.2.5)':
+ '@radix-ui/react-use-size@1.1.2(@types/react@19.2.17)(react@19.2.7)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.5)
- react: 19.2.5
+ '@radix-ui/react-use-layout-effect': 1.1.2(@types/react@19.2.17)(react@19.2.7)
+ react: 19.2.7
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@radix-ui/react-visually-hidden@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@radix-ui/react-primitive': 2.1.6(@types/react-dom@19.2.3(@types/react@19.2.17))(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
+ '@types/react': 19.2.17
+ '@types/react-dom': 19.2.3(@types/react@19.2.17)
- '@radix-ui/rect@1.1.1': {}
+ '@radix-ui/rect@1.1.2': {}
- '@reactflow/background@11.3.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@reactflow/background@11.3.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@reactflow/core': 11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ '@reactflow/core': 11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
classcat: 5.0.5
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- zustand: 4.5.7(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ zustand: 4.5.7(@types/react@19.2.17)(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/controls@11.2.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@reactflow/controls@11.2.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@reactflow/core': 11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ '@reactflow/core': 11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
classcat: 5.0.5
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- zustand: 4.5.7(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ zustand: 4.5.7(@types/react@19.2.17)(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/core@11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@reactflow/core@11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
'@types/d3': 7.4.3
'@types/d3-drag': 3.0.7
@@ -7276,321 +5774,93 @@ snapshots:
d3-drag: 3.0.0
d3-selection: 3.0.0
d3-zoom: 3.0.0
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- zustand: 4.5.7(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ zustand: 4.5.7(@types/react@19.2.17)(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/minimap@11.7.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@reactflow/minimap@11.7.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@reactflow/core': 11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ '@reactflow/core': 11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
'@types/d3-selection': 3.0.11
'@types/d3-zoom': 3.0.8
classcat: 5.0.5
d3-selection: 3.0.0
d3-zoom: 3.0.0
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- zustand: 4.5.7(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ zustand: 4.5.7(@types/react@19.2.17)(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/node-resizer@2.2.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@reactflow/node-resizer@2.2.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@reactflow/core': 11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ '@reactflow/core': 11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
classcat: 5.0.5
d3-drag: 3.0.0
d3-selection: 3.0.0
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- zustand: 4.5.7(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ zustand: 4.5.7(@types/react@19.2.17)(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- immer
- '@reactflow/node-toolbar@1.3.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)':
+ '@reactflow/node-toolbar@1.3.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)':
dependencies:
- '@reactflow/core': 11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
+ '@reactflow/core': 11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
classcat: 5.0.5
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- zustand: 4.5.7(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ zustand: 4.5.7(@types/react@19.2.17)(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- immer
'@rtsao/scc@1.1.0': {}
- '@smithy/config-resolver@4.4.17':
- dependencies:
- '@smithy/node-config-provider': 4.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-config-provider': 4.2.2
- '@smithy/util-endpoints': 3.4.2
- '@smithy/util-middleware': 4.2.14
- tslib: 2.8.1
-
- '@smithy/core@3.23.17':
- dependencies:
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-base64': 4.3.2
- '@smithy/util-body-length-browser': 4.2.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-stream': 4.5.25
- '@smithy/util-utf8': 4.2.2
- '@smithy/uuid': 1.1.2
- tslib: 2.8.1
-
- '@smithy/core@3.24.0':
- dependencies:
- '@aws-crypto/crc32': 5.2.0
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/core@3.24.1':
- dependencies:
- '@aws-crypto/crc32': 5.2.0
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/core@3.24.3':
+ '@smithy/core@3.25.1':
dependencies:
'@aws-crypto/crc32': 5.2.0
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@smithy/credential-provider-imds@4.2.14':
- dependencies:
- '@smithy/node-config-provider': 4.3.14
- '@smithy/property-provider': 4.2.14
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- tslib: 2.8.1
-
- '@smithy/credential-provider-imds@4.3.3':
- dependencies:
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@smithy/eventstream-codec@4.3.1':
- dependencies:
- '@smithy/core': 3.24.1
- tslib: 2.8.1
-
- '@smithy/eventstream-serde-browser@4.3.0':
- dependencies:
- '@smithy/core': 3.24.1
- tslib: 2.8.1
-
- '@smithy/eventstream-serde-config-resolver@4.4.0':
- dependencies:
- '@smithy/core': 3.24.1
- tslib: 2.8.1
-
- '@smithy/eventstream-serde-node@4.3.0':
- dependencies:
- '@smithy/core': 3.24.1
- tslib: 2.8.1
-
- '@smithy/fetch-http-handler@5.3.17':
- dependencies:
- '@smithy/protocol-http': 5.3.14
- '@smithy/querystring-builder': 4.2.14
- '@smithy/types': 4.14.1
- '@smithy/util-base64': 4.3.2
- tslib: 2.8.1
-
- '@smithy/fetch-http-handler@5.4.3':
- dependencies:
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@smithy/hash-blob-browser@4.3.0':
- dependencies:
- '@smithy/core': 3.24.1
- tslib: 2.8.1
-
- '@smithy/hash-node@4.2.14':
- dependencies:
- '@smithy/types': 4.14.1
- '@smithy/util-buffer-from': 4.2.2
- '@smithy/util-utf8': 4.2.2
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@smithy/hash-stream-node@4.3.0':
+ '@smithy/credential-provider-imds@4.4.1':
dependencies:
- '@smithy/core': 3.24.1
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@smithy/invalid-dependency@4.2.14':
+ '@smithy/fetch-http-handler@5.5.1':
dependencies:
- '@smithy/types': 4.14.1
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/is-array-buffer@4.2.2':
- dependencies:
- tslib: 2.8.1
-
- '@smithy/md5-js@4.3.0':
- dependencies:
- '@smithy/core': 3.24.1
- tslib: 2.8.1
-
- '@smithy/middleware-content-length@4.2.14':
- dependencies:
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/middleware-endpoint@4.4.32':
- dependencies:
- '@smithy/core': 3.24.1
- '@smithy/middleware-serde': 4.2.20
- '@smithy/node-config-provider': 4.3.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- '@smithy/url-parser': 4.2.14
- '@smithy/util-middleware': 4.2.14
- tslib: 2.8.1
-
- '@smithy/middleware-retry@4.5.7':
- dependencies:
- '@smithy/core': 3.24.1
- '@smithy/node-config-provider': 4.3.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/service-error-classification': 4.3.1
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-retry': 4.3.6
- '@smithy/uuid': 1.1.2
- tslib: 2.8.1
-
- '@smithy/middleware-serde@4.2.20':
- dependencies:
- '@smithy/core': 3.24.1
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/middleware-stack@4.2.14':
- dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/node-config-provider@4.3.14':
- dependencies:
- '@smithy/property-provider': 4.2.14
- '@smithy/shared-ini-file-loader': 4.4.9
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/node-http-handler@4.6.1':
- dependencies:
- '@smithy/protocol-http': 5.3.14
- '@smithy/querystring-builder': 4.2.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/node-http-handler@4.7.3':
- dependencies:
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@smithy/property-provider@4.2.14':
- dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/protocol-http@5.3.14':
- dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/querystring-builder@4.2.14':
+ '@smithy/node-http-handler@4.8.1':
dependencies:
- '@smithy/types': 4.14.1
- '@smithy/util-uri-escape': 4.2.2
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
- '@smithy/querystring-parser@4.2.14':
- dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/service-error-classification@4.3.1':
- dependencies:
- '@smithy/types': 4.14.1
-
- '@smithy/shared-ini-file-loader@4.4.9':
- dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/signature-v4@5.3.14':
- dependencies:
- '@smithy/is-array-buffer': 4.2.2
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-hex-encoding': 4.2.2
- '@smithy/util-middleware': 4.2.14
- '@smithy/util-uri-escape': 4.2.2
- '@smithy/util-utf8': 4.2.2
- tslib: 2.8.1
-
- '@smithy/signature-v4@5.4.3':
- dependencies:
- '@smithy/core': 3.24.3
- '@smithy/types': 4.14.2
- tslib: 2.8.1
-
- '@smithy/smithy-client@4.12.13':
- dependencies:
- '@smithy/core': 3.24.1
- '@smithy/middleware-endpoint': 4.4.32
- '@smithy/middleware-stack': 4.2.14
- '@smithy/protocol-http': 5.3.14
- '@smithy/types': 4.14.1
- '@smithy/util-stream': 4.5.25
- tslib: 2.8.1
-
- '@smithy/types@4.14.1':
+ '@smithy/signature-v4@5.5.1':
dependencies:
+ '@smithy/core': 3.25.1
+ '@smithy/types': 4.15.0
tslib: 2.8.1
'@smithy/types@4.14.2':
dependencies:
tslib: 2.8.1
- '@smithy/url-parser@4.2.14':
- dependencies:
- '@smithy/querystring-parser': 4.2.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/util-base64@4.3.2':
- dependencies:
- '@smithy/util-buffer-from': 4.2.2
- '@smithy/util-utf8': 4.2.2
- tslib: 2.8.1
-
- '@smithy/util-body-length-browser@4.2.2':
- dependencies:
- tslib: 2.8.1
-
- '@smithy/util-body-length-node@4.2.3':
+ '@smithy/types@4.15.0':
dependencies:
tslib: 2.8.1
@@ -7599,87 +5869,11 @@ snapshots:
'@smithy/is-array-buffer': 2.2.0
tslib: 2.8.1
- '@smithy/util-buffer-from@4.2.2':
- dependencies:
- '@smithy/is-array-buffer': 4.2.2
- tslib: 2.8.1
-
- '@smithy/util-config-provider@4.2.2':
- dependencies:
- tslib: 2.8.1
-
- '@smithy/util-defaults-mode-browser@4.3.49':
- dependencies:
- '@smithy/property-provider': 4.2.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/util-defaults-mode-node@4.2.54':
- dependencies:
- '@smithy/config-resolver': 4.4.17
- '@smithy/credential-provider-imds': 4.2.14
- '@smithy/node-config-provider': 4.3.14
- '@smithy/property-provider': 4.2.14
- '@smithy/smithy-client': 4.12.13
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/util-endpoints@3.4.2':
- dependencies:
- '@smithy/node-config-provider': 4.3.14
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/util-hex-encoding@4.2.2':
- dependencies:
- tslib: 2.8.1
-
- '@smithy/util-middleware@4.2.14':
- dependencies:
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/util-retry@4.3.6':
- dependencies:
- '@smithy/service-error-classification': 4.3.1
- '@smithy/types': 4.14.1
- tslib: 2.8.1
-
- '@smithy/util-stream@4.5.25':
- dependencies:
- '@smithy/fetch-http-handler': 5.3.17
- '@smithy/node-http-handler': 4.6.1
- '@smithy/types': 4.14.1
- '@smithy/util-base64': 4.3.2
- '@smithy/util-buffer-from': 4.2.2
- '@smithy/util-hex-encoding': 4.2.2
- '@smithy/util-utf8': 4.2.2
- tslib: 2.8.1
-
- '@smithy/util-uri-escape@4.2.2':
- dependencies:
- tslib: 2.8.1
-
'@smithy/util-utf8@2.3.0':
dependencies:
'@smithy/util-buffer-from': 2.2.0
tslib: 2.8.1
- '@smithy/util-utf8@4.2.2':
- dependencies:
- '@smithy/util-buffer-from': 4.2.2
- tslib: 2.8.1
-
- '@smithy/util-waiter@4.4.0':
- dependencies:
- '@smithy/core': 3.24.1
- tslib: 2.8.1
-
- '@smithy/uuid@1.1.2':
- dependencies:
- tslib: 2.8.1
-
'@swc/helpers@0.5.15':
dependencies:
tslib: 2.8.1
@@ -7828,10 +6022,6 @@ snapshots:
'@types/json5@0.0.29': {}
- '@types/jspdf@2.0.0':
- dependencies:
- jspdf: 4.2.1
-
'@types/mdast@4.0.4':
dependencies:
'@types/unist': 3.0.3
@@ -7849,9 +6039,9 @@ snapshots:
'@types/raf@3.4.3':
optional: true
- '@types/react-dom@19.2.3(@types/react@19.2.14)':
+ '@types/react-dom@19.2.3(@types/react@19.2.17)':
dependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
'@types/react-syntax-highlighter@15.5.13':
dependencies:
@@ -7861,6 +6051,10 @@ snapshots:
dependencies:
csstype: 3.2.3
+ '@types/react@19.2.17':
+ dependencies:
+ csstype: 3.2.3
+
'@types/trusted-types@2.0.7':
optional: true
@@ -7884,6 +6078,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/eslint-plugin@8.61.1(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.61.1
+ '@typescript-eslint/type-utils': 8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.61.1
+ eslint: 9.39.4(jiti@1.21.7)
+ ignore: 7.0.5
+ natural-compare: 1.4.0
+ ts-api-utils: 2.5.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.59.1
@@ -7896,6 +6106,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.61.1
+ '@typescript-eslint/types': 8.61.1
+ '@typescript-eslint/typescript-estree': 8.61.1(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.61.1
+ debug: 4.4.3
+ eslint: 9.39.4(jiti@1.21.7)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/project-service@8.59.1(typescript@5.9.3)':
dependencies:
'@typescript-eslint/tsconfig-utils': 8.59.1(typescript@5.9.3)
@@ -7905,15 +6127,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/project-service@8.61.1(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3)
+ '@typescript-eslint/types': 8.61.1
+ debug: 4.4.3
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/scope-manager@8.59.1':
dependencies:
'@typescript-eslint/types': 8.59.1
'@typescript-eslint/visitor-keys': 8.59.1
+ '@typescript-eslint/scope-manager@8.61.1':
+ dependencies:
+ '@typescript-eslint/types': 8.61.1
+ '@typescript-eslint/visitor-keys': 8.61.1
+
'@typescript-eslint/tsconfig-utils@8.59.1(typescript@5.9.3)':
dependencies:
typescript: 5.9.3
+ '@typescript-eslint/tsconfig-utils@8.61.1(typescript@5.9.3)':
+ dependencies:
+ typescript: 5.9.3
+
'@typescript-eslint/type-utils@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 8.59.1
@@ -7926,8 +6166,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/type-utils@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.61.1
+ '@typescript-eslint/typescript-estree': 8.61.1(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ debug: 4.4.3
+ eslint: 9.39.4(jiti@1.21.7)
+ ts-api-utils: 2.5.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/types@8.59.1': {}
+ '@typescript-eslint/types@8.61.1': {}
+
'@typescript-eslint/typescript-estree@8.59.1(typescript@5.9.3)':
dependencies:
'@typescript-eslint/project-service': 8.59.1(typescript@5.9.3)
@@ -7943,6 +6197,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@8.61.1(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/project-service': 8.61.1(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.61.1(typescript@5.9.3)
+ '@typescript-eslint/types': 8.61.1
+ '@typescript-eslint/visitor-keys': 8.61.1
+ debug: 4.4.3
+ minimatch: 10.2.5
+ semver: 7.7.4
+ tinyglobby: 0.2.16
+ ts-api-utils: 2.5.0(typescript@5.9.3)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/utils@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
dependencies:
'@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@1.21.7))
@@ -7954,11 +6223,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/utils@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@9.39.4(jiti@1.21.7))
+ '@typescript-eslint/scope-manager': 8.61.1
+ '@typescript-eslint/types': 8.61.1
+ '@typescript-eslint/typescript-estree': 8.61.1(typescript@5.9.3)
+ eslint: 9.39.4(jiti@1.21.7)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/visitor-keys@8.59.1':
dependencies:
'@typescript-eslint/types': 8.59.1
eslint-visitor-keys: 5.0.1
+ '@typescript-eslint/visitor-keys@8.61.1':
+ dependencies:
+ '@typescript-eslint/types': 8.61.1
+ eslint-visitor-keys: 5.0.1
+
'@ungap/structured-clone@1.3.0': {}
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
@@ -8024,24 +6309,28 @@ snapshots:
dependencies:
'@upstash/redis': 1.37.0
- '@upstash/ratelimit@2.0.8(@upstash/redis@1.37.0)':
+ '@upstash/ratelimit@2.0.8(@upstash/redis@1.38.0)':
dependencies:
'@upstash/core-analytics': 0.0.10
- '@upstash/redis': 1.37.0
+ '@upstash/redis': 1.38.0
'@upstash/redis@1.37.0':
dependencies:
uncrypto: 0.1.3
- '@vercel/analytics@1.6.1(next@16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5))(react@19.2.5)':
+ '@upstash/redis@1.38.0':
+ dependencies:
+ uncrypto: 0.1.3
+
+ '@vercel/analytics@1.6.1(next@16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)':
optionalDependencies:
- next: 16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
+ next: 16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
- '@vercel/speed-insights@2.0.0(next@16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5))(react@19.2.5)':
+ '@vercel/speed-insights@2.0.0(next@16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7))(react@19.2.7)':
optionalDependencies:
- next: 16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
+ next: 16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
accepts@2.0.0:
dependencies:
@@ -8164,30 +6453,30 @@ snapshots:
async-function@1.0.0: {}
- autoprefixer@10.5.0(postcss@8.5.12):
+ autoprefixer@10.5.0(postcss@8.5.15):
dependencies:
browserslist: 4.28.2
caniuse-lite: 1.0.30001791
fraction.js: 5.3.4
picocolors: 1.1.1
- postcss: 8.5.12
+ postcss: 8.5.15
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
dependencies:
possible-typed-array-names: 1.1.0
- aws-react-icons@3.3.0(react@19.2.5):
+ aws-react-icons@3.3.0(react@19.2.7):
dependencies:
- react: 19.2.5
+ react: 19.2.7
axe-core@4.11.3: {}
axobject-query@4.1.0: {}
- azure-react-icons@0.10.1(react@19.2.5):
+ azure-react-icons@0.10.1(react@19.2.7):
dependencies:
- react: 19.2.5
+ react: 19.2.7
bail@2.0.2: {}
@@ -8609,13 +6898,13 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-config-next@16.2.4(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3):
+ eslint-config-next@16.2.9(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3):
dependencies:
- '@next/eslint-plugin-next': 16.2.4
+ '@next/eslint-plugin-next': 16.2.9
eslint: 9.39.4(jiti@1.21.7)
eslint-import-resolver-node: 0.3.10
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@1.21.7))
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7))
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.39.4(jiti@1.21.7))
eslint-plugin-react: 7.37.5(eslint@9.39.4(jiti@1.21.7))
eslint-plugin-react-hooks: 7.1.1(eslint@9.39.4(jiti@1.21.7))
@@ -8648,22 +6937,22 @@ snapshots:
tinyglobby: 0.2.16
unrs-resolver: 1.11.1
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7))
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
eslint: 9.39.4(jiti@1.21.7)
eslint-import-resolver-node: 0.3.10
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@9.39.4(jiti@1.21.7))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -8674,7 +6963,7 @@ snapshots:
doctrine: 2.1.0
eslint: 9.39.4(jiti@1.21.7)
eslint-import-resolver-node: 0.3.10
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7))
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3))(eslint-import-resolver-node@0.3.10)(eslint-import-resolver-typescript@3.10.1)(eslint@9.39.4(jiti@1.21.7))
hasown: 2.0.3
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -8686,7 +6975,7 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.59.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.61.1(eslint@9.39.4(jiti@1.21.7))(typescript@5.9.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -8894,22 +7183,11 @@ snapshots:
fast-uri@3.1.0: {}
- fast-xml-builder@1.1.5:
- dependencies:
- path-expression-matcher: 1.5.0
-
fast-xml-builder@1.2.0:
dependencies:
path-expression-matcher: 1.5.0
xml-naming: 0.1.0
- fast-xml-parser@5.7.2:
- dependencies:
- '@nodable/entities': 2.1.0
- fast-xml-builder: 1.1.5
- path-expression-matcher: 1.5.0
- strnum: 2.2.3
-
fast-xml-parser@5.7.3:
dependencies:
'@nodable/entities': 2.1.0
@@ -8931,6 +7209,8 @@ snapshots:
fflate@0.8.2: {}
+ fflate@0.8.3: {}
+
file-entry-cache@8.0.0:
dependencies:
flat-cache: 4.0.1
@@ -8972,14 +7252,14 @@ snapshots:
fraction.js@5.3.4: {}
- framer-motion@12.38.0(react-dom@19.2.5(react@19.2.5))(react@19.2.5):
+ framer-motion@12.40.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- motion-dom: 12.38.0
- motion-utils: 12.36.0
+ motion-dom: 12.40.0
+ motion-utils: 12.39.0
tslib: 2.8.1
optionalDependencies:
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
fresh@2.0.0: {}
@@ -9416,9 +7696,9 @@ snapshots:
dependencies:
yallist: 3.1.1
- lucide-react@0.577.0(react@19.2.5):
+ lucide-react@0.577.0(react@19.2.7):
dependencies:
- react: 19.2.5
+ react: 19.2.7
markdown-table@3.0.4: {}
@@ -9806,11 +8086,11 @@ snapshots:
dompurify: 3.2.7
marked: 14.0.0
- motion-dom@12.38.0:
+ motion-dom@12.40.0:
dependencies:
- motion-utils: 12.36.0
+ motion-utils: 12.39.0
- motion-utils@12.36.0: {}
+ motion-utils@12.39.0: {}
ms@2.1.3: {}
@@ -9822,36 +8102,38 @@ snapshots:
nanoid@3.3.11: {}
+ nanoid@3.3.13: {}
+
napi-postinstall@0.3.4: {}
natural-compare@1.4.0: {}
negotiator@1.0.0: {}
- next-themes@0.4.6(react-dom@19.2.5(react@19.2.5))(react@19.2.5):
+ next-themes@0.4.6(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
- next@16.2.4(@babel/core@7.29.0)(react-dom@19.2.5(react@19.2.5))(react@19.2.5):
+ next@16.2.9(@babel/core@7.29.0)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- '@next/env': 16.2.4
+ '@next/env': 16.2.9
'@swc/helpers': 0.5.15
baseline-browser-mapping: 2.10.23
caniuse-lite: 1.0.30001791
postcss: 8.4.31
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
- styled-jsx: 5.1.6(@babel/core@7.29.0)(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
+ styled-jsx: 5.1.6(@babel/core@7.29.0)(react@19.2.7)
optionalDependencies:
- '@next/swc-darwin-arm64': 16.2.4
- '@next/swc-darwin-x64': 16.2.4
- '@next/swc-linux-arm64-gnu': 16.2.4
- '@next/swc-linux-arm64-musl': 16.2.4
- '@next/swc-linux-x64-gnu': 16.2.4
- '@next/swc-linux-x64-musl': 16.2.4
- '@next/swc-win32-arm64-msvc': 16.2.4
- '@next/swc-win32-x64-msvc': 16.2.4
+ '@next/swc-darwin-arm64': 16.2.9
+ '@next/swc-darwin-x64': 16.2.9
+ '@next/swc-linux-arm64-gnu': 16.2.9
+ '@next/swc-linux-arm64-musl': 16.2.9
+ '@next/swc-linux-x64-gnu': 16.2.9
+ '@next/swc-linux-x64-musl': 16.2.9
+ '@next/swc-win32-arm64-msvc': 16.2.9
+ '@next/swc-win32-x64-msvc': 16.2.9
sharp: 0.34.5
transitivePeerDependencies:
- '@babel/core'
@@ -10033,6 +8315,12 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ postcss@8.5.15:
+ dependencies:
+ nanoid: 3.3.13
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
prelude-ls@1.2.1: {}
prismjs@1.30.0: {}
@@ -10076,27 +8364,27 @@ snapshots:
iconv-lite: 0.7.2
unpipe: 1.0.0
- react-dom@19.2.5(react@19.2.5):
+ react-dom@19.2.7(react@19.2.7):
dependencies:
- react: 19.2.5
+ react: 19.2.7
scheduler: 0.27.0
- react-icons@5.6.0(react@19.2.5):
+ react-icons@5.6.0(react@19.2.7):
dependencies:
- react: 19.2.5
+ react: 19.2.7
react-is@16.13.1: {}
- react-markdown@10.1.0(@types/react@19.2.14)(react@19.2.5):
+ react-markdown@10.1.0(@types/react@19.2.17)(react@19.2.7):
dependencies:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
devlop: 1.1.0
hast-util-to-jsx-runtime: 2.3.6
html-url-attributes: 3.0.1
mdast-util-to-hast: 13.2.1
- react: 19.2.5
+ react: 19.2.7
remark-parse: 11.0.0
remark-rehype: 11.1.2
unified: 11.0.5
@@ -10105,55 +8393,55 @@ snapshots:
transitivePeerDependencies:
- supports-color
- react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.5):
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.17)(react@19.2.7):
dependencies:
- react: 19.2.5
- react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7)
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- react-remove-scroll@2.7.2(@types/react@19.2.14)(react@19.2.5):
+ react-remove-scroll@2.7.2(@types/react@19.2.17)(react@19.2.7):
dependencies:
- react: 19.2.5
- react-remove-scroll-bar: 2.3.8(@types/react@19.2.14)(react@19.2.5)
- react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.5)
+ react: 19.2.7
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.17)(react@19.2.7)
+ react-style-singleton: 2.2.3(@types/react@19.2.17)(react@19.2.7)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.2.14)(react@19.2.5)
- use-sidecar: 1.1.3(@types/react@19.2.14)(react@19.2.5)
+ use-callback-ref: 1.3.3(@types/react@19.2.17)(react@19.2.7)
+ use-sidecar: 1.1.3(@types/react@19.2.17)(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.5):
+ react-style-singleton@2.2.3(@types/react@19.2.17)(react@19.2.7):
dependencies:
get-nonce: 1.0.1
- react: 19.2.5
+ react: 19.2.7
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- react-syntax-highlighter@16.1.1(react@19.2.5):
+ react-syntax-highlighter@16.1.1(react@19.2.7):
dependencies:
'@babel/runtime': 7.29.2
highlight.js: 10.7.3
highlightjs-vue: 1.0.0
lowlight: 1.20.0
prismjs: 1.30.0
- react: 19.2.5
+ react: 19.2.7
refractor: 5.0.0
- react@19.2.5: {}
+ react@19.2.7: {}
- reactflow@11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5):
+ reactflow@11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- '@reactflow/background': 11.3.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@reactflow/controls': 11.2.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@reactflow/core': 11.11.4(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@reactflow/minimap': 11.7.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@reactflow/node-resizer': 2.2.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- '@reactflow/node-toolbar': 1.3.14(@types/react@19.2.14)(react-dom@19.2.5(react@19.2.5))(react@19.2.5)
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ '@reactflow/background': 11.3.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@reactflow/controls': 11.2.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@reactflow/core': 11.11.4(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@reactflow/minimap': 11.7.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@reactflow/node-resizer': 2.2.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ '@reactflow/node-toolbar': 1.3.14(@types/react@19.2.17)(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
transitivePeerDependencies:
- '@types/react'
- immer
@@ -10433,10 +8721,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- sonner@2.0.7(react-dom@19.2.5(react@19.2.5))(react@19.2.5):
+ sonner@2.0.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
- react: 19.2.5
- react-dom: 19.2.5(react@19.2.5)
+ react: 19.2.7
+ react-dom: 19.2.7(react@19.2.7)
source-map-js@1.2.1: {}
@@ -10529,10 +8817,10 @@ snapshots:
dependencies:
inline-style-parser: 0.2.7
- styled-jsx@5.1.6(@babel/core@7.29.0)(react@19.2.5):
+ styled-jsx@5.1.6(@babel/core@7.29.0)(react@19.2.7):
dependencies:
client-only: 0.0.1
- react: 19.2.5
+ react: 19.2.7
optionalDependencies:
'@babel/core': 7.29.0
@@ -10555,7 +8843,7 @@ snapshots:
svg-pathdata@6.0.3:
optional: true
- tailwind-merge@3.5.0: {}
+ tailwind-merge@3.6.0: {}
tailwindcss-animate@1.0.7(tailwindcss@3.4.19):
dependencies:
@@ -10767,24 +9055,24 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.5):
+ use-callback-ref@1.3.3(@types/react@19.2.17)(react@19.2.7):
dependencies:
- react: 19.2.5
+ react: 19.2.7
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.5):
+ use-sidecar@1.1.3(@types/react@19.2.17)(react@19.2.7):
dependencies:
detect-node-es: 1.1.0
- react: 19.2.5
+ react: 19.2.7
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.2.14
+ '@types/react': 19.2.17
- use-sync-external-store@1.6.0(react@19.2.5):
+ use-sync-external-store@1.6.0(react@19.2.7):
dependencies:
- react: 19.2.5
+ react: 19.2.7
util-deprecate@1.0.2: {}
@@ -10858,17 +9146,17 @@ snapshots:
xml-naming@0.1.0: {}
- y-protocols@1.0.7(yjs@13.6.30):
+ y-protocols@1.0.7(yjs@13.6.31):
dependencies:
lib0: 0.2.117
- yjs: 13.6.30
+ yjs: 13.6.31
- y-webrtc@10.3.0(yjs@13.6.30):
+ y-webrtc@10.3.0(yjs@13.6.31):
dependencies:
lib0: 0.2.117
simple-peer: 9.11.1
- y-protocols: 1.0.7(yjs@13.6.30)
- yjs: 13.6.30
+ y-protocols: 1.0.7(yjs@13.6.31)
+ yjs: 13.6.31
optionalDependencies:
ws: 8.20.0
transitivePeerDependencies:
@@ -10878,15 +9166,15 @@ snapshots:
yallist@3.1.1: {}
- yjs@13.6.30:
+ yjs@13.6.31:
dependencies:
lib0: 0.2.117
yocto-queue@0.1.0: {}
- zod-to-json-schema@3.25.2(zod@4.3.6):
+ zod-to-json-schema@3.25.2(zod@4.4.3):
dependencies:
- zod: 4.3.6
+ zod: 4.4.3
zod-validation-error@4.0.2(zod@4.3.6):
dependencies:
@@ -10894,21 +9182,23 @@ snapshots:
zod@4.3.6: {}
- zundo@2.3.0(zustand@5.0.12(@types/react@19.2.14)(react@19.2.5)(use-sync-external-store@1.6.0(react@19.2.5))):
+ zod@4.4.3: {}
+
+ zundo@2.3.0(zustand@5.0.14(@types/react@19.2.17)(react@19.2.7)(use-sync-external-store@1.6.0(react@19.2.7))):
dependencies:
- zustand: 5.0.12(@types/react@19.2.14)(react@19.2.5)(use-sync-external-store@1.6.0(react@19.2.5))
+ zustand: 5.0.14(@types/react@19.2.17)(react@19.2.7)(use-sync-external-store@1.6.0(react@19.2.7))
- zustand@4.5.7(@types/react@19.2.14)(react@19.2.5):
+ zustand@4.5.7(@types/react@19.2.17)(react@19.2.7):
dependencies:
- use-sync-external-store: 1.6.0(react@19.2.5)
+ use-sync-external-store: 1.6.0(react@19.2.7)
optionalDependencies:
- '@types/react': 19.2.14
- react: 19.2.5
+ '@types/react': 19.2.17
+ react: 19.2.7
- zustand@5.0.12(@types/react@19.2.14)(react@19.2.5)(use-sync-external-store@1.6.0(react@19.2.5)):
+ zustand@5.0.14(@types/react@19.2.17)(react@19.2.7)(use-sync-external-store@1.6.0(react@19.2.7)):
optionalDependencies:
- '@types/react': 19.2.14
- react: 19.2.5
- use-sync-external-store: 1.6.0(react@19.2.5)
+ '@types/react': 19.2.17
+ react: 19.2.7
+ use-sync-external-store: 1.6.0(react@19.2.7)
zwitch@2.0.4: {}
diff --git a/src/components/layout/UnifiedToolbar.tsx b/src/components/layout/UnifiedToolbar.tsx
index 4e035dc..3599656 100644
--- a/src/components/layout/UnifiedToolbar.tsx
+++ b/src/components/layout/UnifiedToolbar.tsx
@@ -392,7 +392,7 @@ export function UnifiedToolbar({
setInfraDiscoveryOpen(true)} className={ddItem}>
- Importar da AWS
+ Import from AWS