From 65e8db88a5fa57350473759d1635f5f4d04947d0 Mon Sep 17 00:00:00 2001
From: AnnatarHe
Date: Sun, 15 Mar 2026 22:25:57 +0800
Subject: [PATCH] fix(apollo): migrate to Apollo Client v4 breaking changes
- Move React hooks (useQuery, useMutation, etc.) from @apollo/client to @apollo/client/react
- Replace removed ApolloError with ServerError/CombinedGraphQLErrors
- Update onError link handler for v4's unified error object
- Replace connectToDevTools with devtools option
- Handle v4's QueryResult.data being TData | undefined with non-null assertions
- Replace removed onCompleted callback with useMemo-derived state
- Create apollo-compat barrel module for codegen compatibility
- Update codegen config with apolloReactHooksImportFrom
- Fix ApolloClient no longer being generic
- Add @ts-nocheck to generated file (codegen plugin not yet v4-compatible)
Co-Authored-By: Claude Opus 4.6 (1M context)
---
codegen.yml | 4 +
package.json | 112 +-
pnpm-lock.yaml | 5386 +++++++++--------
src/app/auth/auth-v4/page.tsx | 2 +-
src/app/auth/callback/layout.tsx | 2 +-
src/app/auth/github/page.tsx | 2 +-
src/app/dash/[userid]/admin/page.tsx | 4 +-
src/app/dash/[userid]/admin/sync-input.tsx | 2 +-
.../dash/[userid]/book/[bookid]/content.tsx | 2 +-
.../[clippingid]/@comments/commentBox.tsx | 2 +-
.../[userid]/clippings/[clippingid]/data.ts | 6 +-
.../[clippingid]/opengraph-image.tsx | 4 +-
.../[userid]/comments/[commentid]/page.tsx | 4 +-
src/app/dash/[userid]/comments/page.tsx | 4 +-
src/app/dash/[userid]/home/content.tsx | 4 +-
src/app/dash/[userid]/home/page.tsx | 21 +-
.../dash/[userid]/profile/clipping-list.tsx | 29 +-
src/app/dash/[userid]/profile/page.tsx | 2 +-
src/app/dash/[userid]/profile/personality.tsx | 4 +-
.../[userid]/settings/exports/export.mail.tsx | 6 +-
.../dash/[userid]/settings/webhooks/page.tsx | 4 +-
src/app/dash/[userid]/square/content.tsx | 4 +-
src/app/dash/[userid]/square/page.tsx | 7 +-
src/app/dash/[userid]/unchecked/page.tsx | 2 +-
src/app/dash/[userid]/upload/page.tsx | 2 +-
src/app/page.tsx | 2 +-
src/app/pricing/page.tsx | 2 +-
src/app/report/yearly-legacy/page.tsx | 8 +-
src/app/report/yearly/page.tsx | 8 +-
.../book-info-changer/bookInfoChanger.tsx | 2 +-
.../clipping-sidebars/visible-toggle.tsx | 2 +-
.../dashboard-container/container.tsx | 7 +-
.../navigation-bar/navigate-guide.tsx | 2 +-
src/components/reaction/reaction-cell.tsx | 2 +-
src/hooks/hooks.ts | 10 +-
src/hooks/my-file.tsx | 2 +-
src/services/ajax.ts | 43 +-
src/services/apollo-compat.ts | 41 +
src/services/apollo.server.ts | 11 +-
src/utils/storage.ts | 4 +-
40 files changed, 3115 insertions(+), 2652 deletions(-)
create mode 100644 src/services/apollo-compat.ts
diff --git a/codegen.yml b/codegen.yml
index 2ae0460e..1d4f0751 100644
--- a/codegen.yml
+++ b/codegen.yml
@@ -12,11 +12,15 @@ generates:
preset: 'client'
src/schema/generated.tsx:
plugins:
+ - add:
+ content: '// @ts-nocheck'
- "typescript"
- "typescript-operations"
- "typescript-react-apollo"
config:
withHooks: true
+ apolloReactCommonImportFrom: '@/services/apollo-compat'
+ apolloReactHooksImportFrom: '@/services/apollo-compat'
./src/schema/schema.json:
plugins:
- "introspection"
diff --git a/package.json b/package.json
index a17f2001..7c2923dd 100644
--- a/package.json
+++ b/package.json
@@ -54,18 +54,18 @@
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-transition-group": "^4.4.12",
- "autoprefixer": "^10.4.22",
+ "autoprefixer": "^10.4.27",
"coveralls": "^3.1.1",
"cross-fetch": "^4.1.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
- "graphql": "^16.12.0",
+ "graphql": "^16.13.1",
"graphql-tag": "^2.12.6",
- "jest": "^30.2.0",
- "jest-environment-jsdom": "^30.2.0",
- "lefthook": "^2.0.16",
- "lint-staged": "^16.2.7",
- "postcss": "^8.5.6",
+ "jest": "^30.3.0",
+ "jest-environment-jsdom": "^30.3.0",
+ "lefthook": "^2.1.4",
+ "lint-staged": "^16.4.0",
+ "postcss": "^8.5.8",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
@@ -78,62 +78,62 @@
"dependencies": {
"@annatarhe/blurhash-react": "^0.0.2",
"@annatarhe/clippingkk-widget": "^0.0.9",
- "@annatarhe/lake-ui": "^0.0.28",
- "@apollo/client": "^3.13.9",
- "@apollo/client-integration-nextjs": "^0.12.3",
+ "@annatarhe/lake-ui": "^0.0.31",
+ "@apollo/client": "^4.1.6",
+ "@apollo/client-integration-nextjs": "^0.14.4",
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
- "@fingerprintjs/fingerprintjs": "^5.0.1",
- "@floating-ui/dom": "^1.7.5",
- "@floating-ui/react": "^0.27.17",
+ "@fingerprintjs/fingerprintjs": "^5.1.0",
+ "@floating-ui/dom": "^1.7.6",
+ "@floating-ui/react": "^0.27.19",
"@formkit/auto-animate": "0.9.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.2.2",
- "@marsidev/react-turnstile": "^1.4.1",
+ "@marsidev/react-turnstile": "^1.4.2",
"@neshca/cache-handler": "^1.9.0",
"@newrelic/next": "^0.10.0",
- "@next/bundle-analyzer": "^16.1.1",
- "@next/third-parties": "^16.1.1",
+ "@next/bundle-analyzer": "^16.1.6",
+ "@next/third-parties": "^16.1.6",
"@opentelemetry/api": "^1.9.0",
- "@opentelemetry/exporter-jaeger": "^2.2.0",
- "@opentelemetry/exporter-trace-otlp-http": "^0.208.0",
+ "@opentelemetry/exporter-jaeger": "^2.6.0",
+ "@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
"@opentelemetry/id-generator-aws-xray": "^2.1.0",
- "@opentelemetry/resources": "^2.2.0",
- "@opentelemetry/sdk-node": "^0.208.0",
- "@opentelemetry/sdk-trace-base": "^2.2.0",
+ "@opentelemetry/resources": "^2.6.0",
+ "@opentelemetry/sdk-node": "^0.213.0",
+ "@opentelemetry/sdk-trace-base": "^2.6.0",
"@prompt-pal/node-sdk": "npm:@jsr/prompt-pal__node-sdk@^0.4.7",
- "@sentry/nextjs": "^10.32.1",
- "@sentry/react": "^10.32.1",
+ "@sentry/nextjs": "^10.43.0",
+ "@sentry/react": "^10.43.0",
"@sentry/tracing": "^7.120.4",
"@statelyai/inspect": "^0.4.0",
- "@tailwindcss/postcss": "^4.1.18",
- "@tanstack/query-sync-storage-persister": "^5.90.22",
- "@tanstack/react-query": "^5.90.20",
- "@tanstack/react-query-persist-client": "^5.90.22",
+ "@tailwindcss/postcss": "^4.2.1",
+ "@tanstack/query-sync-storage-persister": "^5.90.24",
+ "@tanstack/react-query": "^5.90.21",
+ "@tanstack/react-query-persist-client": "^5.90.24",
"@tanstack/react-table": "^8.21.3",
- "@tiptap/core": "^3.18.0",
- "@tiptap/extension-code-block-lowlight": "^3.18.0",
- "@tiptap/extension-link": "^3.18.0",
- "@tiptap/extension-placeholder": "^3.18.0",
- "@tiptap/extension-table": "^3.18.0",
- "@tiptap/extension-table-cell": "^3.18.0",
- "@tiptap/extension-table-header": "^3.18.0",
- "@tiptap/extension-table-row": "^3.18.0",
- "@tiptap/extension-typography": "^3.18.0",
- "@tiptap/markdown": "^3.18.0",
- "@tiptap/pm": "^3.18.0",
- "@tiptap/react": "^3.18.0",
- "@tiptap/starter-kit": "^3.18.0",
+ "@tiptap/core": "^3.20.1",
+ "@tiptap/extension-code-block-lowlight": "^3.20.1",
+ "@tiptap/extension-link": "^3.20.1",
+ "@tiptap/extension-placeholder": "^3.20.1",
+ "@tiptap/extension-table": "^3.20.1",
+ "@tiptap/extension-table-cell": "^3.20.1",
+ "@tiptap/extension-table-header": "^3.20.1",
+ "@tiptap/extension-table-row": "^3.20.1",
+ "@tiptap/extension-typography": "^3.20.1",
+ "@tiptap/markdown": "^3.20.1",
+ "@tiptap/pm": "^3.20.1",
+ "@tiptap/react": "^3.20.1",
+ "@tiptap/starter-kit": "^3.20.1",
"@uptrace/node": "^2.3.0",
- "@vercel/og": "^0.8.6",
- "@xstate/react": "^6.0.0",
+ "@vercel/og": "^0.11.1",
+ "@xstate/react": "^6.1.0",
"blurhash": "^2.0.5",
"body-scroll-lock": "4.0.0-beta.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
- "dayjs": "^1.11.19",
+ "dayjs": "^1.11.20",
"downloadjs": "^1.4.7",
"echarts": "^5.6.0",
"emoji-mart": "^5.6.0",
@@ -142,10 +142,10 @@
"franc-min": "^6.2.0",
"hast-util-to-jsx-runtime": "^2.3.6",
"html-to-image": "^1.11.13",
- "i18next": "^25.8.0",
- "i18next-browser-languagedetector": "^8.2.0",
+ "i18next": "^25.8.18",
+ "i18next-browser-languagedetector": "^8.2.1",
"i18next-resources-to-backend": "^1.2.1",
- "import-in-the-middle": "^2.0.6",
+ "import-in-the-middle": "^3.0.0",
"intersection-observer": "^0.12.2",
"iso-639-3-to-1": "^1.0.0",
"js-cookie": "^3.0.5",
@@ -153,9 +153,9 @@
"jsencrypt": "^3.5.4",
"lodash": "^4.17.23",
"lowlight": "^3.3.0",
- "lucide-react": "^0.556.0",
+ "lucide-react": "^0.577.0",
"masonic": "^4.1.0",
- "motion": "^12.29.2",
+ "motion": "^12.36.0",
"next": "^16.1.6",
"opentelemetry-node-metrics": "^3.0.0",
"parse-unit": "^1.0.1",
@@ -167,23 +167,23 @@
"react-blurhash": "^0.3.0",
"react-cool-inview": "^3.0.1",
"react-dom": "^19.2.4",
- "react-hook-form": "^7.71.1",
+ "react-hook-form": "^7.71.2",
"react-hot-toast": "^2.6.0",
- "react-i18next": "^16.5.4",
+ "react-i18next": "^16.5.8",
"react-image-crop": "^11.0.10",
"react-phone-input-2": "^2.15.1",
"react-select": "^5.10.2",
"react-slick": "^0.31.0",
"react-switch": "^7.1.0",
"react-transition-group": "^4.4.5",
- "redis": "^5.10.0",
+ "redis": "^5.11.0",
"require-in-the-middle": "^8.0.1",
"sharp": "^0.34.5",
- "shiki": "^3.20.0",
- "streamdown": "^2.1.0",
- "tailwind-merge": "^3.4.0",
- "tailwindcss": "^4.1.18",
- "xstate": "^5.26.0",
+ "shiki": "^4.0.2",
+ "streamdown": "^2.4.0",
+ "tailwind-merge": "^3.5.0",
+ "tailwindcss": "^4.2.1",
+ "xstate": "^5.28.0",
"zod": "^4.3.6"
},
"husky": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c97deda1..dd009aaf 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -15,14 +15,14 @@ importers:
specifier: ^0.0.9
version: 0.0.9
'@annatarhe/lake-ui':
- specifier: ^0.0.28
- version: 0.0.28(lucide-react@0.556.0(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^0.0.31
+ version: 0.0.31(lucide-react@0.577.0(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@apollo/client':
- specifier: ^3.13.9
- version: 3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^4.1.6
+ version: 4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)
'@apollo/client-integration-nextjs':
- specifier: ^0.12.3
- version: 0.12.3(@apollo/client@3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.7)(graphql@16.12.0)(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^0.14.4
+ version: 0.14.4(@apollo/client@4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2))(@types/react@19.2.7)(graphql@16.13.1)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)
'@emoji-mart/data':
specifier: ^1.2.1
version: 1.2.1
@@ -30,20 +30,20 @@ importers:
specifier: ^1.1.1
version: 1.1.1(emoji-mart@5.6.0)(react@19.2.4)
'@fingerprintjs/fingerprintjs':
- specifier: ^5.0.1
- version: 5.0.1
+ specifier: ^5.1.0
+ version: 5.1.0
'@floating-ui/dom':
- specifier: ^1.7.5
- version: 1.7.5
+ specifier: ^1.7.6
+ version: 1.7.6
'@floating-ui/react':
- specifier: ^0.27.17
- version: 0.27.17(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^0.27.19
+ version: 0.27.19(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@formkit/auto-animate':
specifier: 0.9.0
version: 0.9.0
'@graphql-typed-document-node/core':
specifier: ^3.2.0
- version: 3.2.0(graphql@16.12.0)
+ version: 3.2.0(graphql@16.13.1)
'@headlessui/react':
specifier: ^2.2.9
version: 2.2.9(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
@@ -52,121 +52,121 @@ importers:
version: 2.2.0(react@19.2.4)
'@hookform/resolvers':
specifier: ^5.2.2
- version: 5.2.2(react-hook-form@7.71.1(react@19.2.4))
+ version: 5.2.2(react-hook-form@7.71.2(react@19.2.4))
'@marsidev/react-turnstile':
- specifier: ^1.4.1
- version: 1.4.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^1.4.2
+ version: 1.4.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@neshca/cache-handler':
specifier: ^1.9.0
- version: 1.9.0(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(redis@5.10.0)
+ version: 1.9.0(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(redis@5.11.0)
'@newrelic/next':
specifier: ^0.10.0
version: 0.10.0(newrelic@12.6.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
'@next/bundle-analyzer':
- specifier: ^16.1.1
- version: 16.1.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ specifier: ^16.1.6
+ version: 16.1.6(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@next/third-parties':
- specifier: ^16.1.1
- version: 16.1.1(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)
+ specifier: ^16.1.6
+ version: 16.1.6(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)
'@opentelemetry/api':
specifier: ^1.9.0
version: 1.9.0
'@opentelemetry/exporter-jaeger':
- specifier: ^2.2.0
- version: 2.2.0(@opentelemetry/api@1.9.0)
+ specifier: ^2.6.0
+ version: 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-trace-otlp-http':
- specifier: ^0.208.0
- version: 0.208.0(@opentelemetry/api@1.9.0)
+ specifier: ^0.213.0
+ version: 0.213.0(@opentelemetry/api@1.9.0)
'@opentelemetry/id-generator-aws-xray':
specifier: ^2.1.0
version: 2.1.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resources':
- specifier: ^2.2.0
- version: 2.2.0(@opentelemetry/api@1.9.0)
+ specifier: ^2.6.0
+ version: 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-node':
- specifier: ^0.208.0
- version: 0.208.0(@opentelemetry/api@1.9.0)
+ specifier: ^0.213.0
+ version: 0.213.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base':
- specifier: ^2.2.0
- version: 2.2.0(@opentelemetry/api@1.9.0)
+ specifier: ^2.6.0
+ version: 2.6.0(@opentelemetry/api@1.9.0)
'@prompt-pal/node-sdk':
specifier: npm:@jsr/prompt-pal__node-sdk@^0.4.7
version: '@jsr/prompt-pal__node-sdk@0.4.7'
'@sentry/nextjs':
- specifier: ^10.32.1
- version: 10.32.1(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(webpack@5.96.1)
+ specifier: ^10.43.0
+ version: 10.43.0(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(webpack@5.96.1)
'@sentry/react':
- specifier: ^10.32.1
- version: 10.32.1(react@19.2.4)
+ specifier: ^10.43.0
+ version: 10.43.0(react@19.2.4)
'@sentry/tracing':
specifier: ^7.120.4
version: 7.120.4
'@statelyai/inspect':
specifier: ^0.4.0
- version: 0.4.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.26.0)
+ version: 0.4.0(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.28.0)
'@tailwindcss/postcss':
- specifier: ^4.1.18
- version: 4.1.18
+ specifier: ^4.2.1
+ version: 4.2.1
'@tanstack/query-sync-storage-persister':
- specifier: ^5.90.22
- version: 5.90.22
+ specifier: ^5.90.24
+ version: 5.90.24
'@tanstack/react-query':
- specifier: ^5.90.20
- version: 5.90.20(react@19.2.4)
+ specifier: ^5.90.21
+ version: 5.90.21(react@19.2.4)
'@tanstack/react-query-persist-client':
- specifier: ^5.90.22
- version: 5.90.22(@tanstack/react-query@5.90.20(react@19.2.4))(react@19.2.4)
+ specifier: ^5.90.24
+ version: 5.90.24(@tanstack/react-query@5.90.21(react@19.2.4))(react@19.2.4)
'@tanstack/react-table':
specifier: ^8.21.3
version: 8.21.3(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@tiptap/core':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/pm@3.18.0)
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/pm@3.20.1)
'@tiptap/extension-code-block-lowlight':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/extension-code-block@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)(highlight.js@11.11.1)(lowlight@3.3.0)
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/extension-code-block@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)(highlight.js@11.11.1)(lowlight@3.3.0)
'@tiptap/extension-link':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
'@tiptap/extension-placeholder':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/extensions@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/extensions@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
'@tiptap/extension-table':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
'@tiptap/extension-table-cell':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/extension-table@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/extension-table@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
'@tiptap/extension-table-header':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/extension-table@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/extension-table@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
'@tiptap/extension-table-row':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/extension-table@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/extension-table@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
'@tiptap/extension-typography':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
'@tiptap/markdown':
- specifier: ^3.18.0
- version: 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ specifier: ^3.20.1
+ version: 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
'@tiptap/pm':
- specifier: ^3.18.0
- version: 3.18.0
+ specifier: ^3.20.1
+ version: 3.20.1
'@tiptap/react':
- specifier: ^3.18.0
- version: 3.18.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^3.20.1
+ version: 3.20.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
'@tiptap/starter-kit':
- specifier: ^3.18.0
- version: 3.18.0
+ specifier: ^3.20.1
+ version: 3.20.1
'@uptrace/node':
specifier: ^2.3.0
version: 2.3.0(encoding@0.1.13)
'@vercel/og':
- specifier: ^0.8.6
- version: 0.8.6
+ specifier: ^0.11.1
+ version: 0.11.1
'@xstate/react':
- specifier: ^6.0.0
- version: 6.0.0(@types/react@19.2.7)(react@19.2.4)(xstate@5.26.0)
+ specifier: ^6.1.0
+ version: 6.1.0(@types/react@19.2.7)(react@19.2.4)(xstate@5.28.0)
blurhash:
specifier: ^2.0.5
version: 2.0.5
@@ -180,8 +180,8 @@ importers:
specifier: ^2.1.1
version: 2.1.1
dayjs:
- specifier: ^1.11.19
- version: 1.11.19
+ specifier: ^1.11.20
+ version: 1.11.20
downloadjs:
specifier: ^1.4.7
version: 1.4.7
@@ -207,17 +207,17 @@ importers:
specifier: ^1.11.13
version: 1.11.13
i18next:
- specifier: ^25.8.0
- version: 25.8.0(typescript@5.9.3)
+ specifier: ^25.8.18
+ version: 25.8.18(typescript@5.9.3)
i18next-browser-languagedetector:
- specifier: ^8.2.0
- version: 8.2.0
+ specifier: ^8.2.1
+ version: 8.2.1
i18next-resources-to-backend:
specifier: ^1.2.1
version: 1.2.1
import-in-the-middle:
- specifier: ^2.0.6
- version: 2.0.6
+ specifier: ^3.0.0
+ version: 3.0.0
intersection-observer:
specifier: ^0.12.2
version: 0.12.2
@@ -240,17 +240,17 @@ importers:
specifier: ^3.3.0
version: 3.3.0
lucide-react:
- specifier: ^0.556.0
- version: 0.556.0(react@19.2.4)
+ specifier: ^0.577.0
+ version: 0.577.0(react@19.2.4)
masonic:
specifier: ^4.1.0
version: 4.1.0(react@19.2.4)
motion:
- specifier: ^12.29.2
- version: 12.29.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ specifier: ^12.36.0
+ version: 12.36.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
next:
specifier: ^16.1.6
- version: 16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ version: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
opentelemetry-node-metrics:
specifier: ^3.0.0
version: 3.0.0
@@ -282,14 +282,14 @@ importers:
specifier: ^19.2.4
version: 19.2.4(react@19.2.4)
react-hook-form:
- specifier: ^7.71.1
- version: 7.71.1(react@19.2.4)
+ specifier: ^7.71.2
+ version: 7.71.2(react@19.2.4)
react-hot-toast:
specifier: ^2.6.0
version: 2.6.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react-i18next:
- specifier: ^16.5.4
- version: 16.5.4(i18next@25.8.0(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
+ specifier: ^16.5.8
+ version: 16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3)
react-image-crop:
specifier: ^11.0.10
version: 11.0.10(react@19.2.4)
@@ -309,8 +309,8 @@ importers:
specifier: ^4.4.5
version: 4.4.5(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
redis:
- specifier: ^5.10.0
- version: 5.10.0
+ specifier: ^5.11.0
+ version: 5.11.0
require-in-the-middle:
specifier: ^8.0.1
version: 8.0.1
@@ -318,51 +318,51 @@ importers:
specifier: ^0.34.5
version: 0.34.5
shiki:
- specifier: ^3.20.0
- version: 3.20.0
+ specifier: ^4.0.2
+ version: 4.0.2
streamdown:
- specifier: ^2.1.0
- version: 2.1.0(react@19.2.4)
+ specifier: ^2.4.0
+ version: 2.4.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
tailwind-merge:
- specifier: ^3.4.0
- version: 3.4.0
+ specifier: ^3.5.0
+ version: 3.5.0
tailwindcss:
- specifier: ^4.1.18
- version: 4.1.18
+ specifier: ^4.2.1
+ version: 4.2.1
xstate:
- specifier: ^5.26.0
- version: 5.26.0
+ specifier: ^5.28.0
+ version: 5.28.0
zod:
specifier: ^4.3.6
version: 4.3.6
devDependencies:
'@graphql-codegen/cli':
specifier: ^5.0.7
- version: 5.0.7(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)(typescript@5.9.3)(utf-8-validate@5.0.10)
+ version: 5.0.7(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)(typescript@5.9.3)(utf-8-validate@5.0.10)
'@graphql-codegen/client-preset':
specifier: ^4.8.3
- version: 4.8.3(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)
+ version: 4.8.3(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)
'@graphql-codegen/introspection':
specifier: 4.0.3
- version: 4.0.3(encoding@0.1.13)(graphql@16.12.0)
+ version: 4.0.3(encoding@0.1.13)(graphql@16.13.1)
'@graphql-codegen/typescript':
specifier: 4.1.6
- version: 4.1.6(encoding@0.1.13)(graphql@16.12.0)
+ version: 4.1.6(encoding@0.1.13)(graphql@16.13.1)
'@graphql-codegen/typescript-operations':
specifier: 4.6.1
- version: 4.6.1(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)
+ version: 4.6.1(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)
'@graphql-codegen/typescript-react-apollo':
specifier: 4.4.0
- version: 4.4.0(encoding@0.1.13)(graphql@16.12.0)
+ version: 4.4.0(encoding@0.1.13)(graphql@16.13.1)
'@jest/globals':
specifier: ^30.2.0
version: 30.2.0
'@tailwindcss/forms':
specifier: ^0.5.11
- version: 0.5.11(tailwindcss@4.1.18)
+ version: 0.5.11(tailwindcss@4.2.1)
'@tanstack/react-query-devtools':
specifier: ^5.91.3
- version: 5.91.3(@tanstack/react-query@5.90.20(react@19.2.4))(react@19.2.4)
+ version: 5.91.3(@tanstack/react-query@5.90.21(react@19.2.4))(react@19.2.4)
'@testing-library/jest-dom':
specifier: ^6.9.1
version: 6.9.1
@@ -409,8 +409,8 @@ importers:
specifier: ^4.4.12
version: 4.4.12(@types/react@19.2.7)
autoprefixer:
- specifier: ^10.4.22
- version: 10.4.22(postcss@8.5.6)
+ specifier: ^10.4.27
+ version: 10.4.27(postcss@8.5.8)
coveralls:
specifier: ^3.1.1
version: 3.1.1
@@ -424,29 +424,29 @@ importers:
specifier: ^16.1.6
version: 16.1.6(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)
graphql:
- specifier: ^16.12.0
- version: 16.12.0
+ specifier: ^16.13.1
+ version: 16.13.1
graphql-tag:
specifier: ^2.12.6
- version: 2.12.6(graphql@16.12.0)
+ version: 2.12.6(graphql@16.13.1)
jest:
- specifier: ^30.2.0
- version: 30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
+ specifier: ^30.3.0
+ version: 30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
jest-environment-jsdom:
- specifier: ^30.2.0
- version: 30.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ specifier: ^30.3.0
+ version: 30.3.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
lefthook:
- specifier: ^2.0.16
- version: 2.0.16
+ specifier: ^2.1.4
+ version: 2.1.4
lint-staged:
- specifier: ^16.2.7
- version: 16.2.7
+ specifier: ^16.4.0
+ version: 16.4.0
postcss:
- specifier: ^8.5.6
- version: 8.5.6
+ specifier: ^8.5.8
+ version: 8.5.8
postcss-simple-vars:
specifier: ^7.0.1
- version: 7.0.1(postcss@8.5.6)
+ version: 7.0.1(postcss@8.5.8)
prettier:
specifier: ^3.8.1
version: 3.8.1
@@ -461,7 +461,7 @@ importers:
version: 1.5.5(redux@5.0.1)
ts-jest:
specifier: ^29.4.6
- version: 29.4.6(@babel/core@7.28.6)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.6))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0))(typescript@5.9.3)
+ version: 29.4.6(@babel/core@7.29.0)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.29.0))(jest-util@30.3.0)(jest@30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0))(typescript@5.9.3)
tw-animate-css:
specifier: ^1.4.0
version: 1.4.0
@@ -490,41 +490,38 @@ packages:
'@annatarhe/clippingkk-widget@0.0.9':
resolution: {integrity: sha512-YckNnme78QbOk3vO7UJx4lTVs0NaBba+J86DVrL2DwLI3pEB1exXPABTq8vuDpvN9atcGIBkQGK6g8ptyCh6Ow==}
- '@annatarhe/lake-ui@0.0.28':
- resolution: {integrity: sha512-6jqN/kRjUnWpmL6Wi5dcFLa4PttUCAer3RztnP6xxgolXRwLTo2S8k37/f4NXQf2DxxRsmu95zSgw5NAzUDNXg==}
+ '@annatarhe/lake-ui@0.0.31':
+ resolution: {integrity: sha512-6i9Ei7HOd7aHREwyr2yH68sT8P4HfUa+vYWNkcXYFRRlX7aTA0xwkx/ckNA2e0Hv4VZvylPwoY9NkXKp5o7Iwg==}
peerDependencies:
lucide-react: ^0.475.0
react: ^19.0.0
react-dom: ^19.0.0
- '@apm-js-collab/code-transformer@0.8.2':
- resolution: {integrity: sha512-YRjJjNq5KFSjDUoqu5pFUWrrsvGOxl6c3bu+uMFc9HNNptZ2rNU/TI2nLw4jnhQNtka972Ee2m3uqbvDQtPeCA==}
-
- '@apm-js-collab/tracing-hooks@0.3.1':
- resolution: {integrity: sha512-Vu1CbmPURlN5fTboVuKMoJjbO5qcq9fA5YXpskx3dXe/zTBvjODFoerw+69rVBlRLrJpwPqSDqEuJDEKIrTldw==}
-
- '@apollo/client-integration-nextjs@0.12.3':
- resolution: {integrity: sha512-kX/PwWYJqwNBusnxm5AEM/0eEgkRJWAG04iKcJE2wAg1M+81X+sojlZXdFK5oQB2tc5+H2atzwWiLBq+mk5ddQ==}
+ '@apollo/client-integration-nextjs@0.14.4':
+ resolution: {integrity: sha512-4fXHqP3Nh87PvJ3lOU7i/phFPrcfuhla4lWF0H9zyIm1TJGRMZRfJ/27SU87pb/f0rzGKKPzKH+N8dmKOqY3qQ==}
peerDependencies:
- '@apollo/client': ^3.13.0
- next: ^15.2.3
+ '@apollo/client': ^4.0.0
+ next: ^15.2.3 || ^16.0.0
react: ^19
+ rxjs: ^7.3.0
- '@apollo/client-react-streaming@0.12.3':
- resolution: {integrity: sha512-RyLHV29R79lJQ/qVhXevDV0lVgTujFsbzr4RzyhtjWRknDX4GP7CGKTESHu8/JDM1y6XC8AdNwnXT3dkSBjUsw==}
+ '@apollo/client-react-streaming@0.14.4':
+ resolution: {integrity: sha512-4f2aZHLfNBWcBGJYWSVQRJVVJ76qW1cLhDcM6YAKey9At86sHt6QfIkAmmHT0yxgwjPCWQiTIQOPwPcwjSswIQ==}
peerDependencies:
- '@apollo/client': ^3.13.0
+ '@apollo/client': ^4.0.0
graphql: ^16 || >=17.0.0-alpha.2
react: ^19
react-dom: ^19
+ rxjs: ^7.3.0
- '@apollo/client@3.13.9':
- resolution: {integrity: sha512-RStSzQfL1XwL6/NWd7W8avhGQYTgPCtJ+qHkkTTSj9Upp3VVm6Oppv81YWdXG1FgEpDPW4hvCrTUELdcC4inCQ==}
+ '@apollo/client@4.1.6':
+ resolution: {integrity: sha512-ak8uzqmKeX3u9BziGf83RRyODAJKFkPG72hTNvEj4WjMWFmuKW2gGN1i3OfajKT6yuGjvo+n23ES2zqWDKFCZg==}
peerDependencies:
- graphql: ^15.0.0 || ^16.0.0
+ graphql: ^16.0.0
graphql-ws: ^5.5.5 || ^6.0.3
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=19.0.0-rc
+ react: ^17.0.0 || ^18.0.0 || >=19.0.0-rc
+ react-dom: ^17.0.0 || ^18.0.0 || >=19.0.0-rc
+ rxjs: ^7.3.0
subscriptions-transport-ws: ^0.9.0 || ^0.11.0
peerDependenciesMeta:
graphql-ws:
@@ -571,6 +568,10 @@ packages:
resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@7.29.0':
+ resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/compat-data@7.23.5':
resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
engines: {node: '>=6.9.0'}
@@ -595,14 +596,14 @@ packages:
resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.28.5':
- resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.28.6':
resolution: {integrity: sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.29.0':
+ resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.23.6':
resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
engines: {node: '>=6.9.0'}
@@ -623,14 +624,14 @@ packages:
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.28.5':
- resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.28.6':
resolution: {integrity: sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.29.1':
+ resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
@@ -725,6 +726,10 @@ packages:
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.28.6':
+ resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-replace-supers@7.22.20':
resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==}
engines: {node: '>=6.9.0'}
@@ -845,6 +850,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.29.0':
+ resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-proposal-class-properties@7.18.6':
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
engines: {node: '>=6.9.0'}
@@ -920,6 +930,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-jsx@7.28.6':
+ resolution: {integrity: sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -968,6 +984,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-typescript@7.28.6':
+ resolution: {integrity: sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-arrow-functions@7.23.3':
resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==}
engines: {node: '>=6.9.0'}
@@ -1140,14 +1162,14 @@ packages:
resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.5':
- resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/traverse@7.28.6':
resolution: {integrity: sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.29.0':
+ resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.22.10':
resolution: {integrity: sha512-obaoigiLrlDZ7TUQln/8m4mSqIW2QFeOrCQc9r+xsaHGNoplVNYlRVpsfE8Vj35GEm2ZH4ZhrNYogs/3fj85kg==}
engines: {node: '>=6.9.0'}
@@ -1180,6 +1202,10 @@ packages:
resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.29.0':
+ resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -1353,17 +1379,22 @@ packages:
'@fastify/busboy@3.1.1':
resolution: {integrity: sha512-5DGmA8FTdB2XbDeEwc/5ZXBl6UbBAyBOOLlPuBnZ/N1SwdH9Ii+cOX3tBROlDgcTXxjOYnLMVoKk9+FXAw0CJw==}
- '@fingerprintjs/fingerprintjs@5.0.1':
- resolution: {integrity: sha512-KbaeE/rk2WL8MfpRP6jTI4lSr42SJPjvkyrjP3QU6uUDkOMWWYC2Ts1sNSYcegHC8avzOoYTHBj+2fTqvZWQBA==}
+ '@fastify/otel@0.16.0':
+ resolution: {integrity: sha512-2304BdM5Q/kUvQC9qJO1KZq3Zn1WWsw+WWkVmFEaj1UE2hEIiuFqrPeglQOwEtw/ftngisqfQ3v70TWMmwhhHA==}
+ peerDependencies:
+ '@opentelemetry/api': ^1.9.0
+
+ '@fingerprintjs/fingerprintjs@5.1.0':
+ resolution: {integrity: sha512-8h/CscV3xQ4KSLyXbSK8YFpZ5AaezzHfkl82mn8NJIEWNi1zLfbZSIu7MGGtx4pqa10oejhEk4u0MNutuE63Fw==}
- '@floating-ui/core@1.7.4':
- resolution: {integrity: sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==}
+ '@floating-ui/core@1.7.5':
+ resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==}
- '@floating-ui/dom@1.7.5':
- resolution: {integrity: sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==}
+ '@floating-ui/dom@1.7.6':
+ resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==}
- '@floating-ui/react-dom@2.1.7':
- resolution: {integrity: sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==}
+ '@floating-ui/react-dom@2.1.8':
+ resolution: {integrity: sha512-cC52bHwM/n/CxS87FH0yWdngEZrjdtLW/qVruo68qg+prK7ZQ4YGdut2GyDVpoGeAYe/h899rVeOVm6Oi40k2A==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
@@ -1374,14 +1405,14 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/react@0.27.17':
- resolution: {integrity: sha512-LGVZKHwmWGg6MRHjLLgsfyaX2y2aCNgnD1zT/E6B+/h+vxg+nIJUqHPAlTzsHDyqdgEpJ1Np5kxWuFEErXzoGg==}
+ '@floating-ui/react@0.27.19':
+ resolution: {integrity: sha512-31B8h5mm8YxotlE7/AU/PhNAl8eWxAmjL/v2QOxroDNkTFLk3Uu82u63N3b6TXa4EGJeeZLVcd/9AlNlVqzeog==}
peerDependencies:
react: '>=17.0.0'
react-dom: '>=17.0.0'
- '@floating-ui/utils@0.2.10':
- resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
+ '@floating-ui/utils@0.2.11':
+ resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==}
'@formkit/auto-animate@0.9.0':
resolution: {integrity: sha512-VhP4zEAacXS3dfTpJpJ88QdLqMTcabMg0jwpOSxZ/VzfQVfl3GkZSCZThhGC5uhq/TxPHPzW0dzr4H9Bb1OgKA==}
@@ -1691,10 +1722,6 @@ packages:
peerDependencies:
graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@grpc/grpc-js@1.14.2':
- resolution: {integrity: sha512-QzVUtEFyu05UNx2xr0fCQmStUO17uVQhGNowtxs00IgTZT6/W2PBLfUkj30s0FKJ29VtTa3ArVNIhNP6akQhqA==}
- engines: {node: '>=12.10.0'}
-
'@grpc/grpc-js@1.14.3':
resolution: {integrity: sha512-Iq8QQQ/7X3Sac15oB6p0FmUg/klxQvXLeileoqrTRGJYLV+/9tubbr9ipz0GKHjmXVsgFPo/+W+2cA8eNcR+XA==}
engines: {node: '>=12.10.0'}
@@ -1891,12 +1918,12 @@ packages:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- '@jest/console@30.2.0':
- resolution: {integrity: sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==}
+ '@jest/console@30.3.0':
+ resolution: {integrity: sha512-PAwCvFJ4696XP2qZj+LAn1BWjZaJ6RjG6c7/lkMaUJnkyMS34ucuIsfqYvfskVNvUI27R/u4P1HMYFnlVXG/Ww==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/core@30.2.0':
- resolution: {integrity: sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==}
+ '@jest/core@30.3.0':
+ resolution: {integrity: sha512-U5mVPsBxLSO6xYbf+tgkymLx+iAhvZX43/xI1+ej2ZOPnPdkdO1CzDmFKh2mZBn2s4XZixszHeQnzp1gm/DIxw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -1908,8 +1935,12 @@ packages:
resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/environment-jsdom-abstract@30.2.0':
- resolution: {integrity: sha512-kazxw2L9IPuZpQ0mEt9lu9Z98SqR74xcagANmMBU16X0lS23yPc0+S6hGLUz8kVRlomZEs/5S/Zlpqwf5yu6OQ==}
+ '@jest/diff-sequences@30.3.0':
+ resolution: {integrity: sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ '@jest/environment-jsdom-abstract@30.3.0':
+ resolution: {integrity: sha512-0hNFs5N6We3DMCwobzI0ydhkY10sT1tZSC0AAiy+0g2Dt/qEWgrcV5BrMxPczhe41cxW4qm6X+jqZaUdpZIajA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
canvas: ^3.0.0
@@ -1922,6 +1953,10 @@ packages:
resolution: {integrity: sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/environment@30.3.0':
+ resolution: {integrity: sha512-SlLSF4Be735yQXyh2+mctBOzNDx5s5uLv88/j8Qn1wH679PDcwy67+YdADn8NJnGjzlXtN62asGH/T4vWOkfaw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/expect-utils@30.0.4':
resolution: {integrity: sha512-EgXecHDNfANeqOkcak0DxsoVI4qkDUsR7n/Lr2vtmTBjwLPBnnPOF71S11Q8IObWzxm2QgQoY6f9hzrRD3gHRA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -1930,14 +1965,26 @@ packages:
resolution: {integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/expect-utils@30.3.0':
+ resolution: {integrity: sha512-j0+W5iQQ8hBh7tHZkTQv3q2Fh/M7Je72cIsYqC4OaktgtO7v1So9UTjp6uPBHIaB6beoF/RRsCgMJKvti0wADA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/expect@30.2.0':
resolution: {integrity: sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/expect@30.3.0':
+ resolution: {integrity: sha512-76Nlh4xJxk2D/9URCn3wFi98d2hb19uWE1idLsTt2ywhvdOldbw3S570hBgn25P4ICUZ/cBjybrBex2g17IDbg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/fake-timers@30.2.0':
resolution: {integrity: sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/fake-timers@30.3.0':
+ resolution: {integrity: sha512-WUQDs8SOP9URStX1DzhD425CqbN/HxUYCTwVrT8sTVBfMvFqYt/s61EK5T05qnHu0po6RitXIvP9otZxYDzTGQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/get-type@30.0.1':
resolution: {integrity: sha512-AyYdemXCptSRFirI5EPazNxyPwAL0jXt3zceFjaj8NFiKP9pOi0bfXonf6qkf82z2t3QWPeLCWWw4stPBzctLw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -1950,12 +1997,16 @@ packages:
resolution: {integrity: sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/globals@30.3.0':
+ resolution: {integrity: sha512-+owLCBBdfpgL3HU+BD5etr1SvbXpSitJK0is1kiYjJxAAJggYMRQz5hSdd5pq1sSggfxPbw2ld71pt4x5wwViA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/pattern@30.0.1':
resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/reporters@30.2.0':
- resolution: {integrity: sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==}
+ '@jest/reporters@30.3.0':
+ resolution: {integrity: sha512-a09z89S+PkQnL055bVj8+pe2Caed2PBOaczHcXCykW5ngxX9EWx/1uAwncxc/HiU0oZqfwseMjyhxgRjS49qPw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
@@ -1975,22 +2026,30 @@ packages:
resolution: {integrity: sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/snapshot-utils@30.3.0':
+ resolution: {integrity: sha512-ORbRN9sf5PP82v3FXNSwmO1OTDR2vzR2YTaR+E3VkSBZ8zadQE6IqYdYEeFH1NIkeB2HIGdF02dapb6K0Mj05g==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/source-map@30.0.1':
resolution: {integrity: sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/test-result@30.2.0':
- resolution: {integrity: sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==}
+ '@jest/test-result@30.3.0':
+ resolution: {integrity: sha512-e/52nJGuD74AKTSe0P4y5wFRlaXP0qmrS17rqOMHeSwm278VyNyXE3gFO/4DTGF9w+65ra3lo3VKj0LBrzmgdQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/test-sequencer@30.2.0':
- resolution: {integrity: sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==}
+ '@jest/test-sequencer@30.3.0':
+ resolution: {integrity: sha512-dgbWy9b8QDlQeRZcv7LNF+/jFiiYHTKho1xirauZ7kVwY7avjFF6uTT0RqlgudB5OuIPagFdVtfFMosjVbk1eA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/transform@30.2.0':
resolution: {integrity: sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/transform@30.3.0':
+ resolution: {integrity: sha512-TLKY33fSLVd/lKB2YI1pH69ijyUblO/BQvCj566YvnwuzoTNr648iE0j22vRvVNk2HsPwByPxATg3MleS3gf5A==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jest/types@30.0.1':
resolution: {integrity: sha512-HGwoYRVF0QSKJu1ZQX0o5ZrUrrhj0aOOFA8hXrumD7SIzjouevhawbTjmXdwOmURdGluU9DM/XvGm3NyFoiQjw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -1999,6 +2058,10 @@ packages:
resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ '@jest/types@30.3.0':
+ resolution: {integrity: sha512-JHm87k7bA33hpBngtU8h6UBub/fqqA9uXfw+21j5Hmk7ooPHlboRNxHq0JcMtC+n8VJGP1mcfnD3Mk+XKe1oSw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
'@jridgewell/gen-mapping@0.3.13':
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
@@ -2041,8 +2104,8 @@ packages:
'@jsr/prompt-pal__node-sdk@0.4.7':
resolution: {integrity: sha512-82RzgQvAnYj6kqyh5/aKhERf/TNFf9s1AHmTDrX/Rkfs2kBFKDbG6AhCdgCxUE25zrg8hYIw5cj8dN8fRxI6oQ==, tarball: https://npm.jsr.io/~/11/@jsr/prompt-pal__node-sdk/0.4.7.tgz}
- '@marsidev/react-turnstile@1.4.1':
- resolution: {integrity: sha512-1jE0IjvB8z+q1NFRs3149gXzXwIzXQWqQjn9fmAr13BiE3RYLWck5Me6flHYE90shW5L12Jkm6R1peS1OnA9oQ==}
+ '@marsidev/react-turnstile@1.4.2':
+ resolution: {integrity: sha512-xs1qOuyeMOz6t9BXXCXWiukC0/0+48vR08B7uwNdG05wCMnbcNgxiFmdFKDOFbM76qFYFRYlGeRfhfq1U/iZmA==}
peerDependencies:
react: ^17.0.2 || ^18.0.0 || ^19.0
react-dom: ^17.0.2 || ^18.0.0 || ^19.0
@@ -2071,8 +2134,8 @@ packages:
resolution: {integrity: sha512-KQs76SGqTOG/pTuqRGwzy1lNAm96z8gbb5XHl9FsbOY7Kt9Ltbr46AiiovDHhNQbXFTPnHEY7FfmNJ4GK4W5dQ==}
engines: {node: '>=18', npm: '>=6.0.0'}
- '@next/bundle-analyzer@16.1.1':
- resolution: {integrity: sha512-aNJy301GGH8k36rDgrYdnyYEdjRQg6csMi1njzqHo+3qyZvOOWMHSv+p7SztNTzP5RU2KRwX0pPwYBtDcE+vVA==}
+ '@next/bundle-analyzer@16.1.6':
+ resolution: {integrity: sha512-ee2kagdTaeEWPlotgdTOqFHYcD3e2m2bbE3I9Rq2i6ABYi5OgopmtEUe8NM23viaYxLV2tDH/2nd5+qKoEr6cw==}
'@next/env@16.1.6':
resolution: {integrity: sha512-N1ySLuZjnAtN3kFnwhAwPvZah8RJxKasD7x1f8shFqhncnWZn4JMfg37diLNuoHsLAlrDfM3g4mawVdtAG8XLQ==}
@@ -2128,8 +2191,8 @@ packages:
cpu: [x64]
os: [win32]
- '@next/third-parties@16.1.1':
- resolution: {integrity: sha512-i3NWXWiNpXGaUi6vGDrK7rC5qLhuCmuhD1BeaOh4Ma8piUBeUhOjEa1UfpVndeC3JcqWXPaYzqO1Hd1U6hql/w==}
+ '@next/third-parties@16.1.6':
+ resolution: {integrity: sha512-/cLY1egaH529ylSMSK+C8dA3nWDLL4hOFR4fca9OLWWxjcNwzsbuq2pPb/tmdWL9Zj3K1nTjd1pWQoSlaDQ0VA==}
peerDependencies:
next: ^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0-beta.0
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
@@ -2154,6 +2217,10 @@ packages:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
+ '@opentelemetry/api-logs@0.207.0':
+ resolution: {integrity: sha512-lAb0jQRVyleQQGiuuvCOTDVspc14nx6XJjP4FspJ1sNARo3Regq4ZZbrc3rN4b1TYSuUCvgH+UXUPug4SLOqEQ==}
+ engines: {node: '>=8.0.0'}
+
'@opentelemetry/api-logs@0.208.0':
resolution: {integrity: sha512-CjruKY9V6NMssL/T1kAFgzosF1v9o6oeN+aX5JB/C/xPNtmgIJqcXHG7fA82Ou1zCpWGl4lROQUKwUNE1pMCyg==}
engines: {node: '>=8.0.0'}
@@ -2166,6 +2233,10 @@ packages:
resolution: {integrity: sha512-swFdZq8MCdmdR22jTVGQDhwqDzcI4M10nhjXkLr1EsIzXgZBqm4ZlmmcWsg3TSNf+3mzgOiqveXmBLZuDi2Lgg==}
engines: {node: '>=8.0.0'}
+ '@opentelemetry/api-logs@0.213.0':
+ resolution: {integrity: sha512-zRM5/Qj6G84Ej3F1yt33xBVY/3tnMxtL1fiDIxYbDWYaZ/eudVw3/PBiZ8G7JwUxXxjW8gU4g6LnOyfGKYHYgw==}
+ engines: {node: '>=8.0.0'}
+
'@opentelemetry/api@1.9.0':
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
@@ -2195,11 +2266,11 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.9.0
- '@opentelemetry/context-async-hooks@2.2.0':
- resolution: {integrity: sha512-qRkLWiUEZNAmYapZ7KGS5C4OmBLcP/H2foXeOEaowYCR0wi89fHejrfYfbuLVCMLp/dWZXKvQusdbUEZjERfwQ==}
+ '@opentelemetry/configuration@0.213.0':
+ resolution: {integrity: sha512-MfVgZiUuwL1d3bPPvXcEkVHGTGNUGoqGK97lfwBuRoKttcVGGqDyxTCCVa5MGbirtBQkUTysXMBUVWPaq7zbWw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/api': ^1.9.0
'@opentelemetry/context-async-hooks@2.4.0':
resolution: {integrity: sha512-jn0phJ+hU7ZuvaoZE/8/Euw3gvHJrn2yi+kXrymwObEPVPjtwCmkvXDRQCWli+fCTTF/aSOtXaLr7CLIvv3LQg==}
@@ -2213,8 +2284,8 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/core@2.2.0':
- resolution: {integrity: sha512-FuabnnUm8LflnieVxs6eP7Z383hgQU4W1e3KJS6aOG3RxWxcHyBxH8fDMHNgu/gFx/M2jvTOW/4/PHhLz6bjWw==}
+ '@opentelemetry/context-async-hooks@2.6.0':
+ resolution: {integrity: sha512-L8UyDwqpTcbkIK5cgwDRDYDoEhQoj8wp8BwsO19w3LB1Z41yEQm2VJyNfAi9DrLP/YTqXqWpKHyZfR9/tFYo1Q==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
@@ -2231,17 +2302,23 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/exporter-jaeger@2.2.0':
- resolution: {integrity: sha512-nMDUoZ9IniddS0eyvVSnWFhTLEoIxZUQHnnxvPDtJVkACXinZjfaPmSuXLfsIrwu5lrjmPW6Afh5/zUokUbInA==}
+ '@opentelemetry/core@2.5.1':
+ resolution: {integrity: sha512-Dwlc+3HAZqpgTYq0MUyZABjFkcrKTePwuiFVLjahGD8cx3enqihmpAmdgNFO1R4m/sIe5afjJrA25Prqy4NXlA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': ^1.0.0
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/exporter-logs-otlp-grpc@0.208.0':
- resolution: {integrity: sha512-AmZDKFzbq/idME/yq68M155CJW1y056MNBekH9OZewiZKaqgwYN4VYfn3mXVPftYsfrCM2r4V6tS8H2LmfiDCg==}
+ '@opentelemetry/core@2.6.0':
+ resolution: {integrity: sha512-HLM1v2cbZ4TgYN6KEOj+Bbj8rAKriOdkF9Ed3tG25FoprSiQl7kYc+RRT6fUZGOvx0oMi5U67GoFdT+XUn8zEg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': ^1.3.0
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
+ '@opentelemetry/exporter-jaeger@2.6.0':
+ resolution: {integrity: sha512-KzyYCSKg4OpXaczS5+abChe8hnTGJhgXyi9O0HQ6TNcyB/R+Rr7Vslneb9RvpirmsWXZvORhzei3Ed91hPSWHA==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': ^1.0.0
'@opentelemetry/exporter-logs-otlp-grpc@0.210.0':
resolution: {integrity: sha512-+BolenqOO6ow65go7uWRYPvvs/BBIWp1mtRn93VvGduqvMVH/IY8nXrt80a4L9hZ7lHi2Tq2/NcC3H2QzcWKag==}
@@ -2255,8 +2332,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-logs-otlp-http@0.208.0':
- resolution: {integrity: sha512-jOv40Bs9jy9bZVLo/i8FwUiuCvbjWDI+ZW13wimJm4LjnlwJxGgB+N/VWOZUTpM+ah/awXeQqKdNlpLf2EjvYg==}
+ '@opentelemetry/exporter-logs-otlp-grpc@0.213.0':
+ resolution: {integrity: sha512-QiRZzvayEOFnenSXi85Eorgy5WTqyNQ+E7gjl6P6r+W3IUIwAIH8A9/BgMWfP056LwmdrBL6+qvnwaIEmug6Yg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2273,8 +2350,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-logs-otlp-proto@0.208.0':
- resolution: {integrity: sha512-Wy8dZm16AOfM7yddEzSFzutHZDZ6HspKUODSUJVjyhnZFMBojWDjSNgduyCMlw6qaxJYz0dlb0OEcb4Eme+BfQ==}
+ '@opentelemetry/exporter-logs-otlp-http@0.213.0':
+ resolution: {integrity: sha512-vqDVSpLp09ZzcFIdb7QZrEFPxUlO3GzdhBKLstq3jhYB5ow3+ZtV5V0ngSdi/0BZs+J5WPiN1+UDV4X5zD/GzA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2291,8 +2368,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-metrics-otlp-grpc@0.208.0':
- resolution: {integrity: sha512-YbEnk7jjYmvhIwp2xJGkEvdgnayrA2QSr28R1LR1klDPvCxsoQPxE6TokDbQpoCEhD3+KmJVEXfb4EeEQxjymg==}
+ '@opentelemetry/exporter-logs-otlp-proto@0.213.0':
+ resolution: {integrity: sha512-gQk41nqfK3KhDk8jbSo3LR/fQBlV7f6Q5xRcfDmL1hZlbgXQPdVFV9/rIfYUrCoq1OM+2NnKnFfGjBt6QpLSsA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2309,8 +2386,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-metrics-otlp-http@0.208.0':
- resolution: {integrity: sha512-QZ3TrI90Y0i1ezWQdvreryjY0a5TK4J9gyDLIyhLBwV+EQUvyp5wR7TFPKCAexD4TDSWM0t3ulQDbYYjVtzTyA==}
+ '@opentelemetry/exporter-metrics-otlp-grpc@0.213.0':
+ resolution: {integrity: sha512-Z8gYKUAU48qwm+a1tjnGv9xbE7a5lukVIwgF6Z5i3VPXPVMe4Sjra0nN3zU7m277h+V+ZpsPGZJ2Xf0OTkL7/w==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2327,8 +2404,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-metrics-otlp-proto@0.208.0':
- resolution: {integrity: sha512-CvvVD5kRDmRB/uSMalvEF6kiamY02pB46YAqclHtfjJccNZFxbkkXkMMmcJ7NgBFa5THmQBNVQ2AHyX29nRxOw==}
+ '@opentelemetry/exporter-metrics-otlp-http@0.213.0':
+ resolution: {integrity: sha512-yw3fTIw4KQIRXC/ZyYQq5gtA3Ogfdfz/g5HVgleobQAcjUUE8Nj3spGMx8iQPp+S+u6/js7BixufRkXhzLmpJA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2345,8 +2422,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-prometheus@0.208.0':
- resolution: {integrity: sha512-Rgws8GfIfq2iNWCD3G1dTD9xwYsCof1+tc5S5X0Ahdb5CrAPE+k5P70XCWHqrFFurVCcKaHLJ/6DjIBHWVfLiw==}
+ '@opentelemetry/exporter-metrics-otlp-proto@0.213.0':
+ resolution: {integrity: sha512-geHF+zZaDb0/WRkJTxR8o8dG4fCWT/Wq7HBdNZCxwH5mxhwRi/5f37IDYH7nvU+dwU6IeY4Pg8TPI435JCiNkg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2363,8 +2440,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-trace-otlp-grpc@0.208.0':
- resolution: {integrity: sha512-E/eNdcqVUTAT7BC+e8VOw/krqb+5rjzYkztMZ/o+eyJl+iEY6PfczPXpwWuICwvsm0SIhBoh9hmYED5Vh5RwIw==}
+ '@opentelemetry/exporter-prometheus@0.213.0':
+ resolution: {integrity: sha512-FyV3/JfKGAgx+zJUwCHdjQHbs+YeGd2fOWvBHYrW6dmfv/w89lb8WhJTSZEoWgP525jwv/gFeBttlGu1flebdA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2381,8 +2458,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-trace-otlp-http@0.208.0':
- resolution: {integrity: sha512-jbzDw1q+BkwKFq9yxhjAJ9rjKldbt5AgIy1gmEIJjEV/WRxQ3B6HcLVkwbjJ3RcMif86BDNKR846KJ0tY0aOJA==}
+ '@opentelemetry/exporter-trace-otlp-grpc@0.213.0':
+ resolution: {integrity: sha512-L8y6piP4jBIIx1Nv7/9hkx25ql6/Cro/kQrs+f9e8bPF0Ar5Dm991v7PnbtubKz6Q4fT872H56QXUWVnz/Cs4Q==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2399,8 +2476,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-trace-otlp-proto@0.208.0':
- resolution: {integrity: sha512-q844Jc3ApkZVdWYd5OAl+an3n1XXf3RWHa3Zgmnhw3HpsM3VluEKHckUUEqHPzbwDUx2lhPRVkqK7LsJ/CbDzA==}
+ '@opentelemetry/exporter-trace-otlp-http@0.213.0':
+ resolution: {integrity: sha512-tnRmJD39aWrE/Sp7F6AbRNAjKHToDkAqBi6i0lESpGWz3G+f4bhVAV6mgSXH2o18lrDVJXo6jf9bAywQw43wRA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2417,11 +2494,11 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/exporter-zipkin@2.2.0':
- resolution: {integrity: sha512-VV4QzhGCT7cWrGasBWxelBjqbNBbyHicWWS/66KoZoe9BzYwFB72SH2/kkc4uAviQlO8iwv2okIJy+/jqqEHTg==}
+ '@opentelemetry/exporter-trace-otlp-proto@0.213.0':
+ resolution: {integrity: sha512-six3vPq3sL+ge1iZOfKEg+RHuFQhGb8ZTdlvD234w/0gi8ty/qKD46qoGpKvM3amy5yYunWBKiFBW47WaVS26w==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': ^1.0.0
+ '@opentelemetry/api': ^1.3.0
'@opentelemetry/exporter-zipkin@2.4.0':
resolution: {integrity: sha512-qpiXY0TUEFjBBp9b1na9LfuVQw6W8LH+te7uv+CC+0Up78ZDtZZwOjK2M7CL7Nspnw+yS4JdgEA7oxsBu0Ctsg==}
@@ -2435,20 +2512,26 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.0.0
+ '@opentelemetry/exporter-zipkin@2.6.0':
+ resolution: {integrity: sha512-AFP77OQMLfw/Jzh6WT2PtrywstNjdoyT9t9lYrYdk1s4igsvnMZ8DkZKCwxsItC01D+4Lydgrb+Wy0bAvpp8xg==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': ^1.0.0
+
'@opentelemetry/id-generator-aws-xray@2.1.0':
resolution: {integrity: sha512-hyyEpR6cwxmrXRSQPCIOUkTY+RQRM+zSUpzF3wnu56Ow7Rv+yU0N18b64cVoX2Ir98lFeesF6nrynEa4eN4gfw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.0.0
- '@opentelemetry/instrumentation-amqplib@0.55.0':
- resolution: {integrity: sha512-5ULoU8p+tWcQw5PDYZn8rySptGSLZHNX/7srqo2TioPnAAcvTy6sQFQXsNPrAnyRRtYGMetXVyZUy5OaX1+IfA==}
+ '@opentelemetry/instrumentation-amqplib@0.57.0':
+ resolution: {integrity: sha512-hgHnbcopDXju7164mwZu7+6mLT/+O+6MsyedekrXL+HQAYenMqeG7cmUOE0vI6s/9nW08EGHXpD+Q9GhLU1smA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-amqplib@0.57.0':
- resolution: {integrity: sha512-hgHnbcopDXju7164mwZu7+6mLT/+O+6MsyedekrXL+HQAYenMqeG7cmUOE0vI6s/9nW08EGHXpD+Q9GhLU1smA==}
+ '@opentelemetry/instrumentation-amqplib@0.58.0':
+ resolution: {integrity: sha512-fjpQtH18J6GxzUZ+cwNhWUpb71u+DzT7rFkg5pLssDGaEber91Y2WNGdpVpwGivfEluMlNMZumzjEqfg8DeKXQ==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2477,14 +2560,14 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-connect@0.52.0':
- resolution: {integrity: sha512-GXPxfNB5szMbV3I9b7kNWSmQBoBzw7MT0ui6iU/p+NIzVx3a06Ri2cdQO7tG9EKb4aKSLmfX9Cw5cKxXqX6Ohg==}
+ '@opentelemetry/instrumentation-connect@0.53.0':
+ resolution: {integrity: sha512-SoFqipWLUEYVIxvz0VYX9uWLJhatJG4cqXpRe1iophLofuEtqFUn8YaEezjz2eJK74eTUQ0f0dJVOq7yMXsJGQ==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-connect@0.53.0':
- resolution: {integrity: sha512-SoFqipWLUEYVIxvz0VYX9uWLJhatJG4cqXpRe1iophLofuEtqFUn8YaEezjz2eJK74eTUQ0f0dJVOq7yMXsJGQ==}
+ '@opentelemetry/instrumentation-connect@0.54.0':
+ resolution: {integrity: sha512-43RmbhUhqt3uuPnc16cX6NsxEASEtn8z/cYV8Zpt6EP4p2h9s4FNuJ4Q9BbEQ2C0YlCCB/2crO1ruVz/hWt8fA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2495,26 +2578,20 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.0.0
- '@opentelemetry/instrumentation-dataloader@0.26.0':
- resolution: {integrity: sha512-P2BgnFfTOarZ5OKPmYfbXfDFjQ4P9WkQ1Jji7yH5/WwB6Wm/knynAoA1rxbjWcDlYupFkyT0M1j6XLzDzy0aCA==}
- engines: {node: ^18.19.0 || >=20.6.0}
- peerDependencies:
- '@opentelemetry/api': ^1.3.0
-
'@opentelemetry/instrumentation-dataloader@0.27.0':
resolution: {integrity: sha512-8e7n8edfTN28nJDpR/H59iW3RbW1fvpt0xatGTfSbL8JS4FLizfjPxO7JLbyWh9D3DSXxrTnvOvXpt6V5pnxJg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-dns@0.53.0':
- resolution: {integrity: sha512-/m4KxS7rWkQpTLJW77cyt0pNzdcgjm2at4XD0nLGhHJz2G3x8GXQ6QOLRc3kPYt1WHJvzQ2UgzjKDz7f83PUXQ==}
+ '@opentelemetry/instrumentation-dataloader@0.28.0':
+ resolution: {integrity: sha512-ExXGBp0sUj8yhm6Znhf9jmuOaGDsYfDES3gswZnKr4MCqoBWQdEFn6EoDdt5u+RdbxQER+t43FoUihEfTSqsjA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-express@0.57.0':
- resolution: {integrity: sha512-HAdx/o58+8tSR5iW+ru4PHnEejyKrAy9fYFhlEI81o10nYxrGahnMAHWiSjhDC7UQSY3I4gjcPgSKQz4rm/asg==}
+ '@opentelemetry/instrumentation-dns@0.53.0':
+ resolution: {integrity: sha512-/m4KxS7rWkQpTLJW77cyt0pNzdcgjm2at4XD0nLGhHJz2G3x8GXQ6QOLRc3kPYt1WHJvzQ2UgzjKDz7f83PUXQ==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2525,14 +2602,14 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-fastify@0.54.0':
- resolution: {integrity: sha512-1sIJmA7wuvtNSrFbQek9rl2SNXvQ2JNuitDixL0kWiqL/UkJYkeSSegxmuEg52AAcO5Aa2OtJc0L2Syz/XROYw==}
+ '@opentelemetry/instrumentation-express@0.59.0':
+ resolution: {integrity: sha512-pMKV/qnHiW/Q6pmbKkxt0eIhuNEtvJ7sUAyee192HErlr+a1Jx+FZ3WjfmzhQL1geewyGEiPGkmjjAgNY8TgDA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-fs@0.28.0':
- resolution: {integrity: sha512-FFvg8fq53RRXVBRHZViP+EMxMR03tqzEGpuq55lHNbVPyFklSVfQBN50syPhK5UYYwaStx0eyCtHtbRreusc5g==}
+ '@opentelemetry/instrumentation-fastify@0.54.0':
+ resolution: {integrity: sha512-1sIJmA7wuvtNSrFbQek9rl2SNXvQ2JNuitDixL0kWiqL/UkJYkeSSegxmuEg52AAcO5Aa2OtJc0L2Syz/XROYw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2543,8 +2620,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-generic-pool@0.52.0':
- resolution: {integrity: sha512-ISkNcv5CM2IwvsMVL31Tl61/p2Zm2I2NAsYq5SSBgOsOndT0TjnptjufYVScCnD5ZLD1tpl4T3GEYULLYOdIdQ==}
+ '@opentelemetry/instrumentation-fs@0.30.0':
+ resolution: {integrity: sha512-n3Cf8YhG7reaj5dncGlRIU7iT40bxPOjsBEA5Bc1a1g6e9Qvb+JFJ7SEiMlPbUw4PBmxE3h40ltE8LZ3zVt6OA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2555,8 +2632,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-graphql@0.56.0':
- resolution: {integrity: sha512-IPvNk8AFoVzTAM0Z399t34VDmGDgwT6rIqCUug8P9oAGerl2/PEIYMPOl/rerPGu+q8gSWdmbFSjgg7PDVRd3Q==}
+ '@opentelemetry/instrumentation-generic-pool@0.54.0':
+ resolution: {integrity: sha512-8dXMBzzmEdXfH/wjuRvcJnUFeWzZHUnExkmFJ2uPfa31wmpyBCMxO59yr8f/OXXgSogNgi/uPo9KW9H7LMIZ+g==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2567,14 +2644,14 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-grpc@0.210.0':
- resolution: {integrity: sha512-gwXtFydErdqM6Vq/DMNst1Vb6aRPdZHIA155rgD06QGeqyg+0RQxtW3SCmCzGMwrlMTrqPBIfG/v757Zi4skLA==}
+ '@opentelemetry/instrumentation-graphql@0.58.0':
+ resolution: {integrity: sha512-+yWVVY7fxOs3j2RixCbvue8vUuJ1inHxN2q1sduqDB0Wnkr4vOzVKRYl/Zy7B31/dcPS72D9lo/kltdOTBM3bQ==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-hapi@0.55.0':
- resolution: {integrity: sha512-prqAkRf9e4eEpy4G3UcR32prKE8NLNlA90TdEU1UsghOTg0jUvs40Jz8LQWFEs5NbLbXHYGzB4CYVkCI8eWEVQ==}
+ '@opentelemetry/instrumentation-grpc@0.210.0':
+ resolution: {integrity: sha512-gwXtFydErdqM6Vq/DMNst1Vb6aRPdZHIA155rgD06QGeqyg+0RQxtW3SCmCzGMwrlMTrqPBIfG/v757Zi4skLA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2585,8 +2662,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-http@0.208.0':
- resolution: {integrity: sha512-rhmK46DRWEbQQB77RxmVXGyjs6783crXCnFjYQj+4tDH/Kpv9Rbg3h2kaNyp5Vz2emF1f9HOQQvZoHzwMWOFZQ==}
+ '@opentelemetry/instrumentation-hapi@0.57.0':
+ resolution: {integrity: sha512-Os4THbvls8cTQTVA8ApLfZZztuuqGEeqog0XUnyRW7QVF0d/vOVBEcBCk1pazPFmllXGEdNbbat8e2fYIWdFbw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2597,8 +2674,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-ioredis@0.56.0':
- resolution: {integrity: sha512-XSWeqsd3rKSsT3WBz/JKJDcZD4QYElZEa0xVdX8f9dh4h4QgXhKRLorVsVkK3uXFbC2sZKAS2Ds+YolGwD83Dg==}
+ '@opentelemetry/instrumentation-http@0.211.0':
+ resolution: {integrity: sha512-n0IaQ6oVll9PP84SjbOCwDjaJasWRHi6BLsbMLiT6tNj7QbVOkuA5sk/EfZczwI0j5uTKl1awQPivO/ldVtsqA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2609,8 +2686,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-kafkajs@0.18.0':
- resolution: {integrity: sha512-KCL/1HnZN5zkUMgPyOxfGjLjbXjpd4odDToy+7c+UsthIzVLFf99LnfIBE8YSSrYE4+uS7OwJMhvhg3tWjqMBg==}
+ '@opentelemetry/instrumentation-ioredis@0.59.0':
+ resolution: {integrity: sha512-875UxzBHWkW+P4Y45SoFM2AR8f8TzBMD8eO7QXGCyFSCUMP5s9vtt/BS8b/r2kqLyaRPK6mLbdnZznK3XzQWvw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2621,8 +2698,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-knex@0.53.0':
- resolution: {integrity: sha512-xngn5cH2mVXFmiT1XfQ1aHqq1m4xb5wvU6j9lSgLlihJ1bXzsO543cpDwjrZm2nMrlpddBf55w8+bfS4qDh60g==}
+ '@opentelemetry/instrumentation-kafkajs@0.20.0':
+ resolution: {integrity: sha512-yJXOuWZROzj7WmYCUiyT27tIfqBrVtl1/TwVbQyWPz7rL0r1Lu7kWjD0PiVeTCIL6CrIZ7M2s8eBxsTAOxbNvw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2633,11 +2710,11 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-koa@0.57.0':
- resolution: {integrity: sha512-3JS8PU/D5E3q295mwloU2v7c7/m+DyCqdu62BIzWt+3u9utjxC9QS7v6WmUNuoDN3RM+Q+D1Gpj13ERo+m7CGg==}
+ '@opentelemetry/instrumentation-knex@0.55.0':
+ resolution: {integrity: sha512-FtTL5DUx5Ka/8VK6P1VwnlUXPa3nrb7REvm5ddLUIeXXq4tb9pKd+/ThB1xM/IjefkRSN3z8a5t7epYw1JLBJQ==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': ^1.9.0
+ '@opentelemetry/api': ^1.3.0
'@opentelemetry/instrumentation-koa@0.58.0':
resolution: {integrity: sha512-602W6hEFi3j2QrQQBKWuBUSlHyrwSCc1IXpmItC991i9+xJOsS4n4mEktEk/7N6pavBX35J9OVkhPDXjbFk/1A==}
@@ -2645,11 +2722,11 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.9.0
- '@opentelemetry/instrumentation-lru-memoizer@0.53.0':
- resolution: {integrity: sha512-LDwWz5cPkWWr0HBIuZUjslyvijljTwmwiItpMTHujaULZCxcYE9eU44Qf/pbVC8TulT0IhZi+RoGvHKXvNhysw==}
+ '@opentelemetry/instrumentation-koa@0.59.0':
+ resolution: {integrity: sha512-K9o2skADV20Skdu5tG2bogPKiSpXh4KxfLjz6FuqIVvDJNibwSdu5UvyyBzRVp1rQMV6UmoIk6d3PyPtJbaGSg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': ^1.3.0
+ '@opentelemetry/api': ^1.9.0
'@opentelemetry/instrumentation-lru-memoizer@0.54.0':
resolution: {integrity: sha512-LPji0Qwpye5e1TNAUkHt7oij2Lrtpn2DRTUr4CU69VzJA13aoa2uzP3NutnFoLDUjmuS6vi/lv08A2wo9CfyTA==}
@@ -2657,14 +2734,14 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-memcached@0.53.0':
- resolution: {integrity: sha512-ni6B1n5wdY3XsbfL74Ix5yKQsXRerrgqmhK595ICgkxlU6JDwxoaCmoGmLCKDS/Nr0p3XhIfPVvjOPCfK73nUw==}
+ '@opentelemetry/instrumentation-lru-memoizer@0.55.0':
+ resolution: {integrity: sha512-FDBfT7yDGcspN0Cxbu/k8A0Pp1Jhv/m7BMTzXGpcb8ENl3tDj/51U65R5lWzUH15GaZA15HQ5A5wtafklxYj7g==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-mongodb@0.61.0':
- resolution: {integrity: sha512-OV3i2DSoY5M/pmLk+68xr5RvkHU8DRB3DKMzYJdwDdcxeLs62tLbkmRyqJZsYf3Ht7j11rq35pHOWLuLzXL7pQ==}
+ '@opentelemetry/instrumentation-memcached@0.53.0':
+ resolution: {integrity: sha512-ni6B1n5wdY3XsbfL74Ix5yKQsXRerrgqmhK595ICgkxlU6JDwxoaCmoGmLCKDS/Nr0p3XhIfPVvjOPCfK73nUw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2675,8 +2752,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-mongoose@0.55.0':
- resolution: {integrity: sha512-5afj0HfF6aM6Nlqgu6/PPHFk8QBfIe3+zF9FGpX76jWPS0/dujoEYn82/XcLSaW5LPUDW8sni+YeK0vTBNri+w==}
+ '@opentelemetry/instrumentation-mongodb@0.64.0':
+ resolution: {integrity: sha512-pFlCJjweTqVp7B220mCvCld1c1eYKZfQt1p3bxSbcReypKLJTwat+wbL2YZoX9jPi5X2O8tTKFEOahO5ehQGsA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2687,8 +2764,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-mysql2@0.55.0':
- resolution: {integrity: sha512-0cs8whQG55aIi20gnK8B7cco6OK6N+enNhW0p5284MvqJ5EPi+I1YlWsWXgzv/V2HFirEejkvKiI4Iw21OqDWg==}
+ '@opentelemetry/instrumentation-mongoose@0.57.0':
+ resolution: {integrity: sha512-MthiekrU/BAJc5JZoZeJmo0OTX6ycJMiP6sMOSRTkvz5BrPMYDqaJos0OgsLPL/HpcgHP7eo5pduETuLguOqcg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2699,8 +2776,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-mysql@0.54.0':
- resolution: {integrity: sha512-bqC1YhnwAeWmRzy1/Xf9cDqxNG2d/JDkaxnqF5N6iJKN1eVWI+vg7NfDkf52/Nggp3tl1jcC++ptC61BD6738A==}
+ '@opentelemetry/instrumentation-mysql2@0.57.0':
+ resolution: {integrity: sha512-nHSrYAwF7+aV1E1V9yOOP9TchOodb6fjn4gFvdrdQXiRE7cMuffyLLbCZlZd4wsspBzVwOXX8mpURdRserAhNA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2711,6 +2788,12 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-mysql@0.57.0':
+ resolution: {integrity: sha512-HFS/+FcZ6Q7piM7Il7CzQ4VHhJvGMJWjx7EgCkP5AnTntSN5rb5Xi3TkYJHBKeR27A0QqPlGaCITi93fUDs++Q==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': ^1.3.0
+
'@opentelemetry/instrumentation-nestjs-core@0.56.0':
resolution: {integrity: sha512-2wKd6+/nKyZVTkElTHRZAAEQ7moGqGmTIXlZvfAeV/dNA+6zbbl85JBcyeUFIYt+I42Naq5RgKtUY8fK6/GE1g==}
engines: {node: ^18.19.0 || >=20.6.0}
@@ -2735,14 +2818,14 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-pg@0.61.0':
- resolution: {integrity: sha512-UeV7KeTnRSM7ECHa3YscoklhUtTQPs6V6qYpG283AB7xpnPGCUCUfECFT9jFg6/iZOQTt3FHkB1wGTJCNZEvPw==}
+ '@opentelemetry/instrumentation-pg@0.62.0':
+ resolution: {integrity: sha512-/ZSMRCyFRMjQVx7Wf+BIAOMEdN/XWBbAGTNLKfQgGYs1GlmdiIFkUy8Z8XGkToMpKrgZju0drlTQpqt4Ul7R6w==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-pg@0.62.0':
- resolution: {integrity: sha512-/ZSMRCyFRMjQVx7Wf+BIAOMEdN/XWBbAGTNLKfQgGYs1GlmdiIFkUy8Z8XGkToMpKrgZju0drlTQpqt4Ul7R6w==}
+ '@opentelemetry/instrumentation-pg@0.63.0':
+ resolution: {integrity: sha512-dKm/ODNN3GgIQVlbD6ZPxwRc3kleLf95hrRWXM+l8wYo+vSeXtEpQPT53afEf6VFWDVzJK55VGn8KMLtSve/cg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2753,14 +2836,14 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-redis@0.57.0':
- resolution: {integrity: sha512-bCxTHQFXzrU3eU1LZnOZQ3s5LURxQPDlU3/upBzlWY77qOI1GZuGofazj3jtzjctMJeBEJhNwIFEgRPBX1kp/Q==}
+ '@opentelemetry/instrumentation-redis@0.58.0':
+ resolution: {integrity: sha512-tOGxw+6HZ5LDpMP05zYKtTw5HPqf3PXYHaOuN+pkv6uIgrZ+gTT75ELkd49eXBpjg3t36p8bYpsLgYcpIPqWqA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-redis@0.58.0':
- resolution: {integrity: sha512-tOGxw+6HZ5LDpMP05zYKtTw5HPqf3PXYHaOuN+pkv6uIgrZ+gTT75ELkd49eXBpjg3t36p8bYpsLgYcpIPqWqA==}
+ '@opentelemetry/instrumentation-redis@0.59.0':
+ resolution: {integrity: sha512-JKv1KDDYA2chJ1PC3pLP+Q9ISMQk6h5ey+99mB57/ARk0vQPGZTTEb4h4/JlcEpy7AYT8HIGv7X6l+br03Neeg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2789,26 +2872,26 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-tedious@0.27.0':
- resolution: {integrity: sha512-jRtyUJNZppPBjPae4ZjIQ2eqJbcRaRfJkr0lQLHFmOU/no5A6e9s1OHLd5XZyZoBJ/ymngZitanyRRA5cniseA==}
+ '@opentelemetry/instrumentation-tedious@0.29.0':
+ resolution: {integrity: sha512-Jtnayb074lk7DQL25pOOpjvg4zjJMFjFWOLlKzTF5i1KxMR4+GlR/DSYgwDRfc0a4sfPXzdb/yYw7jRSX/LdFg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-tedious@0.29.0':
- resolution: {integrity: sha512-Jtnayb074lk7DQL25pOOpjvg4zjJMFjFWOLlKzTF5i1KxMR4+GlR/DSYgwDRfc0a4sfPXzdb/yYw7jRSX/LdFg==}
+ '@opentelemetry/instrumentation-tedious@0.30.0':
+ resolution: {integrity: sha512-bZy9Q8jFdycKQ2pAsyuHYUHNmCxCOGdG6eg1Mn75RvQDccq832sU5OWOBnc12EFUELI6icJkhR7+EQKMBam2GA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/instrumentation-undici@0.19.0':
- resolution: {integrity: sha512-Pst/RhR61A2OoZQZkn6OLpdVpXp6qn3Y92wXa6umfJe9rV640r4bc6SWvw4pPN6DiQqPu2c8gnSSZPDtC6JlpQ==}
+ '@opentelemetry/instrumentation-undici@0.20.0':
+ resolution: {integrity: sha512-VGBQ89Bza1pKtV12Lxgv3uMrJ1vNcf1cDV6LAXp2wa6hnl6+IN6lbEmPn6WNWpguZTZaFEvugyZgN8FJuTjLEA==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.7.0
- '@opentelemetry/instrumentation-undici@0.20.0':
- resolution: {integrity: sha512-VGBQ89Bza1pKtV12Lxgv3uMrJ1vNcf1cDV6LAXp2wa6hnl6+IN6lbEmPn6WNWpguZTZaFEvugyZgN8FJuTjLEA==}
+ '@opentelemetry/instrumentation-undici@0.21.0':
+ resolution: {integrity: sha512-gok0LPUOTz2FQ1YJMZzaHcOzDFyT64XJ8M9rNkugk923/p6lDGms/cRW1cqgqp6N6qcd6K6YdVHwPEhnx9BWbw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.7.0
@@ -2819,6 +2902,12 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation@0.207.0':
+ resolution: {integrity: sha512-y6eeli9+TLKnznrR8AZlQMSJT7wILpXH+6EYq5Vf/4Ao+huI7EedxQHwRgVUOMLFbe7VFDvHJrX9/f4lcwnJsA==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': ^1.3.0
+
'@opentelemetry/instrumentation@0.208.0':
resolution: {integrity: sha512-Eju0L4qWcQS+oXxi6pgh7zvE2byogAkcsVv0OjHF/97iOz1N/aKE6etSGowYkie+YA1uo6DNwdSxaaNnLvcRlA==}
engines: {node: ^18.19.0 || >=20.6.0}
@@ -2837,8 +2926,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/otlp-exporter-base@0.208.0':
- resolution: {integrity: sha512-gMd39gIfVb2OgxldxUtOwGJYSH8P1kVFFlJLuut32L6KgUC4gl1dMhn+YC2mGn0bDOiQYSk/uHOdSjuKp58vvA==}
+ '@opentelemetry/instrumentation@0.213.0':
+ resolution: {integrity: sha512-3i9NdkET/KvQomeh7UaR/F4r9P25Rx6ooALlWXPIjypcEOUxksCmVu0zA70NBJWlrMW1rPr/LRidFAflLI+s/w==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2855,8 +2944,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/otlp-grpc-exporter-base@0.208.0':
- resolution: {integrity: sha512-fGvAg3zb8fC0oJAzfz7PQppADI2HYB7TSt/XoCaBJFi1mSquNUjtHXEoviMgObLAa1NRIgOC1lsV1OUKi+9+lQ==}
+ '@opentelemetry/otlp-exporter-base@0.213.0':
+ resolution: {integrity: sha512-MegxAP1/n09Ob2dQvY5NBDVjAFkZRuKtWKxYev1R2M8hrsgXzQGkaMgoEKeUOyQ0FUyYcO29UOnYdQWmWa0PXg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2873,8 +2962,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/otlp-transformer@0.208.0':
- resolution: {integrity: sha512-DCFPY8C6lAQHUNkzcNT9R+qYExvsk6C5Bto2pbNxgicpcSWbe2WHShLxkOxIdNcBiYPdVHv/e7vH7K6TI+C+fQ==}
+ '@opentelemetry/otlp-grpc-exporter-base@0.213.0':
+ resolution: {integrity: sha512-XgRGuLE9usFNlnw2lgMIM4HTwpcIyjdU/xPoJ8v3LbBLBfjaDkIugjc9HoWa7ZSJ/9Bhzgvm/aD0bGdYUFgnTw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -2891,11 +2980,11 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
- '@opentelemetry/propagator-b3@2.2.0':
- resolution: {integrity: sha512-9CrbTLFi5Ee4uepxg2qlpQIozoJuoAZU5sKMx0Mn7Oh+p7UrgCiEV6C02FOxxdYVRRFQVCinYR8Kf6eMSQsIsw==}
+ '@opentelemetry/otlp-transformer@0.213.0':
+ resolution: {integrity: sha512-RSuAlxFFPjeK4d5Y6ps8L2WhaQI6CXWllIjvo5nkAlBpmq2XdYWEBGiAbOF4nDs8CX4QblJDv5BbMUft3sEfDw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/api': ^1.3.0
'@opentelemetry/propagator-b3@2.4.0':
resolution: {integrity: sha512-6VPsFiMUkJBre/86F0d+PZMaUCcuLA9DtZuC46KH8EeVEKZPEM2WlX35M/qmde8UpzoQL9qzdz54YjUYABt8Uw==}
@@ -2909,8 +2998,8 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/propagator-jaeger@2.2.0':
- resolution: {integrity: sha512-FfeOHOrdhiNzecoB1jZKp2fybqmqMPJUXe2ZOydP7QzmTPYcfPeuaclTLYVhK3HyJf71kt8sTl92nV4YIaLaKA==}
+ '@opentelemetry/propagator-b3@2.6.0':
+ resolution: {integrity: sha512-SguK4jMmRvQ0c0dxAMl6K+Eu1+01X0OP7RLiIuHFjOS8hlB23ZYNnhnbAdSQEh5xVXQmH0OAS0TnmVI+6vB2Kg==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
@@ -2927,6 +3016,12 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/propagator-jaeger@2.6.0':
+ resolution: {integrity: sha512-KGWJuvp9X8X36bhHgIhWEnHAzXDInFr+Fvo9IQhhuu6pXLT8mF7HzFyx/X+auZUITvPaZhM39Phj3vK12MbhwA==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
'@opentelemetry/redis-common@0.38.2':
resolution: {integrity: sha512-1BCcU93iwSRZvDAgwUxC/DV4T/406SkMfxGqu5ojc3AvNI+I9GhV7v0J1HljsczuuhcnFLYqD5VmwVXfCGHzxA==}
engines: {node: ^18.19.0 || >=20.6.0}
@@ -2961,12 +3056,6 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.0.0
- '@opentelemetry/resources@2.2.0':
- resolution: {integrity: sha512-1pNQf/JazQTMA0BiO5NINUzH0cbLbbl7mntLa4aJNmCCXSj0q03T5ZXXL0zw4G55TjdL9Tz32cznGClf+8zr5A==}
- engines: {node: ^18.19.0 || >=20.6.0}
- peerDependencies:
- '@opentelemetry/api': '>=1.3.0 <1.10.0'
-
'@opentelemetry/resources@2.4.0':
resolution: {integrity: sha512-RWvGLj2lMDZd7M/5tjkI/2VHMpXebLgPKvBUd9LRasEWR2xAynDwEYZuLvY9P2NGG73HF07jbbgWX2C9oavcQg==}
engines: {node: ^18.19.0 || >=20.6.0}
@@ -2979,11 +3068,17 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.10.0'
- '@opentelemetry/sdk-logs@0.208.0':
- resolution: {integrity: sha512-QlAyL1jRpOeaqx7/leG1vJMp84g0xKP6gJmfELBpnI4O/9xPX+Hu5m1POk9Kl+veNkyth5t19hRlN6tNY1sjbA==}
+ '@opentelemetry/resources@2.5.1':
+ resolution: {integrity: sha512-BViBCdE/GuXRlp9k7nS1w6wJvY5fnFX5XvuEtWsTAOQFIO89Eru7lGW3WbfbxtCuZ/GbrJfAziXG0w0dpxL7eQ==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': '>=1.4.0 <1.10.0'
+ '@opentelemetry/api': '>=1.3.0 <1.10.0'
+
+ '@opentelemetry/resources@2.6.0':
+ resolution: {integrity: sha512-D4y/+OGe3JSuYUCBxtH5T9DSAWNcvCb/nQWIga8HNtXTVPQn59j0nTBAgaAXxUVBDl40mG3Tc76b46wPlZaiJQ==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.3.0 <1.10.0'
'@opentelemetry/sdk-logs@0.210.0':
resolution: {integrity: sha512-YuaL92Dpyk/Kc1o4e9XiaWWwiC0aBFN+4oy+6A9TP4UNJmRymPMEX10r6EMMFMD7V0hktiSig9cwWo59peeLCQ==}
@@ -2997,11 +3092,11 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.4.0 <1.10.0'
- '@opentelemetry/sdk-metrics@2.2.0':
- resolution: {integrity: sha512-G5KYP6+VJMZzpGipQw7Giif48h6SGQ2PFKEYCybeXJsOCB4fp8azqMAAzE5lnnHK3ZVwYQrgmFbsUJO/zOnwGw==}
+ '@opentelemetry/sdk-logs@0.213.0':
+ resolution: {integrity: sha512-00xlU3GZXo3kXKve4DLdrAL0NAFUaZ9appU/mn00S/5kSUdAvyYsORaDUfR04Mp2CLagAOhrzfUvYozY/EZX2g==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': '>=1.9.0 <1.10.0'
+ '@opentelemetry/api': '>=1.4.0 <1.10.0'
'@opentelemetry/sdk-metrics@2.4.0':
resolution: {integrity: sha512-qSbfq9mXbLMqmPEjijl32f3ZEmiHekebRggPdPjhHI6t1CsAQOR2Aw/SuTDftk3/l2aaPHpwP3xM2DkgBA1ANw==}
@@ -3015,11 +3110,11 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.9.0 <1.10.0'
- '@opentelemetry/sdk-node@0.208.0':
- resolution: {integrity: sha512-pbAqpZ7zTMFuTf3YecYsecsto/mheuvnK2a/jgstsE5ynWotBjgF5bnz5500W9Xl2LeUfg04WMt63TWtAgzRMw==}
+ '@opentelemetry/sdk-metrics@2.6.0':
+ resolution: {integrity: sha512-CicxWZxX6z35HR83jl+PLgtFgUrKRQ9LCXyxgenMnz5A1lgYWfAog7VtdOvGkJYyQgMNPhXQwkYrDLujk7z1Iw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': '>=1.3.0 <1.10.0'
+ '@opentelemetry/api': '>=1.9.0 <1.10.0'
'@opentelemetry/sdk-node@0.210.0':
resolution: {integrity: sha512-KymqUtYvfpblDNgGxBXYqCcDjYXwjOF7Muc6ocs0rMlG/66Hcs9KiJ7hg4zLOv63JubF/vxi5WXaLrQrPKyaZQ==}
@@ -3033,8 +3128,8 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.10.0'
- '@opentelemetry/sdk-trace-base@2.2.0':
- resolution: {integrity: sha512-xWQgL0Bmctsalg6PaXExmzdedSp3gyKV8mQBwK/j9VGdCDu2fmXIb2gAehBKbkXCpJ4HPkgv3QfoJWRT4dHWbw==}
+ '@opentelemetry/sdk-node@0.213.0':
+ resolution: {integrity: sha512-8s7SQtY8DIAjraXFrUf0+I90SBAUQbsMWMtUGKmusswRHWXtKJx42aJQMoxEtC82Csqj+IlBH6FoP8XmmUDSrQ==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.10.0'
@@ -3051,11 +3146,17 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.10.0'
- '@opentelemetry/sdk-trace-node@2.2.0':
- resolution: {integrity: sha512-+OaRja3f0IqGG2kptVeYsrZQK9nKRSpfFrKtRBq4uh6nIB8bTBgaGvYQrQoRrQWQMA5dK5yLhDMDc0dvYvCOIQ==}
+ '@opentelemetry/sdk-trace-base@2.5.1':
+ resolution: {integrity: sha512-iZH3Gw8cxQn0gjpOjJMmKLd9GIaNh/E3v3ST67vyzLSxHBs14HsG4dy7jMYyC5WXGdBVEcM7U/XTF5hCQxjDMw==}
engines: {node: ^18.19.0 || >=20.6.0}
peerDependencies:
- '@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/api': '>=1.3.0 <1.10.0'
+
+ '@opentelemetry/sdk-trace-base@2.6.0':
+ resolution: {integrity: sha512-g/OZVkqlxllgFM7qMKqbPV9c1DUPhQ7d4n3pgZFcrnrNft9eJXZM2TNHTPYREJBrtNdRytYyvwjgL5geDKl3EQ==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.3.0 <1.10.0'
'@opentelemetry/sdk-trace-node@2.4.0':
resolution: {integrity: sha512-MBc2l04hZPYygnWPT38UiOPy9ueutPqmJ47z0m9IKuoVQh3MblmbSgwspjhdHagZLfSfmlzhWR1xtbgVNmjX2A==}
@@ -3069,14 +3170,20 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
- '@opentelemetry/semantic-conventions@1.38.0':
- resolution: {integrity: sha512-kocjix+/sSggfJhwXqClZ3i9Y/MI0fp7b+g7kCRm6psy2dsf8uApTRclwG18h8Avm7C9+fnt+O36PspJ/OzoWg==}
- engines: {node: '>=14'}
+ '@opentelemetry/sdk-trace-node@2.6.0':
+ resolution: {integrity: sha512-YhswtasmsbIGEFvLGvR9p/y3PVRTfFf+mgY8van4Ygpnv4sA3vooAjvh+qAn9PNWxs4/IwGGqiQS0PPsaRJ0vQ==}
+ engines: {node: ^18.19.0 || >=20.6.0}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
'@opentelemetry/semantic-conventions@1.39.0':
resolution: {integrity: sha512-R5R9tb2AXs2IRLNKLBJDynhkfmx7mX0vi8NkhZb3gUkPWHn6HXk5J8iQ/dql0U3ApfWym4kXXmBDRGO+oeOfjg==}
engines: {node: '>=14'}
+ '@opentelemetry/semantic-conventions@1.40.0':
+ resolution: {integrity: sha512-cifvXDhcqMwwTlTK04GBNeIe7yyo28Mfby85QXFe1Yk8nmi36Ab/5UQwptOx84SsoGNRg+EVSjwzfSZMy6pmlw==}
+ engines: {node: '>=14'}
+
'@opentelemetry/sql-common@0.41.2':
resolution: {integrity: sha512-4mhWm3Z8z+i508zQJ7r6Xi7y4mmoJpdvH0fZPFRkWrdp5fq7hhZ2HhYokEOLkfqSMgPR4Z9EyB3DBkbKGOqZiQ==}
engines: {node: ^18.19.0 || >=20.6.0}
@@ -3097,8 +3204,8 @@ packages:
'@polka/url@1.0.0-next.29':
resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
- '@prisma/instrumentation@6.19.0':
- resolution: {integrity: sha512-QcuYy25pkXM8BJ37wVFBO7Zh34nyRV1GOb2n3lPkkbRYfl4hWl3PTcImP41P0KrzVXfa/45p6eVCos27x3exIg==}
+ '@prisma/instrumentation@7.2.0':
+ resolution: {integrity: sha512-Rh9Z4x5kEj1OdARd7U18AtVrnL6rmLSI0qYShaB4W7Wx5BKbgzndWF+QnuzMb7GLfVdlT5aYCXoPQVYuYtVu0g==}
peerDependencies:
'@opentelemetry/api': ^1.8
@@ -3207,33 +3314,38 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@redis/bloom@5.10.0':
- resolution: {integrity: sha512-doIF37ob+l47n0rkpRNgU8n4iacBlKM9xLiP1LtTZTvz8TloJB8qx/MgvhMhKdYG+CvCY2aPBnN2706izFn/4A==}
+ '@redis/bloom@5.11.0':
+ resolution: {integrity: sha512-KYiVilAhAFN3057afUb/tfYJpsEyTkQB+tQcn5gVVA7DgcNOAj8lLxe4j8ov8BF6I9C1Fe/kwlbuAICcTMX8Lw==}
engines: {node: '>= 18'}
peerDependencies:
- '@redis/client': ^5.10.0
+ '@redis/client': ^5.11.0
- '@redis/client@5.10.0':
- resolution: {integrity: sha512-JXmM4XCoso6C75Mr3lhKA3eNxSzkYi3nCzxDIKY+YOszYsJjuKbFgVtguVPbLMOttN4iu2fXoc2BGhdnYhIOxA==}
+ '@redis/client@5.11.0':
+ resolution: {integrity: sha512-GHoprlNQD51Xq2Ztd94HHV94MdFZQ3CVrpA04Fz8MVoHM0B7SlbmPEVIjwTbcv58z8QyjnrOuikS0rWF03k5dQ==}
engines: {node: '>= 18'}
+ peerDependencies:
+ '@node-rs/xxhash': ^1.1.0
+ peerDependenciesMeta:
+ '@node-rs/xxhash':
+ optional: true
- '@redis/json@5.10.0':
- resolution: {integrity: sha512-B2G8XlOmTPUuZtD44EMGbtoepQG34RCDXLZbjrtON1Djet0t5Ri7/YPXvL9aomXqP8lLTreaprtyLKF4tmXEEA==}
+ '@redis/json@5.11.0':
+ resolution: {integrity: sha512-1iAy9kAtcD0quB21RbPTbUqqy+T2Uu2JxucwE+B4A+VaDbIRvpZR6DMqV8Iqaws2YxJYB3GC5JVNzPYio2ErUg==}
engines: {node: '>= 18'}
peerDependencies:
- '@redis/client': ^5.10.0
+ '@redis/client': ^5.11.0
- '@redis/search@5.10.0':
- resolution: {integrity: sha512-3SVcPswoSfp2HnmWbAGUzlbUPn7fOohVu2weUQ0S+EMiQi8jwjL+aN2p6V3TI65eNfVsJ8vyPvqWklm6H6esmg==}
+ '@redis/search@5.11.0':
+ resolution: {integrity: sha512-g1l7f3Rnyk/xI99oGHIgWHSKFl45Re5YTIcO8j/JE8olz389yUFyz2+A6nqVy/Zi031VgPDWscbbgOk8hlhZ3g==}
engines: {node: '>= 18'}
peerDependencies:
- '@redis/client': ^5.10.0
+ '@redis/client': ^5.11.0
- '@redis/time-series@5.10.0':
- resolution: {integrity: sha512-cPkpddXH5kc/SdRhF0YG0qtjL+noqFT0AcHbQ6axhsPsO7iqPi1cjxgdkE9TNeKiBUUdCaU1DbqkR/LzbzPBhg==}
+ '@redis/time-series@5.11.0':
+ resolution: {integrity: sha512-TWFeOcU4xkj0DkndnOyhtxvX1KWD+78UHT3XX3x3XRBUGWeQrKo3jqzDsZwxbggUgf9yLJr/akFHXru66X5UQA==}
engines: {node: '>= 18'}
peerDependencies:
- '@redis/client': ^5.10.0
+ '@redis/client': ^5.11.0
'@remirror/core-constants@3.0.0':
resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==}
@@ -3263,245 +3375,275 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.54.0':
- resolution: {integrity: sha512-OywsdRHrFvCdvsewAInDKCNyR3laPA2mc9bRYJ6LBp5IyvF3fvXbbNR0bSzHlZVFtn6E0xw2oZlyjg4rKCVcng==}
+ '@rollup/rollup-android-arm-eabi@4.59.0':
+ resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.54.0':
- resolution: {integrity: sha512-Skx39Uv+u7H224Af+bDgNinitlmHyQX1K/atIA32JP3JQw6hVODX5tkbi2zof/E69M1qH2UoN3Xdxgs90mmNYw==}
+ '@rollup/rollup-android-arm64@4.59.0':
+ resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.54.0':
- resolution: {integrity: sha512-k43D4qta/+6Fq+nCDhhv9yP2HdeKeP56QrUUTW7E6PhZP1US6NDqpJj4MY0jBHlJivVJD5P8NxrjuobZBJTCRw==}
+ '@rollup/rollup-darwin-arm64@4.59.0':
+ resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.54.0':
- resolution: {integrity: sha512-cOo7biqwkpawslEfox5Vs8/qj83M/aZCSSNIWpVzfU2CYHa2G3P1UN5WF01RdTHSgCkri7XOlTdtk17BezlV3A==}
+ '@rollup/rollup-darwin-x64@4.59.0':
+ resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.54.0':
- resolution: {integrity: sha512-miSvuFkmvFbgJ1BevMa4CPCFt5MPGw094knM64W9I0giUIMMmRYcGW/JWZDriaw/k1kOBtsWh1z6nIFV1vPNtA==}
+ '@rollup/rollup-freebsd-arm64@4.59.0':
+ resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.54.0':
- resolution: {integrity: sha512-KGXIs55+b/ZfZsq9aR026tmr/+7tq6VG6MsnrvF4H8VhwflTIuYh+LFUlIsRdQSgrgmtM3fVATzEAj4hBQlaqQ==}
+ '@rollup/rollup-freebsd-x64@4.59.0':
+ resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
- resolution: {integrity: sha512-EHMUcDwhtdRGlXZsGSIuXSYwD5kOT9NVnx9sqzYiwAc91wfYOE1g1djOEDseZJKKqtHAHGwnGPQu3kytmfaXLQ==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
+ resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.54.0':
- resolution: {integrity: sha512-+pBrqEjaakN2ySv5RVrj/qLytYhPKEUwk+e3SFU5jTLHIcAtqh2rLrd/OkbNuHJpsBgxsD8ccJt5ga/SeG0JmA==}
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
+ resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.54.0':
- resolution: {integrity: sha512-NSqc7rE9wuUaRBsBp5ckQ5CVz5aIRKCwsoa6WMF7G01sX3/qHUw/z4pv+D+ahL1EIKy6Enpcnz1RY8pf7bjwng==}
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
+ resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.54.0':
- resolution: {integrity: sha512-gr5vDbg3Bakga5kbdpqx81m2n9IX8M6gIMlQQIXiLTNeQW6CucvuInJ91EuCJ/JYvc+rcLLsDFcfAD1K7fMofg==}
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
+ resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loong64-gnu@4.54.0':
- resolution: {integrity: sha512-gsrtB1NA3ZYj2vq0Rzkylo9ylCtW/PhpLEivlgWe0bpgtX5+9j9EZa0wtZiCjgu6zmSeZWyI/e2YRX1URozpIw==}
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
+ resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-ppc64-gnu@4.54.0':
- resolution: {integrity: sha512-y3qNOfTBStmFNq+t4s7Tmc9hW2ENtPg8FeUD/VShI7rKxNW7O4fFeaYbMsd3tpFlIg1Q8IapFgy7Q9i2BqeBvA==}
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
+ resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
+ resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
+ resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.54.0':
- resolution: {integrity: sha512-89sepv7h2lIVPsFma8iwmccN7Yjjtgz0Rj/Ou6fEqg3HDhpCa+Et+YSufy27i6b0Wav69Qv4WBNl3Rs6pwhebQ==}
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
+ resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.54.0':
- resolution: {integrity: sha512-ZcU77ieh0M2Q8Ur7D5X7KvK+UxbXeDHwiOt/CPSBTI1fBmeDMivW0dPkdqkT4rOgDjrDDBUed9x4EgraIKoR2A==}
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
+ resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.54.0':
- resolution: {integrity: sha512-2AdWy5RdDF5+4YfG/YesGDDtbyJlC9LHmL6rZw6FurBJ5n4vFGupsOBGfwMRjBYH7qRQowT8D/U4LoSvVwOhSQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
+ resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.54.0':
- resolution: {integrity: sha512-WGt5J8Ij/rvyqpFexxk3ffKqqbLf9AqrTBbWDk7ApGUzaIs6V+s2s84kAxklFwmMF/vBNGrVdYgbblCOFFezMQ==}
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
+ resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.54.0':
- resolution: {integrity: sha512-JzQmb38ATzHjxlPHuTH6tE7ojnMKM2kYNzt44LO/jJi8BpceEC8QuXYA908n8r3CNuG/B3BV8VR3Hi1rYtmPiw==}
+ '@rollup/rollup-linux-x64-musl@4.59.0':
+ resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-openharmony-arm64@4.54.0':
- resolution: {integrity: sha512-huT3fd0iC7jigGh7n3q/+lfPcXxBi+om/Rs3yiFxjvSxbSB6aohDFXbWvlspaqjeOh+hx7DDHS+5Es5qRkWkZg==}
+ '@rollup/rollup-openbsd-x64@4.59.0':
+ resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@rollup/rollup-openharmony-arm64@4.59.0':
+ resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
cpu: [arm64]
os: [openharmony]
- '@rollup/rollup-win32-arm64-msvc@4.54.0':
- resolution: {integrity: sha512-c2V0W1bsKIKfbLMBu/WGBz6Yci8nJ/ZJdheE0EwB73N3MvHYKiKGs3mVilX4Gs70eGeDaMqEob25Tw2Gb9Nqyw==}
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
+ resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.54.0':
- resolution: {integrity: sha512-woEHgqQqDCkAzrDhvDipnSirm5vxUXtSKDYTVpZG3nUdW/VVB5VdCYA2iReSj/u3yCZzXID4kuKG7OynPnB3WQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
+ resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-gnu@4.54.0':
- resolution: {integrity: sha512-dzAc53LOuFvHwbCEOS0rPbXp6SIhAf2txMP5p6mGyOXXw5mWY8NGGbPMPrs4P1WItkfApDathBj/NzMLUZ9rtQ==}
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
+ resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.54.0':
- resolution: {integrity: sha512-hYT5d3YNdSh3mbCU1gwQyPgQd3T2ne0A3KG8KSBdav5TiBg6eInVmV+TeR5uHufiIgSFg0XsOWGW5/RhNcSvPg==}
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
+ resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
cpu: [x64]
os: [win32]
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@sentry-internal/browser-utils@10.32.1':
- resolution: {integrity: sha512-sjLLep1es3rTkbtAdTtdpc/a6g7v7bK5YJiZJsUigoJ4NTiFeMI5uIDCxbH/tjJ1q23YE1LzVn7T96I+qBRjHA==}
+ '@sentry-internal/browser-utils@10.43.0':
+ resolution: {integrity: sha512-8zYTnzhAPvNkVH1Irs62wl0J/c+0QcJ62TonKnzpSFUUD3V5qz8YDZbjIDGfxy+1EB9fO0sxtddKCzwTHF/MbQ==}
engines: {node: '>=18'}
- '@sentry-internal/feedback@10.32.1':
- resolution: {integrity: sha512-O24G8jxbfBY1RE/v2qFikPJISVMOrd/zk8FKyl+oUVYdOxU2Ucjk2cR3EQruBFlc7irnL6rT3GPfRZ/kBgLkmQ==}
+ '@sentry-internal/feedback@10.43.0':
+ resolution: {integrity: sha512-YoXuwluP6eOcQxTeTtaWb090++MrLyWOVsUTejzUQQ6LFL13Jwt+bDPF1kvBugMq4a7OHw/UNKQfd6//rZMn2g==}
engines: {node: '>=18'}
- '@sentry-internal/replay-canvas@10.32.1':
- resolution: {integrity: sha512-/XGTzWNWVc+B691fIVekV2KeoHFEDA5KftrLFAhEAW7uWOwk/xy3aQX4TYM0LcPm2PBKvoumlAD+Sd/aXk63oA==}
+ '@sentry-internal/replay-canvas@10.43.0':
+ resolution: {integrity: sha512-ZIw1UNKOFXo1LbPCJPMAx9xv7D8TMZQusLDUgb6BsPQJj0igAuwd7KRGTkjjgnrwBp2O/sxcQFRhQhknWk7QPg==}
engines: {node: '>=18'}
- '@sentry-internal/replay@10.32.1':
- resolution: {integrity: sha512-KKmLUgIaLRM0VjrMA1ByQTawZyRDYSkG2evvEOVpEtR9F0sumidAQdi7UY71QEKE1RYe/Jcp/3WoaqsMh8tbnQ==}
+ '@sentry-internal/replay@10.43.0':
+ resolution: {integrity: sha512-khCXlGrlH1IU7P5zCEAJFestMeH97zDVCekj8OsNNDtN/1BmCJ46k6Xi0EqAUzdJgrOLJeLdoYdgtiIjovZ8Sg==}
engines: {node: '>=18'}
'@sentry-internal/tracing@7.120.4':
resolution: {integrity: sha512-Fz5+4XCg3akeoFK+K7g+d7HqGMjmnLoY2eJlpONJmaeT9pXY7yfUyXKZMmMajdE2LxxKJgQ2YKvSCaGVamTjHw==}
engines: {node: '>=8'}
- '@sentry/babel-plugin-component-annotate@4.6.1':
- resolution: {integrity: sha512-aSIk0vgBqv7PhX6/Eov+vlI4puCE0bRXzUG5HdCsHBpAfeMkI8Hva6kSOusnzKqs8bf04hU7s3Sf0XxGTj/1AA==}
- engines: {node: '>= 14'}
+ '@sentry/babel-plugin-component-annotate@5.1.1':
+ resolution: {integrity: sha512-x2wEpBHwsTyTF2rWsLKJlzrRF1TTIGOfX+ngdE+Yd5DBkoS58HwQv824QOviPGQRla4/ypISqAXzjdDPL/zalg==}
+ engines: {node: '>= 18'}
- '@sentry/browser@10.32.1':
- resolution: {integrity: sha512-NPNCXTZ05ZGTFyJdKNqjykpFm+urem0ebosILQiw3C4BxNVNGH4vfYZexyl6prRhmg91oB6GjVNiVDuJiap1gg==}
+ '@sentry/browser@10.43.0':
+ resolution: {integrity: sha512-2V3I3sXi3SMeiZpKixd9ztokSgK27cmvsD9J5oyOyjhGLTW/6QKCwHbKnluMgQMXq20nixQk5zN4wRjRUma3sg==}
engines: {node: '>=18'}
- '@sentry/bundler-plugin-core@4.6.1':
- resolution: {integrity: sha512-WPeRbnMXm927m4Kr69NTArPfI+p5/34FHftdCRI3LFPMyhZDzz6J3wLy4hzaVUgmMf10eLzmq2HGEMvpQmdynA==}
- engines: {node: '>= 14'}
+ '@sentry/bundler-plugin-core@5.1.1':
+ resolution: {integrity: sha512-F+itpwR9DyQR7gEkrXd2tigREPTvtF5lC8qu6e4anxXYRTui1+dVR0fXNwjpyAZMhIesLfXRN7WY7ggdj7hi0Q==}
+ engines: {node: '>= 18'}
- '@sentry/cli-darwin@2.58.4':
- resolution: {integrity: sha512-kbTD+P4X8O+nsNwPxCywtj3q22ecyRHWff98rdcmtRrvwz8CKi/T4Jxn/fnn2i4VEchy08OWBuZAqaA5Kh2hRQ==}
+ '@sentry/cli-darwin@2.58.5':
+ resolution: {integrity: sha512-lYrNzenZFJftfwSya7gwrHGxtE+Kob/e1sr9lmHMFOd4utDlmq0XFDllmdZAMf21fxcPRI1GL28ejZ3bId01fQ==}
engines: {node: '>=10'}
os: [darwin]
- '@sentry/cli-linux-arm64@2.58.4':
- resolution: {integrity: sha512-0g0KwsOozkLtzN8/0+oMZoOuQ0o7W6O+hx+ydVU1bktaMGKEJLMAWxOQNjsh1TcBbNIXVOKM/I8l0ROhaAb8Ig==}
+ '@sentry/cli-linux-arm64@2.58.5':
+ resolution: {integrity: sha512-/4gywFeBqRB6tR/iGMRAJ3HRqY6Z7Yp4l8ZCbl0TDLAfHNxu7schEw4tSnm2/Hh9eNMiOVy4z58uzAWlZXAYBQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux, freebsd, android]
- '@sentry/cli-linux-arm@2.58.4':
- resolution: {integrity: sha512-rdQ8beTwnN48hv7iV7e7ZKucPec5NJkRdrrycMJMZlzGBPi56LqnclgsHySJ6Kfq506A2MNuQnKGaf/sBC9REA==}
+ '@sentry/cli-linux-arm@2.58.5':
+ resolution: {integrity: sha512-KtHweSIomYL4WVDrBrYSYJricKAAzxUgX86kc6OnlikbyOhoK6Fy8Vs6vwd52P6dvWPjgrMpUYjW2M5pYXQDUw==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux, freebsd, android]
- '@sentry/cli-linux-i686@2.58.4':
- resolution: {integrity: sha512-NseoIQAFtkziHyjZNPTu1Gm1opeQHt7Wm1LbLrGWVIRvUOzlslO9/8i6wETUZ6TjlQxBVRgd3Q0lRBG2A8rFYA==}
+ '@sentry/cli-linux-i686@2.58.5':
+ resolution: {integrity: sha512-G7261dkmyxqlMdyvyP06b+RTIVzp1gZNgglj5UksxSouSUqRd/46W/2pQeOMPhloDYo9yLtCN2YFb3Mw4aUsWw==}
engines: {node: '>=10'}
cpu: [x86, ia32]
os: [linux, freebsd, android]
- '@sentry/cli-linux-x64@2.58.4':
- resolution: {integrity: sha512-d3Arz+OO/wJYTqCYlSN3Ktm+W8rynQ/IMtSZLK8nu0ryh5mJOh+9XlXY6oDXw4YlsM8qCRrNquR8iEI1Y/IH+Q==}
+ '@sentry/cli-linux-x64@2.58.5':
+ resolution: {integrity: sha512-rP04494RSmt86xChkQ+ecBNRYSPbyXc4u0IA7R7N1pSLCyO74e5w5Al+LnAq35cMfVbZgz5Sm0iGLjyiUu4I1g==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux, freebsd, android]
- '@sentry/cli-win32-arm64@2.58.4':
- resolution: {integrity: sha512-bqYrF43+jXdDBh0f8HIJU3tbvlOFtGyRjHB8AoRuMQv9TEDUfENZyCelhdjA+KwDKYl48R1Yasb4EHNzsoO83w==}
+ '@sentry/cli-win32-arm64@2.58.5':
+ resolution: {integrity: sha512-AOJ2nCXlQL1KBaCzv38m3i2VmSHNurUpm7xVKd6yAHX+ZoVBI8VT0EgvwmtJR2TY2N2hNCC7UrgRmdUsQ152bA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@sentry/cli-win32-i686@2.58.4':
- resolution: {integrity: sha512-3triFD6jyvhVcXOmGyttf+deKZcC1tURdhnmDUIBkiDPJKGT/N5xa4qAtHJlAB/h8L9jgYih9bvJnvvFVM7yug==}
+ '@sentry/cli-win32-i686@2.58.5':
+ resolution: {integrity: sha512-EsuboLSOnlrN7MMPJ1eFvfMDm+BnzOaSWl8eYhNo8W/BIrmNgpRUdBwnWn9Q2UOjJj5ZopukmsiMYtU/D7ml9g==}
engines: {node: '>=10'}
cpu: [x86, ia32]
os: [win32]
- '@sentry/cli-win32-x64@2.58.4':
- resolution: {integrity: sha512-cSzN4PjM1RsCZ4pxMjI0VI7yNCkxiJ5jmWncyiwHXGiXrV1eXYdQ3n1LhUYLZ91CafyprR0OhDcE+RVZ26Qb5w==}
+ '@sentry/cli-win32-x64@2.58.5':
+ resolution: {integrity: sha512-IZf+XIMiQwj+5NzqbOQfywlOitmCV424Vtf9c+ep61AaVScUFD1TSrQbOcJJv5xGxhlxNOMNgMeZhdexdzrKZg==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@sentry/cli@2.58.4':
- resolution: {integrity: sha512-ArDrpuS8JtDYEvwGleVE+FgR+qHaOp77IgdGSacz6SZy6Lv90uX0Nu4UrHCQJz8/xwIcNxSqnN22lq0dH4IqTg==}
+ '@sentry/cli@2.58.5':
+ resolution: {integrity: sha512-tavJ7yGUZV+z3Ct2/ZB6mg339i08sAk6HDkgqmSRuQEu2iLS5sl9HIvuXfM6xjv8fwlgFOSy++WNABNAcGHUbg==}
engines: {node: '>= 10'}
hasBin: true
- '@sentry/core@10.32.1':
- resolution: {integrity: sha512-PH2ldpSJlhqsMj2vCTyU0BI2Fx1oIDhm7Izo5xFALvjVCS0gmlqHt1udu6YlKn8BtpGH6bGzssvv5APrk+OdPQ==}
+ '@sentry/core@10.43.0':
+ resolution: {integrity: sha512-l0SszQAPiQGWl/ferw8GP3ALyHXiGiRKJaOvNmhGO+PrTQyZTZ6OYyPnGijAFRg58dE1V3RCH/zw5d2xSUIiNg==}
engines: {node: '>=18'}
'@sentry/core@7.120.4':
resolution: {integrity: sha512-TXu3Q5kKiq8db9OXGkWyXUbIxMMuttB5vJ031yolOl5T/B69JRyAoKuojLBjRv1XX583gS1rSSoX8YXX7ATFGA==}
engines: {node: '>=8'}
- '@sentry/nextjs@10.32.1':
- resolution: {integrity: sha512-MlgQiKg9P2clKeyH+ZLdmNiMNfTMs/2DBK9V/enLZvYJd1sy5hmrkAV/NiLxVP0uXAeMEVtrgFMIb64cH7ZcXQ==}
+ '@sentry/nextjs@10.43.0':
+ resolution: {integrity: sha512-SmybDiZdI4c7GQYvi+HNBKbnKOmIaiqsLj67vVVV0tN6A1iX9OrP5jldxawzrd9wn5oXDhHSyzJmyKwdOu7/MQ==}
engines: {node: '>=18'}
peerDependencies:
next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0 || ^16.0.0-0
- '@sentry/node-core@10.32.1':
- resolution: {integrity: sha512-w56rxdBanBKc832zuwnE+zNzUQ19fPxfHEtOhK8JGPu3aSwQYcIxwz9z52lOx3HN7k/8Fj5694qlT3x/PokhRw==}
+ '@sentry/node-core@10.43.0':
+ resolution: {integrity: sha512-w2H3NSkNMoYOS7o7mR55BM7+xL++dPxMSv1/XDfsra9FYHGppO+Mxk667Ee5k+uDi+wNIioICIh+5XOvZh4+HQ==}
engines: {node: '>=18'}
peerDependencies:
'@opentelemetry/api': ^1.9.0
- '@opentelemetry/context-async-hooks': ^1.30.1 || ^2.1.0 || ^2.2.0
- '@opentelemetry/core': ^1.30.1 || ^2.1.0 || ^2.2.0
+ '@opentelemetry/context-async-hooks': ^1.30.1 || ^2.1.0
+ '@opentelemetry/core': ^1.30.1 || ^2.1.0
'@opentelemetry/instrumentation': '>=0.57.1 <1'
- '@opentelemetry/resources': ^1.30.1 || ^2.1.0 || ^2.2.0
- '@opentelemetry/sdk-trace-base': ^1.30.1 || ^2.1.0 || ^2.2.0
- '@opentelemetry/semantic-conventions': ^1.37.0
+ '@opentelemetry/resources': ^1.30.1 || ^2.1.0
+ '@opentelemetry/sdk-trace-base': ^1.30.1 || ^2.1.0
+ '@opentelemetry/semantic-conventions': ^1.39.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ '@opentelemetry/context-async-hooks':
+ optional: true
+ '@opentelemetry/core':
+ optional: true
+ '@opentelemetry/instrumentation':
+ optional: true
+ '@opentelemetry/resources':
+ optional: true
+ '@opentelemetry/sdk-trace-base':
+ optional: true
+ '@opentelemetry/semantic-conventions':
+ optional: true
- '@sentry/node@10.32.1':
- resolution: {integrity: sha512-oxlybzt8QW0lx/QaEj1DcvZDRXkgouewFelu/10dyUwv5So3YvipfvWInda+yMLmn25OggbloDQ0gyScA2jU3g==}
+ '@sentry/node@10.43.0':
+ resolution: {integrity: sha512-oNwXcuZUc4uTTr0WbHZBBIKsKwAKvNMTgbXwxfB37CfzV18wbTirbQABZ/Ir3WNxSgi6ZcnC6UE013jF5XWPqw==}
engines: {node: '>=18'}
- '@sentry/opentelemetry@10.32.1':
- resolution: {integrity: sha512-YLssSz5Y+qPvufrh2cDaTXDoXU8aceOhB+YTjT8/DLF6SOj7Tzen52aAcjNaifawaxEsLCC8O+B+A2iA+BllvA==}
+ '@sentry/opentelemetry@10.43.0':
+ resolution: {integrity: sha512-+fIcnnLdvBHdq4nKq23t9v/B9D4L97fPWEDksXbpGs11o6BsqY4Tlzmce6cP95iiQhPckCEag3FthSND+BYtYQ==}
engines: {node: '>=18'}
peerDependencies:
'@opentelemetry/api': ^1.9.0
- '@opentelemetry/context-async-hooks': ^1.30.1 || ^2.1.0 || ^2.2.0
- '@opentelemetry/core': ^1.30.1 || ^2.1.0 || ^2.2.0
- '@opentelemetry/sdk-trace-base': ^1.30.1 || ^2.1.0 || ^2.2.0
- '@opentelemetry/semantic-conventions': ^1.37.0
+ '@opentelemetry/context-async-hooks': ^1.30.1 || ^2.1.0
+ '@opentelemetry/core': ^1.30.1 || ^2.1.0
+ '@opentelemetry/sdk-trace-base': ^1.30.1 || ^2.1.0
+ '@opentelemetry/semantic-conventions': ^1.39.0
- '@sentry/react@10.32.1':
- resolution: {integrity: sha512-/tX0HeACbAmVP57x8txTrGk/U3fa9pDBaoAtlOrnPv5VS/aC5SGkehXWeTGSAa+ahlOWwp3IF8ILVXRiOoG/Vg==}
+ '@sentry/react@10.43.0':
+ resolution: {integrity: sha512-shvErEpJ41i0Q3lIZl0CDWYQ7m8yHLi7ECG0gFvN8zf8pEdl5grQIOoe3t/GIUzcpCcor16F148ATmKJJypc/Q==}
engines: {node: '>=18'}
peerDependencies:
react: ^16.14.0 || 17.x || 18.x || 19.x
@@ -3518,33 +3660,43 @@ packages:
resolution: {integrity: sha512-zCKpyDIWKHwtervNK2ZlaK8mMV7gVUijAgFeJStH+CU/imcdquizV3pFLlSQYRswG+Lbyd6CT/LGRh3IbtkCFw==}
engines: {node: '>=8'}
- '@sentry/vercel-edge@10.32.1':
- resolution: {integrity: sha512-3hrc7TVs4ZeYSCOZdgmv9D1Bke2osnImfupceW8THecNv3uEUjYbrC2UkS/TFMiVHc9qpYzUnKbsGezMp3Bcaw==}
+ '@sentry/vercel-edge@10.43.0':
+ resolution: {integrity: sha512-souwH0QGKh2KE5ZH1ZYii1dbT5qsCP1VN+wpIG89ui85+eSmUQfakIjyS2Trs6JfxZ9TIYmmBTkWE9ziEseItg==}
engines: {node: '>=18'}
- '@sentry/webpack-plugin@4.6.1':
- resolution: {integrity: sha512-CJgT/t2pQWsPsMx9VJ86goU/orCQhL2HhDj5ZYBol6fPPoEGeTqKOPCnv/xsbCAfGSp1uHpyRLTA/Gx96u7VVA==}
- engines: {node: '>= 14'}
+ '@sentry/webpack-plugin@5.1.1':
+ resolution: {integrity: sha512-XgQg+t2aVrlQDfIiAEizqR/bsy6GtBygwgR+Kw11P/cYczj4W9PZ2IYqQEStBzHqnRTh5DbpyMcUNW2CujdA9A==}
+ engines: {node: '>= 18'}
peerDependencies:
- webpack: '>=4.40.0'
+ webpack: '>=5.0.0'
+
+ '@shikijs/core@4.0.2':
+ resolution: {integrity: sha512-hxT0YF4ExEqB8G/qFdtJvpmHXBYJ2lWW7qTHDarVkIudPFE6iCIrqdgWxGn5s+ppkGXI0aEGlibI0PAyzP3zlw==}
+ engines: {node: '>=20'}
- '@shikijs/core@3.20.0':
- resolution: {integrity: sha512-f2ED7HYV4JEk827mtMDwe/yQ25pRiXZmtHjWF8uzZKuKiEsJR7Ce1nuQ+HhV9FzDcbIo4ObBCD9GPTzNuy9S1g==}
+ '@shikijs/engine-javascript@4.0.2':
+ resolution: {integrity: sha512-7PW0Nm49DcoUIQEXlJhNNBHyoGMjalRETTCcjMqEaMoJRLljy1Bi/EGV3/qLBgLKQejdspiiYuHGQW6dX94Nag==}
+ engines: {node: '>=20'}
- '@shikijs/engine-javascript@3.20.0':
- resolution: {integrity: sha512-OFx8fHAZuk7I42Z9YAdZ95To6jDePQ9Rnfbw9uSRTSbBhYBp1kEOKv/3jOimcj3VRUKusDYM6DswLauwfhboLg==}
+ '@shikijs/engine-oniguruma@4.0.2':
+ resolution: {integrity: sha512-UpCB9Y2sUKlS9z8juFSKz7ZtysmeXCgnRF0dlhXBkmQnek7lAToPte8DkxmEYGNTMii72zU/lyXiCB6StuZeJg==}
+ engines: {node: '>=20'}
- '@shikijs/engine-oniguruma@3.20.0':
- resolution: {integrity: sha512-Yx3gy7xLzM0ZOjqoxciHjA7dAt5tyzJE3L4uQoM83agahy+PlW244XJSrmJRSBvGYELDhYXPacD4R/cauV5bzQ==}
+ '@shikijs/langs@4.0.2':
+ resolution: {integrity: sha512-KaXby5dvoeuZzN0rYQiPMjFoUrz4hgwIE+D6Du9owcHcl6/g16/yT5BQxSW5cGt2MZBz6Hl0YuRqf12omRfUUg==}
+ engines: {node: '>=20'}
- '@shikijs/langs@3.20.0':
- resolution: {integrity: sha512-le+bssCxcSHrygCWuOrYJHvjus6zhQ2K7q/0mgjiffRbkhM4o1EWu2m+29l0yEsHDbWaWPNnDUTRVVBvBBeKaA==}
+ '@shikijs/primitive@4.0.2':
+ resolution: {integrity: sha512-M6UMPrSa3fN5ayeJwFVl9qWofl273wtK1VG8ySDZ1mQBfhCpdd8nEx7nPZ/tk7k+TYcpqBZzj/AnwxT9lO+HJw==}
+ engines: {node: '>=20'}
- '@shikijs/themes@3.20.0':
- resolution: {integrity: sha512-U1NSU7Sl26Q7ErRvJUouArxfM2euWqq1xaSrbqMu2iqa+tSp0D1Yah8216sDYbdDHw4C8b75UpE65eWorm2erQ==}
+ '@shikijs/themes@4.0.2':
+ resolution: {integrity: sha512-mjCafwt8lJJaVSsQvNVrJumbnnj1RI8jbUKrPKgE6E3OvQKxnuRoBaYC51H4IGHePsGN/QtALglWBU7DoKDFnA==}
+ engines: {node: '>=20'}
- '@shikijs/types@3.20.0':
- resolution: {integrity: sha512-lhYAATn10nkZcBQ0BlzSbJA3wcmL5MXUUF8d2Zzon6saZDlToKaiRX60n2+ZaHJCmXEcZRWNzn+k9vplr8Jhsw==}
+ '@shikijs/types@4.0.2':
+ resolution: {integrity: sha512-qzbeRooUTPnLE+sHD/Z8DStmaDgnbbc/pMrU203950aRqjX/6AFHeDYT+j00y2lPdz0ywJKx7o/7qnqTivtlXg==}
+ engines: {node: '>=20'}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -3566,6 +3718,9 @@ packages:
'@sinonjs/fake-timers@13.0.5':
resolution: {integrity: sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==}
+ '@sinonjs/fake-timers@15.1.1':
+ resolution: {integrity: sha512-cO5W33JgAPbOh07tvZjUOJ7oWhtaqGHiZw+11DPbyqh2kHTBc3eF/CjJDeQ4205RLQsX6rxCuYOroFQwl7JDRw==}
+
'@standard-schema/utils@0.3.0':
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
@@ -3585,65 +3740,65 @@ packages:
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1'
- '@tailwindcss/node@4.1.18':
- resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
+ '@tailwindcss/node@4.2.1':
+ resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
- '@tailwindcss/oxide-android-arm64@4.1.18':
- resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-android-arm64@4.2.1':
+ resolution: {integrity: sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==}
+ engines: {node: '>= 20'}
cpu: [arm64]
os: [android]
- '@tailwindcss/oxide-darwin-arm64@4.1.18':
- resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-darwin-arm64@4.2.1':
+ resolution: {integrity: sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==}
+ engines: {node: '>= 20'}
cpu: [arm64]
os: [darwin]
- '@tailwindcss/oxide-darwin-x64@4.1.18':
- resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-darwin-x64@4.2.1':
+ resolution: {integrity: sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==}
+ engines: {node: '>= 20'}
cpu: [x64]
os: [darwin]
- '@tailwindcss/oxide-freebsd-x64@4.1.18':
- resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-freebsd-x64@4.2.1':
+ resolution: {integrity: sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==}
+ engines: {node: '>= 20'}
cpu: [x64]
os: [freebsd]
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
- resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
+ resolution: {integrity: sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==}
+ engines: {node: '>= 20'}
cpu: [arm]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
- resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
+ resolution: {integrity: sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==}
+ engines: {node: '>= 20'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
- resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
+ resolution: {integrity: sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==}
+ engines: {node: '>= 20'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
- resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
+ resolution: {integrity: sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==}
+ engines: {node: '>= 20'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-musl@4.1.18':
- resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-linux-x64-musl@4.2.1':
+ resolution: {integrity: sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==}
+ engines: {node: '>= 20'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-wasm32-wasi@4.1.18':
- resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
+ '@tailwindcss/oxide-wasm32-wasi@4.2.1':
+ resolution: {integrity: sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
bundledDependencies:
@@ -3654,24 +3809,24 @@ packages:
- '@emnapi/wasi-threads'
- tslib
- '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
- resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
+ resolution: {integrity: sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==}
+ engines: {node: '>= 20'}
cpu: [arm64]
os: [win32]
- '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
- resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
+ resolution: {integrity: sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==}
+ engines: {node: '>= 20'}
cpu: [x64]
os: [win32]
- '@tailwindcss/oxide@4.1.18':
- resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==}
- engines: {node: '>= 10'}
+ '@tailwindcss/oxide@4.2.1':
+ resolution: {integrity: sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==}
+ engines: {node: '>= 20'}
- '@tailwindcss/postcss@4.1.18':
- resolution: {integrity: sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==}
+ '@tailwindcss/postcss@4.2.1':
+ resolution: {integrity: sha512-OEwGIBnXnj7zJeonOh6ZG9woofIjGrd2BORfvE5p9USYKDCZoQmfqLcfNiRWoJlRWLdNPn2IgVZuWAOM4iTYMw==}
'@tanstack/query-core@5.90.20':
resolution: {integrity: sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==}
@@ -3679,11 +3834,11 @@ packages:
'@tanstack/query-devtools@5.93.0':
resolution: {integrity: sha512-+kpsx1NQnOFTZsw6HAFCW3HkKg0+2cepGtAWXjiiSOJJ1CtQpt72EE2nyZb+AjAbLRPoeRmPJ8MtQd8r8gsPdg==}
- '@tanstack/query-persist-client-core@5.91.19':
- resolution: {integrity: sha512-whrASqbVq8261Ue+/ZzpHsrLDYVfRaENs4HTdLuYKxawkGWzdMfV7BmOdWl8ZF0mEBEbrQR8V6oE3R635JF2Fw==}
+ '@tanstack/query-persist-client-core@5.92.1':
+ resolution: {integrity: sha512-XGzB1lulFrGc8UwQnMI12r71R7ock/XOZvDaz3Fu3xrxCFwLHuFcABAOkIolS/6hFHe0pRdsBRXd4Q8ECqiCug==}
- '@tanstack/query-sync-storage-persister@5.90.22':
- resolution: {integrity: sha512-QoOHewbI9a/7hezbVXlZOOCkF4oTnOpAGNMYiObUZm+jpEoLF5YqGMg0iDv3laSEymz81Zw8HJ8UFxP7mwEmqw==}
+ '@tanstack/query-sync-storage-persister@5.90.24':
+ resolution: {integrity: sha512-/L0XnUNe+XanPpnTka9J/5M8Xj/6Ap1zre1fVLN/HsoMlLrFiqDijwMiwvwbSuaCyVUnH8Kh8ECXX5fPZtEsBg==}
'@tanstack/react-query-devtools@5.91.3':
resolution: {integrity: sha512-nlahjMtd/J1h7IzOOfqeyDh5LNfG0eULwlltPEonYy0QL+nqrBB+nyzJfULV+moL7sZyxc2sHdNJki+vLA9BSA==}
@@ -3691,14 +3846,14 @@ packages:
'@tanstack/react-query': ^5.90.20
react: ^18 || ^19
- '@tanstack/react-query-persist-client@5.90.22':
- resolution: {integrity: sha512-BrD3Y/SsrSIDl+t/gpYvjvGHXd7m7oF+GIqktKE8LmTgt7bS1lYHd/CLkVxMPixTU53gHHVFfPNGmY7Hv4L/7g==}
+ '@tanstack/react-query-persist-client@5.90.24':
+ resolution: {integrity: sha512-FkfU37vHq61Efr/qGiz+CUNmGfCky1jjsaZFuS5MsWwA9vPHudCwmdirgyTx+RfcQxyHON904q/pc48zrIEhxg==}
peerDependencies:
- '@tanstack/react-query': ^5.90.20
+ '@tanstack/react-query': ^5.90.21
react: ^18 || ^19
- '@tanstack/react-query@5.90.20':
- resolution: {integrity: sha512-vXBxa+qeyveVO7OA0jX1z+DeyCA4JKnThKv411jd5SORpBKgkcVnYKCiBgECvADvniBX7tobwBmg01qq9JmMJw==}
+ '@tanstack/react-query@5.90.21':
+ resolution: {integrity: sha512-0Lu6y5t+tvlTJMTO7oh5NSpJfpg/5D41LlThfepTixPYkJ0sE2Jj0m0f6yYqujBwIXlId87e234+MxG3D3g7kg==}
peerDependencies:
react: ^18 || ^19
@@ -3745,200 +3900,200 @@ packages:
'@types/react-dom':
optional: true
- '@tiptap/core@3.18.0':
- resolution: {integrity: sha512-Gczd4GbK1DNgy/QUPElMVozoa0GW9mW8E31VIi7Q4a9PHHz8PcrxPmuWwtJ2q0PF8MWpOSLuBXoQTWaXZRPRnQ==}
+ '@tiptap/core@3.20.1':
+ resolution: {integrity: sha512-SwkPEWIfaDEZjC8SEIi4kZjqIYUbRgLUHUuQezo5GbphUNC8kM1pi3C3EtoOPtxXrEbY6e4pWEzW54Pcrd+rVA==}
peerDependencies:
- '@tiptap/pm': ^3.18.0
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-blockquote@3.18.0':
- resolution: {integrity: sha512-1HjEoM5vZDfFnq2OodNpW13s56a9pbl7jolUv1V9FrE3X5s7n0HCfDzIVpT7z1HgTdPtlN5oSt5uVyBwuwSUfA==}
+ '@tiptap/extension-blockquote@3.20.1':
+ resolution: {integrity: sha512-WzNXk/63PQI2fav4Ta6P0GmYRyu8Gap1pV3VUqaVK829iJ6Zt1T21xayATHEHWMK27VT1GLPJkx9Ycr2jfDyQw==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-bold@3.18.0':
- resolution: {integrity: sha512-xUgOvHCdGXh9Lfxd7DtgsSr0T/egIwBllWHIBWDjQEQQ0b+ICn+0+i703btHMB4hjdduZtgVDrhK8jAW3U6swA==}
+ '@tiptap/extension-bold@3.20.1':
+ resolution: {integrity: sha512-fz++Qv6Rk/Hov0IYG/r7TJ1Y4zWkuGONe0UN5g0KY32NIMg3HeOHicbi4xsNWTm9uAOl3eawWDkezEMrleObMw==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-bubble-menu@3.18.0':
- resolution: {integrity: sha512-9kYG1fVYQcA3Kp5Bq96lrKCp9oLpQqceDsK688r7iT1yymQlBPMunaqaqb5ZLQGhnNYbhfG+8xcQsvEKjklErA==}
+ '@tiptap/extension-bubble-menu@3.20.1':
+ resolution: {integrity: sha512-XaPvO6aCoWdFnCBus0s88lnj17NR/OopV79i8Qhgz3WMR0vrsL5zsd45l0lZuu9pSvm5VW47SoxakkJiZC1suw==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-bullet-list@3.18.0':
- resolution: {integrity: sha512-8sEpY0nxAGGFDYlF+WVFPKX00X2dAAjmoi0+2eWvK990PdQqwXrQsRs7pkUbpE2mDtATV8+GlDXk9KDkK/ZXhA==}
+ '@tiptap/extension-bullet-list@3.20.1':
+ resolution: {integrity: sha512-mbrlvOZo5OF3vLhp+3fk9KuL/6J/wsN0QxF6ZFRAHzQ9NkJdtdfARcBeBnkWXGN8inB6YxbTGY1/E4lmBkOpOw==}
peerDependencies:
- '@tiptap/extension-list': ^3.18.0
+ '@tiptap/extension-list': ^3.20.1
- '@tiptap/extension-code-block-lowlight@3.18.0':
- resolution: {integrity: sha512-euUvh9r1KNSua9X4VdMS6lcWgUkcd0YznCFhp4b5gSqT5/5F7tGlvEg5mNpBeNhOIreDQV6zfBc7HvLfh7cLEA==}
+ '@tiptap/extension-code-block-lowlight@3.20.1':
+ resolution: {integrity: sha512-QJXZGN43HArGNl5HeiPF1fXZZs6FWJwG3wTr9v+OwsM8EX3ixyblIoeY0/nmFBlQqci49ZA/KfCqVwfGNlRj5A==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/extension-code-block': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/extension-code-block': ^3.20.1
+ '@tiptap/pm': ^3.20.1
highlight.js: ^11
lowlight: ^2 || ^3
- '@tiptap/extension-code-block@3.18.0':
- resolution: {integrity: sha512-fCx1oT95ikGfoizw+XCjeglQxlLK4lWgUcB4Dcn5TdaCoFBQMEaZs7Q0jVajxxxULnyArkg60uarc1ac/IF2Hw==}
+ '@tiptap/extension-code-block@3.20.1':
+ resolution: {integrity: sha512-vKejwBq+Nlj4Ybd3qOyDxIQKzYymdNH+8eXkKwGShk2nfLJIxq69DCyGvmuHgipIO1qcYPJ149UNpGN+YGcdmA==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-code@3.18.0':
- resolution: {integrity: sha512-0SU53O0NRmdtRM2Hgzm372dVoHjs2F40o/dtB7ls4kocf4W89FyWeC2R6ZsFQqcXisNh9RTzLtYfbNyizGuZIw==}
+ '@tiptap/extension-code@3.20.1':
+ resolution: {integrity: sha512-509DHINIA/Gg+eTG7TEkfsS8RUiPLH5xZNyLRT0A1oaoaJmECKfrV6aAm05IdfTyqDqz6LW5pbnX6DdUC4keug==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-document@3.18.0':
- resolution: {integrity: sha512-e0hOGrjTMpCns8IC5p+c5CEiE1BBmFBFL+RpIxU/fjT2SaZ7q2xsFguBu94lQDT0cD6fdZokFRpGwEMxZNVGCg==}
+ '@tiptap/extension-document@3.20.1':
+ resolution: {integrity: sha512-9vrqdGmRV7bQCSY3NLgu7UhIwgOCDp4sKqMNsoNRX0aZ021QQMTvBQDPkiRkCf7MNsnWrNNnr52PVnULEn3vFQ==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-dropcursor@3.18.0':
- resolution: {integrity: sha512-pIW/K9fGth221dkfA5SInHcqfnCr0aG9LGkRiEh4gwM4cf6ceUBrvcD+QlemSZ4q9oktNGJmXT+sEXVOQ8QoeQ==}
+ '@tiptap/extension-dropcursor@3.20.1':
+ resolution: {integrity: sha512-K18L9FX4znn+ViPSIbTLOGcIaXMx/gLNwAPE8wPLwswbHhQqdiY1zzdBw6drgOc1Hicvebo2dIoUlSXOZsOEcw==}
peerDependencies:
- '@tiptap/extensions': ^3.18.0
+ '@tiptap/extensions': ^3.20.1
- '@tiptap/extension-floating-menu@3.18.0':
- resolution: {integrity: sha512-a2cBQi0I/X0o3a9b+adwJvkdxLzQzJIkP9dc/v25qGTSCjC1+ycois5WQOn8T4T8t4g/fAH1UOXEWnkWyTxLIg==}
+ '@tiptap/extension-floating-menu@3.20.1':
+ resolution: {integrity: sha512-BeDC6nfOesIMn5pFuUnkEjOxGv80sOJ8uk1mdt9/3Fkvra8cB9NIYYCVtd6PU8oQFmJ8vFqPrRkUWrG5tbqnOg==}
peerDependencies:
'@floating-ui/dom': ^1.0.0
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-gapcursor@3.18.0':
- resolution: {integrity: sha512-covioXPPHX3SnlTwC/1rcHUHAc7/JFd4vN0kZQmZmvGHlxqq2dPmtrPh8D7TuDuhG0k/3Z6i8dJFP0phfRAhuA==}
+ '@tiptap/extension-gapcursor@3.20.1':
+ resolution: {integrity: sha512-kZOtttV6Ai8VUAgEng3h4WKFbtdSNJ6ps7r0cRPY+FctWhVmgNb/JJwwyC+vSilR7nRENAhrA/Cv/RxVlvLw+g==}
peerDependencies:
- '@tiptap/extensions': ^3.18.0
+ '@tiptap/extensions': ^3.20.1
- '@tiptap/extension-hard-break@3.18.0':
- resolution: {integrity: sha512-IXLiOHEmbU2Wn1jFRZC6apMxiJQvSRWhwoiubAvRxyiPSnFTeaEgT8Qgo5DjwB39NckP+o7XX7RrgzlkwdFPQQ==}
+ '@tiptap/extension-hard-break@3.20.1':
+ resolution: {integrity: sha512-9sKpmg/IIdlLXimYWUZ3PplIRcehv4Oc7V1miTqlnAthMzjMqigDkjjgte4JZV67RdnDJTQkRw8TklCAU28Emg==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-heading@3.18.0':
- resolution: {integrity: sha512-MTamVnYsFWVndLSq5PRQ7ZmbF6AExsFS9uIvGtUAwuhzvR4of/WHh6wpvWYjA+BLXTWRrfuGHaZTl7UXBN13fg==}
+ '@tiptap/extension-heading@3.20.1':
+ resolution: {integrity: sha512-unudyfQP6FxnyWinxvPqe/51DG91J6AaJm666RnAubgYMCgym+33kBftx4j4A6qf+ddWYbD00thMNKOnVLjAEQ==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-horizontal-rule@3.18.0':
- resolution: {integrity: sha512-fEq7DwwQZ496RHNbMQypBVNqoWnhDEERbzWMBqlmfCfc/0FvJrHtsQkk3k4lgqMYqmBwym3Wp0SrRYiyKCPGTw==}
+ '@tiptap/extension-horizontal-rule@3.20.1':
+ resolution: {integrity: sha512-rjFKFXNntdl0jay8oIGFvvykHlpyQTLmrH3Ag2fj3i8yh6MVvqhtaDomYQbw5sxECd5hBkL+T4n2d2DRuVw/QQ==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-italic@3.18.0':
- resolution: {integrity: sha512-1C4nB08psiRo0BPxAbpYq8peUOKnjQWtBCLPbE6B9ToTK3vmUk0AZTqLO11FvokuM1GF5l2Lg3sKrKFuC2hcjQ==}
+ '@tiptap/extension-italic@3.20.1':
+ resolution: {integrity: sha512-ZYRX13Kt8tR8JOzSXirH3pRpi8x30o7LHxZY58uXBdUvr3tFzOkh03qbN523+diidSVeHP/aMd/+IrplHRkQug==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-link@3.18.0':
- resolution: {integrity: sha512-1J28C4+fKAMQi7q/UsTjAmgmKTnzjExXY98hEBneiVzFDxqF69n7+Vb7nVTNAIhmmJkZMA0DEcMhSiQC/1/u4A==}
+ '@tiptap/extension-link@3.20.1':
+ resolution: {integrity: sha512-oYTTIgsQMqpkSnJAuAc+UtIKMuI4lv9e1y4LfI1iYm6NkEUHhONppU59smhxHLzb3Ww7YpDffbp5IgDTAiJztA==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-list-item@3.18.0':
- resolution: {integrity: sha512-auTSt+NXoUnT0xofzFa+FnXsrW1TPdT1OB3U1OqQCIWkumZqL45A8OK9kpvyQsWj/xJ8fy1iZwFlKXPtxjLd2w==}
+ '@tiptap/extension-list-item@3.20.1':
+ resolution: {integrity: sha512-tzgnyTW82lYJkUnadYbatwkI9dLz/OWRSWuFpQPRje/ItmFMWuQ9c9NDD8qLbXPdEYnvrgSAA+ipCD/1G0qA0Q==}
peerDependencies:
- '@tiptap/extension-list': ^3.18.0
+ '@tiptap/extension-list': ^3.20.1
- '@tiptap/extension-list-keymap@3.18.0':
- resolution: {integrity: sha512-ZzO5r/cW7G0zpL/eM69WPnMpzb0YsSjtI60CYGA0iQDRJnK9INvxu0RU0ewM2faqqwASmtjuNJac+Fjk6scdXg==}
+ '@tiptap/extension-list-keymap@3.20.1':
+ resolution: {integrity: sha512-Dr0xsQKx0XPOgDg7xqoWwfv7FFwZ3WeF3eOjqh3rDXlNHMj1v+UW5cj1HLphrsAZHTrVTn2C+VWPJkMZrSbpvQ==}
peerDependencies:
- '@tiptap/extension-list': ^3.18.0
+ '@tiptap/extension-list': ^3.20.1
- '@tiptap/extension-list@3.18.0':
- resolution: {integrity: sha512-9lQBo45HNqIFcLEHAk+CY3W51eMMxIJjWbthm2CwEWr4PB3+922YELlvq8JcLH1nVFkBVpmBFmQe/GxgnCkzwQ==}
+ '@tiptap/extension-list@3.20.1':
+ resolution: {integrity: sha512-euBRAn0mkV7R2VEE+AuOt3R0j9RHEMFXamPFmtvTo8IInxDClusrm6mJoDjS8gCGAXsQCRiAe1SCQBPgGbOOwg==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-ordered-list@3.18.0':
- resolution: {integrity: sha512-5bUAfklYLS5o6qvLLfreGyGvD1JKXqOQF0YntLyPuCGrXv7+XjPWQL2BmEf59fOn2UPT2syXLQ1WN5MHTArRzg==}
+ '@tiptap/extension-ordered-list@3.20.1':
+ resolution: {integrity: sha512-Y+3Ad7OwAdagqdYwCnbqf7/to5ypD4NnUNHA0TXRCs7cAHRA8AdgPoIcGFpaaSpV86oosNU3yfeJouYeroffog==}
peerDependencies:
- '@tiptap/extension-list': ^3.18.0
+ '@tiptap/extension-list': ^3.20.1
- '@tiptap/extension-paragraph@3.18.0':
- resolution: {integrity: sha512-uvFhdwiur4NhhUdBmDsajxjGAIlg5qga55fYag2DzOXxIQE2M7/aVMRkRpuJzb88GY4EHSh8rY34HgMK2FJt2Q==}
+ '@tiptap/extension-paragraph@3.20.1':
+ resolution: {integrity: sha512-QFrAtXNyv7JSnomMQc1nx5AnG9mMznfbYJAbdOQYVdbLtAzTfiTuNPNbQrufy5ZGtGaHxDCoaygu2QEfzaKG+Q==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-placeholder@3.18.0':
- resolution: {integrity: sha512-jhN1Xa+MpfrTcCYZsFSvZYpUuMutPTC20ms0IsH1yN0y9tbAS+T6PHPC+dsvyAinYdA8yKElM6OO+jpyz4X1cw==}
+ '@tiptap/extension-placeholder@3.20.1':
+ resolution: {integrity: sha512-k+jfbCugYGuIFBdojukgEopGazIMOgHrw46FnyN2X/6ICOIjQP2rh2ObslrsUOsJYoEevxCsNF9hZl1HvWX66g==}
peerDependencies:
- '@tiptap/extensions': ^3.18.0
+ '@tiptap/extensions': ^3.20.1
- '@tiptap/extension-strike@3.18.0':
- resolution: {integrity: sha512-kl/fa68LZg8NWUqTkRTfgyCx+IGqozBmzJxQDc1zxurrIU+VFptDV9UuZim587sbM2KGjCi/PNPjPGk1Uu0PVg==}
+ '@tiptap/extension-strike@3.20.1':
+ resolution: {integrity: sha512-EYgyma10lpsY+rwbVQL9u+gA7hBlKLSMFH7Zgd37FSxukOjr+HE8iKPQQ+SwbGejyDsPlLT8Z5Jnuxo5Ng90Pg==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-table-cell@3.18.0':
- resolution: {integrity: sha512-FFk0KkC0r9M4SU7J5qUxtrWAXGTFSjmLDQiZGy/ZEeQI1kq0vCs9ExCcW4V2R1VI6A/LamzHK+rL9Ez/B+ZUsg==}
+ '@tiptap/extension-table-cell@3.20.1':
+ resolution: {integrity: sha512-nSeboFey+MJqZuCQSbVUajQVaGiypeoUPiGd0CJdyfc0oPsBGGqp7XFJtw5HHEbDqEvSHvGNDoZDFsUTAxUyIg==}
peerDependencies:
- '@tiptap/extension-table': ^3.18.0
+ '@tiptap/extension-table': ^3.20.1
- '@tiptap/extension-table-header@3.18.0':
- resolution: {integrity: sha512-IPVyXWAumrI2qGSSAbI8iR1dFnqg8/tQZX9VqAI+KHoH5dPPEloikHRbZEUngLMwUDQfRWc0rxGGOx/MmDiSKQ==}
+ '@tiptap/extension-table-header@3.20.1':
+ resolution: {integrity: sha512-Xsdgik3Bh5xWSkLaPR/6NDLZR5lgUDIN/yiZ7bLtfTsyGxqEvuW2Y9/j/XP3AfsZzGy2/SuA9bM9zxPcFQxwFA==}
peerDependencies:
- '@tiptap/extension-table': ^3.18.0
+ '@tiptap/extension-table': ^3.20.1
- '@tiptap/extension-table-row@3.18.0':
- resolution: {integrity: sha512-3m7/SmWOlmRHExayHrU6I0wqwuzGE7vE8S3ORqUc7gA9yYA5PbnEQF+1K6jtVQjQd4LsJwBVqIBBPdD5WP1Tvg==}
+ '@tiptap/extension-table-row@3.20.1':
+ resolution: {integrity: sha512-uYE0SdY4J81wn/fg8Gum0TVSTTBekQhRGeSwDnRfBBd9JILBsLotBTt4ucM7JOUjrP9BjS+QFCT9EstAchPHfQ==}
peerDependencies:
- '@tiptap/extension-table': ^3.18.0
+ '@tiptap/extension-table': ^3.20.1
- '@tiptap/extension-table@3.18.0':
- resolution: {integrity: sha512-04BQYiSKxhy33Pd7UFZchW8UYH0FOts8LCwel11n507w2lNd/wbYMTI2A5AfOEOXvr6Xwx/jOWX4MWuhMqiZwQ==}
+ '@tiptap/extension-table@3.20.1':
+ resolution: {integrity: sha512-y2o1De3P/FH80nst1D9pYSwtRvxF87WkNAYGurqCkZ6SjwFq1Ifeh9eY+o79R6SCwcfpvQRytCYd+Yw9o5XAtA==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/extension-text@3.18.0':
- resolution: {integrity: sha512-9TvctdnBCwK/zyTi9kS7nGFNl5OvGM8xE0u38ZmQw5t79JOqJHgOroyqMjw8LHK/1PWrozfNCmsZbpq4IZuKXw==}
+ '@tiptap/extension-text@3.20.1':
+ resolution: {integrity: sha512-7PlIbYW8UenV6NPOXHmv8IcmPGlGx6HFq66RmkJAOJRPXPkTLAiX0N8rQtzUJ6jDEHqoJpaHFEHJw0xzW1yF+A==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-typography@3.18.0':
- resolution: {integrity: sha512-zTNGJjhJG3lObUhhTbDC1IOyi1DCiCd6i11xsnJDPy5BODYc7t7ZP6VMOWU0LIuMsK9kX02dXoNU7OarJgLpCg==}
+ '@tiptap/extension-typography@3.20.1':
+ resolution: {integrity: sha512-iqgB46r391vGlTr61jl6EWKGtyvorgIr+5Iqrze5ZSU8An2ZT0R4CPUI0FcLAAe0PuK8tCLhKtAidNXQotkOiw==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extension-underline@3.18.0':
- resolution: {integrity: sha512-009IeXURNJ/sm1pBqbj+2YQgjQaBtNlJR3dbl6xu49C+qExqCmI7klhKQuwsVVGLR7ahsYlp7d9RlftnhCXIcQ==}
+ '@tiptap/extension-underline@3.20.1':
+ resolution: {integrity: sha512-fmHvDKzwCgnZUwRreq8tYkb1YyEwgzZ6QQkAQ0CsCRtvRMqzerr3Duz0Als4i8voZTuGDEL3VR6nAJbLAb/wPg==}
peerDependencies:
- '@tiptap/core': ^3.18.0
+ '@tiptap/core': ^3.20.1
- '@tiptap/extensions@3.18.0':
- resolution: {integrity: sha512-uSRIE9HGshBN6NRFR3LX2lZqBLvX92SgU5A9AvUbJD4MqU63E+HdruJnRjsVlX3kPrmbIDowxrzXlUcg3K0USQ==}
+ '@tiptap/extensions@3.20.1':
+ resolution: {integrity: sha512-JRc/v+OBH0qLTdvQ7HvHWTxGJH73QOf1MC0R8NhOX2QnAbg2mPFv1h+FjGa2gfLGuCXBdWQomjekWkUKbC4e5A==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/markdown@3.18.0':
- resolution: {integrity: sha512-F4gAr8QXc61dwOi/fwumx/mTqX0CjHiYvN/A4btPf0TpwXRcEVvlN1iz8A/8heXppbyyM6EliSMFFWN2sgVT+w==}
+ '@tiptap/markdown@3.20.1':
+ resolution: {integrity: sha512-dNrtP7kmabDomgjv9G/6+JSFL6WraPaFbmKh1eHSYKdDGvIwBfJnVPTV2VS3bP1OuYJEDJN/2ydtiCHyOTrQsQ==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
- '@tiptap/pm@3.18.0':
- resolution: {integrity: sha512-8RoI5gW0xBVCsuxahpK8vx7onAw6k2/uR3hbGBBnH+HocDMaAZKot3nTyY546ij8ospIC1mnQ7k4BhVUZesZDQ==}
+ '@tiptap/pm@3.20.1':
+ resolution: {integrity: sha512-6kCiGLvpES4AxcEuOhb7HR7/xIeJWMjZlb6J7e8zpiIh5BoQc7NoRdctsnmFEjZvC19bIasccshHQ7H2zchWqw==}
- '@tiptap/react@3.18.0':
- resolution: {integrity: sha512-VC20YhoiWe2E03D1BRH+AVMgXeA7li+bzIoaBtpK9+AdizAC+TvWCb2I/9mQCy9m31zGYTD0vv0e7bVlJi+aKA==}
+ '@tiptap/react@3.20.1':
+ resolution: {integrity: sha512-UH1NpVpCaZBGB3Yr5N6aTS+rsCMDl9wHfrt/w+6+Gz4KHFZ2OILA82hELxZzhNc1Lmjz8vgCArKcsYql9gbzJA==}
peerDependencies:
- '@tiptap/core': ^3.18.0
- '@tiptap/pm': ^3.18.0
+ '@tiptap/core': ^3.20.1
+ '@tiptap/pm': ^3.20.1
'@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
'@types/react-dom': ^17.0.0 || ^18.0.0 || ^19.0.0
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
- '@tiptap/starter-kit@3.18.0':
- resolution: {integrity: sha512-LctpCelqI/5nHEeZgCPiwI1MmTjGr6YCIBGWmS5s4DJE7NfevEkwomR/C05QKdVUwPhpCXIMeS1+h/RYqRo1KA==}
+ '@tiptap/starter-kit@3.20.1':
+ resolution: {integrity: sha512-opqWxL/4OTEiqmVC0wsU4o3JhAf6LycJ2G/gRIZVAIFLljI9uHfpPMTFGxZ5w9IVVJaP5PJysfwW/635kKqkrw==}
'@tybys/wasm-util@0.10.1':
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
@@ -4058,8 +4213,8 @@ packages:
'@types/node@25.0.3':
resolution: {integrity: sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==}
- '@types/node@25.1.0':
- resolution: {integrity: sha512-t7frlewr6+cbx+9Ohpl0NOTKXZNV9xHRmNOvql47BFJKcEG1CxtxlPEEe+gR9uhVWM4DwhnvTF110mIL4yP9RA==}
+ '@types/node@25.5.0':
+ resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==}
'@types/oracledb@6.5.2':
resolution: {integrity: sha512-kK1eBS/Adeyis+3OlBDMeQQuasIDLUYXsi2T15ccNJ0iyUpQ4xDF7svFu3+bGVrI0CMBUclPciz+lsQR3JX3TQ==}
@@ -4070,9 +4225,6 @@ packages:
'@types/parse-unit@1.0.3':
resolution: {integrity: sha512-huu6LsYM5YB1cJnMXZuZ3zjQ7pakbnGu0WRq+QQ7jmDDVenenpG8B5DFAcbPMf2RTRUanWt/GvWMm/bW5yd/UA==}
- '@types/pg-pool@2.0.6':
- resolution: {integrity: sha512-TaAUE5rq2VQYxab5Ts7WZhKNmuN78Q6PiFonTDdpbx8a1H0M1vhy3rhiMjl+e2iHmogyMw7jZF4FrE6eJUy5HQ==}
-
'@types/pg-pool@2.0.7':
resolution: {integrity: sha512-U4CwmGVQcbEuqpyju8/ptOKg6gEC+Tqsvj2xS9o1g71bUh8twxnC6ZL5rZKCsGN0iyH0CwgUyc9VR5owNQF9Ng==}
@@ -4126,6 +4278,9 @@ packages:
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
+ '@types/yargs@17.0.35':
+ resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
+
'@typescript-eslint/eslint-plugin@8.54.0':
resolution: {integrity: sha512-hAAP5io/7csFStuOmR782YmTthKBJ9ND3WVL60hcOjvtGFb+HJxH4O5huAcmcZ9v9G8P+JETiZ/G1B8MALnWZQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4294,8 +4449,8 @@ packages:
resolution: {integrity: sha512-zpRWlhxlJmrIvIlb7VoKxN3vEm0d2YvMaSEjzVYGdTZskwxt4igMjzfbar5A7KkQR/fvC2YNf+2vrfgLoXyrkA==}
engines: {node: '>=14'}
- '@vercel/og@0.8.6':
- resolution: {integrity: sha512-hBcWIOppZV14bi+eAmCZj8Elj8hVSUZJTpf1lgGBhVD85pervzQ1poM/qYfFUlPraYSZYP+ASg6To5BwYmUSGQ==}
+ '@vercel/og@0.11.1':
+ resolution: {integrity: sha512-02rXXRABFq1B03w3aNhcVfxkY+8Ba5QFi4ax0zS0oOiD/LL9WUd/LA7BjVPakrQmVhIBjuo2oBM5U25R9IuXMg==}
engines: {node: '>=16'}
'@webassemblyjs/ast@1.14.1':
@@ -4383,11 +4538,11 @@ packages:
resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==}
engines: {node: '>=8'}
- '@xstate/react@6.0.0':
- resolution: {integrity: sha512-xXlLpFJxqLhhmecAXclBECgk+B4zYSrDTl8hTfPZBogkn82OHKbm9zJxox3Z/YXoOhAQhKFTRLMYGdlbhc6T9A==}
+ '@xstate/react@6.1.0':
+ resolution: {integrity: sha512-ep9F0jGTI63B/jE8GHdMpUqtuz7yRebNaKv8EMUaiSi29NOglywc2X2YSOV/ygbIK+LtmgZ0q9anoEA2iBSEOw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- xstate: ^5.20.0
+ xstate: ^5.28.0
peerDependenciesMeta:
xstate:
optional: true
@@ -4408,8 +4563,8 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@8.3.4:
- resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
+ acorn-walk@8.3.5:
+ resolution: {integrity: sha512-HEHNfbars9v4pgpW6SO1KSPkfoS0xVOM/9UzkJltjlsHZmJasxg8aXkuZa7SMf8vKGIBhpUsPluQSqhJFCqebw==}
engines: {node: '>=0.4.0'}
acorn@8.15.0:
@@ -4417,6 +4572,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.16.0:
+ resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
@@ -4450,18 +4610,21 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- ajv@8.17.1:
- resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
+ ajv@6.14.0:
+ resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==}
+
+ ajv@8.18.0:
+ resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
- ansi-color@0.2.1:
- resolution: {integrity: sha512-bF6xLaZBLpOQzgYUtYEhJx090nPSZk1BQ/q2oyBK9aMMcJHzx9uXGCjI2Y+LebsN4Jwoykr0V9whbPiogdyHoQ==}
+ ansi-color@0.2.2:
+ resolution: {integrity: sha512-qPx7iZZDHITYrrfzaUFXQpIcF2xYifcQHQflP1pFz8yY3lfU6GgCHb0+hJD7nimYKO7f2iaYYwBpZ+GaNcAhcA==}
ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
- ansi-escapes@7.2.0:
- resolution: {integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==}
+ ansi-escapes@7.3.0:
+ resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
engines: {node: '>=18'}
ansi-regex@5.0.1:
@@ -4569,8 +4732,8 @@ packages:
resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==}
engines: {node: '>=8'}
- autoprefixer@10.4.22:
- resolution: {integrity: sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==}
+ autoprefixer@10.4.27:
+ resolution: {integrity: sha512-NP9APE+tO+LuJGn7/9+cohklunJsXWiaWEfV3si4Gi/XHDwVNgkwr1J3RQYFIvPy76GmJ9/bW8vyoU1LcxwKHA==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -4590,15 +4753,15 @@ packages:
resolution: {integrity: sha512-BASOg+YwO2C+346x3LZOeoovTIoTrRqEsqMa6fmfAV0P+U9mFr9NsyOEpiYvFjbc64NMrSswhV50WdXzdb/Z5A==}
engines: {node: '>=4'}
- axios@1.13.4:
- resolution: {integrity: sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==}
+ axios@1.13.6:
+ resolution: {integrity: sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
engines: {node: '>= 0.4'}
- babel-jest@30.2.0:
- resolution: {integrity: sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==}
+ babel-jest@30.3.0:
+ resolution: {integrity: sha512-gRpauEU2KRrCox5Z296aeVHR4jQ98BCnu0IO332D/xpHNOsIH/bgSRk9k6GbKIbBw8vFeN6ctuu6tV8WOyVfYQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
'@babel/core': ^7.11.0 || ^8.0.0-0
@@ -4607,8 +4770,8 @@ packages:
resolution: {integrity: sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==}
engines: {node: '>=12'}
- babel-plugin-jest-hoist@30.2.0:
- resolution: {integrity: sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==}
+ babel-plugin-jest-hoist@30.3.0:
+ resolution: {integrity: sha512-+TRkByhsws6sfPjVaitzadk1I0F5sPvOVUH5tyTSzhePpsGIVrdeunHSw/C36QeocS95OOk8lunc4rlu5Anwsg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
babel-plugin-macros@3.1.0:
@@ -4628,8 +4791,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- babel-preset-jest@30.2.0:
- resolution: {integrity: sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==}
+ babel-preset-jest@30.3.0:
+ resolution: {integrity: sha512-6ZcUbWHC+dMz2vfzdNwi87Z1gQsLNK2uLuK1Q89R11xdvejcivlYYwDlEv0FHX3VwEXpbBQ9uufB/MUNpZGfhQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
'@babel/core': ^7.11.0 || ^8.0.0-beta.1
@@ -4640,6 +4803,10 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ balanced-match@4.0.4:
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
+ engines: {node: 18 || 20 || >=22}
+
base64-js@0.0.8:
resolution: {integrity: sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==}
engines: {node: '>= 0.4'}
@@ -4647,12 +4814,13 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
- baseline-browser-mapping@2.9.19:
- resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==}
+ baseline-browser-mapping@2.10.8:
+ resolution: {integrity: sha512-PCLz/LXGBsNTErbtB6i5u4eLpHeMfi93aUv5duMmj6caNu6IphS4q6UevDnL36sZQv9lrP11dbPKGMaXPwMKfQ==}
+ engines: {node: '>=6.0.0'}
hasBin: true
- baseline-browser-mapping@2.9.3:
- resolution: {integrity: sha512-8QdH6czo+G7uBsNo0GiUfouPN1lRzKdJTGnKXwe12gkFbnnOUaUKGN55dMkfy+mnxmvjwl9zcI4VncczcVXDhA==}
+ baseline-browser-mapping@2.9.19:
+ resolution: {integrity: sha512-ipDqC8FrAl/76p2SSWKSI+H9tFwm7vYqXQrItCuiVPt26Km0jS+NzSsBWAaBusvSbQcfJG+JitdMm+wZAgTYqg==}
hasBin: true
bcrypt-pbkdf@1.0.2:
@@ -4661,10 +4829,6 @@ packages:
bignumber.js@9.3.1:
resolution: {integrity: sha512-Ko0uX15oIUS7wJ3Rb30Fs6SkVbLmPBAKdlm7q9+ak9bbIeFf0MwuBsQV6z7+X768/cHsfg+WlysDWJcmthjsjQ==}
- binary-extensions@2.3.0:
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
- engines: {node: '>=8'}
-
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -4680,6 +4844,10 @@ packages:
brace-expansion@2.0.2:
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+ brace-expansion@5.0.4:
+ resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==}
+ engines: {node: 18 || 20 || >=22}
+
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
@@ -4740,12 +4908,12 @@ packages:
camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- caniuse-lite@1.0.30001759:
- resolution: {integrity: sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==}
-
caniuse-lite@1.0.30001766:
resolution: {integrity: sha512-4C0lfJ0/YPjJQHagaE9x2Elb69CIqEPZeG0anQt9SIvIoOH4a4uaRl73IavyO+0qZh6MDLH//DrXThEYKHkmYA==}
+ caniuse-lite@1.0.30001779:
+ resolution: {integrity: sha512-U5og2PN7V4DMgF50YPNtnZJGWVLFjjsN3zb6uMT5VGYIewieDj1upwfuVNXf4Kor+89c3iCRJnSzMD5LmTvsfA==}
+
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -4792,10 +4960,6 @@ packages:
resolution: {integrity: sha512-drVkSqfwA+TvuEhFipiR1OC9boEGZL5RrWvVsOthdcvQNXyCCuKkEiTOTXZ7qxSf/GLwq4GvzfrQD/Wz325hgw==}
engines: {node: '>=16'}
- chokidar@3.6.0:
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
- engines: {node: '>= 8.10.0'}
-
chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -4811,12 +4975,13 @@ packages:
resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==}
engines: {node: '>=8'}
+ ci-info@4.4.0:
+ resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==}
+ engines: {node: '>=8'}
+
cjs-module-lexer@1.4.3:
resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==}
- cjs-module-lexer@2.1.0:
- resolution: {integrity: sha512-UX0OwmYRYQQetfrLEZeewIFFI+wSTofC+pMBLNuH3RUuu/xzG1oz84UCEDOSoQlN3fZ4+AzmV50ZYvGqkMh9yA==}
-
cjs-module-lexer@2.2.0:
resolution: {integrity: sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==}
@@ -4843,8 +5008,8 @@ packages:
resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==}
engines: {node: '>=8'}
- cli-truncate@5.1.1:
- resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==}
+ cli-truncate@5.2.0:
+ resolution: {integrity: sha512-xRwvIOMGrfOAnM1JYtqQImuaNtDEv9v6oIYAs4LIHwTiKee8uwvIi363igssOC0O5U04i4AlENs79LQLu9tEMw==}
engines: {node: '>=20'}
cli-width@3.0.0:
@@ -4906,8 +5071,8 @@ packages:
comma-separated-tokens@2.0.3:
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
- commander@14.0.2:
- resolution: {integrity: sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==}
+ commander@14.0.3:
+ resolution: {integrity: sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==}
engines: {node: '>=20'}
commander@2.20.3:
@@ -5003,8 +5168,8 @@ packages:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- css-gradient-parser@0.0.16:
- resolution: {integrity: sha512-3O5QdqgFRUbXvK1x5INf1YkBz1UKSWqrd63vWsum8MNHDBYD5urm3QtxZbKU259OrEXNM26lP/MPY3d1IGkBgA==}
+ css-gradient-parser@0.0.17:
+ resolution: {integrity: sha512-w2Xy9UMMwlKtou0vlRnXvWglPAceXCTtcmVSo8ZBUvqCV5aXEFP/PC6d+I464810I9FT++UACwTD5511bmGPUg==}
engines: {node: '>=16'}
css-to-react-native@3.2.0:
@@ -5057,8 +5222,8 @@ packages:
resolution: {integrity: sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==}
engines: {node: '>=4.0'}
- dayjs@1.11.19:
- resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
+ dayjs@1.11.20:
+ resolution: {integrity: sha512-YbwwqR/uYpeoP4pu043q+LTDLFBLApUP6VxRihdfNTqu4ubqMlGDLd6ErXhEgsyvY0K6nCs7nggYumAN+9uEuQ==}
debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
@@ -5099,8 +5264,11 @@ packages:
decode-named-character-reference@1.1.0:
resolution: {integrity: sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==}
- dedent@1.7.0:
- resolution: {integrity: sha512-HGFtf8yhuhGhqO07SV79tRp+br4MnbdjeVxotpn1QBl30pcLLCQjX5b2295ll0fv8RKDKsmWYrl05usHM9CewQ==}
+ decode-named-character-reference@1.3.0:
+ resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
+
+ dedent@1.7.2:
+ resolution: {integrity: sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==}
peerDependencies:
babel-plugin-macros: ^3.1.0
peerDependenciesMeta:
@@ -5210,8 +5378,8 @@ packages:
echarts@5.6.0:
resolution: {integrity: sha512-oTbVTsXfKuEhxftHqL5xprgLoc0k7uScAwtryCgWF6hPYFLRwOUHiFmHGCBKP5NPFNkDVopOieyUqYGH8Fa3kA==}
- electron-to-chromium@1.5.266:
- resolution: {integrity: sha512-kgWEglXvkEfMH7rxP5OSZZwnaDWT7J9EoZCujhnpLbfi0bbNtRkgdX2E3gt0Uer11c61qCYktB3hwkAS325sJg==}
+ electron-to-chromium@1.5.313:
+ resolution: {integrity: sha512-QBMrTWEf00GXZmJyx2lbYD45jpI3TUFnNIzJ5BBc8piGUDwMPa1GV6HJWTZVvY/eiN3fSopl7NRbgGp9sZ9LTA==}
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
@@ -5239,8 +5407,8 @@ packages:
end-of-stream@1.4.5:
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
- enhanced-resolve@5.18.4:
- resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
+ enhanced-resolve@5.20.0:
+ resolution: {integrity: sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==}
engines: {node: '>=10.13.0'}
entities@4.5.0:
@@ -5458,8 +5626,8 @@ packages:
resolution: {integrity: sha512-8q3LsZjRezbFZ2PN+uP+Q7pnHUMmAOziU2vA2OwoFaKIXxlxl38IylhSSgUorWu/rf4er67w0ikBqjBFk/pomA==}
engines: {node: '>=10.13.0'}
- eventemitter3@5.0.1:
- resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
+ eventemitter3@5.0.4:
+ resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
events@3.3.0:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
@@ -5481,6 +5649,10 @@ packages:
resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ expect@30.3.0:
+ resolution: {integrity: sha512-1zQrciTiQfRdo7qJM1uG4navm8DayFa2TgCSRlzUyNkhcJ6XUZF3hjnpkyr3VhAqPH7i/9GkG7Tv5abz6fqz0Q==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
extend-shallow@2.0.1:
resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==}
engines: {node: '>=0.10.0'}
@@ -5590,6 +5762,9 @@ packages:
flatted@3.3.3:
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
+ flatted@3.4.1:
+ resolution: {integrity: sha512-IxfVbRFVlV8V/yRaGzk0UVIcsKKHMSfYw66T/u4nTwlWteQePsxe//LjudR1AMX4tZW3WFCh3Zqa/sjlqpbURQ==}
+
follow-redirects@1.15.11:
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
engines: {node: '>=4.0'}
@@ -5632,8 +5807,8 @@ packages:
fraction.js@5.3.4:
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
- framer-motion@12.29.2:
- resolution: {integrity: sha512-lSNRzBJk4wuIy0emYQ/nfZ7eWhqud2umPKw2QAQki6uKhZPKm2hRQHeQoHTG9MIvfobb+A/LbEWPJU794ZUKrg==}
+ framer-motion@12.36.0:
+ resolution: {integrity: sha512-4PqYHAT7gev0ke0wos+PyrcFxI0HScjm3asgU8nSYa8YzJFuwgIvdj3/s3ZaxLq0bUSboIn19A2WS/MHwLCvfw==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -5694,8 +5869,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.4.0:
- resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
+ get-east-asian-width@1.5.0:
+ resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==}
engines: {node: '>=18'}
get-intrinsic@1.3.0:
@@ -5735,14 +5910,15 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.4.5:
- resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
- hasBin: true
-
glob@10.5.0:
resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
+ deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
hasBin: true
+ glob@13.0.6:
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
+
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -5828,8 +6004,8 @@ packages:
ws:
optional: true
- graphql@16.12.0:
- resolution: {integrity: sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ==}
+ graphql@16.13.1:
+ resolution: {integrity: sha512-gGgrVCoDKlIZ8fIqXBBb0pPKqDgki0Z/FSKNiQzSGj2uEYHr1tq5wmBegGwJx6QB5S5cM0khSBpi/JFHMCvsmQ==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
gzip-size@6.0.0:
@@ -5978,14 +6154,14 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- i18next-browser-languagedetector@8.2.0:
- resolution: {integrity: sha512-P+3zEKLnOF0qmiesW383vsLdtQVyKtCNA9cjSoKCppTKPQVfKd2W8hbVo5ZhNJKDqeM7BOcvNoKJOjpHh4Js9g==}
+ i18next-browser-languagedetector@8.2.1:
+ resolution: {integrity: sha512-bZg8+4bdmaOiApD7N7BPT9W8MLZG+nPTOFlLiJiT8uzKXFjhxw4v2ierCXOwB5sFDMtuA5G4kgYZ0AznZxQ/cw==}
i18next-resources-to-backend@1.2.1:
resolution: {integrity: sha512-okHbVA+HZ7n1/76MsfhPqDou0fptl2dAlhRDu2ideXloRRduzHsqDOznJBef+R3DFZnbvWoBW+KxJ7fnFjd6Yw==}
- i18next@25.8.0:
- resolution: {integrity: sha512-urrg4HMFFMQZ2bbKRK7IZ8/CTE7D8H4JRlAwqA2ZwDRFfdd0K/4cdbNNLgfn9mo+I/h9wJu61qJzH7jCFAhUZQ==}
+ i18next@25.8.18:
+ resolution: {integrity: sha512-lzY5X83BiL5AP77+9DydbrqkQHFN9hUzWGjqjLpPcp5ZOzuu1aSoKaU3xbBLSjWx9dAzW431y+d+aogxOZaKRA==}
peerDependencies:
typescript: ^5
peerDependenciesMeta:
@@ -6029,6 +6205,10 @@ packages:
import-in-the-middle@2.0.6:
resolution: {integrity: sha512-3vZV3jX0XRFW3EJDTwzWoZa+RH1b8eTTx6YOCjglrLyPuepwoBti1k3L2dKwdCUrnVEfc5CuRuGstaC/uQJJaw==}
+ import-in-the-middle@3.0.0:
+ resolution: {integrity: sha512-OnGy+eYT7wVejH2XWgLRgbmzujhhVIATQH0ztIeRilwHBjTeG3pD+XnH3PKX0r9gJ0BuJmJ68q/oh9qgXnNDQg==}
+ engines: {node: '>=18'}
+
import-local@3.2.0:
resolution: {integrity: sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==}
engines: {node: '>=8'}
@@ -6090,10 +6270,6 @@ packages:
resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
engines: {node: '>= 0.4'}
- is-binary-path@2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
-
is-boolean-object@1.2.2:
resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
@@ -6310,16 +6486,16 @@ packages:
resolution: {integrity: sha512-M0c7cKHmdyEUtjemnJyx/y9uX16XHocL46yQvyqDlPdvAcwPDbHrIbKjQdBqtiE4apQ/9dmr+ZLJYYPGnurgpw==}
engines: {node: '>=10'}
- jest-changed-files@30.2.0:
- resolution: {integrity: sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==}
+ jest-changed-files@30.3.0:
+ resolution: {integrity: sha512-B/7Cny6cV5At6M25EWDgf9S617lHivamL8vl6KEpJqkStauzcG4e+WPfDgMMF+H4FVH4A2PLRyvgDJan4441QA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-circus@30.2.0:
- resolution: {integrity: sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==}
+ jest-circus@30.3.0:
+ resolution: {integrity: sha512-PyXq5szeSfR/4f1lYqCmmQjh0vqDkURUYi9N6whnHjlRz4IUQfMcXkGLeEoiJtxtyPqgUaUUfyQlApXWBSN1RA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-cli@30.2.0:
- resolution: {integrity: sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==}
+ jest-cli@30.3.0:
+ resolution: {integrity: sha512-l6Tqx+j1fDXJEW5bqYykDQQ7mQg+9mhWXtnj+tQZrTWYHyHoi6Be8HPumDSA+UiX2/2buEgjA58iJzdj146uCw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
@@ -6328,8 +6504,8 @@ packages:
node-notifier:
optional: true
- jest-config@30.2.0:
- resolution: {integrity: sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==}
+ jest-config@30.3.0:
+ resolution: {integrity: sha512-WPMAkMAtNDY9P/oKObtsRG/6KTrhtgPJoBTmk20uDn4Uy6/3EJnnaZJre/FMT1KVRx8cve1r7/FlMIOfRVWL4w==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
'@types/node': '*'
@@ -6351,16 +6527,20 @@ packages:
resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-diff@30.3.0:
+ resolution: {integrity: sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-docblock@30.2.0:
resolution: {integrity: sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-each@30.2.0:
- resolution: {integrity: sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==}
+ jest-each@30.3.0:
+ resolution: {integrity: sha512-V8eMndg/aZ+3LnCJgSm13IxS5XSBM22QSZc9BtPK8Dek6pm+hfUNfwBdvsB3d342bo1q7wnSkC38zjX259qZNA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-environment-jsdom@30.2.0:
- resolution: {integrity: sha512-zbBTiqr2Vl78pKp/laGBREYzbZx9ZtqPjOK4++lL4BNDhxRnahg51HtoDrk9/VjIy9IthNEWdKVd7H5bqBhiWQ==}
+ jest-environment-jsdom@30.3.0:
+ resolution: {integrity: sha512-RLEOJy6ip1lpw0yqJ8tB3i88FC7VBz7i00Zvl2qF71IdxjS98gC9/0SPWYIBVXHm5hgCYK0PAlSlnHGGy9RoMg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
peerDependencies:
canvas: ^3.0.0
@@ -6368,16 +6548,20 @@ packages:
canvas:
optional: true
- jest-environment-node@30.2.0:
- resolution: {integrity: sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==}
+ jest-environment-node@30.3.0:
+ resolution: {integrity: sha512-4i6HItw/JSiJVsC5q0hnKIe/hbYfZLVG9YJ/0pU9Hz2n/9qZe3Rhn5s5CUZA5ORZlcdT/vmAXRMyONXJwPrmYQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-haste-map@30.2.0:
resolution: {integrity: sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-leak-detector@30.2.0:
- resolution: {integrity: sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==}
+ jest-haste-map@30.3.0:
+ resolution: {integrity: sha512-mMi2oqG4KRU0R9QEtscl87JzMXfUhbKaFqOxmjb2CKcbHcUGFrJCBWHmnTiUqi6JcnzoBlO4rWfpdl2k/RfLCA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ jest-leak-detector@30.3.0:
+ resolution: {integrity: sha512-cuKmUUGIjfXZAiGJ7TbEMx0bcqNdPPI6P1V+7aF+m/FUJqFDxkFR4JqkTu8ZOiU5AaX/x0hZ20KaaIPXQzbMGQ==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-matcher-utils@30.0.4:
@@ -6388,6 +6572,10 @@ packages:
resolution: {integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-matcher-utils@30.3.0:
+ resolution: {integrity: sha512-HEtc9uFQgaUHkC7nLSlQL3Tph4Pjxt/yiPvkIrrDCt9jhoLIgxaubo1G+CFOnmHYMxHwwdaSN7mkIFs6ZK8OhA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-message-util@30.0.2:
resolution: {integrity: sha512-vXywcxmr0SsKXF/bAD7t7nMamRvPuJkras00gqYeB1V0WllxZrbZ0paRr3XqpFU2sYYjD0qAaG2fRyn/CGZ0aw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -6396,6 +6584,10 @@ packages:
resolution: {integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-message-util@30.3.0:
+ resolution: {integrity: sha512-Z/j4Bo+4ySJ+JPJN3b2Qbl9hDq3VrXmnjjGEWD/x0BCXeOXPTV1iZYYzl2X8c1MaCOL+ewMyNBcm88sboE6YWw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-mock@30.0.2:
resolution: {integrity: sha512-PnZOHmqup/9cT/y+pXIVbbi8ID6U1XHRmbvR7MvUy4SLqhCbwpkmXhLbsWbGewHrV5x/1bF7YDjs+x24/QSvFA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -6404,6 +6596,10 @@ packages:
resolution: {integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-mock@30.3.0:
+ resolution: {integrity: sha512-OTzICK8CpE+t4ndhKrwlIdbM6Pn8j00lvmSmq5ejiO+KxukbLjgOflKWMn3KE34EZdQm5RqTuKj+5RIEniYhog==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-pnp-resolver@1.2.3:
resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==}
engines: {node: '>=6'}
@@ -6417,26 +6613,30 @@ packages:
resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-resolve-dependencies@30.2.0:
- resolution: {integrity: sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==}
+ jest-resolve-dependencies@30.3.0:
+ resolution: {integrity: sha512-9ev8s3YN6Hsyz9LV75XUwkCVFlwPbaFn6Wp75qnI0wzAINYWY8Fb3+6y59Rwd3QaS3kKXffHXsZMziMavfz/nw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-resolve@30.2.0:
- resolution: {integrity: sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==}
+ jest-resolve@30.3.0:
+ resolution: {integrity: sha512-NRtTAHQlpd15F9rUR36jqwelbrDV/dY4vzNte3S2kxCKUJRYNd5/6nTSbYiak1VX5g8IoFF23Uj5TURkUW8O5g==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-runner@30.2.0:
- resolution: {integrity: sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==}
+ jest-runner@30.3.0:
+ resolution: {integrity: sha512-gDv6C9LGKWDPLia9TSzZwf4h3kMQCqyTpq+95PODnTRDO0g9os48XIYYkS6D236vjpBir2fF63YmJFtqkS5Duw==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-runtime@30.2.0:
- resolution: {integrity: sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==}
+ jest-runtime@30.3.0:
+ resolution: {integrity: sha512-CgC+hIBJbuh78HEffkhNKcbXAytQViplcl8xupqeIWyKQF50kCQA8J7GeJCkjisC6hpnC9Muf8jV5RdtdFbGng==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-snapshot@30.2.0:
resolution: {integrity: sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ jest-snapshot@30.3.0:
+ resolution: {integrity: sha512-f14c7atpb4O2DeNhwcvS810Y63wEn8O1HqK/luJ4F6M4NjvxmAKQwBUWjbExUtMxWJQ0wVgmCKymeJK6NZMnfQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-util@30.0.2:
resolution: {integrity: sha512-8IyqfKS4MqprBuUpZNlFB5l+WFehc8bfCe1HSZFHzft2mOuND8Cvi9r1musli+u6F3TqanCZ/Ik4H4pXUolZIg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
@@ -6445,12 +6645,16 @@ packages:
resolution: {integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-validate@30.2.0:
- resolution: {integrity: sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==}
+ jest-util@30.3.0:
+ resolution: {integrity: sha512-/jZDa00a3Sz7rdyu55NLrQCIrbyIkbBxareejQI315f/i8HjYN+ZWsDLLpoQSiUIEIyZF/R8fDg3BmB8AtHttg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-watcher@30.2.0:
- resolution: {integrity: sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==}
+ jest-validate@30.3.0:
+ resolution: {integrity: sha512-I/xzC8h5G+SHCb2P2gWkJYrNiTbeL47KvKeW5EzplkyxzBRBw1ssSHlI/jXec0ukH2q7x2zAWQm7015iusg62Q==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ jest-watcher@30.3.0:
+ resolution: {integrity: sha512-PJ1d9ThtTR8aMiBWUdcownq9mDdLXsQzJayTk4kmaBRHKvwNQn+ANveuhEBUyNI2hR1TVhvQ8D5kHubbzBHR/w==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-worker@27.5.1:
@@ -6461,8 +6665,12 @@ packages:
resolution: {integrity: sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest@30.2.0:
- resolution: {integrity: sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==}
+ jest-worker@30.3.0:
+ resolution: {integrity: sha512-DrCKkaQwHexjRUFTmPzs7sHQe0TSj9nvDALKGdwmK5mW9v7j90BudWirKAJHt3QQ9Dhrg1F7DogPzhChppkJpQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
+ jest@30.3.0:
+ resolution: {integrity: sha512-AkXIIFcaazymvey2i/+F94XRnM6TsVLZDhBMLsd1Sf/W0wzsvvpjeyUrCZD6HGG4SDYPgDJDBKeiJTBb10WzMg==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
hasBin: true
peerDependencies:
@@ -6601,58 +6809,58 @@ packages:
resolution: {integrity: sha512-aprLII/vPzuQvYZnDRU78Fns9I2Ag3gi4Ipga/hxnVMCZC8DnR2nI7XBqrPoywGfxqIx/DgarGvDJZAD3YBTgQ==}
hasBin: true
- lefthook-darwin-arm64@2.0.16:
- resolution: {integrity: sha512-kjVHkD7rfPa7M0aKJSx/yatdV9uC6o3cJyzM9zk7cg5HD7alSwchFalgF/P0w6nt7C02rAUx8C05qiWCDWaKeA==}
+ lefthook-darwin-arm64@2.1.4:
+ resolution: {integrity: sha512-BUAAE9+rUrjr39a+wH/1zHmGrDdwUQ2Yq/z6BQbM/yUb9qtXBRcQ5eOXxApqWW177VhGBpX31aqIlfAZ5Q7wzw==}
cpu: [arm64]
os: [darwin]
- lefthook-darwin-x64@2.0.16:
- resolution: {integrity: sha512-tbJ0mdT49DNRLqknro0BvWrYNC23TTcqBJFQnQ32pq1/H9B87bTNKvKKAtogp/saxfHUzkIq1i3twZlBZ3G3Xw==}
+ lefthook-darwin-x64@2.1.4:
+ resolution: {integrity: sha512-K1ncIMEe84fe+ss1hQNO7rIvqiKy2TJvTFpkypvqFodT7mJXZn7GLKYTIXdIuyPAYthRa9DwFnx5uMoHwD2F1Q==}
cpu: [x64]
os: [darwin]
- lefthook-freebsd-arm64@2.0.16:
- resolution: {integrity: sha512-wa1KFD5tSUhw3tuetVef/BCSxbbmS7auTDNdoLx3WFeuN5RS15woSN9+E8GPGOOY1g2HCsgdLrhrexEomulfjQ==}
+ lefthook-freebsd-arm64@2.1.4:
+ resolution: {integrity: sha512-PVUhjOhVN71YaYsVdQyNbFZ4a2jFB2Tg5hKrrn9kaWpx64aLz/XivLjwr8sEuTaP1GRlEWBpW6Bhrcsyo39qFw==}
cpu: [arm64]
os: [freebsd]
- lefthook-freebsd-x64@2.0.16:
- resolution: {integrity: sha512-UXowfn2e94AwNk9UuoePRK+qiF15jZsssiyA15VK5GTtxpn6Sn+Z2QFciofxJczXXxM4abaf7qgx2OoJBt32VA==}
+ lefthook-freebsd-x64@2.1.4:
+ resolution: {integrity: sha512-ZWV9o/LeyWNEBoVO+BhLqxH3rGTba05nkm5NvMjEFSj7LbUNUDbQmupZwtHl1OMGJO66eZP0CalzRfUH6GhBxQ==}
cpu: [x64]
os: [freebsd]
- lefthook-linux-arm64@2.0.16:
- resolution: {integrity: sha512-U355elz4Z0AHSVqxfcglN09TGR86ov/GtYlliDknci2mmz6EWLiD3dTYnqJiwa4dYxqmuCDc/DvAL9rgb3YJiQ==}
+ lefthook-linux-arm64@2.1.4:
+ resolution: {integrity: sha512-iWN0pGnTjrIvNIcSI1vQBJXUbybTqJ5CLMniPA0olabMXQfPDrdMKVQe+mgdwHK+E3/Y0H0ZNL3lnOj6Sk6szA==}
cpu: [arm64]
os: [linux]
- lefthook-linux-x64@2.0.16:
- resolution: {integrity: sha512-7eAvBeWGAgjOKZ23OQbjJINLPImDIuDeX8dXOfk+aI6IFt2X6KCzRkp+ASUvGQtrPuNZQZT43EhW0/1jZU14ZQ==}
+ lefthook-linux-x64@2.1.4:
+ resolution: {integrity: sha512-96bTBE/JdYgqWYAJDh+/e/0MaxJ25XTOAk7iy/fKoZ1ugf6S0W9bEFbnCFNooXOcxNVTan5xWKfcjJmPIKtsJA==}
cpu: [x64]
os: [linux]
- lefthook-openbsd-arm64@2.0.16:
- resolution: {integrity: sha512-Fcd+E17ZkWGnRSQINb5gf+rNy2So5PYn5mBljiC31dl+TgWM8Wy46mSEGveHo7lKCO3q+DkmHIa50Qm58G03AQ==}
+ lefthook-openbsd-arm64@2.1.4:
+ resolution: {integrity: sha512-oYUoK6AIJNEr9lUSpIMj6g7sWzotvtc3ryw7yoOyQM6uqmEduw73URV/qGoUcm4nqqmR93ZalZwR2r3Gd61zvw==}
cpu: [arm64]
os: [openbsd]
- lefthook-openbsd-x64@2.0.16:
- resolution: {integrity: sha512-uL5nOkz8eBtQHped0/tB5X8clZ5kfnyjQrv1fpKbGAjeFHI2J+GmRqcn6Awq2IeuBbQvkyV6jDjpATyHBp5mCA==}
+ lefthook-openbsd-x64@2.1.4:
+ resolution: {integrity: sha512-i/Dv9Jcm68y9cggr1PhyUhOabBGP9+hzQPoiyOhKks7y9qrJl79A8XfG6LHekSuYc2VpiSu5wdnnrE1cj2nfTg==}
cpu: [x64]
os: [openbsd]
- lefthook-windows-arm64@2.0.16:
- resolution: {integrity: sha512-U61bNWzD6Vd2kjuJ7b4voPfTQ4mlBFOyTpCU3k/h0YjpKDQEFT1T5fDKkDothdnw/JVDSgrclIcfAY7Jyr/UIg==}
+ lefthook-windows-arm64@2.1.4:
+ resolution: {integrity: sha512-hSww7z+QX4YMnw2lK7DMrs3+w7NtxksuMKOkCKGyxUAC/0m1LAICo0ZbtdDtZ7agxRQQQ/SEbzFRhU5ysNcbjA==}
cpu: [arm64]
os: [win32]
- lefthook-windows-x64@2.0.16:
- resolution: {integrity: sha512-dCHi2+hebhPI0LQUGRNjPMsGRyXhrTN3Y/b8M4HO8KVyGamKB3Yemf67ya81tZopDkxNVy5XUBXLYWKGhnAfLQ==}
+ lefthook-windows-x64@2.1.4:
+ resolution: {integrity: sha512-eE68LwnogxwcPgGsbVGPGxmghyMGmU9SdGwcc+uhGnUxPz1jL89oECMWJNc36zjVK24umNeDAzB5KA3lw1MuWw==}
cpu: [x64]
os: [win32]
- lefthook@2.0.16:
- resolution: {integrity: sha512-ABs3M5V9c4nqxFnZO509HXuQTu8GM8hmqc9ruV0acQ81yKlxEq70MRoYP5Z1dr5le326X8vA5qj3arJA36yE3A==}
+ lefthook@2.1.4:
+ resolution: {integrity: sha512-JNfJ5gAn0KADvJ1I6/xMcx70+/6TL6U9gqGkKvPw5RNMfatC7jIg0Evl97HN846xmfz959BV70l8r3QsBJk30w==}
hasBin: true
leven@3.1.0:
@@ -6663,74 +6871,74 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lightningcss-android-arm64@1.30.2:
- resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
+ lightningcss-android-arm64@1.31.1:
+ resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [android]
- lightningcss-darwin-arm64@1.30.2:
- resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
+ lightningcss-darwin-arm64@1.31.1:
+ resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-x64@1.30.2:
- resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
+ lightningcss-darwin-x64@1.31.1:
+ resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
- lightningcss-freebsd-x64@1.30.2:
- resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
+ lightningcss-freebsd-x64@1.31.1:
+ resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
- lightningcss-linux-arm-gnueabihf@1.30.2:
- resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
+ lightningcss-linux-arm-gnueabihf@1.31.1:
+ resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
- lightningcss-linux-arm64-gnu@1.30.2:
- resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
+ lightningcss-linux-arm64-gnu@1.31.1:
+ resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.30.2:
- resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
+ lightningcss-linux-arm64-musl@1.31.1:
+ resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
- lightningcss-linux-x64-gnu@1.30.2:
- resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
+ lightningcss-linux-x64-gnu@1.31.1:
+ resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.30.2:
- resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
+ lightningcss-linux-x64-musl@1.31.1:
+ resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
- lightningcss-win32-arm64-msvc@1.30.2:
- resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
+ lightningcss-win32-arm64-msvc@1.31.1:
+ resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
- lightningcss-win32-x64-msvc@1.30.2:
- resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
+ lightningcss-win32-x64-msvc@1.31.1:
+ resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
- lightningcss@1.30.2:
- resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
+ lightningcss@1.31.1:
+ resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
engines: {node: '>= 12.0.0'}
linebreak@1.1.0:
@@ -6745,8 +6953,8 @@ packages:
linkifyjs@4.3.2:
resolution: {integrity: sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==}
- lint-staged@16.2.7:
- resolution: {integrity: sha512-lDIj4RnYmK7/kXMya+qJsmkRFkGolciXjrsZ6PC25GdTfWOAWetR0ZbsNXRAj1EHHImRSalc+whZFg56F5DVow==}
+ lint-staged@16.4.0:
+ resolution: {integrity: sha512-lBWt8hujh/Cjysw5GYVmZpFHXDCgZzhrOm8vbcUdobADZNOK/bRshr2kM3DfgrrtR1DQhfupW9gnIXOfiFi+bw==}
engines: {node: '>=20.17'}
hasBin: true
@@ -6852,11 +7060,15 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+ lru-cache@11.2.7:
+ resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==}
+ engines: {node: 20 || >=22}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lucide-react@0.556.0:
- resolution: {integrity: sha512-iOb8dRk7kLaYBZhR2VlV1CeJGxChBgUthpSP8wom9jfj79qovgG6qcSdiy6vkoREKPnbUYzJsCn4o4PtG3Iy+A==}
+ lucide-react@0.577.0:
+ resolution: {integrity: sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -6871,10 +7083,6 @@ packages:
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
- magic-string@0.30.8:
- resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
- engines: {node: '>=12'}
-
make-dir@4.0.0:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
@@ -6889,15 +7097,15 @@ packages:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
- markdown-it@14.1.0:
- resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
+ markdown-it@14.1.1:
+ resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
hasBin: true
markdown-table@3.0.4:
resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
- marked@17.0.1:
- resolution: {integrity: sha512-boeBdiS0ghpWcSwoNm/jJBwdpFaMnZWRzjA6SkUMYb40SVaN1x7mmfGKp0jvexGcx+7y2La5zRZsYFZI6Qpypg==}
+ marked@17.0.4:
+ resolution: {integrity: sha512-NOmVMM+KAokHMvjWmC5N/ZOvgmSWuqJB8FoYI019j4ogb/PeRMKoKIjReZ2w3376kkA8dSJIP8uD993Kxc0iRQ==}
engines: {node: '>= 20'}
hasBin: true
@@ -6916,6 +7124,9 @@ packages:
mdast-util-from-markdown@2.0.2:
resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
+ mdast-util-from-markdown@2.0.3:
+ resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==}
+
mdast-util-gfm-autolink-literal@2.0.1:
resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
@@ -7092,6 +7303,10 @@ packages:
minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
+ minimatch@10.2.4:
+ resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==}
+ engines: {node: 18 || 20 || >=22}
+
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -7099,14 +7314,18 @@ packages:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
+ minimatch@9.0.9:
+ resolution: {integrity: sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
minimist@1.2.6:
resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==}
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass@7.1.2:
- resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ minipass@7.1.3:
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
engines: {node: '>=16 || 14 >=14.17'}
mkdirp-classic@0.5.3:
@@ -7115,14 +7334,14 @@ packages:
module-details-from-path@1.0.4:
resolution: {integrity: sha512-EGWKgxALGMgzvxYF1UyGTy0HXX/2vHLkw6+NvDKW2jypWbHpjQuj4UMcqQWXHERJhVGKikolT06G3bcKe4fi7w==}
- motion-dom@12.29.2:
- resolution: {integrity: sha512-/k+NuycVV8pykxyiTCoFzIVLA95Nb1BFIVvfSu9L50/6K6qNeAYtkxXILy/LRutt7AzaYDc2myj0wkCVVYAPPA==}
+ motion-dom@12.36.0:
+ resolution: {integrity: sha512-Ep1pq8P88rGJ75om8lTCA13zqd7ywPGwCqwuWwin6BKc0hMLkVfcS6qKlRqEo2+t0DwoUcgGJfXwaiFn4AOcQA==}
- motion-utils@12.29.2:
- resolution: {integrity: sha512-G3kc34H2cX2gI63RqU+cZq+zWRRPSsNIOjpdl9TN4AQwC4sgwYPl/Q/Obf/d53nOm569T0fYK+tcoSV50BWx8A==}
+ motion-utils@12.36.0:
+ resolution: {integrity: sha512-eHWisygbiwVvf6PZ1vhaHCLamvkSbPIeAYxWUuL3a2PD/TROgE7FvfHWTIH4vMl798QLfMw15nRqIaRDXTlYRg==}
- motion@12.29.2:
- resolution: {integrity: sha512-jMpHdAzEDF1QQ055cB+1lOBLdJ6ialVWl6QQzpJI2OvmHequ7zFVHM2mx0HNAy+Tu4omUlApfC+4vnkX0geEOg==}
+ motion@12.36.0:
+ resolution: {integrity: sha512-5BMQuktYUX8aEByKWYx5tR4X3G08H2OMgp46wTxZ4o7CDDstyy4A0fe9RLNMjZiwvntCWGDvs16sC87/emz4Yw==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -7151,10 +7370,6 @@ packages:
nan@2.25.0:
resolution: {integrity: sha512-0M90Ag7Xn5KMLLZ7zliPWP3rT90P6PN+IzVFS0VqmnPktBk3700xUVv8Ikm9EUaUE5SDWdp/BIxdENzVznpm1g==}
- nano-spawn@2.0.0:
- resolution: {integrity: sha512-tacvGzUY5o2D8CBh2rrwxyNojUsZNU2zjNTzKQrkgGJQTbGAfArVWXSKMBokBeeg6C7OLRGUEyoFlYbfeWQIqw==}
- engines: {node: '>=20.17'}
-
nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -7200,8 +7415,8 @@ packages:
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
- node-abi@3.87.0:
- resolution: {integrity: sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==}
+ node-abi@3.88.0:
+ resolution: {integrity: sha512-At6b4UqIEVudaqPsXjmUO1r/N5BUr4yhDGs5PkBE8/oG5+TfLPhFechiskFsnT6Ql0VfUXbalUUCbfXxtj7K+w==}
engines: {node: '>=10'}
node-domexception@1.0.0:
@@ -7229,8 +7444,8 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- node-releases@2.0.27:
- resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
+ node-releases@2.0.36:
+ resolution: {integrity: sha512-TdC8FSgHz8Mwtw9g5L4gR/Sh9XhSP/0DEkQxfEFXOpiul5IiHgHan2VhYYb6agDSfp4KuvltmGApc8HMgUrIkA==}
normalize-path@2.1.1:
resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
@@ -7240,10 +7455,6 @@ packages:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
- normalize-range@0.1.2:
- resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
- engines: {node: '>=0.10.0'}
-
npm-run-path@3.1.0:
resolution: {integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==}
engines: {node: '>=8'}
@@ -7255,8 +7466,8 @@ packages:
nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- nwsapi@2.2.22:
- resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==}
+ nwsapi@2.2.23:
+ resolution: {integrity: sha512-7wfH4sLbt4M0gCDzGE6vzQBo0bfTKjU7Sfpqy/7gs1qBfYz2vEJH6vXcBKpO3+6Yu1telwd0t9HpyOoLEQQbIQ==}
oauth-sign@0.9.0:
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
@@ -7439,6 +7650,10 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
+ path-scurry@2.0.2:
+ resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
+ engines: {node: 18 || 20 || >=22}
+
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
@@ -7472,11 +7687,6 @@ packages:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
- pidtree@0.6.0:
- resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
- engines: {node: '>=0.10'}
- hasBin: true
-
pirates@4.0.7:
resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
engines: {node: '>= 6'}
@@ -7502,8 +7712,8 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.6:
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
+ postcss@8.5.8:
+ resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==}
engines: {node: ^10 || ^12 || >=14}
postgres-array@2.0.0:
@@ -7616,6 +7826,10 @@ packages:
resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==}
engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+ pretty-format@30.3.0:
+ resolution: {integrity: sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
process@0.10.1:
resolution: {integrity: sha512-dyIett8dgGIZ/TXKUzeYExt7WA6ldDzys9vTDU/cCA9L17Ypme+KzS+NjQCjpn9xsvi/shbMC+yP/BcFMBz0NA==}
engines: {node: '>= 0.6.0'}
@@ -7633,8 +7847,8 @@ packages:
property-information@7.1.0:
resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
- prosemirror-changeset@2.3.1:
- resolution: {integrity: sha512-j0kORIBm8ayJNl3zQvD1TTPHJX3g042et6y/KQhZhnPrruO8exkTgG8X+NRpj7kIyMMEx74Xb3DyMIBtO0IKkQ==}
+ prosemirror-changeset@2.4.0:
+ resolution: {integrity: sha512-LvqH2v7Q2SF6yxatuPP2e8vSUKS/L+xAU7dPDC4RMyHMhZoGDfBC74mYuyYF4gLqOEG758wajtyhNnsTkuhvng==}
prosemirror-collab@1.3.1:
resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==}
@@ -7645,8 +7859,8 @@ packages:
prosemirror-dropcursor@1.8.2:
resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==}
- prosemirror-gapcursor@1.4.0:
- resolution: {integrity: sha512-z00qvurSdCEWUIulij/isHaqu4uLS8r/Fi61IbjdIPJEonQgggbJsLnstW7Lgdk4zQ68/yr6B6bf7sJXowIgdQ==}
+ prosemirror-gapcursor@1.4.1:
+ resolution: {integrity: sha512-pMdYaEnjNMSwl11yjEGtgTmLkR08m/Vl+Jj443167p9eB3HVQKhYCc4gmHVDsLPODfZfjr/MmirsdyZziXbQKw==}
prosemirror-history@1.5.0:
resolution: {integrity: sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg==}
@@ -7657,11 +7871,11 @@ packages:
prosemirror-keymap@1.2.3:
resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==}
- prosemirror-markdown@1.13.3:
- resolution: {integrity: sha512-3E+Et6cdXIH0EgN2tGYQ+EBT7N4kMiZFsW+hzx+aPtOmADDHWCdd2uUQb7yklJrfUYUOjEEu22BiN6UFgPe4cQ==}
+ prosemirror-markdown@1.13.4:
+ resolution: {integrity: sha512-D98dm4cQ3Hs6EmjK500TdAOew4Z03EV71ajEFiWra3Upr7diytJsjF4mPV2dW+eK5uNectiRj0xFxYI9NLXDbw==}
- prosemirror-menu@1.2.5:
- resolution: {integrity: sha512-qwXzynnpBIeg1D7BAtjOusR+81xCp53j7iWu/IargiRZqRjGIlQuu1f3jFi+ehrHhWMLoyOQTSRx/IWZJqOYtQ==}
+ prosemirror-menu@1.3.0:
+ resolution: {integrity: sha512-TImyPXCHPcDsSka2/lwJ6WjTASr4re/qWq1yoTTuLOqfXucwF6VcRa2LWCkM/EyTD1UO3CUwiH8qURJoWJRxwg==}
prosemirror-model@1.25.4:
resolution: {integrity: sha512-PIM7E43PBxKce8OQeezAs9j4TP+5yDpZVbuurd1h5phUxEKIu+G2a+EUZzIC5nS1mJktDJWzbqS23n1tsAf5QA==}
@@ -7688,8 +7902,8 @@ packages:
prosemirror-transform@1.11.0:
resolution: {integrity: sha512-4I7Ce4KpygXb9bkiPS3hTEk4dSHorfRw8uI0pE8IhxlK2GXsqv5tIA7JUSxtSu7u8APVOTtbUBxTmnHIxVkIJw==}
- prosemirror-view@1.41.5:
- resolution: {integrity: sha512-UDQbIPnDrjE8tqUBbPmCOZgtd75htE6W3r0JCmY9bL6W1iemDM37MZEKC49d+tdQ0v/CKx4gjxLoLsfkD2NiZA==}
+ prosemirror-view@1.41.6:
+ resolution: {integrity: sha512-mxpcDG4hNQa/CPtzxjdlir5bJFDlm0/x5nGBbStB2BWX+XOQ9M8ekEG+ojqB5BcVu2Rc80/jssCMZzSstJuSYg==}
protobufjs@7.5.4:
resolution: {integrity: sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==}
@@ -7705,8 +7919,8 @@ packages:
psl@1.9.0:
resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
- pump@3.0.3:
- resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
+ pump@3.0.4:
+ resolution: {integrity: sha512-VS7sjc6KR7e1ukRFhQSY5LM2uBWAUPiOPa/A3mkKmiMwSmRFUITt0xuj+/lesgnCv+dPIEYlkzrcyXgquIHMcA==}
punycode.js@2.3.1:
resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==}
@@ -7738,9 +7952,6 @@ packages:
raf-schd@4.0.3:
resolution: {integrity: sha512-tQkJl2GRWh83ui2DiPTJz9wEiMN20syf+5oKfB03yYP7ioZcJwsIK8FjrtLwH1m7C7e+Tt2yYBlrOpdT+dyeIQ==}
- randombytes@2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
-
react-apple-signin-auth@1.1.2:
resolution: {integrity: sha512-E5bPu4LtNR3IDsd08A/f1Y0HyuHfjqQpRNRCtQQ3JSVby2JK50FoixyK8EwUh6cbu8N4qrJStL77dEb51Ny5uA==}
peerDependencies:
@@ -7769,8 +7980,8 @@ packages:
peerDependencies:
react: ^19.2.4
- react-hook-form@7.71.1:
- resolution: {integrity: sha512-9SUJKCGKo8HUSsCO+y0CtqkqI5nNuaDqTxyqPsZPqIwudpj4rCrAz/jZV+jn57bx5gtZKOh3neQu94DXMc+w5w==}
+ react-hook-form@7.71.2:
+ resolution: {integrity: sha512-1CHvcDYzuRUNOflt4MOq3ZM46AronNJtQ1S7tnX6YN4y72qhgiUItpacZUAQ0TyWYci3yz1X+rXaSxiuEm86PA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
@@ -7782,8 +7993,8 @@ packages:
react: '>=16'
react-dom: '>=16'
- react-i18next@16.5.4:
- resolution: {integrity: sha512-6yj+dcfMncEC21QPhOTsW8mOSO+pzFmT6uvU7XXdvM/Cp38zJkmTeMeKmTrmCMD5ToT79FmiE/mRWiYWcJYW4g==}
+ react-i18next@16.5.8:
+ resolution: {integrity: sha512-2ABeHHlakxVY+LSirD+OiERxFL6+zip0PaHo979bgwzeHg27Sqc82xxXWIrSFmfWX0ZkrvXMHwhsi/NGUf5VQg==}
peerDependencies:
i18next: '>= 25.6.2'
react: '>= 16.8.0'
@@ -7850,16 +8061,12 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
- readdirp@3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
-
redent@3.0.0:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
- redis@5.10.0:
- resolution: {integrity: sha512-0/Y+7IEiTgVGPrLFKy8oAEArSyEJkU0zvgV5xyi9NzNQ+SLZmyFbUsWIbgPcd4UdUh00opXGKlXJwMmsis5Byw==}
+ redis@5.11.0:
+ resolution: {integrity: sha512-YwXjATVDT+AuxcyfOwZn046aml9jMlQPvU1VXIlLDVAExe0u93aTfPYSeRgG4p9Q/Jlkj+LXJ1XEoFV+j2JKcQ==}
engines: {node: '>= 18'}
redux-mock-store@1.5.5:
@@ -7893,19 +8100,8 @@ packages:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- rehackt@0.1.0:
- resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==}
- peerDependencies:
- '@types/react': '*'
- react: '*'
- peerDependenciesMeta:
- '@types/react':
- optional: true
- react:
- optional: true
-
- rehype-harden@1.1.7:
- resolution: {integrity: sha512-j5DY0YSK2YavvNGV+qBHma15J9m0WZmRe8posT5AtKDS6TNWtMVTo6RiqF8SidfcASYz8f3k2J/1RWmq5zTXUw==}
+ rehype-harden@1.1.8:
+ resolution: {integrity: sha512-Qn7vR1xrf6fZCrkm9TDWi/AB4ylrHy+jqsNm1EHOAmbARYA6gsnVJBq/sdBh6kmT4NEZxH5vgIjrscefJAOXcw==}
rehype-raw@7.0.0:
resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==}
@@ -7931,8 +8127,8 @@ packages:
remedial@1.0.8:
resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==}
- remend@1.1.0:
- resolution: {integrity: sha512-JENGyuIhTwzUfCarW43X4r9cehoqTo9QyYxfNDZSud2AmqeuWjZ5pfybasTa4q0dxTJAj5m8NB+wR+YueAFpxQ==}
+ remend@1.2.2:
+ resolution: {integrity: sha512-4ZJgIB9EG9fQE41mOJCRHMmnxDTKHWawQoJWZyUbZuj680wVyogu2ihnj8Edqm7vh2mo/TWHyEZpn2kqeDvS7w==}
remove-trailing-separator@1.1.0:
resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==}
@@ -7990,10 +8186,6 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
- resolve@1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
- hasBin: true
-
resolve@2.0.0-next.5:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
@@ -8016,8 +8208,8 @@ packages:
ringbufferjs@2.0.0:
resolution: {integrity: sha512-GCOqTzUsTHF7nrqcgtNGAFotXztLgiePpIDpyWZ7R5I02tmfJWV+/yuJc//Hlsd8G+WzI1t/dc2y/w2imDZdog==}
- rollup@4.54.0:
- resolution: {integrity: sha512-3nk8Y3a9Ea8szgKhinMlGMhGMw89mqule3KWczxhIzqudyHdCIOHw8WJlj/r329fACjKLEh13ZSk7oE22kyeIw==}
+ rollup@4.59.0:
+ resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -8063,8 +8255,8 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- satori@0.16.0:
- resolution: {integrity: sha512-ZvHN3ygzZ8FuxjSNB+mKBiF/NIoqHzlBGbD0MJiT+MvSsFOvotnWOhdTjxKzhHRT2wPC1QbhLzx2q/Y83VhfYQ==}
+ satori@0.25.0:
+ resolution: {integrity: sha512-utINfLxrYrmSnLvxFT4ZwgwWa8KOjrz7ans32V5wItgHVmzESl/9i33nE38uG0miycab8hUqQtDlOpqrIpB/iw==}
engines: {node: '>=16'}
saxes@6.0.0:
@@ -8099,12 +8291,14 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.4:
+ resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
sentence-case@3.0.4:
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
- serialize-javascript@6.0.2:
- resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
-
set-blocking@2.0.0:
resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
@@ -8139,8 +8333,9 @@ packages:
resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
engines: {node: '>= 0.4'}
- shiki@3.20.0:
- resolution: {integrity: sha512-kgCOlsnyWb+p0WU+01RjkCH+eBVsjL1jOwUYWv0YDWkM2/A46+LDKVs5yZCUXjJG6bj4ndFoAg5iLIIue6dulg==}
+ shiki@4.0.2:
+ resolution: {integrity: sha512-eAVKTMedR5ckPo4xne/PjYQYrU3qx78gtJZ+sHlXEg5IHhhoQhMfZVzetTYuaJS0L2Ef3AcCRzCHV8T0WI6nIQ==}
+ engines: {node: '>=20'}
side-channel-list@1.0.0:
resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
@@ -8188,6 +8383,10 @@ packages:
resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==}
engines: {node: '>=18'}
+ slice-ansi@8.0.0:
+ resolution: {integrity: sha512-stxByr12oeeOyY2BlviTNQlYV5xOj47GirPr4yA1hE9JCtxfQN0+tVbkxwCtYDQWhEKWFHsEK48ORg5jrouCAg==}
+ engines: {node: '>=20'}
+
snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
@@ -8238,10 +8437,11 @@ packages:
resolution: {integrity: sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==}
engines: {node: '>= 0.4'}
- streamdown@2.1.0:
- resolution: {integrity: sha512-u9gWd0AmjKg1d+74P44XaPlGrMeC21oDOSIhjGNEYMAttDMzCzlJO6lpTyJ9JkSinQQF65YcK4eOd3q9iTvULw==}
+ streamdown@2.4.0:
+ resolution: {integrity: sha512-fRk4HEYNznRLmxoVeT8wsGBwHF6/Yrdey6k+ZrE1Qtp4NyKwm7G/6e2Iw8penY4yLx31TlAHWT5Bsg1weZ9FZg==}
peerDependencies:
react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
streamroller@3.1.5:
resolution: {integrity: sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==}
@@ -8276,8 +8476,8 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
- string-width@8.1.0:
- resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
+ string-width@8.2.0:
+ resolution: {integrity: sha512-6hJPQ8N0V0P3SNmP6h2J99RLuzrWz2gvT7VnK5tKvrNqJoyS9W4/Fb8mo31UiPvy00z7DQXkP2hnKBVav76thw==}
engines: {node: '>=20'}
string.fromcodepoint@0.2.1:
@@ -8319,8 +8519,8 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.2:
- resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
+ strip-ansi@7.2.0:
+ resolution: {integrity: sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==}
engines: {node: '>=12'}
strip-bom@3.0.0:
@@ -8388,10 +8588,6 @@ packages:
swap-case@2.0.2:
resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==}
- symbol-observable@4.0.0:
- resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
- engines: {node: '>=0.10'}
-
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
@@ -8403,14 +8599,18 @@ packages:
resolution: {integrity: sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==}
engines: {node: ^14.18.0 || >=16.0.0}
+ synckit@0.11.12:
+ resolution: {integrity: sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+
tabbable@6.4.0:
resolution: {integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==}
- tailwind-merge@3.4.0:
- resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==}
+ tailwind-merge@3.5.0:
+ resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
- tailwindcss@4.1.18:
- resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
+ tailwindcss@4.2.1:
+ resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
tapable@2.3.0:
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
@@ -8423,8 +8623,8 @@ packages:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- terser-webpack-plugin@5.3.16:
- resolution: {integrity: sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==}
+ terser-webpack-plugin@5.4.0:
+ resolution: {integrity: sha512-Bn5vxm48flOIfkdl5CaD2+1CiUVbonWQ3KQPyP7/EuIl9Gbzq/gQFOzaMFUEgVjB1396tcK0SG8XcNJ/2kDH8g==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -8466,6 +8666,10 @@ packages:
tiny-inflate@1.0.3:
resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==}
+ tinyexec@1.0.4:
+ resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==}
+ engines: {node: '>=18'}
+
tinyglobby@0.2.15:
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
@@ -8536,10 +8740,6 @@ packages:
peerDependencies:
typescript: '>=4.8.4'
- ts-invariant@0.10.3:
- resolution: {integrity: sha512-uivwYcQaxAucv1CzRp2n/QdYPo4ILf9VXgH19zEIjFx2EJufV16P0JtJVpYHy89DItG6Kwj2oIUjrcK5au+4tQ==}
- engines: {node: '>=8'}
-
ts-jest@29.4.6:
resolution: {integrity: sha512-fSpWtOO/1AjSNQguk43hb/JCo16oJDnMJf3CdEGNkqsEX3t0KX96xvyX1D7PfLCpVoKu4MfVrqUkFyblYoY4lA==}
engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0}
@@ -8673,6 +8873,9 @@ packages:
undici-types@7.16.0:
resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
+ undici-types@7.18.2:
+ resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==}
+
unescape-js@1.1.4:
resolution: {integrity: sha512-42SD8NOQEhdYntEiUQdYq/1V/YHwr1HLwlHuTJB5InVVdOSbgI6xu8jK5q65yIzuFCfczzyDF/7hbGzVbyCw0g==}
@@ -8718,14 +8921,11 @@ packages:
resolution: {integrity: sha512-6bc58dPYhCMHHuwxldQxO3RRNZ4eCogZ/st++0+fcC1nr0jiGUtAdBJ2qzmLQWSxbtz42pWt4QQMiZ9HvZf5cg==}
engines: {node: '>=0.10.0'}
- unplugin@1.0.1:
- resolution: {integrity: sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==}
-
unrs-resolver@1.11.1:
resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
- update-browserslist-db@1.2.2:
- resolution: {integrity: sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==}
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -8751,11 +8951,6 @@ packages:
'@types/react':
optional: true
- use-sync-external-store@1.5.0:
- resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
-
use-sync-external-store@1.6.0:
resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
peerDependencies:
@@ -8841,13 +9036,10 @@ packages:
engines: {node: '>= 10.13.0'}
hasBin: true
- webpack-sources@3.3.3:
- resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
+ webpack-sources@3.3.4:
+ resolution: {integrity: sha512-7tP1PdV4vF+lYPnkMR0jMY5/la2ub5Fc/8VQrrU+lXkiM6C4TjVfGw7iKfyhnTQOsD+6Q/iKw0eFciziRgD58Q==}
engines: {node: '>=10.13.0'}
- webpack-virtual-modules@0.5.0:
- resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==}
-
webpack@5.96.1:
resolution: {integrity: sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==}
engines: {node: '>=10.13.0'}
@@ -8861,6 +9053,7 @@ packages:
whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-mimetype@4.0.0:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
@@ -8955,6 +9148,18 @@ packages:
utf-8-validate:
optional: true
+ ws@8.19.0:
+ resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
xml-name-validator@5.0.0:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
@@ -8965,8 +9170,8 @@ packages:
xorshift@1.2.0:
resolution: {integrity: sha512-iYgNnGyeeJ4t6U11NpA/QiKy+PXn5Aa3Azg5qkwIFz1tBLllQrjjsk9yzD7IAK0naNU4JxdeDgqW9ov4u/hc4g==}
- xstate@5.26.0:
- resolution: {integrity: sha512-Fvi9VBoqHgsGYLU2NTag8xDTWtKqUC0+ue7EAhBNBb06wf620QEy05upBaEI1VLMzIn63zugLV8nHb69ZUWYAA==}
+ xstate@5.28.0:
+ resolution: {integrity: sha512-Iaqq6ZrUzqeUtA3hC5LQKZfR8ZLzEFTImMHJM3jWEdVvXWdKvvVLXZEiNQWm3SCA9ZbEou/n5rcsna1wb9t28A==}
xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
@@ -9022,12 +9227,6 @@ packages:
yoga-layout@3.2.1:
resolution: {integrity: sha512-0LPOt3AxKqMdFBZA3HBAt/t/8vIKq7VaQYbuA8WxCgung+p9TVyKRYdpvCb80HcdTN2NkbIKbhNwKUfm3tQywQ==}
- zen-observable-ts@1.2.5:
- resolution: {integrity: sha512-QZWQekv6iB72Naeake9hS1KxHlotfRpe+WGNbNx5/ta+R3DNjVO2bswf63gXlWDcs+EMd7XY8HfVQyP1X6T4Zg==}
-
- zen-observable@0.8.15:
- resolution: {integrity: sha512-PQ2PC7R9rslx84ndNBZB/Dkv8V8fZEpk83RLgXtYd0fwUgEjseMn1Dgajh2x6S8QbZAFa9p2qVCEuYZNgve0dQ==}
-
zod-validation-error@4.0.2:
resolution: {integrity: sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==}
engines: {node: '>=18.0.0'}
@@ -9061,72 +9260,56 @@ snapshots:
'@annatarhe/clippingkk-widget@0.0.9': {}
- '@annatarhe/lake-ui@0.0.28(lucide-react@0.556.0(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@annatarhe/lake-ui@0.0.31(lucide-react@0.577.0(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
dependencies:
- '@floating-ui/react': 0.27.17(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@floating-ui/react': 0.27.19(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
clsx: 2.1.1
- lucide-react: 0.556.0(react@19.2.4)
+ lucide-react: 0.577.0(react@19.2.4)
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
- tailwind-merge: 3.4.0
-
- '@apm-js-collab/code-transformer@0.8.2': {}
+ tailwind-merge: 3.5.0
- '@apm-js-collab/tracing-hooks@0.3.1':
+ '@apollo/client-integration-nextjs@0.14.4(@apollo/client@4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2))(@types/react@19.2.7)(graphql@16.13.1)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)':
dependencies:
- '@apm-js-collab/code-transformer': 0.8.2
- debug: 4.4.3
- module-details-from-path: 1.0.4
- transitivePeerDependencies:
- - supports-color
-
- '@apollo/client-integration-nextjs@0.12.3(@apollo/client@3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.7)(graphql@16.12.0)(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
- dependencies:
- '@apollo/client': 3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@apollo/client-react-streaming': 0.12.3(@apollo/client@3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.7)(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- next: 16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@apollo/client': 4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)
+ '@apollo/client-react-streaming': 0.14.4(@apollo/client@4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2))(@types/react@19.2.7)(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)
+ next: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react: 19.2.4
+ rxjs: 7.8.2
transitivePeerDependencies:
- '@types/react'
- graphql
- react-dom
- '@apollo/client-react-streaming@0.12.3(@apollo/client@3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(@types/react@19.2.7)(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@apollo/client-react-streaming@0.14.4(@apollo/client@4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2))(@types/react@19.2.7)(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)':
dependencies:
- '@apollo/client': 3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@apollo/client': 4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)
'@types/react-dom': 19.2.3(@types/react@19.2.7)
'@wry/equality': 0.5.7
- graphql: 16.12.0
+ graphql: 16.13.1
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
- ts-invariant: 0.10.3
+ rxjs: 7.8.2
transitivePeerDependencies:
- '@types/react'
- '@apollo/client@3.13.9(@types/react@19.2.7)(graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.12.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@apollo/client@4.1.6(graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)))(graphql@16.13.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(rxjs@7.8.2)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
'@wry/caches': 1.0.1
'@wry/equality': 0.5.7
'@wry/trie': 0.5.0
- graphql: 16.12.0
- graphql-tag: 2.12.6(graphql@16.12.0)
- hoist-non-react-statics: 3.3.2
+ graphql: 16.13.1
+ graphql-tag: 2.12.6(graphql@16.13.1)
optimism: 0.18.1
- prop-types: 15.8.1
- rehackt: 0.1.0(@types/react@19.2.7)(react@19.2.4)
- symbol-observable: 4.0.0
- ts-invariant: 0.10.3
+ rxjs: 7.8.2
tslib: 2.8.1
- zen-observable-ts: 1.2.5
optionalDependencies:
- graphql-ws: 6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ graphql-ws: 6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
- transitivePeerDependencies:
- - '@types/react'
- '@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@16.12.0)':
+ '@ardatan/relay-compiler@12.0.0(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
'@babel/core': 7.24.0
'@babel/generator': 7.23.6
@@ -9139,7 +9322,7 @@ snapshots:
fb-watchman: 2.0.2
fbjs: 3.0.5(encoding@0.1.13)
glob: 7.2.3
- graphql: 16.12.0
+ graphql: 16.13.1
immutable: 3.7.6
invariant: 2.2.4
nullthrows: 1.1.1
@@ -9150,14 +9333,14 @@ snapshots:
- encoding
- supports-color
- '@ardatan/relay-compiler@12.0.3(encoding@0.1.13)(graphql@16.12.0)':
+ '@ardatan/relay-compiler@12.0.3(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
'@babel/generator': 7.27.0
'@babel/parser': 7.27.0
'@babel/runtime': 7.28.4
chalk: 4.1.2
fb-watchman: 2.0.2
- graphql: 16.12.0
+ graphql: 16.13.1
immutable: 3.7.6
invariant: 2.2.4
nullthrows: 1.1.1
@@ -9201,6 +9384,12 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
+ '@babel/code-frame@7.29.0':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.28.5
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
'@babel/compat-data@7.23.5': {}
'@babel/compat-data@7.27.5': {}
@@ -9267,17 +9456,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.28.5':
+ '@babel/core@7.28.6':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
- '@babel/helpers': 7.28.4
- '@babel/parser': 7.28.5
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/code-frame': 7.28.6
+ '@babel/generator': 7.28.6
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.6)
+ '@babel/helpers': 7.28.6
+ '@babel/parser': 7.28.6
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
'@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3
@@ -9287,17 +9476,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.28.6':
+ '@babel/core@7.29.0':
dependencies:
- '@babel/code-frame': 7.28.6
- '@babel/generator': 7.28.6
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
'@babel/helper-compilation-targets': 7.28.6
- '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.6)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
'@babel/helpers': 7.28.6
- '@babel/parser': 7.28.6
+ '@babel/parser': 7.29.0
'@babel/template': 7.28.6
- '@babel/traverse': 7.28.6
- '@babel/types': 7.28.6
+ '@babel/traverse': 7.29.0
+ '@babel/types': 7.29.0
'@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3
@@ -9346,18 +9535,18 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/generator@7.28.5':
+ '@babel/generator@7.28.6':
dependencies:
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/generator@7.28.6':
+ '@babel/generator@7.29.1':
dependencies:
- '@babel/parser': 7.28.6
- '@babel/types': 7.28.6
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
@@ -9470,18 +9659,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/core': 7.28.6
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.6(@babel/core@7.28.6)':
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-module-imports': 7.28.6
'@babel/helper-validator-identifier': 7.28.5
'@babel/traverse': 7.28.6
@@ -9498,6 +9687,8 @@ snapshots:
'@babel/helper-plugin-utils@7.27.1': {}
+ '@babel/helper-plugin-utils@7.28.6': {}
+
'@babel/helper-replace-supers@7.22.20(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -9600,6 +9791,10 @@ snapshots:
dependencies:
'@babel/types': 7.28.6
+ '@babel/parser@7.29.0':
+ dependencies:
+ '@babel/types': 7.29.0
+
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -9620,22 +9815,20 @@ snapshots:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0)':
dependencies:
@@ -9647,22 +9840,20 @@ snapshots:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.22.5
- optional: true
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-flow@7.23.3(@babel/core@7.24.0)':
dependencies:
@@ -9679,33 +9870,30 @@ snapshots:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.24.0)':
dependencies:
@@ -9717,38 +9905,40 @@ snapshots:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-jsx@7.28.6(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.0)':
dependencies:
@@ -9760,61 +9950,61 @@ snapshots:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.22.5
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.22.5
- optional: true
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.6)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.29.0)':
dependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
'@babel/helper-plugin-utils': 7.27.1
- optional: true
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
dependencies:
'@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-typescript@7.28.6(@babel/core@7.29.0)':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/helper-plugin-utils': 7.28.6
+
'@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
@@ -10028,26 +10218,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.28.5':
+ '@babel/traverse@7.28.6':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
+ '@babel/code-frame': 7.28.6
+ '@babel/generator': 7.28.6
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.5
- '@babel/template': 7.27.2
- '@babel/types': 7.28.5
+ '@babel/parser': 7.28.6
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
debug: 4.4.3
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.28.6':
+ '@babel/traverse@7.29.0':
dependencies:
- '@babel/code-frame': 7.28.6
- '@babel/generator': 7.28.6
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.1
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.6
+ '@babel/parser': 7.29.0
'@babel/template': 7.28.6
- '@babel/types': 7.28.6
+ '@babel/types': 7.29.0
debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -10094,6 +10284,11 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
+ '@babel/types@7.29.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+
'@bcoe/v8-coverage@0.2.3': {}
'@colors/colors@1.6.0': {}
@@ -10293,74 +10488,84 @@ snapshots:
'@fastify/busboy@3.1.1': {}
- '@fingerprintjs/fingerprintjs@5.0.1': {}
+ '@fastify/otel@0.16.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ minimatch: 10.2.4
+ transitivePeerDependencies:
+ - supports-color
+
+ '@fingerprintjs/fingerprintjs@5.1.0': {}
- '@floating-ui/core@1.7.4':
+ '@floating-ui/core@1.7.5':
dependencies:
- '@floating-ui/utils': 0.2.10
+ '@floating-ui/utils': 0.2.11
- '@floating-ui/dom@1.7.5':
+ '@floating-ui/dom@1.7.6':
dependencies:
- '@floating-ui/core': 1.7.4
- '@floating-ui/utils': 0.2.10
+ '@floating-ui/core': 1.7.5
+ '@floating-ui/utils': 0.2.11
- '@floating-ui/react-dom@2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@floating-ui/react-dom@2.1.8(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
dependencies:
- '@floating-ui/dom': 1.7.5
+ '@floating-ui/dom': 1.7.6
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
'@floating-ui/react@0.26.28(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
dependencies:
- '@floating-ui/react-dom': 2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@floating-ui/utils': 0.2.10
+ '@floating-ui/react-dom': 2.1.8(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@floating-ui/utils': 0.2.11
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
tabbable: 6.4.0
- '@floating-ui/react@0.27.17(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@floating-ui/react@0.27.19(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
dependencies:
- '@floating-ui/react-dom': 2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- '@floating-ui/utils': 0.2.10
+ '@floating-ui/react-dom': 2.1.8(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ '@floating-ui/utils': 0.2.11
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
tabbable: 6.4.0
- '@floating-ui/utils@0.2.10': {}
+ '@floating-ui/utils@0.2.11': {}
'@formkit/auto-animate@0.9.0': {}
- '@graphql-codegen/add@5.0.3(graphql@16.12.0)':
+ '@graphql-codegen/add@5.0.3(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.6.3
- '@graphql-codegen/cli@5.0.7(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)(typescript@5.9.3)(utf-8-validate@5.0.10)':
+ '@graphql-codegen/cli@5.0.7(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)(typescript@5.9.3)(utf-8-validate@5.0.10)':
dependencies:
'@babel/generator': 7.27.5
'@babel/template': 7.27.2
'@babel/types': 7.27.6
- '@graphql-codegen/client-preset': 4.8.3(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)
- '@graphql-codegen/core': 4.0.2(graphql@16.12.0)
- '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.12.0)
- '@graphql-tools/apollo-engine-loader': 8.0.20(graphql@16.12.0)
- '@graphql-tools/code-file-loader': 8.1.20(graphql@16.12.0)
- '@graphql-tools/git-loader': 8.0.24(graphql@16.12.0)
- '@graphql-tools/github-loader': 8.0.20(@types/node@25.0.3)(graphql@16.12.0)
- '@graphql-tools/graphql-file-loader': 8.0.20(graphql@16.12.0)
- '@graphql-tools/json-file-loader': 8.0.18(graphql@16.12.0)
- '@graphql-tools/load': 8.1.0(graphql@16.12.0)
- '@graphql-tools/prisma-loader': 8.0.17(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql@16.12.0)(utf-8-validate@5.0.10)
- '@graphql-tools/url-loader': 8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-codegen/client-preset': 4.8.3(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)
+ '@graphql-codegen/core': 4.0.2(graphql@16.13.1)
+ '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.13.1)
+ '@graphql-tools/apollo-engine-loader': 8.0.20(graphql@16.13.1)
+ '@graphql-tools/code-file-loader': 8.1.20(graphql@16.13.1)
+ '@graphql-tools/git-loader': 8.0.24(graphql@16.13.1)
+ '@graphql-tools/github-loader': 8.0.20(@types/node@25.0.3)(graphql@16.13.1)
+ '@graphql-tools/graphql-file-loader': 8.0.20(graphql@16.13.1)
+ '@graphql-tools/json-file-loader': 8.0.18(graphql@16.13.1)
+ '@graphql-tools/load': 8.1.0(graphql@16.13.1)
+ '@graphql-tools/prisma-loader': 8.0.17(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql@16.13.1)(utf-8-validate@5.0.10)
+ '@graphql-tools/url-loader': 8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@whatwg-node/fetch': 0.10.8
chalk: 4.1.2
cosmiconfig: 8.3.6(typescript@5.9.3)
debounce: 1.2.1
detect-indent: 6.1.0
- graphql: 16.12.0
- graphql-config: 5.1.5(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.12.0)(typescript@5.9.3)(utf-8-validate@5.0.10)
+ graphql: 16.13.1
+ graphql-config: 5.1.5(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.13.1)(typescript@5.9.3)(utf-8-validate@5.0.10)
inquirer: 8.2.6
is-glob: 4.0.3
jiti: 1.21.7
@@ -10388,195 +10593,195 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@graphql-codegen/client-preset@4.8.3(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)':
+ '@graphql-codegen/client-preset@4.8.3(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)':
dependencies:
'@babel/helper-plugin-utils': 7.27.1
'@babel/template': 7.27.2
- '@graphql-codegen/add': 5.0.3(graphql@16.12.0)
- '@graphql-codegen/gql-tag-operations': 4.0.17(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.12.0)
- '@graphql-codegen/typed-document-node': 5.1.2(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-codegen/typescript': 4.1.6(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-codegen/typescript-operations': 4.6.1(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)
- '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/documents': 1.0.1(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-codegen/add': 5.0.3(graphql@16.13.1)
+ '@graphql-codegen/gql-tag-operations': 4.0.17(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.13.1)
+ '@graphql-codegen/typed-document-node': 5.1.2(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-codegen/typescript': 4.1.6(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-codegen/typescript-operations': 4.6.1(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)
+ '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/documents': 1.0.1(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.6.3
optionalDependencies:
- graphql-sock: 1.0.1(graphql@16.12.0)
+ graphql-sock: 1.0.1(graphql@16.13.1)
transitivePeerDependencies:
- encoding
- '@graphql-codegen/core@4.0.2(graphql@16.12.0)':
+ '@graphql-codegen/core@4.0.2(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.12.0)
- '@graphql-tools/schema': 10.0.23(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.13.1)
+ '@graphql-tools/schema': 10.0.23(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.6.3
- '@graphql-codegen/gql-tag-operations@4.0.17(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/gql-tag-operations@4.0.17(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.12.0)
- '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.13.1)
+ '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
auto-bind: 4.0.0
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.6.3
transitivePeerDependencies:
- encoding
- '@graphql-codegen/introspection@4.0.3(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/introspection@4.0.3(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.12.0)
- '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.13.1)
+ '@graphql-codegen/visitor-plugin-common': 5.1.0(encoding@0.1.13)(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.6.2
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/plugin-helpers@3.1.2(graphql@16.12.0)':
+ '@graphql-codegen/plugin-helpers@3.1.2(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 9.2.1(graphql@16.12.0)
+ '@graphql-tools/utils': 9.2.1(graphql@16.13.1)
change-case-all: 1.0.15
common-tags: 1.8.2
- graphql: 16.12.0
+ graphql: 16.13.1
import-from: 4.0.0
lodash: 4.17.23
tslib: 2.4.1
- '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.12.0)':
+ '@graphql-codegen/plugin-helpers@5.0.3(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.1.0(graphql@16.12.0)
+ '@graphql-tools/utils': 10.1.0(graphql@16.13.1)
change-case-all: 1.0.15
common-tags: 1.8.2
- graphql: 16.12.0
+ graphql: 16.13.1
import-from: 4.0.0
lodash: 4.17.23
tslib: 2.6.2
- '@graphql-codegen/plugin-helpers@5.1.0(graphql@16.12.0)':
+ '@graphql-codegen/plugin-helpers@5.1.0(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.3(graphql@16.12.0)
+ '@graphql-tools/utils': 10.8.3(graphql@16.13.1)
change-case-all: 1.0.15
common-tags: 1.8.2
- graphql: 16.12.0
+ graphql: 16.13.1
import-from: 4.0.0
lodash: 4.17.23
tslib: 2.6.3
- '@graphql-codegen/plugin-helpers@5.1.1(graphql@16.12.0)':
+ '@graphql-codegen/plugin-helpers@5.1.1(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
change-case-all: 1.0.15
common-tags: 1.8.2
- graphql: 16.12.0
+ graphql: 16.13.1
import-from: 4.0.0
lodash: 4.17.23
tslib: 2.6.3
- '@graphql-codegen/schema-ast@4.1.0(graphql@16.12.0)':
+ '@graphql-codegen/schema-ast@4.1.0(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.6.3
- '@graphql-codegen/typed-document-node@5.1.2(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/typed-document-node@5.1.2(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.12.0)
- '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 5.1.1(graphql@16.13.1)
+ '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.13.1)
auto-bind: 4.0.0
change-case-all: 1.0.15
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.6.3
transitivePeerDependencies:
- encoding
- '@graphql-codegen/typescript-operations@4.6.1(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.12.0))(graphql@16.12.0)':
+ '@graphql-codegen/typescript-operations@4.6.1(encoding@0.1.13)(graphql-sock@1.0.1(graphql@16.13.1))(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.12.0)
- '@graphql-codegen/typescript': 4.1.6(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.13.1)
+ '@graphql-codegen/typescript': 4.1.6(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.13.1)
auto-bind: 4.0.0
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.6.3
optionalDependencies:
- graphql-sock: 1.0.1(graphql@16.12.0)
+ graphql-sock: 1.0.1(graphql@16.13.1)
transitivePeerDependencies:
- encoding
- '@graphql-codegen/typescript-react-apollo@4.4.0(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/typescript-react-apollo@4.4.0(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.12.0)
- '@graphql-codegen/visitor-plugin-common': 2.13.8(encoding@0.1.13)(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.13.1)
+ '@graphql-codegen/visitor-plugin-common': 2.13.8(encoding@0.1.13)(graphql@16.13.1)
auto-bind: 4.0.0
change-case-all: 1.0.15
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/typescript@4.1.6(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/typescript@4.1.6(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.12.0)
- '@graphql-codegen/schema-ast': 4.1.0(graphql@16.12.0)
- '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.13.1)
+ '@graphql-codegen/schema-ast': 4.1.0(graphql@16.13.1)
+ '@graphql-codegen/visitor-plugin-common': 5.8.0(encoding@0.1.13)(graphql@16.13.1)
auto-bind: 4.0.0
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.6.3
transitivePeerDependencies:
- encoding
- '@graphql-codegen/visitor-plugin-common@2.13.8(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/visitor-plugin-common@2.13.8(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.12.0)
- '@graphql-tools/optimize': 1.4.0(graphql@16.12.0)
- '@graphql-tools/relay-operation-optimizer': 6.5.18(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/utils': 9.2.1(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.13.1)
+ '@graphql-tools/optimize': 1.4.0(graphql@16.13.1)
+ '@graphql-tools/relay-operation-optimizer': 6.5.18(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/utils': 9.2.1(graphql@16.13.1)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
- graphql: 16.12.0
- graphql-tag: 2.12.6(graphql@16.12.0)
+ graphql: 16.13.1
+ graphql-tag: 2.12.6(graphql@16.13.1)
parse-filepath: 1.0.2
tslib: 2.4.1
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/visitor-plugin-common@5.1.0(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/visitor-plugin-common@5.1.0(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.12.0)
- '@graphql-tools/optimize': 2.0.0(graphql@16.12.0)
- '@graphql-tools/relay-operation-optimizer': 7.0.1(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/utils': 10.1.0(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 5.0.3(graphql@16.13.1)
+ '@graphql-tools/optimize': 2.0.0(graphql@16.13.1)
+ '@graphql-tools/relay-operation-optimizer': 7.0.1(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/utils': 10.1.0(graphql@16.13.1)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
- graphql: 16.12.0
- graphql-tag: 2.12.6(graphql@16.12.0)
+ graphql: 16.13.1
+ graphql-tag: 2.12.6(graphql@16.13.1)
parse-filepath: 1.0.2
tslib: 2.6.2
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-codegen/visitor-plugin-common@5.8.0(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-codegen/visitor-plugin-common@5.8.0(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.12.0)
- '@graphql-tools/optimize': 2.0.0(graphql@16.12.0)
- '@graphql-tools/relay-operation-optimizer': 7.0.19(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.13.1)
+ '@graphql-tools/optimize': 2.0.0(graphql@16.13.1)
+ '@graphql-tools/relay-operation-optimizer': 7.0.19(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
- graphql: 16.12.0
- graphql-tag: 2.12.6(graphql@16.12.0)
+ graphql: 16.13.1
+ graphql-tag: 2.12.6(graphql@16.13.1)
parse-filepath: 1.0.2
tslib: 2.6.3
transitivePeerDependencies:
@@ -10584,65 +10789,65 @@ snapshots:
'@graphql-hive/signal@1.0.0': {}
- '@graphql-tools/apollo-engine-loader@8.0.20(graphql@16.12.0)':
+ '@graphql-tools/apollo-engine-loader@8.0.20(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@whatwg-node/fetch': 0.10.8
- graphql: 16.12.0
+ graphql: 16.13.1
sync-fetch: 0.6.0-2
tslib: 2.8.1
- '@graphql-tools/batch-execute@9.0.17(graphql@16.12.0)':
+ '@graphql-tools/batch-execute@9.0.17(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@whatwg-node/promise-helpers': 1.3.2
dataloader: 2.2.3
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/code-file-loader@8.1.20(graphql@16.12.0)':
+ '@graphql-tools/code-file-loader@8.1.20(graphql@16.13.1)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.19(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/graphql-tag-pluck': 8.3.19(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
globby: 11.1.0
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
unixify: 1.0.0
transitivePeerDependencies:
- supports-color
- '@graphql-tools/delegate@10.2.19(graphql@16.12.0)':
+ '@graphql-tools/delegate@10.2.19(graphql@16.13.1)':
dependencies:
- '@graphql-tools/batch-execute': 9.0.17(graphql@16.12.0)
- '@graphql-tools/executor': 1.4.7(graphql@16.12.0)
- '@graphql-tools/schema': 10.0.23(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/batch-execute': 9.0.17(graphql@16.13.1)
+ '@graphql-tools/executor': 1.4.7(graphql@16.13.1)
+ '@graphql-tools/schema': 10.0.23(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@repeaterjs/repeater': 3.0.6
'@whatwg-node/promise-helpers': 1.3.2
dataloader: 2.2.3
dset: 3.1.4
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/documents@1.0.1(graphql@16.12.0)':
+ '@graphql-tools/documents@1.0.1(graphql@16.13.1)':
dependencies:
- graphql: 16.12.0
+ graphql: 16.13.1
lodash.sortby: 4.7.0
tslib: 2.6.3
- '@graphql-tools/executor-common@0.0.4(graphql@16.12.0)':
+ '@graphql-tools/executor-common@0.0.4(graphql@16.13.1)':
dependencies:
'@envelop/core': 5.2.3
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
- '@graphql-tools/executor-graphql-ws@2.0.5(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)':
+ '@graphql-tools/executor-graphql-ws@2.0.5(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)':
dependencies:
- '@graphql-tools/executor-common': 0.0.4(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/executor-common': 0.0.4(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@whatwg-node/disposablestack': 0.0.6
- graphql: 16.12.0
- graphql-ws: 6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ graphql: 16.13.1
+ graphql-ws: 6.0.5(graphql@16.13.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
isomorphic-ws: 5.0.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
tslib: 2.8.1
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -10653,26 +10858,26 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@graphql-tools/executor-http@1.3.3(@types/node@25.0.3)(graphql@16.12.0)':
+ '@graphql-tools/executor-http@1.3.3(@types/node@25.0.3)(graphql@16.13.1)':
dependencies:
'@graphql-hive/signal': 1.0.0
- '@graphql-tools/executor-common': 0.0.4(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/executor-common': 0.0.4(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@repeaterjs/repeater': 3.0.6
'@whatwg-node/disposablestack': 0.0.6
'@whatwg-node/fetch': 0.10.8
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.12.0
+ graphql: 16.13.1
meros: 1.3.1(@types/node@25.0.3)
tslib: 2.8.1
transitivePeerDependencies:
- '@types/node'
- '@graphql-tools/executor-legacy-ws@1.1.17(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)':
+ '@graphql-tools/executor-legacy-ws@1.1.17(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@types/ws': 8.18.1
- graphql: 16.12.0
+ graphql: 16.13.1
isomorphic-ws: 5.0.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
tslib: 2.8.1
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -10680,21 +10885,21 @@ snapshots:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor@1.4.7(graphql@16.12.0)':
+ '@graphql-tools/executor@1.4.7(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
'@repeaterjs/repeater': 3.0.6
'@whatwg-node/disposablestack': 0.0.6
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/git-loader@8.0.24(graphql@16.12.0)':
+ '@graphql-tools/git-loader@8.0.24(graphql@16.13.1)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.19(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-tools/graphql-tag-pluck': 8.3.19(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
is-glob: 4.0.3
micromatch: 4.0.8
tslib: 2.8.1
@@ -10702,92 +10907,92 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@graphql-tools/github-loader@8.0.20(@types/node@25.0.3)(graphql@16.12.0)':
+ '@graphql-tools/github-loader@8.0.20(@types/node@25.0.3)(graphql@16.13.1)':
dependencies:
- '@graphql-tools/executor-http': 1.3.3(@types/node@25.0.3)(graphql@16.12.0)
- '@graphql-tools/graphql-tag-pluck': 8.3.19(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/executor-http': 1.3.3(@types/node@25.0.3)(graphql@16.13.1)
+ '@graphql-tools/graphql-tag-pluck': 8.3.19(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@whatwg-node/fetch': 0.10.8
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.12.0
+ graphql: 16.13.1
sync-fetch: 0.6.0-2
tslib: 2.8.1
transitivePeerDependencies:
- '@types/node'
- supports-color
- '@graphql-tools/graphql-file-loader@8.0.20(graphql@16.12.0)':
+ '@graphql-tools/graphql-file-loader@8.0.20(graphql@16.13.1)':
dependencies:
- '@graphql-tools/import': 7.0.19(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/import': 7.0.19(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
globby: 11.1.0
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/graphql-tag-pluck@8.3.19(graphql@16.12.0)':
+ '@graphql-tools/graphql-tag-pluck@8.3.19(graphql@16.13.1)':
dependencies:
'@babel/core': 7.27.4
'@babel/parser': 7.27.5
'@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.4)
'@babel/traverse': 7.27.4
'@babel/types': 7.27.6
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.8.1
transitivePeerDependencies:
- supports-color
- '@graphql-tools/import@7.0.19(graphql@16.12.0)':
+ '@graphql-tools/import@7.0.19(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
resolve-from: 5.0.0
tslib: 2.8.1
- '@graphql-tools/json-file-loader@8.0.18(graphql@16.12.0)':
+ '@graphql-tools/json-file-loader@8.0.18(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
globby: 11.1.0
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/load@8.1.0(graphql@16.12.0)':
+ '@graphql-tools/load@8.1.0(graphql@16.13.1)':
dependencies:
- '@graphql-tools/schema': 10.0.23(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-tools/schema': 10.0.23(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
p-limit: 3.1.0
tslib: 2.8.1
- '@graphql-tools/merge@9.0.24(graphql@16.12.0)':
+ '@graphql-tools/merge@9.0.24(graphql@16.13.1)':
dependencies:
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/optimize@1.4.0(graphql@16.12.0)':
+ '@graphql-tools/optimize@1.4.0(graphql@16.13.1)':
dependencies:
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/optimize@2.0.0(graphql@16.12.0)':
+ '@graphql-tools/optimize@2.0.0(graphql@16.13.1)':
dependencies:
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.6.2
- '@graphql-tools/prisma-loader@8.0.17(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql@16.12.0)(utf-8-validate@5.0.10)':
+ '@graphql-tools/prisma-loader@8.0.17(@types/node@25.0.3)(bufferutil@4.0.9)(encoding@0.1.13)(graphql@16.13.1)(utf-8-validate@5.0.10)':
dependencies:
- '@graphql-tools/url-loader': 8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/url-loader': 8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@types/js-yaml': 4.0.9
'@whatwg-node/fetch': 0.10.8
chalk: 4.1.2
debug: 4.4.1
dotenv: 16.5.0
- graphql: 16.12.0
- graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.12.0)
+ graphql: 16.13.1
+ graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.13.1)
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
jose: 5.10.0
@@ -10806,53 +11011,53 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-tools/relay-operation-optimizer@6.5.18(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/utils': 9.2.1(graphql@16.12.0)
- graphql: 16.12.0
+ '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/utils': 9.2.1(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.8.1
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-tools/relay-operation-optimizer@7.0.1(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-tools/relay-operation-optimizer@7.0.1(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/utils': 10.1.0(graphql@16.12.0)
- graphql: 16.12.0
+ '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/utils': 10.1.0(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.6.2
transitivePeerDependencies:
- encoding
- supports-color
- '@graphql-tools/relay-operation-optimizer@7.0.19(encoding@0.1.13)(graphql@16.12.0)':
+ '@graphql-tools/relay-operation-optimizer@7.0.19(encoding@0.1.13)(graphql@16.13.1)':
dependencies:
- '@ardatan/relay-compiler': 12.0.3(encoding@0.1.13)(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@ardatan/relay-compiler': 12.0.3(encoding@0.1.13)(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.6.3
transitivePeerDependencies:
- encoding
- '@graphql-tools/schema@10.0.23(graphql@16.12.0)':
+ '@graphql-tools/schema@10.0.23(graphql@16.13.1)':
dependencies:
- '@graphql-tools/merge': 9.0.24(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-tools/merge': 9.0.24(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/url-loader@8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)':
+ '@graphql-tools/url-loader@8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)':
dependencies:
- '@graphql-tools/executor-graphql-ws': 2.0.5(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)
- '@graphql-tools/executor-http': 1.3.3(@types/node@25.0.3)(graphql@16.12.0)
- '@graphql-tools/executor-legacy-ws': 1.1.17(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
- '@graphql-tools/wrap': 10.1.0(graphql@16.12.0)
+ '@graphql-tools/executor-graphql-ws': 2.0.5(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)
+ '@graphql-tools/executor-http': 1.3.3(@types/node@25.0.3)(graphql@16.13.1)
+ '@graphql-tools/executor-legacy-ws': 1.1.17(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
+ '@graphql-tools/wrap': 10.1.0(graphql@16.13.1)
'@types/ws': 8.18.1
'@whatwg-node/fetch': 0.10.8
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.12.0
+ graphql: 16.13.1
isomorphic-ws: 5.0.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
sync-fetch: 0.6.0-2
tslib: 2.8.1
@@ -10865,55 +11070,50 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@graphql-tools/utils@10.1.0(graphql@16.12.0)':
+ '@graphql-tools/utils@10.1.0(graphql@16.13.1)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
cross-inspect: 1.0.0
dset: 3.1.3
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.6.2
- '@graphql-tools/utils@10.8.3(graphql@16.12.0)':
+ '@graphql-tools/utils@10.8.3(graphql@16.13.1)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
'@whatwg-node/promise-helpers': 1.0.0
cross-inspect: 1.0.1
dset: 3.1.4
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.6.3
- '@graphql-tools/utils@10.8.6(graphql@16.12.0)':
+ '@graphql-tools/utils@10.8.6(graphql@16.13.1)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
'@whatwg-node/promise-helpers': 1.3.0
cross-inspect: 1.0.1
dset: 3.1.4
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/utils@9.2.1(graphql@16.12.0)':
+ '@graphql-tools/utils@9.2.1(graphql@16.13.1)':
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
- graphql: 16.12.0
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-tools/wrap@10.1.0(graphql@16.12.0)':
+ '@graphql-tools/wrap@10.1.0(graphql@16.13.1)':
dependencies:
- '@graphql-tools/delegate': 10.2.19(graphql@16.12.0)
- '@graphql-tools/schema': 10.0.23(graphql@16.12.0)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/delegate': 10.2.19(graphql@16.13.1)
+ '@graphql-tools/schema': 10.0.23(graphql@16.13.1)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
'@whatwg-node/promise-helpers': 1.3.2
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.8.1
- '@graphql-typed-document-node/core@3.2.0(graphql@16.12.0)':
- dependencies:
- graphql: 16.12.0
-
- '@grpc/grpc-js@1.14.2':
+ '@graphql-typed-document-node/core@3.2.0(graphql@16.13.1)':
dependencies:
- '@grpc/proto-loader': 0.8.0
- '@js-sdsl/ordered-map': 4.4.2
+ graphql: 16.13.1
'@grpc/grpc-js@1.14.3':
dependencies:
@@ -10948,10 +11148,10 @@ snapshots:
dependencies:
react: 19.2.4
- '@hookform/resolvers@5.2.2(react-hook-form@7.71.1(react@19.2.4))':
+ '@hookform/resolvers@5.2.2(react-hook-form@7.71.2(react@19.2.4))':
dependencies:
'@standard-schema/utils': 0.3.0
- react-hook-form: 7.71.1(react@19.2.4)
+ react-hook-form: 7.71.2(react@19.2.4)
'@humanfs/core@0.19.1': {}
@@ -11064,7 +11264,7 @@ snapshots:
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
strip-ansi-cjs: strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
@@ -11079,44 +11279,43 @@ snapshots:
'@istanbuljs/schema@0.1.3': {}
- '@jest/console@30.2.0':
+ '@jest/console@30.3.0':
dependencies:
- '@jest/types': 30.2.0
+ '@jest/types': 30.3.0
'@types/node': 25.0.3
chalk: 4.1.2
- jest-message-util: 30.2.0
- jest-util: 30.2.0
+ jest-message-util: 30.3.0
+ jest-util: 30.3.0
slash: 3.0.0
- '@jest/core@30.2.0(babel-plugin-macros@3.1.0)':
+ '@jest/core@30.3.0(babel-plugin-macros@3.1.0)':
dependencies:
- '@jest/console': 30.2.0
+ '@jest/console': 30.3.0
'@jest/pattern': 30.0.1
- '@jest/reporters': 30.2.0
- '@jest/test-result': 30.2.0
- '@jest/transform': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/reporters': 30.3.0
+ '@jest/test-result': 30.3.0
+ '@jest/transform': 30.3.0
+ '@jest/types': 30.3.0
'@types/node': 25.0.3
ansi-escapes: 4.3.2
chalk: 4.1.2
- ci-info: 4.3.1
+ ci-info: 4.4.0
exit-x: 0.2.2
graceful-fs: 4.2.11
- jest-changed-files: 30.2.0
- jest-config: 30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
- jest-haste-map: 30.2.0
- jest-message-util: 30.2.0
+ jest-changed-files: 30.3.0
+ jest-config: 30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
+ jest-haste-map: 30.3.0
+ jest-message-util: 30.3.0
jest-regex-util: 30.0.1
- jest-resolve: 30.2.0
- jest-resolve-dependencies: 30.2.0
- jest-runner: 30.2.0
- jest-runtime: 30.2.0
- jest-snapshot: 30.2.0
- jest-util: 30.2.0
- jest-validate: 30.2.0
- jest-watcher: 30.2.0
- micromatch: 4.0.8
- pretty-format: 30.2.0
+ jest-resolve: 30.3.0
+ jest-resolve-dependencies: 30.3.0
+ jest-runner: 30.3.0
+ jest-runtime: 30.3.0
+ jest-snapshot: 30.3.0
+ jest-util: 30.3.0
+ jest-validate: 30.3.0
+ jest-watcher: 30.3.0
+ pretty-format: 30.3.0
slash: 3.0.0
transitivePeerDependencies:
- babel-plugin-macros
@@ -11126,15 +11325,17 @@ snapshots:
'@jest/diff-sequences@30.0.1': {}
- '@jest/environment-jsdom-abstract@30.2.0(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
+ '@jest/diff-sequences@30.3.0': {}
+
+ '@jest/environment-jsdom-abstract@30.3.0(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))':
dependencies:
- '@jest/environment': 30.2.0
- '@jest/fake-timers': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/environment': 30.3.0
+ '@jest/fake-timers': 30.3.0
+ '@jest/types': 30.3.0
'@types/jsdom': 21.1.7
'@types/node': 25.0.3
- jest-mock: 30.2.0
- jest-util: 30.2.0
+ jest-mock: 30.3.0
+ jest-util: 30.3.0
jsdom: 26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@jest/environment@30.2.0':
@@ -11144,6 +11345,13 @@ snapshots:
'@types/node': 25.0.3
jest-mock: 30.2.0
+ '@jest/environment@30.3.0':
+ dependencies:
+ '@jest/fake-timers': 30.3.0
+ '@jest/types': 30.3.0
+ '@types/node': 25.0.3
+ jest-mock: 30.3.0
+
'@jest/expect-utils@30.0.4':
dependencies:
'@jest/get-type': 30.0.1
@@ -11152,6 +11360,10 @@ snapshots:
dependencies:
'@jest/get-type': 30.1.0
+ '@jest/expect-utils@30.3.0':
+ dependencies:
+ '@jest/get-type': 30.1.0
+
'@jest/expect@30.2.0':
dependencies:
expect: 30.2.0
@@ -11159,6 +11371,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@jest/expect@30.3.0':
+ dependencies:
+ expect: 30.3.0
+ jest-snapshot: 30.3.0
+ transitivePeerDependencies:
+ - supports-color
+
'@jest/fake-timers@30.2.0':
dependencies:
'@jest/types': 30.2.0
@@ -11168,6 +11387,15 @@ snapshots:
jest-mock: 30.2.0
jest-util: 30.2.0
+ '@jest/fake-timers@30.3.0':
+ dependencies:
+ '@jest/types': 30.3.0
+ '@sinonjs/fake-timers': 15.1.1
+ '@types/node': 25.0.3
+ jest-message-util: 30.3.0
+ jest-mock: 30.3.0
+ jest-util: 30.3.0
+
'@jest/get-type@30.0.1': {}
'@jest/get-type@30.1.0': {}
@@ -11181,33 +11409,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@jest/globals@30.3.0':
+ dependencies:
+ '@jest/environment': 30.3.0
+ '@jest/expect': 30.3.0
+ '@jest/types': 30.3.0
+ jest-mock: 30.3.0
+ transitivePeerDependencies:
+ - supports-color
+
'@jest/pattern@30.0.1':
dependencies:
'@types/node': 25.0.3
jest-regex-util: 30.0.1
- '@jest/reporters@30.2.0':
+ '@jest/reporters@30.3.0':
dependencies:
'@bcoe/v8-coverage': 0.2.3
- '@jest/console': 30.2.0
- '@jest/test-result': 30.2.0
- '@jest/transform': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/console': 30.3.0
+ '@jest/test-result': 30.3.0
+ '@jest/transform': 30.3.0
+ '@jest/types': 30.3.0
'@jridgewell/trace-mapping': 0.3.31
'@types/node': 25.0.3
chalk: 4.1.2
collect-v8-coverage: 1.0.3
exit-x: 0.2.2
- glob: 10.4.5
+ glob: 10.5.0
graceful-fs: 4.2.11
istanbul-lib-coverage: 3.2.2
istanbul-lib-instrument: 6.0.3
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.2.0
- jest-message-util: 30.2.0
- jest-util: 30.2.0
- jest-worker: 30.2.0
+ jest-message-util: 30.3.0
+ jest-util: 30.3.0
+ jest-worker: 30.3.0
slash: 3.0.0
string-length: 4.0.2
v8-to-istanbul: 9.3.0
@@ -11229,24 +11466,31 @@ snapshots:
graceful-fs: 4.2.11
natural-compare: 1.4.0
+ '@jest/snapshot-utils@30.3.0':
+ dependencies:
+ '@jest/types': 30.3.0
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ natural-compare: 1.4.0
+
'@jest/source-map@30.0.1':
dependencies:
'@jridgewell/trace-mapping': 0.3.31
callsites: 3.1.0
graceful-fs: 4.2.11
- '@jest/test-result@30.2.0':
+ '@jest/test-result@30.3.0':
dependencies:
- '@jest/console': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/console': 30.3.0
+ '@jest/types': 30.3.0
'@types/istanbul-lib-coverage': 2.0.6
collect-v8-coverage: 1.0.3
- '@jest/test-sequencer@30.2.0':
+ '@jest/test-sequencer@30.3.0':
dependencies:
- '@jest/test-result': 30.2.0
+ '@jest/test-result': 30.3.0
graceful-fs: 4.2.11
- jest-haste-map: 30.2.0
+ jest-haste-map: 30.3.0
slash: 3.0.0
'@jest/transform@30.2.0':
@@ -11269,6 +11513,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@jest/transform@30.3.0':
+ dependencies:
+ '@babel/core': 7.29.0
+ '@jest/types': 30.3.0
+ '@jridgewell/trace-mapping': 0.3.31
+ babel-plugin-istanbul: 7.0.1
+ chalk: 4.1.2
+ convert-source-map: 2.0.0
+ fast-json-stable-stringify: 2.1.0
+ graceful-fs: 4.2.11
+ jest-haste-map: 30.3.0
+ jest-regex-util: 30.0.1
+ jest-util: 30.3.0
+ pirates: 4.0.7
+ slash: 3.0.0
+ write-file-atomic: 5.0.1
+ transitivePeerDependencies:
+ - supports-color
+
'@jest/types@30.0.1':
dependencies:
'@jest/pattern': 30.0.1
@@ -11289,6 +11552,16 @@ snapshots:
'@types/yargs': 17.0.33
chalk: 4.1.2
+ '@jest/types@30.3.0':
+ dependencies:
+ '@jest/pattern': 30.0.1
+ '@jest/schemas': 30.0.5
+ '@types/istanbul-lib-coverage': 2.0.6
+ '@types/istanbul-reports': 3.0.4
+ '@types/node': 25.0.3
+ '@types/yargs': 17.0.35
+ chalk: 4.1.2
+
'@jridgewell/gen-mapping@0.3.13':
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
@@ -11334,7 +11607,7 @@ snapshots:
'@jsr/prompt-pal__node-sdk@0.4.7': {}
- '@marsidev/react-turnstile@1.4.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@marsidev/react-turnstile@1.4.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
dependencies:
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
@@ -11346,12 +11619,12 @@ snapshots:
'@tybys/wasm-util': 0.10.1
optional: true
- '@neshca/cache-handler@1.9.0(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(redis@5.10.0)':
+ '@neshca/cache-handler@1.9.0(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(redis@5.11.0)':
dependencies:
cluster-key-slot: 1.1.2
lru-cache: 10.4.3
- next: 16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- redis: 5.10.0
+ next: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ redis: 5.11.0
'@newrelic/native-metrics@11.1.0':
dependencies:
@@ -11367,7 +11640,7 @@ snapshots:
'@newrelic/security-agent@2.4.4(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
- axios: 1.13.4
+ axios: 1.13.6
check-disk-space: 3.4.0
content-type: 1.0.5
cron: 3.5.0
@@ -11384,18 +11657,18 @@ snapshots:
pretty-bytes: 5.6.0
request-ip: 3.3.0
ringbufferjs: 2.0.0
- semver: 7.7.3
+ semver: 7.7.4
unescape: 1.0.1
unescape-js: 1.1.4
uuid: 9.0.1
- ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ws: 8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- '@next/bundle-analyzer@16.1.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
+ '@next/bundle-analyzer@16.1.6(bufferutil@4.0.9)(utf-8-validate@5.0.10)':
dependencies:
webpack-bundle-analyzer: 4.10.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
@@ -11432,9 +11705,9 @@ snapshots:
'@next/swc-win32-x64-msvc@16.1.6':
optional: true
- '@next/third-parties@16.1.1(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)':
+ '@next/third-parties@16.1.6(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)':
dependencies:
- next: 16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ next: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
react: 19.2.4
third-party-capital: 1.0.20
@@ -11454,6 +11727,10 @@ snapshots:
'@nolyfill/is-core-module@1.0.39': {}
+ '@opentelemetry/api-logs@0.207.0':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+
'@opentelemetry/api-logs@0.208.0':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -11466,6 +11743,10 @@ snapshots:
dependencies:
'@opentelemetry/api': 1.9.0
+ '@opentelemetry/api-logs@0.213.0':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+
'@opentelemetry/api@1.9.0': {}
'@opentelemetry/auto-instrumentations-node@0.68.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)':
@@ -11519,7 +11800,7 @@ snapshots:
'@opentelemetry/resource-detector-azure': 0.18.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resource-detector-container': 0.8.2(@opentelemetry/api@1.9.0)
'@opentelemetry/resource-detector-gcp': 0.45.0(@opentelemetry/api@1.9.0)(encoding@0.1.13)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-node': 0.210.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- encoding
@@ -11528,7 +11809,7 @@ snapshots:
'@opentelemetry/baggage-span-processor@0.5.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/configuration@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11542,9 +11823,11 @@ snapshots:
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
yaml: 2.8.2
- '@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/configuration@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ yaml: 2.8.2
'@opentelemetry/context-async-hooks@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11554,10 +11837,9 @@ snapshots:
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/semantic-conventions': 1.38.0
'@opentelemetry/core@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11569,23 +11851,23 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.39.0
- '@opentelemetry/exporter-jaeger@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/core@2.5.1(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- jaeger-client: 3.19.0
+ '@opentelemetry/semantic-conventions': 1.39.0
- '@opentelemetry/exporter-logs-otlp-grpc@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.14.2
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-grpc-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+
+ '@opentelemetry/exporter-jaeger@2.6.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ jaeger-client: 3.19.0
'@opentelemetry/exporter-logs-otlp-grpc@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11607,14 +11889,15 @@ snapshots:
'@opentelemetry/otlp-transformer': 0.211.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-logs': 0.211.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-logs-otlp-http@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-logs-otlp-grpc@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
+ '@grpc/grpc-js': 1.14.3
'@opentelemetry/api': 1.9.0
- '@opentelemetry/api-logs': 0.208.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-grpc-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-logs': 0.213.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-logs-otlp-http@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11634,16 +11917,14 @@ snapshots:
'@opentelemetry/otlp-transformer': 0.211.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-logs': 0.211.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-logs-otlp-proto@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-logs-otlp-http@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/api-logs': 0.208.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/api-logs': 0.213.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-logs': 0.213.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-logs-otlp-proto@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11667,17 +11948,16 @@ snapshots:
'@opentelemetry/sdk-logs': 0.211.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-grpc@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-logs-otlp-proto@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.14.2
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-http': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-grpc-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/api-logs': 0.213.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-logs': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-metrics-otlp-grpc@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11703,14 +11983,17 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-metrics': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-http@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-metrics-otlp-grpc@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
+ '@grpc/grpc-js': 1.14.3
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-metrics-otlp-http': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-grpc-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-metrics-otlp-http@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11730,15 +12013,14 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-metrics': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-proto@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-metrics-otlp-http@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-http': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-metrics-otlp-proto@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11760,12 +12042,15 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-metrics': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-prometheus@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-metrics-otlp-proto@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-metrics-otlp-http': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-prometheus@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11781,16 +12066,13 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-metrics': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-trace-otlp-grpc@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-prometheus@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.14.2
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-grpc-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
'@opentelemetry/exporter-trace-otlp-grpc@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11814,14 +12096,16 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-trace-otlp-http@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-trace-otlp-grpc@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
+ '@grpc/grpc-js': 1.14.3
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-grpc-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-trace-otlp-http@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11841,14 +12125,14 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-trace-otlp-proto@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-trace-otlp-http@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-trace-otlp-proto@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11868,13 +12152,14 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-zipkin@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-trace-otlp-proto@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-zipkin@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11892,18 +12177,18 @@ snapshots:
'@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.39.0
- '@opentelemetry/id-generator-aws-xray@2.1.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/exporter-zipkin@2.6.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
- '@opentelemetry/instrumentation-amqplib@0.55.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/id-generator-aws-xray@2.1.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- transitivePeerDependencies:
- - supports-color
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-amqplib@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -11914,6 +12199,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-amqplib@0.58.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ transitivePeerDependencies:
+ - supports-color
+
'@opentelemetry/instrumentation-aws-lambda@0.62.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -11949,16 +12243,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-connect@0.52.0(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- '@types/connect': 3.4.38
- transitivePeerDependencies:
- - supports-color
-
'@opentelemetry/instrumentation-connect@0.53.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -11969,18 +12253,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-cucumber@0.25.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-connect@0.54.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.39.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ '@types/connect': 3.4.38
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-dataloader@0.26.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-cucumber@0.25.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.39.0
transitivePeerDependencies:
- supports-color
@@ -11991,19 +12278,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-dns@0.53.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-dataloader@0.28.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-express@0.57.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-dns@0.53.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -12016,20 +12301,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-fastify@0.54.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-express@0.59.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.39.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-fs@0.28.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-fastify@0.54.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.39.0
transitivePeerDependencies:
- supports-color
@@ -12041,10 +12327,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-generic-pool@0.52.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-fs@0.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -12055,10 +12342,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-graphql@0.56.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-generic-pool@0.54.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -12069,20 +12356,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-grpc@0.210.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-graphql@0.58.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.39.0
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-hapi@0.55.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-grpc@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.39.0
transitivePeerDependencies:
- supports-color
@@ -12095,13 +12380,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-http@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-hapi@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- forwarded-parse: 2.1.2
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12115,11 +12399,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-ioredis@0.56.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-http@0.211.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/redis-common': 0.38.2
+ '@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ forwarded-parse: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -12132,11 +12418,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-kafkajs@0.18.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-ioredis@0.59.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/redis-common': 0.38.2
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12148,11 +12435,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-knex@0.53.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-kafkajs@0.20.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12164,12 +12451,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-koa@0.57.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-knex@0.55.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12182,10 +12468,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-lru-memoizer@0.53.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-koa@0.59.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12196,19 +12484,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-memcached@0.53.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-lru-memoizer@0.55.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.39.0
- '@types/memcached': 2.2.10
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-mongodb@0.61.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-memcached@0.53.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.39.0
+ '@types/memcached': 2.2.10
transitivePeerDependencies:
- supports-color
@@ -12220,11 +12508,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-mongoose@0.55.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-mongodb@0.64.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12237,12 +12525,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-mysql2@0.55.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-mongoose@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- '@opentelemetry/sql-common': 0.41.2(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12255,11 +12543,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-mysql@0.54.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-mysql2@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@types/mysql': 2.15.27
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ '@opentelemetry/sql-common': 0.41.2(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -12272,6 +12561,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-mysql@0.57.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ '@types/mysql': 2.15.27
+ transitivePeerDependencies:
+ - supports-color
+
'@opentelemetry/instrumentation-nestjs-core@0.56.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -12306,24 +12604,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-pg@0.61.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-pg@0.62.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.39.0
'@opentelemetry/sql-common': 0.41.2(@opentelemetry/api@1.9.0)
'@types/pg': 8.15.6
- '@types/pg-pool': 2.0.6
+ '@types/pg-pool': 2.0.7
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-pg@0.62.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-pg@0.63.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.39.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
'@opentelemetry/sql-common': 0.41.2(@opentelemetry/api@1.9.0)
'@types/pg': 8.15.6
'@types/pg-pool': 2.0.7
@@ -12339,21 +12637,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-redis@0.57.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-redis@0.58.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
'@opentelemetry/redis-common': 0.38.2
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/semantic-conventions': 1.39.0
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-redis@0.58.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-redis@0.59.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.210.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
'@opentelemetry/redis-common': 0.38.2
- '@opentelemetry/semantic-conventions': 1.39.0
+ '@opentelemetry/semantic-conventions': 1.40.0
transitivePeerDependencies:
- supports-color
@@ -12388,14 +12686,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-tedious@0.27.0(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@types/tedious': 4.0.14
- transitivePeerDependencies:
- - supports-color
-
'@opentelemetry/instrumentation-tedious@0.29.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -12405,12 +12695,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/instrumentation-undici@0.19.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation-tedious@0.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ '@types/tedious': 4.0.14
transitivePeerDependencies:
- supports-color
@@ -12423,6 +12713,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-undici@0.21.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ transitivePeerDependencies:
+ - supports-color
+
'@opentelemetry/instrumentation-winston@0.54.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -12431,6 +12730,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation@0.207.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/api-logs': 0.207.0
+ import-in-the-middle: 2.0.6
+ require-in-the-middle: 8.0.1
+ transitivePeerDependencies:
+ - supports-color
+
'@opentelemetry/instrumentation@0.208.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -12458,11 +12766,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/otlp-exporter-base@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/instrumentation@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/api-logs': 0.213.0
+ import-in-the-middle: 3.0.0
+ require-in-the-middle: 8.0.1
+ transitivePeerDependencies:
+ - supports-color
'@opentelemetry/otlp-exporter-base@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12476,13 +12787,11 @@ snapshots:
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/otlp-transformer': 0.211.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-grpc-exporter-base@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/otlp-exporter-base@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.14.2
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-exporter-base': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
'@opentelemetry/otlp-grpc-exporter-base@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12500,16 +12809,13 @@ snapshots:
'@opentelemetry/otlp-exporter-base': 0.211.0(@opentelemetry/api@1.9.0)
'@opentelemetry/otlp-transformer': 0.211.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/otlp-transformer@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/otlp-grpc-exporter-base@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
+ '@grpc/grpc-js': 1.14.3
'@opentelemetry/api': 1.9.0
- '@opentelemetry/api-logs': 0.208.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- protobufjs: 7.5.4
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-exporter-base': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/otlp-transformer': 0.213.0(@opentelemetry/api@1.9.0)
'@opentelemetry/otlp-transformer@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12533,10 +12839,16 @@ snapshots:
'@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
protobufjs: 8.0.0
- '@opentelemetry/propagator-b3@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/otlp-transformer@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/api-logs': 0.213.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-logs': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
+ protobufjs: 7.5.4
'@opentelemetry/propagator-b3@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12548,10 +12860,10 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/propagator-jaeger@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/propagator-b3@2.6.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/propagator-jaeger@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12563,50 +12875,49 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/propagator-jaeger@2.6.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+
'@opentelemetry/redis-common@0.38.2': {}
'@opentelemetry/resource-detector-alibaba-cloud@0.33.1(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resource-detector-aws@2.11.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.39.0
'@opentelemetry/resource-detector-azure@0.18.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.39.0
'@opentelemetry/resource-detector-container@0.8.2(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resource-detector-gcp@0.45.0(@opentelemetry/api@1.9.0)(encoding@0.1.13)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
gcp-metadata: 6.1.1(encoding@0.1.13)
transitivePeerDependencies:
- encoding
- supports-color
- '@opentelemetry/resources@2.2.0(@opentelemetry/api@1.9.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
-
'@opentelemetry/resources@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -12619,12 +12930,17 @@ snapshots:
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.39.0
- '@opentelemetry/sdk-logs@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/resources@2.5.1(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/api-logs': 0.208.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.5.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.39.0
+
+ '@opentelemetry/resources@2.6.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
'@opentelemetry/sdk-logs@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12640,11 +12956,13 @@ snapshots:
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/sdk-logs@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/api-logs': 0.213.0
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
'@opentelemetry/sdk-metrics@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12658,33 +12976,11 @@ snapshots:
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-node@0.208.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/sdk-metrics@2.6.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/api-logs': 0.208.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-logs-otlp-grpc': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-logs-otlp-http': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-logs-otlp-proto': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-grpc': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-http': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-metrics-otlp-proto': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-prometheus': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-trace-otlp-grpc': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-trace-otlp-http': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-trace-otlp-proto': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/exporter-zipkin': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/propagator-b3': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/propagator-jaeger': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-logs': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-metrics': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-node': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- transitivePeerDependencies:
- - supports-color
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-node@0.210.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12746,12 +13042,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/sdk-node@0.213.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
+ '@opentelemetry/api-logs': 0.213.0
+ '@opentelemetry/configuration': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-logs-otlp-grpc': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-logs-otlp-http': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-logs-otlp-proto': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-metrics-otlp-grpc': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-metrics-otlp-http': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-metrics-otlp-proto': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-prometheus': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-trace-otlp-grpc': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-trace-otlp-http': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-trace-otlp-proto': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/exporter-zipkin': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/propagator-b3': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/propagator-jaeger': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-logs': 0.213.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-metrics': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-node': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ transitivePeerDependencies:
+ - supports-color
'@opentelemetry/sdk-trace-base@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12767,12 +13086,19 @@ snapshots:
'@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.39.0
- '@opentelemetry/sdk-trace-node@2.2.0(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/sdk-trace-base@2.5.1(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 2.5.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.5.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.39.0
+
+ '@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
'@opentelemetry/sdk-trace-node@2.4.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -12788,14 +13114,21 @@ snapshots:
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions@1.38.0': {}
+ '@opentelemetry/sdk-trace-node@2.6.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions@1.39.0': {}
+ '@opentelemetry/semantic-conventions@1.40.0': {}
+
'@opentelemetry/sql-common@0.41.2(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
'@paralleldrive/cuid2@2.2.2':
dependencies:
@@ -12808,10 +13141,10 @@ snapshots:
'@polka/url@1.0.0-next.29': {}
- '@prisma/instrumentation@6.19.0(@opentelemetry/api@1.9.0)':
+ '@prisma/instrumentation@7.2.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.207.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -12925,25 +13258,25 @@ snapshots:
dependencies:
react: 19.2.4
- '@redis/bloom@5.10.0(@redis/client@5.10.0)':
+ '@redis/bloom@5.11.0(@redis/client@5.11.0)':
dependencies:
- '@redis/client': 5.10.0
+ '@redis/client': 5.11.0
- '@redis/client@5.10.0':
+ '@redis/client@5.11.0':
dependencies:
cluster-key-slot: 1.1.2
- '@redis/json@5.10.0(@redis/client@5.10.0)':
+ '@redis/json@5.11.0(@redis/client@5.11.0)':
dependencies:
- '@redis/client': 5.10.0
+ '@redis/client': 5.11.0
- '@redis/search@5.10.0(@redis/client@5.10.0)':
+ '@redis/search@5.11.0(@redis/client@5.11.0)':
dependencies:
- '@redis/client': 5.10.0
+ '@redis/client': 5.11.0
- '@redis/time-series@5.10.0(@redis/client@5.10.0)':
+ '@redis/time-series@5.11.0(@redis/client@5.11.0)':
dependencies:
- '@redis/client': 5.10.0
+ '@redis/client': 5.11.0
'@remirror/core-constants@3.0.0': {}
@@ -12951,9 +13284,9 @@ snapshots:
'@resvg/resvg-wasm@2.4.0': {}
- '@rollup/plugin-commonjs@28.0.1(rollup@4.54.0)':
+ '@rollup/plugin-commonjs@28.0.1(rollup@4.59.0)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.54.0)
+ '@rollup/pluginutils': 5.3.0(rollup@4.59.0)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.5.0(picomatch@4.0.3)
@@ -12961,101 +13294,110 @@ snapshots:
magic-string: 0.30.21
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.54.0
+ rollup: 4.59.0
- '@rollup/pluginutils@5.3.0(rollup@4.54.0)':
+ '@rollup/pluginutils@5.3.0(rollup@4.59.0)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.54.0
+ rollup: 4.59.0
+
+ '@rollup/rollup-android-arm-eabi@4.59.0':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.54.0':
+ '@rollup/rollup-android-arm64@4.59.0':
optional: true
- '@rollup/rollup-android-arm64@4.54.0':
+ '@rollup/rollup-darwin-arm64@4.59.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.54.0':
+ '@rollup/rollup-darwin-x64@4.59.0':
optional: true
- '@rollup/rollup-darwin-x64@4.54.0':
+ '@rollup/rollup-freebsd-arm64@4.59.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.54.0':
+ '@rollup/rollup-freebsd-x64@4.59.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.54.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.54.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.59.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.54.0':
+ '@rollup/rollup-linux-arm64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.54.0':
+ '@rollup/rollup-linux-arm64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.54.0':
+ '@rollup/rollup-linux-loong64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-loong64-gnu@4.54.0':
+ '@rollup/rollup-linux-loong64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.54.0':
+ '@rollup/rollup-linux-ppc64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.54.0':
+ '@rollup/rollup-linux-ppc64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.54.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.54.0':
+ '@rollup/rollup-linux-riscv64-musl@4.59.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.54.0':
+ '@rollup/rollup-linux-s390x-gnu@4.59.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.54.0':
+ '@rollup/rollup-linux-x64-gnu@4.59.0':
optional: true
- '@rollup/rollup-openharmony-arm64@4.54.0':
+ '@rollup/rollup-linux-x64-musl@4.59.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.54.0':
+ '@rollup/rollup-openbsd-x64@4.59.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.54.0':
+ '@rollup/rollup-openharmony-arm64@4.59.0':
optional: true
- '@rollup/rollup-win32-x64-gnu@4.54.0':
+ '@rollup/rollup-win32-arm64-msvc@4.59.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.54.0':
+ '@rollup/rollup-win32-ia32-msvc@4.59.0':
+ optional: true
+
+ '@rollup/rollup-win32-x64-gnu@4.59.0':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.59.0':
optional: true
'@rtsao/scc@1.1.0': {}
- '@sentry-internal/browser-utils@10.32.1':
+ '@sentry-internal/browser-utils@10.43.0':
dependencies:
- '@sentry/core': 10.32.1
+ '@sentry/core': 10.43.0
- '@sentry-internal/feedback@10.32.1':
+ '@sentry-internal/feedback@10.43.0':
dependencies:
- '@sentry/core': 10.32.1
+ '@sentry/core': 10.43.0
- '@sentry-internal/replay-canvas@10.32.1':
+ '@sentry-internal/replay-canvas@10.43.0':
dependencies:
- '@sentry-internal/replay': 10.32.1
- '@sentry/core': 10.32.1
+ '@sentry-internal/replay': 10.43.0
+ '@sentry/core': 10.43.0
- '@sentry-internal/replay@10.32.1':
+ '@sentry-internal/replay@10.43.0':
dependencies:
- '@sentry-internal/browser-utils': 10.32.1
- '@sentry/core': 10.32.1
+ '@sentry-internal/browser-utils': 10.43.0
+ '@sentry/core': 10.43.0
'@sentry-internal/tracing@7.120.4':
dependencies:
@@ -13063,55 +13405,54 @@ snapshots:
'@sentry/types': 7.120.4
'@sentry/utils': 7.120.4
- '@sentry/babel-plugin-component-annotate@4.6.1': {}
+ '@sentry/babel-plugin-component-annotate@5.1.1': {}
- '@sentry/browser@10.32.1':
+ '@sentry/browser@10.43.0':
dependencies:
- '@sentry-internal/browser-utils': 10.32.1
- '@sentry-internal/feedback': 10.32.1
- '@sentry-internal/replay': 10.32.1
- '@sentry-internal/replay-canvas': 10.32.1
- '@sentry/core': 10.32.1
+ '@sentry-internal/browser-utils': 10.43.0
+ '@sentry-internal/feedback': 10.43.0
+ '@sentry-internal/replay': 10.43.0
+ '@sentry-internal/replay-canvas': 10.43.0
+ '@sentry/core': 10.43.0
- '@sentry/bundler-plugin-core@4.6.1(encoding@0.1.13)':
+ '@sentry/bundler-plugin-core@5.1.1(encoding@0.1.13)':
dependencies:
- '@babel/core': 7.28.5
- '@sentry/babel-plugin-component-annotate': 4.6.1
- '@sentry/cli': 2.58.4(encoding@0.1.13)
+ '@babel/core': 7.29.0
+ '@sentry/babel-plugin-component-annotate': 5.1.1
+ '@sentry/cli': 2.58.5(encoding@0.1.13)
dotenv: 16.6.1
find-up: 5.0.0
- glob: 10.5.0
- magic-string: 0.30.8
- unplugin: 1.0.1
+ glob: 13.0.6
+ magic-string: 0.30.21
transitivePeerDependencies:
- encoding
- supports-color
- '@sentry/cli-darwin@2.58.4':
+ '@sentry/cli-darwin@2.58.5':
optional: true
- '@sentry/cli-linux-arm64@2.58.4':
+ '@sentry/cli-linux-arm64@2.58.5':
optional: true
- '@sentry/cli-linux-arm@2.58.4':
+ '@sentry/cli-linux-arm@2.58.5':
optional: true
- '@sentry/cli-linux-i686@2.58.4':
+ '@sentry/cli-linux-i686@2.58.5':
optional: true
- '@sentry/cli-linux-x64@2.58.4':
+ '@sentry/cli-linux-x64@2.58.5':
optional: true
- '@sentry/cli-win32-arm64@2.58.4':
+ '@sentry/cli-win32-arm64@2.58.5':
optional: true
- '@sentry/cli-win32-i686@2.58.4':
+ '@sentry/cli-win32-i686@2.58.5':
optional: true
- '@sentry/cli-win32-x64@2.58.4':
+ '@sentry/cli-win32-x64@2.58.5':
optional: true
- '@sentry/cli@2.58.4(encoding@0.1.13)':
+ '@sentry/cli@2.58.5(encoding@0.1.13)':
dependencies:
https-proxy-agent: 5.0.1
node-fetch: 2.7.0(encoding@0.1.13)
@@ -13119,41 +13460,40 @@ snapshots:
proxy-from-env: 1.1.0
which: 2.0.2
optionalDependencies:
- '@sentry/cli-darwin': 2.58.4
- '@sentry/cli-linux-arm': 2.58.4
- '@sentry/cli-linux-arm64': 2.58.4
- '@sentry/cli-linux-i686': 2.58.4
- '@sentry/cli-linux-x64': 2.58.4
- '@sentry/cli-win32-arm64': 2.58.4
- '@sentry/cli-win32-i686': 2.58.4
- '@sentry/cli-win32-x64': 2.58.4
+ '@sentry/cli-darwin': 2.58.5
+ '@sentry/cli-linux-arm': 2.58.5
+ '@sentry/cli-linux-arm64': 2.58.5
+ '@sentry/cli-linux-i686': 2.58.5
+ '@sentry/cli-linux-x64': 2.58.5
+ '@sentry/cli-win32-arm64': 2.58.5
+ '@sentry/cli-win32-i686': 2.58.5
+ '@sentry/cli-win32-x64': 2.58.5
transitivePeerDependencies:
- encoding
- supports-color
- '@sentry/core@10.32.1': {}
+ '@sentry/core@10.43.0': {}
'@sentry/core@7.120.4':
dependencies:
'@sentry/types': 7.120.4
'@sentry/utils': 7.120.4
- '@sentry/nextjs@10.32.1(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(webpack@5.96.1)':
+ '@sentry/nextjs@10.43.0(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4))(react@19.2.4)(webpack@5.96.1)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/semantic-conventions': 1.38.0
- '@rollup/plugin-commonjs': 28.0.1(rollup@4.54.0)
- '@sentry-internal/browser-utils': 10.32.1
- '@sentry/bundler-plugin-core': 4.6.1(encoding@0.1.13)
- '@sentry/core': 10.32.1
- '@sentry/node': 10.32.1
- '@sentry/opentelemetry': 10.32.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0)
- '@sentry/react': 10.32.1(react@19.2.4)
- '@sentry/vercel-edge': 10.32.1
- '@sentry/webpack-plugin': 4.6.1(encoding@0.1.13)(webpack@5.96.1)
- next: 16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
- resolve: 1.22.8
- rollup: 4.54.0
+ '@opentelemetry/semantic-conventions': 1.40.0
+ '@rollup/plugin-commonjs': 28.0.1(rollup@4.59.0)
+ '@sentry-internal/browser-utils': 10.43.0
+ '@sentry/bundler-plugin-core': 5.1.1(encoding@0.1.13)
+ '@sentry/core': 10.43.0
+ '@sentry/node': 10.43.0
+ '@sentry/opentelemetry': 10.43.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
+ '@sentry/react': 10.43.0(react@19.2.4)
+ '@sentry/vercel-edge': 10.43.0
+ '@sentry/webpack-plugin': 5.1.1(encoding@0.1.13)(webpack@5.96.1)
+ next: 16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ rollup: 4.59.0
stacktrace-parser: 0.1.11
transitivePeerDependencies:
- '@opentelemetry/context-async-hooks'
@@ -13164,85 +13504,73 @@ snapshots:
- supports-color
- webpack
- '@sentry/node-core@10.32.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.208.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0)':
+ '@sentry/node-core@10.43.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.211.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)':
dependencies:
- '@apm-js-collab/tracing-hooks': 0.3.1
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- '@sentry/core': 10.32.1
- '@sentry/opentelemetry': 10.32.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0)
+ '@sentry/core': 10.43.0
+ '@sentry/opentelemetry': 10.43.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
import-in-the-middle: 2.0.6
- transitivePeerDependencies:
- - supports-color
+ optionalDependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
- '@sentry/node@10.32.1':
+ '@sentry/node@10.43.0':
dependencies:
+ '@fastify/otel': 0.16.0(@opentelemetry/api@1.9.0)
'@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-amqplib': 0.55.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-connect': 0.52.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-dataloader': 0.26.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-express': 0.57.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-fs': 0.28.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-generic-pool': 0.52.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-graphql': 0.56.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-hapi': 0.55.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-http': 0.208.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-ioredis': 0.56.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-kafkajs': 0.18.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-knex': 0.53.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-koa': 0.57.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-lru-memoizer': 0.53.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-mongodb': 0.61.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-mongoose': 0.55.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-mysql': 0.54.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-mysql2': 0.55.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-pg': 0.61.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-redis': 0.57.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-tedious': 0.27.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/instrumentation-undici': 0.19.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- '@prisma/instrumentation': 6.19.0(@opentelemetry/api@1.9.0)
- '@sentry/core': 10.32.1
- '@sentry/node-core': 10.32.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.208.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0)
- '@sentry/opentelemetry': 10.32.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0)
+ '@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-amqplib': 0.58.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-connect': 0.54.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-dataloader': 0.28.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-express': 0.59.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-fs': 0.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-generic-pool': 0.54.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-graphql': 0.58.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-hapi': 0.57.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-http': 0.211.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-ioredis': 0.59.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-kafkajs': 0.20.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-knex': 0.55.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-koa': 0.59.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-lru-memoizer': 0.55.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mongodb': 0.64.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mongoose': 0.57.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mysql': 0.57.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mysql2': 0.57.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-pg': 0.63.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-redis': 0.59.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-tedious': 0.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-undici': 0.21.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ '@prisma/instrumentation': 7.2.0(@opentelemetry/api@1.9.0)
+ '@sentry/core': 10.43.0
+ '@sentry/node-core': 10.43.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.211.0(@opentelemetry/api@1.9.0))(@opentelemetry/resources@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
+ '@sentry/opentelemetry': 10.43.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)
import-in-the-middle: 2.0.6
- minimatch: 9.0.5
transitivePeerDependencies:
- supports-color
- '@sentry/opentelemetry@10.32.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0)':
+ '@sentry/opentelemetry@10.43.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.6.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.40.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- '@sentry/core': 10.32.1
-
- '@sentry/opentelemetry@10.32.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/core@2.5.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@2.2.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.38.0)':
- dependencies:
- '@opentelemetry/api': 1.9.0
- '@opentelemetry/context-async-hooks': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.2.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/semantic-conventions': 1.38.0
- '@sentry/core': 10.32.1
+ '@opentelemetry/context-async-hooks': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.40.0
+ '@sentry/core': 10.43.0
- '@sentry/react@10.32.1(react@19.2.4)':
+ '@sentry/react@10.43.0(react@19.2.4)':
dependencies:
- '@sentry/browser': 10.32.1
- '@sentry/core': 10.32.1
- hoist-non-react-statics: 3.3.2
+ '@sentry/browser': 10.43.0
+ '@sentry/core': 10.43.0
react: 19.2.4
'@sentry/tracing@7.120.4':
@@ -13255,49 +13583,55 @@ snapshots:
dependencies:
'@sentry/types': 7.120.4
- '@sentry/vercel-edge@10.32.1':
+ '@sentry/vercel-edge@10.43.0':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/resources': 2.2.0(@opentelemetry/api@1.9.0)
- '@sentry/core': 10.32.1
+ '@opentelemetry/resources': 2.6.0(@opentelemetry/api@1.9.0)
+ '@sentry/core': 10.43.0
- '@sentry/webpack-plugin@4.6.1(encoding@0.1.13)(webpack@5.96.1)':
+ '@sentry/webpack-plugin@5.1.1(encoding@0.1.13)(webpack@5.96.1)':
dependencies:
- '@sentry/bundler-plugin-core': 4.6.1(encoding@0.1.13)
- unplugin: 1.0.1
+ '@sentry/bundler-plugin-core': 5.1.1(encoding@0.1.13)
uuid: 9.0.1
webpack: 5.96.1
transitivePeerDependencies:
- encoding
- supports-color
- '@shikijs/core@3.20.0':
+ '@shikijs/core@4.0.2':
dependencies:
- '@shikijs/types': 3.20.0
+ '@shikijs/primitive': 4.0.2
+ '@shikijs/types': 4.0.2
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
hast-util-to-html: 9.0.5
- '@shikijs/engine-javascript@3.20.0':
+ '@shikijs/engine-javascript@4.0.2':
dependencies:
- '@shikijs/types': 3.20.0
+ '@shikijs/types': 4.0.2
'@shikijs/vscode-textmate': 10.0.2
oniguruma-to-es: 4.3.4
- '@shikijs/engine-oniguruma@3.20.0':
+ '@shikijs/engine-oniguruma@4.0.2':
dependencies:
- '@shikijs/types': 3.20.0
+ '@shikijs/types': 4.0.2
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/langs@3.20.0':
+ '@shikijs/langs@4.0.2':
dependencies:
- '@shikijs/types': 3.20.0
+ '@shikijs/types': 4.0.2
+
+ '@shikijs/primitive@4.0.2':
+ dependencies:
+ '@shikijs/types': 4.0.2
+ '@shikijs/vscode-textmate': 10.0.2
+ '@types/hast': 3.0.4
- '@shikijs/themes@3.20.0':
+ '@shikijs/themes@4.0.2':
dependencies:
- '@shikijs/types': 3.20.0
+ '@shikijs/types': 4.0.2
- '@shikijs/types@3.20.0':
+ '@shikijs/types@4.0.2':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -13321,17 +13655,21 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
+ '@sinonjs/fake-timers@15.1.1':
+ dependencies:
+ '@sinonjs/commons': 3.0.1
+
'@standard-schema/utils@0.3.0': {}
- '@statelyai/inspect@0.4.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.26.0)':
+ '@statelyai/inspect@0.4.0(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))(xstate@5.28.0)':
dependencies:
fast-safe-stringify: 2.1.1
- isomorphic-ws: 5.0.0(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))
+ isomorphic-ws: 5.0.0(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
partysocket: 0.0.25
safe-stable-stringify: 2.4.3
superjson: 1.13.3
uuid: 9.0.1
- xstate: 5.26.0
+ xstate: 5.28.0
transitivePeerDependencies:
- ws
@@ -13343,106 +13681,106 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@tailwindcss/forms@0.5.11(tailwindcss@4.1.18)':
+ '@tailwindcss/forms@0.5.11(tailwindcss@4.2.1)':
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 4.1.18
+ tailwindcss: 4.2.1
- '@tailwindcss/node@4.1.18':
+ '@tailwindcss/node@4.2.1':
dependencies:
'@jridgewell/remapping': 2.3.5
- enhanced-resolve: 5.18.4
+ enhanced-resolve: 5.20.0
jiti: 2.6.1
- lightningcss: 1.30.2
+ lightningcss: 1.31.1
magic-string: 0.30.21
source-map-js: 1.2.1
- tailwindcss: 4.1.18
+ tailwindcss: 4.2.1
- '@tailwindcss/oxide-android-arm64@4.1.18':
+ '@tailwindcss/oxide-android-arm64@4.2.1':
optional: true
- '@tailwindcss/oxide-darwin-arm64@4.1.18':
+ '@tailwindcss/oxide-darwin-arm64@4.2.1':
optional: true
- '@tailwindcss/oxide-darwin-x64@4.1.18':
+ '@tailwindcss/oxide-darwin-x64@4.2.1':
optional: true
- '@tailwindcss/oxide-freebsd-x64@4.1.18':
+ '@tailwindcss/oxide-freebsd-x64@4.2.1':
optional: true
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
+ '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
+ '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
+ '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.1.18':
+ '@tailwindcss/oxide-linux-x64-musl@4.2.1':
optional: true
- '@tailwindcss/oxide-wasm32-wasi@4.1.18':
+ '@tailwindcss/oxide-wasm32-wasi@4.2.1':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
+ '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
+ '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
optional: true
- '@tailwindcss/oxide@4.1.18':
+ '@tailwindcss/oxide@4.2.1':
optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.1.18
- '@tailwindcss/oxide-darwin-arm64': 4.1.18
- '@tailwindcss/oxide-darwin-x64': 4.1.18
- '@tailwindcss/oxide-freebsd-x64': 4.1.18
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18
- '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18
- '@tailwindcss/oxide-linux-arm64-musl': 4.1.18
- '@tailwindcss/oxide-linux-x64-gnu': 4.1.18
- '@tailwindcss/oxide-linux-x64-musl': 4.1.18
- '@tailwindcss/oxide-wasm32-wasi': 4.1.18
- '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18
- '@tailwindcss/oxide-win32-x64-msvc': 4.1.18
-
- '@tailwindcss/postcss@4.1.18':
+ '@tailwindcss/oxide-android-arm64': 4.2.1
+ '@tailwindcss/oxide-darwin-arm64': 4.2.1
+ '@tailwindcss/oxide-darwin-x64': 4.2.1
+ '@tailwindcss/oxide-freebsd-x64': 4.2.1
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.1
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.2.1
+ '@tailwindcss/oxide-linux-arm64-musl': 4.2.1
+ '@tailwindcss/oxide-linux-x64-gnu': 4.2.1
+ '@tailwindcss/oxide-linux-x64-musl': 4.2.1
+ '@tailwindcss/oxide-wasm32-wasi': 4.2.1
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.2.1
+ '@tailwindcss/oxide-win32-x64-msvc': 4.2.1
+
+ '@tailwindcss/postcss@4.2.1':
dependencies:
'@alloc/quick-lru': 5.2.0
- '@tailwindcss/node': 4.1.18
- '@tailwindcss/oxide': 4.1.18
- postcss: 8.5.6
- tailwindcss: 4.1.18
+ '@tailwindcss/node': 4.2.1
+ '@tailwindcss/oxide': 4.2.1
+ postcss: 8.5.8
+ tailwindcss: 4.2.1
'@tanstack/query-core@5.90.20': {}
'@tanstack/query-devtools@5.93.0': {}
- '@tanstack/query-persist-client-core@5.91.19':
+ '@tanstack/query-persist-client-core@5.92.1':
dependencies:
'@tanstack/query-core': 5.90.20
- '@tanstack/query-sync-storage-persister@5.90.22':
+ '@tanstack/query-sync-storage-persister@5.90.24':
dependencies:
'@tanstack/query-core': 5.90.20
- '@tanstack/query-persist-client-core': 5.91.19
+ '@tanstack/query-persist-client-core': 5.92.1
- '@tanstack/react-query-devtools@5.91.3(@tanstack/react-query@5.90.20(react@19.2.4))(react@19.2.4)':
+ '@tanstack/react-query-devtools@5.91.3(@tanstack/react-query@5.90.21(react@19.2.4))(react@19.2.4)':
dependencies:
'@tanstack/query-devtools': 5.93.0
- '@tanstack/react-query': 5.90.20(react@19.2.4)
+ '@tanstack/react-query': 5.90.21(react@19.2.4)
react: 19.2.4
- '@tanstack/react-query-persist-client@5.90.22(@tanstack/react-query@5.90.20(react@19.2.4))(react@19.2.4)':
+ '@tanstack/react-query-persist-client@5.90.24(@tanstack/react-query@5.90.21(react@19.2.4))(react@19.2.4)':
dependencies:
- '@tanstack/query-persist-client-core': 5.91.19
- '@tanstack/react-query': 5.90.20(react@19.2.4)
+ '@tanstack/query-persist-client-core': 5.92.1
+ '@tanstack/react-query': 5.90.21(react@19.2.4)
react: 19.2.4
- '@tanstack/react-query@5.90.20(react@19.2.4)':
+ '@tanstack/react-query@5.90.21(react@19.2.4)':
dependencies:
'@tanstack/query-core': 5.90.20
react: 19.2.4
@@ -13465,7 +13803,7 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.28.6
+ '@babel/code-frame': 7.29.0
'@babel/runtime': 7.28.6
'@types/aria-query': 5.0.4
aria-query: 5.3.0
@@ -13493,182 +13831,182 @@ snapshots:
'@types/react': 19.2.7
'@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@tiptap/core@3.18.0(@tiptap/pm@3.18.0)':
+ '@tiptap/core@3.20.1(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/pm': 3.18.0
+ '@tiptap/pm': 3.20.1
- '@tiptap/extension-blockquote@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-blockquote@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-bold@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-bold@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-bubble-menu@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extension-bubble-menu@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@floating-ui/dom': 1.7.5
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@floating-ui/dom': 1.7.6
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
optional: true
- '@tiptap/extension-bullet-list@3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-bullet-list@3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extension-list': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-list': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-code-block-lowlight@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/extension-code-block@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)(highlight.js@11.11.1)(lowlight@3.3.0)':
+ '@tiptap/extension-code-block-lowlight@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/extension-code-block@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)(highlight.js@11.11.1)(lowlight@3.3.0)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/extension-code-block': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/extension-code-block': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
highlight.js: 11.11.1
lowlight: 3.3.0
- '@tiptap/extension-code-block@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extension-code-block@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
- '@tiptap/extension-code@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-code@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-document@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-document@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-dropcursor@3.18.0(@tiptap/extensions@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-dropcursor@3.20.1(@tiptap/extensions@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extensions': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extensions': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-floating-menu@3.18.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extension-floating-menu@3.20.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@floating-ui/dom': 1.7.5
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@floating-ui/dom': 1.7.6
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
optional: true
- '@tiptap/extension-gapcursor@3.18.0(@tiptap/extensions@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-gapcursor@3.20.1(@tiptap/extensions@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extensions': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extensions': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-hard-break@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-hard-break@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-heading@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-heading@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-horizontal-rule@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extension-horizontal-rule@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
- '@tiptap/extension-italic@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-italic@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-link@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extension-link@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
linkifyjs: 4.3.2
- '@tiptap/extension-list-item@3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-list-item@3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extension-list': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-list': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-list-keymap@3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-list-keymap@3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extension-list': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-list': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
- '@tiptap/extension-ordered-list@3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-ordered-list@3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extension-list': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-list': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-paragraph@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-paragraph@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-placeholder@3.18.0(@tiptap/extensions@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-placeholder@3.20.1(@tiptap/extensions@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extensions': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extensions': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-strike@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-strike@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-table-cell@3.18.0(@tiptap/extension-table@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-table-cell@3.20.1(@tiptap/extension-table@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extension-table': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-table': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-table-header@3.18.0(@tiptap/extension-table@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-table-header@3.20.1(@tiptap/extension-table@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extension-table': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-table': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-table-row@3.18.0(@tiptap/extension-table@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-table-row@3.20.1(@tiptap/extension-table@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/extension-table': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-table': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
- '@tiptap/extension-table@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extension-table@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
- '@tiptap/extension-text@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-text@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-typography@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-typography@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extension-underline@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))':
+ '@tiptap/extension-underline@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
- '@tiptap/extensions@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/extensions@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
- '@tiptap/markdown@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)':
+ '@tiptap/markdown@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
- marked: 17.0.1
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
+ marked: 17.0.4
- '@tiptap/pm@3.18.0':
+ '@tiptap/pm@3.20.1':
dependencies:
- prosemirror-changeset: 2.3.1
+ prosemirror-changeset: 2.4.0
prosemirror-collab: 1.3.1
prosemirror-commands: 1.7.1
prosemirror-dropcursor: 1.8.2
- prosemirror-gapcursor: 1.4.0
+ prosemirror-gapcursor: 1.4.1
prosemirror-history: 1.5.0
prosemirror-inputrules: 1.5.1
prosemirror-keymap: 1.2.3
- prosemirror-markdown: 1.13.3
- prosemirror-menu: 1.2.5
+ prosemirror-markdown: 1.13.4
+ prosemirror-menu: 1.3.0
prosemirror-model: 1.25.4
prosemirror-schema-basic: 1.2.4
prosemirror-schema-list: 1.5.1
prosemirror-state: 1.4.4
prosemirror-tables: 1.8.5
- prosemirror-trailing-node: 3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)
+ prosemirror-trailing-node: 3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)
prosemirror-transform: 1.11.0
- prosemirror-view: 1.41.5
+ prosemirror-view: 1.41.6
- '@tiptap/react@3.18.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
+ '@tiptap/react@3.20.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
'@types/react': 19.2.7
'@types/react-dom': 19.2.3(@types/react@19.2.7)
'@types/use-sync-external-store': 0.0.6
@@ -13677,37 +14015,37 @@ snapshots:
react-dom: 19.2.4(react@19.2.4)
use-sync-external-store: 1.6.0(react@19.2.4)
optionalDependencies:
- '@tiptap/extension-bubble-menu': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
- '@tiptap/extension-floating-menu': 3.18.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
+ '@tiptap/extension-bubble-menu': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
+ '@tiptap/extension-floating-menu': 3.20.1(@floating-ui/dom@1.7.6)(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
transitivePeerDependencies:
- '@floating-ui/dom'
- '@tiptap/starter-kit@3.18.0':
- dependencies:
- '@tiptap/core': 3.18.0(@tiptap/pm@3.18.0)
- '@tiptap/extension-blockquote': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-bold': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-bullet-list': 3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
- '@tiptap/extension-code': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-code-block': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
- '@tiptap/extension-document': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-dropcursor': 3.18.0(@tiptap/extensions@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
- '@tiptap/extension-gapcursor': 3.18.0(@tiptap/extensions@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
- '@tiptap/extension-hard-break': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-heading': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-horizontal-rule': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
- '@tiptap/extension-italic': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-link': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
- '@tiptap/extension-list': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
- '@tiptap/extension-list-item': 3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
- '@tiptap/extension-list-keymap': 3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
- '@tiptap/extension-ordered-list': 3.18.0(@tiptap/extension-list@3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0))
- '@tiptap/extension-paragraph': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-strike': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-text': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extension-underline': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))
- '@tiptap/extensions': 3.18.0(@tiptap/core@3.18.0(@tiptap/pm@3.18.0))(@tiptap/pm@3.18.0)
- '@tiptap/pm': 3.18.0
+ '@tiptap/starter-kit@3.20.1':
+ dependencies:
+ '@tiptap/core': 3.20.1(@tiptap/pm@3.20.1)
+ '@tiptap/extension-blockquote': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-bold': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-bullet-list': 3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
+ '@tiptap/extension-code': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-code-block': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
+ '@tiptap/extension-document': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-dropcursor': 3.20.1(@tiptap/extensions@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
+ '@tiptap/extension-gapcursor': 3.20.1(@tiptap/extensions@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
+ '@tiptap/extension-hard-break': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-heading': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-horizontal-rule': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
+ '@tiptap/extension-italic': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-link': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
+ '@tiptap/extension-list': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
+ '@tiptap/extension-list-item': 3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
+ '@tiptap/extension-list-keymap': 3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
+ '@tiptap/extension-ordered-list': 3.20.1(@tiptap/extension-list@3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1))
+ '@tiptap/extension-paragraph': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-strike': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-text': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extension-underline': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))
+ '@tiptap/extensions': 3.20.1(@tiptap/core@3.20.1(@tiptap/pm@3.20.1))(@tiptap/pm@3.20.1)
+ '@tiptap/pm': 3.20.1
'@tybys/wasm-util@0.10.1':
dependencies:
@@ -13720,24 +14058,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.28.0
'@types/babel__generator@7.27.0':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.4
+ '@babel/parser': 7.29.0
+ '@babel/types': 7.29.0
'@types/babel__traverse@7.28.0':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.29.0
'@types/bunyan@1.8.11':
dependencies:
@@ -13843,9 +14181,9 @@ snapshots:
dependencies:
undici-types: 7.16.0
- '@types/node@25.1.0':
+ '@types/node@25.5.0':
dependencies:
- undici-types: 7.16.0
+ undici-types: 7.18.2
'@types/oracledb@6.5.2':
dependencies:
@@ -13855,10 +14193,6 @@ snapshots:
'@types/parse-unit@1.0.3': {}
- '@types/pg-pool@2.0.6':
- dependencies:
- '@types/pg': 8.15.6
-
'@types/pg-pool@2.0.7':
dependencies:
'@types/pg': 8.15.6
@@ -13913,6 +14247,10 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
+ '@types/yargs@17.0.35':
+ dependencies:
+ '@types/yargs-parser': 21.0.3
+
'@typescript-eslint/eslint-plugin@8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
@@ -14072,8 +14410,8 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.211.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/resources': 2.5.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 2.5.1(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.5.1(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -14092,17 +14430,19 @@ snapshots:
'@opentelemetry/sdk-logs': 0.211.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-metrics': 2.5.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-node': 0.211.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 2.5.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 2.5.1(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.39.0
'@uptrace/core': 2.3.0
transitivePeerDependencies:
- encoding
- supports-color
- '@vercel/og@0.8.6':
+ '@vercel/og@0.11.1':
dependencies:
'@resvg/resvg-wasm': 2.4.0
- satori: 0.16.0
+ satori: 0.25.0
+ optionalDependencies:
+ sharp: 0.34.5
'@webassemblyjs/ast@1.14.1':
dependencies:
@@ -14225,13 +14565,13 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@xstate/react@6.0.0(@types/react@19.2.7)(react@19.2.4)(xstate@5.26.0)':
+ '@xstate/react@6.1.0(@types/react@19.2.7)(react@19.2.4)(xstate@5.28.0)':
dependencies:
react: 19.2.4
use-isomorphic-layout-effect: 1.2.1(@types/react@19.2.7)(react@19.2.4)
- use-sync-external-store: 1.5.0(react@19.2.4)
+ use-sync-external-store: 1.6.0(react@19.2.4)
optionalDependencies:
- xstate: 5.26.0
+ xstate: 5.28.0
transitivePeerDependencies:
- '@types/react'
@@ -14239,20 +14579,22 @@ snapshots:
'@xtuc/long@4.2.2': {}
- acorn-import-attributes@1.9.5(acorn@8.15.0):
+ acorn-import-attributes@1.9.5(acorn@8.16.0):
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
acorn-jsx@5.3.2(acorn@8.15.0):
dependencies:
acorn: 8.15.0
- acorn-walk@8.3.4:
+ acorn-walk@8.3.5:
dependencies:
- acorn: 8.15.0
+ acorn: 8.16.0
acorn@8.15.0: {}
+ acorn@8.16.0: {}
+
agent-base@6.0.2:
dependencies:
debug: 4.4.3
@@ -14266,17 +14608,17 @@ snapshots:
clean-stack: 2.2.0
indent-string: 4.0.0
- ajv-formats@2.1.1(ajv@8.17.1):
+ ajv-formats@2.1.1(ajv@8.18.0):
optionalDependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
- ajv-keywords@3.5.2(ajv@6.12.6):
+ ajv-keywords@3.5.2(ajv@6.14.0):
dependencies:
- ajv: 6.12.6
+ ajv: 6.14.0
- ajv-keywords@5.1.0(ajv@8.17.1):
+ ajv-keywords@5.1.0(ajv@8.18.0):
dependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
fast-deep-equal: 3.1.3
ajv@6.12.6:
@@ -14286,20 +14628,27 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@8.17.1:
+ ajv@6.14.0:
+ dependencies:
+ fast-deep-equal: 3.1.3
+ fast-json-stable-stringify: 2.1.0
+ json-schema-traverse: 0.4.1
+ uri-js: 4.4.1
+
+ ajv@8.18.0:
dependencies:
fast-deep-equal: 3.1.3
fast-uri: 3.1.0
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- ansi-color@0.2.1: {}
+ ansi-color@0.2.2: {}
ansi-escapes@4.3.2:
dependencies:
type-fest: 0.21.3
- ansi-escapes@7.2.0:
+ ansi-escapes@7.3.0:
dependencies:
environment: 1.1.0
@@ -14423,14 +14772,13 @@ snapshots:
auto-bind@4.0.0: {}
- autoprefixer@10.4.22(postcss@8.5.6):
+ autoprefixer@10.4.27(postcss@8.5.8):
dependencies:
browserslist: 4.28.1
- caniuse-lite: 1.0.30001759
+ caniuse-lite: 1.0.30001779
fraction.js: 5.3.4
- normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser: 4.2.0
available-typed-arrays@1.0.7:
@@ -14443,7 +14791,7 @@ snapshots:
axe-core@4.11.1: {}
- axios@1.13.4:
+ axios@1.13.6:
dependencies:
follow-redirects: 1.15.11
form-data: 4.0.5
@@ -14453,33 +14801,19 @@ snapshots:
axobject-query@4.1.0: {}
- babel-jest@30.2.0(@babel/core@7.28.4):
+ babel-jest@30.3.0(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.28.4
- '@jest/transform': 30.2.0
+ '@babel/core': 7.29.0
+ '@jest/transform': 30.3.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 7.0.1
- babel-preset-jest: 30.2.0(@babel/core@7.28.4)
+ babel-preset-jest: 30.3.0(@babel/core@7.29.0)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-jest@30.2.0(@babel/core@7.28.6):
- dependencies:
- '@babel/core': 7.28.6
- '@jest/transform': 30.2.0
- '@types/babel__core': 7.20.5
- babel-plugin-istanbul: 7.0.1
- babel-preset-jest: 30.2.0(@babel/core@7.28.6)
- chalk: 4.1.2
- graceful-fs: 4.2.11
- slash: 3.0.0
- transitivePeerDependencies:
- - supports-color
- optional: true
-
babel-plugin-istanbul@7.0.1:
dependencies:
'@babel/helper-plugin-utils': 7.27.1
@@ -14490,7 +14824,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-jest-hoist@30.2.0:
+ babel-plugin-jest-hoist@30.3.0:
dependencies:
'@types/babel__core': 7.20.5
@@ -14521,25 +14855,24 @@ snapshots:
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4)
- babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.6):
- dependencies:
- '@babel/core': 7.28.6
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.6)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.6)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.6)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.6)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.6)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.6)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.6)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.6)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.6)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.6)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.6)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.6)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.6)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.6)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.6)
- optional: true
+ babel-preset-current-node-syntax@1.2.0(@babel/core@7.29.0):
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.29.0)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.29.0)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.29.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.29.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.29.0)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.0)
babel-preset-fbjs@3.4.0(@babel/core@7.24.0):
dependencies:
@@ -14574,30 +14907,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-preset-jest@30.2.0(@babel/core@7.28.4):
+ babel-preset-jest@30.3.0(@babel/core@7.29.0):
dependencies:
- '@babel/core': 7.28.4
- babel-plugin-jest-hoist: 30.2.0
- babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.4)
-
- babel-preset-jest@30.2.0(@babel/core@7.28.6):
- dependencies:
- '@babel/core': 7.28.6
- babel-plugin-jest-hoist: 30.2.0
- babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.6)
- optional: true
+ '@babel/core': 7.29.0
+ babel-plugin-jest-hoist: 30.3.0
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0)
bail@2.0.2: {}
balanced-match@1.0.2: {}
+ balanced-match@4.0.4: {}
+
base64-js@0.0.8: {}
base64-js@1.5.1: {}
- baseline-browser-mapping@2.9.19: {}
+ baseline-browser-mapping@2.10.8: {}
- baseline-browser-mapping@2.9.3: {}
+ baseline-browser-mapping@2.9.19: {}
bcrypt-pbkdf@1.0.2:
dependencies:
@@ -14605,8 +14933,6 @@ snapshots:
bignumber.js@9.3.1: {}
- binary-extensions@2.3.0: {}
-
bl@4.1.0:
dependencies:
buffer: 5.7.1
@@ -14626,17 +14952,21 @@ snapshots:
dependencies:
balanced-match: 1.0.2
+ brace-expansion@5.0.4:
+ dependencies:
+ balanced-match: 4.0.4
+
braces@3.0.3:
dependencies:
fill-range: 7.1.1
browserslist@4.28.1:
dependencies:
- baseline-browser-mapping: 2.9.3
- caniuse-lite: 1.0.30001759
- electron-to-chromium: 1.5.266
- node-releases: 2.0.27
- update-browserslist-db: 1.2.2(browserslist@4.28.1)
+ baseline-browser-mapping: 2.10.8
+ caniuse-lite: 1.0.30001779
+ electron-to-chromium: 1.5.313
+ node-releases: 2.0.36
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
bs-logger@0.2.6:
dependencies:
@@ -14660,7 +14990,7 @@ snapshots:
bufrw@1.4.0:
dependencies:
- ansi-color: 0.2.1
+ ansi-color: 0.2.2
error: 7.0.2
hexer: 1.5.0
xtend: 4.0.2
@@ -14695,10 +15025,10 @@ snapshots:
camelize@1.0.1: {}
- caniuse-lite@1.0.30001759: {}
-
caniuse-lite@1.0.30001766: {}
+ caniuse-lite@1.0.30001779: {}
+
capital-case@1.0.4:
dependencies:
no-case: 3.0.4
@@ -14762,18 +15092,6 @@ snapshots:
check-disk-space@3.4.0: {}
- chokidar@3.6.0:
- dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
-
chownr@1.1.4:
optional: true
@@ -14783,9 +15101,9 @@ snapshots:
ci-info@4.3.1: {}
- cjs-module-lexer@1.4.3: {}
+ ci-info@4.4.0: {}
- cjs-module-lexer@2.1.0: {}
+ cjs-module-lexer@1.4.3: {}
cjs-module-lexer@2.2.0: {}
@@ -14808,10 +15126,10 @@ snapshots:
slice-ansi: 3.0.0
string-width: 4.2.3
- cli-truncate@5.1.1:
+ cli-truncate@5.2.0:
dependencies:
- slice-ansi: 7.1.2
- string-width: 8.1.0
+ slice-ansi: 8.0.0
+ string-width: 8.2.0
cli-width@3.0.0: {}
@@ -14861,7 +15179,7 @@ snapshots:
comma-separated-tokens@2.0.3: {}
- commander@14.0.2: {}
+ commander@14.0.3: {}
commander@2.20.3: {}
@@ -14962,7 +15280,7 @@ snapshots:
css-color-keywords@1.0.0: {}
- css-gradient-parser@0.0.16: {}
+ css-gradient-parser@0.0.17: {}
css-to-react-native@3.2.0:
dependencies:
@@ -15016,7 +15334,7 @@ snapshots:
date-format@4.0.14: {}
- dayjs@1.11.19: {}
+ dayjs@1.11.20: {}
debounce@1.2.1: {}
@@ -15040,7 +15358,11 @@ snapshots:
dependencies:
character-entities: 2.0.2
- dedent@1.7.0(babel-plugin-macros@3.1.0):
+ decode-named-character-reference@1.3.0:
+ dependencies:
+ character-entities: 2.0.2
+
+ dedent@1.7.2(babel-plugin-macros@3.1.0):
optionalDependencies:
babel-plugin-macros: 3.1.0
@@ -15137,7 +15459,7 @@ snapshots:
tslib: 2.3.0
zrender: 5.6.1
- electron-to-chromium@1.5.266: {}
+ electron-to-chromium@1.5.313: {}
emittery@0.13.1: {}
@@ -15161,7 +15483,7 @@ snapshots:
once: 1.4.0
optional: true
- enhanced-resolve@5.18.4:
+ enhanced-resolve@5.20.0:
dependencies:
graceful-fs: 4.2.11
tapable: 2.3.0
@@ -15514,7 +15836,7 @@ snapshots:
event-target-shim@6.0.2: {}
- eventemitter3@5.0.1: {}
+ eventemitter3@5.0.4: {}
events@3.3.0: {}
@@ -15550,6 +15872,15 @@ snapshots:
jest-mock: 30.2.0
jest-util: 30.2.0
+ expect@30.3.0:
+ dependencies:
+ '@jest/expect-utils': 30.3.0
+ '@jest/get-type': 30.1.0
+ jest-matcher-utils: 30.3.0
+ jest-message-util: 30.3.0
+ jest-mock: 30.3.0
+ jest-util: 30.3.0
+
extend-shallow@2.0.1:
dependencies:
is-extendable: 0.1.1
@@ -15662,6 +15993,8 @@ snapshots:
flatted@3.3.3: {}
+ flatted@3.4.1: {}
+
follow-redirects@1.15.11: {}
for-each@0.3.5:
@@ -15703,10 +16036,10 @@ snapshots:
fraction.js@5.3.4: {}
- framer-motion@12.29.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ framer-motion@12.36.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
- motion-dom: 12.29.2
- motion-utils: 12.29.2
+ motion-dom: 12.36.0
+ motion-utils: 12.36.0
tslib: 2.8.1
optionalDependencies:
react: 19.2.4
@@ -15769,7 +16102,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.4.0: {}
+ get-east-asian-width@1.5.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -15817,23 +16150,20 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.4.5:
+ glob@10.5.0:
dependencies:
foreground-child: 3.3.1
jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
+ minimatch: 9.0.9
+ minipass: 7.1.3
package-json-from-dist: 1.0.1
path-scurry: 1.11.1
- glob@10.5.0:
+ glob@13.0.6:
dependencies:
- foreground-child: 3.3.1
- jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
+ minimatch: 10.2.4
+ minipass: 7.1.3
+ path-scurry: 2.0.2
glob@7.2.3:
dependencies:
@@ -15874,16 +16204,16 @@ snapshots:
graceful-fs@4.2.11: {}
- graphql-config@5.1.5(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.12.0)(typescript@5.9.3)(utf-8-validate@5.0.10):
+ graphql-config@5.1.5(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.13.1)(typescript@5.9.3)(utf-8-validate@5.0.10):
dependencies:
- '@graphql-tools/graphql-file-loader': 8.0.20(graphql@16.12.0)
- '@graphql-tools/json-file-loader': 8.0.18(graphql@16.12.0)
- '@graphql-tools/load': 8.1.0(graphql@16.12.0)
- '@graphql-tools/merge': 9.0.24(graphql@16.12.0)
- '@graphql-tools/url-loader': 8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.12.0)(utf-8-validate@5.0.10)
- '@graphql-tools/utils': 10.8.6(graphql@16.12.0)
+ '@graphql-tools/graphql-file-loader': 8.0.20(graphql@16.13.1)
+ '@graphql-tools/json-file-loader': 8.0.18(graphql@16.13.1)
+ '@graphql-tools/load': 8.1.0(graphql@16.13.1)
+ '@graphql-tools/merge': 9.0.24(graphql@16.13.1)
+ '@graphql-tools/url-loader': 8.0.31(@types/node@25.0.3)(bufferutil@4.0.9)(graphql@16.13.1)(utf-8-validate@5.0.10)
+ '@graphql-tools/utils': 10.8.6(graphql@16.13.1)
cosmiconfig: 8.3.6(typescript@5.9.3)
- graphql: 16.12.0
+ graphql: 16.13.1
jiti: 2.4.2
minimatch: 9.0.5
string-env-interpolation: 1.0.1
@@ -15897,31 +16227,38 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- graphql-request@6.1.0(encoding@0.1.13)(graphql@16.12.0):
+ graphql-request@6.1.0(encoding@0.1.13)(graphql@16.13.1):
dependencies:
- '@graphql-typed-document-node/core': 3.2.0(graphql@16.12.0)
+ '@graphql-typed-document-node/core': 3.2.0(graphql@16.13.1)
cross-fetch: 3.2.0(encoding@0.1.13)
- graphql: 16.12.0
+ graphql: 16.13.1
transitivePeerDependencies:
- encoding
- graphql-sock@1.0.1(graphql@16.12.0):
+ graphql-sock@1.0.1(graphql@16.13.1):
dependencies:
- graphql: 16.12.0
+ graphql: 16.13.1
optional: true
- graphql-tag@2.12.6(graphql@16.12.0):
+ graphql-tag@2.12.6(graphql@16.13.1):
dependencies:
- graphql: 16.12.0
+ graphql: 16.13.1
tslib: 2.4.0
- graphql-ws@6.0.5(graphql@16.12.0)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
+ graphql-ws@6.0.5(graphql@16.13.1)(ws@8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
dependencies:
- graphql: 16.12.0
+ graphql: 16.13.1
optionalDependencies:
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- graphql@16.12.0: {}
+ graphql-ws@6.0.5(graphql@16.13.1)(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
+ dependencies:
+ graphql: 16.13.1
+ optionalDependencies:
+ ws: 8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ optional: true
+
+ graphql@16.13.1: {}
gzip-size@6.0.0:
dependencies:
@@ -16080,7 +16417,7 @@ snapshots:
hexer@1.5.0:
dependencies:
- ansi-color: 0.2.1
+ ansi-color: 0.2.2
minimist: 1.2.8
process: 0.10.1
xtend: 4.0.2
@@ -16138,15 +16475,15 @@ snapshots:
human-signals@2.1.0: {}
- i18next-browser-languagedetector@8.2.0:
+ i18next-browser-languagedetector@8.2.1:
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.6
i18next-resources-to-backend@1.2.1:
dependencies:
'@babel/runtime': 7.24.4
- i18next@25.8.0(typescript@5.9.3):
+ i18next@25.8.18(typescript@5.9.3):
dependencies:
'@babel/runtime': 7.28.6
optionalDependencies:
@@ -16177,15 +16514,22 @@ snapshots:
import-in-the-middle@1.15.0:
dependencies:
- acorn: 8.15.0
- acorn-import-attributes: 1.9.5(acorn@8.15.0)
+ acorn: 8.16.0
+ acorn-import-attributes: 1.9.5(acorn@8.16.0)
cjs-module-lexer: 1.4.3
module-details-from-path: 1.0.4
import-in-the-middle@2.0.6:
dependencies:
- acorn: 8.15.0
- acorn-import-attributes: 1.9.5(acorn@8.15.0)
+ acorn: 8.16.0
+ acorn-import-attributes: 1.9.5(acorn@8.16.0)
+ cjs-module-lexer: 2.2.0
+ module-details-from-path: 1.0.4
+
+ import-in-the-middle@3.0.0:
+ dependencies:
+ acorn: 8.16.0
+ acorn-import-attributes: 1.9.5(acorn@8.16.0)
cjs-module-lexer: 2.2.0
module-details-from-path: 1.0.4
@@ -16269,10 +16613,6 @@ snapshots:
dependencies:
has-bigints: 1.1.0
- is-binary-path@2.1.0:
- dependencies:
- binary-extensions: 2.3.0
-
is-boolean-object@1.2.2:
dependencies:
call-bound: 1.0.4
@@ -16313,7 +16653,7 @@ snapshots:
is-fullwidth-code-point@5.1.0:
dependencies:
- get-east-asian-width: 1.4.0
+ get-east-asian-width: 1.5.0
is-generator-fn@2.1.0: {}
@@ -16431,6 +16771,10 @@ snapshots:
dependencies:
ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ isomorphic-ws@5.0.0(ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)):
+ dependencies:
+ ws: 8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+
isstream@0.1.2: {}
istanbul-lib-coverage@3.2.2: {}
@@ -16487,31 +16831,31 @@ snapshots:
uuid: 8.3.2
xorshift: 1.2.0
- jest-changed-files@30.2.0:
+ jest-changed-files@30.3.0:
dependencies:
execa: 5.1.1
- jest-util: 30.2.0
+ jest-util: 30.3.0
p-limit: 3.1.0
- jest-circus@30.2.0(babel-plugin-macros@3.1.0):
+ jest-circus@30.3.0(babel-plugin-macros@3.1.0):
dependencies:
- '@jest/environment': 30.2.0
- '@jest/expect': 30.2.0
- '@jest/test-result': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/environment': 30.3.0
+ '@jest/expect': 30.3.0
+ '@jest/test-result': 30.3.0
+ '@jest/types': 30.3.0
'@types/node': 25.0.3
chalk: 4.1.2
co: 4.6.0
- dedent: 1.7.0(babel-plugin-macros@3.1.0)
+ dedent: 1.7.2(babel-plugin-macros@3.1.0)
is-generator-fn: 2.1.0
- jest-each: 30.2.0
- jest-matcher-utils: 30.2.0
- jest-message-util: 30.2.0
- jest-runtime: 30.2.0
- jest-snapshot: 30.2.0
- jest-util: 30.2.0
+ jest-each: 30.3.0
+ jest-matcher-utils: 30.3.0
+ jest-message-util: 30.3.0
+ jest-runtime: 30.3.0
+ jest-snapshot: 30.3.0
+ jest-util: 30.3.0
p-limit: 3.1.0
- pretty-format: 30.2.0
+ pretty-format: 30.3.0
pure-rand: 7.0.1
slash: 3.0.0
stack-utils: 2.0.6
@@ -16519,17 +16863,17 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0):
+ jest-cli@30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0):
dependencies:
- '@jest/core': 30.2.0(babel-plugin-macros@3.1.0)
- '@jest/test-result': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/core': 30.3.0(babel-plugin-macros@3.1.0)
+ '@jest/test-result': 30.3.0
+ '@jest/types': 30.3.0
chalk: 4.1.2
exit-x: 0.2.2
import-local: 3.2.0
- jest-config: 30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
- jest-util: 30.2.0
- jest-validate: 30.2.0
+ jest-config: 30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
+ jest-util: 30.3.0
+ jest-validate: 30.3.0
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -16538,30 +16882,29 @@ snapshots:
- supports-color
- ts-node
- jest-config@30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0):
+ jest-config@30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0):
dependencies:
- '@babel/core': 7.28.4
+ '@babel/core': 7.29.0
'@jest/get-type': 30.1.0
'@jest/pattern': 30.0.1
- '@jest/test-sequencer': 30.2.0
- '@jest/types': 30.2.0
- babel-jest: 30.2.0(@babel/core@7.28.4)
+ '@jest/test-sequencer': 30.3.0
+ '@jest/types': 30.3.0
+ babel-jest: 30.3.0(@babel/core@7.29.0)
chalk: 4.1.2
- ci-info: 4.3.1
+ ci-info: 4.4.0
deepmerge: 4.3.1
- glob: 10.4.5
+ glob: 10.5.0
graceful-fs: 4.2.11
- jest-circus: 30.2.0(babel-plugin-macros@3.1.0)
+ jest-circus: 30.3.0(babel-plugin-macros@3.1.0)
jest-docblock: 30.2.0
- jest-environment-node: 30.2.0
+ jest-environment-node: 30.3.0
jest-regex-util: 30.0.1
- jest-resolve: 30.2.0
- jest-runner: 30.2.0
- jest-util: 30.2.0
- jest-validate: 30.2.0
- micromatch: 4.0.8
+ jest-resolve: 30.3.0
+ jest-runner: 30.3.0
+ jest-util: 30.3.0
+ jest-validate: 30.3.0
parse-json: 5.2.0
- pretty-format: 30.2.0
+ pretty-format: 30.3.0
slash: 3.0.0
strip-json-comments: 3.1.1
optionalDependencies:
@@ -16584,39 +16927,44 @@ snapshots:
chalk: 4.1.2
pretty-format: 30.2.0
+ jest-diff@30.3.0:
+ dependencies:
+ '@jest/diff-sequences': 30.3.0
+ '@jest/get-type': 30.1.0
+ chalk: 4.1.2
+ pretty-format: 30.3.0
+
jest-docblock@30.2.0:
dependencies:
detect-newline: 3.1.0
- jest-each@30.2.0:
+ jest-each@30.3.0:
dependencies:
'@jest/get-type': 30.1.0
- '@jest/types': 30.2.0
+ '@jest/types': 30.3.0
chalk: 4.1.2
- jest-util: 30.2.0
- pretty-format: 30.2.0
+ jest-util: 30.3.0
+ pretty-format: 30.3.0
- jest-environment-jsdom@30.2.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ jest-environment-jsdom@30.3.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
- '@jest/environment': 30.2.0
- '@jest/environment-jsdom-abstract': 30.2.0(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
- '@types/jsdom': 21.1.7
- '@types/node': 25.0.3
+ '@jest/environment': 30.3.0
+ '@jest/environment-jsdom-abstract': 30.3.0(jsdom@26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10))
jsdom: 26.1.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- jest-environment-node@30.2.0:
+ jest-environment-node@30.3.0:
dependencies:
- '@jest/environment': 30.2.0
- '@jest/fake-timers': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/environment': 30.3.0
+ '@jest/fake-timers': 30.3.0
+ '@jest/types': 30.3.0
'@types/node': 25.0.3
- jest-mock: 30.2.0
- jest-util: 30.2.0
- jest-validate: 30.2.0
+ jest-mock: 30.3.0
+ jest-util: 30.3.0
+ jest-validate: 30.3.0
jest-haste-map@30.2.0:
dependencies:
@@ -16633,10 +16981,25 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- jest-leak-detector@30.2.0:
+ jest-haste-map@30.3.0:
+ dependencies:
+ '@jest/types': 30.3.0
+ '@types/node': 25.0.3
+ anymatch: 3.1.3
+ fb-watchman: 2.0.2
+ graceful-fs: 4.2.11
+ jest-regex-util: 30.0.1
+ jest-util: 30.3.0
+ jest-worker: 30.3.0
+ picomatch: 4.0.3
+ walker: 1.0.8
+ optionalDependencies:
+ fsevents: 2.3.3
+
+ jest-leak-detector@30.3.0:
dependencies:
'@jest/get-type': 30.1.0
- pretty-format: 30.2.0
+ pretty-format: 30.3.0
jest-matcher-utils@30.0.4:
dependencies:
@@ -16652,6 +17015,13 @@ snapshots:
jest-diff: 30.2.0
pretty-format: 30.2.0
+ jest-matcher-utils@30.3.0:
+ dependencies:
+ '@jest/get-type': 30.1.0
+ chalk: 4.1.2
+ jest-diff: 30.3.0
+ pretty-format: 30.3.0
+
jest-message-util@30.0.2:
dependencies:
'@babel/code-frame': 7.27.1
@@ -16676,6 +17046,18 @@ snapshots:
slash: 3.0.0
stack-utils: 2.0.6
+ jest-message-util@30.3.0:
+ dependencies:
+ '@babel/code-frame': 7.29.0
+ '@jest/types': 30.3.0
+ '@types/stack-utils': 2.0.3
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ picomatch: 4.0.3
+ pretty-format: 30.3.0
+ slash: 3.0.0
+ stack-utils: 2.0.6
+
jest-mock@30.0.2:
dependencies:
'@jest/types': 30.0.1
@@ -16688,79 +17070,85 @@ snapshots:
'@types/node': 25.0.3
jest-util: 30.2.0
- jest-pnp-resolver@1.2.3(jest-resolve@30.2.0):
+ jest-mock@30.3.0:
+ dependencies:
+ '@jest/types': 30.3.0
+ '@types/node': 25.0.3
+ jest-util: 30.3.0
+
+ jest-pnp-resolver@1.2.3(jest-resolve@30.3.0):
optionalDependencies:
- jest-resolve: 30.2.0
+ jest-resolve: 30.3.0
jest-regex-util@30.0.1: {}
- jest-resolve-dependencies@30.2.0:
+ jest-resolve-dependencies@30.3.0:
dependencies:
jest-regex-util: 30.0.1
- jest-snapshot: 30.2.0
+ jest-snapshot: 30.3.0
transitivePeerDependencies:
- supports-color
- jest-resolve@30.2.0:
+ jest-resolve@30.3.0:
dependencies:
chalk: 4.1.2
graceful-fs: 4.2.11
- jest-haste-map: 30.2.0
- jest-pnp-resolver: 1.2.3(jest-resolve@30.2.0)
- jest-util: 30.2.0
- jest-validate: 30.2.0
+ jest-haste-map: 30.3.0
+ jest-pnp-resolver: 1.2.3(jest-resolve@30.3.0)
+ jest-util: 30.3.0
+ jest-validate: 30.3.0
slash: 3.0.0
unrs-resolver: 1.11.1
- jest-runner@30.2.0:
+ jest-runner@30.3.0:
dependencies:
- '@jest/console': 30.2.0
- '@jest/environment': 30.2.0
- '@jest/test-result': 30.2.0
- '@jest/transform': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/console': 30.3.0
+ '@jest/environment': 30.3.0
+ '@jest/test-result': 30.3.0
+ '@jest/transform': 30.3.0
+ '@jest/types': 30.3.0
'@types/node': 25.0.3
chalk: 4.1.2
emittery: 0.13.1
exit-x: 0.2.2
graceful-fs: 4.2.11
jest-docblock: 30.2.0
- jest-environment-node: 30.2.0
- jest-haste-map: 30.2.0
- jest-leak-detector: 30.2.0
- jest-message-util: 30.2.0
- jest-resolve: 30.2.0
- jest-runtime: 30.2.0
- jest-util: 30.2.0
- jest-watcher: 30.2.0
- jest-worker: 30.2.0
+ jest-environment-node: 30.3.0
+ jest-haste-map: 30.3.0
+ jest-leak-detector: 30.3.0
+ jest-message-util: 30.3.0
+ jest-resolve: 30.3.0
+ jest-runtime: 30.3.0
+ jest-util: 30.3.0
+ jest-watcher: 30.3.0
+ jest-worker: 30.3.0
p-limit: 3.1.0
source-map-support: 0.5.13
transitivePeerDependencies:
- supports-color
- jest-runtime@30.2.0:
+ jest-runtime@30.3.0:
dependencies:
- '@jest/environment': 30.2.0
- '@jest/fake-timers': 30.2.0
- '@jest/globals': 30.2.0
+ '@jest/environment': 30.3.0
+ '@jest/fake-timers': 30.3.0
+ '@jest/globals': 30.3.0
'@jest/source-map': 30.0.1
- '@jest/test-result': 30.2.0
- '@jest/transform': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/test-result': 30.3.0
+ '@jest/transform': 30.3.0
+ '@jest/types': 30.3.0
'@types/node': 25.0.3
chalk: 4.1.2
- cjs-module-lexer: 2.1.0
+ cjs-module-lexer: 2.2.0
collect-v8-coverage: 1.0.3
- glob: 10.4.5
+ glob: 10.5.0
graceful-fs: 4.2.11
- jest-haste-map: 30.2.0
- jest-message-util: 30.2.0
- jest-mock: 30.2.0
+ jest-haste-map: 30.3.0
+ jest-message-util: 30.3.0
+ jest-mock: 30.3.0
jest-regex-util: 30.0.1
- jest-resolve: 30.2.0
- jest-snapshot: 30.2.0
- jest-util: 30.2.0
+ jest-resolve: 30.3.0
+ jest-snapshot: 30.3.0
+ jest-util: 30.3.0
slash: 3.0.0
strip-bom: 4.0.0
transitivePeerDependencies:
@@ -16792,6 +17180,32 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ jest-snapshot@30.3.0:
+ dependencies:
+ '@babel/core': 7.29.0
+ '@babel/generator': 7.29.1
+ '@babel/plugin-syntax-jsx': 7.28.6(@babel/core@7.29.0)
+ '@babel/plugin-syntax-typescript': 7.28.6(@babel/core@7.29.0)
+ '@babel/types': 7.29.0
+ '@jest/expect-utils': 30.3.0
+ '@jest/get-type': 30.1.0
+ '@jest/snapshot-utils': 30.3.0
+ '@jest/transform': 30.3.0
+ '@jest/types': 30.3.0
+ babel-preset-current-node-syntax: 1.2.0(@babel/core@7.29.0)
+ chalk: 4.1.2
+ expect: 30.3.0
+ graceful-fs: 4.2.11
+ jest-diff: 30.3.0
+ jest-matcher-utils: 30.3.0
+ jest-message-util: 30.3.0
+ jest-util: 30.3.0
+ pretty-format: 30.3.0
+ semver: 7.7.4
+ synckit: 0.11.12
+ transitivePeerDependencies:
+ - supports-color
+
jest-util@30.0.2:
dependencies:
'@jest/types': 30.0.1
@@ -16810,29 +17224,38 @@ snapshots:
graceful-fs: 4.2.11
picomatch: 4.0.3
- jest-validate@30.2.0:
+ jest-util@30.3.0:
+ dependencies:
+ '@jest/types': 30.3.0
+ '@types/node': 25.0.3
+ chalk: 4.1.2
+ ci-info: 4.4.0
+ graceful-fs: 4.2.11
+ picomatch: 4.0.3
+
+ jest-validate@30.3.0:
dependencies:
'@jest/get-type': 30.1.0
- '@jest/types': 30.2.0
+ '@jest/types': 30.3.0
camelcase: 6.3.0
chalk: 4.1.2
leven: 3.1.0
- pretty-format: 30.2.0
+ pretty-format: 30.3.0
- jest-watcher@30.2.0:
+ jest-watcher@30.3.0:
dependencies:
- '@jest/test-result': 30.2.0
- '@jest/types': 30.2.0
+ '@jest/test-result': 30.3.0
+ '@jest/types': 30.3.0
'@types/node': 25.0.3
ansi-escapes: 4.3.2
chalk: 4.1.2
emittery: 0.13.1
- jest-util: 30.2.0
+ jest-util: 30.3.0
string-length: 4.0.2
jest-worker@27.5.1:
dependencies:
- '@types/node': 25.1.0
+ '@types/node': 25.5.0
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -16844,12 +17267,20 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0):
+ jest-worker@30.3.0:
dependencies:
- '@jest/core': 30.2.0(babel-plugin-macros@3.1.0)
- '@jest/types': 30.2.0
+ '@types/node': 25.0.3
+ '@ungap/structured-clone': 1.3.0
+ jest-util: 30.3.0
+ merge-stream: 2.0.0
+ supports-color: 8.1.1
+
+ jest@30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0):
+ dependencies:
+ '@jest/core': 30.3.0(babel-plugin-macros@3.1.0)
+ '@jest/types': 30.3.0
import-local: 3.2.0
- jest-cli: 30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
+ jest-cli: 30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -16895,7 +17326,7 @@ snapshots:
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.22
+ nwsapi: 2.2.23
parse5: 7.3.0
rrweb-cssom: 0.8.0
saxes: 6.0.0
@@ -16906,7 +17337,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
- ws: 8.18.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ ws: 8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -16984,48 +17415,48 @@ snapshots:
lcov-parse@1.0.0: {}
- lefthook-darwin-arm64@2.0.16:
+ lefthook-darwin-arm64@2.1.4:
optional: true
- lefthook-darwin-x64@2.0.16:
+ lefthook-darwin-x64@2.1.4:
optional: true
- lefthook-freebsd-arm64@2.0.16:
+ lefthook-freebsd-arm64@2.1.4:
optional: true
- lefthook-freebsd-x64@2.0.16:
+ lefthook-freebsd-x64@2.1.4:
optional: true
- lefthook-linux-arm64@2.0.16:
+ lefthook-linux-arm64@2.1.4:
optional: true
- lefthook-linux-x64@2.0.16:
+ lefthook-linux-x64@2.1.4:
optional: true
- lefthook-openbsd-arm64@2.0.16:
+ lefthook-openbsd-arm64@2.1.4:
optional: true
- lefthook-openbsd-x64@2.0.16:
+ lefthook-openbsd-x64@2.1.4:
optional: true
- lefthook-windows-arm64@2.0.16:
+ lefthook-windows-arm64@2.1.4:
optional: true
- lefthook-windows-x64@2.0.16:
+ lefthook-windows-x64@2.1.4:
optional: true
- lefthook@2.0.16:
+ lefthook@2.1.4:
optionalDependencies:
- lefthook-darwin-arm64: 2.0.16
- lefthook-darwin-x64: 2.0.16
- lefthook-freebsd-arm64: 2.0.16
- lefthook-freebsd-x64: 2.0.16
- lefthook-linux-arm64: 2.0.16
- lefthook-linux-x64: 2.0.16
- lefthook-openbsd-arm64: 2.0.16
- lefthook-openbsd-x64: 2.0.16
- lefthook-windows-arm64: 2.0.16
- lefthook-windows-x64: 2.0.16
+ lefthook-darwin-arm64: 2.1.4
+ lefthook-darwin-x64: 2.1.4
+ lefthook-freebsd-arm64: 2.1.4
+ lefthook-freebsd-x64: 2.1.4
+ lefthook-linux-arm64: 2.1.4
+ lefthook-linux-x64: 2.1.4
+ lefthook-openbsd-arm64: 2.1.4
+ lefthook-openbsd-x64: 2.1.4
+ lefthook-windows-arm64: 2.1.4
+ lefthook-windows-x64: 2.1.4
leven@3.1.0: {}
@@ -17034,54 +17465,54 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lightningcss-android-arm64@1.30.2:
+ lightningcss-android-arm64@1.31.1:
optional: true
- lightningcss-darwin-arm64@1.30.2:
+ lightningcss-darwin-arm64@1.31.1:
optional: true
- lightningcss-darwin-x64@1.30.2:
+ lightningcss-darwin-x64@1.31.1:
optional: true
- lightningcss-freebsd-x64@1.30.2:
+ lightningcss-freebsd-x64@1.31.1:
optional: true
- lightningcss-linux-arm-gnueabihf@1.30.2:
+ lightningcss-linux-arm-gnueabihf@1.31.1:
optional: true
- lightningcss-linux-arm64-gnu@1.30.2:
+ lightningcss-linux-arm64-gnu@1.31.1:
optional: true
- lightningcss-linux-arm64-musl@1.30.2:
+ lightningcss-linux-arm64-musl@1.31.1:
optional: true
- lightningcss-linux-x64-gnu@1.30.2:
+ lightningcss-linux-x64-gnu@1.31.1:
optional: true
- lightningcss-linux-x64-musl@1.30.2:
+ lightningcss-linux-x64-musl@1.31.1:
optional: true
- lightningcss-win32-arm64-msvc@1.30.2:
+ lightningcss-win32-arm64-msvc@1.31.1:
optional: true
- lightningcss-win32-x64-msvc@1.30.2:
+ lightningcss-win32-x64-msvc@1.31.1:
optional: true
- lightningcss@1.30.2:
+ lightningcss@1.31.1:
dependencies:
detect-libc: 2.1.2
optionalDependencies:
- lightningcss-android-arm64: 1.30.2
- lightningcss-darwin-arm64: 1.30.2
- lightningcss-darwin-x64: 1.30.2
- lightningcss-freebsd-x64: 1.30.2
- lightningcss-linux-arm-gnueabihf: 1.30.2
- lightningcss-linux-arm64-gnu: 1.30.2
- lightningcss-linux-arm64-musl: 1.30.2
- lightningcss-linux-x64-gnu: 1.30.2
- lightningcss-linux-x64-musl: 1.30.2
- lightningcss-win32-arm64-msvc: 1.30.2
- lightningcss-win32-x64-msvc: 1.30.2
+ lightningcss-android-arm64: 1.31.1
+ lightningcss-darwin-arm64: 1.31.1
+ lightningcss-darwin-x64: 1.31.1
+ lightningcss-freebsd-x64: 1.31.1
+ lightningcss-linux-arm-gnueabihf: 1.31.1
+ lightningcss-linux-arm64-gnu: 1.31.1
+ lightningcss-linux-arm64-musl: 1.31.1
+ lightningcss-linux-x64-gnu: 1.31.1
+ lightningcss-linux-x64-musl: 1.31.1
+ lightningcss-win32-arm64-msvc: 1.31.1
+ lightningcss-win32-x64-msvc: 1.31.1
linebreak@1.1.0:
dependencies:
@@ -17096,14 +17527,13 @@ snapshots:
linkifyjs@4.3.2: {}
- lint-staged@16.2.7:
+ lint-staged@16.4.0:
dependencies:
- commander: 14.0.2
+ commander: 14.0.3
listr2: 9.0.5
- micromatch: 4.0.8
- nano-spawn: 2.0.0
- pidtree: 0.6.0
+ picomatch: 4.0.3
string-argv: 0.3.2
+ tinyexec: 1.0.4
yaml: 2.8.2
listr2@4.0.5:
@@ -17119,9 +17549,9 @@ snapshots:
listr2@9.0.5:
dependencies:
- cli-truncate: 5.1.1
+ cli-truncate: 5.2.0
colorette: 2.0.20
- eventemitter3: 5.0.1
+ eventemitter3: 5.0.4
log-update: 6.1.0
rfdc: 1.4.1
wrap-ansi: 9.0.2
@@ -17170,17 +17600,17 @@ snapshots:
log-update@6.1.0:
dependencies:
- ansi-escapes: 7.2.0
+ ansi-escapes: 7.3.0
cli-cursor: 5.0.0
slice-ansi: 7.1.2
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
wrap-ansi: 9.0.2
log4js@6.9.1:
dependencies:
date-format: 4.0.14
debug: 4.4.3
- flatted: 3.3.3
+ flatted: 3.4.1
rfdc: 1.4.1
streamroller: 3.1.5
transitivePeerDependencies:
@@ -17221,11 +17651,13 @@ snapshots:
lru-cache@10.4.3: {}
+ lru-cache@11.2.7: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- lucide-react@0.556.0(react@19.2.4):
+ lucide-react@0.577.0(react@19.2.4):
dependencies:
react: 19.2.4
@@ -17237,13 +17669,9 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- magic-string@0.30.8:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
-
make-dir@4.0.0:
dependencies:
- semver: 7.7.3
+ semver: 7.7.4
make-error@1.3.6: {}
@@ -17253,7 +17681,7 @@ snapshots:
map-cache@0.2.2: {}
- markdown-it@14.1.0:
+ markdown-it@14.1.1:
dependencies:
argparse: 2.0.1
entities: 4.5.0
@@ -17264,7 +17692,7 @@ snapshots:
markdown-table@3.0.4: {}
- marked@17.0.1: {}
+ marked@17.0.4: {}
masonic@4.1.0(react@19.2.4):
dependencies:
@@ -17307,6 +17735,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ mdast-util-from-markdown@2.0.3:
+ dependencies:
+ '@types/mdast': 4.0.4
+ '@types/unist': 3.0.3
+ decode-named-character-reference: 1.3.0
+ devlop: 1.1.0
+ mdast-util-to-string: 4.0.0
+ micromark: 4.0.2
+ micromark-util-decode-numeric-character-reference: 2.0.2
+ micromark-util-decode-string: 2.0.1
+ micromark-util-normalize-identifier: 2.0.1
+ micromark-util-symbol: 2.0.1
+ micromark-util-types: 2.0.2
+ unist-util-stringify-position: 4.0.0
+ transitivePeerDependencies:
+ - supports-color
+
mdast-util-gfm-autolink-literal@2.0.1:
dependencies:
'@types/mdast': 4.0.4
@@ -17319,7 +17764,7 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.3
mdast-util-to-markdown: 2.1.2
micromark-util-normalize-identifier: 2.0.1
transitivePeerDependencies:
@@ -17328,7 +17773,7 @@ snapshots:
mdast-util-gfm-strikethrough@2.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.3
mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -17338,7 +17783,7 @@ snapshots:
'@types/mdast': 4.0.4
devlop: 1.1.0
markdown-table: 3.0.4
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.3
mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
@@ -17347,14 +17792,14 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
devlop: 1.1.0
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.3
mdast-util-to-markdown: 2.1.2
transitivePeerDependencies:
- supports-color
mdast-util-gfm@3.1.0:
dependencies:
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.3
mdast-util-gfm-autolink-literal: 2.0.1
mdast-util-gfm-footnote: 2.1.0
mdast-util-gfm-strikethrough: 2.0.0
@@ -17417,7 +17862,7 @@ snapshots:
micromark-util-sanitize-uri: 2.0.1
trim-lines: 3.0.1
unist-util-position: 5.0.0
- unist-util-visit: 5.0.0
+ unist-util-visit: 5.1.0
vfile: 6.0.3
mdast-util-to-markdown@2.1.2:
@@ -17660,6 +18105,10 @@ snapshots:
minimalistic-assert@1.0.1: {}
+ minimatch@10.2.4:
+ dependencies:
+ brace-expansion: 5.0.4
+
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.12
@@ -17668,26 +18117,30 @@ snapshots:
dependencies:
brace-expansion: 2.0.2
+ minimatch@9.0.9:
+ dependencies:
+ brace-expansion: 2.0.2
+
minimist@1.2.6: {}
minimist@1.2.8: {}
- minipass@7.1.2: {}
+ minipass@7.1.3: {}
mkdirp-classic@0.5.3:
optional: true
module-details-from-path@1.0.4: {}
- motion-dom@12.29.2:
+ motion-dom@12.36.0:
dependencies:
- motion-utils: 12.29.2
+ motion-utils: 12.36.0
- motion-utils@12.29.2: {}
+ motion-utils@12.36.0: {}
- motion@12.29.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ motion@12.36.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
- framer-motion: 12.29.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
+ framer-motion: 12.36.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
tslib: 2.8.1
optionalDependencies:
react: 19.2.4
@@ -17704,8 +18157,6 @@ snapshots:
nan@2.25.0:
optional: true
- nano-spawn@2.0.0: {}
-
nanoid@3.3.11: {}
napi-postinstall@0.3.4: {}
@@ -17728,7 +18179,7 @@ snapshots:
module-details-from-path: 1.0.4
readable-stream: 3.6.2
require-in-the-middle: 7.5.2
- semver: 7.7.3
+ semver: 7.7.4
winston-transport: 4.9.0
optionalDependencies:
'@contrast/fn-inspect': 4.3.0
@@ -17740,7 +18191,7 @@ snapshots:
- supports-color
- utf-8-validate
- next@16.1.6(@babel/core@7.28.6)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
+ next@16.1.6(@babel/core@7.29.0)(@opentelemetry/api@1.9.0)(babel-plugin-macros@3.1.0)(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
'@next/env': 16.1.6
'@swc/helpers': 0.5.15
@@ -17749,7 +18200,7 @@ snapshots:
postcss: 8.4.31
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
- styled-jsx: 5.1.6(@babel/core@7.28.6)(babel-plugin-macros@3.1.0)(react@19.2.4)
+ styled-jsx: 5.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react@19.2.4)
optionalDependencies:
'@next/swc-darwin-arm64': 16.1.6
'@next/swc-darwin-x64': 16.1.6
@@ -17770,9 +18221,9 @@ snapshots:
lower-case: 2.0.2
tslib: 2.8.1
- node-abi@3.87.0:
+ node-abi@3.88.0:
dependencies:
- semver: 7.7.3
+ semver: 7.7.4
optional: true
node-domexception@1.0.0: {}
@@ -17794,7 +18245,7 @@ snapshots:
node-int64@0.4.0: {}
- node-releases@2.0.27: {}
+ node-releases@2.0.36: {}
normalize-path@2.1.1:
dependencies:
@@ -17802,8 +18253,6 @@ snapshots:
normalize-path@3.0.0: {}
- normalize-range@0.1.2: {}
-
npm-run-path@3.1.0:
dependencies:
path-key: 3.1.1
@@ -17815,7 +18264,7 @@ snapshots:
nullthrows@1.1.1: {}
- nwsapi@2.2.22: {}
+ nwsapi@2.2.23: {}
oauth-sign@0.9.0: {}
@@ -18027,7 +18476,12 @@ snapshots:
path-scurry@1.11.1:
dependencies:
lru-cache: 10.4.3
- minipass: 7.1.2
+ minipass: 7.1.3
+
+ path-scurry@2.0.2:
+ dependencies:
+ lru-cache: 11.2.7
+ minipass: 7.1.3
path-type@4.0.0: {}
@@ -18053,8 +18507,6 @@ snapshots:
picomatch@4.0.3: {}
- pidtree@0.6.0: {}
-
pirates@4.0.7: {}
pkg-dir@4.2.0:
@@ -18063,9 +18515,9 @@ snapshots:
possible-typed-array-names@1.1.0: {}
- postcss-simple-vars@7.0.1(postcss@8.5.6):
+ postcss-simple-vars@7.0.1(postcss@8.5.8):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.8
postcss-value-parser@4.2.0: {}
@@ -18075,7 +18527,7 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.6:
+ postcss@8.5.8:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -18095,9 +18547,9 @@ snapshots:
dependencies:
minimist: 1.2.8
mkdirp-classic: 0.5.3
- node-abi: 3.87.0
+ node-abi: 3.88.0
npm-run-path: 3.1.0
- pump: 3.0.3
+ pump: 3.0.4
tar-fs: 2.1.4
optional: true
@@ -18136,6 +18588,12 @@ snapshots:
ansi-styles: 5.2.0
react-is: 18.3.1
+ pretty-format@30.3.0:
+ dependencies:
+ '@jest/schemas': 30.0.5
+ ansi-styles: 5.2.0
+ react-is: 18.3.1
+
process@0.10.1: {}
progress@2.0.3: {}
@@ -18152,7 +18610,7 @@ snapshots:
property-information@7.1.0: {}
- prosemirror-changeset@2.3.1:
+ prosemirror-changeset@2.4.0:
dependencies:
prosemirror-transform: 1.11.0
@@ -18170,20 +18628,20 @@ snapshots:
dependencies:
prosemirror-state: 1.4.4
prosemirror-transform: 1.11.0
- prosemirror-view: 1.41.5
+ prosemirror-view: 1.41.6
- prosemirror-gapcursor@1.4.0:
+ prosemirror-gapcursor@1.4.1:
dependencies:
prosemirror-keymap: 1.2.3
prosemirror-model: 1.25.4
prosemirror-state: 1.4.4
- prosemirror-view: 1.41.5
+ prosemirror-view: 1.41.6
prosemirror-history@1.5.0:
dependencies:
prosemirror-state: 1.4.4
prosemirror-transform: 1.11.0
- prosemirror-view: 1.41.5
+ prosemirror-view: 1.41.6
rope-sequence: 1.3.4
prosemirror-inputrules@1.5.1:
@@ -18196,13 +18654,13 @@ snapshots:
prosemirror-state: 1.4.4
w3c-keyname: 2.2.8
- prosemirror-markdown@1.13.3:
+ prosemirror-markdown@1.13.4:
dependencies:
'@types/markdown-it': 14.1.2
- markdown-it: 14.1.0
+ markdown-it: 14.1.1
prosemirror-model: 1.25.4
- prosemirror-menu@1.2.5:
+ prosemirror-menu@1.3.0:
dependencies:
crelt: 1.0.6
prosemirror-commands: 1.7.1
@@ -18227,7 +18685,7 @@ snapshots:
dependencies:
prosemirror-model: 1.25.4
prosemirror-transform: 1.11.0
- prosemirror-view: 1.41.5
+ prosemirror-view: 1.41.6
prosemirror-tables@1.8.5:
dependencies:
@@ -18235,21 +18693,21 @@ snapshots:
prosemirror-model: 1.25.4
prosemirror-state: 1.4.4
prosemirror-transform: 1.11.0
- prosemirror-view: 1.41.5
+ prosemirror-view: 1.41.6
- prosemirror-trailing-node@3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5):
+ prosemirror-trailing-node@3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6):
dependencies:
'@remirror/core-constants': 3.0.0
escape-string-regexp: 4.0.0
prosemirror-model: 1.25.4
prosemirror-state: 1.4.4
- prosemirror-view: 1.41.5
+ prosemirror-view: 1.41.6
prosemirror-transform@1.11.0:
dependencies:
prosemirror-model: 1.25.4
- prosemirror-view@1.41.5:
+ prosemirror-view@1.41.6:
dependencies:
prosemirror-model: 1.25.4
prosemirror-state: 1.4.4
@@ -18289,7 +18747,7 @@ snapshots:
psl@1.9.0: {}
- pump@3.0.3:
+ pump@3.0.4:
dependencies:
end-of-stream: 1.4.5
once: 1.4.0
@@ -18313,10 +18771,6 @@ snapshots:
raf-schd@4.0.3: {}
- randombytes@2.1.0:
- dependencies:
- safe-buffer: 5.2.1
-
react-apple-signin-auth@1.1.2(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
react: 19.2.4
@@ -18340,7 +18794,7 @@ snapshots:
react: 19.2.4
scheduler: 0.27.0
- react-hook-form@7.71.1(react@19.2.4):
+ react-hook-form@7.71.2(react@19.2.4):
dependencies:
react: 19.2.4
@@ -18351,11 +18805,11 @@ snapshots:
react: 19.2.4
react-dom: 19.2.4(react@19.2.4)
- react-i18next@16.5.4(i18next@25.8.0(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3):
+ react-i18next@16.5.8(i18next@25.8.18(typescript@5.9.3))(react-dom@19.2.4(react@19.2.4))(react@19.2.4)(typescript@5.9.3):
dependencies:
'@babel/runtime': 7.28.6
html-parse-stringify: 3.0.1
- i18next: 25.8.0(typescript@5.9.3)
+ i18next: 25.8.18(typescript@5.9.3)
react: 19.2.4
use-sync-external-store: 1.6.0(react@19.2.4)
optionalDependencies:
@@ -18388,7 +18842,7 @@ snapshots:
'@babel/runtime': 7.27.6
'@emotion/cache': 11.14.0
'@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.4)
- '@floating-ui/dom': 1.7.5
+ '@floating-ui/dom': 1.7.6
'@types/react-transition-group': 4.4.12(@types/react@19.2.7)
memoize-one: 6.0.0
prop-types: 15.8.1
@@ -18432,22 +18886,20 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- readdirp@3.6.0:
- dependencies:
- picomatch: 2.3.1
-
redent@3.0.0:
dependencies:
indent-string: 4.0.0
strip-indent: 3.0.0
- redis@5.10.0:
+ redis@5.11.0:
dependencies:
- '@redis/bloom': 5.10.0(@redis/client@5.10.0)
- '@redis/client': 5.10.0
- '@redis/json': 5.10.0(@redis/client@5.10.0)
- '@redis/search': 5.10.0(@redis/client@5.10.0)
- '@redis/time-series': 5.10.0(@redis/client@5.10.0)
+ '@redis/bloom': 5.11.0(@redis/client@5.11.0)
+ '@redis/client': 5.11.0
+ '@redis/json': 5.11.0(@redis/client@5.11.0)
+ '@redis/search': 5.11.0(@redis/client@5.11.0)
+ '@redis/time-series': 5.11.0(@redis/client@5.11.0)
+ transitivePeerDependencies:
+ - '@node-rs/xxhash'
redux-mock-store@1.5.5(redux@5.0.1):
dependencies:
@@ -18490,12 +18942,7 @@ snapshots:
gopd: 1.2.0
set-function-name: 2.0.2
- rehackt@0.1.0(@types/react@19.2.7)(react@19.2.4):
- optionalDependencies:
- '@types/react': 19.2.7
- react: 19.2.4
-
- rehype-harden@1.1.7:
+ rehype-harden@1.1.8:
dependencies:
unist-util-visit: 5.1.0
@@ -18532,7 +18979,7 @@ snapshots:
remark-parse@11.0.0:
dependencies:
'@types/mdast': 4.0.4
- mdast-util-from-markdown: 2.0.2
+ mdast-util-from-markdown: 2.0.3
micromark-util-types: 2.0.2
unified: 11.0.5
transitivePeerDependencies:
@@ -18554,7 +19001,7 @@ snapshots:
remedial@1.0.8: {}
- remend@1.1.0: {}
+ remend@1.2.2: {}
remove-trailing-separator@1.1.0: {}
@@ -18624,12 +19071,6 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- resolve@1.22.8:
- dependencies:
- is-core-module: 2.16.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
resolve@2.0.0-next.5:
dependencies:
is-core-module: 2.16.1
@@ -18652,32 +19093,35 @@ snapshots:
ringbufferjs@2.0.0: {}
- rollup@4.54.0:
+ rollup@4.59.0:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.54.0
- '@rollup/rollup-android-arm64': 4.54.0
- '@rollup/rollup-darwin-arm64': 4.54.0
- '@rollup/rollup-darwin-x64': 4.54.0
- '@rollup/rollup-freebsd-arm64': 4.54.0
- '@rollup/rollup-freebsd-x64': 4.54.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.54.0
- '@rollup/rollup-linux-arm-musleabihf': 4.54.0
- '@rollup/rollup-linux-arm64-gnu': 4.54.0
- '@rollup/rollup-linux-arm64-musl': 4.54.0
- '@rollup/rollup-linux-loong64-gnu': 4.54.0
- '@rollup/rollup-linux-ppc64-gnu': 4.54.0
- '@rollup/rollup-linux-riscv64-gnu': 4.54.0
- '@rollup/rollup-linux-riscv64-musl': 4.54.0
- '@rollup/rollup-linux-s390x-gnu': 4.54.0
- '@rollup/rollup-linux-x64-gnu': 4.54.0
- '@rollup/rollup-linux-x64-musl': 4.54.0
- '@rollup/rollup-openharmony-arm64': 4.54.0
- '@rollup/rollup-win32-arm64-msvc': 4.54.0
- '@rollup/rollup-win32-ia32-msvc': 4.54.0
- '@rollup/rollup-win32-x64-gnu': 4.54.0
- '@rollup/rollup-win32-x64-msvc': 4.54.0
+ '@rollup/rollup-android-arm-eabi': 4.59.0
+ '@rollup/rollup-android-arm64': 4.59.0
+ '@rollup/rollup-darwin-arm64': 4.59.0
+ '@rollup/rollup-darwin-x64': 4.59.0
+ '@rollup/rollup-freebsd-arm64': 4.59.0
+ '@rollup/rollup-freebsd-x64': 4.59.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.59.0
+ '@rollup/rollup-linux-arm64-gnu': 4.59.0
+ '@rollup/rollup-linux-arm64-musl': 4.59.0
+ '@rollup/rollup-linux-loong64-gnu': 4.59.0
+ '@rollup/rollup-linux-loong64-musl': 4.59.0
+ '@rollup/rollup-linux-ppc64-gnu': 4.59.0
+ '@rollup/rollup-linux-ppc64-musl': 4.59.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.59.0
+ '@rollup/rollup-linux-riscv64-musl': 4.59.0
+ '@rollup/rollup-linux-s390x-gnu': 4.59.0
+ '@rollup/rollup-linux-x64-gnu': 4.59.0
+ '@rollup/rollup-linux-x64-musl': 4.59.0
+ '@rollup/rollup-openbsd-x64': 4.59.0
+ '@rollup/rollup-openharmony-arm64': 4.59.0
+ '@rollup/rollup-win32-arm64-msvc': 4.59.0
+ '@rollup/rollup-win32-ia32-msvc': 4.59.0
+ '@rollup/rollup-win32-x64-gnu': 4.59.0
+ '@rollup/rollup-win32-x64-msvc': 4.59.0
fsevents: 2.3.3
rope-sequence@1.3.4: {}
@@ -18721,12 +19165,12 @@ snapshots:
safer-buffer@2.1.2: {}
- satori@0.16.0:
+ satori@0.25.0:
dependencies:
'@shuding/opentype.js': 1.4.0-beta.0
css-background-parser: 0.1.0
css-box-shadow: 1.0.0-3
- css-gradient-parser: 0.0.16
+ css-gradient-parser: 0.0.17
css-to-react-native: 3.2.0
emoji-regex-xs: 2.0.1
escape-html: 1.0.3
@@ -18744,15 +19188,15 @@ snapshots:
schema-utils@3.3.0:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
+ ajv: 6.14.0
+ ajv-keywords: 3.5.2(ajv@6.14.0)
schema-utils@4.3.3:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
+ ajv: 8.18.0
+ ajv-formats: 2.1.1(ajv@8.18.0)
+ ajv-keywords: 5.1.0(ajv@8.18.0)
scuid@1.1.0: {}
@@ -18762,16 +19206,14 @@ snapshots:
semver@7.7.3: {}
+ semver@7.7.4: {}
+
sentence-case@3.0.4:
dependencies:
no-case: 3.0.4
tslib: 2.8.1
upper-case-first: 2.0.2
- serialize-javascript@6.0.2:
- dependencies:
- randombytes: 2.1.0
-
set-blocking@2.0.0: {}
set-function-length@1.2.2:
@@ -18837,14 +19279,14 @@ snapshots:
shell-quote@1.8.3: {}
- shiki@3.20.0:
+ shiki@4.0.2:
dependencies:
- '@shikijs/core': 3.20.0
- '@shikijs/engine-javascript': 3.20.0
- '@shikijs/engine-oniguruma': 3.20.0
- '@shikijs/langs': 3.20.0
- '@shikijs/themes': 3.20.0
- '@shikijs/types': 3.20.0
+ '@shikijs/core': 4.0.2
+ '@shikijs/engine-javascript': 4.0.2
+ '@shikijs/engine-oniguruma': 4.0.2
+ '@shikijs/langs': 4.0.2
+ '@shikijs/themes': 4.0.2
+ '@shikijs/types': 4.0.2
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -18907,6 +19349,11 @@ snapshots:
ansi-styles: 6.2.3
is-fullwidth-code-point: 5.1.0
+ slice-ansi@8.0.0:
+ dependencies:
+ ansi-styles: 6.2.3
+ is-fullwidth-code-point: 5.1.0
+
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
@@ -18963,23 +19410,25 @@ snapshots:
es-errors: 1.3.0
internal-slot: 1.1.0
- streamdown@2.1.0(react@19.2.4):
+ streamdown@2.4.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
dependencies:
clsx: 2.1.1
hast-util-to-jsx-runtime: 2.3.6
html-url-attributes: 3.0.1
- marked: 17.0.1
+ marked: 17.0.4
react: 19.2.4
- rehype-harden: 1.1.7
+ react-dom: 19.2.4(react@19.2.4)
+ rehype-harden: 1.1.8
rehype-raw: 7.0.0
rehype-sanitize: 6.0.0
remark-gfm: 4.0.1
remark-parse: 11.0.0
remark-rehype: 11.1.2
- remend: 1.1.0
- tailwind-merge: 3.4.0
+ remend: 1.2.2
+ tailwind-merge: 3.5.0
unified: 11.0.5
unist-util-visit: 5.1.0
+ unist-util-visit-parents: 6.0.2
transitivePeerDependencies:
- supports-color
@@ -19014,18 +19463,18 @@ snapshots:
dependencies:
eastasianwidth: 0.2.0
emoji-regex: 9.2.2
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
string-width@7.2.0:
dependencies:
emoji-regex: 10.6.0
- get-east-asian-width: 1.4.0
- strip-ansi: 7.1.2
+ get-east-asian-width: 1.5.0
+ strip-ansi: 7.2.0
- string-width@8.1.0:
+ string-width@8.2.0:
dependencies:
- get-east-asian-width: 1.4.0
- strip-ansi: 7.1.2
+ get-east-asian-width: 1.5.0
+ strip-ansi: 7.2.0
string.fromcodepoint@0.2.1: {}
@@ -19094,7 +19543,7 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.2:
+ strip-ansi@7.2.0:
dependencies:
ansi-regex: 6.2.2
@@ -19118,12 +19567,12 @@ snapshots:
dependencies:
inline-style-parser: 0.2.4
- styled-jsx@5.1.6(@babel/core@7.28.6)(babel-plugin-macros@3.1.0)(react@19.2.4):
+ styled-jsx@5.1.6(@babel/core@7.29.0)(babel-plugin-macros@3.1.0)(react@19.2.4):
dependencies:
client-only: 0.0.1
react: 19.2.4
optionalDependencies:
- '@babel/core': 7.28.6
+ '@babel/core': 7.29.0
babel-plugin-macros: 3.1.0
stylis@4.2.0: {}
@@ -19150,8 +19599,6 @@ snapshots:
dependencies:
tslib: 2.8.1
- symbol-observable@4.0.0: {}
-
symbol-tree@3.2.4: {}
sync-fetch@0.6.0-2:
@@ -19164,11 +19611,15 @@ snapshots:
dependencies:
'@pkgr/core': 0.2.9
+ synckit@0.11.12:
+ dependencies:
+ '@pkgr/core': 0.2.9
+
tabbable@6.4.0: {}
- tailwind-merge@3.4.0: {}
+ tailwind-merge@3.5.0: {}
- tailwindcss@4.1.18: {}
+ tailwindcss@4.2.1: {}
tapable@2.3.0: {}
@@ -19176,7 +19627,7 @@ snapshots:
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
- pump: 3.0.3
+ pump: 3.0.4
tar-stream: 2.2.0
optional: true
@@ -19189,19 +19640,18 @@ snapshots:
readable-stream: 3.6.2
optional: true
- terser-webpack-plugin@5.3.16(webpack@5.96.1):
+ terser-webpack-plugin@5.4.0(webpack@5.96.1):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 4.3.3
- serialize-javascript: 6.0.2
terser: 5.46.0
webpack: 5.96.1
terser@5.46.0:
dependencies:
'@jridgewell/source-map': 0.3.11
- acorn: 8.15.0
+ acorn: 8.16.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -19225,6 +19675,8 @@ snapshots:
tiny-inflate@1.0.3: {}
+ tinyexec@1.0.4: {}
+
tinyglobby@0.2.15:
dependencies:
fdir: 6.5.0(picomatch@4.0.3)
@@ -19286,16 +19738,12 @@ snapshots:
dependencies:
typescript: 5.9.3
- ts-invariant@0.10.3:
- dependencies:
- tslib: 2.8.1
-
- ts-jest@29.4.6(@babel/core@7.28.6)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.6))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0))(typescript@5.9.3):
+ ts-jest@29.4.6(@babel/core@7.29.0)(@jest/transform@30.3.0)(@jest/types@30.3.0)(babel-jest@30.3.0(@babel/core@7.29.0))(jest-util@30.3.0)(jest@30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0))(typescript@5.9.3):
dependencies:
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
handlebars: 4.7.8
- jest: 30.2.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
+ jest: 30.3.0(@types/node@25.0.3)(babel-plugin-macros@3.1.0)
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
@@ -19304,11 +19752,11 @@ snapshots:
typescript: 5.9.3
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.28.6
- '@jest/transform': 30.2.0
- '@jest/types': 30.2.0
- babel-jest: 30.2.0(@babel/core@7.28.6)
- jest-util: 30.2.0
+ '@babel/core': 7.29.0
+ '@jest/transform': 30.3.0
+ '@jest/types': 30.3.0
+ babel-jest: 30.3.0(@babel/core@7.29.0)
+ jest-util: 30.3.0
ts-log@2.2.7: {}
@@ -19417,6 +19865,8 @@ snapshots:
undici-types@7.16.0: {}
+ undici-types@7.18.2: {}
+
unescape-js@1.1.4:
dependencies:
string.fromcodepoint: 0.2.1
@@ -19484,13 +19934,6 @@ snapshots:
dependencies:
normalize-path: 2.1.1
- unplugin@1.0.1:
- dependencies:
- acorn: 8.15.0
- chokidar: 3.6.0
- webpack-sources: 3.3.3
- webpack-virtual-modules: 0.5.0
-
unrs-resolver@1.11.1:
dependencies:
napi-postinstall: 0.3.4
@@ -19515,7 +19958,7 @@ snapshots:
'@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
'@unrs/resolver-binding-win32-x64-msvc': 1.11.1
- update-browserslist-db@1.2.2(browserslist@4.28.1):
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
dependencies:
browserslist: 4.28.1
escalade: 3.2.0
@@ -19541,10 +19984,6 @@ snapshots:
optionalDependencies:
'@types/react': 19.2.7
- use-sync-external-store@1.5.0(react@19.2.4):
- dependencies:
- react: 19.2.4
-
use-sync-external-store@1.6.0(react@19.2.4):
dependencies:
react: 19.2.4
@@ -19626,8 +20065,8 @@ snapshots:
webpack-bundle-analyzer@4.10.1(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@discoveryjs/json-ext': 0.5.7
- acorn: 8.15.0
- acorn-walk: 8.3.4
+ acorn: 8.16.0
+ acorn-walk: 8.3.5
commander: 7.2.0
debounce: 1.2.1
escape-string-regexp: 4.0.0
@@ -19642,9 +20081,7 @@ snapshots:
- bufferutil
- utf-8-validate
- webpack-sources@3.3.3: {}
-
- webpack-virtual-modules@0.5.0: {}
+ webpack-sources@3.3.4: {}
webpack@5.96.1:
dependencies:
@@ -19653,10 +20090,10 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
- acorn: 8.15.0
+ acorn: 8.16.0
browserslist: 4.28.1
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.4
+ enhanced-resolve: 5.20.0
es-module-lexer: 1.7.0
eslint-scope: 5.1.1
events: 3.3.0
@@ -19668,9 +20105,9 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.3.0
- terser-webpack-plugin: 5.3.16(webpack@5.96.1)
+ terser-webpack-plugin: 5.4.0(webpack@5.96.1)
watchpack: 2.5.1
- webpack-sources: 3.3.3
+ webpack-sources: 3.3.4
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -19765,13 +20202,13 @@ snapshots:
dependencies:
ansi-styles: 6.2.3
string-width: 5.1.2
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
wrap-ansi@9.0.2:
dependencies:
ansi-styles: 6.2.3
string-width: 7.2.0
- strip-ansi: 7.1.2
+ strip-ansi: 7.2.0
wrappy@1.0.2: {}
@@ -19790,13 +20227,18 @@ snapshots:
bufferutil: 4.0.9
utf-8-validate: 5.0.10
+ ws@8.19.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ optionalDependencies:
+ bufferutil: 4.0.9
+ utf-8-validate: 5.0.10
+
xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
xorshift@1.2.0: {}
- xstate@5.26.0: {}
+ xstate@5.28.0: {}
xtend@4.0.2: {}
@@ -19849,12 +20291,6 @@ snapshots:
yoga-layout@3.2.1: {}
- zen-observable-ts@1.2.5:
- dependencies:
- zen-observable: 0.8.15
-
- zen-observable@0.8.15: {}
-
zod-validation-error@4.0.2(zod@4.3.6):
dependencies:
zod: 4.3.6
diff --git a/src/app/auth/auth-v4/page.tsx b/src/app/auth/auth-v4/page.tsx
index ee240913..9eb57a81 100644
--- a/src/app/auth/auth-v4/page.tsx
+++ b/src/app/auth/auth-v4/page.tsx
@@ -26,7 +26,7 @@ async function Page() {
})
const dbIds =
- data.data.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
+ data.data?.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
[]
const rq = getReactQueryClient()
diff --git a/src/app/auth/callback/layout.tsx b/src/app/auth/callback/layout.tsx
index 6cbf8353..d77b7735 100644
--- a/src/app/auth/callback/layout.tsx
+++ b/src/app/auth/callback/layout.tsx
@@ -21,7 +21,7 @@ async function AuthCallbackLayout(props: AuthCallbackLayoutProps) {
})
const dbIds =
- data.data.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
+ data.data?.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
[]
const rq = getReactQueryClient()
diff --git a/src/app/auth/github/page.tsx b/src/app/auth/github/page.tsx
index 6512d7b0..a2857720 100644
--- a/src/app/auth/github/page.tsx
+++ b/src/app/auth/github/page.tsx
@@ -35,7 +35,7 @@ async function Page(props: PageProps) {
})
const dbIds =
- data.data.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
+ data.data?.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
[]
const rq = getReactQueryClient()
diff --git a/src/app/dash/[userid]/admin/page.tsx b/src/app/dash/[userid]/admin/page.tsx
index 63bc506b..2b3a8347 100644
--- a/src/app/dash/[userid]/admin/page.tsx
+++ b/src/app/dash/[userid]/admin/page.tsx
@@ -72,7 +72,7 @@ async function AdminPanel(props: PageProps) {
{t('Showing books')} {offset + 1} -{' '}
- {offset + (data.adminDashboard.uncheckedBooks?.length || 0)}
+ {offset + (data!.adminDashboard.uncheckedBooks?.length || 0)}
@@ -98,7 +98,7 @@ async function AdminPanel(props: PageProps) {
-
+
{
: undefined,
},
})
- myProfile = p.data.me
+ myProfile = p.data!.me
}
let bookData: WenquBook | null = null
- const bookID = clippingsResponse.data.clipping.bookID
+ const bookID = clippingsResponse.data!.clipping.bookID
const rq = getReactQueryClient()
if (bookID && bookID.length > 3) {
const bs = await rq.fetchQuery({
@@ -77,7 +77,7 @@ export const getClippingData = cache(async (clippingId: number) => {
}
return {
- clipping: clippingsResponse.data.clipping,
+ clipping: clippingsResponse.data!.clipping,
me: myProfile,
bookData,
uid: uid ? ~~uid : undefined,
diff --git a/src/app/dash/[userid]/clippings/[clippingid]/opengraph-image.tsx b/src/app/dash/[userid]/clippings/[clippingid]/opengraph-image.tsx
index 8f9746b6..2d4e5514 100644
--- a/src/app/dash/[userid]/clippings/[clippingid]/opengraph-image.tsx
+++ b/src/app/dash/[userid]/clippings/[clippingid]/opengraph-image.tsx
@@ -45,7 +45,7 @@ export default async function Image(req: {
})
const rq = getReactQueryClient()
- const bookID = clippingsResponse.data.clipping.bookID
+ const bookID = clippingsResponse.data!.clipping.bookID
let b: WenquBook | null = null
if (bookID && bookID.length > 3) {
const bs = await rq.fetchQuery({
@@ -70,7 +70,7 @@ export default async function Image(req: {
const LXGWWenKai = fetch(u).then((res) => res.arrayBuffer())
- const content = clippingsResponse.data.clipping.content
+ const content = clippingsResponse.data!.clipping.content
if (!b) {
return new Response(
diff --git a/src/app/dash/[userid]/comments/[commentid]/page.tsx b/src/app/dash/[userid]/comments/[commentid]/page.tsx
index 75e04b3c..0da5de58 100644
--- a/src/app/dash/[userid]/comments/[commentid]/page.tsx
+++ b/src/app/dash/[userid]/comments/[commentid]/page.tsx
@@ -72,7 +72,7 @@ async function CommentPage({ params }: Props) {
const token = ck.get(COOKIE_TOKEN_KEY)?.value
- const { data, error } = await doApolloServerQuery
({
+ const { data } = await doApolloServerQuery({
query: GetCommentDocument,
variables: { id },
context: {
@@ -82,7 +82,7 @@ async function CommentPage({ params }: Props) {
},
})
- if (error || !data?.getComment) {
+ if (!data?.getComment) {
notFound()
}
diff --git a/src/app/dash/[userid]/comments/page.tsx b/src/app/dash/[userid]/comments/page.tsx
index 32299d02..7af4db89 100644
--- a/src/app/dash/[userid]/comments/page.tsx
+++ b/src/app/dash/[userid]/comments/page.tsx
@@ -36,7 +36,7 @@ export default async function CommentsPage({ params }: Props) {
const ck = await cookies()
const token = ck.get(COOKIE_TOKEN_KEY)?.value
- const { data, error } = await doApolloServerQuery<
+ const { data } = await doApolloServerQuery<
GetCommentListQuery,
GetCommentListQueryVariables
>({
@@ -54,7 +54,7 @@ export default async function CommentsPage({ params }: Props) {
},
})
- if (error || !data?.getCommentList) {
+ if (!data?.getCommentList) {
notFound()
}
diff --git a/src/app/dash/[userid]/home/content.tsx b/src/app/dash/[userid]/home/content.tsx
index 71c1f765..4e0f3894 100644
--- a/src/app/dash/[userid]/home/content.tsx
+++ b/src/app/dash/[userid]/home/content.tsx
@@ -1,5 +1,5 @@
'use client'
-import { useQuery, useSuspenseQuery } from '@apollo/client'
+import { useQuery, useSuspenseQuery } from '@apollo/client/react'
import { useRouter } from 'next/navigation'
import { useEffect, useState } from 'react'
import BookCover from '@/components/book-cover/book-cover'
@@ -119,7 +119,7 @@ function HomePageContent(props: HomePageContentProps) {
},
},
}).then((res) => {
- if (res.data.books.length < STEP) {
+ if (res.data!.books.length < STEP) {
setReachEnd(true)
}
})
diff --git a/src/app/dash/[userid]/home/page.tsx b/src/app/dash/[userid]/home/page.tsx
index c3bc5f88..a726d260 100644
--- a/src/app/dash/[userid]/home/page.tsx
+++ b/src/app/dash/[userid]/home/page.tsx
@@ -1,4 +1,3 @@
-import type { ApolloQueryResult } from '@apollo/client'
import type { Metadata } from 'next'
import { cookies } from 'next/headers'
import Link from 'next/link'
@@ -59,7 +58,7 @@ export async function generateMetadata(props: PageProps): Promise {
},
})
return profileGenerateMetadata({
- profile: profileResponse.data.me,
+ profile: profileResponse.data!.me,
})
} catch (e) {
console.error(e)
@@ -85,9 +84,9 @@ async function Page(props: PageProps) {
const myUidInt = myUid ? parseInt(myUid, 10) : undefined
const reqs: [
- Promise>,
- Promise>,
- Promise>?,
+ ReturnType>,
+ ReturnType>,
+ ReturnType>?,
] = [
doApolloServerQuery({
query: ProfileDocument,
@@ -142,8 +141,8 @@ async function Page(props: PageProps) {
let firstBook: WenquBook | null = null
- if (profileResponse.data.me.recents.length > 0) {
- let firstBookId = profileResponse.data.me.recents[0].bookID ?? ''
+ if (profileResponse.data!.me.recents.length > 0) {
+ let firstBookId = profileResponse.data!.me.recents[0].bookID ?? ''
if (firstBookId.length <= 3) {
firstBookId = ''
}
@@ -161,7 +160,7 @@ async function Page(props: PageProps) {
}
}
- const recents = profileResponse.data.me.recents
+ const recents = profileResponse.data!.me.recents
return (
@@ -191,11 +190,11 @@ async function Page(props: PageProps) {
- {!firstBook && booksResponse.data.books.length === 0 && (
+ {!firstBook && booksResponse.data!.books.length === 0 && (
@@ -204,7 +203,7 @@ async function Page(props: PageProps) {
userid={userid}
myUid={myUidInt}
targetProfile={
- accessingProfileResponse?.data?.me ?? profileResponse.data.me
+ accessingProfileResponse?.data?.me ?? profileResponse.data!.me
}
/>
diff --git a/src/app/dash/[userid]/profile/clipping-list.tsx b/src/app/dash/[userid]/profile/clipping-list.tsx
index cea7046d..096096d0 100644
--- a/src/app/dash/[userid]/profile/clipping-list.tsx
+++ b/src/app/dash/[userid]/profile/clipping-list.tsx
@@ -17,7 +17,7 @@ type ClippingListProps = {
function ClippingList(props: ClippingListProps) {
const { uid, userDomain } = props
- const [renderList, setRenderList] = React.useState<
+ const [extraItems, setExtraItems] = React.useState<
FetchClippingsByUidQuery['clippingList']['items']
>([])
const { data, loading, fetchMore } = useFetchClippingsByUidQuery({
@@ -27,10 +27,19 @@ function ClippingList(props: ClippingListProps) {
limit: 20,
},
},
- onCompleted(data) {
- setRenderList(data.clippingList.items)
- },
})
+ const renderList = React.useMemo(() => {
+ const initial = data?.clippingList.items ?? []
+ return [...initial, ...extraItems].reduce(
+ (acc, cur) => {
+ if (!acc.find((x) => x.id === cur.id)) {
+ acc.push(cur)
+ }
+ return acc
+ },
+ [] as FetchClippingsByUidQuery['clippingList']['items']
+ )
+ }, [data, extraItems])
const masonaryColumnCount = useMasonaryColumnCount()
const maybeLoadMore = useInfiniteLoader(
(
@@ -53,17 +62,7 @@ function ClippingList(props: ClippingListProps) {
},
},
}).then((resp) => {
- setRenderList((prev) =>
- [...prev, ...resp.data.clippingList.items].reduce(
- (acc, cur) => {
- if (!acc.find((x) => x.id === cur.id)) {
- acc.push(cur)
- }
- return acc
- },
- [] as FetchClippingsByUidQuery['clippingList']['items']
- )
- )
+ setExtraItems((prev) => [...prev, ...resp.data!.clippingList.items])
})
},
{
diff --git a/src/app/dash/[userid]/profile/page.tsx b/src/app/dash/[userid]/profile/page.tsx
index 43ddb52a..d60c4e38 100644
--- a/src/app/dash/[userid]/profile/page.tsx
+++ b/src/app/dash/[userid]/profile/page.tsx
@@ -35,7 +35,7 @@ export async function generateMetadata(props: PageProps): Promise {
},
})
return profileGenerateMetadata({
- profile: profileResponse.data.me,
+ profile: profileResponse.data!.me,
})
}
diff --git a/src/app/dash/[userid]/profile/personality.tsx b/src/app/dash/[userid]/profile/personality.tsx
index 4cf396aa..abf2a321 100644
--- a/src/app/dash/[userid]/profile/personality.tsx
+++ b/src/app/dash/[userid]/profile/personality.tsx
@@ -60,9 +60,7 @@ function PersonalityView(props: PersonalityViewProps) {
Error
- {error.clientErrors.map((e) => e.message).join(', ')}
- {error.networkError?.message}
- {error.graphQLErrors.map((e) => e.message).join(', ')}
+ {error.message}
)}
diff --git a/src/app/dash/[userid]/settings/exports/export.mail.tsx b/src/app/dash/[userid]/settings/exports/export.mail.tsx
index 3b821c15..0674d53b 100644
--- a/src/app/dash/[userid]/settings/exports/export.mail.tsx
+++ b/src/app/dash/[userid]/settings/exports/export.mail.tsx
@@ -1,7 +1,7 @@
'use client'
import InputField from '@annatarhe/lake-ui/form-input-field'
import Modal from '@annatarhe/lake-ui/modal'
-import { useSuspenseQuery } from '@apollo/client'
+import { useSuspenseQuery } from '@apollo/client/react'
import { zodResolver } from '@hookform/resolvers/zod'
import { Mail } from 'lucide-react'
import { useParams } from 'next/navigation'
@@ -79,8 +79,8 @@ function ExportToMail() {
},
})
- if (result.errors?.length) {
- throw new Error(result.errors[0].message)
+ if (result.error) {
+ throw new Error(result.error.message)
}
} catch (err) {
// Error is already handled by the mutation's onError callback
diff --git a/src/app/dash/[userid]/settings/webhooks/page.tsx b/src/app/dash/[userid]/settings/webhooks/page.tsx
index 1efb7b88..1e89a2df 100644
--- a/src/app/dash/[userid]/settings/webhooks/page.tsx
+++ b/src/app/dash/[userid]/settings/webhooks/page.tsx
@@ -66,7 +66,7 @@ async function WebhooksPage(props: Props) {
},
})
- const isPremium = checkIsPremium(profileResponse.me.premiumEndAt)
+ const isPremium = checkIsPremium(profileResponse!.me.premiumEndAt)
return (
<>
@@ -97,7 +97,7 @@ async function WebhooksPage(props: Props) {
diff --git a/src/app/dash/[userid]/square/content.tsx b/src/app/dash/[userid]/square/content.tsx
index 799c9d70..815f8f7c 100644
--- a/src/app/dash/[userid]/square/content.tsx
+++ b/src/app/dash/[userid]/square/content.tsx
@@ -60,11 +60,11 @@ function SquarePageContent(props: SquarePageContentProps) {
},
},
}).then((data) => {
- if (data.data.featuredClippings.length === 0) {
+ if (data.data!.featuredClippings.length === 0) {
reachEnd.current = true
}
setSqData((prev) =>
- [...prev, ...data.data.featuredClippings].reduce<
+ [...prev, ...data.data!.featuredClippings].reduce<
FetchSquareDataQuery['featuredClippings']
>((acc, x) => {
if (!acc.find((y) => y.id === x.id)) {
diff --git a/src/app/dash/[userid]/square/page.tsx b/src/app/dash/[userid]/square/page.tsx
index 1cfcb7d0..e7565297 100644
--- a/src/app/dash/[userid]/square/page.tsx
+++ b/src/app/dash/[userid]/square/page.tsx
@@ -31,7 +31,7 @@ export async function generateMetadata(): Promise {
})
const dbIds =
- squareResponse.data.featuredClippings
+ squareResponse.data!.featuredClippings
.map((x) => x.bookID)
.filter((x) => x.length > 3) ?? []
@@ -64,7 +64,7 @@ async function Page() {
})
const dbIds =
- squareResponse.data.featuredClippings
+ squareResponse.data!.featuredClippings
.map((x) => x.bookID)
.filter((x) => x.length > 3) ?? []
@@ -86,7 +86,8 @@ async function Page() {
return (
-
+
+
)
}
diff --git a/src/app/dash/[userid]/unchecked/page.tsx b/src/app/dash/[userid]/unchecked/page.tsx
index 2d85348a..7ec1e7d4 100644
--- a/src/app/dash/[userid]/unchecked/page.tsx
+++ b/src/app/dash/[userid]/unchecked/page.tsx
@@ -40,7 +40,7 @@ async function UncheckedPage(props: Props) {
},
},
})
- return
+ return
}
export default UncheckedPage
diff --git a/src/app/dash/[userid]/upload/page.tsx b/src/app/dash/[userid]/upload/page.tsx
index 69fbb640..27a20d8c 100644
--- a/src/app/dash/[userid]/upload/page.tsx
+++ b/src/app/dash/[userid]/upload/page.tsx
@@ -63,7 +63,7 @@ async function Page(props: Props) {
'Drag and drop your Kindle clippings file to share your favorite passages'}
-
+
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b1784925..095ea624 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -14,7 +14,7 @@ async function Page() {
})
const dbIds =
- data.data.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
+ data.data?.public.books.map((x) => x.doubanId).filter((x) => x.length > 3) ??
[]
const rq = getReactQueryClient()
diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx
index 51ea4944..01921132 100644
--- a/src/app/pricing/page.tsx
+++ b/src/app/pricing/page.tsx
@@ -48,7 +48,7 @@ async function PricingPage() {
},
},
})
- profile = profileResponse.data.me
+ profile = profileResponse.data!.me
}
return
diff --git a/src/app/report/yearly-legacy/page.tsx b/src/app/report/yearly-legacy/page.tsx
index e5c6360d..3197eac9 100644
--- a/src/app/report/yearly-legacy/page.tsx
+++ b/src/app/report/yearly-legacy/page.tsx
@@ -37,14 +37,14 @@ export async function generateMetadata(
},
})
const dbIds =
- reportInfoResponse.data.reportYearly.books
+ reportInfoResponse.data!.reportYearly.books
.map((x) => x.doubanId)
.filter((x) => x.length > 3) ?? []
const bs = await wenquRequest(
`/books/search?dbIds=${dbIds.join('&dbIds=')}`
)
- return generateReportMetadata(year, reportInfoResponse.data, bs.books)
+ return generateReportMetadata(year, reportInfoResponse.data!, bs.books)
}
async function YearlyLegacyPage(props: YearlyLegacyPageProps) {
@@ -66,7 +66,7 @@ async function YearlyLegacyPage(props: YearlyLegacyPageProps) {
},
})
const dbIds =
- reportInfoResponse.data.reportYearly.books
+ reportInfoResponse.data!.reportYearly.books
.map((x) => x.doubanId)
.filter((x) => x.length > 3) ?? []
@@ -89,7 +89,7 @@ async function YearlyLegacyPage(props: YearlyLegacyPageProps) {
diff --git a/src/app/report/yearly/page.tsx b/src/app/report/yearly/page.tsx
index 3c6a9ef6..3dab749b 100644
--- a/src/app/report/yearly/page.tsx
+++ b/src/app/report/yearly/page.tsx
@@ -40,14 +40,14 @@ export async function generateMetadata(
},
})
const dbIds =
- reportInfoResponse.data.reportYearly.books
+ reportInfoResponse.data!.reportYearly.books
.map((x) => x.doubanId)
.filter((x) => x.length > 3) ?? []
const bs = await wenquRequest(
`/books/search?dbIds=${dbIds.join('&dbIds=')}`
)
- return generateReportMetadata(year, reportInfoResponse.data, bs.books)
+ return generateReportMetadata(year, reportInfoResponse.data!, bs.books)
}
async function YearlyPage(props: YearlyLegacyPageProps) {
@@ -69,7 +69,7 @@ async function YearlyPage(props: YearlyLegacyPageProps) {
},
})
const dbIds =
- reportInfoResponse.data.reportYearly.books
+ reportInfoResponse.data!.reportYearly.books
.map((x) => x.doubanId)
.filter((x) => x.length > 3) ?? []
@@ -95,7 +95,7 @@ async function YearlyPage(props: YearlyLegacyPageProps) {
diff --git a/src/components/book-info-changer/bookInfoChanger.tsx b/src/components/book-info-changer/bookInfoChanger.tsx
index 66a2d91d..14d75186 100644
--- a/src/components/book-info-changer/bookInfoChanger.tsx
+++ b/src/components/book-info-changer/bookInfoChanger.tsx
@@ -1,6 +1,6 @@
import InputField from '@annatarhe/lake-ui/form-input-field'
import Modal from '@annatarhe/lake-ui/modal'
-import { useApolloClient } from '@apollo/client'
+import { useApolloClient } from '@apollo/client/react'
import { useCallback, useState } from 'react'
import { toast } from 'react-hot-toast'
import Button from '@/components/button/button'
diff --git a/src/components/clipping-sidebars/visible-toggle.tsx b/src/components/clipping-sidebars/visible-toggle.tsx
index ab8453be..06039ad5 100644
--- a/src/components/clipping-sidebars/visible-toggle.tsx
+++ b/src/components/clipping-sidebars/visible-toggle.tsx
@@ -1,6 +1,6 @@
'use client'
import Switch from '@annatarhe/lake-ui/form-switch-field'
-import { useApolloClient } from '@apollo/client'
+import { useApolloClient } from '@apollo/client/react'
import { Eye, EyeOff } from 'lucide-react'
import { useRouter } from 'next/navigation'
import toast from 'react-hot-toast'
diff --git a/src/components/dashboard-container/container.tsx b/src/components/dashboard-container/container.tsx
index 2bda1a08..954d352d 100644
--- a/src/components/dashboard-container/container.tsx
+++ b/src/components/dashboard-container/container.tsx
@@ -1,4 +1,4 @@
-import { ApolloError } from '@apollo/client'
+import { ServerError } from '@apollo/client'
import { cookies } from 'next/headers'
import { redirect } from 'next/navigation'
import type React from 'react'
@@ -48,9 +48,8 @@ async function DashboardContainer(props: DashboardContainerProps) {
})
myProfile = data
} catch (e) {
- if (e instanceof ApolloError) {
-
- const statusCode = (e.networkError as any)?.statusCode as number
+ if (e instanceof ServerError) {
+ const statusCode = e.statusCode
if (statusCode === 401) {
return redirect('/auth/auth-v4?clean=true')
}
diff --git a/src/components/navigation-bar/navigate-guide.tsx b/src/components/navigation-bar/navigate-guide.tsx
index 006a835f..728a3fe9 100644
--- a/src/components/navigation-bar/navigate-guide.tsx
+++ b/src/components/navigation-bar/navigate-guide.tsx
@@ -40,7 +40,7 @@ async function NavigateGuide(props: NavigateGuideProps) {
},
},
})
- p = data.me
+ p = data!.me
}
return (
diff --git a/src/components/reaction/reaction-cell.tsx b/src/components/reaction/reaction-cell.tsx
index 54f0ae03..d403b8d0 100644
--- a/src/components/reaction/reaction-cell.tsx
+++ b/src/components/reaction/reaction-cell.tsx
@@ -1,5 +1,5 @@
import Tooltip from '@annatarhe/lake-ui/tooltip'
-import { useApolloClient } from '@apollo/client'
+import { useApolloClient } from '@apollo/client/react'
import { useRouter } from 'next/navigation'
import { useCallback } from 'react'
import toast from 'react-hot-toast'
diff --git a/src/hooks/hooks.ts b/src/hooks/hooks.ts
index c0836358..2d34bf15 100644
--- a/src/hooks/hooks.ts
+++ b/src/hooks/hooks.ts
@@ -1,5 +1,5 @@
'use client'
-import type { ApolloError, MutationResult } from '@apollo/client'
+import type { MutationResult } from '@apollo/client/react'
import * as sentry from '@sentry/react'
import { useRouter } from 'next/navigation'
import { useEffect } from 'react'
@@ -49,7 +49,7 @@ async function onAuthEnd(data: { user: UserContent; token: string }) {
export function useAuthBy3rdPartSuccessed(
called: boolean,
loading: boolean,
- error?: ApolloError,
+ error?: Error,
// authResponse?: authByWeb3_loginByWeb3 | loginByApple_loginByApple | bindAppleUnique_bindAppleUnique | bindWeb3Address_bindWeb3Address
authResponse?: Pick
) {
@@ -87,7 +87,7 @@ export function useAuthBy3rdPartSuccessed(
export function useLoginV3Successed(
called: boolean,
loading: boolean,
- error?: ApolloError,
+ error?: Error,
authResponse?: DoLoginV3Mutation['loginV3']
) {
const { push: navigate } = useRouter()
@@ -125,7 +125,7 @@ export function useLoginV3Successed(
export function useAuthByPhoneSuccessed(
called: boolean,
loading: boolean,
- error?: ApolloError,
+ error?: Error,
authResponse?: AuthByPhoneMutation['authByPhone']
) {
// const navigate = useNavigate()
@@ -158,7 +158,7 @@ export function useAuthByPhoneSuccessed(
export function useAuthSuccessed(
called: boolean,
loading: boolean,
- error?: ApolloError,
+ error?: Error,
authResponse?: AuthQuery['auth']
) {
const { push: navigate } = useRouter()
diff --git a/src/hooks/my-file.tsx b/src/hooks/my-file.tsx
index 473611e3..1f9dda68 100644
--- a/src/hooks/my-file.tsx
+++ b/src/hooks/my-file.tsx
@@ -1,4 +1,4 @@
-import { useApolloClient, useMutation } from '@apollo/client'
+import { useApolloClient, useMutation } from '@apollo/client/react'
import { CheckCircleIcon } from '@heroicons/react/24/solid'
import { useMachine } from '@xstate/react'
import { useCallback, useEffect, useRef, useState } from 'react'
diff --git a/src/services/ajax.ts b/src/services/ajax.ts
index 6b9f045e..b8bea4cc 100644
--- a/src/services/ajax.ts
+++ b/src/services/ajax.ts
@@ -1,4 +1,9 @@
-import { ApolloLink, HttpLink } from '@apollo/client'
+import {
+ ApolloLink,
+ CombinedGraphQLErrors,
+ HttpLink,
+ ServerError,
+} from '@apollo/client'
import { onError } from '@apollo/client/link/error'
import {
ApolloClient,
@@ -106,36 +111,18 @@ export const authLink = new ApolloLink((operation, forward) => {
return forward(operation)
})
-type GraphQLResponseError = {
- name: string
- response: Response
- result: { code: number; error: string }
- statusCode: number
- message: string
-}
-
-const errorLink = onError((errData) => {
- const { graphQLErrors, networkError } = errData
- if (graphQLErrors) {
- // swal({
- // icon: 'error',
- // title: graphQLErrors[0].message,
- // text: graphQLErrors[0].message,
- // })
+const errorLink = onError(({ error }) => {
+ if (CombinedGraphQLErrors.is(error)) {
if (typeof window !== 'undefined') {
- toast.error(graphQLErrors[0].message)
+ toast.error(error.errors[0].message)
}
- }
- const ne = networkError as GraphQLResponseError
-
- if (ne) {
- console.log(`[Network error]: ${ne}`)
+ } else if (error instanceof ServerError) {
+ console.log(`[Network error]: ${error}`)
if (typeof window !== 'undefined') {
- if (ne.statusCode && ne.statusCode === 401) {
+ if (error.statusCode === 401) {
updateToken('')
profile.onLogout()
}
- // toast.error(`${ne.statusCode}: ${ne.name}`)
}
}
})
@@ -155,13 +142,13 @@ export function makeApolloClient() {
return new ApolloClient({
cache: new InMemoryCache(apolloCacheConfig),
link: ApolloLink.from(links),
- connectToDevTools: process.env.NODE_ENV !== 'production',
+ devtools: { enabled: process.env.NODE_ENV !== 'production' },
})
// return new ApolloClient({
// ssrMode: typeof window === 'undefined',
// cache: new NextSSRInMemoryCache(),
// link: ApolloLink.from(links),
- // connectToDevTools: process.env.NODE_ENV !== 'production',
+ // devtools: { enabled: process.env.NODE_ENV !== 'production' },
// })
}
@@ -178,7 +165,7 @@ export function makeApolloClientWithCredentials() {
return new ApolloClient({
cache: new InMemoryCache(apolloCacheConfig),
link: ApolloLink.from(links),
- connectToDevTools: process.env.NODE_ENV !== 'production',
+ devtools: { enabled: process.env.NODE_ENV !== 'production' },
})
}
}
diff --git a/src/services/apollo-compat.ts b/src/services/apollo-compat.ts
new file mode 100644
index 00000000..c1c6c5a7
--- /dev/null
+++ b/src/services/apollo-compat.ts
@@ -0,0 +1,41 @@
+'use client'
+// Re-export everything from @apollo/client core and @apollo/client/react
+// Used by codegen to provide a single import path for both core types and React hooks
+export * from '@apollo/client'
+export {
+ useQuery,
+ useMutation,
+ useLazyQuery,
+ useSuspenseQuery,
+ useApolloClient,
+ skipToken,
+} from '@apollo/client/react'
+export type {
+ MutationResult,
+ MutationHookOptions,
+ QueryHookOptions,
+ QueryResult,
+ LazyQueryHookOptions,
+ SuspenseQueryHookOptions,
+ UseSuspenseQueryResult,
+ SkipToken,
+ MutationTuple,
+} from '@apollo/client/react'
+
+// Compat types for codegen - these were removed/moved in Apollo Client v4
+// MutationFunction is now useMutation.MutationFunction
+export type MutationFunction<
+ TData = unknown,
+ TVariables = Record,
+> = (
+ options?: { variables?: TVariables } & Record
+) => Promise<{ data?: TData | null }>
+
+// BaseMutationOptions was removed in v4
+export type BaseMutationOptions<
+ TData = unknown,
+ TVariables extends Record = Record,
+> = MutationHookOptions
+
+// Re-export MutationHookOptions to be used as BaseMutationOptions replacement
+import type { MutationHookOptions } from '@apollo/client/react'
diff --git a/src/services/apollo.server.ts b/src/services/apollo.server.ts
index e45b0349..4bc65ffe 100644
--- a/src/services/apollo.server.ts
+++ b/src/services/apollo.server.ts
@@ -1,6 +1,6 @@
import {
- ApolloError,
ApolloLink,
+ ServerError,
type OperationVariables,
type QueryOptions,
} from '@apollo/client'
@@ -26,15 +26,14 @@ export const getApolloServerClient = getClient
export function doApolloServerQuery<
TData,
TVariables extends OperationVariables = OperationVariables,
->(options: QueryOptions) {
+>(options: QueryOptions): Promise<{ data: TData }> {
return (
getApolloServerClient()
.query(options)
-
+ .then((result) => ({ data: result.data as TData }))
.catch((e: any) => {
- if (e instanceof ApolloError) {
-
- const statusCode = (e.cause as any)?.info?.code as number
+ if (e instanceof ServerError) {
+ const statusCode = e.statusCode
if (statusCode === 401) {
return redirect('/auth/auth-v4?clean=true')
}
diff --git a/src/utils/storage.ts b/src/utils/storage.ts
index f938281e..0ed23b19 100644
--- a/src/utils/storage.ts
+++ b/src/utils/storage.ts
@@ -14,7 +14,7 @@ import {
import { updateToken } from '../services/ajax'
import profile from './profile'
-export async function initParseFromLS(ac: ApolloClient