From 1ad2a04a3cd282191b7d15b0477a30195dfaf4f9 Mon Sep 17 00:00:00 2001 From: Simon Farshid Date: Sun, 24 Nov 2024 14:19:46 -0800 Subject: [PATCH] chore: update deps (#1217) * chore: update deps * workaround for ts error --- apps/docs/package.json | 16 +- apps/registry/package.json | 8 +- examples/local-ollama/package.json | 6 +- .../search-agent-for-e-commerce/package.json | 14 +- examples/with-external-store/package.json | 4 +- examples/with-ffmpeg/app/page.tsx | 3 +- examples/with-ffmpeg/package.json | 6 +- examples/with-inline-suggestions/package.json | 6 +- examples/with-langgraph/package.json | 4 +- examples/with-openai-assistants/package.json | 8 +- examples/with-playground/package.json | 2 +- examples/with-react-hook-form/package.json | 6 +- examples/with-trieve/package.json | 6 +- examples/with-vercel-ai-rsc/package.json | 8 +- package.json | 6 +- packages/assistant-stream/package.json | 2 +- packages/cli/package.json | 2 +- packages/create-assistant-ui/package.json | 2 +- packages/react-markdown/package.json | 2 +- packages/react-playground/package.json | 6 +- packages/react-trieve/package.json | 2 +- packages/react/package.json | 4 +- packages/tool-ui-weather/package.json | 2 +- packages/tsbuildutils/package.json | 4 +- pnpm-lock.yaml | 1071 ++++++++--------- 25 files changed, 559 insertions(+), 641 deletions(-) diff --git a/apps/docs/package.json b/apps/docs/package.json index b605da40d..23400b1b9 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -10,8 +10,8 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", - "@ai-sdk/provider": "^1.0.0", + "@ai-sdk/openai": "^1.0.4", + "@ai-sdk/provider": "^1.0.1", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-ai-sdk": "workspace:*", "@assistant-ui/react-langgraph": "workspace:*", @@ -28,7 +28,7 @@ "@radix-ui/react-tooltip": "^1.1.4", "@radix-ui/themes": "^3.1.6", "@shikijs/transformers": "^1.23.1", - "ai": "^4.0.1", + "ai": "^4.0.3", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", "dotenv": "^16.4.5", @@ -39,20 +39,20 @@ "geist": "^1.3.1", "lucide-react": "^0.460.0", "next": "15.0.3", - "openai": "^4.72.0", + "openai": "^4.73.0", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", "react-syntax-highlighter": "^15.6.1", "remark-gfm": "^4.0.0", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7", "trieve-fumadocs-adapter": "^1.2.4", - "trieve-ts-sdk": "^0.0.31", + "trieve-ts-sdk": "^0.0.33", "zod": "^3.23.8" }, "devDependencies": { "@types/mdx": "^2.0.13", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "autoprefixer": "^10.4.20", @@ -62,6 +62,6 @@ "tailwindcss": "^3.4.15", "ts-morph": "^24.0.0", "tsx": "^4.19.2", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/apps/registry/package.json b/apps/registry/package.json index ef214c5e7..e71498e87 100644 --- a/apps/registry/package.json +++ b/apps/registry/package.json @@ -5,7 +5,7 @@ "license": "MIT", "type": "module", "devDependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-markdown": "workspace:*", "@assistant-ui/react-syntax-highlighter": "workspace:*", @@ -15,7 +15,7 @@ "@radix-ui/react-popover": "^1.1.2", "@radix-ui/react-slot": "^1.1.0", "@radix-ui/react-tooltip": "^1.1.4", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "@types/react": "^18", "@types/react-syntax-highlighter": "^15.5.13", "class-variance-authority": "^0.7.0", @@ -29,11 +29,11 @@ "remark-gfm": "^4.0.0", "remark-math": "^6.0.0", "rimraf": "^6.0.1", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss": "^3.4.15", "tailwindcss-animate": "^1.0.7", "tsx": "^4.19.2", - "typescript": "^5.6.3", + "typescript": "^5.7.2", "zod": "^3.23.8" }, "scripts": { diff --git a/examples/local-ollama/package.json b/examples/local-ollama/package.json index e32485b1b..dbc1bc2e6 100644 --- a/examples/local-ollama/package.json +++ b/examples/local-ollama/package.json @@ -9,10 +9,10 @@ "lint": "next lint" }, "dependencies": { - "@assistant-ui/react": "^0.7.5", - "@assistant-ui/react-markdown": "^0.7.1", + "@assistant-ui/react": "^0.7.7", + "@assistant-ui/react-markdown": "^0.7.2", "next": "15.0.3", - "ollama-ai-provider": "^0.16.1", + "ollama-ai-provider": "^1.0.0", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", "tailwindcss-animate": "^1.0.7", diff --git a/examples/search-agent-for-e-commerce/package.json b/examples/search-agent-for-e-commerce/package.json index d17fdbda0..a792ca0ec 100644 --- a/examples/search-agent-for-e-commerce/package.json +++ b/examples/search-agent-for-e-commerce/package.json @@ -9,36 +9,36 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-ai-sdk": "workspace:*", "@radix-ui/react-avatar": "^1.1.1", "@radix-ui/react-popover": "^1.1.2", "@radix-ui/react-slot": "^1.1.0", "@radix-ui/react-tooltip": "^1.1.4", - "ai": "^4.0.1", + "ai": "^4.0.3", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", - "embla-carousel-autoplay": "^8.4.0", - "embla-carousel-react": "^8.4.0", + "embla-carousel-autoplay": "^8.5.1", + "embla-carousel-react": "^8.5.1", "lucide-react": "^0.460.0", "nanoid": "^5.0.8", "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7", "zod": "^3.23.8" }, "devDependencies": { "@assistant-ui/tsconfig": "workspace:*", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "eslint": "^9", "eslint-config-next": "15.0.3", "postcss": "^8.4.49", "tailwindcss": "^3.4.15", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/with-external-store/package.json b/examples/with-external-store/package.json index b2f05a86b..5879a8618 100644 --- a/examples/with-external-store/package.json +++ b/examples/with-external-store/package.json @@ -9,8 +9,8 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", - "@assistant-ui/react": "^0.7.5", + "@ai-sdk/openai": "^1.0.4", + "@assistant-ui/react": "^0.7.7", "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", diff --git a/examples/with-ffmpeg/app/page.tsx b/examples/with-ffmpeg/app/page.tsx index a027bd76a..ed9c52ca1 100644 --- a/examples/with-ffmpeg/app/page.tsx +++ b/examples/with-ffmpeg/app/page.tsx @@ -104,7 +104,8 @@ const FfmpegTool: FC<{ file: File }> = ({ file }) => { const data = (await ffmpeg.readFile(outputFileName)) as Uint8Array; window.open( URL.createObjectURL( - new Blob([data.buffer], { type: outputMimeType }), + // https://github.com/microsoft/TypeScript/issues/60579 + new Blob([data.buffer as BlobPart], { type: outputMimeType }), ), "_blank", ); diff --git a/examples/with-ffmpeg/package.json b/examples/with-ffmpeg/package.json index 21981b443..12e2cb799 100644 --- a/examples/with-ffmpeg/package.json +++ b/examples/with-ffmpeg/package.json @@ -9,7 +9,7 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-hook-form": "workspace:*", "@ffmpeg/ffmpeg": "^0.12.10", @@ -31,7 +31,7 @@ "react-dom": "19.0.0-rc-66855b96-20241106", "react-hook-form": "^7.53.2", "react-resizable-panels": "^2.1.7", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7", "zod": "^3.23.8", "zod-to-json-schema": "^3.23.5", @@ -46,6 +46,6 @@ "eslint-config-next": "15.0.3", "postcss": "^8", "tailwindcss": "^3.4.15", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/with-inline-suggestions/package.json b/examples/with-inline-suggestions/package.json index 30fb9c1e8..96bdb5045 100644 --- a/examples/with-inline-suggestions/package.json +++ b/examples/with-inline-suggestions/package.json @@ -9,20 +9,20 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-ai-sdk": "workspace:*", "@radix-ui/react-avatar": "^1.1.1", "@radix-ui/react-slot": "^1.1.0", "@radix-ui/react-tooltip": "^1.1.4", - "ai": "^4.0.1", + "ai": "^4.0.3", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", "lucide-react": "^0.460.0", "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7" }, "devDependencies": { diff --git a/examples/with-langgraph/package.json b/examples/with-langgraph/package.json index 8f797c312..0658f212a 100644 --- a/examples/with-langgraph/package.json +++ b/examples/with-langgraph/package.json @@ -21,7 +21,7 @@ "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7" }, "devDependencies": { @@ -34,6 +34,6 @@ "eslint-config-next": "15.0.3", "postcss": "^8", "tailwindcss": "^3.4.15", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/with-openai-assistants/package.json b/examples/with-openai-assistants/package.json index 694049461..690e91db2 100644 --- a/examples/with-openai-assistants/package.json +++ b/examples/with-openai-assistants/package.json @@ -9,19 +9,19 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-ai-sdk": "workspace:*", "@radix-ui/react-avatar": "^1.1.1", - "ai": "^4.0.1", + "ai": "^4.0.3", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", "lucide-react": "^0.460.0", "next": "15.0.3", - "openai": "^4.72.0", + "openai": "^4.73.0", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7" }, "devDependencies": { diff --git a/examples/with-playground/package.json b/examples/with-playground/package.json index c25bf2925..6bcab8039 100644 --- a/examples/with-playground/package.json +++ b/examples/with-playground/package.json @@ -9,7 +9,7 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-playground": "workspace:*", "@tailwindcss/forms": "^0.5.9", diff --git a/examples/with-react-hook-form/package.json b/examples/with-react-hook-form/package.json index 3dd16135f..383417fda 100644 --- a/examples/with-react-hook-form/package.json +++ b/examples/with-react-hook-form/package.json @@ -9,7 +9,7 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-hook-form": "workspace:*", "@hookform/resolvers": "^3.9.1", @@ -29,7 +29,7 @@ "react-dom": "19.0.0-rc-66855b96-20241106", "react-hook-form": "^7.53.2", "react-resizable-panels": "^2.1.7", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7", "zod": "^3.23.8", "zod-to-json-schema": "^3.23.5", @@ -44,6 +44,6 @@ "eslint-config-next": "15.0.3", "postcss": "^8", "tailwindcss": "^3.4.15", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/with-trieve/package.json b/examples/with-trieve/package.json index 6cd9aa69b..2a853bf22 100644 --- a/examples/with-trieve/package.json +++ b/examples/with-trieve/package.json @@ -16,9 +16,9 @@ "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7", - "trieve-ts-sdk": "^0.0.31" + "trieve-ts-sdk": "^0.0.33" }, "devDependencies": { "@assistant-ui/tsconfig": "workspace:*", @@ -29,6 +29,6 @@ "eslint-config-next": "15.0.3", "postcss": "^8", "tailwindcss": "^3.4.15", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/examples/with-vercel-ai-rsc/package.json b/examples/with-vercel-ai-rsc/package.json index a4985f57b..175874132 100644 --- a/examples/with-vercel-ai-rsc/package.json +++ b/examples/with-vercel-ai-rsc/package.json @@ -9,14 +9,14 @@ "lint": "next lint" }, "dependencies": { - "@ai-sdk/openai": "^1.0.1", + "@ai-sdk/openai": "^1.0.4", "@assistant-ui/react": "workspace:*", "@assistant-ui/react-ai-sdk": "workspace:*", "@radix-ui/react-avatar": "^1.1.1", "@radix-ui/react-icons": "^1.3.2", "@radix-ui/react-slot": "^1.1.0", "@radix-ui/react-tooltip": "^1.1.4", - "ai": "4.0.1", + "ai": "4.0.3", "class-variance-authority": "^0.7.0", "clsx": "^2.1.1", "lucide-react": "^0.460.0", @@ -24,7 +24,7 @@ "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", "react-dom": "19.0.0-rc-66855b96-20241106", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "tailwindcss-animate": "^1.0.7", "zod": "^3.23.8" }, @@ -37,6 +37,6 @@ "eslint-config-next": "15.0.3", "postcss": "^8", "tailwindcss": "^3.4.15", - "typescript": "^5.6.3" + "typescript": "^5.7.2" } } diff --git a/package.json b/package.json index 67fc8e5f3..21ca8208f 100644 --- a/package.json +++ b/package.json @@ -7,11 +7,11 @@ "ci:publish": "turbo build --filter=\"./packages/*\" && changeset publish" }, "devDependencies": { - "@changesets/cli": "^2.27.9", + "@changesets/cli": "^2.27.10", "eslint": "^9", "prettier": "^3.3.3", "prettier-plugin-tailwindcss": "^0.6.9", - "turbo": "^2.3.0" + "turbo": "^2.3.1" }, "prettier": { "trailingComma": "all", @@ -19,7 +19,7 @@ "prettier-plugin-tailwindcss" ] }, - "packageManager": "pnpm@9.13.2", + "packageManager": "pnpm@9.14.2", "resolutions": { "trieve-ts-sdk": "0.0.30" } diff --git a/packages/assistant-stream/package.json b/packages/assistant-stream/package.json index a1e6bd325..65af8cec8 100644 --- a/packages/assistant-stream/package.json +++ b/packages/assistant-stream/package.json @@ -38,7 +38,7 @@ }, "devDependencies": { "@assistant-ui/tsconfig": "workspace:*", - "ai": "^4.0.1", + "ai": "^4.0.3", "eslint": "^9", "eslint-config-next": "15.0.3", "tsup": "8.3.5", diff --git a/packages/cli/package.json b/packages/cli/package.json index 5d9101f2f..66246ffa2 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -11,7 +11,7 @@ "devDependencies": { "@assistant-ui/tsconfig": "workspace:*", "@types/cross-spawn": "^6.0.6", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "eslint-config-next": "15.0.3", "tsup": "8.3.5" }, diff --git a/packages/create-assistant-ui/package.json b/packages/create-assistant-ui/package.json index d9ee773d5..09b43f961 100644 --- a/packages/create-assistant-ui/package.json +++ b/packages/create-assistant-ui/package.json @@ -14,7 +14,7 @@ "devDependencies": { "@assistant-ui/tsconfig": "workspace:*", "@types/cross-spawn": "^6.0.6", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "tsup": "8.3.5" }, "files": [ diff --git a/packages/react-markdown/package.json b/packages/react-markdown/package.json index 353a809b7..79b0677ee 100644 --- a/packages/react-markdown/package.json +++ b/packages/react-markdown/package.json @@ -58,7 +58,7 @@ "@assistant-ui/tailwindcss-transformer": "workspace:*", "@assistant-ui/tsbuildutils": "workspace:^", "@assistant-ui/tsconfig": "workspace:*", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "autoprefixer": "^10.4.20", "eslint": "^9", "eslint-config-next": "15.0.3", diff --git a/packages/react-playground/package.json b/packages/react-playground/package.json index 14ac980cb..3998b2e59 100644 --- a/packages/react-playground/package.json +++ b/packages/react-playground/package.json @@ -27,7 +27,7 @@ "build": "tsx scripts/build.mts" }, "dependencies": { - "@ai-sdk/provider": "^1.0.0", + "@ai-sdk/provider": "^1.0.1", "@radix-ui/react-avatar": "^1.1.1", "@radix-ui/react-dialog": "^1.1.2", "@radix-ui/react-dropdown-menu": "^2.1.2", @@ -39,11 +39,11 @@ "classnames": "^2.5.1", "clsx": "^2.1.1", "lucide-react": "^0.460.0", - "openai": "^4.72.0", + "openai": "^4.73.0", "prismjs": "^1.29.0", "react-simple-code-editor": "^0.14.1", "react-textarea-autosize": "^8.5.5", - "tailwind-merge": "^2.5.4", + "tailwind-merge": "^2.5.5", "zustand": "^5.0.1" }, "peerDependencies": { diff --git a/packages/react-trieve/package.json b/packages/react-trieve/package.json index a3b39411a..0a4e0bded 100644 --- a/packages/react-trieve/package.json +++ b/packages/react-trieve/package.json @@ -68,7 +68,7 @@ "@assistant-ui/tsconfig": "workspace:*", "@types/hast": "^3.0.4", "@types/mdast": "^4.0.4", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "autoprefixer": "^10.4.20", "eslint": "^9", "eslint-config-next": "15.0.3", diff --git a/packages/react/package.json b/packages/react/package.json index 4db42f658..003bd5c9f 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -68,7 +68,7 @@ "build": "tsx scripts/build.mts" }, "dependencies": { - "@ai-sdk/provider": "^1.0.0", + "@ai-sdk/provider": "^1.0.1", "@radix-ui/primitive": "^1.1.0", "@radix-ui/react-avatar": "^1.1.1", "@radix-ui/react-compose-refs": "^1.1.0", @@ -114,7 +114,7 @@ "@assistant-ui/tsbuildutils": "workspace:^", "@assistant-ui/tsconfig": "workspace:*", "@types/json-schema": "^7.0.15", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "autoprefixer": "^10.4.20", "esbuild-plugin-file-path-extensions": "^2.1.3", "eslint": "^9", diff --git a/packages/tool-ui-weather/package.json b/packages/tool-ui-weather/package.json index 94258282d..d6f7baad5 100644 --- a/packages/tool-ui-weather/package.json +++ b/packages/tool-ui-weather/package.json @@ -37,7 +37,7 @@ }, "devDependencies": { "@assistant-ui/tsconfig": "workspace:*", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "eslint": "^9", "eslint-config-next": "15.0.3", "tsup": "8.3.5", diff --git a/packages/tsbuildutils/package.json b/packages/tsbuildutils/package.json index 5ef6fa597..0621d514d 100644 --- a/packages/tsbuildutils/package.json +++ b/packages/tsbuildutils/package.json @@ -11,11 +11,11 @@ "postcss": "^8.4.49", "postcss-js": "^4.0.1", "tsup": "8.3.5", - "typescript": "^5.6.3" + "typescript": "^5.7.2" }, "devDependencies": { "@types/cross-spawn": "^6.0.6", - "@types/node": "^22.9.1", + "@types/node": "^22.9.3", "@types/postcss-js": "^4.0.4" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bdf03b335..0b7fb6dfb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: .: devDependencies: '@changesets/cli': - specifier: ^2.27.9 - version: 2.27.9 + specifier: ^2.27.10 + version: 2.27.10 eslint: specifier: ^9 version: 9.15.0(jiti@1.21.6) @@ -24,17 +24,17 @@ importers: specifier: ^0.6.9 version: 0.6.9(prettier@3.3.3) turbo: - specifier: ^2.3.0 - version: 2.3.0 + specifier: ^2.3.1 + version: 2.3.1 apps/docs: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@ai-sdk/provider': - specifier: ^1.0.0 - version: 1.0.0 + specifier: ^1.0.1 + version: 1.0.1 '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -55,7 +55,7 @@ importers: version: link:../../packages/tsconfig '@langchain/core': specifier: ^0.3.18 - version: 0.3.18(openai@4.72.0(zod@3.23.8)) + version: 0.3.18(openai@4.73.0(zod@3.23.8)) '@langchain/langgraph-sdk': specifier: ^0.0.26 version: 0.0.26 @@ -84,8 +84,8 @@ importers: specifier: ^1.23.1 version: 1.23.1 ai: - specifier: ^4.0.1 - version: 4.0.1(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + specifier: ^4.0.3 + version: 4.0.3(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -103,7 +103,7 @@ importers: version: 11.1.1(acorn@8.14.0)(fumadocs-core@14.1.0(@types/react@18.3.12)(algoliasearch@4.24.0)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)) fumadocs-twoslash: specifier: ^2.0.1 - version: 2.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(fumadocs-ui@14.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(shiki@1.23.1)(typescript@5.6.3) + version: 2.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(fumadocs-ui@14.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(shiki@1.23.1)(typescript@5.7.2) fumadocs-ui: specifier: 14.1.0 version: 14.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) @@ -117,8 +117,8 @@ importers: specifier: 15.0.3 version: 15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) openai: - specifier: ^4.72.0 - version: 4.72.0(zod@3.23.8) + specifier: ^4.73.0 + version: 4.73.0(zod@3.23.8) react: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106 @@ -132,8 +132,8 @@ importers: specifier: ^4.0.0 version: 4.0.0 tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -151,8 +151,8 @@ importers: specifier: ^2.0.13 version: 2.0.13 '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -167,7 +167,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8.4.49 version: 8.4.49 @@ -181,14 +181,14 @@ importers: specifier: ^4.19.2 version: 4.19.2 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 apps/registry: devDependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -217,8 +217,8 @@ importers: specifier: ^1.1.4 version: 1.1.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -259,8 +259,8 @@ importers: specifier: ^6.0.1 version: 6.0.1 tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss: specifier: ^3.4.15 version: 3.4.15 @@ -271,8 +271,8 @@ importers: specifier: ^4.19.2 version: 4.19.2 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 zod: specifier: ^3.23.8 version: 3.23.8 @@ -280,17 +280,17 @@ importers: examples/local-ollama: dependencies: '@assistant-ui/react': - specifier: ^0.7.5 + specifier: ^0.7.7 version: link:../../packages/react '@assistant-ui/react-markdown': - specifier: ^0.7.1 + specifier: ^0.7.2 version: link:../../packages/react-markdown next: specifier: 15.0.3 version: 15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) ollama-ai-provider: - specifier: ^0.16.1 - version: 0.16.1(zod@3.23.8) + specifier: ^1.0.0 + version: 1.0.0(zod@3.23.8) react: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106 @@ -306,7 +306,7 @@ importers: devDependencies: '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -318,7 +318,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -327,13 +327,13 @@ importers: version: 3.4.15 typescript: specifier: ^5 - version: 5.6.3 + version: 5.7.2 examples/search-agent-for-e-commerce: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -353,8 +353,8 @@ importers: specifier: ^1.1.4 version: 1.1.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) ai: - specifier: ^4.0.1 - version: 4.0.1(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + specifier: ^4.0.3 + version: 4.0.3(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -362,11 +362,11 @@ importers: specifier: ^2.1.1 version: 2.1.1 embla-carousel-autoplay: - specifier: ^8.4.0 - version: 8.4.0(embla-carousel@8.4.0) + specifier: ^8.5.1 + version: 8.5.1(embla-carousel@8.5.1) embla-carousel-react: - specifier: ^8.4.0 - version: 8.4.0(react@19.0.0-rc-66855b96-20241106) + specifier: ^8.5.1 + version: 8.5.1(react@19.0.0-rc-66855b96-20241106) lucide-react: specifier: ^0.460.0 version: 0.460.0(react@19.0.0-rc-66855b96-20241106) @@ -383,8 +383,8 @@ importers: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -396,8 +396,8 @@ importers: specifier: workspace:* version: link:../../packages/tsconfig '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -409,7 +409,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8.4.49 version: 8.4.49 @@ -417,16 +417,16 @@ importers: specifier: ^3.4.15 version: 3.4.15 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/with-external-store: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': - specifier: ^0.7.5 + specifier: ^0.7.7 version: link:../../packages/react next: specifier: 15.0.3 @@ -446,7 +446,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -458,7 +458,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -467,13 +467,13 @@ importers: version: 3.4.15 typescript: specifier: ^5 - version: 5.6.3 + version: 5.7.2 examples/with-ffmpeg: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -538,8 +538,8 @@ importers: specifier: ^2.1.7 version: 2.1.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -558,7 +558,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -570,7 +570,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -578,14 +578,14 @@ importers: specifier: ^3.4.15 version: 3.4.15 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/with-inline-suggestions: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -602,8 +602,8 @@ importers: specifier: ^1.1.4 version: 1.1.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) ai: - specifier: ^4.0.1 - version: 4.0.1(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + specifier: ^4.0.3 + version: 4.0.3(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -623,8 +623,8 @@ importers: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -634,7 +634,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -646,7 +646,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -655,7 +655,7 @@ importers: version: 3.4.15 typescript: specifier: ^5 - version: 5.6.3 + version: 5.7.2 examples/with-langgraph: dependencies: @@ -696,8 +696,8 @@ importers: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -710,7 +710,7 @@ importers: version: 3.0.6 '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -722,7 +722,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -730,14 +730,14 @@ importers: specifier: ^3.4.15 version: 3.4.15 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/with-openai-assistants: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -748,8 +748,8 @@ importers: specifier: ^1.1.1 version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) ai: - specifier: ^4.0.1 - version: 4.0.1(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + specifier: ^4.0.3 + version: 4.0.3(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -763,8 +763,8 @@ importers: specifier: 15.0.3 version: 15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) openai: - specifier: ^4.72.0 - version: 4.72.0(zod@3.23.8) + specifier: ^4.73.0 + version: 4.73.0(zod@3.23.8) react: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106 @@ -772,8 +772,8 @@ importers: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -783,7 +783,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -795,7 +795,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -804,13 +804,13 @@ importers: version: 3.4.15 typescript: specifier: ^5 - version: 5.6.3 + version: 5.7.2 examples/with-playground: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -841,7 +841,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -853,7 +853,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -862,13 +862,13 @@ importers: version: 3.4.15 typescript: specifier: ^5 - version: 5.6.3 + version: 5.7.2 examples/with-react-hook-form: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -927,8 +927,8 @@ importers: specifier: ^2.1.7 version: 2.1.7(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -947,7 +947,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -959,7 +959,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -967,8 +967,8 @@ importers: specifier: ^3.4.15 version: 3.4.15 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/with-trieve: dependencies: @@ -994,8 +994,8 @@ importers: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -1008,7 +1008,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -1020,7 +1020,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -1028,14 +1028,14 @@ importers: specifier: ^3.4.15 version: 3.4.15 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 examples/with-vercel-ai-rsc: dependencies: '@ai-sdk/openai': - specifier: ^1.0.1 - version: 1.0.1(zod@3.23.8) + specifier: ^1.0.4 + version: 1.0.4(zod@3.23.8) '@assistant-ui/react': specifier: workspace:* version: link:../../packages/react @@ -1055,8 +1055,8 @@ importers: specifier: ^1.1.4 version: 1.1.4(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) ai: - specifier: 4.0.1 - version: 4.0.1(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + specifier: 4.0.3 + version: 4.0.3(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -1079,8 +1079,8 @@ importers: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.4.15) @@ -1093,7 +1093,7 @@ importers: version: link:../../packages/tsconfig '@types/node': specifier: ^22 - version: 22.9.1 + version: 22.9.3 '@types/react': specifier: ^18 version: 18.3.12 @@ -1105,7 +1105,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8 version: 8.4.49 @@ -1113,8 +1113,8 @@ importers: specifier: ^3.4.15 version: 3.4.15 typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 packages/assistant-stream: dependencies: @@ -1129,17 +1129,17 @@ importers: specifier: workspace:* version: link:../tsconfig ai: - specifier: ^4.0.1 - version: 4.0.1(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + specifier: ^4.0.3 + version: 4.0.3(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) eslint: specifier: ^9 version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) tsx: specifier: ^4.19.2 version: 4.19.2 @@ -1163,14 +1163,14 @@ importers: specifier: ^6.0.6 version: 6.0.6 '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) packages/create-assistant-ui: dependencies: @@ -1182,7 +1182,7 @@ importers: version: 12.1.0 cosmiconfig: specifier: ^9.0.0 - version: 9.0.0(typescript@5.6.3) + version: 9.0.0(typescript@5.7.2) cross-spawn: specifier: ^7.0.6 version: 7.0.6 @@ -1200,17 +1200,17 @@ importers: specifier: ^6.0.6 version: 6.0.6 '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) packages/react: dependencies: '@ai-sdk/provider': - specifier: ^1.0.0 - version: 1.0.0 + specifier: ^1.0.1 + version: 1.0.1 '@radix-ui/primitive': specifier: ^1.1.0 version: 1.1.0 @@ -1300,8 +1300,8 @@ importers: specifier: ^7.0.15 version: 7.0.15 '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 autoprefixer: specifier: ^10.4.20 version: 10.4.20(postcss@8.4.49) @@ -1313,7 +1313,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8.4.49 version: 8.4.49 @@ -1331,7 +1331,7 @@ importers: version: 1.0.7(tailwindcss@3.4.15) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) tsx: specifier: ^4.19.2 version: 4.19.2 @@ -1340,10 +1340,10 @@ importers: dependencies: '@ai-sdk/react': specifier: '*' - version: 1.0.0(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + version: 1.0.2(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) '@ai-sdk/ui-utils': specifier: '*' - version: 1.0.0(zod@3.23.8) + version: 1.0.2(zod@3.23.8) '@radix-ui/react-use-callback-ref': specifier: ^1.1.0 version: 1.1.0(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -1368,10 +1368,10 @@ importers: version: link:../tsconfig eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) packages/react-hook-form: dependencies: @@ -1396,10 +1396,10 @@ importers: version: link:../tsconfig eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) packages/react-langgraph: dependencies: @@ -1421,10 +1421,10 @@ importers: version: link:../tsconfig eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) packages/react-markdown: dependencies: @@ -1460,8 +1460,8 @@ importers: specifier: workspace:* version: link:../tsconfig '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 autoprefixer: specifier: ^10.4.20 version: 10.4.20(postcss@8.4.49) @@ -1470,7 +1470,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8.4.49 version: 8.4.49 @@ -1491,7 +1491,7 @@ importers: version: 1.0.7(tailwindcss@3.4.15) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) tsx: specifier: ^4.19.2 version: 4.19.2 @@ -1499,8 +1499,8 @@ importers: packages/react-playground: dependencies: '@ai-sdk/provider': - specifier: ^1.0.0 - version: 1.0.0 + specifier: ^1.0.1 + version: 1.0.1 '@radix-ui/react-avatar': specifier: ^1.1.1 version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) @@ -1538,8 +1538,8 @@ importers: specifier: ^0.460.0 version: 0.460.0(react@19.0.0-rc-66855b96-20241106) openai: - specifier: ^4.72.0 - version: 4.72.0(zod@3.23.8) + specifier: ^4.73.0 + version: 4.73.0(zod@3.23.8) prismjs: specifier: ^1.29.0 version: 1.29.0 @@ -1550,8 +1550,8 @@ importers: specifier: ^8.5.5 version: 8.5.5(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) tailwind-merge: - specifier: ^2.5.4 - version: 2.5.4 + specifier: ^2.5.5 + version: 2.5.5 zustand: specifier: ^5.0.1 version: 5.0.1(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)(use-sync-external-store@1.2.2(react@19.0.0-rc-66855b96-20241106)) @@ -1570,7 +1570,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) react: specifier: 19.0.0-rc-66855b96-20241106 version: 19.0.0-rc-66855b96-20241106 @@ -1585,7 +1585,7 @@ importers: version: 1.0.7(tailwindcss@3.4.15) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) tsx: specifier: ^4.19.2 version: 4.19.2 @@ -1616,10 +1616,10 @@ importers: version: link:../tsconfig eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) packages/react-trieve: dependencies: @@ -1682,8 +1682,8 @@ importers: specifier: ^4.0.4 version: 4.0.4 '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 autoprefixer: specifier: ^10.4.20 version: 10.4.20(postcss@8.4.49) @@ -1692,7 +1692,7 @@ importers: version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) postcss: specifier: ^8.4.49 version: 8.4.49 @@ -1713,7 +1713,7 @@ importers: version: 1.0.7(tailwindcss@3.4.15) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) tsx: specifier: ^4.19.2 version: 4.19.2 @@ -1732,7 +1732,7 @@ importers: version: link:../tsconfig eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) packages/tool-ui-weather: dependencies: @@ -1747,17 +1747,17 @@ importers: specifier: workspace:* version: link:../tsconfig '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 eslint: specifier: ^9 version: 9.15.0(jiti@1.21.6) eslint-config-next: specifier: 15.0.3 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) tsx: specifier: ^4.19.2 version: 4.19.2 @@ -1784,17 +1784,17 @@ importers: version: 4.0.1(postcss@8.4.49) tsup: specifier: 8.3.5 - version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1) + version: 8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1) typescript: - specifier: ^5.6.3 - version: 5.6.3 + specifier: ^5.7.2 + version: 5.7.2 devDependencies: '@types/cross-spawn': specifier: ^6.0.6 version: 6.0.6 '@types/node': - specifier: ^22.9.1 - version: 22.9.1 + specifier: ^22.9.3 + version: 22.9.3 '@types/postcss-js': specifier: ^4.0.4 version: 4.0.4 @@ -1807,14 +1807,14 @@ importers: packages: - '@ai-sdk/openai@1.0.1': - resolution: {integrity: sha512-snZge8457afWlosVNUn+BG60MrxAPOOm3zmIMxJZih8tneNSiRbTVCbSzAtq/9vsnOHDe5RR83PRl85juOYEnA==} + '@ai-sdk/openai@1.0.4': + resolution: {integrity: sha512-3QpgKmkCeJvUdeu3sVRL/ZKWzg8biO0tN2owQW/lFV95o8qskE3bN95R9H136Mmu0124/C28aY6ScxO93nUrtg==} engines: {node: '>=18'} peerDependencies: zod: ^3.0.0 - '@ai-sdk/provider-utils@1.0.22': - resolution: {integrity: sha512-YHK2rpj++wnLVc9vPGzGFP3Pjeld2MwhKinetA0zKXOoHAT/Jit5O8kZsxcSlJPu9wvcGT1UGZEjZrtO7PfFOQ==} + '@ai-sdk/provider-utils@2.0.2': + resolution: {integrity: sha512-IAvhKhdlXqiSmvx/D4uNlFYCl8dWT+M9K+IuEcSgnE2Aj27GWu8sDIpAf4r4Voc+wOUkOECVKQhFo8g9pozdjA==} engines: {node: '>=18'} peerDependencies: zod: ^3.0.0 @@ -1822,25 +1822,12 @@ packages: zod: optional: true - '@ai-sdk/provider-utils@2.0.0': - resolution: {integrity: sha512-uITgVJByhtzuQU2ZW+2CidWRmQqTUTp6KADevy+4aRnmILZxY2LCt+UZ/ZtjJqq0MffwkuQPPY21ExmFAQ6kKA==} + '@ai-sdk/provider@1.0.1': + resolution: {integrity: sha512-mV+3iNDkzUsZ0pR2jG0sVzU6xtQY5DtSCBy3JFycLp6PwjyLw/iodfL3MwdmMCRJWgs3dadcHejRnMvF9nGTBg==} engines: {node: '>=18'} - peerDependencies: - zod: ^3.0.0 - peerDependenciesMeta: - zod: - optional: true - '@ai-sdk/provider@0.0.26': - resolution: {integrity: sha512-dQkfBDs2lTYpKM8389oopPdQgIU007GQyCbuPPrV+K6MtSII3HBfE0stUIMXUb44L+LK1t6GXPP7wjSzjO6uKg==} - engines: {node: '>=18'} - - '@ai-sdk/provider@1.0.0': - resolution: {integrity: sha512-Sj29AzooJ7SYvhPd+AAWt/E7j63E9+AzRnoMHUaJPRYzOd/WDrVNxxv85prF9gDcQ7XPVlSk9j6oAZV9/DXYpA==} - engines: {node: '>=18'} - - '@ai-sdk/react@1.0.0': - resolution: {integrity: sha512-BDrZqQA07Btg64JCuhFvBgYV+tt2B8cXINzEqWknGoxqcwgdE8wSLG2gkXoLzyC2Rnj7oj0HHpOhLUxDCmoKZg==} + '@ai-sdk/react@1.0.2': + resolution: {integrity: sha512-VQfQ6PMiUz4hDquAfjih0DIw4gsQvRFk91SFg2xWirDO4swMZByJzqGGcILPQKbww5ndCo48iZj9S1mLKZo5Dg==} engines: {node: '>=18'} peerDependencies: react: ^18 || ^19 || ^19.0.0-rc @@ -1851,8 +1838,8 @@ packages: zod: optional: true - '@ai-sdk/ui-utils@1.0.0': - resolution: {integrity: sha512-oXBDIM/0niWeTWyw77RVl505dNxBUDLLple7bTsqo2d3i1UKwGlzBUX8XqZsh7GbY7I6V05nlG0Y8iGlWxv1Aw==} + '@ai-sdk/ui-utils@1.0.2': + resolution: {integrity: sha512-hHrUdeThGHu/rsGZBWQ9PjrAU9Htxgbo9MFyR5B/aWoNbBeXn1HLMY1+uMEnXL5pRPlmyVRjgIavWg7UgeNDOw==} engines: {node: '>=18'} peerDependencies: zod: ^3.0.0 @@ -1921,21 +1908,21 @@ packages: resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} - '@changesets/apply-release-plan@7.0.5': - resolution: {integrity: sha512-1cWCk+ZshEkSVEZrm2fSj1Gz8sYvxgUL4Q78+1ZZqeqfuevPTPk033/yUZ3df8BKMohkqqHfzj0HOOrG0KtXTw==} + '@changesets/apply-release-plan@7.0.6': + resolution: {integrity: sha512-TKhVLtiwtQOgMAC0fCJfmv93faiViKSDqr8oMEqrnNs99gtSC1sZh/aEMS9a+dseU1ESZRCK+ofLgGY7o0fw/Q==} - '@changesets/assemble-release-plan@6.0.4': - resolution: {integrity: sha512-nqICnvmrwWj4w2x0fOhVj2QEGdlUuwVAwESrUo5HLzWMI1rE5SWfsr9ln+rDqWB6RQ2ZyaMZHUcU7/IRaUJS+Q==} + '@changesets/assemble-release-plan@6.0.5': + resolution: {integrity: sha512-IgvBWLNKZd6k4t72MBTBK3nkygi0j3t3zdC1zrfusYo0KpdsvnDjrMM9vPnTCLCMlfNs55jRL4gIMybxa64FCQ==} '@changesets/changelog-git@0.2.0': resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - '@changesets/cli@2.27.9': - resolution: {integrity: sha512-q42a/ZbDnxPpCb5Wkm6tMVIxgeI9C/bexntzTeCFBrQEdpisQqk8kCHllYZMDjYtEc1ZzumbMJAG8H0Z4rdvjg==} + '@changesets/cli@2.27.10': + resolution: {integrity: sha512-PfeXjvs9OfQJV8QSFFHjwHX3QnUL9elPEQ47SgkiwzLgtKGyuikWjrdM+lO9MXzOE22FO9jEGkcs4b+B6D6X0Q==} hasBin: true - '@changesets/config@3.0.3': - resolution: {integrity: sha512-vqgQZMyIcuIpw9nqFIpTSNyc/wgm/Lu1zKN5vECy74u95Qx/Wa9g27HdgO4NkVAaq+BGA8wUc/qvbvVNs93n6A==} + '@changesets/config@3.0.4': + resolution: {integrity: sha512-+DiIwtEBpvvv1z30f8bbOsUQGuccnZl9KRKMM/LxUHuDu5oEjmN+bJQ1RIBKNJjfYMQn8RZzoPiX0UgPaLQyXw==} '@changesets/errors@0.2.0': resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} @@ -1943,14 +1930,14 @@ packages: '@changesets/get-dependents-graph@2.1.2': resolution: {integrity: sha512-sgcHRkiBY9i4zWYBwlVyAjEM9sAzs4wYVwJUdnbDLnVG3QwAaia1Mk5P8M7kraTOZN+vBET7n8KyB0YXCbFRLQ==} - '@changesets/get-release-plan@4.0.4': - resolution: {integrity: sha512-SicG/S67JmPTrdcc9Vpu0wSQt7IiuN0dc8iR5VScnnTVPfIaLvKmEGRvIaF0kcn8u5ZqLbormZNTO77bCEvyWw==} + '@changesets/get-release-plan@4.0.5': + resolution: {integrity: sha512-E6wW7JoSMcctdVakut0UB76FrrN3KIeJSXvB+DHMFo99CnC3ZVnNYDCVNClMlqAhYGmLmAj77QfApaI3ca4Fkw==} '@changesets/get-version-range-type@0.4.0': resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - '@changesets/git@3.0.1': - resolution: {integrity: sha512-pdgHcYBLCPcLd82aRcuO0kxCDbw/yISlOtkmwmE8Odo1L6hSiZrBOsRl84eYG7DRCab/iHnOkWqExqc4wxk2LQ==} + '@changesets/git@3.0.2': + resolution: {integrity: sha512-r1/Kju9Y8OxRRdvna+nxpQIsMsRQn9dhhAZt94FLDeu0Hij2hnOozW8iqnHBgvu+KdnJppCveQwK4odwfw/aWQ==} '@changesets/logger@0.1.1': resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} @@ -1961,8 +1948,8 @@ packages: '@changesets/pre@2.0.1': resolution: {integrity: sha512-vvBJ/If4jKM4tPz9JdY2kGOgWmCowUYOi5Ycv8dyLnEE8FgpYYUo1mgJZxcdtGGP3aG8rAQulGLyyXGSLkIMTQ==} - '@changesets/read@0.6.1': - resolution: {integrity: sha512-jYMbyXQk3nwP25nRzQQGa1nKLY0KfoOV7VLgwucI0bUO8t8ZLCr6LZmgjXsiKuRDc+5A6doKPr9w2d+FEJ55zQ==} + '@changesets/read@0.6.2': + resolution: {integrity: sha512-wjfQpJvryY3zD61p8jR87mJdyx2FIhEcdXhKUqkja87toMrP/3jtg/Yg29upN+N4Ckf525/uvV7a4tzBlpk6gg==} '@changesets/should-skip-package@0.1.1': resolution: {integrity: sha512-H9LjLbF6mMHLtJIc/eHR9Na+MifJ3VxtgP/Y+XLn4BF7tDTEN1HNYtH6QMcjP1uxp9sjaFYmW8xqloaCi/ckTg==} @@ -2630,8 +2617,8 @@ packages: resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} engines: {node: '>=8.0.0'} - '@orama/orama@3.0.1': - resolution: {integrity: sha512-18hl0MiCLmumODHjrLzSdTb1Ny3Dh8tn44jwgx0LksCdvVAsr3jQvfr+hwrE7bVkap0wPELb/dnuJjvupKxheQ==} + '@orama/orama@3.0.2': + resolution: {integrity: sha512-1dfxup89K2DB2bbfx9rXyr/IAvhCKbH79lZCXVh5HWvdJ9g0VAvPIs3+UzjiyOdycEHYTbYundCTN6+Ygj3z4w==} engines: {node: '>= 16.0.0'} '@pkgjs/parseargs@0.11.0': @@ -3254,93 +3241,93 @@ packages: peerDependencies: react: '>=16.8' - '@rollup/rollup-android-arm-eabi@4.27.3': - resolution: {integrity: sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==} + '@rollup/rollup-android-arm-eabi@4.27.4': + resolution: {integrity: sha512-2Y3JT6f5MrQkICUyRVCw4oa0sutfAsgaSsb0Lmmy1Wi2y7X5vT9Euqw4gOsCyy0YfKURBg35nhUKZS4mDcfULw==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.27.3': - resolution: {integrity: sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==} + '@rollup/rollup-android-arm64@4.27.4': + resolution: {integrity: sha512-wzKRQXISyi9UdCVRqEd0H4cMpzvHYt1f/C3CoIjES6cG++RHKhrBj2+29nPF0IB5kpy9MS71vs07fvrNGAl/iA==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.27.3': - resolution: {integrity: sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==} + '@rollup/rollup-darwin-arm64@4.27.4': + resolution: {integrity: sha512-PlNiRQapift4LNS8DPUHuDX/IdXiLjf8mc5vdEmUR0fF/pyy2qWwzdLjB+iZquGr8LuN4LnUoSEvKRwjSVYz3Q==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.27.3': - resolution: {integrity: sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==} + '@rollup/rollup-darwin-x64@4.27.4': + resolution: {integrity: sha512-o9bH2dbdgBDJaXWJCDTNDYa171ACUdzpxSZt+u/AAeQ20Nk5x+IhA+zsGmrQtpkLiumRJEYef68gcpn2ooXhSQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.27.3': - resolution: {integrity: sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==} + '@rollup/rollup-freebsd-arm64@4.27.4': + resolution: {integrity: sha512-NBI2/i2hT9Q+HySSHTBh52da7isru4aAAo6qC3I7QFVsuhxi2gM8t/EI9EVcILiHLj1vfi+VGGPaLOUENn7pmw==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.27.3': - resolution: {integrity: sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==} + '@rollup/rollup-freebsd-x64@4.27.4': + resolution: {integrity: sha512-wYcC5ycW2zvqtDYrE7deary2P2UFmSh85PUpAx+dwTCO9uw3sgzD6Gv9n5X4vLaQKsrfTSZZ7Z7uynQozPVvWA==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.27.3': - resolution: {integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==} + '@rollup/rollup-linux-arm-gnueabihf@4.27.4': + resolution: {integrity: sha512-9OwUnK/xKw6DyRlgx8UizeqRFOfi9mf5TYCw1uolDaJSbUmBxP85DE6T4ouCMoN6pXw8ZoTeZCSEfSaYo+/s1w==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.27.3': - resolution: {integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==} + '@rollup/rollup-linux-arm-musleabihf@4.27.4': + resolution: {integrity: sha512-Vgdo4fpuphS9V24WOV+KwkCVJ72u7idTgQaBoLRD0UxBAWTF9GWurJO9YD9yh00BzbkhpeXtm6na+MvJU7Z73A==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.27.3': - resolution: {integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==} + '@rollup/rollup-linux-arm64-gnu@4.27.4': + resolution: {integrity: sha512-pleyNgyd1kkBkw2kOqlBx+0atfIIkkExOTiifoODo6qKDSpnc6WzUY5RhHdmTdIJXBdSnh6JknnYTtmQyobrVg==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.27.3': - resolution: {integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==} + '@rollup/rollup-linux-arm64-musl@4.27.4': + resolution: {integrity: sha512-caluiUXvUuVyCHr5DxL8ohaaFFzPGmgmMvwmqAITMpV/Q+tPoaHZ/PWa3t8B2WyoRcIIuu1hkaW5KkeTDNSnMA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.27.3': - resolution: {integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==} + '@rollup/rollup-linux-powerpc64le-gnu@4.27.4': + resolution: {integrity: sha512-FScrpHrO60hARyHh7s1zHE97u0KlT/RECzCKAdmI+LEoC1eDh/RDji9JgFqyO+wPDb86Oa/sXkily1+oi4FzJQ==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.27.3': - resolution: {integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==} + '@rollup/rollup-linux-riscv64-gnu@4.27.4': + resolution: {integrity: sha512-qyyprhyGb7+RBfMPeww9FlHwKkCXdKHeGgSqmIXw9VSUtvyFZ6WZRtnxgbuz76FK7LyoN8t/eINRbPUcvXB5fw==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.27.3': - resolution: {integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==} + '@rollup/rollup-linux-s390x-gnu@4.27.4': + resolution: {integrity: sha512-PFz+y2kb6tbh7m3A7nA9++eInGcDVZUACulf/KzDtovvdTizHpZaJty7Gp0lFwSQcrnebHOqxF1MaKZd7psVRg==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.27.3': - resolution: {integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==} + '@rollup/rollup-linux-x64-gnu@4.27.4': + resolution: {integrity: sha512-Ni8mMtfo+o/G7DVtweXXV/Ol2TFf63KYjTtoZ5f078AUgJTmaIJnj4JFU7TK/9SVWTaSJGxPi5zMDgK4w+Ez7Q==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.27.3': - resolution: {integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==} + '@rollup/rollup-linux-x64-musl@4.27.4': + resolution: {integrity: sha512-5AeeAF1PB9TUzD+3cROzFTnAJAcVUGLuR8ng0E0WXGkYhp6RD6L+6szYVX+64Rs0r72019KHZS1ka1q+zU/wUw==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.27.3': - resolution: {integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==} + '@rollup/rollup-win32-arm64-msvc@4.27.4': + resolution: {integrity: sha512-yOpVsA4K5qVwu2CaS3hHxluWIK5HQTjNV4tWjQXluMiiiu4pJj4BN98CvxohNCpcjMeTXk/ZMJBRbgRg8HBB6A==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.27.3': - resolution: {integrity: sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==} + '@rollup/rollup-win32-ia32-msvc@4.27.4': + resolution: {integrity: sha512-KtwEJOaHAVJlxV92rNYiG9JQwQAdhBlrjNRp7P9L8Cb4Rer3in+0A+IPhJC9y68WAi9H0sX4AiG2NTsVlmqJeQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.27.3': - resolution: {integrity: sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==} + '@rollup/rollup-win32-x64-msvc@4.27.4': + resolution: {integrity: sha512-3j4jx1TppORdTAoBJRd+/wJRGCPC0ETWkXOecJ6PPZLj6SptXkrXcNqdj0oclbKML6FkQltdz7bBA3rUSirZug==} cpu: [x64] os: [win32] @@ -3450,11 +3437,11 @@ packages: '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@18.19.64': - resolution: {integrity: sha512-955mDqvO2vFf/oL7V3WiUtiz+BugyX8uVbaT2H8oj3+8dRyH2FLiNdowe7eNqRM7IOIZvzDH76EoAT+gwm6aIQ==} + '@types/node@18.19.65': + resolution: {integrity: sha512-Ay5BZuO1UkTmVHzZJNvZKw/E+iB3GQABb6kijEz89w2JrfhNA+M/ebp18pfz9Gqe9ywhMC8AA8yC01lZq48J+Q==} - '@types/node@22.9.1': - resolution: {integrity: sha512-p8Yy/8sw1caA8CdRIQBG5tiLHmxtQKObCijiAa9Ez+d4+PRffM4054xbju0msf+cvhJpnFEeNjxmVT/0ipktrg==} + '@types/node@22.9.3': + resolution: {integrity: sha512-F3u1fs/fce3FFk+DAxbxc78DF8x0cY09RRL8GnXLmkJ1jvx3TtPdWoTT5/NiYfI5ASqXBmfqJi9dZ3gxMx4lzw==} '@types/postcss-js@4.0.4': resolution: {integrity: sha512-j5+GMZVIPCJpRTwI/mO64mCzv7X+zAEq3JP0EV2lo/BrLWHAohEubUJimIAY23rH27+wKce0fXUYjAdBoqlaYw==} @@ -3574,8 +3561,8 @@ packages: resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} engines: {node: '>= 8.0.0'} - ai@4.0.1: - resolution: {integrity: sha512-VfkPepgdF1AXu/sirYB2lnDrAXPuUrkCQOGAGTgeb7xpctR2OkxNXxrWx+Weu4CCYADQsW30tOxlHs8sRmKeMw==} + ai@4.0.3: + resolution: {integrity: sha512-nx5cNMldOQ72hwxL60NLtRnsmQd5Bo887Wznvxt8F5xnmjdeXRpz4ixp+0xGA88X7wiCn6c+xrhGEb9fesi/Tw==} engines: {node: '>=18'} peerDependencies: react: ^18 || ^19 || ^19.0.0-rc @@ -3767,8 +3754,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001680: - resolution: {integrity: sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==} + caniuse-lite@1.0.30001684: + resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==} ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -3905,9 +3892,6 @@ packages: typescript: optional: true - cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} - cross-spawn@7.0.6: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} @@ -4016,26 +4000,26 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.63: - resolution: {integrity: sha512-ddeXKuY9BHo/mw145axlyWjlJ1UBt4WK3AlvkT7W2AbqfRQoacVoRUCF6wL3uIx/8wT9oLKXzI+rFqHHscByaA==} + electron-to-chromium@1.5.64: + resolution: {integrity: sha512-IXEuxU+5ClW2IGEYFC2T7szbyVgehupCWQe5GNh+H065CD6U6IFN0s4KeAMFGNmQolRU4IV7zGBWSYMmZ8uuqQ==} - embla-carousel-autoplay@8.4.0: - resolution: {integrity: sha512-AJHXrnaY+Tf4tb/+oItmJSpz4P0WvS62GrW5Z4iFY3zsH0mkKcijzd04LIkj0P4DkTazIBEuXple+nUVmuMsrQ==} + embla-carousel-autoplay@8.5.1: + resolution: {integrity: sha512-FnZklFpePfp8wbj177UwVaGFehgs+ASVcJvYLWTtHuYKURynCc3IdDn2qrn0E5Qpa3g9yeGwCS4p8QkrZmO8xg==} peerDependencies: - embla-carousel: 8.4.0 + embla-carousel: 8.5.1 - embla-carousel-react@8.4.0: - resolution: {integrity: sha512-r5UszqLnIIhfXfGzTlfEAYZ310H4gIiLvBsNQ9dnHY6T2ooMsZs+k5vpJAYjkFtUSaQJ1xZxSGwIV6+IoA8QEw==} + embla-carousel-react@8.5.1: + resolution: {integrity: sha512-z9Y0K84BJvhChXgqn2CFYbfEi6AwEr+FFVVKm/MqbTQ2zIzO1VQri6w67LcfpVF0AjbhwVMywDZqY4alYkjW5w==} peerDependencies: react: ^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc - embla-carousel-reactive-utils@8.4.0: - resolution: {integrity: sha512-yi/2paSYQqMGgh983Sj8G4+zt4bhABC1pzN4P4Vmc7UhSxqo9I7r15tR7s3/zS0JEl3orRSw7TxX92IZqj5NXA==} + embla-carousel-reactive-utils@8.5.1: + resolution: {integrity: sha512-n7VSoGIiiDIc4MfXF3ZRTO59KDp820QDuyBDGlt5/65+lumPHxX2JLz0EZ23hZ4eg4vZGUXwMkYv02fw2JVo/A==} peerDependencies: - embla-carousel: 8.4.0 + embla-carousel: 8.5.1 - embla-carousel@8.4.0: - resolution: {integrity: sha512-sUzm4DGGsdZCom7LEO38Uu6C7oQoFfPorKDf/f7j2EeRCMhHSOt3CvF+pHCaI6N+x5Y8/tfLueJ0WZlgUREnew==} + embla-carousel@8.5.1: + resolution: {integrity: sha512-JUb5+FOHobSiWQ2EJNaueCNT/cQU9L6XWBbWmorWPQT9bkbk+fhsuLr8wWrzXKagO3oWszBO7MSx+GfaRk4E6A==} emoji-regex-xs@1.0.0: resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} @@ -4280,10 +4264,6 @@ packages: eventemitter3@4.0.7: resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} - eventsource-parser@1.1.2: - resolution: {integrity: sha512-v0eOBUbiaFojBu2s2NPBfYUoRR9GjcDNvCXVaqEf5vVfpIAh9f8RCo4vXTP8c63QRKCFwoLpMpTdPwwhEKVgzA==} - engines: {node: '>=14.18'} - eventsource-parser@3.0.0: resolution: {integrity: sha512-T1C0XCUimhxVQzW4zFipdx0SficT651NnkR0ZSH3yQwh+mFMdLfgjABVi4YtMTtaL4s168593DaoaRLMqryavA==} engines: {node: '>=18.0.0'} @@ -4706,8 +4686,9 @@ packages: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + is-finalizationregistry@1.1.0: + resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==} + engines: {node: '>= 0.4'} is-fullwidth-code-point@3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} @@ -4884,8 +4865,8 @@ packages: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - langsmith@0.2.5: - resolution: {integrity: sha512-dA+l7ZEh1Q9Q9FcE39PUSSEMfsFo73R2V81fRo5KSlGNcypOEhoQvv6lbjyZP7MHmt3/9pPcfpuRd5Y4RbFYqQ==} + langsmith@0.2.7: + resolution: {integrity: sha512-9LFOp30cQ9K/7rzMt4USBI0SEKKhsH4l42ZERBPXOmDXnR5gYpsGFw8SZR0A6YLnc6vvoEmtr/XKel0Odq2UWw==} peerDependencies: openai: '*' peerDependenciesMeta: @@ -4958,9 +4939,6 @@ packages: resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} engines: {node: 20 || >=22} - lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - lucide-react@0.460.0: resolution: {integrity: sha512-BVtq/DykVeIvRTJvRAgCsOwaGL8Un3Bxh8MbDxMhEWlZay3T4IpEKDEpwt5KZ0KJMHzgm6jrltxlT5eXOWXDHg==} peerDependencies: @@ -5306,8 +5284,8 @@ packages: resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} engines: {node: '>= 0.4'} - ollama-ai-provider@0.16.1: - resolution: {integrity: sha512-0vSQVz5Y/LguyzfO4bi1JrrVGF/k2JvO8/uFR0wYmqDFp8KPp4+AhdENSynGBr1oRhMWOM4F1l6cv7UNDgRMjw==} + ollama-ai-provider@1.0.0: + resolution: {integrity: sha512-72FhNSjS/yav+w1jGX7K/VX0Psv9C0TA1aXk6K2sEloz542AJCYqHIUu8Jt0TWhoB98L9pBZwV8Vr89eBavyzg==} engines: {node: '>=18'} peerDependencies: zod: ^3.0.0 @@ -5318,8 +5296,8 @@ packages: oniguruma-to-es@0.4.1: resolution: {integrity: sha512-rNcEohFz095QKGRovP/yqPIKc+nP+Sjs4YTHMv33nMePGKrq/r2eu9Yh4646M5XluGJsUnmwoXuiXE69KDs+fQ==} - openai@4.72.0: - resolution: {integrity: sha512-hFqG9BWCs7L7ifrhJXw7mJXmUBr7d9N6If3J9563o0jfwVA4wFANFDDaOIWFdgDdwgCXg5emf0Q+LoLCGszQYA==} + openai@4.73.0: + resolution: {integrity: sha512-NZstV77w3CEol9KQTRBRQ15+Sw6nxVTicAULSjYO4wn9E5gw72Mtp3fAVaBFXyyVPws4241YmFG6ya4L8v03tA==} hasBin: true peerDependencies: zod: ^3.23.8 @@ -5385,8 +5363,8 @@ packages: package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - package-manager-detector@0.2.4: - resolution: {integrity: sha512-H/OUu9/zUfP89z1APcBf2X8Us0tt8dUK4lUmKqz12QNXif3DxAs1/YqjGtcutZi1zQqeNQRWr9C+EbQnnvSSFA==} + package-manager-detector@0.2.5: + resolution: {integrity: sha512-3dS7y28uua+UDbRCLBqltMBrbI+A5U2mI9YuxHRxIWYmLj3DwntEBmERYzIAQ4DMeuCUOBSak7dBHHoXKpOTYQ==} parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -5624,9 +5602,6 @@ packages: property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} - pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} @@ -5756,8 +5731,8 @@ packages: recma-stringify@1.0.0: resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} - reflect.getprototypeof@1.0.6: - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} + reflect.getprototypeof@1.0.7: + resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==} engines: {node: '>= 0.4'} refractor@3.6.0: @@ -5847,8 +5822,8 @@ packages: engines: {node: 20 || >=22} hasBin: true - rollup@4.27.3: - resolution: {integrity: sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==} + rollup@4.27.4: + resolution: {integrity: sha512-RLKxqHEMjh/RGLsDxAEsaLO3mWgyoU6x9w6n1ikAzet4B3gI2/3yP6PWY2p9QzRTh6MfEIXB3MwsOY0Iv3vNrw==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -5906,18 +5881,10 @@ packages: resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} - shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} - shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} - shebang-regex@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} - shebang-regex@3.0.0: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} @@ -5929,9 +5896,6 @@ packages: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} - signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} - signal-exit@4.1.0: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} @@ -5961,8 +5925,8 @@ packages: space-separated-tokens@2.0.2: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + spawndamnit@3.0.1: + resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==} sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} @@ -6074,8 +6038,8 @@ packages: peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 - tailwind-merge@2.5.4: - resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==} + tailwind-merge@2.5.5: + resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==} tailwindcss-animate@1.0.7: resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} @@ -6143,8 +6107,8 @@ packages: trough@2.2.0: resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - ts-api-utils@1.4.0: - resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==} + ts-api-utils@1.4.1: + resolution: {integrity: sha512-5RU2/lxTA3YUZxju61HO2U6EoZLvBLtmV2mbTvqyu4a/7s7RmJPT+1YekhMVsQhznRWk/czIwDUg+V8Q9ZuG4w==} engines: {node: '>=16'} peerDependencies: typescript: '>=4.2.0' @@ -6189,38 +6153,38 @@ packages: engines: {node: '>=18.0.0'} hasBin: true - turbo-darwin-64@2.3.0: - resolution: {integrity: sha512-pji+D49PhFItyQjf2QVoLZw2d3oRGo8gJgKyOiRzvip78Rzie74quA8XNwSg/DuzM7xx6gJ3p2/LylTTlgZXxQ==} + turbo-darwin-64@2.3.1: + resolution: {integrity: sha512-tjHfjW/Gs8Q9IO+9gPdIsSStZ8I09QYDRT/SyhFTPLnc7O2ZlxHPBVFfjUkHUjanHNYO8CpRGt+zdp1PaMCruw==} cpu: [x64] os: [darwin] - turbo-darwin-arm64@2.3.0: - resolution: {integrity: sha512-AJrGIL9BO41mwDF/IBHsNGwvtdyB911vp8f5mbNo1wG66gWTvOBg7WCtYQBvCo11XTenTfXPRSsAb7w3WAZb6w==} + turbo-darwin-arm64@2.3.1: + resolution: {integrity: sha512-At1WStnxCfrBQ4M2g6ynre8WsusGwA11okhVolBxyFUemYozDTtbZwelr+IqNggjT251vviokxOkcFzzogbiFw==} cpu: [arm64] os: [darwin] - turbo-linux-64@2.3.0: - resolution: {integrity: sha512-jZqW6vc2sPJT3M/3ZmV1Cg4ecQVPqsbHncG/RnogHpBu783KCSXIndgxvUQNm9qfgBYbZDBnP1md63O4UTElhw==} + turbo-linux-64@2.3.1: + resolution: {integrity: sha512-COwEev7s9fsxLM2eoRCyRLPj+BXvZjFIS+GxzdAubYhoSoZit8B8QGKczyDl6448xhuFEWKrpHhcR9aBuwB4ag==} cpu: [x64] os: [linux] - turbo-linux-arm64@2.3.0: - resolution: {integrity: sha512-HUbDLJlvd/hxuyCNO0BmEWYQj0TugRMvSQeG8vHJH+Lq8qOgDAe7J0K73bFNbZejZQxW3C3XEiZFB3pnpO78+A==} + turbo-linux-arm64@2.3.1: + resolution: {integrity: sha512-AP0uE15Rhxza2Jl+Q3gxdXRA92IIeFAYaufz6CMcZuGy9yZsBlLt9w6T47H6g7XQPzWuw8pzfjM1omcTKkkDpQ==} cpu: [arm64] os: [linux] - turbo-windows-64@2.3.0: - resolution: {integrity: sha512-c5rxrGNTYDWX9QeMzWLFE9frOXnKjHGEvQMp1SfldDlbZYsloX9UKs31TzUThzfTgTiz8NYuShaXJ2UvTMnV/g==} + turbo-windows-64@2.3.1: + resolution: {integrity: sha512-HDSneq0dNZYZch74c2eygq+OiJE/JYDs7OsGM0yRYVj336383xkUnxz6W2I7qiyMCQXzp4UVUDZXvZhUYcX3BA==} cpu: [x64] os: [win32] - turbo-windows-arm64@2.3.0: - resolution: {integrity: sha512-7qfUuYhfIVb1AZgs89DxhXK+zZez6O2ocmixEQ4hXZK7ytnBt5vaz2zGNJJKFNYIL5HX1C3tuHolnpNgDNCUIg==} + turbo-windows-arm64@2.3.1: + resolution: {integrity: sha512-7/2/sJZiquwoT/jWBCfV0qKq4NarsJPmDRjMcR9dDMIwCYsGM8ljomkDRTCtkNeFcUvYw54MiRWHehWgbcRPsw==} cpu: [arm64] os: [win32] - turbo@2.3.0: - resolution: {integrity: sha512-/uOq5o2jwRPyaUDnwBpOR5k9mQq4c3wziBgWNWttiYQPmbhDtrKYPRBxTvA2WpgQwRIbt8UM612RMN8n/TvmHA==} + turbo@2.3.1: + resolution: {integrity: sha512-vHZe/e6k1HZVKiMQPQ1BWFn53vjVQDFKdkjUq/pBKlRWi1gw9LQO6ntH4qZCcHY1rH6TXgsRmexXdgWl96YvVQ==} hasBin: true twoslash-protocol@0.2.12: @@ -6243,16 +6207,16 @@ packages: resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} engines: {node: '>= 0.4'} - typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + typed-array-byte-offset@1.0.3: + resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==} engines: {node: '>= 0.4'} - typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} engines: {node: '>= 0.4'} - typescript@5.6.3: - resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} + typescript@5.7.2: + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} engines: {node: '>=14.17'} hasBin: true @@ -6395,8 +6359,8 @@ packages: which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} - which-builtin-type@1.1.4: - resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==} + which-builtin-type@1.2.0: + resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==} engines: {node: '>= 0.4'} which-collection@1.0.2: @@ -6407,10 +6371,6 @@ packages: resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} - which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} - hasBin: true - which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} engines: {node: '>= 8'} @@ -6432,9 +6392,6 @@ packages: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} - yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} - yaml@2.6.1: resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} engines: {node: '>= 14'} @@ -6475,52 +6432,39 @@ packages: snapshots: - '@ai-sdk/openai@1.0.1(zod@3.23.8)': + '@ai-sdk/openai@1.0.4(zod@3.23.8)': dependencies: - '@ai-sdk/provider': 1.0.0 - '@ai-sdk/provider-utils': 2.0.0(zod@3.23.8) + '@ai-sdk/provider': 1.0.1 + '@ai-sdk/provider-utils': 2.0.2(zod@3.23.8) zod: 3.23.8 - '@ai-sdk/provider-utils@1.0.22(zod@3.23.8)': + '@ai-sdk/provider-utils@2.0.2(zod@3.23.8)': dependencies: - '@ai-sdk/provider': 0.0.26 - eventsource-parser: 1.1.2 - nanoid: 3.3.7 - secure-json-parse: 2.7.0 - optionalDependencies: - zod: 3.23.8 - - '@ai-sdk/provider-utils@2.0.0(zod@3.23.8)': - dependencies: - '@ai-sdk/provider': 1.0.0 + '@ai-sdk/provider': 1.0.1 eventsource-parser: 3.0.0 - nanoid: 5.0.8 + nanoid: 3.3.7 secure-json-parse: 2.7.0 optionalDependencies: zod: 3.23.8 - '@ai-sdk/provider@0.0.26': + '@ai-sdk/provider@1.0.1': dependencies: json-schema: 0.4.0 - '@ai-sdk/provider@1.0.0': + '@ai-sdk/react@1.0.2(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8)': dependencies: - json-schema: 0.4.0 - - '@ai-sdk/react@1.0.0(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8)': - dependencies: - '@ai-sdk/provider-utils': 2.0.0(zod@3.23.8) - '@ai-sdk/ui-utils': 1.0.0(zod@3.23.8) + '@ai-sdk/provider-utils': 2.0.2(zod@3.23.8) + '@ai-sdk/ui-utils': 1.0.2(zod@3.23.8) swr: 2.2.5(react@19.0.0-rc-66855b96-20241106) throttleit: 2.1.0 optionalDependencies: react: 19.0.0-rc-66855b96-20241106 zod: 3.23.8 - '@ai-sdk/ui-utils@1.0.0(zod@3.23.8)': + '@ai-sdk/ui-utils@1.0.2(zod@3.23.8)': dependencies: - '@ai-sdk/provider': 1.0.0 - '@ai-sdk/provider-utils': 2.0.0(zod@3.23.8) + '@ai-sdk/provider': 1.0.1 + '@ai-sdk/provider-utils': 2.0.2(zod@3.23.8) zod-to-json-schema: 3.23.5(zod@3.23.8) optionalDependencies: zod: 3.23.8 @@ -6630,11 +6574,11 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@changesets/apply-release-plan@7.0.5': + '@changesets/apply-release-plan@7.0.6': dependencies: - '@changesets/config': 3.0.3 + '@changesets/config': 3.0.4 '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.1 + '@changesets/git': 3.0.2 '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 @@ -6646,7 +6590,7 @@ snapshots: resolve-from: 5.0.0 semver: 7.6.3 - '@changesets/assemble-release-plan@6.0.4': + '@changesets/assemble-release-plan@6.0.5': dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.2 @@ -6659,19 +6603,19 @@ snapshots: dependencies: '@changesets/types': 6.0.0 - '@changesets/cli@2.27.9': + '@changesets/cli@2.27.10': dependencies: - '@changesets/apply-release-plan': 7.0.5 - '@changesets/assemble-release-plan': 6.0.4 + '@changesets/apply-release-plan': 7.0.6 + '@changesets/assemble-release-plan': 6.0.5 '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.3 + '@changesets/config': 3.0.4 '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.2 - '@changesets/get-release-plan': 4.0.4 - '@changesets/git': 3.0.1 + '@changesets/get-release-plan': 4.0.5 + '@changesets/git': 3.0.2 '@changesets/logger': 0.1.1 '@changesets/pre': 2.0.1 - '@changesets/read': 0.6.1 + '@changesets/read': 0.6.2 '@changesets/should-skip-package': 0.1.1 '@changesets/types': 6.0.0 '@changesets/write': 0.3.2 @@ -6683,14 +6627,14 @@ snapshots: fs-extra: 7.0.1 mri: 1.2.0 p-limit: 2.3.0 - package-manager-detector: 0.2.4 + package-manager-detector: 0.2.5 picocolors: 1.1.1 resolve-from: 5.0.0 semver: 7.6.3 - spawndamnit: 2.0.0 + spawndamnit: 3.0.1 term-size: 2.2.1 - '@changesets/config@3.0.3': + '@changesets/config@3.0.4': dependencies: '@changesets/errors': 0.2.0 '@changesets/get-dependents-graph': 2.1.2 @@ -6711,24 +6655,24 @@ snapshots: picocolors: 1.1.1 semver: 7.6.3 - '@changesets/get-release-plan@4.0.4': + '@changesets/get-release-plan@4.0.5': dependencies: - '@changesets/assemble-release-plan': 6.0.4 - '@changesets/config': 3.0.3 + '@changesets/assemble-release-plan': 6.0.5 + '@changesets/config': 3.0.4 '@changesets/pre': 2.0.1 - '@changesets/read': 0.6.1 + '@changesets/read': 0.6.2 '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 '@changesets/get-version-range-type@0.4.0': {} - '@changesets/git@3.0.1': + '@changesets/git@3.0.2': dependencies: '@changesets/errors': 0.2.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.8 - spawndamnit: 2.0.0 + spawndamnit: 3.0.1 '@changesets/logger@0.1.1': dependencies: @@ -6746,9 +6690,9 @@ snapshots: '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - '@changesets/read@0.6.1': + '@changesets/read@0.6.2': dependencies: - '@changesets/git': 3.0.1 + '@changesets/git': 3.0.2 '@changesets/logger': 0.1.1 '@changesets/parse': 0.4.0 '@changesets/types': 6.0.0 @@ -7113,13 +7057,13 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@langchain/core@0.3.18(openai@4.72.0(zod@3.23.8))': + '@langchain/core@0.3.18(openai@4.73.0(zod@3.23.8))': dependencies: ansi-styles: 5.2.0 camelcase: 6.3.0 decamelize: 1.2.0 js-tiktoken: 1.0.15 - langsmith: 0.2.5(openai@4.72.0(zod@3.23.8)) + langsmith: 0.2.7(openai@4.73.0(zod@3.23.8)) mustache: 4.2.0 p-queue: 6.6.2 p-retry: 4.6.2 @@ -7257,7 +7201,7 @@ snapshots: '@opentelemetry/api@1.9.0': {} - '@orama/orama@3.0.1': {} + '@orama/orama@3.0.2': {} '@pkgjs/parseargs@0.11.0': optional: true @@ -8280,58 +8224,58 @@ snapshots: dependencies: react: 19.0.0-rc-66855b96-20241106 - '@rollup/rollup-android-arm-eabi@4.27.3': + '@rollup/rollup-android-arm-eabi@4.27.4': optional: true - '@rollup/rollup-android-arm64@4.27.3': + '@rollup/rollup-android-arm64@4.27.4': optional: true - '@rollup/rollup-darwin-arm64@4.27.3': + '@rollup/rollup-darwin-arm64@4.27.4': optional: true - '@rollup/rollup-darwin-x64@4.27.3': + '@rollup/rollup-darwin-x64@4.27.4': optional: true - '@rollup/rollup-freebsd-arm64@4.27.3': + '@rollup/rollup-freebsd-arm64@4.27.4': optional: true - '@rollup/rollup-freebsd-x64@4.27.3': + '@rollup/rollup-freebsd-x64@4.27.4': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.27.3': + '@rollup/rollup-linux-arm-gnueabihf@4.27.4': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.27.3': + '@rollup/rollup-linux-arm-musleabihf@4.27.4': optional: true - '@rollup/rollup-linux-arm64-gnu@4.27.3': + '@rollup/rollup-linux-arm64-gnu@4.27.4': optional: true - '@rollup/rollup-linux-arm64-musl@4.27.3': + '@rollup/rollup-linux-arm64-musl@4.27.4': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.27.3': + '@rollup/rollup-linux-powerpc64le-gnu@4.27.4': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.27.3': + '@rollup/rollup-linux-riscv64-gnu@4.27.4': optional: true - '@rollup/rollup-linux-s390x-gnu@4.27.3': + '@rollup/rollup-linux-s390x-gnu@4.27.4': optional: true - '@rollup/rollup-linux-x64-gnu@4.27.3': + '@rollup/rollup-linux-x64-gnu@4.27.4': optional: true - '@rollup/rollup-linux-x64-musl@4.27.3': + '@rollup/rollup-linux-x64-musl@4.27.4': optional: true - '@rollup/rollup-win32-arm64-msvc@4.27.3': + '@rollup/rollup-win32-arm64-msvc@4.27.4': optional: true - '@rollup/rollup-win32-ia32-msvc@4.27.3': + '@rollup/rollup-win32-ia32-msvc@4.27.4': optional: true - '@rollup/rollup-win32-x64-msvc@4.27.3': + '@rollup/rollup-win32-x64-msvc@4.27.4': optional: true '@rtsao/scc@1.1.0': {} @@ -8371,11 +8315,11 @@ snapshots: dependencies: shiki: 1.23.1 - '@shikijs/twoslash@1.23.1(typescript@5.6.3)': + '@shikijs/twoslash@1.23.1(typescript@5.7.2)': dependencies: '@shikijs/core': 1.23.1 '@shikijs/types': 1.23.1 - twoslash: 0.2.12(typescript@5.6.3) + twoslash: 0.2.12(typescript@5.7.2) transitivePeerDependencies: - supports-color - typescript @@ -8425,7 +8369,7 @@ snapshots: '@types/cross-spawn@6.0.6': dependencies: - '@types/node': 22.9.1 + '@types/node': 22.9.3 '@types/debug@4.1.12': dependencies: @@ -8465,16 +8409,16 @@ snapshots: '@types/node-fetch@2.6.12': dependencies: - '@types/node': 22.9.1 + '@types/node': 22.9.3 form-data: 4.0.1 '@types/node@12.20.55': {} - '@types/node@18.19.64': + '@types/node@18.19.65': dependencies: undici-types: 5.26.5 - '@types/node@22.9.1': + '@types/node@22.9.3': dependencies: undici-types: 6.19.8 @@ -8507,34 +8451,34 @@ snapshots: '@types/uuid@10.0.0': {} - '@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3)': + '@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) '@typescript-eslint/scope-manager': 8.15.0 - '@typescript-eslint/type-utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) - '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/type-utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) + '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) '@typescript-eslint/visitor-keys': 8.15.0 eslint: 9.15.0(jiti@1.21.6) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.4.0(typescript@5.6.3) + ts-api-utils: 1.4.1(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3)': + '@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': dependencies: '@typescript-eslint/scope-manager': 8.15.0 '@typescript-eslint/types': 8.15.0 - '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.7.2) '@typescript-eslint/visitor-keys': 8.15.0 debug: 4.3.7 eslint: 9.15.0(jiti@1.21.6) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -8543,21 +8487,21 @@ snapshots: '@typescript-eslint/types': 8.15.0 '@typescript-eslint/visitor-keys': 8.15.0 - '@typescript-eslint/type-utils@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3)': + '@typescript-eslint/type-utils@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': dependencies: - '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3) - '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.7.2) + '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) debug: 4.3.7 eslint: 9.15.0(jiti@1.21.6) - ts-api-utils: 1.4.0(typescript@5.6.3) + ts-api-utils: 1.4.1(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color '@typescript-eslint/types@8.15.0': {} - '@typescript-eslint/typescript-estree@8.15.0(typescript@5.6.3)': + '@typescript-eslint/typescript-estree@8.15.0(typescript@5.7.2)': dependencies: '@typescript-eslint/types': 8.15.0 '@typescript-eslint/visitor-keys': 8.15.0 @@ -8566,21 +8510,21 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.4.0(typescript@5.6.3) + ts-api-utils: 1.4.1(typescript@5.7.2) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3)': + '@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': dependencies: '@eslint-community/eslint-utils': 4.4.1(eslint@9.15.0(jiti@1.21.6)) '@typescript-eslint/scope-manager': 8.15.0 '@typescript-eslint/types': 8.15.0 - '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.6.3) + '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.7.2) eslint: 9.15.0(jiti@1.21.6) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -8589,10 +8533,10 @@ snapshots: '@typescript-eslint/types': 8.15.0 eslint-visitor-keys: 4.2.0 - '@typescript/vfs@1.6.0(typescript@5.6.3)': + '@typescript/vfs@1.6.0(typescript@5.7.2)': dependencies: debug: 4.3.7 - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -8612,12 +8556,12 @@ snapshots: dependencies: humanize-ms: 1.2.1 - ai@4.0.1(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8): + ai@4.0.3(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8): dependencies: - '@ai-sdk/provider': 1.0.0 - '@ai-sdk/provider-utils': 2.0.0(zod@3.23.8) - '@ai-sdk/react': 1.0.0(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) - '@ai-sdk/ui-utils': 1.0.0(zod@3.23.8) + '@ai-sdk/provider': 1.0.1 + '@ai-sdk/provider-utils': 2.0.2(zod@3.23.8) + '@ai-sdk/react': 1.0.2(react@19.0.0-rc-66855b96-20241106)(zod@3.23.8) + '@ai-sdk/ui-utils': 1.0.2(zod@3.23.8) '@opentelemetry/api': 1.9.0 jsondiffpatch: 0.6.0 zod-to-json-schema: 3.23.5(zod@3.23.8) @@ -8762,7 +8706,7 @@ snapshots: autoprefixer@10.4.20(postcss@8.4.49): dependencies: browserslist: 4.24.2 - caniuse-lite: 1.0.30001680 + caniuse-lite: 1.0.30001684 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -8804,8 +8748,8 @@ snapshots: browserslist@4.24.2: dependencies: - caniuse-lite: 1.0.30001680 - electron-to-chromium: 1.5.63 + caniuse-lite: 1.0.30001684 + electron-to-chromium: 1.5.64 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.2) @@ -8834,7 +8778,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001680: {} + caniuse-lite@1.0.30001684: {} ccount@2.0.1: {} @@ -8959,20 +8903,14 @@ snapshots: consola@3.2.3: {} - cosmiconfig@9.0.0(typescript@5.6.3): + cosmiconfig@9.0.0(typescript@5.7.2): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.6.3 - - cross-spawn@5.1.0: - dependencies: - lru-cache: 4.1.5 - shebang-command: 1.2.0 - which: 1.3.1 + typescript: 5.7.2 cross-spawn@7.0.6: dependencies: @@ -9065,23 +9003,23 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.63: {} + electron-to-chromium@1.5.64: {} - embla-carousel-autoplay@8.4.0(embla-carousel@8.4.0): + embla-carousel-autoplay@8.5.1(embla-carousel@8.5.1): dependencies: - embla-carousel: 8.4.0 + embla-carousel: 8.5.1 - embla-carousel-react@8.4.0(react@19.0.0-rc-66855b96-20241106): + embla-carousel-react@8.5.1(react@19.0.0-rc-66855b96-20241106): dependencies: - embla-carousel: 8.4.0 - embla-carousel-reactive-utils: 8.4.0(embla-carousel@8.4.0) + embla-carousel: 8.5.1 + embla-carousel-reactive-utils: 8.5.1(embla-carousel@8.5.1) react: 19.0.0-rc-66855b96-20241106 - embla-carousel-reactive-utils@8.4.0(embla-carousel@8.4.0): + embla-carousel-reactive-utils@8.5.1(embla-carousel@8.5.1): dependencies: - embla-carousel: 8.4.0 + embla-carousel: 8.5.1 - embla-carousel@8.4.0: {} + embla-carousel@8.5.1: {} emoji-regex-xs@1.0.0: {} @@ -9151,8 +9089,8 @@ snapshots: string.prototype.trimstart: 1.0.8 typed-array-buffer: 1.0.2 typed-array-byte-length: 1.0.1 - typed-array-byte-offset: 1.0.2 - typed-array-length: 1.0.6 + typed-array-byte-offset: 1.0.3 + typed-array-length: 1.0.7 unbox-primitive: 1.0.2 which-typed-array: 1.1.15 @@ -9276,21 +9214,21 @@ snapshots: escape-string-regexp@5.0.0: {} - eslint-config-next@15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3): + eslint-config-next@15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2): dependencies: '@next/eslint-plugin-next': 15.0.3 '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) + '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) eslint: 9.15.0(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.15.0(jiti@1.21.6)) eslint-plugin-react: 7.37.2(eslint@9.15.0(jiti@1.21.6)) eslint-plugin-react-hooks: 5.0.0(eslint@9.15.0(jiti@1.21.6)) optionalDependencies: - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - eslint-import-resolver-webpack - eslint-plugin-import-x @@ -9304,37 +9242,37 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 9.15.0(jiti@1.21.6) - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) fast-glob: 3.3.2 get-tsconfig: 4.8.1 is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) eslint: 9.15.0(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -9345,7 +9283,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.15.0(jiti@1.21.6) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.15.0(jiti@1.21.6)) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -9357,7 +9295,7 @@ snapshots: string.prototype.trimend: 1.0.8 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.6.3) + '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -9519,8 +9457,6 @@ snapshots: eventemitter3@4.0.7: {} - eventsource-parser@1.1.2: {} - eventsource-parser@3.0.0: {} extend-shallow@2.0.1: @@ -9640,7 +9576,7 @@ snapshots: fumadocs-core@14.1.0(@types/react@18.3.12)(algoliasearch@4.24.0)(next@14.2.4(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@formatjs/intl-localematcher': 0.5.8 - '@orama/orama': 3.0.1 + '@orama/orama': 3.0.2 '@shikijs/rehype': 1.23.1 github-slugger: 2.0.0 hast-util-to-estree: 3.1.0 @@ -9665,7 +9601,7 @@ snapshots: fumadocs-core@14.1.0(@types/react@18.3.12)(algoliasearch@4.24.0)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106): dependencies: '@formatjs/intl-localematcher': 0.5.8 - '@orama/orama': 3.0.1 + '@orama/orama': 3.0.2 '@shikijs/rehype': 1.23.1 github-slugger: 2.0.0 hast-util-to-estree: 3.1.0 @@ -9704,17 +9640,17 @@ snapshots: - acorn - supports-color - fumadocs-twoslash@2.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(fumadocs-ui@14.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(shiki@1.23.1)(typescript@5.6.3): + fumadocs-twoslash@2.0.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(fumadocs-ui@14.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106)(shiki@1.23.1)(typescript@5.7.2): dependencies: '@radix-ui/react-popover': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - '@shikijs/twoslash': 1.23.1(typescript@5.6.3) + '@shikijs/twoslash': 1.23.1(typescript@5.7.2) fumadocs-ui: 14.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(next@15.0.3(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106))(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) mdast-util-from-markdown: 2.0.2 mdast-util-gfm: 3.0.0 mdast-util-to-hast: 13.2.0 react: 19.0.0-rc-66855b96-20241106 shiki: 1.23.1 - tailwind-merge: 2.5.4 + tailwind-merge: 2.5.5 transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -9742,7 +9678,7 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-medium-image-zoom: 5.2.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - tailwind-merge: 2.5.4 + tailwind-merge: 2.5.5 optionalDependencies: '@algolia/client-search': 4.24.0 algoliasearch: 4.24.0 @@ -9773,7 +9709,7 @@ snapshots: react: 19.0.0-rc-66855b96-20241106 react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) react-medium-image-zoom: 5.2.11(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react@19.0.0-rc-66855b96-20241106) - tailwind-merge: 2.5.4 + tailwind-merge: 2.5.5 optionalDependencies: '@algolia/client-search': 4.24.0 algoliasearch: 4.24.0 @@ -10147,7 +10083,7 @@ snapshots: is-extglob@2.1.1: {} - is-finalizationregistry@1.0.2: + is-finalizationregistry@1.1.0: dependencies: call-bind: 1.0.7 @@ -10226,7 +10162,7 @@ snapshots: define-properties: 1.2.1 get-intrinsic: 1.2.4 has-symbols: 1.0.3 - reflect.getprototypeof: 1.0.6 + reflect.getprototypeof: 1.0.7 set-function-name: 2.0.2 jackspeak@3.4.3: @@ -10305,7 +10241,7 @@ snapshots: kind-of@6.0.3: {} - langsmith@0.2.5(openai@4.72.0(zod@3.23.8)): + langsmith@0.2.7(openai@4.73.0(zod@3.23.8)): dependencies: '@types/uuid': 10.0.0 commander: 10.0.1 @@ -10314,7 +10250,7 @@ snapshots: semver: 7.6.3 uuid: 10.0.0 optionalDependencies: - openai: 4.72.0(zod@3.23.8) + openai: 4.73.0(zod@3.23.8) language-subtag-registry@0.3.23: {} @@ -10368,11 +10304,6 @@ snapshots: lru-cache@11.0.2: {} - lru-cache@4.1.5: - dependencies: - pseudomap: 1.0.2 - yallist: 2.1.2 - lucide-react@0.460.0(react@19.0.0-rc-66855b96-20241106): dependencies: react: 19.0.0-rc-66855b96-20241106 @@ -10898,7 +10829,7 @@ snapshots: '@next/env': 14.2.4 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001680 + caniuse-lite: 1.0.30001684 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 @@ -10925,7 +10856,7 @@ snapshots: '@swc/counter': 0.1.3 '@swc/helpers': 0.5.13 busboy: 1.6.0 - caniuse-lite: 1.0.30001680 + caniuse-lite: 1.0.30001684 postcss: 8.4.31 react: 19.0.0-rc-66855b96-20241106 react-dom: 19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106) @@ -10997,10 +10928,10 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.0.0 - ollama-ai-provider@0.16.1(zod@3.23.8): + ollama-ai-provider@1.0.0(zod@3.23.8): dependencies: - '@ai-sdk/provider': 0.0.26 - '@ai-sdk/provider-utils': 1.0.22(zod@3.23.8) + '@ai-sdk/provider': 1.0.1 + '@ai-sdk/provider-utils': 2.0.2(zod@3.23.8) partial-json: 0.1.7 optionalDependencies: zod: 3.23.8 @@ -11011,9 +10942,9 @@ snapshots: regex: 5.0.2 regex-recursion: 4.2.1 - openai@4.72.0(zod@3.23.8): + openai@4.73.0(zod@3.23.8): dependencies: - '@types/node': 18.19.64 + '@types/node': 18.19.65 '@types/node-fetch': 2.6.12 abort-controller: 3.0.0 agentkeepalive: 4.5.0 @@ -11080,7 +11011,7 @@ snapshots: package-json-from-dist@1.0.1: {} - package-manager-detector@0.2.4: {} + package-manager-detector@0.2.5: {} parent-module@1.0.1: dependencies: @@ -11246,8 +11177,6 @@ snapshots: property-information@6.5.0: {} - pseudomap@1.0.2: {} - punycode@2.3.1: {} queue-microtask@1.2.3: {} @@ -11438,15 +11367,15 @@ snapshots: unified: 11.0.5 vfile: 6.0.3 - reflect.getprototypeof@1.0.6: + reflect.getprototypeof@1.0.7: dependencies: call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.5 es-errors: 1.3.0 get-intrinsic: 1.2.4 - globalthis: 1.0.4 - which-builtin-type: 1.1.4 + gopd: 1.0.1 + which-builtin-type: 1.2.0 refractor@3.6.0: dependencies: @@ -11596,28 +11525,28 @@ snapshots: glob: 11.0.0 package-json-from-dist: 1.0.1 - rollup@4.27.3: + rollup@4.27.4: dependencies: '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.27.3 - '@rollup/rollup-android-arm64': 4.27.3 - '@rollup/rollup-darwin-arm64': 4.27.3 - '@rollup/rollup-darwin-x64': 4.27.3 - '@rollup/rollup-freebsd-arm64': 4.27.3 - '@rollup/rollup-freebsd-x64': 4.27.3 - '@rollup/rollup-linux-arm-gnueabihf': 4.27.3 - '@rollup/rollup-linux-arm-musleabihf': 4.27.3 - '@rollup/rollup-linux-arm64-gnu': 4.27.3 - '@rollup/rollup-linux-arm64-musl': 4.27.3 - '@rollup/rollup-linux-powerpc64le-gnu': 4.27.3 - '@rollup/rollup-linux-riscv64-gnu': 4.27.3 - '@rollup/rollup-linux-s390x-gnu': 4.27.3 - '@rollup/rollup-linux-x64-gnu': 4.27.3 - '@rollup/rollup-linux-x64-musl': 4.27.3 - '@rollup/rollup-win32-arm64-msvc': 4.27.3 - '@rollup/rollup-win32-ia32-msvc': 4.27.3 - '@rollup/rollup-win32-x64-msvc': 4.27.3 + '@rollup/rollup-android-arm-eabi': 4.27.4 + '@rollup/rollup-android-arm64': 4.27.4 + '@rollup/rollup-darwin-arm64': 4.27.4 + '@rollup/rollup-darwin-x64': 4.27.4 + '@rollup/rollup-freebsd-arm64': 4.27.4 + '@rollup/rollup-freebsd-x64': 4.27.4 + '@rollup/rollup-linux-arm-gnueabihf': 4.27.4 + '@rollup/rollup-linux-arm-musleabihf': 4.27.4 + '@rollup/rollup-linux-arm64-gnu': 4.27.4 + '@rollup/rollup-linux-arm64-musl': 4.27.4 + '@rollup/rollup-linux-powerpc64le-gnu': 4.27.4 + '@rollup/rollup-linux-riscv64-gnu': 4.27.4 + '@rollup/rollup-linux-s390x-gnu': 4.27.4 + '@rollup/rollup-linux-x64-gnu': 4.27.4 + '@rollup/rollup-linux-x64-musl': 4.27.4 + '@rollup/rollup-win32-arm64-msvc': 4.27.4 + '@rollup/rollup-win32-ia32-msvc': 4.27.4 + '@rollup/rollup-win32-x64-msvc': 4.27.4 fsevents: 2.3.3 run-parallel@1.2.0: @@ -11705,16 +11634,10 @@ snapshots: '@img/sharp-win32-x64': 0.33.5 optional: true - shebang-command@1.2.0: - dependencies: - shebang-regex: 1.0.0 - shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 - shebang-regex@1.0.0: {} - shebang-regex@3.0.0: {} shiki@1.23.1: @@ -11733,8 +11656,6 @@ snapshots: get-intrinsic: 1.2.4 object-inspect: 1.13.3 - signal-exit@3.0.7: {} - signal-exit@4.1.0: {} simple-swizzle@0.2.2: @@ -11756,10 +11677,10 @@ snapshots: space-separated-tokens@2.0.2: {} - spawndamnit@2.0.0: + spawndamnit@3.0.1: dependencies: - cross-spawn: 5.1.0 - signal-exit: 3.0.7 + cross-spawn: 7.0.6 + signal-exit: 4.1.0 sprintf-js@1.0.3: {} @@ -11881,7 +11802,7 @@ snapshots: react: 19.0.0-rc-66855b96-20241106 use-sync-external-store: 1.2.2(react@19.0.0-rc-66855b96-20241106) - tailwind-merge@2.5.4: {} + tailwind-merge@2.5.5: {} tailwindcss-animate@1.0.7(tailwindcss@3.4.15): dependencies: @@ -11977,9 +11898,9 @@ snapshots: trough@2.2.0: {} - ts-api-utils@1.4.0(typescript@5.6.3): + ts-api-utils@1.4.1(typescript@5.7.2): dependencies: - typescript: 5.6.3 + typescript: 5.7.2 ts-interface-checker@0.1.13: {} @@ -12003,7 +11924,7 @@ snapshots: tslib@2.8.1: {} - tsup@8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.6.3)(yaml@2.6.1): + tsup@8.3.5(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(typescript@5.7.2)(yaml@2.6.1): dependencies: bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 @@ -12015,7 +11936,7 @@ snapshots: picocolors: 1.1.1 postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.49)(tsx@4.19.2)(yaml@2.6.1) resolve-from: 5.0.0 - rollup: 4.27.3 + rollup: 4.27.4 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tinyexec: 0.3.1 @@ -12023,7 +11944,7 @@ snapshots: tree-kill: 1.2.2 optionalDependencies: postcss: 8.4.49 - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - jiti - supports-color @@ -12037,40 +11958,40 @@ snapshots: optionalDependencies: fsevents: 2.3.3 - turbo-darwin-64@2.3.0: + turbo-darwin-64@2.3.1: optional: true - turbo-darwin-arm64@2.3.0: + turbo-darwin-arm64@2.3.1: optional: true - turbo-linux-64@2.3.0: + turbo-linux-64@2.3.1: optional: true - turbo-linux-arm64@2.3.0: + turbo-linux-arm64@2.3.1: optional: true - turbo-windows-64@2.3.0: + turbo-windows-64@2.3.1: optional: true - turbo-windows-arm64@2.3.0: + turbo-windows-arm64@2.3.1: optional: true - turbo@2.3.0: + turbo@2.3.1: optionalDependencies: - turbo-darwin-64: 2.3.0 - turbo-darwin-arm64: 2.3.0 - turbo-linux-64: 2.3.0 - turbo-linux-arm64: 2.3.0 - turbo-windows-64: 2.3.0 - turbo-windows-arm64: 2.3.0 + turbo-darwin-64: 2.3.1 + turbo-darwin-arm64: 2.3.1 + turbo-linux-64: 2.3.1 + turbo-linux-arm64: 2.3.1 + turbo-windows-64: 2.3.1 + turbo-windows-arm64: 2.3.1 twoslash-protocol@0.2.12: {} - twoslash@0.2.12(typescript@5.6.3): + twoslash@0.2.12(typescript@5.7.2): dependencies: - '@typescript/vfs': 1.6.0(typescript@5.6.3) + '@typescript/vfs': 1.6.0(typescript@5.7.2) twoslash-protocol: 0.2.12 - typescript: 5.6.3 + typescript: 5.7.2 transitivePeerDependencies: - supports-color @@ -12092,7 +12013,7 @@ snapshots: has-proto: 1.0.3 is-typed-array: 1.1.13 - typed-array-byte-offset@1.0.2: + typed-array-byte-offset@1.0.3: dependencies: available-typed-arrays: 1.0.7 call-bind: 1.0.7 @@ -12100,17 +12021,18 @@ snapshots: gopd: 1.0.1 has-proto: 1.0.3 is-typed-array: 1.1.13 + reflect.getprototypeof: 1.0.7 - typed-array-length@1.0.6: + typed-array-length@1.0.7: dependencies: call-bind: 1.0.7 for-each: 0.3.3 gopd: 1.0.1 - has-proto: 1.0.3 is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.7 - typescript@5.6.3: {} + typescript@5.7.2: {} unbox-primitive@1.0.2: dependencies: @@ -12285,13 +12207,14 @@ snapshots: is-string: 1.0.7 is-symbol: 1.0.4 - which-builtin-type@1.1.4: + which-builtin-type@1.2.0: dependencies: + call-bind: 1.0.7 function.prototype.name: 1.1.6 has-tostringtag: 1.0.2 is-async-function: 2.0.0 is-date-object: 1.0.5 - is-finalizationregistry: 1.0.2 + is-finalizationregistry: 1.1.0 is-generator-function: 1.0.10 is-regex: 1.1.4 is-weakref: 1.0.2 @@ -12315,10 +12238,6 @@ snapshots: gopd: 1.0.1 has-tostringtag: 1.0.2 - which@1.3.1: - dependencies: - isexe: 2.0.0 - which@2.0.2: dependencies: isexe: 2.0.0 @@ -12339,8 +12258,6 @@ snapshots: xtend@4.0.2: {} - yallist@2.1.2: {} - yaml@2.6.1: {} yocto-queue@0.1.0: {}