diff --git a/.eslintignore b/.eslintignore
deleted file mode 100644
index 194472db27..0000000000
--- a/.eslintignore
+++ /dev/null
@@ -1,8 +0,0 @@
-dist
-node_modules
-.pnpm-store
-@generated
-collection
-.next
-.eslintrc.js
-*.config.js
diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index cfaa4ccc7f..0000000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1,72 +0,0 @@
-/* eslint-disable @typescript-eslint/naming-convention */
-module.exports = {
- env: { node: true },
- root: true,
- parser: '@typescript-eslint/parser',
- parserOptions: {
- project: true,
- emitDecoratorMetadata: true,
- ecmaFeatures: {
- jsx: true
- }
- },
- plugins: ['@typescript-eslint'],
- extends: [
- 'eslint:recommended',
- 'plugin:@typescript-eslint/recommended',
- 'plugin:prettier/recommended'
- ],
- rules: {
- '@typescript-eslint/consistent-type-imports': 'warn',
- '@typescript-eslint/no-import-type-side-effects': 'error',
- '@typescript-eslint/no-inferrable-types': 'warn',
- 'func-style': ['error', 'expression'],
- 'no-restricted-imports': [
- 'error',
- {
- patterns: [
- {
- group: ['apps/*', 'libs/*'],
- message: 'Please import with path alias like `@apps/*` or `@libs/*`'
- }
- ]
- }
- ],
- 'object-shorthand': ['warn', 'always']
- },
- overrides: [
- {
- /* Do not apply `naming-convention` rule to tsx files */
- files: ['*.ts'],
- rules: {
- '@typescript-eslint/naming-convention': [
- 'error',
- {
- selector: 'default',
- format: ['camelCase'],
- leadingUnderscore: 'allow',
- trailingUnderscore: 'allow'
- },
- {
- selector: 'import',
- format: ['camelCase', 'PascalCase']
- },
- {
- selector: 'variable',
- format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
- leadingUnderscore: 'allow',
- trailingUnderscore: 'allow'
- },
- {
- selector: 'typeLike',
- format: ['PascalCase']
- },
- {
- selector: ['objectLiteralProperty', 'classProperty'],
- format: ['camelCase', 'PascalCase']
- }
- ]
- }
- }
- ]
-}
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a8cf727481..f5abd93603 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -129,8 +129,9 @@ jobs:
with:
install: 'no'
- - name: Install dev dependencies
- run: pnpm install --dev
+ # NOTE: eslint-config-next 에서 next 모듈을 찾지 못하는 에러를 해결하기 위해 프론트엔드 의존성을 설치합니다.
+ - name: Install root and frontend dependencies
+ run: pnpm install -w --filter frontend
- name: Set up Go
uses: actions/setup-go@v5
diff --git a/apps/frontend/.eslintrc.js b/apps/frontend/.eslintrc.js
deleted file mode 100644
index e8593ab767..0000000000
--- a/apps/frontend/.eslintrc.js
+++ /dev/null
@@ -1,45 +0,0 @@
-/* eslint-disable @typescript-eslint/no-var-requires */
-module.exports = {
- extends: ['next', 'next/core-web-vitals'],
- env: {
- browser: true,
- node: true
- },
- rules: {
- '@next/next/no-html-link-for-pages': [
- 'error',
- require('path').join(__dirname, 'app')
- ]
- },
- overrides: [
- {
- files: ['*.tsx'],
- excludedFiles: ['components/shadcn/*.tsx'],
- rules: {
- 'react/function-component-definition': [
- 'error',
- {
- namedComponents: 'function-declaration'
- }
- ],
- 'func-style': ['off'],
- 'no-restricted-imports': [
- 'error',
- {
- name: '@apollo/client',
- importNames: ['gql'],
- message: 'Please use @generated instead.'
- },
- {
- name: '@/__generated__',
- message: 'Please use @generated instead.'
- },
- {
- name: '@/__generated__/graphql',
- message: 'Please use @generated/graphql instead.'
- }
- ]
- }
- }
- ]
-}
diff --git a/apps/frontend/app/(client)/(code-editor)/_components/EditorLayout.tsx b/apps/frontend/app/(client)/(code-editor)/_components/EditorLayout.tsx
index 3cebdb21e0..f881289efb 100644
--- a/apps/frontend/app/(client)/(code-editor)/_components/EditorLayout.tsx
+++ b/apps/frontend/app/(client)/(code-editor)/_components/EditorLayout.tsx
@@ -40,7 +40,7 @@ export default async function EditorLayout({
problem = { ...contestProblem.problem, order: contestProblem.order }
contest = await fetcher(`contest/${contestId}`).json()
- contest ? (contest.status = 'ongoing') : null // TODO: refactor this after change status interactively
+ contest && (contest.status = 'ongoing') // TODO: refactor this after change status interactively
} else {
problem = await fetcher(`problem/${problemId}`).json()
}
diff --git a/apps/frontend/codegen.ts b/apps/frontend/codegen.ts
index e42a16ff7c..83530d9e78 100644
--- a/apps/frontend/codegen.ts
+++ b/apps/frontend/codegen.ts
@@ -6,7 +6,6 @@ const config: CodegenConfig = {
// this assumes that all your source files are in a top-level `src/` directory - you might need to adjust this to your file structure
documents: ['./**/*.{ts,tsx}'],
generates: {
- // eslint-disable-next-line @typescript-eslint/naming-convention
'./__generated__/': {
preset: 'client',
plugins: [],
diff --git a/apps/frontend/components/shadcn/calendar.tsx b/apps/frontend/components/shadcn/calendar.tsx
index 027aa89ca8..7db7558c70 100644
--- a/apps/frontend/components/shadcn/calendar.tsx
+++ b/apps/frontend/components/shadcn/calendar.tsx
@@ -60,10 +60,8 @@ export const Calendar = ({
...classNames
}}
components={{
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- IconLeft: ({ ...props }) => ,
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
- IconRight: ({ ...props }) =>
+ IconLeft: () => ,
+ IconRight: () =>
}}
{...props}
/>
diff --git a/apps/frontend/graphql/notice/queries.ts b/apps/frontend/graphql/notice/queries.ts
index 529246e4c2..6ff87900b5 100644
--- a/apps/frontend/graphql/notice/queries.ts
+++ b/apps/frontend/graphql/notice/queries.ts
@@ -1,4 +1,4 @@
-import { gql } from '@apollo/client'
+import { gql } from '@generated'
const GET_NOTICE = gql(`
query GetNotice($groupId: Int!, $noticeId: Int!) {
diff --git a/apps/frontend/next.config.js b/apps/frontend/next.config.js
index a4ae8a0cfb..94762490c5 100644
--- a/apps/frontend/next.config.js
+++ b/apps/frontend/next.config.js
@@ -1,6 +1,4 @@
-// eslint-disable-next-line @typescript-eslint/no-var-requires
const { withSentryConfig } = require('@sentry/nextjs')
-// eslint-disable-next-line @typescript-eslint/no-var-requires
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true'
})
diff --git a/apps/frontend/package.json b/apps/frontend/package.json
index fc8d2e9023..4c5f07415e 100644
--- a/apps/frontend/package.json
+++ b/apps/frontend/package.json
@@ -6,7 +6,7 @@
"dev": "next dev -p 5525",
"build": "pnpm run compile && next build",
"start": "next start --keepAliveTimeout 70000",
- "lint": "next lint",
+ "lint": "eslint .",
"compile": "graphql-codegen --require dotenv/config",
"test": "vitest"
},
@@ -106,7 +106,6 @@
"autoprefixer": "^10.4.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
- "eslint-config-next": "^14.2.22",
"jsdom": "^25.0.1",
"lucide-react": "^0.469.0",
"msw": "^2.7.0",
diff --git a/apps/frontend/tailwind.config.ts b/apps/frontend/tailwind.config.ts
index da53f92246..f5427763ab 100644
--- a/apps/frontend/tailwind.config.ts
+++ b/apps/frontend/tailwind.config.ts
@@ -1,4 +1,3 @@
-/* eslint-disable @typescript-eslint/naming-convention */
import typography from '@tailwindcss/typography'
import type { Config } from 'tailwindcss'
import animate from 'tailwindcss-animate'
diff --git a/apps/frontend/vitest.config.ts b/apps/frontend/vitest.config.ts
index 8f7a26bae0..3fe8077a18 100644
--- a/apps/frontend/vitest.config.ts
+++ b/apps/frontend/vitest.config.ts
@@ -8,9 +8,7 @@ export default defineConfig({
globals: true,
setupFiles: ['./vitest.setup.ts'],
env: {
- // eslint-disable-next-line @typescript-eslint/naming-convention
NEXT_PUBLIC_BASEURL: 'https://test.com/api',
- // eslint-disable-next-line @typescript-eslint/naming-convention
NEXTAUTH_URL: 'https://test.com/next-auth/api/auth'
}
},
diff --git a/eslint.config.mjs b/eslint.config.mjs
new file mode 100644
index 0000000000..abab3983ae
--- /dev/null
+++ b/eslint.config.mjs
@@ -0,0 +1,182 @@
+import { FlatCompat } from '@eslint/eslintrc'
+import eslintJS from '@eslint/js'
+import eslintPluginPrettier from 'eslint-plugin-prettier/recommended'
+import globals from 'globals'
+import path from 'node:path'
+import { fileURLToPath } from 'node:url'
+import eslintTS from 'typescript-eslint'
+
+const __filename = fileURLToPath(import.meta.url)
+const __dirname = path.dirname(__filename)
+const flatCompat = new FlatCompat({
+ baseDirectory: __dirname
+})
+
+export default eslintTS.config(
+ {
+ ignores: [
+ '**/dist',
+ '**/node_modules',
+ '**/.pnpm-store',
+ '**/__generated__',
+ '**/@generated',
+ '**/collection',
+ '**/.next',
+ '**/codegen.ts',
+ '**/*.config.{js,mjs,ts}'
+ ]
+ },
+
+ /* Common configuration */
+ eslintPluginPrettier,
+ eslintJS.configs.recommended,
+ ...eslintTS.configs.recommended,
+ {
+ plugins: {
+ '@typescript-eslint': eslintTS.plugin
+ },
+ languageOptions: {
+ parser: eslintTS.parser,
+ parserOptions: {
+ project: true,
+ emitDecoratorMetadata: true,
+ ecmaFeatures: {
+ jsx: true
+ }
+ },
+ globals: {
+ ...globals.node
+ }
+ },
+ rules: {
+ 'object-shorthand': ['warn', 'always'],
+ '@typescript-eslint/no-unused-vars': 'warn',
+ '@typescript-eslint/no-inferrable-types': 'warn',
+ '@typescript-eslint/consistent-type-imports': 'warn',
+ '@typescript-eslint/no-import-type-side-effects': 'error'
+ }
+ },
+ {
+ files: ['**/*.ts'],
+ rules: {
+ '@typescript-eslint/naming-convention': [
+ 'error',
+ {
+ selector: 'default',
+ format: ['camelCase'],
+ leadingUnderscore: 'allow',
+ trailingUnderscore: 'allow'
+ },
+ {
+ selector: 'import',
+ format: ['camelCase', 'PascalCase']
+ },
+ {
+ selector: 'typeLike',
+ format: ['PascalCase']
+ },
+ {
+ selector: 'variable',
+ format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
+ leadingUnderscore: 'allow',
+ trailingUnderscore: 'allow'
+ },
+ {
+ selector: ['objectLiteralProperty', 'classProperty'],
+ format: ['camelCase', 'PascalCase']
+ }
+ ]
+ }
+ },
+
+ /* Backend configuration */
+ {
+ files: ['apps/backend/**/*'],
+ rules: {
+ 'func-style': ['error', 'expression'],
+ 'no-restricted-imports': [
+ 'error',
+ {
+ patterns: [
+ {
+ group: ['apps/*', 'libs/*'],
+ message:
+ 'Please import with path alias like `@apps/*` or `@libs/*`'
+ }
+ ]
+ }
+ ]
+ }
+ },
+ {
+ files: ['apps/backend/**/*.spec.ts'],
+ languageOptions: {
+ globals: {
+ ...globals.mocha
+ }
+ },
+ rules: {
+ '@typescript-eslint/no-unused-expressions': 'off'
+ }
+ },
+
+ /* Frontend configuration */
+ ...flatCompat
+ .config({
+ extends: ['next/core-web-vitals']
+ })
+ .map((config) => ({
+ ...config,
+ files: ['apps/frontend/**/*']
+ })),
+ {
+ files: ['apps/frontend/**/*'],
+ languageOptions: {
+ globals: {
+ ...globals.browser
+ }
+ },
+ rules: {
+ '@next/next/no-html-link-for-pages': [
+ 'error',
+ path.join(__dirname, 'apps/frontend/app')
+ ],
+ 'no-restricted-imports': [
+ 'error',
+ {
+ name: '@apollo/client',
+ importNames: ['gql'],
+ message: 'Please use @generated instead.'
+ },
+ {
+ name: '@/__generated__',
+ message: 'Please use @generated instead.'
+ },
+ {
+ name: '@/__generated__/graphql',
+ message: 'Please use @generated/graphql instead.'
+ }
+ ],
+ '@typescript-eslint/no-empty-object-type': [
+ 'error',
+ { allowInterfaces: 'with-single-extends' }
+ ],
+ '@typescript-eslint/no-unused-expressions': [
+ 'error',
+ { allowShortCircuit: true, allowTernary: true }
+ ]
+ }
+ },
+ {
+ files: ['apps/frontend/**/*.tsx'],
+ ignores: ['apps/frontend/components/shadcn/*.tsx'],
+ rules: {
+ 'react/function-component-definition': [
+ 'error',
+ {
+ namedComponents: 'function-declaration'
+ }
+ ]
+ }
+ }
+)
diff --git a/knip.ts b/knip.config.ts
similarity index 96%
rename from knip.ts
rename to knip.config.ts
index 4b34c9d789..88d50f1850 100644
--- a/knip.ts
+++ b/knip.config.ts
@@ -1,4 +1,3 @@
-/* eslint-disable @typescript-eslint/naming-convention */
import type { KnipConfig } from 'knip'
const config: KnipConfig = {
diff --git a/package.json b/package.json
index e6283bbafe..dffb693d86 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "codedang",
"scripts": {
- "lint": "eslint . --ext .js,.ts,.tsx,.jsx",
+ "lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"init:storage": "ts-node scripts/init-storage.ts",
@@ -12,20 +12,22 @@
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
+ "@eslint/eslintrc": "^3.2.0",
+ "@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/recommended": "^1.0.8",
- "@typescript-eslint/eslint-plugin": "^7.18.0",
- "@typescript-eslint/parser": "^7.18.0",
- "eslint": "^8.57.1",
- "eslint-config-next": "^14.2.22",
+ "eslint": "^9.17.0",
+ "eslint-config-next": "^15.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
+ "globals": "^15.14.0",
"knip": "^5.41.1",
"lefthook": "^1.10.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"ts-node": "^10.9.2",
- "typescript": "5.7.2"
+ "typescript": "5.7.2",
+ "typescript-eslint": "^8.18.1"
},
"packageManager": "pnpm@9.15.2"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c27f2437ff..0df8e0018d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,43 +10,46 @@ importers:
devDependencies:
'@aws-sdk/client-s3':
specifier: ^3.722.0
- version: 3.723.0
+ version: 3.722.0
'@commitlint/cli':
specifier: ^19.6.1
- version: 19.6.1(@types/node@20.17.12)(typescript@5.7.2)
+ version: 19.6.1(@types/node@20.17.11)(typescript@5.7.2)
'@commitlint/config-conventional':
specifier: ^19.6.0
version: 19.6.0
'@commitlint/types':
specifier: ^19.5.0
version: 19.5.0
+ '@eslint/eslintrc':
+ specifier: ^3.2.0
+ version: 3.2.0
+ '@eslint/js':
+ specifier: ^9.17.0
+ version: 9.17.0
'@trivago/prettier-plugin-sort-imports':
specifier: ^4.3.0
version: 4.3.0(prettier@3.4.2)
'@tsconfig/recommended':
specifier: ^1.0.8
version: 1.0.8
- '@typescript-eslint/eslint-plugin':
- specifier: ^7.18.0
- version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/parser':
- specifier: ^7.18.0
- version: 7.18.0(eslint@8.57.1)(typescript@5.7.2)
eslint:
- specifier: ^8.57.1
- version: 8.57.1
+ specifier: ^9.17.0
+ version: 9.17.0(jiti@2.4.2)
eslint-config-next:
- specifier: ^14.2.22
- version: 14.2.23(eslint@8.57.1)(typescript@5.7.2)
+ specifier: ^15.1.2
+ version: 15.1.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
eslint-config-prettier:
specifier: ^9.1.0
- version: 9.1.0(eslint@8.57.1)
+ version: 9.1.0(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-prettier:
specifier: ^5.2.1
- version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.2)
+ version: 5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2)
+ globals:
+ specifier: ^15.14.0
+ version: 15.14.0
knip:
specifier: ^5.41.1
- version: 5.41.1(@types/node@20.17.12)(typescript@5.7.2)
+ version: 5.41.1(@types/node@20.17.11)(typescript@5.7.2)
lefthook:
specifier: ^1.10.1
version: 1.10.1
@@ -58,10 +61,13 @@ importers:
version: 0.6.9(@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.4.2))(prettier@3.4.2)
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)
+ version: 10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)
typescript:
specifier: 5.7.2
version: 5.7.2
+ typescript-eslint:
+ specifier: ^8.18.1
+ version: 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
apps/backend:
dependencies:
@@ -70,13 +76,13 @@ importers:
version: 4.11.3(graphql@16.10.0)
'@aws-sdk/client-s3':
specifier: ^3.722.0
- version: 3.723.0
+ version: 3.722.0
'@aws-sdk/client-ses':
specifier: ^3.721.0
- version: 3.723.0
+ version: 3.721.0
'@aws-sdk/credential-provider-node':
specifier: ^3.721.0
- version: 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)
+ version: 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)
'@golevelup/nestjs-rabbitmq':
specifier: ^5.6.1
version: 5.6.1(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(reflect-metadata@0.2.2)(rxjs@7.8.1)
@@ -127,7 +133,7 @@ importers:
version: 0.57.0(@opentelemetry/api@1.9.0)
'@opentelemetry/host-metrics':
specifier: ^0.35.4
- version: 0.35.5(@opentelemetry/api@1.9.0)
+ version: 0.35.4(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation-express':
specifier: ^0.47.0
version: 0.47.0(@opentelemetry/api@1.9.0)
@@ -244,7 +250,7 @@ importers:
version: 7.8.1
sql-formatter:
specifier: ^15.4.8
- version: 15.4.9
+ version: 15.4.8
zod:
specifier: ^3.24.1
version: 3.24.1
@@ -257,7 +263,7 @@ importers:
version: 1.0.2(nyc@17.1.0)
'@nestjs/cli':
specifier: ^10.4.9
- version: 10.4.9(@swc/cli@0.5.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(chokidar@3.6.0))(@swc/core@1.10.6(@swc/helpers@0.5.15))
+ version: 10.4.9(@swc/cli@0.5.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(chokidar@3.6.0))(@swc/core@1.10.4(@swc/helpers@0.5.13))
'@nestjs/schematics':
specifier: ^10.2.3
version: 10.2.3(chokidar@3.6.0)(typescript@5.7.2)
@@ -266,13 +272,13 @@ importers:
version: 10.4.15(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(@nestjs/platform-express@10.4.15)
'@swc-node/register':
specifier: ^1.10.9
- version: 1.10.9(@swc/core@1.10.6(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.2)
+ version: 1.10.9(@swc/core@1.10.4(@swc/helpers@0.5.13))(@swc/types@0.1.17)(typescript@5.7.2)
'@swc/cli':
specifier: ^0.5.2
- version: 0.5.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(chokidar@3.6.0)
+ version: 0.5.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(chokidar@3.6.0)
'@swc/core':
specifier: ^1.10.4
- version: 1.10.6(@swc/helpers@0.5.15)
+ version: 1.10.4(@swc/helpers@0.5.13)
'@types/cache-manager':
specifier: ^4.0.6
version: 4.0.6
@@ -293,7 +299,7 @@ importers:
version: 10.0.10
'@types/node':
specifier: ^20.17.11
- version: 20.17.12
+ version: 20.17.11
'@types/nodemailer':
specifier: ^6.4.17
version: 6.4.17
@@ -335,16 +341,16 @@ importers:
version: 0.5.21
swc-loader:
specifier: ^0.2.6
- version: 0.2.6(@swc/core@1.10.6(@swc/helpers@0.5.15))(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))
+ version: 0.2.6(@swc/core@1.10.4(@swc/helpers@0.5.13))(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))
swc-node:
specifier: ^1.0.0
- version: 1.0.0(@swc/core@1.10.6(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.2)
+ version: 1.0.0(@swc/core@1.10.4(@swc/helpers@0.5.13))(@swc/types@0.1.17)(typescript@5.7.2)
ts-loader:
specifier: ^9.5.1
- version: 9.5.1(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))
+ version: 9.5.1(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))
ts-node:
specifier: ^10.9.2
- version: 10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)
+ version: 10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)
tsconfig-paths:
specifier: ^4.2.0
version: 4.2.0
@@ -365,7 +371,7 @@ importers:
version: 6.0.1
'@codemirror/lang-python':
specifier: ^6.1.6
- version: 6.1.6
+ version: 6.1.6(@codemirror/view@6.36.1)
'@codemirror/state':
specifier: ^6.5.0
version: 6.5.0
@@ -377,7 +383,7 @@ importers:
version: 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@hookform/resolvers':
specifier: ^3.9.1
- version: 3.10.0(react-hook-form@7.54.2(react@18.3.1))
+ version: 3.9.1(react-hook-form@7.54.2(react@18.3.1))
'@lezer/highlight':
specifier: ^1.2.1
version: 1.2.1
@@ -386,10 +392,10 @@ importers:
version: 3.1.3(katex@0.16.19)(react@18.3.1)
'@monaco-editor/react':
specifier: ^4.6.0
- version: 4.6.0(monaco-editor@0.52.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 4.6.0(monaco-editor@0.52.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@next/bundle-analyzer':
specifier: ^14.2.22
- version: 14.2.23
+ version: 14.2.22
'@playwright/test':
specifier: ^1.49.1
version: 1.49.1
@@ -446,16 +452,16 @@ importers:
version: 1.1.6(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@sentry/nextjs':
specifier: ^8.47.0
- version: 8.48.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(next@14.2.22(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))
+ version: 8.47.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(next@14.2.22(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))
'@suspensive/react':
specifier: ^2.18.10
version: 2.18.10(react@18.3.1)
'@tailwindcss/typography':
specifier: ^0.5.15
- version: 0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)))
+ version: 0.5.15(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)))
'@tanstack/react-query':
specifier: ^5.59.20
- version: 5.62.16(react@18.3.1)
+ version: 5.62.14(react@18.3.1)
'@tanstack/react-table':
specifier: ^8.20.5
version: 8.20.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -482,13 +488,13 @@ importers:
version: 2.11.0
'@uiw/codemirror-extensions-langs':
specifier: ^4.23.7
- version: 4.23.7(@codemirror/autocomplete@6.18.4)(@codemirror/language-data@6.5.1)(@codemirror/language@6.10.8)(@codemirror/legacy-modes@6.4.2)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.21)(@lezer/lr@1.4.2)
+ version: 4.23.7(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language-data@6.5.1(@codemirror/view@6.36.1))(@codemirror/language@6.10.8)(@codemirror/legacy-modes@6.4.2)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.19)(@lezer/lr@1.4.2)
'@uiw/codemirror-themes':
specifier: ^4.23.7
version: 4.23.7(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)
'@uiw/react-codemirror':
specifier: ^4.23.7
- version: 4.23.7(@babel/runtime@7.26.0)(@codemirror/autocomplete@6.18.4)(@codemirror/language@6.10.8)(@codemirror/lint@6.8.4)(@codemirror/search@6.5.8)(@codemirror/state@6.5.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.36.1)(codemirror@6.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 4.23.7(@babel/runtime@7.26.0)(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language@6.10.8)(@codemirror/lint@6.8.2)(@codemirror/search@6.5.7)(@codemirror/state@6.5.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.36.1)(codemirror@6.0.1(@lezer/common@1.2.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
apollo-upload-client:
specifier: ^18.0.1
version: 18.0.1(@apollo/client@3.12.4(@types/react@18.3.18)(graphql-ws@5.16.0(graphql@16.10.0))(graphql@16.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.10.0)))(graphql@16.10.0)
@@ -509,7 +515,7 @@ importers:
version: 8.5.1(react@18.3.1)
framer-motion:
specifier: ^11.15.0
- version: 11.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 11.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
graphql:
specifier: ^16.10.0
version: 16.10.0
@@ -581,14 +587,14 @@ importers:
version: 3.24.1
zustand:
specifier: ^4.5.5
- version: 4.5.6(@types/react@18.3.18)(react@18.3.1)
+ version: 4.5.5(@types/react@18.3.18)(react@18.3.1)
devDependencies:
'@codemirror/language':
specifier: ^6.10.8
version: 6.10.8
'@graphql-codegen/cli':
specifier: ^5.0.3
- version: 5.0.3(@types/node@20.17.12)(graphql@16.10.0)(typescript@5.7.2)
+ version: 5.0.3(@types/node@20.17.11)(graphql@16.10.0)(typescript@5.7.2)
'@graphql-codegen/client-preset':
specifier: ^4.5.1
version: 4.5.1(graphql@16.10.0)
@@ -597,7 +603,7 @@ importers:
version: 3.2.0(graphql@16.10.0)
'@tanstack/react-query-devtools':
specifier: ^5.62.14
- version: 5.62.16(@tanstack/react-query@5.62.16(react@18.3.1))(react@18.3.1)
+ version: 5.62.14(@tanstack/react-query@5.62.14(react@18.3.1))(react@18.3.1)
'@testing-library/react':
specifier: ^16.1.0
version: 16.1.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -609,7 +615,7 @@ importers:
version: 0.16.7
'@types/node':
specifier: ^20.17.11
- version: 20.17.12
+ version: 20.17.11
'@types/react':
specifier: ^18.3.18
version: 18.3.18
@@ -624,7 +630,7 @@ importers:
version: 18.3.5(@types/react@18.3.18)
'@vitejs/plugin-react':
specifier: ^4.3.4
- version: 4.3.4(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))
+ version: 4.3.4(vite@5.4.10(@types/node@20.17.11)(terser@5.36.0))
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.4.49)
@@ -634,9 +640,6 @@ importers:
clsx:
specifier: ^2.1.1
version: 2.1.1
- eslint-config-next:
- specifier: ^14.2.22
- version: 14.2.23(eslint@8.57.1)(typescript@5.7.2)
jsdom:
specifier: ^25.0.1
version: 25.0.1
@@ -645,7 +648,7 @@ importers:
version: 0.469.0(react@18.3.1)
msw:
specifier: ^2.7.0
- version: 2.7.0(@types/node@20.17.12)(typescript@5.7.2)
+ version: 2.7.0(@types/node@20.17.11)(typescript@5.7.2)
postcss:
specifier: ^8.4.49
version: 8.4.49
@@ -654,16 +657,16 @@ importers:
version: 2.6.0
tailwindcss:
specifier: ^3.4.17
- version: 3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2))
+ version: 3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2))
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)))
+ version: 1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)))
typescript:
specifier: 5.7.2
version: 5.7.2
vitest:
specifier: ^2.1.8
- version: 2.1.8(@types/node@20.17.12)(jsdom@25.0.1)(msw@2.7.0(@types/node@20.17.12)(typescript@5.7.2))(terser@5.37.0)
+ version: 2.1.8(@types/node@20.17.11)(jsdom@25.0.1)(msw@2.7.0(@types/node@20.17.11)(typescript@5.7.2))(terser@5.36.0)
packages:
@@ -841,156 +844,156 @@ packages:
'@aws-crypto/util@5.2.0':
resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==}
- '@aws-sdk/client-s3@3.723.0':
- resolution: {integrity: sha512-uJkSBWeAbEORApCSc8ZlD8nmmJVZnklauSR+GLnG19ZiHQl3ib6IzT4zdnMHrrIXqVttwkyC8eT703ZUDVaacw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-s3@3.722.0':
+ resolution: {integrity: sha512-FttdkB39TKjqEITfZJcs6Ihh6alICsNEne0ouLvh8re+gAuTK96zWcfX22mP5ap1QEsATaOGRNsMnyfsDSM0zw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/client-ses@3.723.0':
- resolution: {integrity: sha512-RzOvNyLWiJePyeYionzNxTmNm83yj+6cnQPbAjN78+UdzZxvMa/tG/m+KK3Vy5ZHWyWqKLMC8UZMWJ+LVVSJmg==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-ses@3.721.0':
+ resolution: {integrity: sha512-JWHVQm0JH1fsyXxHH+oIXgMacnJ25NrQY3zfBDikBSW/sM1xdgctBjc1o+tLyHIKe+iS3cIAkWwSohZG0dPEdw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/client-sso-oidc@3.723.0':
- resolution: {integrity: sha512-9IH90m4bnHogBctVna2FnXaIGVORncfdxcqeEIovOxjIJJyHDmEAtA7B91dAM4sruddTbVzOYnqfPVst3odCbA==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-sso-oidc@3.721.0':
+ resolution: {integrity: sha512-jwsgdUEbNJqs1O0AQtf9M6SI7hFIjxH+IKeKCMca0xVt+Tr1UqLr/qMK/6W8LoMtRFnE0lpBSHW6hvmLp2OCoQ==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.723.0
+ '@aws-sdk/client-sts': ^3.721.0
- '@aws-sdk/client-sso@3.723.0':
- resolution: {integrity: sha512-r1ddZDb8yPmdofX1gQ4m8oqKozgkgVONLlAuSprGObbyMy8bYt1Psxu+GjnwMmgVu3vlF069PHyW1ndrBiL1zA==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-sso@3.721.0':
+ resolution: {integrity: sha512-UrYAF4ilpO2cZBFddQmbETfo0xKP3CEcantcMQTc0xPY3quHLZhYuBiRae+McWi6yZpH4ErnFZIWeKSJ2OQgqQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/client-sts@3.723.0':
- resolution: {integrity: sha512-YyN8x4MI/jMb4LpHsLf+VYqvbColMK8aZeGWVk2fTFsmt8lpTYGaGC1yybSwGX42mZ4W8ucu8SAYSbUraJZEjA==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-sts@3.721.0':
+ resolution: {integrity: sha512-1Pv8F02hQFmPZs7WtGfQNlnInbG1lLzyngJc/MlZ3Ld2fIoWjaWp7bJWgYAjnzHNEuDtCabWJvIfePdRqsbYoA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/core@3.723.0':
- resolution: {integrity: sha512-UraXNmvqj3vScSsTkjMwQkhei30BhXlW5WxX6JacMKVtl95c7z0qOXquTWeTalYkFfulfdirUhvSZrl+hcyqTw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/core@3.716.0':
+ resolution: {integrity: sha512-5DkUiTrbyzO8/W4g7UFEqRFpuhgizayHI/Zbh0wtFMcot8801nJV+MP/YMhdjimlvAr/OqYB08FbGsPyWppMTw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-env@3.723.0':
- resolution: {integrity: sha512-OuH2yULYUHTVDUotBoP/9AEUIJPn81GQ/YBtZLoo2QyezRJ2QiO/1epVtbJlhNZRwXrToLEDmQGA2QfC8c7pbA==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-env@3.716.0':
+ resolution: {integrity: sha512-JI2KQUnn2arICwP9F3CnqP1W3nAbm4+meQg/yOhp9X0DMzQiHrHRd4HIrK2vyVgi2/6hGhONY5uLF26yRTA7nQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-http@3.723.0':
- resolution: {integrity: sha512-DTsKC6xo/kz/ZSs1IcdbQMTgiYbpGTGEd83kngFc1bzmw7AmK92DBZKNZpumf8R/UfSpTcj9zzUUmrWz1kD0eQ==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-http@3.716.0':
+ resolution: {integrity: sha512-CZ04pl2z7igQPysQyH2xKZHM3fLwkemxQbKOlje3TmiS1NwXvcKvERhp9PE/H23kOL7beTM19NMRog/Fka/rlw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-ini@3.723.0':
- resolution: {integrity: sha512-fWRLksuSG851e7Iu+ltMrQTM7C/5iI9OkxAmCYblcCetAzjTRmMB2arku0Z83D8edIZEQtOJMt5oQ9KNg43pzg==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-ini@3.721.0':
+ resolution: {integrity: sha512-8J/c2rI+4ZoduBCnPurfdblqs2DyRvL9ztqzzOWWEhLccoYZzYeAMwBapEAsiVsD1iNrIGY7LRDC4TsVmJBf6Q==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.723.0
+ '@aws-sdk/client-sts': ^3.721.0
- '@aws-sdk/credential-provider-node@3.723.0':
- resolution: {integrity: sha512-OyLHt+aY+rkuRejigcxviS5RLUBcqbxhDTSNfP8dp9I+1SP610qRLpTIROvtKwXZssFcATpPfgikFtVYRrihXQ==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-node@3.721.0':
+ resolution: {integrity: sha512-D6xodzdMjVhF9xRhy9gNf0gqP0Dek9fQ6BDZzqO/i54d7CjWHVZTADcVcxjLQq6nyUNf0QPf8UXLaqi+w25GGQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-process@3.723.0':
- resolution: {integrity: sha512-fgupvUjz1+jeoCBA7GMv0L6xEk92IN6VdF4YcFhsgRHlHvNgm7ayaoKQg7pz2JAAhG/3jPX6fp0ASNy+xOhmPA==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-process@3.716.0':
+ resolution: {integrity: sha512-0spcu2MWVVHSTHH3WE2E//ttUJPwXRM3BCp+WyI41xLzpNu1Fd8zjOrDpEo0SnGUzsSiRTIJWgkuu/tqv9NJ2A==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-sso@3.723.0':
- resolution: {integrity: sha512-laCnxrk0pgUegU+ib6rj1/Uv51wei+cH8crvBJddybc8EDn7Qht61tCvBwf3o33qUDC+ZWZZewlpSebf+J+tBw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-sso@3.721.0':
+ resolution: {integrity: sha512-v7npnYqfuY1vdcb0/F4Mcz+mcFyZaYry9qXhSRCPIbLPe2PRV4E4HXIaPKmir8PhuRLEGs0QJWhvIWr7u6holQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/credential-provider-web-identity@3.723.0':
- resolution: {integrity: sha512-tl7pojbFbr3qLcOE6xWaNCf1zEfZrIdSJtOPeSXfV/thFMMAvIjgf3YN6Zo1a6cxGee8zrV/C8PgOH33n+Ev/A==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-web-identity@3.716.0':
+ resolution: {integrity: sha512-vzgpWKs2gGXZGdbMKRFrMW4PqEFWkGvwWH2T7ZwQv9m+8lQ7P4Dk2uimqu0f37HZAbpn8HFMqRh4CaySjU354A==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sts': ^3.723.0
+ '@aws-sdk/client-sts': ^3.716.0
- '@aws-sdk/middleware-bucket-endpoint@3.723.0':
- resolution: {integrity: sha512-OmKSXwSlXyW+zg+xq4hUf7V4VF5/fa4LHu1JzeBlomrKX3/NnqhnJn7760GXoDr16AT+dP7nvv35Ofp91umEAg==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-bucket-endpoint@3.721.0':
+ resolution: {integrity: sha512-5UyoDoX3z3UhmetoqqqZulq2uF55Jyj9lUKAJWgTxVhDEG5TijTQS40LP9DqwRl0hJkoUUZKAwE0hwnUsiGXAg==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-expect-continue@3.723.0':
- resolution: {integrity: sha512-w/O0EkIzkiqvGu7U8Ke7tue0V0HYM5dZQrz6nVU+R8T2LddWJ+njEIHU4Wh8aHPLQXdZA5NQumv0xLPdEutykw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-expect-continue@3.714.0':
+ resolution: {integrity: sha512-rlzsXdG8Lzo4Qpl35ZnpOBAWlzvDHpP9++0AXoUwAJA0QmMm7auIRmgxJuNj91VwT9h15ZU6xjU4S7fJl4W0+w==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-flexible-checksums@3.723.0':
- resolution: {integrity: sha512-JY76mrUCLa0FHeMZp8X9+KK6uEuZaRZaQrlgq6zkXX/3udukH0T3YdFC+Y9uw5ddbiwZ5+KwgmlhnPpiXKfP4g==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-flexible-checksums@3.717.0':
+ resolution: {integrity: sha512-a5kY5r7/7bDZZlOQQGWOR1ulQewdtNexdW1Ex5DD0FLKlFY7RD0va24hxQ6BP7mWHol+Dx4pj6UQ8ahk0ap1tw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-host-header@3.723.0':
- resolution: {integrity: sha512-LLVzLvk299pd7v4jN9yOSaWDZDfH0SnBPb6q+FDPaOCMGBY8kuwQso7e/ozIKSmZHRMGO3IZrflasHM+rI+2YQ==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-host-header@3.714.0':
+ resolution: {integrity: sha512-6l68kjNrh5QC8FGX3I3geBDavWN5Tg1RLHJ2HLA8ByGBtJyCwnz3hEkKfaxn0bBx0hF9DzbfjEOUF6cDqy2Kjg==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-location-constraint@3.723.0':
- resolution: {integrity: sha512-inp9tyrdRWjGOMu1rzli8i2gTo0P4X6L7nNRXNTKfyPNZcBimZ4H0H1B671JofSI5isaklVy5r4pvv2VjjLSHw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-location-constraint@3.714.0':
+ resolution: {integrity: sha512-MX7M+V+FblujKck3fyuzePVIAy9530gY719IiSxV6uN1qLHl7VDJxNblpF/KpXakD6rOg8OpvtmqsXj9aBMftw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-logger@3.723.0':
- resolution: {integrity: sha512-chASQfDG5NJ8s5smydOEnNK7N0gDMyuPbx7dYYcm1t/PKtnVfvWF+DHCTrRC2Ej76gLJVCVizlAJKM8v8Kg3cg==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-logger@3.714.0':
+ resolution: {integrity: sha512-RkqHlMvQWUaRklU1bMfUuBvdWwxgUtEqpADaHXlGVj3vtEY2UgBjy+57CveC4MByqKIunNvVHBBbjrGVtwY7Lg==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-recursion-detection@3.723.0':
- resolution: {integrity: sha512-7usZMtoynT9/jxL/rkuDOFQ0C2mhXl4yCm67Rg7GNTstl67u7w5WN1aIRImMeztaKlw8ExjoTyo6WTs1Kceh7A==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-recursion-detection@3.714.0':
+ resolution: {integrity: sha512-AVU5ixnh93nqtsfgNc284oXsXaadyHGPHpql/jwgaaqQfEXjS/1/j3j9E/vpacfTTz2Vzo7hAOjnvrOXSEVDaA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-sdk-s3@3.723.0':
- resolution: {integrity: sha512-wfjOvNJVp8LDWhq4wO5jtSMb8Vgf4tNlR7QTEQfoYc6AGU3WlK5xyUQcpfcpwytEhQTN9u0cJLQpSyXDO+qSCw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-sdk-s3@3.716.0':
+ resolution: {integrity: sha512-Qzz5OfRA/5brqfvq+JHTInwS1EuJ1+tC6qMtwKWJN3czMnVJVdnnsPTf+G5IM/1yYaGEIjY8rC1ExQLcc8ApFQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-ssec@3.723.0':
- resolution: {integrity: sha512-Bs+8RAeSMik6ZYCGSDJzJieGsDDh2fRbh1HQG94T8kpwBXVxMYihm6e9Xp2cyl+w9fyyCnh0IdCKChP/DvrdhA==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-ssec@3.714.0':
+ resolution: {integrity: sha512-RkK8REAVwNUQmYbIDRw8eYbMJ8F1Rw4C9mlME4BBMhFlelGcD3ErU2ce24moQbDxBjNwHNESmIqgmdQk93CDCQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/middleware-user-agent@3.723.0':
- resolution: {integrity: sha512-AY5H2vD3IRElplBO4DCyRMNnOG/4/cb0tsHyLe1HJy0hdUF6eY5z/VVjKJoKbbDk7ui9euyOBWslXxDyLmyPWg==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-user-agent@3.721.0':
+ resolution: {integrity: sha512-Z3Vksb970ArsfLlARW4KVpqO+pQ1cvvGTrTQPxWDsmOzg1kU92t9oWXGW+1M/x6bHbMQlI/EulQ/D8ZE/Pu46Q==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/region-config-resolver@3.723.0':
- resolution: {integrity: sha512-tGF/Cvch3uQjZIj34LY2mg8M2Dr4kYG8VU8Yd0dFnB1ybOEOveIK/9ypUo9ycZpB9oO6q01KRe5ijBaxNueUQg==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/region-config-resolver@3.714.0':
+ resolution: {integrity: sha512-HJzsQxgMOAzZrbf/YIqEx30or4tZK1oNAk6Wm6xecUQx+23JXIaePRu1YFUOLBBERQ4QBPpISFurZWBMZ5ibAw==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/signature-v4-multi-region@3.723.0':
- resolution: {integrity: sha512-lJlVAa5Sl589qO8lwMLVUtnlF1Q7I+6k1Iomv2goY9d1bRl4q2N5Pit2qJVr2AMW0sceQXeh23i2a/CKOqVAdg==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/signature-v4-multi-region@3.716.0':
+ resolution: {integrity: sha512-k0goWotZKKz+kV6Ln0qeAMSeSVi4NipuIIz5R8A0uCF2zBK4CXWdZR7KeaIoLBhJwQnHj1UU7E+2MK74KIUBzA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/token-providers@3.723.0':
- resolution: {integrity: sha512-hniWi1x4JHVwKElANh9afKIMUhAutHVBRD8zo6usr0PAoj+Waf220+1ULS74GXtLXAPCiNXl5Og+PHA7xT8ElQ==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/token-providers@3.721.0':
+ resolution: {integrity: sha512-cIZmKdLeEWUzPR+2lA+JcZHPvaFf/Ih+s3LXBa/uQwRFdK+o7WfGRf7Oqe6yLRekO2jJJl4LBJXxDOH++M9+ag==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
- '@aws-sdk/client-sso-oidc': ^3.723.0
+ '@aws-sdk/client-sso-oidc': ^3.721.0
- '@aws-sdk/types@3.723.0':
- resolution: {integrity: sha512-LmK3kwiMZG1y5g3LGihT9mNkeNOmwEyPk6HGcJqh0wOSV4QpWoKu2epyKE4MLQNUUlz2kOVbVbOrwmI6ZcteuA==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/types@3.714.0':
+ resolution: {integrity: sha512-ZjpP2gYbSFlxxaUDa1Il5AVvfggvUPbjzzB/l3q0gIE5Thd6xKW+yzEpt2mLZ5s5UaYSABZbF94g8NUOF4CVGA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-arn-parser@3.723.0':
- resolution: {integrity: sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-arn-parser@3.693.0':
+ resolution: {integrity: sha512-WC8x6ca+NRrtpAH64rWu+ryDZI3HuLwlEr8EU6/dbC/pt+r/zC0PBoC15VEygUaBA+isppCikQpGyEDu0Yj7gQ==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-endpoints@3.723.0':
- resolution: {integrity: sha512-vR1ZfAUvrTtdA1Q78QxgR8TFgi2gzk+N4EmNjbyR5hHmeOXuaKRdhbNQAzLPYVe1aNUpoiy9cl8mWkg9SrNHBw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-endpoints@3.714.0':
+ resolution: {integrity: sha512-Xv+Z2lhe7w7ZZRsgBwBMZgGTVmS+dkkj2S13uNHAx9lhB5ovM8PhK5G/j28xYf6vIibeuHkRAbb7/ozdZIGR+A==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-locate-window@3.723.0':
- resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-locate-window@3.679.0':
+ resolution: {integrity: sha512-zKTd48/ZWrCplkXpYDABI74rQlbR0DNHs8nH95htfSLj9/mWRSwaGptoxwcihaq/77vi/fl2X3y0a1Bo8bt7RA==}
+ engines: {node: '>=16.0.0'}
- '@aws-sdk/util-user-agent-browser@3.723.0':
- resolution: {integrity: sha512-Wh9I6j2jLhNFq6fmXydIpqD1WyQLyTfSxjW9B+PXSnPyk3jtQW8AKQur7p97rO8LAUzVI0bv8kb3ZzDEVbquIg==}
+ '@aws-sdk/util-user-agent-browser@3.714.0':
+ resolution: {integrity: sha512-OdJJ03cP9/MgIVToPJPCPUImbpZzTcwdIgbXC0tUQPJhbD7b7cB4LdnkhNHko+MptpOrCq4CPY/33EpOjRdofw==}
- '@aws-sdk/util-user-agent-node@3.723.0':
- resolution: {integrity: sha512-uCtW5sGq8jCwA9w57TvVRIwNnPbSDD1lJaTIgotf7Jit2bTrYR64thgMy/drL5yU5aHOdFIQljqn/5aDXLtTJw==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-user-agent-node@3.721.0':
+ resolution: {integrity: sha512-5VsNdC3zQnjrt7KNEeFHWJl3FIamgIS0puG18BMvPsdzcKWEbWDih+yd1kMWrcpAu1Riez9co/gB9y99pBghDA==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
aws-crt: '>=1.0.0'
peerDependenciesMeta:
aws-crt:
optional: true
- '@aws-sdk/xml-builder@3.723.0':
- resolution: {integrity: sha512-5xK2SqGU1mzzsOeemy7cy3fGKxR1sEpUs4pEiIjaT0OIvU+fZaDVUEYWOqsgns6wI90XZEQJlXtI8uAHX/do5Q==}
- engines: {node: '>=18.0.0'}
+ '@aws-sdk/xml-builder@3.709.0':
+ resolution: {integrity: sha512-2GPCwlNxeHspoK/Mc8nbk9cBOkSpp3j2SJUQmFnyQK6V/pR6II2oPRyZkMomug1Rc10hqlBHByMecq4zhV2uUw==}
+ engines: {node: '>=16.0.0'}
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.3':
- resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
+ '@babel/compat-data@7.26.2':
+ resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.26.0':
@@ -1001,8 +1004,8 @@ packages:
resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.3':
- resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
+ '@babel/generator@7.26.2':
+ resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.9':
@@ -1059,6 +1062,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-simple-access@7.25.9':
+ resolution: {integrity: sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
@@ -1083,8 +1090,8 @@ packages:
resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.3':
- resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
+ '@babel/parser@7.26.2':
+ resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -1196,8 +1203,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.26.3':
- resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
+ '@babel/plugin-transform-modules-commonjs@7.25.9':
+ resolution: {integrity: sha512-dwh2Ol1jWwL2MgkCzUSOvfmKElqQcuswAZypBSUsScMXvgdT8Ekq5YA6TtqpTVWH+4903NmboMuH1o9i8Rxlyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1274,16 +1281,16 @@ packages:
resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.4':
- resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
+ '@babel/traverse@7.25.9':
+ resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
engines: {node: '>=6.9.0'}
'@babel/types@7.17.0':
resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.3':
- resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
+ '@babel/types@7.26.0':
+ resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
engines: {node: '>=6.9.0'}
'@bundled-es-modules/cookie@2.0.1':
@@ -1295,8 +1302,13 @@ packages:
'@bundled-es-modules/tough-cookie@0.1.6':
resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==}
- '@codemirror/autocomplete@6.18.4':
- resolution: {integrity: sha512-sFAphGQIqyQZfP2ZBsSHV7xQvo9Py0rV0dW7W3IMRdS+zDuNb2l3no78CvUaWKGfzFjI4FTrLdUSj86IGb2hRA==}
+ '@codemirror/autocomplete@6.18.2':
+ resolution: {integrity: sha512-wJGylKtMFR/Ds6Gh01+OovXE/pncPiKZNNBKuC39pKnH+XK5d9+WsNqcrdxPjFPFTigRBqse0rfxw9UxrfyhPg==}
+ peerDependencies:
+ '@codemirror/language': ^6.0.0
+ '@codemirror/state': ^6.0.0
+ '@codemirror/view': ^6.0.0
+ '@lezer/common': ^1.0.0
'@codemirror/commands@6.7.1':
resolution: {integrity: sha512-llTrboQYw5H4THfhN4U3qCnSZ1SOJ60ohhz+SzU0ADGtwlc533DtklQP0vSFaQuCPDn3BPpOd1GbbnUtwNjsrw==}
@@ -1307,8 +1319,8 @@ packages:
'@codemirror/lang-cpp@6.0.2':
resolution: {integrity: sha512-6oYEYUKHvrnacXxWxYa6t4puTlbN3dgV662BDfSH8+MfjQjVmP697/KYTDOqpxgerkvoNm7q5wlFMBeX8ZMocg==}
- '@codemirror/lang-css@6.3.1':
- resolution: {integrity: sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==}
+ '@codemirror/lang-css@6.3.0':
+ resolution: {integrity: sha512-CyR4rUNG9OYcXDZwMPvJdtb6PHbBDKUc/6Na2BIwZ6dKab1JQqKa4di+RNRY9Myn7JB81vayKwJeQ7jEdmNVDA==}
'@codemirror/lang-go@6.0.1':
resolution: {integrity: sha512-7fNvbyNylvqCphW9HD6WFnRpcDjr+KXX/FgqXy5H5ZS0eC5edDljukm/yNgYkwTsgp2busdod50AOTIy6Jikfg==}
@@ -1331,11 +1343,11 @@ packages:
'@codemirror/lang-lezer@6.0.1':
resolution: {integrity: sha512-WHwjI7OqKFBEfkunohweqA5B/jIlxaZso6Nl3weVckz8EafYbPZldQEKSDb4QQ9H9BUkle4PVELP4sftKoA0uQ==}
- '@codemirror/lang-liquid@6.2.2':
- resolution: {integrity: sha512-7Dm841fk37+JQW6j2rI1/uGkJyESrjzyhiIkaLjbbR0U6aFFQvMrJn35WxQreRMADMhzkyVkZM4467OR7GR8nQ==}
+ '@codemirror/lang-liquid@6.2.1':
+ resolution: {integrity: sha512-J1Mratcm6JLNEiX+U2OlCDTysGuwbHD76XwuL5o5bo9soJtSbz2g6RU3vGHFyS5DC8rgVmFSzi7i6oBftm7tnA==}
- '@codemirror/lang-markdown@6.3.1':
- resolution: {integrity: sha512-y3sSPuQjBKZQbQwe3ZJKrSW6Silyl9PnrU/Mf0m2OQgIlPoSYTtOvEL7xs94SVMkb8f4x+SQFnzXPdX4Wk2lsg==}
+ '@codemirror/lang-markdown@6.3.0':
+ resolution: {integrity: sha512-lYrI8SdL/vhd0w0aHIEvIRLRecLF7MiiRfzXFZY94dFwHqC9HtgxgagJ8fyYNBldijGatf9wkms60d8SrAj6Nw==}
'@codemirror/lang-php@6.0.1':
resolution: {integrity: sha512-ublojMdw/PNWa7qdN5TMsjmqkNuTBD3k6ndZ4Z0S25SBAiweFGyY68AS3xNcIOlb6DDFDvKlinLQ40vSLqf8xA==}
@@ -1361,8 +1373,8 @@ packages:
'@codemirror/lang-xml@6.1.0':
resolution: {integrity: sha512-3z0blhicHLfwi2UgkZYRPioSgVTo9PV5GP5ducFH6FaHy0IAJRg+ixj5gTR1gnT/glAIC8xv4w2VL1LoZfs+Jg==}
- '@codemirror/lang-yaml@6.1.2':
- resolution: {integrity: sha512-dxrfG8w5Ce/QbT7YID7mWZFKhdhsaTNOYjOkSIMt1qmC4VQnXSDSYVHHHn8k6kJUfIhtLo8t1JJgltlxWdsITw==}
+ '@codemirror/lang-yaml@6.1.1':
+ resolution: {integrity: sha512-HV2NzbK9bbVnjWxwObuZh5FuPCowx51mEfoFT9y3y+M37fA3+pbxx4I7uePuygFzDsAmCTwQSc/kXh/flab4uw==}
'@codemirror/language-data@6.5.1':
resolution: {integrity: sha512-0sWxeUSNlBr6OmkqybUTImADFUP0M3P0IiSde4nc24bz/6jIYzqYSgkOSLS+CBIoW1vU8Q9KUWXscBXeoMVC9w==}
@@ -1373,11 +1385,11 @@ packages:
'@codemirror/legacy-modes@6.4.2':
resolution: {integrity: sha512-HsvWu08gOIIk303eZQCal4H4t65O/qp1V4ul4zVa3MHK5FJ0gz3qz3O55FIkm+aQUcshUOjBx38t2hPiJwW5/g==}
- '@codemirror/lint@6.8.4':
- resolution: {integrity: sha512-u4q7PnZlJUojeRe8FJa/njJcMctISGgPQ4PnWsd9268R4ZTtU+tfFYmwkBvgcrK2+QQ8tYFVALVb5fVJykKc5A==}
+ '@codemirror/lint@6.8.2':
+ resolution: {integrity: sha512-PDFG5DjHxSEjOXk9TQYYVjZDqlZTFaDBfhQixHnQOEVDDNHUbEh/hstAjcQJaA6FQdZTD1hquXTK0rVBLADR1g==}
- '@codemirror/search@6.5.8':
- resolution: {integrity: sha512-PoWtZvo7c1XFeZWmmyaOp2G0XVbOnm+fJzvghqGAktBW3cufwJUWvSCcNG0ppXiBEM05mZu6RhMtXPv2hpllig==}
+ '@codemirror/search@6.5.7':
+ resolution: {integrity: sha512-6+iLsXvITWKHYlkgHPCs/qiX4dNzn8N78YfhOFvPtPYCkuXqZq10rAfsUMhOq7O/1VjJqdXRflyExlfVcu/9VQ==}
'@codemirror/state@6.5.0':
resolution: {integrity: sha512-MwBHVK60IiIHDcoMet78lxt6iw5gJOGSbNbOIVBHWVXIH4/Nq1+GQgLLGgI1KlnN86WDXsPudVaqYHKBIx7Eyw==}
@@ -1542,14 +1554,6 @@ packages:
'@emnapi/wasi-threads@1.0.1':
resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==}
- '@envelop/core@5.0.2':
- resolution: {integrity: sha512-tVL6OrMe6UjqLosiE+EH9uxh2TQC0469GwF4tE014ugRaDDKKVWwFwZe0TBMlcyHKh5MD4ZxktWo/1hqUxIuhw==}
- engines: {node: '>=18.0.0'}
-
- '@envelop/types@5.0.0':
- resolution: {integrity: sha512-IPjmgSc4KpQRlO4qbEDnBEixvtb06WDmjKfi/7fkZaryh5HuOmTtixe1EupQI5XfXO8joc3d27uUZ0QdC++euA==}
- engines: {node: '>=18.0.0'}
-
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
@@ -1698,13 +1702,29 @@ packages:
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint/eslintrc@2.1.4':
- resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/config-array@0.19.1':
+ resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@8.57.1':
- resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/core@0.9.1':
+ resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.2.0':
+ resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.17.0':
+ resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.5':
+ resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.2.4':
+ resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@faker-js/faker@9.3.0':
resolution: {integrity: sha512-r0tJ3ZOkMd9xsu3VRfqlFR6cz0V/jFYRswAIpC+m/DIfAUXq7g8N7wTAlhSANySXYGKzGryfDXwtwsY8TxEIDw==}
@@ -1716,11 +1736,11 @@ packages:
'@fast-csv/parse@4.3.6':
resolution: {integrity: sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==}
- '@floating-ui/core@1.6.9':
- resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ '@floating-ui/core@1.6.8':
+ resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
- '@floating-ui/dom@1.6.13':
- resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ '@floating-ui/dom@1.6.12':
+ resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==}
'@floating-ui/react-dom@2.1.2':
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
@@ -1728,14 +1748,14 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/react@0.26.28':
- resolution: {integrity: sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==}
+ '@floating-ui/react@0.26.27':
+ resolution: {integrity: sha512-jLP72x0Kr2CgY6eTYi/ra3VA9LOkTo4C+DUTrbFgFOExKy3omYVmwMjNKqxAHdsnyLS96BIDLcO2SlnsNf8KUQ==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@floating-ui/utils@0.2.9':
- resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
'@golevelup/nestjs-common@2.0.1':
resolution: {integrity: sha512-XYi6K1ITNwIyH/nGNPaaQlZ6bEwvHuUe5OBTFhCCesDk0ibFXHaO+UoLD6iHQz7qDWmqzwiY0DkhujvE+S5z8g==}
@@ -1830,33 +1850,27 @@ 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
- '@graphql-hive/gateway-abort-signal-any@0.0.3':
- resolution: {integrity: sha512-TLYXRiK1DxkGXEdVrwbEtQ4JrsxJ4d/zXBeTzNzvuU+doTzot0wreFgrmmOq+bvqg/E6yMs1kOvBYz477gyMjA==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- graphql: ^15.0.0 || ^16.9.0 || ^17.0.0
-
- '@graphql-tools/apollo-engine-loader@8.0.12':
- resolution: {integrity: sha512-oPGdfixQ1/AryEywVFqVcuTheRVUjClyS04r2UUszbgF3+BlUIleGYG6LhGhMwwb1P9E8csAiFwzzFQWPzJCSQ==}
+ '@graphql-tools/apollo-engine-loader@8.0.2':
+ resolution: {integrity: sha512-HTFoCILMU7u/Y97G5iu2EPSMTW/b/Lx6Ww2emX/WDtubU2A/7RqzBUjrDj/JMPTEblOAPUwJ1XcxtvXgQVaSyQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/batch-execute@9.0.11':
- resolution: {integrity: sha512-v9b618cj3hIrRGTDrOotYzpK+ZigvNcKdXK3LNBM4g/uA7pND0d4GOnuOSBQGKKN6kT/1nsz4ZpUxCoUvWPbzg==}
- engines: {node: '>=18.0.0'}
+ '@graphql-tools/batch-execute@9.0.5':
+ resolution: {integrity: sha512-wkHLqBNtprKuNk+6ZoOw/RthsnGDycIjtOo976K8f0IgbE7fRNO9SnyhjSziHaIWVDjOuP3XaJD5v/i3vQsa5Q==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/code-file-loader@8.1.13':
- resolution: {integrity: sha512-zEj+DJhZ8vInnCDeEcyim+LJiROPERqTCZdwHGQXKZXqab1dpyqTiIU+rjWmNUJFrqrLY15gLzrhNSLmDGDdUA==}
+ '@graphql-tools/code-file-loader@8.1.4':
+ resolution: {integrity: sha512-vwMk+trCGLidWTmwC5CybqN0+W9fG6VMf61HEggUGBcYLzUmTAIn9DXsU1IFeLRtn8rNx8xH4JpDGd6fv0YWUQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/delegate@10.2.9':
- resolution: {integrity: sha512-JlD/IdC26tyqopYvgXo48XwlDnpYPVs523dq5tg/u8kxJe3PtBmEUoE6EQ4CEMk0mB/r5ck+ZXTHt/wiOCWKhw==}
- engines: {node: '>=18.0.0'}
+ '@graphql-tools/delegate@10.1.1':
+ resolution: {integrity: sha512-Ee2olw3MGpH9KDrQo0KDn7+oxOf8mrq17aCFojsnumGyUaD33LyKn7Gl2bjwEhXa7PN0dEJQhxSaRPyNtCKzCw==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -1866,74 +1880,68 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/executor-common@0.0.1':
- resolution: {integrity: sha512-Gan7uiQhKvAAl0UM20Oy/n5NGBBDNm+ASHvnYuD8mP+dAH0qY+2QMCHyi5py28WAlhAwr0+CAemEyzY/ZzOjdQ==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
-
- '@graphql-tools/executor-graphql-ws@1.3.7':
- resolution: {integrity: sha512-9KUrlpil5nBgcb+XRUIxNQGI+c237LAfDBqYCdLGuYT+/oZz1b4rRIe6HuRk09vuxrbaMTzm7xHhn/iuwWW4eg==}
- engines: {node: '>=18.0.0'}
+ '@graphql-tools/executor-graphql-ws@1.3.1':
+ resolution: {integrity: sha512-UAS5aeWLqv89iJ899OK8uwBMVGVH4nhJDIuIT+8z8f5iPiIpfqt2ipZLasdSLpi5WUpYDIolnVUFd2NvzccO7A==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/executor-http@1.2.4':
- resolution: {integrity: sha512-2WwymmIplDdzdPgs/qcqfqYfGGfpd626VejsREylTtyrBcURtyNfGw95sHOPo1O2NEXC5wJRN2o+GQBfC3Zy0g==}
- engines: {node: '>=18.0.0'}
+ '@graphql-tools/executor-http@1.1.7':
+ resolution: {integrity: sha512-iWTE1MtCW26jxs5DeXsUNPkIFmVWEhioJx0wcDSacJ0onXjyMalfae5SgsuwHMQCVuvvUtQUgb8a9hmPhQ0y+g==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/executor-legacy-ws@1.1.10':
- resolution: {integrity: sha512-ENyCAky0PrcP0dR5ZNIsCTww3CdOECBor/VuRtxAA+BffFhofNiOKcgR6MEsAOH2jHh0K2wwK38sgrW+D3GX3w==}
+ '@graphql-tools/executor-legacy-ws@1.1.1':
+ resolution: {integrity: sha512-9J5WBd9D7+V299BsMJmgMVBsUl01rqzpfWx+if2r5k9xBYchj5delUOsx337XtNLb3Ewoy0Za24DkNYIx3Cgyg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/executor@1.3.12':
- resolution: {integrity: sha512-FzLXZQJOZHB75SecYFOIEEHw/qcxkRFViw0lVqHpaL07c+GqDxv6VOto0FZCIiV9RgGdyRj3O8lXDCp9Cw1MbA==}
+ '@graphql-tools/executor@1.3.2':
+ resolution: {integrity: sha512-U8nAR709IPNjwf0aLG6U9FlX0t7vA4cdWvL4RtMR/L/Ll4OHZ39OqUtq6moy+kLRRwLTqLif6iiUYrxnWpUGXw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/git-loader@8.0.17':
- resolution: {integrity: sha512-UYrZmO0LRQecWQx4jpZdUYBLrP0uBGiQks2RGLDpAokqo60rneBxlivjJS3HfMaohhiYy27nU00Ahy/9iTn79Q==}
+ '@graphql-tools/git-loader@8.0.8':
+ resolution: {integrity: sha512-1zGkgVDecM8I4+ymSuqOpckdAiFRbD3TVqOIcATolJ3I5a2eJhzqADZaOvMHzWWs69PPzOBzjcOj6EdVUeNBug==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/github-loader@8.0.12':
- resolution: {integrity: sha512-KKcDqqNBdNoGf4KL7q+20dbFxBkTl63uYxI9vlaKVHvnLd/JmuopQ4lkHCBj9UWP/AVyT6mlPlWwXSBg0lci0A==}
+ '@graphql-tools/github-loader@8.0.2':
+ resolution: {integrity: sha512-VrhEOI+lh/vH5XyVBK3uNBYGFz9lHR5elADT44tBuBI5eyzm1N/dCaJ1nW9mVTij7deLVEKetTOHrMETVqyZ+A==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/graphql-file-loader@8.0.11':
- resolution: {integrity: sha512-Rn7241tY1JFsWzLIn2pji/JWNVHnL/1+CRjdd9M7DgI8Tj5GYsD60yDQ/gmaTzBvy4mQXeyW5y3+rf8Px0pGeQ==}
+ '@graphql-tools/graphql-file-loader@8.0.2':
+ resolution: {integrity: sha512-uf/vkO7jIU19hOZKL/DPyE5vm3wH7nFpfNYrMGGx8XlDK7l0al/MO7HQy+4YUPENkAd8FBgRNt2Ilm1fUXCwJg==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/graphql-tag-pluck@8.3.12':
- resolution: {integrity: sha512-C6Ddg5RTz1WM96LYBtMuSEwN4QHfivK/vtbiAq9Soo6SoW1vGE4gzt0QS2FDVnDeB16er3h8YQZJ0xwm4pLnfA==}
+ '@graphql-tools/graphql-tag-pluck@8.3.3':
+ resolution: {integrity: sha512-G+8UNUa54ct/f9hNHo7Ez61BeAoaeXYhtfq8rYu0m9Upr/BCgsQmuvEgyHBRSFVkqOQj56H5aBwKW68SPrrU8g==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/import@7.0.11':
- resolution: {integrity: sha512-zUru+YhjLUpdyNnTKHXLBjV6bh+CpxVhxJr5mgsFT/Lk6fdpjkEyk+hzdgINuo5GbIulFa6KpLZUBoZsDARBpQ==}
+ '@graphql-tools/import@7.0.2':
+ resolution: {integrity: sha512-7OpShcq/yRwCcMcTyLNIonYw9l1yD+Im/znN/l9SRsThYGhMlojEHIntn7f9IArCnHR71uZk5UQioGLUTG6E6A==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/json-file-loader@8.0.11':
- resolution: {integrity: sha512-xsfIbPyxyXWnu+GSC5HCw945Gt++b+5NeEvpunw2cK9myGhF2Bkb8N4QTNwWy+7kvOAKzNopBGqGV+x3uaQAZA==}
+ '@graphql-tools/json-file-loader@8.0.2':
+ resolution: {integrity: sha512-gdsOfH+wU4LAineG3oiqw4DNrwAdmr/ZfZ1JiL3wlUsk16P78qmM8jD9H7pkdMuwVdD0e/d+QrVhbo9qQ0CcKw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/load@8.0.12':
- resolution: {integrity: sha512-ZFqerNO7at64N4GHT76k0AkwToHNHVkpAh1iFDRHvvFpESpZ3LDz9Y6cs54Sf6zhATecDuUSwbWZoEE2WIDExA==}
+ '@graphql-tools/load@8.0.3':
+ resolution: {integrity: sha512-JE/MdTMcaIQ68U9zaizXG3QkR4Qligv131JVVmVJScxA1gv0gIc+HDixa5YK1rBXYLANU1sZMk87ZVuPaUdAoQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -1949,8 +1957,8 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/merge@9.0.17':
- resolution: {integrity: sha512-3K4g8KKbIqfdmK0L5+VtZsqwAeElPkvT5ejiH+KEhn2wyKNCi4HYHxpQk8xbu+dSwLlm9Lhet1hylpo/mWCkuQ==}
+ '@graphql-tools/merge@9.0.8':
+ resolution: {integrity: sha512-RG9NEp4fi0MoFi0te4ahqTMYuavQnXlpEZxxMomdCa6CI5tfekcVm/rsLF5Zt8O4HY+esDt9+4dCL+aOKvG79w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -1961,14 +1969,14 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/prisma-loader@8.0.17':
- resolution: {integrity: sha512-fnuTLeQhqRbA156pAyzJYN0KxCjKYRU5bz1q/SKOwElSnAU4k7/G1kyVsWLh7fneY78LoMNH5n+KlFV8iQlnyg==}
+ '@graphql-tools/prisma-loader@8.0.15':
+ resolution: {integrity: sha512-kqmqGpE7DqDWLK7RsHpX7ckDqKcGWi5xWOzLgZwWXtgPQIJ/D50R9e6xIr6FpkeL9KYa+DJ8A91WPnwKCqYe/w==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/relay-operation-optimizer@7.0.11':
- resolution: {integrity: sha512-98w541PwpVP/fmdE1RMH7CVQxTu8VojFaMHuFAw9hhM9r5aqmS0YXMHTTxnZVJRTTweBAjT+cWsig63wbhnnOQ==}
+ '@graphql-tools/relay-operation-optimizer@7.0.2':
+ resolution: {integrity: sha512-sdoGBfe6+OXcPYUBMla3KKvf56bk0wCRY2HL4qK/CNP+7752Nx6s24aBqZ5vrnB3tleddAfnG4gvy0JuHfmA+A==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -1979,8 +1987,8 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/schema@10.0.16':
- resolution: {integrity: sha512-G2zgb8hNg9Sx6Z2FSXm57ToNcwMls9A9cUm+EsCrnGGDsryzN5cONYePUpSGj5NCFivVp3o1FT5dg19P/1qeqQ==}
+ '@graphql-tools/schema@10.0.7':
+ resolution: {integrity: sha512-Cz1o+rf9cd3uMgG+zI9HlM5mPlnHQUlk/UQRZyUlPDfT+944taLaokjvj7AI6GcOFVf4f2D11XthQp+0GY31jQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -1990,20 +1998,20 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/url-loader@8.0.23':
- resolution: {integrity: sha512-WSrsUkuXXInET7i+da/qEOYfEGVtsG58Kgl/1XpEatFSL5qL5NWbuS0Xadi+p1gF6sy+VhPfvncLqhRjGWyvyQ==}
+ '@graphql-tools/url-loader@8.0.13':
+ resolution: {integrity: sha512-O7RwIh8Iv60epiV/Smnu3wWQddGEbz2W5sLTF4gW/4/23OLaQIAwR0E8MvOneXPQ5MScbUKXeFmyw97vve10qw==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/utils@10.6.1':
- resolution: {integrity: sha512-XHl0/DWkMf/8Dmw1F3RRoMPt6ZwU4J707YWcbPjS+49WZNoTVz6f+prQ4GuwZT8RqTPtrRawnGU93AV73ZLTfQ==}
+ '@graphql-tools/utils@10.5.5':
+ resolution: {integrity: sha512-LF/UDWmMT0mnobL2UZETwYghV7HYBzNaGj0SAkCYOMy/C3+6sQdbcTksnoFaKR9XIVD78jNXEGfivbB8Zd+cwA==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/utils@10.7.2':
- resolution: {integrity: sha512-Wn85S+hfkzfVFpXVrQ0hjnePa3p28aB6IdAGCiD1SqBCSMDRzL+OFEtyAyb30nV9Mqflqs9lCqjqlR2puG857Q==}
+ '@graphql-tools/utils@10.6.1':
+ resolution: {integrity: sha512-XHl0/DWkMf/8Dmw1F3RRoMPt6ZwU4J707YWcbPjS+49WZNoTVz6f+prQ4GuwZT8RqTPtrRawnGU93AV73ZLTfQ==}
engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -2013,9 +2021,9 @@ packages:
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
- '@graphql-tools/wrap@10.0.27':
- resolution: {integrity: sha512-UikYBknzYgJKhzIXrzA58EO8IZ+jlX/iPmfUactK6aypc7iKCJzGD31Ha8rDI9GiHPn1F8PUAB4cTlGJ1qRh3w==}
- engines: {node: '>=18.0.0'}
+ '@graphql-tools/wrap@10.0.15':
+ resolution: {integrity: sha512-HeR7q0kGAEtbewymnA2Kpqc39q6uUDFx3CNNG552TztJr7uuYu8Wte/4Rcb00CzW1D65JsmfwTksbnc/vs9HmQ==}
+ engines: {node: '>=16.0.0'}
peerDependencies:
graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0
@@ -2024,8 +2032,8 @@ 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.12.5':
- resolution: {integrity: sha512-d3iiHxdpg5+ZcJ6jnDSOT8Z0O0VMVGy34jAnYLUX8yd36b1qn8f1TwOA/Lc7TsOh03IkPJ38eGI5qD2EjNkoEA==}
+ '@grpc/grpc-js@1.12.2':
+ resolution: {integrity: sha512-bgxdZmgTrJZX50OjyVwz3+mNEnCTNkh3cIqGPWVNeW9jX6bn1ZkU80uPd+67/ZpIJIjRQ9qaHCjhavyoWYxumg==}
engines: {node: '>=12.10.0'}
'@grpc/proto-loader@0.7.13':
@@ -2040,23 +2048,30 @@ packages:
react: ^18 || ^19 || ^19.0.0-rc
react-dom: ^18 || ^19 || ^19.0.0-rc
- '@hookform/resolvers@3.10.0':
- resolution: {integrity: sha512-79Dv+3mDF7i+2ajj7SkypSKHhl1cbln1OGavqrsF7p6mbUv11xpqpacPsGDCTRvCSjEEIez2ef1NveSVL3b0Ag==}
+ '@hookform/resolvers@3.9.1':
+ resolution: {integrity: sha512-ud2HqmGBM0P0IABqoskKWI6PEf6ZDDBZkFqe2Vnl+mTHCEHzr3ISjjZyCwTjC/qpL25JC9aIDkloQejvMeq0ug==}
peerDependencies:
react-hook-form: ^7.0.0
- '@humanwhocodes/config-array@0.13.0':
- resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==}
- engines: {node: '>=10.10.0'}
- deprecated: Use @eslint/config-array instead
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.6':
+ resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/object-schema@2.0.3':
- resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
- deprecated: Use @eslint/object-schema instead
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
+ engines: {node: '>=18.18'}
+
+ '@humanwhocodes/retry@0.4.1':
+ resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ engines: {node: '>=18.18'}
'@img/sharp-darwin-arm64@0.33.5':
resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
@@ -2163,22 +2178,22 @@ packages:
cpu: [x64]
os: [win32]
- '@inquirer/confirm@5.1.1':
- resolution: {integrity: sha512-vVLSbGci+IKQvDOtzpPTCOiEJCNidHcAq9JYVoWTW0svb5FiwSLotkM+JXNXejfjnzVYV9n0DTBythl9+XgTxg==}
+ '@inquirer/confirm@5.0.1':
+ resolution: {integrity: sha512-6ycMm7k7NUApiMGfVc32yIPp28iPKxhGRMqoNDiUjq2RyTAkbs5Fx0TdzBqhabcKvniDdAAvHCmsRjnNfTsogw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
- '@inquirer/core@10.1.2':
- resolution: {integrity: sha512-bHd96F3ezHg1mf/J0Rb4CV8ndCN0v28kUlrHqP7+ECm1C/A+paB7Xh2lbMk6x+kweQC+rZOxM/YeKikzxco8bQ==}
+ '@inquirer/core@10.0.1':
+ resolution: {integrity: sha512-KKTgjViBQUi3AAssqjUFMnMO3CM3qwCHvePV9EW+zTKGKafFGFF01sc1yOIYjLJ7QU52G/FbzKc+c01WLzXmVQ==}
engines: {node: '>=18'}
- '@inquirer/figures@1.0.9':
- resolution: {integrity: sha512-BXvGj0ehzrngHTPTDqUoDT3NXL8U0RxUk2zJm2A66RhCEIWdtU1v6GuUqNAgArW4PQ9CinqIWyHdQgdwOj06zQ==}
+ '@inquirer/figures@1.0.7':
+ resolution: {integrity: sha512-m+Trk77mp54Zma6xLkLuY+mvanPxlE4A7yNKs2HBiyZ4UkVs28Mv5c/pgWrHeInx+USHeX/WEPzjrWrcJiQgjw==}
engines: {node: '>=18'}
- '@inquirer/type@3.0.2':
- resolution: {integrity: sha512-ZhQ4TvhwHZF+lGhQ2O/rsjo80XoZR5/5qhOY3t6FJuX5XBg5Be8YzYTvaUGJnc12AUGI2nr4QSUE4PhKSigx7g==}
+ '@inquirer/type@3.0.0':
+ resolution: {integrity: sha512-YYykfbw/lefC7yKj7nanzQXILM7r3suIvyFlCcMskc99axmsSewXWkAfXKwMbgxL76iAFVmRwmYdwNZNc8gjog==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2201,8 +2216,8 @@ packages:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- '@jridgewell/gen-mapping@0.3.8':
- resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
+ '@jridgewell/gen-mapping@0.3.5':
+ resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
@@ -2252,11 +2267,11 @@ packages:
'@lezer/java@1.1.3':
resolution: {integrity: sha512-yHquUfujwg6Yu4Fd1GNHCvidIvJwi/1Xu2DaKl/pfWIA2c1oXkVvawH3NyXhCaFx4OdlYBVX5wvz2f7Aoa/4Xw==}
- '@lezer/javascript@1.4.21':
- resolution: {integrity: sha512-lL+1fcuxWYPURMM/oFZLEDm0XuLN128QPV+VuGtKpeaOGdcl9F2LYC3nh1S9LkPqx9M0mndZFdXCipNAZpzIkQ==}
+ '@lezer/javascript@1.4.19':
+ resolution: {integrity: sha512-j44kbR1QL26l6dMunZ1uhKBFteVGLVCBGNUD2sUaMnic+rbTviVuoK0CD1l9FTW31EueWvFFswCKMH7Z+M3JRA==}
- '@lezer/json@1.0.3':
- resolution: {integrity: sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==}
+ '@lezer/json@1.0.2':
+ resolution: {integrity: sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==}
'@lezer/lezer@1.1.2':
resolution: {integrity: sha512-O8yw3CxPhzYHB1hvwbdozjnAslhhR8A5BH7vfEMof0xk3p+/DFDfZkA9Tde6J+88WgtwaHy4Sy6ThZSkaI0Evw==}
@@ -2264,14 +2279,14 @@ packages:
'@lezer/lr@1.4.2':
resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
- '@lezer/markdown@1.4.0':
- resolution: {integrity: sha512-mk4MYeq6ZQdxgsgRAe0G7kqPRV6Desajfa14TcHoGGXIqqj1/2ARN31VFpmrXDgvXiGBWpA7RXtv0he+UdTkGw==}
+ '@lezer/markdown@1.3.2':
+ resolution: {integrity: sha512-Wu7B6VnrKTbBEohqa63h5vxXjiC4pO5ZQJ/TDbhJxPQaaIoRD/6UVDhSDtVsCwVZV12vvN9KxuLL3ATMnlG0oQ==}
'@lezer/php@1.0.2':
resolution: {integrity: sha512-GN7BnqtGRpFyeoKSEqxvGvhJQiI4zkgmYnDk/JIyc7H7Ifc1tkPnUn/R2R8meH3h/aBf5rzjvU8ZQoyiNDtDrA==}
- '@lezer/python@1.1.15':
- resolution: {integrity: sha512-aVQ43m2zk4FZYedCqL0KHPEUsqZOrmAvRhkhHlVPnDD1HODDyyQv5BRIuod4DadkgBEZd53vQOtXTonNbEgjrQ==}
+ '@lezer/python@1.1.14':
+ resolution: {integrity: sha512-ykDOb2Ti24n76PJsSa4ZoDF0zH12BSw1LGfQXCYJhJyOGiFTfGaX0Du66Ze72R+u/P35U+O6I9m8TFXov1JzsA==}
'@lezer/rust@1.0.2':
resolution: {integrity: sha512-Lz5sIPBdF2FUXcWeCu1//ojFAZqzTQNRga0aYv6dYXqJqPfMdCAI0NzajWUd4Xijj1IKJLtjoXRPMvTKWBcqKg==}
@@ -2279,8 +2294,8 @@ packages:
'@lezer/sass@1.0.7':
resolution: {integrity: sha512-8HLlOkuX/SMHOggI2DAsXUw38TuURe+3eQ5hiuk9QmYOUyC55B1dYEIMkav5A4IELVaW4e1T4P9WRiI5ka4mdw==}
- '@lezer/xml@1.0.6':
- resolution: {integrity: sha512-CdDwirL0OEaStFue/66ZmFSeppuL6Dwjlk8qk153mSQwiSH/Dlri4GNymrNWnUmPl2Um7QfV1FO9KFUyX3Twww==}
+ '@lezer/xml@1.0.5':
+ resolution: {integrity: sha512-VFouqOzmUWfIg+tfmpcdV33ewtK+NSwd4ngSe1aG7HFb4BN0ExyY1b8msp+ndFrnlG4V4iC8yXacjFtrwERnaw==}
'@lezer/yaml@1.0.3':
resolution: {integrity: sha512-GuBLekbw9jDBDhGur82nuwkxKQ+a3W5H0GfaAthDXcAu+XdpS43VlnxA9E9hllkpSP5ellRDKjLLj7Lu9Wr6xA==}
@@ -2303,8 +2318,8 @@ packages:
katex: '>=0.9'
react: '>=16'
- '@microsoft/tsdoc@0.15.1':
- resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==}
+ '@microsoft/tsdoc@0.15.0':
+ resolution: {integrity: sha512-HZpPoABogPvjeJOdzCOSJsXeL/SMCBgBZMVC3X3d7YYp2gf31MfxhUoYUNwf1ERPJOnQc0wkFn9trqI6ZEdZuA==}
'@monaco-editor/loader@1.4.0':
resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==}
@@ -2318,8 +2333,8 @@ packages:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
- '@mswjs/interceptors@0.37.5':
- resolution: {integrity: sha512-AAwRb5vXFcY4L+FvZ7LZusDuZ0vEe0Zm8ohn1FM6/X7A3bj4mqmkAcGRWuvC2JwSygNwHAAmMnAI73vPHeqsHA==}
+ '@mswjs/interceptors@0.37.4':
+ resolution: {integrity: sha512-YUenGsnvhhuBkabJZrga8dv/8QFRBe/isTb5CYvmzaI/IISLIkKp8kItSu9URY9tsJLvkPkq2W48OU/piDvfnA==}
engines: {node: '>=18'}
'@napi-rs/nice-android-arm-eabi@1.0.1':
@@ -2422,8 +2437,8 @@ packages:
resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==}
engines: {node: '>= 10'}
- '@napi-rs/wasm-runtime@0.2.6':
- resolution: {integrity: sha512-z8YVS3XszxFTO73iwvFDNpQIzdMmSDTP/mB3E/ucR37V3Sx57hSExcXyMoNwaucWxnsWf4xfbZv0iZ30jr0M4Q==}
+ '@napi-rs/wasm-runtime@0.2.5':
+ resolution: {integrity: sha512-kwUxR7J9WLutBbulqg1dfOrMTwhMdXLdcGUhcbCcGwnPLt3gz19uHVdwH1syKVDbE022ZS2vZxOWflFLS0YTjw==}
'@nestjs-modules/mailer@2.0.2':
resolution: {integrity: sha512-+z4mADQasg0H1ZaGu4zZTuKv2pu+XdErqx99PLFPzCDNTN/q9U59WPgkxVaHnsvKHNopLj5Xap7G4ZpptduoYw==}
@@ -2614,14 +2629,14 @@ packages:
'@nestjs/platform-express':
optional: true
- '@next/bundle-analyzer@14.2.23':
- resolution: {integrity: sha512-BZJTrSZY1kemDMl8hOEu5Vj7Oy5rCa5ZPJ/bSAFPoaOQS21YVwX4xbZCEteCKu6FiXnTwnprxbGgEOmyhH0aoA==}
+ '@next/bundle-analyzer@14.2.22':
+ resolution: {integrity: sha512-BJD/ieE058RXxubHCE/WfQ7AwbVqAEJcRkw7NdsYJ2ky2RKIB7A/0Pf7M0nemxM9vDah3wPUeEuLD7/DpZajsQ==}
'@next/env@14.2.22':
resolution: {integrity: sha512-EQ6y1QeNQglNmNIXvwP/Bb+lf7n9WtgcWvtoFsHquVLCJUuxRs+6SfZ5EK0/EqkkLex4RrDySvKgKNN7PXip7Q==}
- '@next/eslint-plugin-next@14.2.23':
- resolution: {integrity: sha512-efRC7m39GoiU1fXZRgGySqYbQi6ZyLkuGlvGst7IwkTTczehQTJA/7PoMg4MMjUZvZEGpiSEu+oJBAjPawiC3Q==}
+ '@next/eslint-plugin-next@15.1.2':
+ resolution: {integrity: sha512-sgfw3+WdaYOGPKCvM1L+UucBmRfh8V2Ygefp7ELON0+0vY7uohQwXXnVWg3rY7mXDKharQR3o7uedpfvnU2hlQ==}
'@next/swc-darwin-arm64@14.2.22':
resolution: {integrity: sha512-HUaLiehovgnqY4TMBZJ3pDaOsTE1spIXeR10pWgdQVPYqDGQmHJBj3h3V6yC0uuo/RoY2GC0YBFRkOX3dI9WVQ==}
@@ -2738,6 +2753,12 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/core@1.27.0':
+ resolution: {integrity: sha512-yQPKnK5e+76XuiqUH/gKyS8wv/7qITd5ln56QkBTf3uggr0VkXOXfcaAuG330UfdYu83wsyoBwqwxigpIG+Jkg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
'@opentelemetry/core@1.29.0':
resolution: {integrity: sha512-gmT7vAreXl0DTHD2rVZcw3+l2g84+5XiHIqdBUxXbExymPCvSsGOpiwMmn8nkiJur28STV31wnhIDrzWDPzjfA==}
engines: {node: '>=14'}
@@ -2816,8 +2837,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.0.0
- '@opentelemetry/host-metrics@0.35.5':
- resolution: {integrity: sha512-Zf9Cjl7H6JalspnK5KD1+LLKSVecSinouVctNmUxRy+WP+20KwHq+qg4hADllkEmJ99MZByLLmEmzrr7s92V6g==}
+ '@opentelemetry/host-metrics@0.35.4':
+ resolution: {integrity: sha512-3nPElbfYZ2oKNoMw2CkXkHxQryebqACcSgMbbKcn+GnGKp+h7MeOHyg21NmmTt9xgCvRHYiHNkWGkB4laP0oUw==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
@@ -3030,6 +3051,12 @@ packages:
resolution: {integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==}
engines: {node: '>=14'}
+ '@opentelemetry/resources@1.27.0':
+ resolution: {integrity: sha512-jOwt2VJ/lUD5BLc+PMNymDrUCpm5PKi1E9oSVYAvz01U/VdndGmrtV3DU1pG4AwlYhJRHbHfOUIlpBeXCPw6QQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
'@opentelemetry/resources@1.30.0':
resolution: {integrity: sha512-5mGMjL0Uld/99t7/pcd7CuVtJbkARckLVuiOX84nO8RtLtIz0/J6EOHM2TGvPZ6F4K+XjUq13gMx14w80SVCQg==}
engines: {node: '>=14'}
@@ -3054,6 +3081,12 @@ packages:
peerDependencies:
'@opentelemetry/api': '>=1.3.0 <1.10.0'
+ '@opentelemetry/sdk-trace-base@1.27.0':
+ resolution: {integrity: sha512-btz6XTQzwsyJjombpeqCX6LhiMQYpzt2pIYNPnw0IPO/3AhT6yjnf8Mnv3ZC2A4eRYOjqrg+bfaXg9XHDRJDWQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@opentelemetry/api': '>=1.0.0 <1.10.0'
+
'@opentelemetry/sdk-trace-base@1.30.0':
resolution: {integrity: sha512-RKQDaDIkV7PwizmHw+rE/FgfB2a6MBx+AEVVlAHXRG1YYxLiBpPX2KhmoB99R5vA4b72iJrjle68NDWnbrE9Dg==}
engines: {node: '>=14'}
@@ -3305,6 +3338,15 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-compose-refs@1.1.0':
+ resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-compose-refs@1.1.1':
resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
peerDependencies:
@@ -3485,6 +3527,19 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-primitive@2.0.0':
+ resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
'@radix-ui/react-primitive@2.0.1':
resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
peerDependencies:
@@ -3550,6 +3605,15 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-slot@1.1.0':
+ resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@radix-ui/react-slot@1.1.1':
resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
peerDependencies:
@@ -3703,36 +3767,36 @@ packages:
'@radix-ui/rect@1.1.0':
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
- '@react-aria/focus@3.19.0':
- resolution: {integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==}
+ '@react-aria/focus@3.18.4':
+ resolution: {integrity: sha512-91J35077w9UNaMK1cpMUEFRkNNz0uZjnSwiyBCFuRdaVuivO53wNC9XtWSDNDdcO5cGy87vfJRVAiyoCn/mjqA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-aria/interactions@3.22.5':
- resolution: {integrity: sha512-kMwiAD9E0TQp+XNnOs13yVJghiy8ET8L0cbkeuTgNI96sOAp/63EJ1FSrDf17iD8sdjt41LafwX/dKXW9nCcLQ==}
+ '@react-aria/interactions@3.22.4':
+ resolution: {integrity: sha512-E0vsgtpItmknq/MJELqYJwib+YN18Qag8nroqwjk1qOnBa9ROIkUhWJerLi1qs5diXq9LHKehZDXRlwPvdEFww==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-aria/ssr@3.9.7':
- resolution: {integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==}
+ '@react-aria/ssr@3.9.6':
+ resolution: {integrity: sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==}
engines: {node: '>= 12'}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-aria/utils@3.26.0':
- resolution: {integrity: sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==}
+ '@react-aria/utils@3.25.3':
+ resolution: {integrity: sha512-PR5H/2vaD8fSq0H/UB9inNbc8KDcVmW6fYAfSWkkn+OAdhTTMVKqXXrZuZBWyFfSD5Ze7VN6acr4hrOQm2bmrA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-stately/utils@3.10.5':
- resolution: {integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==}
+ '@react-stately/utils@3.10.4':
+ resolution: {integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@react-types/shared@3.26.0':
- resolution: {integrity: sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==}
+ '@react-types/shared@3.25.0':
+ resolution: {integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
'@redis/bloom@1.2.0':
resolution: {integrity: sha512-HG2DFjYKbpNmVXsa0keLHp/3leGJz1mjh09f2RLGGLQZzSHpkmZWuwJbAvo3QcRY8p80m5+ZdXZdYOSBLlp7Cg==}
@@ -3820,8 +3884,8 @@ packages:
rollup:
optional: true
- '@rollup/pluginutils@5.1.4':
- resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
+ '@rollup/pluginutils@5.1.3':
+ resolution: {integrity: sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -3829,106 +3893,101 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.30.1':
- resolution: {integrity: sha512-pSWY+EVt3rJ9fQ3IqlrEUtXh3cGqGtPDH1FQlNZehO2yYxCHEX1SPsz1M//NXwYfbTlcKr9WObLnJX9FsS9K1Q==}
+ '@rollup/rollup-android-arm-eabi@4.24.4':
+ resolution: {integrity: sha512-jfUJrFct/hTA0XDM5p/htWKoNNTbDLY0KRwEt6pyOA6k2fmk0WVwl65PdUdJZgzGEHWx+49LilkcSaumQRyNQw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.30.1':
- resolution: {integrity: sha512-/NA2qXxE3D/BRjOJM8wQblmArQq1YoBVJjrjoTSBS09jgUisq7bqxNHJ8kjCHeV21W/9WDGwJEWSN0KQ2mtD/w==}
+ '@rollup/rollup-android-arm64@4.24.4':
+ resolution: {integrity: sha512-j4nrEO6nHU1nZUuCfRKoCcvh7PIywQPUCBa2UsootTHvTHIoIu2BzueInGJhhvQO/2FTRdNYpf63xsgEqH9IhA==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.30.1':
- resolution: {integrity: sha512-r7FQIXD7gB0WJ5mokTUgUWPl0eYIH0wnxqeSAhuIwvnnpjdVB8cRRClyKLQr7lgzjctkbp5KmswWszlwYln03Q==}
+ '@rollup/rollup-darwin-arm64@4.24.4':
+ resolution: {integrity: sha512-GmU/QgGtBTeraKyldC7cDVVvAJEOr3dFLKneez/n7BvX57UdhOqDsVwzU7UOnYA7AAOt+Xb26lk79PldDHgMIQ==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.30.1':
- resolution: {integrity: sha512-x78BavIwSH6sqfP2xeI1hd1GpHL8J4W2BXcVM/5KYKoAD3nNsfitQhvWSw+TFtQTLZ9OmlF+FEInEHyubut2OA==}
+ '@rollup/rollup-darwin-x64@4.24.4':
+ resolution: {integrity: sha512-N6oDBiZCBKlwYcsEPXGDE4g9RoxZLK6vT98M8111cW7VsVJFpNEqvJeIPfsCzbf0XEakPslh72X0gnlMi4Ddgg==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.30.1':
- resolution: {integrity: sha512-HYTlUAjbO1z8ywxsDFWADfTRfTIIy/oUlfIDmlHYmjUP2QRDTzBuWXc9O4CXM+bo9qfiCclmHk1x4ogBjOUpUQ==}
+ '@rollup/rollup-freebsd-arm64@4.24.4':
+ resolution: {integrity: sha512-py5oNShCCjCyjWXCZNrRGRpjWsF0ic8f4ieBNra5buQz0O/U6mMXCpC1LvrHuhJsNPgRt36tSYMidGzZiJF6mw==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.30.1':
- resolution: {integrity: sha512-1MEdGqogQLccphhX5myCJqeGNYTNcmTyaic9S7CG3JhwuIByJ7J05vGbZxsizQthP1xpVx7kd3o31eOogfEirw==}
+ '@rollup/rollup-freebsd-x64@4.24.4':
+ resolution: {integrity: sha512-L7VVVW9FCnTTp4i7KrmHeDsDvjB4++KOBENYtNYAiYl96jeBThFfhP6HVxL74v4SiZEVDH/1ILscR5U9S4ms4g==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.30.1':
- resolution: {integrity: sha512-PaMRNBSqCx7K3Wc9QZkFx5+CX27WFpAMxJNiYGAXfmMIKC7jstlr32UhTgK6T07OtqR+wYlWm9IxzennjnvdJg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.4':
+ resolution: {integrity: sha512-10ICosOwYChROdQoQo589N5idQIisxjaFE/PAnX2i0Zr84mY0k9zul1ArH0rnJ/fpgiqfu13TFZR5A5YJLOYZA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.30.1':
- resolution: {integrity: sha512-B8Rcyj9AV7ZlEFqvB5BubG5iO6ANDsRKlhIxySXcF1axXYUyqwBok+XZPgIYGBgs7LDXfWfifxhw0Ik57T0Yug==}
+ '@rollup/rollup-linux-arm-musleabihf@4.24.4':
+ resolution: {integrity: sha512-ySAfWs69LYC7QhRDZNKqNhz2UKN8LDfbKSMAEtoEI0jitwfAG2iZwVqGACJT+kfYvvz3/JgsLlcBP+WWoKCLcw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.30.1':
- resolution: {integrity: sha512-hqVyueGxAj3cBKrAI4aFHLV+h0Lv5VgWZs9CUGqr1z0fZtlADVV1YPOij6AhcK5An33EXaxnDLmJdQikcn5NEw==}
+ '@rollup/rollup-linux-arm64-gnu@4.24.4':
+ resolution: {integrity: sha512-uHYJ0HNOI6pGEeZ/5mgm5arNVTI0nLlmrbdph+pGXpC9tFHFDQmDMOEqkmUObRfosJqpU8RliYoGz06qSdtcjg==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.30.1':
- resolution: {integrity: sha512-i4Ab2vnvS1AE1PyOIGp2kXni69gU2DAUVt6FSXeIqUCPIR3ZlheMW3oP2JkukDfu3PsexYRbOiJrY+yVNSk9oA==}
+ '@rollup/rollup-linux-arm64-musl@4.24.4':
+ resolution: {integrity: sha512-38yiWLemQf7aLHDgTg85fh3hW9stJ0Muk7+s6tIkSUOMmi4Xbv5pH/5Bofnsb6spIwD5FJiR+jg71f0CH5OzoA==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.30.1':
- resolution: {integrity: sha512-fARcF5g296snX0oLGkVxPmysetwUk2zmHcca+e9ObOovBR++9ZPOhqFUM61UUZ2EYpXVPN1redgqVoBB34nTpQ==}
- cpu: [loong64]
- os: [linux]
-
- '@rollup/rollup-linux-powerpc64le-gnu@4.30.1':
- resolution: {integrity: sha512-GLrZraoO3wVT4uFXh67ElpwQY0DIygxdv0BNW9Hkm3X34wu+BkqrDrkcsIapAY+N2ATEbvak0XQ9gxZtCIA5Rw==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
+ resolution: {integrity: sha512-q73XUPnkwt9ZNF2xRS4fvneSuaHw2BXuV5rI4cw0fWYVIWIBeDZX7c7FWhFQPNTnE24172K30I+dViWRVD9TwA==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.30.1':
- resolution: {integrity: sha512-0WKLaAUUHKBtll0wvOmh6yh3S0wSU9+yas923JIChfxOaaBarmb/lBKPF0w/+jTVozFnOXJeRGZ8NvOxvk/jcw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.24.4':
+ resolution: {integrity: sha512-Aie/TbmQi6UXokJqDZdmTJuZBCU3QBDA8oTKRGtd4ABi/nHgXICulfg1KI6n9/koDsiDbvHAiQO3YAUNa/7BCw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.30.1':
- resolution: {integrity: sha512-GWFs97Ruxo5Bt+cvVTQkOJ6TIx0xJDD/bMAOXWJg8TCSTEK8RnFeOeiFTxKniTc4vMIaWvCplMAFBt9miGxgkA==}
+ '@rollup/rollup-linux-s390x-gnu@4.24.4':
+ resolution: {integrity: sha512-P8MPErVO/y8ohWSP9JY7lLQ8+YMHfTI4bAdtCi3pC2hTeqFJco2jYspzOzTUB8hwUWIIu1xwOrJE11nP+0JFAQ==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.30.1':
- resolution: {integrity: sha512-UtgGb7QGgXDIO+tqqJ5oZRGHsDLO8SlpE4MhqpY9Llpzi5rJMvrK6ZGhsRCST2abZdBqIBeXW6WPD5fGK5SDwg==}
+ '@rollup/rollup-linux-x64-gnu@4.24.4':
+ resolution: {integrity: sha512-K03TljaaoPK5FOyNMZAAEmhlyO49LaE4qCsr0lYHUKyb6QacTNF9pnfPpXnFlFD3TXuFbFbz7tJ51FujUXkXYA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.30.1':
- resolution: {integrity: sha512-V9U8Ey2UqmQsBT+xTOeMzPzwDzyXmnAoO4edZhL7INkwQcaW1Ckv3WJX3qrrp/VHaDkEWIBWhRwP47r8cdrOow==}
+ '@rollup/rollup-linux-x64-musl@4.24.4':
+ resolution: {integrity: sha512-VJYl4xSl/wqG2D5xTYncVWW+26ICV4wubwN9Gs5NrqhJtayikwCXzPL8GDsLnaLU3WwhQ8W02IinYSFJfyo34Q==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.30.1':
- resolution: {integrity: sha512-WabtHWiPaFF47W3PkHnjbmWawnX/aE57K47ZDT1BXTS5GgrBUEpvOzq0FI0V/UYzQJgdb8XlhVNH8/fwV8xDjw==}
+ '@rollup/rollup-win32-arm64-msvc@4.24.4':
+ resolution: {integrity: sha512-ku2GvtPwQfCqoPFIJCqZ8o7bJcj+Y54cZSr43hHca6jLwAiCbZdBUOrqE6y29QFajNAzzpIOwsckaTFmN6/8TA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.30.1':
- resolution: {integrity: sha512-pxHAU+Zv39hLUTdQQHUVHf4P+0C47y/ZloorHpzs2SXMRqeAWmGghzAhfOlzFHHwjvgokdFAhC4V+6kC1lRRfw==}
+ '@rollup/rollup-win32-ia32-msvc@4.24.4':
+ resolution: {integrity: sha512-V3nCe+eTt/W6UYNr/wGvO1fLpHUrnlirlypZfKCT1fG6hWfqhPgQV/K/mRBXBpxc0eKLIF18pIOFVPh0mqHjlg==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.30.1':
- resolution: {integrity: sha512-D6qjsXGcvhTjv0kI4fU8tUuBDF/Ueee4SVX79VfNDXZa64TfCW1Slkb6Z7O1p7vflqZjcmOVdZlqf8gvJxc6og==}
+ '@rollup/rollup-win32-x64-msvc@4.24.4':
+ resolution: {integrity: sha512-LTw1Dfd0mBIEqUVCxbvTE/LLo+9ZxVC9k99v1v4ahg9Aak6FpqOfNu5kRkeTAn0wphoC4JU7No1/rL+bBCEwhg==}
cpu: [x64]
os: [win32]
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@rushstack/eslint-patch@1.10.5':
- resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==}
+ '@rushstack/eslint-patch@1.10.4':
+ resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==}
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
@@ -3936,28 +3995,28 @@ packages:
'@selderee/plugin-htmlparser2@0.11.0':
resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==}
- '@sentry-internal/browser-utils@8.48.0':
- resolution: {integrity: sha512-pLtu0Fa1Ou0v3M1OEO1MB1EONJVmXEGtoTwFRCO1RPQI2ulmkG6BikINClFG5IBpoYKZ33WkEXuM6U5xh+pdZg==}
+ '@sentry-internal/browser-utils@8.47.0':
+ resolution: {integrity: sha512-vOXzYzHTKkahTLDzWWIA4EiVCQ+Gk+7xGWUlNcR2ZiEPBqYZVb5MjsUozAcc7syrSUy6WicyFjcomZ3rlCVQhg==}
engines: {node: '>=14.18'}
- '@sentry-internal/feedback@8.48.0':
- resolution: {integrity: sha512-6PwcJNHVPg0EfZxmN+XxVOClfQpv7MBAweV8t9i5l7VFr8sM/7wPNSeU/cG7iK19Ug9ZEkBpzMOe3G4GXJ5bpw==}
+ '@sentry-internal/feedback@8.47.0':
+ resolution: {integrity: sha512-IAiIemTQIalxAOYhUENs9bZ8pMNgJnX3uQSuY7v0gknEqClOGpGkG04X/cxCmtJUj1acZ9ShTGDxoh55a+ggAQ==}
engines: {node: '>=14.18'}
- '@sentry-internal/replay-canvas@8.48.0':
- resolution: {integrity: sha512-LdivLfBXXB9us1aAc6XaL7/L2Ob4vi3C/fEOXElehg3qHjX6q6pewiv5wBvVXGX1NfZTRvu+X11k6TZoxKsezw==}
+ '@sentry-internal/replay-canvas@8.47.0':
+ resolution: {integrity: sha512-M4W9UGouEeELbGbP3QsXLDVtGiQSZoWJlKwqMWyqdQgZuLoKw0S33+60t6teLVMhuQZR0UI9VJTF5coiXysnnA==}
engines: {node: '>=14.18'}
- '@sentry-internal/replay@8.48.0':
- resolution: {integrity: sha512-csILVupc5RkrsTrncuUTGmlB56FQSFjXPYWG8I8yBTGlXEJ+o8oTuF6+55R4vbw3EIzBveXWi4kEBbnQlXW/eg==}
+ '@sentry-internal/replay@8.47.0':
+ resolution: {integrity: sha512-G/S40ZBORj0HSMLw/uVC6YDEPN/dqVk901vf4VYfml686DEhJrZesfAfp5SydJumQ0NKZQrdtvny+BWnlI5H1w==}
engines: {node: '>=14.18'}
'@sentry/babel-plugin-component-annotate@2.22.7':
resolution: {integrity: sha512-aa7XKgZMVl6l04NY+3X7BP7yvQ/s8scn8KzQfTLrGRarziTlMGrsCOBQtCNWXOPEbtxAIHpZ9dsrAn5EJSivOQ==}
engines: {node: '>= 14'}
- '@sentry/browser@8.48.0':
- resolution: {integrity: sha512-fuuVULB5/1vI8NoIwXwR3xwhJJqk+y4RdSdajExGF7nnUDBpwUJyXsmYJnOkBO+oLeEs58xaCpotCKiPUNnE3g==}
+ '@sentry/browser@8.47.0':
+ resolution: {integrity: sha512-K6BzHisykmbFy/wORtGyfsAlw7ShevLALzu3ReZZZ18dVubO1bjSNjkZQU9MJD5Jcb9oLwkq89n3N9XIBfvdRA==}
engines: {node: '>=14.18'}
'@sentry/bundler-plugin-core@2.22.7':
@@ -4010,22 +4069,22 @@ packages:
engines: {node: '>= 10'}
hasBin: true
- '@sentry/core@8.48.0':
- resolution: {integrity: sha512-VGwYgTfLpvJ5LRO5A+qWo1gpo6SfqaGXL9TOzVgBucAdpzbrYHpZ87sEarDVq/4275uk1b0S293/mfsskFczyw==}
+ '@sentry/core@8.47.0':
+ resolution: {integrity: sha512-iSEJZMe3DOcqBFZQAqgA3NB2lCWBc4Gv5x/SCri/TVg96wAlss4VrUunSI2Mp0J4jJ5nJcJ2ChqHSBAU48k3FA==}
engines: {node: '>=14.18'}
- '@sentry/nextjs@8.48.0':
- resolution: {integrity: sha512-eKbhUW+9KCyK2xIO09iUI3KszfCxtmKgamSYED+N5bb1DzySjDur6BabHFBgA7BcQmYKpTSj/lVxznFNw3H1uQ==}
+ '@sentry/nextjs@8.47.0':
+ resolution: {integrity: sha512-qr++MBYhyAwF25hGq7LAxe3Xehs+w2V4b8mVxilRYFXNkWFazY1ukZcVzq9pKrrt5uTiURTf68e8eVMraHnHEQ==}
engines: {node: '>=14.18'}
peerDependencies:
next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0
- '@sentry/node@8.48.0':
- resolution: {integrity: sha512-pnprAuUOc8cxnJdZA09hutHXNsbQZoDgzf3zPyXMNx0ewB/RviFMOgfe7ViX1mIB/oVrcFenXBgO5uvTd7JwPg==}
+ '@sentry/node@8.47.0':
+ resolution: {integrity: sha512-tMzeU3KkmDi2OVvSu+Ah5pwoi7srsSyc1DovBbRQU96RFf/lOFzGe9JERa1MyDUqqLH95NqnPTNsa4Amb8/Vxg==}
engines: {node: '>=14.18'}
- '@sentry/opentelemetry@8.48.0':
- resolution: {integrity: sha512-1JLXgmIvD3T7xn9ypwWW0V3GirNy4BN2fOUbZau/nUX/Jj5DttSoPn7x7xTaPSpfaA24PiP93zXmJEfZvCk00Q==}
+ '@sentry/opentelemetry@8.47.0':
+ resolution: {integrity: sha512-wunyBIUPeY6Kx3SFhOQqOPs+hyRADO5bztpo8aZ3N3xfzhefSTOdrgUroKvHx1DvoQO6MAlykcuUFps3yfaqmg==}
engines: {node: '>=14.18'}
peerDependencies:
'@opentelemetry/api': ^1.9.0
@@ -4034,14 +4093,14 @@ packages:
'@opentelemetry/sdk-trace-base': ^1.29.0
'@opentelemetry/semantic-conventions': ^1.28.0
- '@sentry/react@8.48.0':
- resolution: {integrity: sha512-J8XAUOJYbsjXnowTEXE+zWJWLWUzQGP8kMb+smoGdRzFJwwXKrbE709Kr/Boz6rK48EbbRT4UUINoTbHgL3RHQ==}
+ '@sentry/react@8.47.0':
+ resolution: {integrity: sha512-SRk2Up+qBTow4rQGiRXViC2i4M5w/tae5w8I/rmX+IxFoPyh8wXERcLAj/8xbbRm8aR+A4i5gNgfFtrYsyFJFA==}
engines: {node: '>=14.18'}
peerDependencies:
react: ^16.14.0 || 17.x || 18.x || 19.x
- '@sentry/vercel-edge@8.48.0':
- resolution: {integrity: sha512-5bxMCTkadnvJvCC363ZXEdAHaWS/RAAvsI+8RAFObJO0tUemjKrgbHM/1YcvLRZSuBs6BSn9RjDipzzlFgtBWw==}
+ '@sentry/vercel-edge@8.47.0':
+ resolution: {integrity: sha512-oEVyoFehBnbao1aKd5OagkA5H2zowMsbgRZRPLFHELCSyoJbpShEM6L33rVvDz9xnkcaahuEO8op9U/4pUj1vA==}
engines: {node: '>=14.18'}
'@sentry/webpack-plugin@2.22.7':
@@ -4066,217 +4125,208 @@ packages:
'@sinonjs/text-encoding@0.7.3':
resolution: {integrity: sha512-DE427ROAphMQzU4ENbliGYrBSYPXF+TtLg9S8vzeA+OF4ZKzoDdzfL8sxuMUGS/lgRhM6j1URSk9ghf7Xo1tyA==}
- '@smithy/abort-controller@4.0.0':
- resolution: {integrity: sha512-xFNL1ZfluscKiVI0qlPEnu7pL1UgNNIzQdjTPkaO7JCJtIkbArPYNtqbxohuNaQdksJ01Tn1wLbDA5oIp62P8w==}
- engines: {node: '>=18.0.0'}
+ '@smithy/abort-controller@3.1.9':
+ resolution: {integrity: sha512-yiW0WI30zj8ZKoSYNx90no7ugVn3khlyH/z5W8qtKBtVE6awRALbhSG+2SAHA1r6bO/6M9utxYKVZ3PCJ1rWxw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/chunked-blob-reader-native@4.0.0':
- resolution: {integrity: sha512-R9wM2yPmfEMsUmlMlIgSzOyICs0x9uu7UTHoccMyt7BWw8shcGM8HqB355+BZCPBcySvbTYMs62EgEQkNxz2ig==}
- engines: {node: '>=18.0.0'}
+ '@smithy/chunked-blob-reader-native@3.0.1':
+ resolution: {integrity: sha512-VEYtPvh5rs/xlyqpm5NRnfYLZn+q0SRPELbvBV+C/G7IQ+ouTuo+NKKa3ShG5OaFR8NYVMXls9hPYLTvIKKDrQ==}
- '@smithy/chunked-blob-reader@5.0.0':
- resolution: {integrity: sha512-+sKqDBQqb036hh4NPaUiEkYFkTUGYzRsn3EuFhyfQfMy6oGHEUJDurLP9Ufb5dasr/XiAmPNMr6wa9afjQB+Gw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/chunked-blob-reader@4.0.0':
+ resolution: {integrity: sha512-jSqRnZvkT4egkq/7b6/QRCNXmmYVcHwnJldqJ3IhVpQE2atObVJ137xmGeuGFhjFUr8gCEVAOKwSY79OvpbDaQ==}
- '@smithy/config-resolver@4.0.0':
- resolution: {integrity: sha512-29pIDlUY/a9+ChJPAarPiD9cU8fBtBh0wFnmnhj7j5AhgMzc+uyXdfzmziH6xx2jzw54waSP3HfnFkTANZuPYA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/config-resolver@3.0.13':
+ resolution: {integrity: sha512-Gr/qwzyPaTL1tZcq8WQyHhTZREER5R1Wytmz4WnVGL4onA3dNk6Btll55c8Vr58pLdvWZmtG8oZxJTw3t3q7Jg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/core@3.0.0':
- resolution: {integrity: sha512-pKaas7RWvPljJ8uByCeBa10rtbVJCy4N/Fr7OSPxFezcyG0SQuXWnESZqzXj7m2+A+kPzG6fKyP4wrKidl2Ikg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/core@2.5.7':
+ resolution: {integrity: sha512-8olpW6mKCa0v+ibCjoCzgZHQx1SQmZuW/WkrdZo73wiTprTH6qhmskT60QLFdT9DRa5mXxjz89kQPZ7ZSsoqqg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/credential-provider-imds@4.0.0':
- resolution: {integrity: sha512-+hTShyZHiq2AVFOxJja3k6O17DKU6TaZbwr2y1OH5HQtUw2a+7O3mMR+10LVmc39ef72SAj+uFX0IW9rJGaLQQ==}
- engines: {node: '>=18.0.0'}
+ '@smithy/credential-provider-imds@3.2.8':
+ resolution: {integrity: sha512-ZCY2yD0BY+K9iMXkkbnjo+08T2h8/34oHd0Jmh6BZUSZwaaGlGCyBT/3wnS7u7Xl33/EEfN4B6nQr3Gx5bYxgw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/eventstream-codec@4.0.0':
- resolution: {integrity: sha512-YvKUUOo3qehqOxNrkax3YKXF1v0ff475FhDgbBmF8Bo0oOOpsXZyltjQnwBzIeTYo446ZPV85KM3kY4YoxUNOg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-codec@3.1.10':
+ resolution: {integrity: sha512-323B8YckSbUH0nMIpXn7HZsAVKHYHFUODa8gG9cHo0ySvA1fr5iWaNT+iIL0UCqUzG6QPHA3BSsBtRQou4mMqQ==}
- '@smithy/eventstream-serde-browser@4.0.0':
- resolution: {integrity: sha512-YRwsVPJU/DN1VshH8tKs4CxY66HLhmDSw6oZDM2LVIgHODsqpJBcRdEfcnb97ULmgyFrWxTjL9UXpyKPuJXQRA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-browser@3.0.14':
+ resolution: {integrity: sha512-kbrt0vjOIihW3V7Cqj1SXQvAI5BR8SnyQYsandva0AOR307cXAc+IhPngxIPslxTLfxwDpNu0HzCAq6g42kCPg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-config-resolver@4.0.0':
- resolution: {integrity: sha512-OZ/aK9LHsZch0VZ6bnf+dPD80kJripnZnkc36QNymnej49VkHJLSNJxsM0pwt53FA6+fUYYMMT0DVDTH1Msq2g==}
- engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-config-resolver@3.0.11':
+ resolution: {integrity: sha512-P2pnEp4n75O+QHjyO7cbw/vsw5l93K/8EWyjNCAAybYwUmj3M+hjSQZ9P5TVdUgEG08ueMAP5R4FkuSkElZ5tQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-node@4.0.0':
- resolution: {integrity: sha512-10b4F+zXbzxZHKuP+m2st/C+rEGK7FUut1dNSRw6DQCCfaTUecJGCoHPCmk2CRvuMTzunVpS1BKLMk839318VQ==}
- engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-node@3.0.13':
+ resolution: {integrity: sha512-zqy/9iwbj8Wysmvi7Lq7XFLeDgjRpTbCfwBhJa8WbrylTAHiAu6oQTwdY7iu2lxigbc9YYr9vPv5SzYny5tCXQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/eventstream-serde-universal@4.0.0':
- resolution: {integrity: sha512-HEhZpf731J3oFYJtaKO3dnV6stIjA+lJwXuXGu/WbSgicDWGAOITUwTt9ynldEFsnFkNu9b/C4ebXnJA16xSCA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-universal@3.0.13':
+ resolution: {integrity: sha512-L1Ib66+gg9uTnqp/18Gz4MDpJPKRE44geOjOQ2SVc0eiaO5l255ADziATZgjQjqumC7yPtp1XnjHlF1srcwjKw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/fetch-http-handler@5.0.0':
- resolution: {integrity: sha512-jUEq+4056uqsDLRqQb1fm48rrSMBYcBxVvODfiP37ORcV5n9xWJQsINWcIffyYxWTM5K0Y/GOfhSQGDtWpAPpQ==}
- engines: {node: '>=18.0.0'}
+ '@smithy/fetch-http-handler@4.1.3':
+ resolution: {integrity: sha512-6SxNltSncI8s689nvnzZQc/dPXcpHQ34KUj6gR/HBroytKOd/isMG3gJF/zBE1TBmTT18TXyzhg3O3SOOqGEhA==}
- '@smithy/hash-blob-browser@4.0.0':
- resolution: {integrity: sha512-JBXNC2YCDlm9uqP/eQJbK6auahAaq4HndJC2PURxWPRUDjbXDRJS5Npfi+7zSxKOSOWxXCG/3dLE5D8znI9l/w==}
- engines: {node: '>=18.0.0'}
+ '@smithy/hash-blob-browser@3.1.10':
+ resolution: {integrity: sha512-elwslXOoNunmfS0fh55jHggyhccobFkexLYC1ZeZ1xP2BTSrcIBaHV2b4xUQOdctrSNOpMqOZH1r2XzWTEhyfA==}
- '@smithy/hash-node@4.0.0':
- resolution: {integrity: sha512-25OxGYGnG3JPEOTk4iFE03bfmoC6GXUQ4L13z4cNdsS3mkncH22AGSDRfKwwEqutNUxXQZWVy9f72Fm59C9qlg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/hash-node@3.0.11':
+ resolution: {integrity: sha512-emP23rwYyZhQBvklqTtwetkQlqbNYirDiEEwXl2v0GYWMnCzxst7ZaRAnWuy28njp5kAH54lvkdG37MblZzaHA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/hash-stream-node@4.0.0':
- resolution: {integrity: sha512-MRgYnr9atik1c02mdgjjJkNK5A8IvRRlpa/zOdA8PxmQtBCwjODKzobyI166uamxrL20wg7vuKoVSAjQU4IXfw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/hash-stream-node@3.1.10':
+ resolution: {integrity: sha512-olomK/jZQ93OMayW1zfTHwcbwBdhcZOHsyWyiZ9h9IXvc1mCD/VuvzbLb3Gy/qNJwI4MANPLctTp2BucV2oU/Q==}
+ engines: {node: '>=16.0.0'}
- '@smithy/invalid-dependency@4.0.0':
- resolution: {integrity: sha512-0GTyet02HX/sPctEhOExY+3HI7hwkVwOoJg0XnItTJ+Xw7JMuL9FOxALTmKVIV6+wg0kF6veLeg72hVSbD9UCw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/invalid-dependency@3.0.11':
+ resolution: {integrity: sha512-NuQmVPEJjUX6c+UELyVz8kUx8Q539EDeNwbRyu4IIF8MeV7hUtq1FB3SHVyki2u++5XLMFqngeMKk7ccspnNyQ==}
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
- '@smithy/is-array-buffer@4.0.0':
- resolution: {integrity: sha512-saYhF8ZZNoJDTvJBEWgeBccCg+yvp1CX+ed12yORU3NilJScfc6gfch2oVb4QgxZrGUx3/ZJlb+c/dJbyupxlw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/is-array-buffer@3.0.0':
+ resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/md5-js@4.0.0':
- resolution: {integrity: sha512-NUjbK+M1RNd0J/mM3eh4Yw5SfUrJBsIAea/H5dvc8tirxWFHFDUHJ/CK40/vtY3niiYnygWjZZ+ISydray6Raw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/md5-js@3.0.11':
+ resolution: {integrity: sha512-3NM0L3i2Zm4bbgG6Ymi9NBcxXhryi3uE8fIfHJZIOfZVxOkGdjdgjR9A06SFIZCfnEIWKXZdm6Yq5/aPXFFhsQ==}
- '@smithy/middleware-content-length@4.0.0':
- resolution: {integrity: sha512-nM1RJqLwkSCidumGK8WwNEZ0a0D/4LkwqdPna+QmHrdPoAK6WGLyZFosdMpsAW1OIbDLWGa+r37Mo4Vth4S4kQ==}
- engines: {node: '>=18.0.0'}
+ '@smithy/middleware-content-length@3.0.13':
+ resolution: {integrity: sha512-zfMhzojhFpIX3P5ug7jxTjfUcIPcGjcQYzB9t+rv0g1TX7B0QdwONW+ATouaLoD7h7LOw/ZlXfkq4xJ/g2TrIw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-endpoint@4.0.0':
- resolution: {integrity: sha512-/f6z5SqUurmqemhBZNhM0c+C7QW0AY/zJpic//sbdu26q98HSPAI/xvzStjYq+UhtWeAe/jaX6gamdL/2r3W1g==}
- engines: {node: '>=18.0.0'}
+ '@smithy/middleware-endpoint@3.2.8':
+ resolution: {integrity: sha512-OEJZKVUEhMOqMs3ktrTWp7UvvluMJEvD5XgQwRePSbDg1VvBaL8pX8mwPltFn6wk1GySbcVwwyldL8S+iqnrEQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-retry@4.0.0':
- resolution: {integrity: sha512-K6tsFp3Ik44H3694a+LWoXLV8mqy8zn6/vTw2feU72MaIzi51EHMVNNxxpL6e2GI6oxw8FFRGWgGn8+wQRrHZQ==}
- engines: {node: '>=18.0.0'}
+ '@smithy/middleware-retry@3.0.34':
+ resolution: {integrity: sha512-yVRr/AAtPZlUvwEkrq7S3x7Z8/xCd97m2hLDaqdz6ucP2RKHsBjEqaUA2ebNv2SsZoPEi+ZD0dZbOB1u37tGCA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-serde@4.0.0':
- resolution: {integrity: sha512-aW4Zo8Cm988RCvhysErzqrQ4YPKgZFhajvgPoZnsWIDaZfT419J17Ahr13Lul3kqGad2dCz7YOrXd7r+UAEj/w==}
- engines: {node: '>=18.0.0'}
+ '@smithy/middleware-serde@3.0.11':
+ resolution: {integrity: sha512-KzPAeySp/fOoQA82TpnwItvX8BBURecpx6ZMu75EZDkAcnPtO6vf7q4aH5QHs/F1s3/snQaSFbbUMcFFZ086Mw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/middleware-stack@4.0.0':
- resolution: {integrity: sha512-4NFaX88RmgVrCyJv/3RsSdqMwxzI/EQa8nvhUDVxmLUMRS2JUdHnliD6IwKuqIwIzz+E1aZK3EhSHUM4HXp3ww==}
- engines: {node: '>=18.0.0'}
+ '@smithy/middleware-stack@3.0.11':
+ resolution: {integrity: sha512-1HGo9a6/ikgOMrTrWL/WiN9N8GSVYpuRQO5kjstAq4CvV59bjqnh7TbdXGQ4vxLD3xlSjfBjq5t1SOELePsLnA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/node-config-provider@4.0.0':
- resolution: {integrity: sha512-Crp9rg1ewjqgM2i7pWSpNhfbBa0usyKGDVQLEXTOpu6trFqq3BFLLCgbCE1S18h6mxqKnOqUONq3nWOxUk75XA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/node-config-provider@3.1.12':
+ resolution: {integrity: sha512-O9LVEu5J/u/FuNlZs+L7Ikn3lz7VB9hb0GtPT9MQeiBmtK8RSY3ULmsZgXhe6VAlgTw0YO+paQx4p8xdbs43vQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/node-http-handler@4.0.0':
- resolution: {integrity: sha512-WvumtEaFyxaI95zmj6eYlF/vCFCKNyru3P/UUHCUS9BjvajUtNckH2cY3bBfi+qqMPX5gha4g26lcOlE/wPz/Q==}
- engines: {node: '>=18.0.0'}
+ '@smithy/node-http-handler@3.3.3':
+ resolution: {integrity: sha512-BrpZOaZ4RCbcJ2igiSNG16S+kgAc65l/2hmxWdmhyoGWHTLlzQzr06PXavJp9OBlPEG/sHlqdxjWmjzV66+BSQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/property-provider@4.0.0':
- resolution: {integrity: sha512-AJSvY1k3SdM0stGrIjL8/FIjXO7X9I7KkznXDmr76RGz+yvaDHLsLm2hSHyzAlmwEQnHaafSU2dwaV0JcnR/4w==}
- engines: {node: '>=18.0.0'}
+ '@smithy/property-provider@3.1.11':
+ resolution: {integrity: sha512-I/+TMc4XTQ3QAjXfOcUWbSS073oOEAxgx4aZy8jHaf8JQnRkq2SZWw8+PfDtBvLUjcGMdxl+YwtzWe6i5uhL/A==}
+ engines: {node: '>=16.0.0'}
- '@smithy/protocol-http@5.0.0':
- resolution: {integrity: sha512-laAcIHWq9GQ5VdAS71DUrCj5HUHZ/89Ee+HRTLhFR5/E3toBlnZfPG+kqBajwfEB5aSdRuKslfzl5Dzrn3pr8A==}
- engines: {node: '>=18.0.0'}
+ '@smithy/protocol-http@4.1.8':
+ resolution: {integrity: sha512-hmgIAVyxw1LySOwkgMIUN0kjN8TG9Nc85LJeEmEE/cNEe2rkHDUWhnJf2gxcSRFLWsyqWsrZGw40ROjUogg+Iw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/querystring-builder@4.0.0':
- resolution: {integrity: sha512-kMqPDRf+/hwm+Dmk8AQCaYTJxNWWpNdJJteeMm0jwDbmRDqSqHQ7oLEVzvOnbWJu1poVtOhv6v7jsbyx9JASsw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/querystring-builder@3.0.11':
+ resolution: {integrity: sha512-u+5HV/9uJaeLj5XTb6+IEF/dokWWkEqJ0XiaRRogyREmKGUgZnNecLucADLdauWFKUNbQfulHFEZEdjwEBjXRg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/querystring-parser@4.0.0':
- resolution: {integrity: sha512-SbogL1PNEmm28ya0eK2S0EZEbYwe0qpaqSGrODm+uYS6dQ7pekPLVNXjBRuuLIAT26ZF2wTsp6X7AVRBNZd8qw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/querystring-parser@3.0.11':
+ resolution: {integrity: sha512-Je3kFvCsFMnso1ilPwA7GtlbPaTixa3WwC+K21kmMZHsBEOZYQaqxcMqeFFoU7/slFjKDIpiiPydvdJm8Q/MCw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/service-error-classification@4.0.0':
- resolution: {integrity: sha512-hIZreT6aXSG0PK/psT1S+kfeGTnYnRRlf7rU3yDmH/crSVjTbS/5h5w2J7eO2ODrQb3xfhJcYxQBREdwsZk6TA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/service-error-classification@3.0.11':
+ resolution: {integrity: sha512-QnYDPkyewrJzCyaeI2Rmp7pDwbUETe+hU8ADkXmgNusO1bgHBH7ovXJiYmba8t0fNfJx75fE8dlM6SEmZxheog==}
+ engines: {node: '>=16.0.0'}
- '@smithy/shared-ini-file-loader@4.0.0':
- resolution: {integrity: sha512-Ktupe8msp2GPaKKVfiz3NNUNnslJiGGRoVh3BDpm/RChkQ5INQpqmTc2taE0XChNYumNynLfb3keekIPaiaZeg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/shared-ini-file-loader@3.1.12':
+ resolution: {integrity: sha512-1xKSGI+U9KKdbG2qDvIR9dGrw3CNx+baqJfyr0igKEpjbHL5stsqAesYBzHChYHlelWtb87VnLWlhvfCz13H8Q==}
+ engines: {node: '>=16.0.0'}
- '@smithy/signature-v4@5.0.0':
- resolution: {integrity: sha512-zqcOR1sZTuoA6K3PBNwzu4YgT1pmIwz47tYpgaJjBTfGUIMtcjUaXKtuSKEScdv+0wx45/PbXz0//hk80fky3w==}
- engines: {node: '>=18.0.0'}
+ '@smithy/signature-v4@4.2.4':
+ resolution: {integrity: sha512-5JWeMQYg81TgU4cG+OexAWdvDTs5JDdbEZx+Qr1iPbvo91QFGzjy0IkXAKaXUHqmKUJgSHK0ZxnCkgZpzkeNTA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/smithy-client@4.0.0':
- resolution: {integrity: sha512-AgcZ6B+JuqArYioAbaYrCpTCjYsD3/1hPSXntbN2ipsfc4hE+72RFZevUPYgsKxpy3G+QxuLfqm11i3+oX4oSA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/smithy-client@3.7.0':
+ resolution: {integrity: sha512-9wYrjAZFlqWhgVo3C4y/9kpc68jgiSsKUnsFPzr/MSiRL93+QRDafGTfhhKAb2wsr69Ru87WTiqSfQusSmWipA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/types@4.0.0':
- resolution: {integrity: sha512-aNwIGSOgDOhtTRY/rrn2aeuQeKw/IFrQ998yK5l6Ah853WeWIEmFPs/EO4OpfADEdcK+igWnZytm/oUgkLgUYg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/types@3.7.2':
+ resolution: {integrity: sha512-bNwBYYmN8Eh9RyjS1p2gW6MIhSO2rl7X9QeLM8iTdcGRP+eDiIWDt66c9IysCc22gefKszZv+ubV9qZc7hdESg==}
+ engines: {node: '>=16.0.0'}
- '@smithy/url-parser@4.0.0':
- resolution: {integrity: sha512-2iPpuLoH0hCKpLtqVgilHtpPKsmHihbkwBm3h3RPuEctdmuiOlFRZ2ZI8IHSwl0o4ff5IdyyJ0yu/2tS9KpUug==}
- engines: {node: '>=18.0.0'}
+ '@smithy/url-parser@3.0.11':
+ resolution: {integrity: sha512-TmlqXkSk8ZPhfc+SQutjmFr5FjC0av3GZP4B/10caK1SbRwe/v+Wzu/R6xEKxoNqL+8nY18s1byiy6HqPG37Aw==}
- '@smithy/util-base64@4.0.0':
- resolution: {integrity: sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-base64@3.0.0':
+ resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-body-length-browser@4.0.0':
- resolution: {integrity: sha512-sNi3DL0/k64/LO3A256M+m3CDdG6V7WKWHdAiBBMUN8S3hK3aMPhwnPik2A/a2ONN+9doY9UxaLfgqsIRg69QA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-body-length-browser@3.0.0':
+ resolution: {integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==}
- '@smithy/util-body-length-node@4.0.0':
- resolution: {integrity: sha512-q0iDP3VsZzqJyje8xJWEJCNIu3lktUGVoSy1KB0UWym2CL1siV3artm+u1DFYTLejpsrdGyCSWBdGNjJzfDPjg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-body-length-node@3.0.0':
+ resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==}
+ engines: {node: '>=16.0.0'}
'@smithy/util-buffer-from@2.2.0':
resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==}
engines: {node: '>=14.0.0'}
- '@smithy/util-buffer-from@4.0.0':
- resolution: {integrity: sha512-9TOQ7781sZvddgO8nxueKi3+yGvkY35kotA0Y6BWRajAv8jjmigQ1sBwz0UX47pQMYXJPahSKEKYFgt+rXdcug==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-buffer-from@3.0.0':
+ resolution: {integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-config-provider@4.0.0':
- resolution: {integrity: sha512-L1RBVzLyfE8OXH+1hsJ8p+acNUSirQnWQ6/EgpchV88G6zGBTDPdXiiExei6Z1wR2RxYvxY/XLw6AMNCCt8H3w==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-config-provider@3.0.0':
+ resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-defaults-mode-browser@4.0.0':
- resolution: {integrity: sha512-7wqsXkzaJkpSqV+Ca95pN9yQutXvhaKeCxGGmjWnRGXY1fW/yR7wr1ouNnUYCJuTS8MvmB61xp5Qdj8YMgIA2Q==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-defaults-mode-browser@3.0.34':
+ resolution: {integrity: sha512-FumjjF631lR521cX+svMLBj3SwSDh9VdtyynTYDAiBDEf8YPP5xORNXKQ9j0105o5+ARAGnOOP/RqSl40uXddA==}
+ engines: {node: '>= 10.0.0'}
- '@smithy/util-defaults-mode-node@4.0.0':
- resolution: {integrity: sha512-P8VK885kiRT6TEtvcQvz+L/+xIhrDhCmM664ToUtrshFSBhwGYaJWlQNAH9fXlMhwnNvR+tmh1KngKJIgQP6bw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-defaults-mode-node@3.0.34':
+ resolution: {integrity: sha512-vN6aHfzW9dVVzkI0wcZoUXvfjkl4CSbM9nE//08lmUMyf00S75uuCpTrqF9uD4bD9eldIXlt53colrlwKAT8Gw==}
+ engines: {node: '>= 10.0.0'}
- '@smithy/util-endpoints@3.0.0':
- resolution: {integrity: sha512-kyOKbkg77lsIVN2jC08uEWm3s16eK1YdVDyi/nKeBDbUnjR30dmTEga79E5tiu5OEgTAdngNswA9V+L6xa65sA==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-endpoints@2.1.7':
+ resolution: {integrity: sha512-tSfcqKcN/Oo2STEYCABVuKgJ76nyyr6skGl9t15hs+YaiU06sgMkN7QYjo0BbVw+KT26zok3IzbdSOksQ4YzVw==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-hex-encoding@4.0.0':
- resolution: {integrity: sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-hex-encoding@3.0.0':
+ resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-middleware@4.0.0':
- resolution: {integrity: sha512-ncuvK6ekpDqtASHg7jx3d3nrkD2BsTzUmeVgvtepuHGxtySY8qUlb4SiNRdxHYcv3pL2SwdXs70RwKBU0edW5w==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-middleware@3.0.11':
+ resolution: {integrity: sha512-dWpyc1e1R6VoXrwLoLDd57U1z6CwNSdkM69Ie4+6uYh2GC7Vg51Qtan7ITzczuVpqezdDTKJGJB95fFvvjU/ow==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-retry@4.0.0':
- resolution: {integrity: sha512-64WFoC19NVuHh3HQO2QbGw+n6GzQ6VH/drxwXLOU3GDLKxUUzIR9XNm9aTVqh8/7R+y+DgITiv5LpX5XdOy73A==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-retry@3.0.11':
+ resolution: {integrity: sha512-hJUC6W7A3DQgaee3Hp9ZFcOxVDZzmBIRBPlUAk8/fSOEl7pE/aX7Dci0JycNOnm9Mfr0KV2XjIlUOcGWXQUdVQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-stream@4.0.0':
- resolution: {integrity: sha512-ctcLq8Ogi2FQuGy2RxJXGGrozhFEb4p9FawB5SpTNAkNQWbNHcwrGcVSVI3FtdQtkNAINLiEdMnrx+UN/mafvw==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-stream@3.3.4':
+ resolution: {integrity: sha512-SGhGBG/KupieJvJSZp/rfHHka8BFgj56eek9px4pp7lZbOF+fRiVr4U7A3y3zJD8uGhxq32C5D96HxsTC9BckQ==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-uri-escape@4.0.0':
- resolution: {integrity: sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-uri-escape@3.0.0':
+ resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==}
+ engines: {node: '>=16.0.0'}
'@smithy/util-utf8@2.3.0':
resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==}
engines: {node: '>=14.0.0'}
- '@smithy/util-utf8@4.0.0':
- resolution: {integrity: sha512-b+zebfKCfRdgNJDknHCob3O7FpeYQN6ZG6YLExMcasDHsCXlsXCEuiPZeLnJLpwa5dvPetGlnGCiMHuLwGvFow==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-utf8@3.0.0':
+ resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==}
+ engines: {node: '>=16.0.0'}
- '@smithy/util-waiter@4.0.0':
- resolution: {integrity: sha512-C8dSfGmZH0ecrmnJOw4aDXJ47krihnUtee8eDZ2fA+28wTjD4TVM3L/bBQYnBBlDVWcYzldLV7loPRsPc1kERg==}
- engines: {node: '>=18.0.0'}
+ '@smithy/util-waiter@3.2.0':
+ resolution: {integrity: sha512-PpjSboaDUE6yl+1qlg3Si57++e84oXdWGbuFUSAciXsVfEZJJJupR2Nb0QuXHiunt2vGR+1PTizOMvnUPaG2Qg==}
+ engines: {node: '>=16.0.0'}
'@snyk/github-codeowners@1.1.0':
resolution: {integrity: sha512-lGFf08pbkEac0NYgVf4hdANpAgApRjNByLXB+WBip3qj1iendOIyAwP2GKkKbQMNVy2r1xxDf0ssfWscoiC+Vw==}
@@ -4315,68 +4365,68 @@ packages:
chokidar:
optional: true
- '@swc/core-darwin-arm64@1.10.6':
- resolution: {integrity: sha512-USbMvT8Rw5PvIfF6HyTm+yW84J9c45emzmHBDIWY76vZHkFsS5MepNi+JLQyBzBBgE7ScwBRBNhRx6VNhkSoww==}
+ '@swc/core-darwin-arm64@1.10.4':
+ resolution: {integrity: sha512-sV/eurLhkjn/197y48bxKP19oqcLydSel42Qsy2zepBltqUx+/zZ8+/IS0Bi7kaWVFxerbW1IPB09uq8Zuvm3g==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
- '@swc/core-darwin-x64@1.10.6':
- resolution: {integrity: sha512-7t2IozcZN4r1p27ei+Kb8IjN4aLoBDn107fPi+aPLcVp2uFgJEUzhCDuZXBNW2057Mx1OHcjzrkaleRpECz3Xg==}
+ '@swc/core-darwin-x64@1.10.4':
+ resolution: {integrity: sha512-gjYNU6vrAUO4+FuovEo9ofnVosTFXkF0VDuo1MKPItz6e2pxc2ale4FGzLw0Nf7JB1sX4a8h06CN16/pLJ8Q2w==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
- '@swc/core-linux-arm-gnueabihf@1.10.6':
- resolution: {integrity: sha512-CPgWT+D0bDp/qhXsLkIJ54LmKU1/zvyGaf/yz8A4iR+YoF6R5CSXENXhNJY8cIrb6+uNWJZzHJ+gefB5V51bpA==}
+ '@swc/core-linux-arm-gnueabihf@1.10.4':
+ resolution: {integrity: sha512-zd7fXH5w8s+Sfvn2oO464KDWl+ZX1MJiVmE4Pdk46N3PEaNwE0koTfgx2vQRqRG4vBBobzVvzICC3618WcefOA==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
- '@swc/core-linux-arm64-gnu@1.10.6':
- resolution: {integrity: sha512-5qZ6hVnqO/ShETXdGSzvdGUVx372qydlj1YWSYiaxQzTAepEBc8TC1NVUgYtOHOKVRkky1d7p6GQ9lymsd4bHw==}
+ '@swc/core-linux-arm64-gnu@1.10.4':
+ resolution: {integrity: sha512-+UGfoHDxsMZgFD3tABKLeEZHqLNOkxStu+qCG7atGBhS4Slri6h6zijVvf4yI5X3kbXdvc44XV/hrP/Klnui2A==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-arm64-musl@1.10.6':
- resolution: {integrity: sha512-hB2xZFmXCKf2iJF5y2z01PSuLqEoUP3jIX/XlIHN+/AIP7PkSKsValE63LnjlnWPnSEI0IxUyRE3T3FzWE/fQQ==}
+ '@swc/core-linux-arm64-musl@1.10.4':
+ resolution: {integrity: sha512-cDDj2/uYsOH0pgAnDkovLZvKJpFmBMyXkxEG6Q4yw99HbzO6QzZ5HDGWGWVq/6dLgYKlnnmpjZCPPQIu01mXEg==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
- '@swc/core-linux-x64-gnu@1.10.6':
- resolution: {integrity: sha512-PRGPp0I22+oJ8RMGg8M4hXYxEffH3ayu0WoSDPOjfol1F51Wj1tfTWN4wVa2RibzJjkBwMOT0KGLGb/hSEDDXQ==}
+ '@swc/core-linux-x64-gnu@1.10.4':
+ resolution: {integrity: sha512-qJXh9D6Kf5xSdGWPINpLGixAbB5JX8JcbEJpRamhlDBoOcQC79dYfOMEIxWPhTS1DGLyFakAx2FX/b2VmQmj0g==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-linux-x64-musl@1.10.6':
- resolution: {integrity: sha512-SoNBxlA86lnoV9vIz/TCyakLkdRhFSHx6tFMKNH8wAhz1kKYbZfDmpYoIzeQqdTh0tpx8e/Zu1zdK4smovsZqQ==}
+ '@swc/core-linux-x64-musl@1.10.4':
+ resolution: {integrity: sha512-A76lIAeyQnHCVt0RL/pG+0er8Qk9+acGJqSZOZm67Ve3B0oqMd871kPtaHBM0BW3OZAhoILgfHW3Op9Q3mx3Cw==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
- '@swc/core-win32-arm64-msvc@1.10.6':
- resolution: {integrity: sha512-6L5Y2E+FVvM+BtoA+mJFjf/SjpFr73w2kHBxINxwH8/PkjAjkePDr5m0ibQhPXV61bTwX49+1otzTY85EsUW9Q==}
+ '@swc/core-win32-arm64-msvc@1.10.4':
+ resolution: {integrity: sha512-e6j5kBu4fIY7fFxFxnZI0MlEovRvp50Lg59Fw+DVbtqHk3C85dckcy5xKP+UoXeuEmFceauQDczUcGs19SRGSQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
- '@swc/core-win32-ia32-msvc@1.10.6':
- resolution: {integrity: sha512-kxK3tW8DJwEkAkwy0vhwoBAShRebH1QTe0mvH9tlBQ21rToVZQn+GCV/I44dind80hYPw0Tw2JKFVfoEJyBszg==}
+ '@swc/core-win32-ia32-msvc@1.10.4':
+ resolution: {integrity: sha512-RSYHfdKgNXV/amY5Tqk1EWVsyQnhlsM//jeqMLw5Fy9rfxP592W9UTumNikNRPdjI8wKKzNMXDb1U29tQjN0dg==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
- '@swc/core-win32-x64-msvc@1.10.6':
- resolution: {integrity: sha512-4pJka/+t8XcHee12G/R5VWcilkp5poT2EJhrybpuREkpQ7iC/4WOlOVrohbWQ4AhDQmojYQI/iS+gdF2JFLzTQ==}
+ '@swc/core-win32-x64-msvc@1.10.4':
+ resolution: {integrity: sha512-1ujYpaqfqNPYdwKBlvJnOqcl+Syn3UrQ4XE0Txz6zMYgyh6cdU6a3pxqLqIUSJ12MtXRA9ZUhEz1ekU3LfLWXw==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
- '@swc/core@1.10.6':
- resolution: {integrity: sha512-zgXXsI6SAVwr6XsXyMnqlyLoa1lT+r09bAWI1xT3679ejWqI1Vnl14eJG0GjWYXCEMKHCNytfMq3OOQ62C39QQ==}
+ '@swc/core@1.10.4':
+ resolution: {integrity: sha512-ut3zfiTLORMxhr6y/GBxkHmzcGuVpwJYX4qyXWuBKkpw/0g0S5iO1/wW7RnLnZbAi8wS/n0atRZoaZlXWBkeJg==}
engines: {node: '>=10'}
peerDependencies:
'@swc/helpers': '*'
@@ -4387,8 +4437,8 @@ packages:
'@swc/counter@0.1.3':
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
- '@swc/helpers@0.5.15':
- resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+ '@swc/helpers@0.5.13':
+ resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==}
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
@@ -4400,25 +4450,25 @@ packages:
resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
engines: {node: '>=14.16'}
- '@tailwindcss/typography@0.5.16':
- resolution: {integrity: sha512-0wDLwCVF5V3x3b1SGXPCDcdsbDHMBe+lkFzBRaHeLvNi+nrrnZ1lA18u+OTWO8iSWU2GxUOCvlXtDuqftc1oiA==}
+ '@tailwindcss/typography@0.5.15':
+ resolution: {integrity: sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==}
peerDependencies:
- tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1'
+ tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20'
- '@tanstack/query-core@5.62.16':
- resolution: {integrity: sha512-9Sgft7Qavcd+sN0V25xVyo0nfmcZXBuODy3FVG7BMWTg1HMLm8wwG5tNlLlmSic1u7l1v786oavn+STiFaPH2g==}
+ '@tanstack/query-core@5.62.12':
+ resolution: {integrity: sha512-6igFeBgymHkCxVgaEk+yiLwkMf9haui/EQLmI3o9CatOyDThEoFKe8toLWvWliZC/Jf+h7NwHi/zjfyLArr1ow==}
- '@tanstack/query-devtools@5.62.16':
- resolution: {integrity: sha512-3ff6UBJr0H3nIhfLSl9911rvKqXf0u4B58jl0uYdDWLqPk9pCvYIbxC35cGxK2+8INl4IaFVUHb/IdgWrNkg3Q==}
+ '@tanstack/query-devtools@5.62.9':
+ resolution: {integrity: sha512-b1NZzDLVf6laJsB1Cfm3ieuYzM+WqoO8qpm9v+3Etwd+Ph4zkhUMiT+wcWj5AhEPsXiRodKYiiW048VDNdBxNg==}
- '@tanstack/react-query-devtools@5.62.16':
- resolution: {integrity: sha512-EjF0tgHnWYcqhk8KxGKnmGlYcnldhWjW3bbH2WZqxo7t41ytzkIQtZ/UyLph//YMmZZE/RVTmSo3rGq/EG9iCA==}
+ '@tanstack/react-query-devtools@5.62.14':
+ resolution: {integrity: sha512-5OEOWzO9gLovbKozIaSRHXXPd30dooa+MZTG0gfMMTKXhH5lct6SLozQ5ngRvzrbYpfL4c9i2+6bX8Hwu8sT0w==}
peerDependencies:
- '@tanstack/react-query': ^5.62.16
+ '@tanstack/react-query': ^5.62.14
react: ^18 || ^19
- '@tanstack/react-query@5.62.16':
- resolution: {integrity: sha512-XJIZNj65d2IdvU8VBESmrPakfIm6FSdHDzrS1dPrAwmq3ZX+9riMh/ZfbNQHAWnhrgmq7KoXpgZSRyXnqMYT9A==}
+ '@tanstack/react-query@5.62.14':
+ resolution: {integrity: sha512-ev/6eVdJvX9vpomKmFuXsrQb6TwqqBn/7OeB0KZkHjEYk/Bo1XBMj8wRmobn8pqdU8lK271tUjt+0B0UQ9MZ6A==}
peerDependencies:
react: ^18 || ^19
@@ -4429,18 +4479,18 @@ packages:
react: '>=16.8'
react-dom: '>=16.8'
- '@tanstack/react-virtual@3.11.2':
- resolution: {integrity: sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==}
+ '@tanstack/react-virtual@3.10.8':
+ resolution: {integrity: sha512-VbzbVGSsZlQktyLrP5nxE+vE1ZR+U0NFAWPbJLoG2+DKPwd2D7dVICTVIIaYlJqX1ZCEnYDbaOpmMwbsyhBoIA==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
'@tanstack/table-core@8.20.5':
resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==}
engines: {node: '>=12'}
- '@tanstack/virtual-core@3.11.2':
- resolution: {integrity: sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==}
+ '@tanstack/virtual-core@3.10.8':
+ resolution: {integrity: sha512-PBu00mtt95jbKFi6Llk9aik8bnR3tR/oQP1o3TSi+iG//+Q2RTIzCEgKkHG8BB86kxMNW6O8wku+Lmi+QFR6jA==}
'@testing-library/dom@10.4.0':
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
@@ -4684,8 +4734,8 @@ packages:
'@types/content-disposition@0.5.8':
resolution: {integrity: sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==}
- '@types/conventional-commits-parser@5.0.1':
- resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==}
+ '@types/conventional-commits-parser@5.0.0':
+ resolution: {integrity: sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==}
'@types/cookie@0.6.0':
resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==}
@@ -4708,8 +4758,8 @@ packages:
'@types/express-serve-static-core@4.19.6':
resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
- '@types/express-serve-static-core@5.0.4':
- resolution: {integrity: sha512-5kz9ScmzBdzTgB/3susoCgfqNDzBjvLL4taparufgSvlwjdLy6UyUy9T/tCpYd2GIdIilCatC4iSQS0QSYHt0w==}
+ '@types/express-serve-static-core@5.0.1':
+ resolution: {integrity: sha512-CRICJIl0N5cXDONAdlTv5ShATZ4HEwk6kDDIW2/w9qOWKg+NU/5F8wYRWCrONad0/UKkloNSmmyN/wX4rtpbVA==}
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -4789,14 +4839,14 @@ packages:
'@types/mysql@2.15.26':
resolution: {integrity: sha512-DSLCOXhkvfS5WNNPbfn2KdICAmk8lLc+/PNvnPnF7gOdMZCxopXduqv0OQ13y/yA/zXTSikZZqVgybUxOEg6YQ==}
- '@types/node-fetch@2.6.12':
- resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==}
+ '@types/node-fetch@2.6.11':
+ resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==}
'@types/node@14.18.63':
resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
- '@types/node@20.17.12':
- resolution: {integrity: sha512-vo/wmBgMIiEA23A/knMfn/cf37VnuF52nZh5ZoW0GWt4e4sxNquibrMRJ7UQsA06+MBx9r/H1jsI9grYjQCQlw==}
+ '@types/node@20.17.11':
+ resolution: {integrity: sha512-Ept5glCK35R8yeyIeYlRIZtX6SLRyqMhOFTgj5SOkMpLTdw3SEHI9fHx60xaUZ+V1aJxQJODE+7/j5ocZydYTg==}
'@types/nodemailer@6.4.17':
resolution: {integrity: sha512-I9CCaIp6DTldEg7vyUTZi8+9Vo0hi1/T8gv3C89yk1rSAAzoKQ8H8ki/jBYJSFoH/BisgLP8tkZMlQ91CIquww==}
@@ -4816,8 +4866,8 @@ packages:
'@types/pg@8.6.1':
resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==}
- '@types/prop-types@15.7.14':
- resolution: {integrity: sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==}
+ '@types/prop-types@15.7.13':
+ resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
'@types/proxyquire@1.3.31':
resolution: {integrity: sha512-uALowNG2TSM1HNPMMOR0AJwv4aPYPhqB0xlEhkeRTMuto5hjoSPZkvgu1nbPUkz3gEPAHv4sy4DmKsurZiEfRQ==}
@@ -4881,63 +4931,52 @@ packages:
'@types/ws@8.5.13':
resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
- '@typescript-eslint/eslint-plugin@7.18.0':
- resolution: {integrity: sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/eslint-plugin@8.18.1':
+ resolution: {integrity: sha512-Ncvsq5CT3Gvh+uJG0Lwlho6suwDfUXH0HztslDf5I+F2wAFAZMRwYLEorumpKLzmO2suAXZ/td1tBg4NZIi9CQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^7.0.0
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@typescript-eslint/parser@7.18.0':
- resolution: {integrity: sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/parser@8.18.1':
+ resolution: {integrity: sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@typescript-eslint/scope-manager@7.18.0':
- resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/scope-manager@8.18.1':
+ resolution: {integrity: sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@7.18.0':
- resolution: {integrity: sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/type-utils@8.18.1':
+ resolution: {integrity: sha512-jAhTdK/Qx2NJPNOTxXpMwlOiSymtR2j283TtPqXkKBdH8OAMmhiUfP0kJjc/qSE51Xrq02Gj9NY7MwK+UxVwHQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@typescript-eslint/types@7.18.0':
- resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/types@8.18.1':
+ resolution: {integrity: sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@7.18.0':
- resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/typescript-estree@8.18.1':
+ resolution: {integrity: sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.8.0'
- '@typescript-eslint/utils@7.18.0':
- resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/utils@8.18.1':
+ resolution: {integrity: sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.56.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@typescript-eslint/visitor-keys@7.18.0':
- resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/visitor-keys@8.18.1':
+ resolution: {integrity: sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@uiw/codemirror-extensions-basic-setup@4.23.7':
resolution: {integrity: sha512-9/2EUa1Lck4kFKkR2BkxlZPpgD/EWuKHnOlysf1yHKZGraaZmZEaUw+utDK4QcuJc8Iz097vsLz4f4th5EU27g==}
@@ -4974,9 +5013,6 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- '@ungap/structured-clone@1.2.1':
- resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
-
'@vitejs/plugin-react@4.3.4':
resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -5057,14 +5093,6 @@ packages:
'@webassemblyjs/wast-printer@1.14.1':
resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
- '@whatwg-node/disposablestack@0.0.5':
- resolution: {integrity: sha512-9lXugdknoIequO4OYvIjhygvfSEgnO8oASLqLelnDhkRjgBZhc39shC3QSlZuyDO9bgYSIVa2cHAiN+St3ty4w==}
- engines: {node: '>=18.0.0'}
-
- '@whatwg-node/fetch@0.10.1':
- resolution: {integrity: sha512-gmPOLrsjSZWEZlr9Oe5+wWFBq3CG6fN13rGlM91Jsj/vZ95G9CCvrORGBAxMXy0AJGiC83aYiHXn3JzTzXQmbA==}
- engines: {node: '>=18.0.0'}
-
'@whatwg-node/fetch@0.9.23':
resolution: {integrity: sha512-7xlqWel9JsmxahJnYVUj/LLxWcnA93DR4c9xlw3U814jWTiYalryiH1qToik1hOxweKKRLi4haXHM5ycRksPBA==}
engines: {node: '>=18.0.0'}
@@ -5073,10 +5101,6 @@ packages:
resolution: {integrity: sha512-tcZAhrpx6oVlkEsRngeTEEE7I5/QdLjeEz4IlekabGaESP7+Dkm/6a9KcF1KdCBB7mO9PXtBkwCuTCt8+UPg8Q==}
engines: {node: '>=18.0.0'}
- '@whatwg-node/node-fetch@0.7.5':
- resolution: {integrity: sha512-t7kGrt2fdfNvzy1LCAE9/OnIyMtizgFhgJmk7iLJwQsLmR7S86F8Q4aDRPbCfo7pISJP6Fx/tPdfFNjHS23WTA==}
- engines: {node: '>=18.0.0'}
-
'@wry/caches@1.0.1':
resolution: {integrity: sha512-bXuaUNLVVkD20wcGBWRyo7j9N3TxePEWFZj2Y+r9OoUzfqmavM84+mFykRicNsBqatba5JLay1t48wxaXaWnlA==}
engines: {node: '>=8'}
@@ -5089,6 +5113,10 @@ packages:
resolution: {integrity: sha512-BRFORjsTuQv5gxcXsuDXx6oGRhuVsEGwZy6LOzRRfgu+eSfxbhUQ9L9YtSEIuIjY/o7g3iWFjrc5eSY1GXP2Dw==}
engines: {node: '>=8'}
+ '@wry/trie@0.4.3':
+ resolution: {integrity: sha512-I6bHwH0fSf6RqQcnnXLJKhkSXG45MFral3GxPaY4uAl0LYDZM+YDVDAiU9bYwjTuysy1S0IeecWtmq1SZA3M1w==}
+ engines: {node: '>=8'}
+
'@wry/trie@0.5.0':
resolution: {integrity: sha512-FNoYzHawTMk/6KMQoEG5O4PuioX19UbwdQKF44yw0nLfOypfQdjtfZzo/UIJWAJ23sNIFbD1Ug9lbaDGMwbqQA==}
engines: {node: '>=8'}
@@ -5186,8 +5214,8 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
- agent-base@7.1.3:
- resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
+ agent-base@7.1.1:
+ resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
aggregate-error@3.1.0:
@@ -5207,11 +5235,6 @@ packages:
peerDependencies:
ajv: ^6.9.1
- ajv-keywords@5.1.0:
- resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
- peerDependencies:
- ajv: ^8.8.2
-
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
@@ -5231,8 +5254,8 @@ packages:
peerDependencies:
amqplib: '*'
- amqplib@0.10.5:
- resolution: {integrity: sha512-Dx5zmy0Ur+Q7LPPdhz+jx5IzmJBoHd15tOeAfQ8SuvEtyPJ20hBemhOBA4b1WeORCRa0ENM/kHCzmem1w/zHvQ==}
+ amqplib@0.10.4:
+ resolution: {integrity: sha512-DMZ4eCEjAVdX1II2TfIUpJhfKAuoCeDIo/YyETbfAqehHTXxxs7WOOd+N1Xxr4cKhx12y23zk8/os98FxlZHrw==}
engines: {node: '>=10'}
ansi-colors@4.1.3:
@@ -5329,8 +5352,8 @@ packages:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
- array-buffer-byte-length@1.0.2:
- resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
+ array-buffer-byte-length@1.0.1:
+ resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
engines: {node: '>= 0.4'}
array-flatten@1.1.1:
@@ -5358,27 +5381,27 @@ packages:
resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
engines: {node: '>= 0.4'}
- array.prototype.flat@1.3.3:
- resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
+ array.prototype.flat@1.3.2:
+ resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
engines: {node: '>= 0.4'}
- array.prototype.flatmap@1.3.3:
- resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
+ array.prototype.flatmap@1.3.2:
+ resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
engines: {node: '>= 0.4'}
array.prototype.tosorted@1.1.4:
resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
engines: {node: '>= 0.4'}
- arraybuffer.prototype.slice@1.0.4:
- resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
+ arraybuffer.prototype.slice@1.0.3:
+ resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
engines: {node: '>= 0.4'}
asap@2.0.6:
resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==}
- assert-never@1.4.0:
- resolution: {integrity: sha512-5oJg84os6NMQNl27T9LnZkvvqzvAnHu03ShCnoj6bsJwS7L8AO4lf+C/XjK/nvzEqQB744moC6V128RucQd1jA==}
+ assert-never@1.3.0:
+ resolution: {integrity: sha512-9Z3vxQ+berkL/JJo0dK+EY3Lp0s3NtSnP3VCLsh5HDcZPrh0M+KQRK5sWhUeyPPH+/RCxZqOxLMR+YC6vlviEQ==}
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
@@ -5458,8 +5481,8 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- bare-events@2.5.3:
- resolution: {integrity: sha512-pCO3aoRJ0MBiRMu8B7vUga0qL3L7gO1+SW7ku6qlSsMLwuhaawnuvZDyzJY/kyC63Un0XAB0OPUcfF1eTO/V+Q==}
+ bare-events@2.5.1:
+ resolution: {integrity: sha512-Bw2PgKSrZ3uCuSV9WQ998c/GTJTd+9bWj97n7aDQMP8dP/exAZQlJeswPty0ISy+HZD+9Ex+C7CCnc9Q5QJFmQ==}
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -5516,8 +5539,8 @@ packages:
browser-stdout@1.3.1:
resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
- browserslist@4.24.3:
- resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
+ browserslist@4.24.2:
+ resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -5587,16 +5610,8 @@ packages:
resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==}
engines: {node: '>=8'}
- call-bind-apply-helpers@1.0.1:
- resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
- engines: {node: '>= 0.4'}
-
- call-bind@1.0.8:
- resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
- engines: {node: '>= 0.4'}
-
- call-bound@1.0.3:
- resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ call-bind@1.0.7:
+ resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
callsites@3.1.0:
@@ -5621,8 +5636,8 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
- caniuse-lite@1.0.30001690:
- resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
+ caniuse-lite@1.0.30001677:
+ resolution: {integrity: sha512-fmfjsOlJUpMWu+mAAtZZZHz7UEwsUxIIvu1TJfO1HqFQvB/B+ii0xr9B5HpbZY/mC4XZ8SvjHJqtAY6pDPQEog==}
capital-case@1.0.4:
resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==}
@@ -5656,8 +5671,8 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.4.1:
- resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
+ chalk@5.3.0:
+ resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
change-case-all@1.0.15:
@@ -5965,17 +5980,21 @@ packages:
engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'}
hasBin: true
- cross-fetch@3.2.0:
- resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
+ cross-fetch@3.1.8:
+ resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==}
cross-inspect@1.0.1:
resolution: {integrity: sha512-Pcw1JTvZLSJH83iiGWt6fRcT+BjZlCDRVwYLbUcHzv/CRpB7r0MlSrGbIyQvVSNyGnbt7G4AXuyCiDR3POvZ1A==}
engines: {node: '>=16.0.0'}
- cross-spawn@6.0.6:
- resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
+ cross-spawn@6.0.5:
+ resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
engines: {node: '>=4.8'}
+ cross-spawn@7.0.3:
+ resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ engines: {node: '>= 8'}
+
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
@@ -6020,20 +6039,20 @@ packages:
resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
engines: {node: '>=18'}
- data-view-buffer@1.0.2:
- resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
+ data-view-buffer@1.0.1:
+ resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
engines: {node: '>= 0.4'}
- data-view-byte-length@1.0.2:
- resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
+ data-view-byte-length@1.0.1:
+ resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
engines: {node: '>= 0.4'}
- data-view-byte-offset@1.0.1:
- resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
+ data-view-byte-offset@1.0.0:
+ resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
engines: {node: '>= 0.4'}
- dataloader@2.2.3:
- resolution: {integrity: sha512-y2krtASINtPFS1rSDjacrFgn1dcUuoREVabwlOGOe4SdxenREqwjwjElAdwvbGM7kgZz9a3KVicWR7vcz8rnzA==}
+ dataloader@2.2.2:
+ resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==}
date-fns@4.1.0:
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
@@ -6063,8 +6082,8 @@ packages:
supports-color:
optional: true
- debug@4.4.0:
- resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -6208,10 +6227,6 @@ packages:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
- doctrine@3.0.0:
- resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
- engines: {node: '>=6.0.0'}
-
doctypes@1.1.0:
resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==}
@@ -6245,8 +6260,8 @@ packages:
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
- domutils@3.2.2:
- resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
+ domutils@3.1.0:
+ resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
@@ -6271,10 +6286,6 @@ packages:
resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==}
engines: {node: '>=4'}
- dunder-proto@1.0.1:
- resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
- engines: {node: '>= 0.4'}
-
duplexer2@0.1.4:
resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
@@ -6303,8 +6314,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- electron-to-chromium@1.5.79:
- resolution: {integrity: sha512-nYOxJNxQ9Om4EC88BE4pPoNI8xwSFf8pU/BAeOl4Hh/b/i6V4biTAzwV7pXi3ARKeoYO5JZKMIXTryXSVer5RA==}
+ electron-to-chromium@1.5.52:
+ resolution: {integrity: sha512-xtoijJTZ+qeucLBDNztDOuQBE1ksqjvNjvqFoST3nGC7fSpqJ+X6BdTBaY5BHG+IhWWmpc6b/KfpeuEDupEPOQ==}
embla-carousel-react@8.5.1:
resolution: {integrity: sha512-z9Y0K84BJvhChXgqn2CFYbfEi6AwEr+FFVVKm/MqbTQ2zIzO1VQri6w67LcfpVF0AjbhwVMywDZqY4alYkjW5w==}
@@ -6333,15 +6344,19 @@ packages:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
- encoding-japanese@2.2.0:
- resolution: {integrity: sha512-EuJWwlHPZ1LbADuKTClvHtwbaFn4rOD+dRAbWysqEOXRc2Uui0hJInNJrsdH0c+OhJA4nrCBdSkW4DD5YxAo6A==}
+ encoding-japanese@2.0.0:
+ resolution: {integrity: sha512-++P0RhebUC8MJAwJOsT93dT+5oc5oPImp1HubZpAuCZ5kTLnhuuBhKHj2jJeO/Gj93idPBWmIuQ9QWMe5rX3pQ==}
+ engines: {node: '>=8.10.0'}
+
+ encoding-japanese@2.1.0:
+ resolution: {integrity: sha512-58XySVxUgVlBikBTbQ8WdDxBDHIdXucB16LO5PBHR8t75D54wQrNo4cg+58+R1CtJfKnsVsvt9XlteRaR8xw1w==}
engines: {node: '>=8.10.0'}
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- enhanced-resolve@5.18.0:
- resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
+ enhanced-resolve@5.17.1:
+ resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
entities@2.2.0:
@@ -6361,38 +6376,38 @@ packages:
error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
- es-abstract@1.23.9:
- resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
+ es-abstract@1.23.3:
+ resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
engines: {node: '>= 0.4'}
- es-define-property@1.0.1:
- resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
+ es-define-property@1.0.0:
+ resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
engines: {node: '>= 0.4'}
es-errors@1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-iterator-helpers@1.2.1:
- resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==}
+ es-iterator-helpers@1.2.0:
+ resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.6.0:
- resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
+ es-module-lexer@1.5.4:
+ resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
- es-set-tostringtag@2.1.0:
- resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ es-set-tostringtag@2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
engines: {node: '>= 0.4'}
es-shim-unscopables@1.0.2:
resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
- es-to-primitive@1.3.0:
- resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
+ es-to-primitive@1.2.1:
+ resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
es6-error@4.1.1:
@@ -6430,10 +6445,10 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- eslint-config-next@14.2.23:
- resolution: {integrity: sha512-qtWJzOsDZxnLtXLNtnVjbutHmnEp6QTTSZBTlTCge/Wy0AsUaq8nwR91dBcZZvFg3eY3zKFPBhUkLMHu3Qpauw==}
+ eslint-config-next@15.1.2:
+ resolution: {integrity: sha512-PrMm1/4zWSJ689wd/ypWIR5ZF1uvmp3EkgpgBV1Yu6PhEobBjXMGgT8bVNelwl17LXojO8D5ePFRiI4qXjsPRA==}
peerDependencies:
- eslint: ^7.23.0 || ^8.0.0
+ eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
typescript: '>=3.3.1'
peerDependenciesMeta:
typescript:
@@ -6448,8 +6463,8 @@ packages:
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
- eslint-import-resolver-typescript@3.7.0:
- resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==}
+ eslint-import-resolver-typescript@3.6.3:
+ resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -6512,14 +6527,14 @@ packages:
eslint-config-prettier:
optional: true
- eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705:
- resolution: {integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==}
+ eslint-plugin-react-hooks@5.1.0:
+ resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==}
engines: {node: '>=10'}
peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
- eslint-plugin-react@7.37.3:
- resolution: {integrity: sha512-DomWuTQPFYZwF/7c9W2fkKkStqZmBd3uugfqBYLdkZ3Hii23WzZuOLUskGxB8qkSKqftxEeGL1TB2kMhrce0jA==}
+ eslint-plugin-react@7.37.2:
+ resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==}
engines: {node: '>=4'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
@@ -6528,23 +6543,31 @@ packages:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-scope@8.2.0:
+ resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint@8.57.1:
- resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options.
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint@9.17.0:
+ resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
- espree@9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@1.2.5:
resolution: {integrity: sha512-S9VbPDU0adFErpDai3qDkjq8+G05ONtKzcyNrPKg/ZKa+tf879nX2KexNU95b31UoTJjRLInNBHHHjFPoCd7lQ==}
@@ -6666,12 +6689,12 @@ packages:
fast-fifo@1.3.2:
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
- fast-glob@3.3.2:
- resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ fast-glob@3.3.1:
+ resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
engines: {node: '>=8.6.0'}
- fast-glob@3.3.3:
- resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+ fast-glob@3.3.2:
+ resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
fast-json-stable-stringify@2.1.0:
@@ -6693,8 +6716,8 @@ packages:
fast-shallow-equal@1.0.0:
resolution: {integrity: sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==}
- fast-uri@3.0.5:
- resolution: {integrity: sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==}
+ fast-uri@3.0.3:
+ resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
fast-xml-parser@4.4.1:
resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
@@ -6703,8 +6726,8 @@ packages:
fastest-stable-stringify@2.0.2:
resolution: {integrity: sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==}
- fastq@1.18.0:
- resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
+ fastq@1.17.1:
+ resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
@@ -6730,9 +6753,9 @@ packages:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
- file-entry-cache@6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
file-type@19.6.0:
resolution: {integrity: sha512-VZR5I7k5wkD0HgFnMsq5hOsSc710MJMu5Nc5QYsbe38NN5iPV/XTObYLc/cpttRTf6lX538+5uO1ZQRhYibiZQ==}
@@ -6793,16 +6816,16 @@ packages:
resolution: {integrity: sha512-5SM1+H2CcuJ3gGEwTiVo/+nd/hYpNj9Ch3iMDOQ58ndY+VGQ2QdvaUTkd3otjZvYnd/8LF/HkJ5cx7PBq0orCQ==}
hasBin: true
- flat-cache@3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
flat@5.0.2:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- flatted@3.3.2:
- resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+ flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
@@ -6849,8 +6872,8 @@ packages:
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
- framer-motion@11.16.0:
- resolution: {integrity: sha512-oL2AWqLQuw0+CNEUa0sz3mWC/n3i147CckvpQn8bLRs30b+HxTxlRi0YR2FpHHhAbWV7DKjNdHU42KHLfBWh/g==}
+ framer-motion@11.15.0:
+ resolution: {integrity: sha512-MLk8IvZntxOMg7lDBLw2qgTHHv664bYoYmnFTmE0Gm/FW67aOJk0WM3ctMcG+Xhcv+vh5uyyXwxvxhSeJzSe+w==}
peerDependencies:
'@emotion/is-prop-valid': '*'
react: ^18.0.0 || ^19.0.0
@@ -6909,8 +6932,8 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.8:
- resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
+ function.prototype.name@1.1.6:
+ resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
engines: {node: '>= 0.4'}
functions-have-names@1.2.3:
@@ -6934,8 +6957,8 @@ packages:
get-func-name@2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- get-intrinsic@1.2.7:
- resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
+ get-intrinsic@1.2.4:
+ resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
get-nonce@1.0.1:
@@ -6950,10 +6973,6 @@ packages:
resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==}
engines: {node: '>=8'}
- get-proto@1.0.1:
- resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
- engines: {node: '>= 0.4'}
-
get-relative-path@1.0.2:
resolution: {integrity: sha512-dGkopYfmB4sXMTcZslq5SojEYakpdCSj/SVSHLhv7D6RBHzvDtd/3Q8lTEOAhVKxPPeAHu/YYkENbbz3PaH+8w==}
@@ -6973,8 +6992,8 @@ packages:
resolution: {integrity: sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==}
engines: {node: '>=18'}
- get-symbol-description@1.1.0:
- resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
+ get-symbol-description@1.0.2:
+ resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
engines: {node: '>= 0.4'}
get-tsconfig@4.8.1:
@@ -6996,11 +7015,6 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.3.10:
- resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
glob@10.3.12:
resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -7031,9 +7045,13 @@ packages:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- globals@13.24.0:
- resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
- engines: {node: '>=8'}
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
+
+ globals@15.14.0:
+ resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
+ engines: {node: '>=18'}
globalthis@1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
@@ -7043,9 +7061,8 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- gopd@1.2.0:
- resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
- engines: {node: '>= 0.4'}
+ gopd@1.0.1:
+ resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
got@13.0.0:
resolution: {integrity: sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==}
@@ -7108,9 +7125,8 @@ packages:
engines: {node: '>=0.4.7'}
hasBin: true
- has-bigints@1.1.0:
- resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
- engines: {node: '>= 0.4'}
+ has-bigints@1.0.2:
+ resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
@@ -7123,12 +7139,12 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.2.0:
- resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
+ has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
- has-symbols@1.1.0:
- resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
+ has-symbols@1.0.3:
+ resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
@@ -7207,8 +7223,8 @@ packages:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
- https-proxy-agent@7.0.6:
- resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ https-proxy-agent@7.0.5:
+ resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==}
engines: {node: '>= 14'}
human-signals@2.1.0:
@@ -7248,8 +7264,8 @@ packages:
resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==}
engines: {node: '>=12.2'}
- import-in-the-middle@1.12.0:
- resolution: {integrity: sha512-yAgSE7GmtRcu4ZUSFX/4v69UGXwugFFSdIQJ14LHPOPPQrWv8Y7O9PHsw8Ovk7bKCLe4sjXMbZFqGFcLHpZ89w==}
+ import-in-the-middle@1.11.2:
+ resolution: {integrity: sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==}
import-meta-resolve@4.1.0:
resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==}
@@ -7290,8 +7306,8 @@ packages:
inspect-with-kind@1.0.5:
resolution: {integrity: sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==}
- internal-slot@1.1.0:
- resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
+ internal-slot@1.0.7:
+ resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
invariant@2.2.4:
@@ -7305,8 +7321,8 @@ packages:
resolution: {integrity: sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==}
engines: {node: '>=0.10.0'}
- is-array-buffer@3.0.5:
- resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
+ is-array-buffer@3.0.4:
+ resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
@@ -7315,39 +7331,38 @@ packages:
is-arrayish@0.3.2:
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
- is-async-function@2.1.0:
- resolution: {integrity: sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==}
+ is-async-function@2.0.0:
+ resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
engines: {node: '>= 0.4'}
- is-bigint@1.1.0:
- resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
- engines: {node: '>= 0.4'}
+ is-bigint@1.0.4:
+ resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
- is-boolean-object@1.2.1:
- resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
+ is-boolean-object@1.1.2:
+ resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
engines: {node: '>= 0.4'}
- is-bun-module@1.3.0:
- resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
+ is-bun-module@1.2.1:
+ resolution: {integrity: sha512-AmidtEM6D6NmUiLOvvU7+IePxjEjOzra2h0pSrsfSAcXwl/83zLLXDByafUJy9k/rKK0pvXMLdwKwGHlX2Ke6Q==}
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-core-module@2.16.1:
- resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ is-core-module@2.15.1:
+ resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
- is-data-view@1.0.2:
- resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
+ is-data-view@1.0.1:
+ resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
engines: {node: '>= 0.4'}
- is-date-object@1.1.0:
- resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
+ is-date-object@1.0.5:
+ resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
engines: {node: '>= 0.4'}
is-docker@2.2.1:
@@ -7362,16 +7377,15 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-finalizationregistry@1.1.1:
- resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
- engines: {node: '>= 0.4'}
+ is-finalizationregistry@1.0.2:
+ resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-generator-function@1.1.0:
- resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+ is-generator-function@1.0.10:
+ resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
engines: {node: '>= 0.4'}
is-glob@4.0.3:
@@ -7389,11 +7403,15 @@ packages:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
+ is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
+ engines: {node: '>= 0.4'}
+
is-node-process@1.2.0:
resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
- is-number-object@1.1.1:
- resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
+ is-number-object@1.0.7:
+ resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
engines: {node: '>= 0.4'}
is-number@7.0.0:
@@ -7407,10 +7425,6 @@ packages:
is-object@1.0.2:
resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==}
- is-path-inside@3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
-
is-plain-obj@1.1.0:
resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==}
engines: {node: '>=0.10.0'}
@@ -7439,8 +7453,8 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
- is-regex@1.2.1:
- resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
+ is-regex@1.1.4:
+ resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
engines: {node: '>= 0.4'}
is-relative@1.0.0:
@@ -7451,8 +7465,8 @@ packages:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
- is-shared-array-buffer@1.0.4:
- resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
+ is-shared-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
engines: {node: '>= 0.4'}
is-stream@1.1.0:
@@ -7467,20 +7481,20 @@ packages:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
- is-string@1.1.1:
- resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
+ is-string@1.0.7:
+ resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
engines: {node: '>= 0.4'}
- is-symbol@1.1.1:
- resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
+ is-symbol@1.0.4:
+ resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
engines: {node: '>= 0.4'}
is-text-path@2.0.0:
resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==}
engines: {node: '>=8'}
- is-typed-array@1.1.15:
- resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
+ is-typed-array@1.1.13:
+ resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
engines: {node: '>= 0.4'}
is-typedarray@1.0.0:
@@ -7501,12 +7515,11 @@ packages:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
- is-weakref@1.1.0:
- resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
- engines: {node: '>= 0.4'}
+ is-weakref@1.0.2:
+ resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
- is-weakset@2.0.4:
- resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
+ is-weakset@2.0.3:
+ resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
engines: {node: '>= 0.4'}
is-windows@1.0.2:
@@ -7517,6 +7530,9 @@ packages:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
+ isarray@0.0.1:
+ resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
+
isarray@1.0.0:
resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
@@ -7570,8 +7586,8 @@ packages:
resolution: {integrity: sha512-RKYVTCjAnRthyJes037NX/IiqeidgN1xc3j1RjFfECFp28A1GVwK9nA+i0rJPaHqSZwygLzRnFlzUuHFoWWy+Q==}
engines: {node: '>=6'}
- iterator.prototype@1.1.5:
- resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==}
+ iterator.prototype@1.1.3:
+ resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==}
engines: {node: '>= 0.4'}
jackspeak@2.3.6:
@@ -7593,8 +7609,12 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
- jiti@1.21.7:
- resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
+ jiti@1.21.6:
+ resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
+ hasBin: true
+
+ jiti@2.4.0:
+ resolution: {integrity: sha512-H5UpaUI+aHOqZXlYOaFP/8AzKsg+guWu+Pr3Y8i7+Y3zr1aXAvCvTAQ1RxSc6oVD8R8c7brgNtTVP91E7upH/g==}
hasBin: true
jiti@2.4.2:
@@ -7654,8 +7674,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- jsesc@3.1.0:
- resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
engines: {node: '>=6'}
hasBin: true
@@ -7827,17 +7847,26 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ libbase64@1.2.1:
+ resolution: {integrity: sha512-l+nePcPbIG1fNlqMzrh68MLkX/gTxk/+vdvAb388Ssi7UuUN31MI44w4Yf33mM3Cm4xDfw48mdf3rkdHszLNew==}
+
libbase64@1.3.0:
resolution: {integrity: sha512-GgOXd0Eo6phYgh0DJtjQ2tO8dc0IVINtZJeARPeiIJqge+HdsWSuaDTe8ztQ7j/cONByDZ3zeB325AHiv5O0dg==}
- libmime@5.3.6:
- resolution: {integrity: sha512-j9mBC7eiqi6fgBPAGvKCXJKJSIASanYF4EeA4iBzSG0HxQxmXnR3KbyWqTn4CwsKSebqCv2f5XZfAO6sKzgvwA==}
+ libmime@5.2.0:
+ resolution: {integrity: sha512-X2U5Wx0YmK0rXFbk67ASMeqYIkZ6E5vY7pNWRKtnNzqjvdYYG8xtPDpCnuUEnPU9vlgNev+JoSrcaKSUaNvfsw==}
+
+ libmime@5.3.5:
+ resolution: {integrity: sha512-nSlR1yRZ43L3cZCiWEw7ali3jY29Hz9CQQ96Oy+sSspYnIP5N54ucOPHqooBsXzwrX1pwn13VUE05q4WmzfaLg==}
+
+ libphonenumber-js@1.11.12:
+ resolution: {integrity: sha512-QkJn9/D7zZ1ucvT++TQSvZuSA2xAWeUytU+DiEQwbPKLyrDpvbul2AFs1CGbRAPpSCCk47aRAb5DX5mmcayp4g==}
- libphonenumber-js@1.11.17:
- resolution: {integrity: sha512-Jr6v8thd5qRlOlc6CslSTzGzzQW03uiscab7KHQZX1Dfo4R6n6FDhZ0Hri6/X7edLIDv9gl4VMZXhxTjLnl0VQ==}
+ libqp@2.0.1:
+ resolution: {integrity: sha512-Ka0eC5LkF3IPNQHJmYBWljJsw0UvM6j+QdKRbWyCdTmYwvIDE6a7bCm0UkTAL/K+3KXK5qXT/ClcInU01OpdLg==}
- libqp@2.1.1:
- resolution: {integrity: sha512-0Wd+GPz1O134cP62YU2GTOPNA7Qgl09XwCqM5zpBv87ERCXdfDtyKXvV7c9U22yWJh44QZqBocFnXN11K96qow==}
+ libqp@2.1.0:
+ resolution: {integrity: sha512-O6O6/fsG5jiUVbvdgT7YX3xY3uIadR6wEZ7+vy9u7PKHAlSEB6blvC1o5pHBjgsi95Uo0aiBBdkyFecj6jtb7A==}
lie@3.3.0:
resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
@@ -7855,8 +7884,8 @@ packages:
linkifyjs@4.2.0:
resolution: {integrity: sha512-pCj3PrQyATaoTYKHrgWRF3SJwsm61udVh+vuls/Rl6SptiDhgE7ziUIudAedRY9QEfynmM7/RmLEfPUyw1HPCw==}
- liquidjs@10.20.1:
- resolution: {integrity: sha512-eZ33jfxjj0It8tkY+I4gbKWfXvMmOvQvvraxVFSLcTjZWCjdWMLBnevk48qw9AQIwIHFp58vZc59vH9Qwdq7mw==}
+ liquidjs@10.18.0:
+ resolution: {integrity: sha512-gCJPmpmZ3oi2rMMHo/c+bW1LaRF+ZAKYTWQmKXPp0uK9EkWMFRmgbk3+Io4LSJGAOnpCZSgHJbNzcygx3kfAAQ==}
engines: {node: '>=14'}
hasBin: true
@@ -8048,18 +8077,18 @@ packages:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
- magic-string@0.30.17:
- resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
magic-string@0.30.8:
resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==}
engines: {node: '>=12'}
- mailparser@3.7.2:
- resolution: {integrity: sha512-iI0p2TCcIodR1qGiRoDBBwboSSff50vQAWytM5JRggLfABa4hHYCf3YVujtuzV454xrOP352VsAPIzviqMTo4Q==}
+ mailparser@3.7.1:
+ resolution: {integrity: sha512-RCnBhy5q8XtB3mXzxcAfT1huNqN93HTYYyL6XawlIKycfxM/rXPg9tXoZ7D46+SgCS1zxKzw+BayDQSvncSTTw==}
- mailsplit@5.4.2:
- resolution: {integrity: sha512-4cczG/3Iu3pyl8JgQ76dKkisurZTmxMrA4dj/e8d2jKYcFTZ7MxOzg1gTioTDMPuFXwTrVuN/gxhkrO7wLg7qA==}
+ mailsplit@5.4.0:
+ resolution: {integrity: sha512-wnYxX5D5qymGIPYLwnp6h8n1+6P6vz/MJn5AzGjZ8pwICWssL+CCQjWBIToOVHASmATot4ktvlLo6CyLfOXWYA==}
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
@@ -8080,10 +8109,6 @@ packages:
resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
hasBin: true
- math-intrinsics@1.1.0:
- resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
- engines: {node: '>= 0.4'}
-
mdn-data@2.0.14:
resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
@@ -8315,17 +8340,17 @@ packages:
module-not-found-error@1.0.1:
resolution: {integrity: sha512-pEk4ECWQXV6z2zjhRZUongnLJNUeGQJ3w6OQ5ctGwD+i5o93qjRQUk2Rt6VdNeu3sEP0AB4LcfvdebpxBRVr4g==}
- monaco-editor@0.52.2:
- resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==}
+ monaco-editor@0.52.0:
+ resolution: {integrity: sha512-OeWhNpABLCeTqubfqLMXGsqf6OmPU6pHM85kF3dhy6kq5hnhuVS1p3VrEW/XhWHc71P2tHyS5JFySD8mgs1crw==}
moo@0.5.2:
resolution: {integrity: sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==}
- motion-dom@11.16.0:
- resolution: {integrity: sha512-4bmEwajSdrljzDAYpu6ceEdtI4J5PH25fmN8YSx7Qxk6OMrC10CXM0D5y+VO/pFZjhmCvm2bGf7Rus482kwhzA==}
+ motion-dom@11.14.3:
+ resolution: {integrity: sha512-lW+D2wBy5vxLJi6aCP0xyxTxlTfiu+b+zcpVbGVFUxotwThqhdpPRSmX8xztAgtZMPMeU0WGVn/k1w4I+TbPqA==}
- motion-utils@11.16.0:
- resolution: {integrity: sha512-ngdWPjg31rD4WGXFi0eZ00DQQqKKu04QExyv/ymlC+3k+WIgYVFbt6gS5JsFPbJODTF/r8XiE/X+SsoT9c0ocw==}
+ motion-utils@11.14.3:
+ resolution: {integrity: sha512-Xg+8xnqIJTpr0L/cidfTTBFkvRw26ZtGGuIhA94J9PQ2p4mEa06Xx7QVYZH0BP+EpMSaDlu+q0I0mmvwADPsaQ==}
mrmime@2.0.0:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
@@ -8371,8 +8396,8 @@ packages:
react: '*'
react-dom: '*'
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
+ nanoid@3.3.7:
+ resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -8460,8 +8485,8 @@ packages:
node-abort-controller@3.1.1:
resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
- node-addon-api@8.3.0:
- resolution: {integrity: sha512-8VOpLHFrOQlAH+qA0ZzuGRlALRA6/LVh8QJldbrC4DY0hXoMP0l4Acq8TzFC018HztWiRqyCEj2aTWY2UvnJUg==}
+ node-addon-api@8.2.1:
+ resolution: {integrity: sha512-vmEOvxwiH8tlOcv4SyE8RH34rI5/nWVaigUeAUPawC6f0+HoDthwI0vkMu4tbtsZrXq6QXFfrkhjofzKEs5tpA==}
engines: {node: ^18 || ^20 || >= 21}
node-emoji@1.11.0:
@@ -8476,8 +8501,8 @@ packages:
encoding:
optional: true
- node-gyp-build@4.8.4:
- resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
+ node-gyp-build@4.8.2:
+ resolution: {integrity: sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==}
hasBin: true
node-int64@0.4.0:
@@ -8487,8 +8512,12 @@ packages:
resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==}
engines: {node: '>=8'}
- node-releases@2.0.19:
- resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-releases@2.0.18:
+ resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+
+ nodemailer@6.9.13:
+ resolution: {integrity: sha512-7o38Yogx6krdoBf3jCAqnIN4oSQFx+fMa0I7dK1D+me9kBxx12D+/33wSb+fhOCtIxvYJ+4x4IMEhmhCKfAiOA==}
+ engines: {node: '>=6.0.0'}
nodemailer@6.9.16:
resolution: {integrity: sha512-psAuZdTIRN08HKVd/E8ObdV6NO7NTBY3KsC30F7M4H1OnmLCUNaS56FpYxyb26zWLSyYF9Ozch9KYHhHegsiOQ==}
@@ -8529,8 +8558,8 @@ packages:
nullthrows@1.1.1:
resolution: {integrity: sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw==}
- nwsapi@2.2.16:
- resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
+ nwsapi@2.2.13:
+ resolution: {integrity: sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==}
nyc@17.1.0:
resolution: {integrity: sha512-U42vQ4czpKa0QdI1hu950XuNhYqgoM+ZF1HT+VuUHL9hPfDPVvNQyltmMqdE9bUHMVa+8yNbc3QKTj8zQhlVxQ==}
@@ -8555,8 +8584,8 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.13.3:
- resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ object-inspect@1.13.2:
+ resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
engines: {node: '>= 0.4'}
object-keys@1.1.1:
@@ -8567,8 +8596,8 @@ packages:
resolution: {integrity: sha512-YJjNZrlXJFM42wTBn6zgOJVar9KFJvzx6sTWDte8sWZF//cnjl0BxHNpfZx+ZffXX63A9q0b1zsFiBX4g4X5KA==}
engines: {node: '>= 10.12.0'}
- object.assign@4.1.7:
- resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
+ object.assign@4.1.5:
+ resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
engines: {node: '>= 0.4'}
object.entries@1.1.8:
@@ -8583,8 +8612,8 @@ packages:
resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
engines: {node: '>= 0.4'}
- object.values@1.2.1:
- resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
+ object.values@1.2.0:
+ resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
oidc-token-hash@5.0.3:
@@ -8618,11 +8647,11 @@ packages:
resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==}
hasBin: true
- openid-client@5.7.1:
- resolution: {integrity: sha512-jDBPgSVfTnkIh71Hg9pRvtJc6wTwqjRkN88+gCFtYWrlP4Yx2Dsrow8uPi3qLr/aeymPF3o2+dS+wOpglK04ew==}
+ openid-client@5.7.0:
+ resolution: {integrity: sha512-4GCCGZt1i2kTHpwvaC/sCpTpQqDnBzDzuJcJMbH+y1Q5qI8U8RBvoSh28svarXszZHR5BAMXbJPX1PGPRE3VOA==}
- optimism@0.18.1:
- resolution: {integrity: sha512-mLXNwWPa9dgFyDqkNi54sjDyNJ9/fTI6WGBLgnXku1vdKY/jovHfZT5r+aiVeFFLOz+foPNOm5YJ4mqgld2GBQ==}
+ optimism@0.18.0:
+ resolution: {integrity: sha512-tGn8+REwLRNFnb9WmcY5IfpOqeX2kpaYJ1s6Ae3mn12AeydLkR3j+jSCmVQFoXqU8D41PAJ1RG1rCRNWmNZVmQ==}
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
@@ -8645,10 +8674,6 @@ packages:
outvariant@1.4.3:
resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==}
- own-keys@1.0.1:
- resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
- engines: {node: '>= 0.4'}
-
oxc-resolver@1.12.0:
resolution: {integrity: sha512-YlaCIArvWNKCWZFRrMjhh2l5jK80eXnpYP+bhRc1J/7cW3TiyEY0ngJo73o/5n8hA3+4yLdTmXLNTQ3Ncz50LQ==}
@@ -8906,16 +8931,16 @@ packages:
pino-std-serializers@7.0.0:
resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==}
- pino@9.6.0:
- resolution: {integrity: sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==}
+ pino@9.5.0:
+ resolution: {integrity: sha512-xSEmD4pLnV54t0NOUN16yCl7RIB1c5UUOse5HSyEXtBp+FgFQyPeDutc+Q2ZO7/22vImV7VfEjH/1zV2QuqvYw==}
hasBin: true
pirates@4.0.6:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- piscina@4.8.0:
- resolution: {integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==}
+ piscina@4.7.0:
+ resolution: {integrity: sha512-b8hvkpp9zS0zsfa939b/jXbe64Z2gZv0Ha7FYPNUiDIB1y2AtxcOZdfP8xN8HFjUaqQiT9gRlfjAsoL8vdJ1Iw==}
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
@@ -9013,8 +9038,8 @@ packages:
peerDependencies:
preact: '>=10'
- preact@10.25.4:
- resolution: {integrity: sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==}
+ preact@10.24.3:
+ resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -9094,8 +9119,8 @@ packages:
pretty-format@3.8.0:
resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==}
- pretty-ms@9.2.0:
- resolution: {integrity: sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==}
+ pretty-ms@9.1.0:
+ resolution: {integrity: sha512-o1piW0n3tgKIKCwk2vpM/vOV13zjJzvP37Ioze54YlTHE06m4tjEbzg9WsKkvTuyYln2DHjo5pY4qrZGI0otpw==}
engines: {node: '>=18'}
preview-email@3.1.0:
@@ -9114,12 +9139,12 @@ packages:
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- process-on-spawn@1.1.0:
- resolution: {integrity: sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==}
+ process-on-spawn@1.0.0:
+ resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==}
engines: {node: '>=8'}
- process-warning@4.0.1:
- resolution: {integrity: sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==}
+ process-warning@4.0.0:
+ resolution: {integrity: sha512-/MyYDxttz7DfGMMHiysAsFE4qF+pQYAA8ziO/3NcRVrQ5fSk+Mns4QZA/oRPFzvcqNoVJXQNWNAsdwBXLUkQKw==}
process@0.11.10:
resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
@@ -9172,20 +9197,20 @@ packages:
prosemirror-menu@1.2.4:
resolution: {integrity: sha512-S/bXlc0ODQup6aiBbWVsX/eM+xJgCTAfMq/nLqaO5ID/am4wS0tTCIkzwytmao7ypEtjj39i7YbJjAgO20mIqA==}
- prosemirror-model@1.24.1:
- resolution: {integrity: sha512-YM053N+vTThzlWJ/AtPtF1j0ebO36nvbmDy4U7qA2XQB8JVaQp1FmB9Jhrps8s+z+uxhhVTny4m20ptUvhk0Mg==}
+ prosemirror-model@1.23.0:
+ resolution: {integrity: sha512-Q/fgsgl/dlOAW9ILu4OOhYWQbc7TQd4BwKH/RwmUjyVf8682Be4zj3rOYdLnYEcGzyg8LL9Q5IWYKD8tdToreQ==}
prosemirror-schema-basic@1.2.3:
resolution: {integrity: sha512-h+H0OQwZVqMon1PNn0AG9cTfx513zgIG2DY00eJ00Yvgb3UD+GQ/VlWW5rcaxacpCGT1Yx8nuhwXk4+QbXUfJA==}
- prosemirror-schema-list@1.5.0:
- resolution: {integrity: sha512-gg1tAfH1sqpECdhIHOA/aLg2VH3ROKBWQ4m8Qp9mBKrOxQRW61zc+gMCI8nh22gnBzd1t2u1/NPLmO3nAa3ssg==}
+ prosemirror-schema-list@1.4.1:
+ resolution: {integrity: sha512-jbDyaP/6AFfDfu70VzySsD75Om2t3sXTOdl5+31Wlxlg62td1haUpty/ybajSfJ1pkGadlOfwQq9kgW5IMo1Rg==}
prosemirror-state@1.4.3:
resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==}
- prosemirror-tables@1.6.2:
- resolution: {integrity: sha512-97dKocVLrEVTQjZ4GBLdrrMw7Gv3no8H8yMwf5IRM9OoHrzbWpcH5jJxYgNQIRCtdIqwDctT1HdMHrGTiwp1dQ==}
+ prosemirror-tables@1.6.1:
+ resolution: {integrity: sha512-p8WRJNA96jaNQjhJolmbxTzd6M4huRE5xQ8OxjvMhQUP0Nzpo4zz6TztEiwk6aoqGBhz9lxRWR1yRZLlpQN98w==}
prosemirror-trailing-node@3.0.0:
resolution: {integrity: sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ==}
@@ -9217,8 +9242,8 @@ packages:
proxyquire@2.1.3:
resolution: {integrity: sha512-BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==}
- psl@1.15.0:
- resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
+ psl@1.9.0:
+ resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
pug-attrs@3.0.0:
resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==}
@@ -9388,6 +9413,16 @@ packages:
react: ^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
react-dom: ^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ react-style-singleton@2.2.1:
+ resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-style-singleton@2.2.3:
resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
engines: {node: '>=10'}
@@ -9417,6 +9452,9 @@ packages:
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
+ readable-stream@1.1.14:
+ resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
+
readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
@@ -9424,8 +9462,8 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
- readable-stream@4.7.0:
- resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==}
+ readable-stream@4.5.2:
+ resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
readdir-glob@1.1.3:
@@ -9449,15 +9487,15 @@ packages:
reflect-metadata@0.2.2:
resolution: {integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==}
- reflect.getprototypeof@1.0.10:
- resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
+ reflect.getprototypeof@1.0.6:
+ resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
engines: {node: '>= 0.4'}
regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- regexp.prototype.flags@1.5.4:
- resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
+ regexp.prototype.flags@1.5.3:
+ resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==}
engines: {node: '>= 0.4'}
rehackt@0.1.0:
@@ -9530,11 +9568,6 @@ packages:
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- resolve@1.22.10:
- resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
- engines: {node: '>= 0.4'}
- hasBin: true
-
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -9543,8 +9576,8 @@ packages:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- response-iterator@0.2.11:
- resolution: {integrity: sha512-5tdhcAeGMSyM0/FoxAYjoOxQZ2tRR2H/S/t6kGRXu6iiWcGY5UnZgkVANbTwBVUSGqWu0ADctmoi6lOCIF8uKQ==}
+ response-iterator@0.2.6:
+ resolution: {integrity: sha512-pVzEEzrsg23Sh053rmDUvLSkGXluZio0qu8VT6ukrYuvtjVfCbDZH9d6PGXb8HZfzdNZt8feXv/jvUzlhRgLnw==}
engines: {node: '>=0.8'}
response-time@2.3.3:
@@ -9589,8 +9622,8 @@ packages:
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.30.1:
- resolution: {integrity: sha512-mlJ4glW020fPuLi7DkM/lN97mYEZGWeqBnrljzN0gs7GLctqX3lNWxKQ7Gl712UAX+6fog/L3jh4gb7R6aVi3w==}
+ rollup@4.24.4:
+ resolution: {integrity: sha512-vGorVWIsWfX3xbcyAS+I047kFKapHYivmkaT63Smj77XwvLSJos6M1xGqZnBPFQFBRZDOcG1QnYEIxAvTr/HjA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -9621,8 +9654,8 @@ packages:
rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- safe-array-concat@1.1.3:
- resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
+ safe-array-concat@1.1.2:
+ resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
engines: {node: '>=0.4'}
safe-buffer@5.1.2:
@@ -9631,12 +9664,8 @@ packages:
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-push-apply@1.0.0:
- resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
- engines: {node: '>= 0.4'}
-
- safe-regex-test@1.1.0:
- resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ safe-regex-test@1.0.3:
+ resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
safe-stable-stringify@2.5.0:
@@ -9661,10 +9690,6 @@ packages:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
- schema-utils@4.3.0:
- resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
- engines: {node: '>= 10.13.0'}
-
screenfull@5.2.0:
resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
engines: {node: '>=0.10.0'}
@@ -9732,10 +9757,6 @@ packages:
resolution: {integrity: sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==}
engines: {node: '>=6.9'}
- set-proto@1.0.0:
- resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
- engines: {node: '>= 0.4'}
-
setimmediate@1.0.5:
resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
@@ -9766,27 +9787,14 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.2:
- resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
- engines: {node: '>= 0.4'}
+ shell-quote@1.8.1:
+ resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
shimmer@1.2.1:
resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==}
- side-channel-list@1.0.0:
- resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
- engines: {node: '>= 0.4'}
-
- side-channel-map@1.0.1:
- resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
- engines: {node: '>= 0.4'}
-
- side-channel-weakmap@1.0.2:
- resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
- engines: {node: '>= 0.4'}
-
- side-channel@1.1.0:
- resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ side-channel@1.0.6:
+ resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
siginfo@2.0.0:
@@ -9888,13 +9896,10 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- sql-formatter@15.4.9:
- resolution: {integrity: sha512-5vmt2HlCAVozxsBZuXWkAki/KGawaK+b5GG5x+BtXOFVpN/8cqppblFUxHl4jxdA0cvo14lABhM+KBnrUapOlw==}
+ sql-formatter@15.4.8:
+ resolution: {integrity: sha512-DNLFVjKB6QaBli00LaNEJgLeBIPygD6L35hKPbOVi01hK+7sTpShOc2+pa6FgDobcpHKI6+FKswkp7PiNiDaTw==}
hasBin: true
- stable-hash@0.0.4:
- resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
-
stack-generator@2.0.10:
resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==}
@@ -9957,25 +9962,27 @@ packages:
resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
engines: {node: '>= 0.4'}
- string.prototype.matchall@4.0.12:
- resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
+ string.prototype.matchall@4.0.11:
+ resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
engines: {node: '>= 0.4'}
string.prototype.repeat@1.0.0:
resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
- string.prototype.trim@1.2.10:
- resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
+ string.prototype.trim@1.2.9:
+ resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
engines: {node: '>= 0.4'}
- string.prototype.trimend@1.0.9:
- resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
- engines: {node: '>= 0.4'}
+ string.prototype.trimend@1.0.8:
+ resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
engines: {node: '>= 0.4'}
+ string_decoder@0.10.31:
+ resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
+
string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
@@ -10108,8 +10115,8 @@ packages:
resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
engines: {node: ^14.18.0 || >=16.0.0}
- systeminformation@5.23.8:
- resolution: {integrity: sha512-Osd24mNKe6jr/YoXLLK3k8TMdzaxDffhpCxgkfgBHcapykIkd50HXThM3TCEuHO2pPuCsSx2ms/SunqhU5MmsQ==}
+ systeminformation@5.22.9:
+ resolution: {integrity: sha512-qUWJhQ9JSBhdjzNUQywpvc0icxUAjMY3sZqUoS0GOtaJV9Ijq8s9zEP8Gaqmymn1dOefcICyPXK1L3kgKxlUpg==}
engines: {node: '>=8.0.0'}
os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android]
hasBin: true
@@ -10141,8 +10148,8 @@ packages:
tar-stream@3.1.7:
resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==}
- terser-webpack-plugin@5.3.11:
- resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==}
+ terser-webpack-plugin@5.3.10:
+ resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -10157,8 +10164,8 @@ packages:
uglify-js:
optional: true
- terser@5.37.0:
- resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
+ terser@5.36.0:
+ resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==}
engines: {node: '>=10'}
hasBin: true
@@ -10173,9 +10180,6 @@ packages:
resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==}
engines: {node: '>=8'}
- text-table@0.2.0:
- resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
-
thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
@@ -10196,11 +10200,11 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- tinyexec@0.3.2:
- resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+ tinyexec@0.3.1:
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
- tinypool@1.0.2:
- resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
+ tinypool@1.0.1:
+ resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==}
engines: {node: ^18.0.0 || >=20.0.0}
tinyrainbow@1.2.0:
@@ -10217,15 +10221,15 @@ packages:
title-case@3.0.3:
resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==}
- tlds@1.255.0:
- resolution: {integrity: sha512-tcwMRIioTcF/FcxLev8MJWxCp+GUALRhFEqbDoZrnowmKSGqPrl5pqS+Sut2m8BgJ6S4FExCSSpGffZ0Tks6Aw==}
+ tlds@1.252.0:
+ resolution: {integrity: sha512-GA16+8HXvqtfEnw/DTcwB0UU354QE1n3+wh08oFjr6Znl7ZLAeUgYzCcK+/CCrOyE0vnHR8/pu3XXG3vDijXpQ==}
hasBin: true
- tldts-core@6.1.71:
- resolution: {integrity: sha512-LRbChn2YRpic1KxY+ldL1pGXN/oVvKfCVufwfVzEQdFYNo39uF7AJa/WXdo+gYO7PTvdfkCPCed6Hkvz/kR7jg==}
+ tldts-core@6.1.58:
+ resolution: {integrity: sha512-dR936xmhBm7AeqHIhCWwK765gZ7dFyL+IqLSFAjJbFlUXGMLCb8i2PzlzaOuWBuplBTaBYseSb565nk/ZEM0Bg==}
- tldts@6.1.71:
- resolution: {integrity: sha512-LQIHmHnuzfZgZWAf2HzL83TIIrD8NhhI0DVxqo9/FdOd4ilec+NTNZOlDZf7EwrTNoutccbsHjvWHYXLAtvxjw==}
+ tldts@6.1.58:
+ resolution: {integrity: sha512-MQJrJhjHOYGYb8DobR6Y4AdDbd4TYkyQ+KBDVc5ODzs1cbrvPpfN1IemYi9jfipJ/vR1YWvrDli0hg1y19VRoA==}
hasBin: true
tmp@0.0.33:
@@ -10288,8 +10292,8 @@ packages:
resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==}
engines: {node: '>=0.10.0'}
- ts-api-utils@1.4.3:
- resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==}
+ ts-api-utils@1.4.0:
+ resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==}
engines: {node: '>=16'}
peerDependencies:
typescript: '>=4.2.0'
@@ -10360,10 +10364,6 @@ packages:
resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==}
engines: {node: '>=4'}
- type-fest@0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
-
type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
@@ -10376,28 +10376,28 @@ packages:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
- type-fest@4.31.0:
- resolution: {integrity: sha512-yCxltHW07Nkhv/1F6wWBr8kz+5BGMfP+RbRSYFnegVb0qV/UMT0G0ElBloPVerqn4M2ZV80Ir1FtCcYv1cT6vQ==}
+ type-fest@4.26.1:
+ resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==}
engines: {node: '>=16'}
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- typed-array-buffer@1.0.3:
- resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
+ typed-array-buffer@1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
- typed-array-byte-length@1.0.3:
- resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
+ typed-array-byte-length@1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.4:
- resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
+ typed-array-byte-offset@1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
engines: {node: '>= 0.4'}
- typed-array-length@1.0.7:
- resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
+ typed-array-length@1.0.6:
+ resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
engines: {node: '>= 0.4'}
typedarray-to-buffer@3.1.5:
@@ -10406,13 +10406,20 @@ packages:
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
+ typescript-eslint@8.18.1:
+ resolution: {integrity: sha512-Mlaw6yxuaDEPQvb/2Qwu3/TfgeBHy9iTJ3mTwe7OvpPmF6KPQjVOfGyEJpPv6Ez2C34OODChhXrzYw/9phI0MQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
+
typescript@5.7.2:
resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==}
engines: {node: '>=14.17'}
hasBin: true
- ua-parser-js@1.0.40:
- resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==}
+ ua-parser-js@1.0.39:
+ resolution: {integrity: sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==}
hasBin: true
uc.micro@2.1.0:
@@ -10434,9 +10441,8 @@ packages:
resolution: {integrity: sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ==}
engines: {node: '>=18'}
- unbox-primitive@1.1.0:
- resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
- engines: {node: '>= 0.4'}
+ unbox-primitive@1.0.2:
+ resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
unbzip2-stream@1.4.3:
resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==}
@@ -10508,20 +10514,20 @@ packages:
'@types/react':
optional: true
- use-sidecar@1.1.3:
- resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ use-sidecar@1.1.2:
+ resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
'@types/react':
optional: true
- use-sync-external-store@1.4.0:
- resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==}
+ use-sync-external-store@1.2.2:
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -10566,8 +10572,8 @@ packages:
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
- vite@5.4.11:
- resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
+ vite@5.4.10:
+ resolution: {integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -10689,19 +10695,18 @@ packages:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
engines: {node: '>=18'}
- whatwg-url@14.1.0:
- resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==}
+ whatwg-url@14.0.0:
+ resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- which-boxed-primitive@1.1.1:
- resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
- engines: {node: '>= 0.4'}
+ which-boxed-primitive@1.0.2:
+ resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
- which-builtin-type@1.2.1:
- resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
+ which-builtin-type@1.1.4:
+ resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
engines: {node: '>= 0.4'}
which-collection@1.0.2:
@@ -10711,8 +10716,8 @@ packages:
which-module@2.0.1:
resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
- which-typed-array@1.1.18:
- resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
+ which-typed-array@1.1.15:
+ resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
engines: {node: '>= 0.4'}
which@1.3.1:
@@ -10817,8 +10822,8 @@ packages:
yaml-ast-parser@0.0.43:
resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
- yaml@2.7.0:
- resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
+ yaml@2.6.0:
+ resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
engines: {node: '>= 14'}
hasBin: true
@@ -10889,8 +10894,8 @@ packages:
zod@3.24.1:
resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
- zustand@4.5.6:
- resolution: {integrity: sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==}
+ zustand@4.5.5:
+ resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==}
engines: {node: '>=12.7.0'}
peerDependencies:
'@types/react': '>=16.8'
@@ -10909,7 +10914,7 @@ snapshots:
'@acuminous/bitsyntax@0.1.2':
dependencies:
buffer-more-ints: 1.0.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
safe-buffer: 5.1.2
transitivePeerDependencies:
- supports-color
@@ -10918,7 +10923,7 @@ snapshots:
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
'@angular-devkit/core@17.3.11(chokidar@3.6.0)':
@@ -10966,10 +10971,10 @@ snapshots:
graphql: 16.10.0
graphql-tag: 2.12.6(graphql@16.10.0)
hoist-non-react-statics: 3.3.2
- optimism: 0.18.1
+ optimism: 0.18.0
prop-types: 15.8.1
rehackt: 0.1.0(@types/react@18.3.18)(react@18.3.1)
- response-iterator: 0.2.11
+ response-iterator: 0.2.6
symbol-observable: 4.0.0
ts-invariant: 0.10.3
tslib: 2.8.1
@@ -11025,7 +11030,7 @@ snapshots:
'@graphql-tools/schema': 9.0.19(graphql@16.10.0)
'@types/express': 4.17.21
'@types/express-serve-static-core': 4.19.6
- '@types/node-fetch': 2.6.12
+ '@types/node-fetch': 2.6.11
async-retry: 1.3.3
cors: 2.8.5
express: 4.21.2
@@ -11101,11 +11106,11 @@ snapshots:
'@ardatan/relay-compiler@12.0.0(graphql@16.10.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/generator': 7.26.3
- '@babel/parser': 7.26.3
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
'@babel/runtime': 7.26.0
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
babel-preset-fbjs: 3.4.0(@babel/core@7.26.0)
chalk: 4.1.2
fb-watchman: 2.0.2
@@ -11131,21 +11136,21 @@ snapshots:
'@aws-crypto/crc32@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.723.0
+ '@aws-sdk/types': 3.714.0
tslib: 2.8.1
'@aws-crypto/crc32c@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.723.0
+ '@aws-sdk/types': 3.714.0
tslib: 2.8.1
'@aws-crypto/sha1-browser@5.2.0':
dependencies:
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-locate-window': 3.723.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-locate-window': 3.679.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
@@ -11154,15 +11159,15 @@ snapshots:
'@aws-crypto/sha256-js': 5.2.0
'@aws-crypto/supports-web-crypto': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-locate-window': 3.723.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-locate-window': 3.679.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
'@aws-crypto/sha256-js@5.2.0':
dependencies:
'@aws-crypto/util': 5.2.0
- '@aws-sdk/types': 3.723.0
+ '@aws-sdk/types': 3.714.0
tslib: 2.8.1
'@aws-crypto/supports-web-crypto@5.2.0':
@@ -11171,515 +11176,515 @@ snapshots:
'@aws-crypto/util@5.2.0':
dependencies:
- '@aws-sdk/types': 3.723.0
+ '@aws-sdk/types': 3.714.0
'@smithy/util-utf8': 2.3.0
tslib: 2.8.1
- '@aws-sdk/client-s3@3.723.0':
+ '@aws-sdk/client-s3@3.722.0':
dependencies:
'@aws-crypto/sha1-browser': 5.2.0
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.723.0(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/client-sts': 3.723.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/credential-provider-node': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/middleware-bucket-endpoint': 3.723.0
- '@aws-sdk/middleware-expect-continue': 3.723.0
- '@aws-sdk/middleware-flexible-checksums': 3.723.0
- '@aws-sdk/middleware-host-header': 3.723.0
- '@aws-sdk/middleware-location-constraint': 3.723.0
- '@aws-sdk/middleware-logger': 3.723.0
- '@aws-sdk/middleware-recursion-detection': 3.723.0
- '@aws-sdk/middleware-sdk-s3': 3.723.0
- '@aws-sdk/middleware-ssec': 3.723.0
- '@aws-sdk/middleware-user-agent': 3.723.0
- '@aws-sdk/region-config-resolver': 3.723.0
- '@aws-sdk/signature-v4-multi-region': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-endpoints': 3.723.0
- '@aws-sdk/util-user-agent-browser': 3.723.0
- '@aws-sdk/util-user-agent-node': 3.723.0
- '@aws-sdk/xml-builder': 3.723.0
- '@smithy/config-resolver': 4.0.0
- '@smithy/core': 3.0.0
- '@smithy/eventstream-serde-browser': 4.0.0
- '@smithy/eventstream-serde-config-resolver': 4.0.0
- '@smithy/eventstream-serde-node': 4.0.0
- '@smithy/fetch-http-handler': 5.0.0
- '@smithy/hash-blob-browser': 4.0.0
- '@smithy/hash-node': 4.0.0
- '@smithy/hash-stream-node': 4.0.0
- '@smithy/invalid-dependency': 4.0.0
- '@smithy/md5-js': 4.0.0
- '@smithy/middleware-content-length': 4.0.0
- '@smithy/middleware-endpoint': 4.0.0
- '@smithy/middleware-retry': 4.0.0
- '@smithy/middleware-serde': 4.0.0
- '@smithy/middleware-stack': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/node-http-handler': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/url-parser': 4.0.0
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.0
- '@smithy/util-defaults-mode-node': 4.0.0
- '@smithy/util-endpoints': 3.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-retry': 4.0.0
- '@smithy/util-stream': 4.0.0
- '@smithy/util-utf8': 4.0.0
- '@smithy/util-waiter': 4.0.0
+ '@aws-sdk/client-sso-oidc': 3.721.0(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/client-sts': 3.721.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/credential-provider-node': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/middleware-bucket-endpoint': 3.721.0
+ '@aws-sdk/middleware-expect-continue': 3.714.0
+ '@aws-sdk/middleware-flexible-checksums': 3.717.0
+ '@aws-sdk/middleware-host-header': 3.714.0
+ '@aws-sdk/middleware-location-constraint': 3.714.0
+ '@aws-sdk/middleware-logger': 3.714.0
+ '@aws-sdk/middleware-recursion-detection': 3.714.0
+ '@aws-sdk/middleware-sdk-s3': 3.716.0
+ '@aws-sdk/middleware-ssec': 3.714.0
+ '@aws-sdk/middleware-user-agent': 3.721.0
+ '@aws-sdk/region-config-resolver': 3.714.0
+ '@aws-sdk/signature-v4-multi-region': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-endpoints': 3.714.0
+ '@aws-sdk/util-user-agent-browser': 3.714.0
+ '@aws-sdk/util-user-agent-node': 3.721.0
+ '@aws-sdk/xml-builder': 3.709.0
+ '@smithy/config-resolver': 3.0.13
+ '@smithy/core': 2.5.7
+ '@smithy/eventstream-serde-browser': 3.0.14
+ '@smithy/eventstream-serde-config-resolver': 3.0.11
+ '@smithy/eventstream-serde-node': 3.0.13
+ '@smithy/fetch-http-handler': 4.1.3
+ '@smithy/hash-blob-browser': 3.1.10
+ '@smithy/hash-node': 3.0.11
+ '@smithy/hash-stream-node': 3.1.10
+ '@smithy/invalid-dependency': 3.0.11
+ '@smithy/md5-js': 3.0.11
+ '@smithy/middleware-content-length': 3.0.13
+ '@smithy/middleware-endpoint': 3.2.8
+ '@smithy/middleware-retry': 3.0.34
+ '@smithy/middleware-serde': 3.0.11
+ '@smithy/middleware-stack': 3.0.11
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/node-http-handler': 3.3.3
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/url-parser': 3.0.11
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.34
+ '@smithy/util-defaults-mode-node': 3.0.34
+ '@smithy/util-endpoints': 2.1.7
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-retry': 3.0.11
+ '@smithy/util-stream': 3.3.4
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-ses@3.723.0':
+ '@aws-sdk/client-ses@3.721.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.723.0(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/client-sts': 3.723.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/credential-provider-node': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/middleware-host-header': 3.723.0
- '@aws-sdk/middleware-logger': 3.723.0
- '@aws-sdk/middleware-recursion-detection': 3.723.0
- '@aws-sdk/middleware-user-agent': 3.723.0
- '@aws-sdk/region-config-resolver': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-endpoints': 3.723.0
- '@aws-sdk/util-user-agent-browser': 3.723.0
- '@aws-sdk/util-user-agent-node': 3.723.0
- '@smithy/config-resolver': 4.0.0
- '@smithy/core': 3.0.0
- '@smithy/fetch-http-handler': 5.0.0
- '@smithy/hash-node': 4.0.0
- '@smithy/invalid-dependency': 4.0.0
- '@smithy/middleware-content-length': 4.0.0
- '@smithy/middleware-endpoint': 4.0.0
- '@smithy/middleware-retry': 4.0.0
- '@smithy/middleware-serde': 4.0.0
- '@smithy/middleware-stack': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/node-http-handler': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/url-parser': 4.0.0
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.0
- '@smithy/util-defaults-mode-node': 4.0.0
- '@smithy/util-endpoints': 3.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-retry': 4.0.0
- '@smithy/util-utf8': 4.0.0
- '@smithy/util-waiter': 4.0.0
+ '@aws-sdk/client-sso-oidc': 3.721.0(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/client-sts': 3.721.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/credential-provider-node': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/middleware-host-header': 3.714.0
+ '@aws-sdk/middleware-logger': 3.714.0
+ '@aws-sdk/middleware-recursion-detection': 3.714.0
+ '@aws-sdk/middleware-user-agent': 3.721.0
+ '@aws-sdk/region-config-resolver': 3.714.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-endpoints': 3.714.0
+ '@aws-sdk/util-user-agent-browser': 3.714.0
+ '@aws-sdk/util-user-agent-node': 3.721.0
+ '@smithy/config-resolver': 3.0.13
+ '@smithy/core': 2.5.7
+ '@smithy/fetch-http-handler': 4.1.3
+ '@smithy/hash-node': 3.0.11
+ '@smithy/invalid-dependency': 3.0.11
+ '@smithy/middleware-content-length': 3.0.13
+ '@smithy/middleware-endpoint': 3.2.8
+ '@smithy/middleware-retry': 3.0.34
+ '@smithy/middleware-serde': 3.0.11
+ '@smithy/middleware-stack': 3.0.11
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/node-http-handler': 3.3.3
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/url-parser': 3.0.11
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.34
+ '@smithy/util-defaults-mode-node': 3.0.34
+ '@smithy/util-endpoints': 2.1.7
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-retry': 3.0.11
+ '@smithy/util-utf8': 3.0.0
+ '@smithy/util-waiter': 3.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0)':
+ '@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0)':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sts': 3.723.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/credential-provider-node': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/middleware-host-header': 3.723.0
- '@aws-sdk/middleware-logger': 3.723.0
- '@aws-sdk/middleware-recursion-detection': 3.723.0
- '@aws-sdk/middleware-user-agent': 3.723.0
- '@aws-sdk/region-config-resolver': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-endpoints': 3.723.0
- '@aws-sdk/util-user-agent-browser': 3.723.0
- '@aws-sdk/util-user-agent-node': 3.723.0
- '@smithy/config-resolver': 4.0.0
- '@smithy/core': 3.0.0
- '@smithy/fetch-http-handler': 5.0.0
- '@smithy/hash-node': 4.0.0
- '@smithy/invalid-dependency': 4.0.0
- '@smithy/middleware-content-length': 4.0.0
- '@smithy/middleware-endpoint': 4.0.0
- '@smithy/middleware-retry': 4.0.0
- '@smithy/middleware-serde': 4.0.0
- '@smithy/middleware-stack': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/node-http-handler': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/url-parser': 4.0.0
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.0
- '@smithy/util-defaults-mode-node': 4.0.0
- '@smithy/util-endpoints': 3.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-retry': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/client-sts': 3.721.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/credential-provider-node': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/middleware-host-header': 3.714.0
+ '@aws-sdk/middleware-logger': 3.714.0
+ '@aws-sdk/middleware-recursion-detection': 3.714.0
+ '@aws-sdk/middleware-user-agent': 3.721.0
+ '@aws-sdk/region-config-resolver': 3.714.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-endpoints': 3.714.0
+ '@aws-sdk/util-user-agent-browser': 3.714.0
+ '@aws-sdk/util-user-agent-node': 3.721.0
+ '@smithy/config-resolver': 3.0.13
+ '@smithy/core': 2.5.7
+ '@smithy/fetch-http-handler': 4.1.3
+ '@smithy/hash-node': 3.0.11
+ '@smithy/invalid-dependency': 3.0.11
+ '@smithy/middleware-content-length': 3.0.13
+ '@smithy/middleware-endpoint': 3.2.8
+ '@smithy/middleware-retry': 3.0.34
+ '@smithy/middleware-serde': 3.0.11
+ '@smithy/middleware-stack': 3.0.11
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/node-http-handler': 3.3.3
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/url-parser': 3.0.11
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.34
+ '@smithy/util-defaults-mode-node': 3.0.34
+ '@smithy/util-endpoints': 2.1.7
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-retry': 3.0.11
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso@3.723.0':
+ '@aws-sdk/client-sso@3.721.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/middleware-host-header': 3.723.0
- '@aws-sdk/middleware-logger': 3.723.0
- '@aws-sdk/middleware-recursion-detection': 3.723.0
- '@aws-sdk/middleware-user-agent': 3.723.0
- '@aws-sdk/region-config-resolver': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-endpoints': 3.723.0
- '@aws-sdk/util-user-agent-browser': 3.723.0
- '@aws-sdk/util-user-agent-node': 3.723.0
- '@smithy/config-resolver': 4.0.0
- '@smithy/core': 3.0.0
- '@smithy/fetch-http-handler': 5.0.0
- '@smithy/hash-node': 4.0.0
- '@smithy/invalid-dependency': 4.0.0
- '@smithy/middleware-content-length': 4.0.0
- '@smithy/middleware-endpoint': 4.0.0
- '@smithy/middleware-retry': 4.0.0
- '@smithy/middleware-serde': 4.0.0
- '@smithy/middleware-stack': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/node-http-handler': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/url-parser': 4.0.0
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.0
- '@smithy/util-defaults-mode-node': 4.0.0
- '@smithy/util-endpoints': 3.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-retry': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/middleware-host-header': 3.714.0
+ '@aws-sdk/middleware-logger': 3.714.0
+ '@aws-sdk/middleware-recursion-detection': 3.714.0
+ '@aws-sdk/middleware-user-agent': 3.721.0
+ '@aws-sdk/region-config-resolver': 3.714.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-endpoints': 3.714.0
+ '@aws-sdk/util-user-agent-browser': 3.714.0
+ '@aws-sdk/util-user-agent-node': 3.721.0
+ '@smithy/config-resolver': 3.0.13
+ '@smithy/core': 2.5.7
+ '@smithy/fetch-http-handler': 4.1.3
+ '@smithy/hash-node': 3.0.11
+ '@smithy/invalid-dependency': 3.0.11
+ '@smithy/middleware-content-length': 3.0.13
+ '@smithy/middleware-endpoint': 3.2.8
+ '@smithy/middleware-retry': 3.0.34
+ '@smithy/middleware-serde': 3.0.11
+ '@smithy/middleware-stack': 3.0.11
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/node-http-handler': 3.3.3
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/url-parser': 3.0.11
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.34
+ '@smithy/util-defaults-mode-node': 3.0.34
+ '@smithy/util-endpoints': 2.1.7
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-retry': 3.0.11
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sts@3.723.0':
+ '@aws-sdk/client-sts@3.721.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
'@aws-crypto/sha256-js': 5.2.0
- '@aws-sdk/client-sso-oidc': 3.723.0(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/credential-provider-node': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/middleware-host-header': 3.723.0
- '@aws-sdk/middleware-logger': 3.723.0
- '@aws-sdk/middleware-recursion-detection': 3.723.0
- '@aws-sdk/middleware-user-agent': 3.723.0
- '@aws-sdk/region-config-resolver': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-endpoints': 3.723.0
- '@aws-sdk/util-user-agent-browser': 3.723.0
- '@aws-sdk/util-user-agent-node': 3.723.0
- '@smithy/config-resolver': 4.0.0
- '@smithy/core': 3.0.0
- '@smithy/fetch-http-handler': 5.0.0
- '@smithy/hash-node': 4.0.0
- '@smithy/invalid-dependency': 4.0.0
- '@smithy/middleware-content-length': 4.0.0
- '@smithy/middleware-endpoint': 4.0.0
- '@smithy/middleware-retry': 4.0.0
- '@smithy/middleware-serde': 4.0.0
- '@smithy/middleware-stack': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/node-http-handler': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/url-parser': 4.0.0
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.0
- '@smithy/util-defaults-mode-node': 4.0.0
- '@smithy/util-endpoints': 3.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-retry': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/client-sso-oidc': 3.721.0(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/credential-provider-node': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/middleware-host-header': 3.714.0
+ '@aws-sdk/middleware-logger': 3.714.0
+ '@aws-sdk/middleware-recursion-detection': 3.714.0
+ '@aws-sdk/middleware-user-agent': 3.721.0
+ '@aws-sdk/region-config-resolver': 3.714.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-endpoints': 3.714.0
+ '@aws-sdk/util-user-agent-browser': 3.714.0
+ '@aws-sdk/util-user-agent-node': 3.721.0
+ '@smithy/config-resolver': 3.0.13
+ '@smithy/core': 2.5.7
+ '@smithy/fetch-http-handler': 4.1.3
+ '@smithy/hash-node': 3.0.11
+ '@smithy/invalid-dependency': 3.0.11
+ '@smithy/middleware-content-length': 3.0.13
+ '@smithy/middleware-endpoint': 3.2.8
+ '@smithy/middleware-retry': 3.0.34
+ '@smithy/middleware-serde': 3.0.11
+ '@smithy/middleware-stack': 3.0.11
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/node-http-handler': 3.3.3
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/url-parser': 3.0.11
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-body-length-node': 3.0.0
+ '@smithy/util-defaults-mode-browser': 3.0.34
+ '@smithy/util-defaults-mode-node': 3.0.34
+ '@smithy/util-endpoints': 2.1.7
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-retry': 3.0.11
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/core@3.723.0':
- dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/core': 3.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/property-provider': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/signature-v4': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-middleware': 4.0.0
+ '@aws-sdk/core@3.716.0':
+ dependencies:
+ '@aws-sdk/types': 3.714.0
+ '@smithy/core': 2.5.7
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/property-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/signature-v4': 4.2.4
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-middleware': 3.0.11
fast-xml-parser: 4.4.1
tslib: 2.8.1
- '@aws-sdk/credential-provider-env@3.723.0':
+ '@aws-sdk/credential-provider-env@3.716.0':
dependencies:
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@smithy/property-provider': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/property-provider': 3.1.11
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/credential-provider-http@3.723.0':
- dependencies:
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@smithy/fetch-http-handler': 5.0.0
- '@smithy/node-http-handler': 4.0.0
- '@smithy/property-provider': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-stream': 4.0.0
+ '@aws-sdk/credential-provider-http@3.716.0':
+ dependencies:
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/fetch-http-handler': 4.1.3
+ '@smithy/node-http-handler': 3.3.3
+ '@smithy/property-provider': 3.1.11
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-stream': 3.3.4
tslib: 2.8.1
- '@aws-sdk/credential-provider-ini@3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)':
- dependencies:
- '@aws-sdk/client-sts': 3.723.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/credential-provider-env': 3.723.0
- '@aws-sdk/credential-provider-http': 3.723.0
- '@aws-sdk/credential-provider-process': 3.723.0
- '@aws-sdk/credential-provider-sso': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))
- '@aws-sdk/credential-provider-web-identity': 3.723.0(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/types': 3.723.0
- '@smithy/credential-provider-imds': 4.0.0
- '@smithy/property-provider': 4.0.0
- '@smithy/shared-ini-file-loader': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/credential-provider-ini@3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)':
+ dependencies:
+ '@aws-sdk/client-sts': 3.721.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/credential-provider-env': 3.716.0
+ '@aws-sdk/credential-provider-http': 3.716.0
+ '@aws-sdk/credential-provider-process': 3.716.0
+ '@aws-sdk/credential-provider-sso': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))
+ '@aws-sdk/credential-provider-web-identity': 3.716.0(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/types': 3.714.0
+ '@smithy/credential-provider-imds': 3.2.8
+ '@smithy/property-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/credential-provider-node@3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)':
- dependencies:
- '@aws-sdk/credential-provider-env': 3.723.0
- '@aws-sdk/credential-provider-http': 3.723.0
- '@aws-sdk/credential-provider-ini': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/credential-provider-process': 3.723.0
- '@aws-sdk/credential-provider-sso': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))
- '@aws-sdk/credential-provider-web-identity': 3.723.0(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/types': 3.723.0
- '@smithy/credential-provider-imds': 4.0.0
- '@smithy/property-provider': 4.0.0
- '@smithy/shared-ini-file-loader': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/credential-provider-node@3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.716.0
+ '@aws-sdk/credential-provider-http': 3.716.0
+ '@aws-sdk/credential-provider-ini': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/credential-provider-process': 3.716.0
+ '@aws-sdk/credential-provider-sso': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))
+ '@aws-sdk/credential-provider-web-identity': 3.716.0(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/types': 3.714.0
+ '@smithy/credential-provider-imds': 3.2.8
+ '@smithy/property-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- '@aws-sdk/client-sts'
- aws-crt
- '@aws-sdk/credential-provider-process@3.723.0':
+ '@aws-sdk/credential-provider-process@3.716.0':
dependencies:
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@smithy/property-provider': 4.0.0
- '@smithy/shared-ini-file-loader': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/property-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/credential-provider-sso@3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))':
+ '@aws-sdk/credential-provider-sso@3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))':
dependencies:
- '@aws-sdk/client-sso': 3.723.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/token-providers': 3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))
- '@aws-sdk/types': 3.723.0
- '@smithy/property-provider': 4.0.0
- '@smithy/shared-ini-file-loader': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/client-sso': 3.721.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/token-providers': 3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))
+ '@aws-sdk/types': 3.714.0
+ '@smithy/property-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
transitivePeerDependencies:
- '@aws-sdk/client-sso-oidc'
- aws-crt
- '@aws-sdk/credential-provider-web-identity@3.723.0(@aws-sdk/client-sts@3.723.0)':
+ '@aws-sdk/credential-provider-web-identity@3.716.0(@aws-sdk/client-sts@3.721.0)':
dependencies:
- '@aws-sdk/client-sts': 3.723.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@smithy/property-provider': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/client-sts': 3.721.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/property-provider': 3.1.11
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/middleware-bucket-endpoint@3.723.0':
+ '@aws-sdk/middleware-bucket-endpoint@3.721.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-arn-parser': 3.723.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-config-provider': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-arn-parser': 3.693.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
+ '@smithy/util-config-provider': 3.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-expect-continue@3.723.0':
+ '@aws-sdk/middleware-expect-continue@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/middleware-flexible-checksums@3.723.0':
+ '@aws-sdk/middleware-flexible-checksums@3.717.0':
dependencies:
'@aws-crypto/crc32': 5.2.0
'@aws-crypto/crc32c': 5.2.0
'@aws-crypto/util': 5.2.0
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@smithy/is-array-buffer': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-stream': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/is-array-buffer': 3.0.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-stream': 3.3.4
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-host-header@3.723.0':
+ '@aws-sdk/middleware-host-header@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/middleware-location-constraint@3.723.0':
+ '@aws-sdk/middleware-location-constraint@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/middleware-logger@3.723.0':
+ '@aws-sdk/middleware-logger@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/middleware-recursion-detection@3.723.0':
+ '@aws-sdk/middleware-recursion-detection@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/middleware-sdk-s3@3.723.0':
- dependencies:
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-arn-parser': 3.723.0
- '@smithy/core': 3.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/signature-v4': 5.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-stream': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@aws-sdk/middleware-sdk-s3@3.716.0':
+ dependencies:
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-arn-parser': 3.693.0
+ '@smithy/core': 2.5.7
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/signature-v4': 4.2.4
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-stream': 3.3.4
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@aws-sdk/middleware-ssec@3.723.0':
+ '@aws-sdk/middleware-ssec@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/middleware-user-agent@3.723.0':
+ '@aws-sdk/middleware-user-agent@3.721.0':
dependencies:
- '@aws-sdk/core': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@aws-sdk/util-endpoints': 3.723.0
- '@smithy/core': 3.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/core': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@aws-sdk/util-endpoints': 3.714.0
+ '@smithy/core': 2.5.7
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/region-config-resolver@3.723.0':
+ '@aws-sdk/region-config-resolver@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/types': 3.7.2
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.11
tslib: 2.8.1
- '@aws-sdk/signature-v4-multi-region@3.723.0':
+ '@aws-sdk/signature-v4-multi-region@3.716.0':
dependencies:
- '@aws-sdk/middleware-sdk-s3': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/signature-v4': 5.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/middleware-sdk-s3': 3.716.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/signature-v4': 4.2.4
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/token-providers@3.723.0(@aws-sdk/client-sso-oidc@3.723.0(@aws-sdk/client-sts@3.723.0))':
+ '@aws-sdk/token-providers@3.721.0(@aws-sdk/client-sso-oidc@3.721.0(@aws-sdk/client-sts@3.721.0))':
dependencies:
- '@aws-sdk/client-sso-oidc': 3.723.0(@aws-sdk/client-sts@3.723.0)
- '@aws-sdk/types': 3.723.0
- '@smithy/property-provider': 4.0.0
- '@smithy/shared-ini-file-loader': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/client-sso-oidc': 3.721.0(@aws-sdk/client-sts@3.721.0)
+ '@aws-sdk/types': 3.714.0
+ '@smithy/property-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/types@3.723.0':
+ '@aws-sdk/types@3.714.0':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/util-arn-parser@3.723.0':
+ '@aws-sdk/util-arn-parser@3.693.0':
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-endpoints@3.723.0':
+ '@aws-sdk/util-endpoints@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/types': 4.0.0
- '@smithy/util-endpoints': 3.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-endpoints': 2.1.7
tslib: 2.8.1
- '@aws-sdk/util-locate-window@3.723.0':
+ '@aws-sdk/util-locate-window@3.679.0':
dependencies:
tslib: 2.8.1
- '@aws-sdk/util-user-agent-browser@3.723.0':
+ '@aws-sdk/util-user-agent-browser@3.714.0':
dependencies:
- '@aws-sdk/types': 3.723.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/types': 3.7.2
bowser: 2.11.0
tslib: 2.8.1
- '@aws-sdk/util-user-agent-node@3.723.0':
+ '@aws-sdk/util-user-agent-node@3.721.0':
dependencies:
- '@aws-sdk/middleware-user-agent': 3.723.0
- '@aws-sdk/types': 3.723.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/types': 4.0.0
+ '@aws-sdk/middleware-user-agent': 3.721.0
+ '@aws-sdk/types': 3.714.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@aws-sdk/xml-builder@3.723.0':
+ '@aws-sdk/xml-builder@3.709.0':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
'@babel/code-frame@7.26.2':
@@ -11688,22 +11693,22 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.3': {}
+ '@babel/compat-data@7.26.2': {}
'@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
+ '@babel/generator': 7.26.2
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helpers': 7.26.0
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.2
'@babel/template': 7.25.9
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -11716,23 +11721,23 @@ snapshots:
jsesc: 2.5.2
source-map: 0.5.7
- '@babel/generator@7.26.3':
+ '@babel/generator@7.26.2':
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- '@jridgewell/gen-mapping': 0.3.8
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+ '@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 3.1.0
+ jsesc: 3.0.2
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.26.3
+ '@babel/compat-data': 7.26.2
'@babel/helper-validator-option': 7.25.9
- browserslist: 4.24.3
+ browserslist: 4.24.2
lru-cache: 5.1.1
semver: 6.3.1
@@ -11744,35 +11749,35 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/helper-environment-visitor@7.24.7':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@babel/helper-function-name@7.24.7':
dependencies:
'@babel/template': 7.25.9
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@babel/helper-hoist-variables@7.24.7':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -11781,13 +11786,13 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@babel/helper-plugin-utils@7.25.9': {}
@@ -11796,20 +11801,27 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-simple-access@7.25.9':
+ dependencies:
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@babel/helper-string-parser@7.25.9': {}
@@ -11820,11 +11832,11 @@ snapshots:
'@babel/helpers@7.26.0':
dependencies:
'@babel/template': 7.25.9
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
- '@babel/parser@7.26.3':
+ '@babel/parser@7.26.2':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)':
dependencies:
@@ -11836,7 +11848,7 @@ snapshots:
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.0)':
dependencies:
- '@babel/compat-data': 7.26.3
+ '@babel/compat-data': 7.26.2
'@babel/core': 7.26.0
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
@@ -11890,7 +11902,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11925,7 +11937,7 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -11939,11 +11951,12 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-commonjs@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-simple-access': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -11987,7 +12000,7 @@ snapshots:
'@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -12016,32 +12029,32 @@ snapshots:
'@babel/template@7.25.9':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@babel/traverse@7.23.2':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
+ '@babel/generator': 7.26.2
'@babel/helper-environment-visitor': 7.24.7
'@babel/helper-function-name': 7.24.7
'@babel/helper-hoist-variables': 7.24.7
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- debug: 4.4.0(supports-color@8.1.1)
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+ debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.26.4':
+ '@babel/traverse@7.25.9':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.3
- '@babel/parser': 7.26.3
+ '@babel/generator': 7.26.2
+ '@babel/parser': 7.26.2
'@babel/template': 7.25.9
- '@babel/types': 7.26.3
- debug: 4.4.0(supports-color@8.1.1)
+ '@babel/types': 7.26.0
+ debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -12051,7 +12064,7 @@ snapshots:
'@babel/helper-validator-identifier': 7.25.9
to-fast-properties: 2.0.0
- '@babel/types@7.26.3':
+ '@babel/types@7.26.0':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
@@ -12069,7 +12082,7 @@ snapshots:
'@types/tough-cookie': 4.0.5
tough-cookie: 4.1.4
- '@codemirror/autocomplete@6.18.4':
+ '@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)':
dependencies:
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
@@ -12097,26 +12110,30 @@ snapshots:
'@codemirror/language': 6.10.8
'@lezer/cpp': 1.1.2
- '@codemirror/lang-css@6.3.1':
+ '@codemirror/lang-css@6.3.0(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@lezer/common': 1.2.3
'@lezer/css': 1.1.9
+ transitivePeerDependencies:
+ - '@codemirror/view'
- '@codemirror/lang-go@6.0.1':
+ '@codemirror/lang-go@6.0.1(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@lezer/common': 1.2.3
'@lezer/go': 1.0.0
+ transitivePeerDependencies:
+ - '@codemirror/view'
'@codemirror/lang-html@6.4.9':
dependencies:
- '@codemirror/autocomplete': 6.18.4
- '@codemirror/lang-css': 6.3.1
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.36.1)
'@codemirror/lang-javascript': 6.2.2
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
@@ -12132,26 +12149,28 @@ snapshots:
'@codemirror/lang-javascript@6.2.2':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
- '@codemirror/lint': 6.8.4
+ '@codemirror/lint': 6.8.2
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
'@lezer/common': 1.2.3
- '@lezer/javascript': 1.4.21
+ '@lezer/javascript': 1.4.19
'@codemirror/lang-json@6.0.1':
dependencies:
'@codemirror/language': 6.10.8
- '@lezer/json': 1.0.3
+ '@lezer/json': 1.0.2
- '@codemirror/lang-less@6.0.2':
+ '@codemirror/lang-less@6.0.2(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/lang-css': 6.3.1
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.36.1)
'@codemirror/language': 6.10.8
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
+ transitivePeerDependencies:
+ - '@codemirror/view'
'@codemirror/lang-lezer@6.0.1':
dependencies:
@@ -12160,9 +12179,9 @@ snapshots:
'@lezer/common': 1.2.3
'@lezer/lezer': 1.1.2
- '@codemirror/lang-liquid@6.2.2':
+ '@codemirror/lang-liquid@6.2.1':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/lang-html': 6.4.9
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
@@ -12171,15 +12190,15 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@codemirror/lang-markdown@6.3.1':
+ '@codemirror/lang-markdown@6.3.0':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/lang-html': 6.4.9
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
'@lezer/common': 1.2.3
- '@lezer/markdown': 1.4.0
+ '@lezer/markdown': 1.3.2
'@codemirror/lang-php@6.0.1':
dependencies:
@@ -12189,35 +12208,41 @@ snapshots:
'@lezer/common': 1.2.3
'@lezer/php': 1.0.2
- '@codemirror/lang-python@6.1.6':
+ '@codemirror/lang-python@6.1.6(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@lezer/common': 1.2.3
- '@lezer/python': 1.1.15
+ '@lezer/python': 1.1.14
+ transitivePeerDependencies:
+ - '@codemirror/view'
'@codemirror/lang-rust@6.0.1':
dependencies:
'@codemirror/language': 6.10.8
'@lezer/rust': 1.0.2
- '@codemirror/lang-sass@6.0.2':
+ '@codemirror/lang-sass@6.0.2(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/lang-css': 6.3.1
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.36.1)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@lezer/common': 1.2.3
'@lezer/sass': 1.0.7
+ transitivePeerDependencies:
+ - '@codemirror/view'
- '@codemirror/lang-sql@6.8.0':
+ '@codemirror/lang-sql@6.8.0(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
+ transitivePeerDependencies:
+ - '@codemirror/view'
'@codemirror/lang-vue@0.1.3':
dependencies:
@@ -12237,47 +12262,50 @@ snapshots:
'@codemirror/lang-xml@6.1.0':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
'@lezer/common': 1.2.3
- '@lezer/xml': 1.0.6
+ '@lezer/xml': 1.0.5
- '@codemirror/lang-yaml@6.1.2':
+ '@codemirror/lang-yaml@6.1.1(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
- '@lezer/lr': 1.4.2
'@lezer/yaml': 1.0.3
+ transitivePeerDependencies:
+ - '@codemirror/view'
- '@codemirror/language-data@6.5.1':
+ '@codemirror/language-data@6.5.1(@codemirror/view@6.36.1)':
dependencies:
'@codemirror/lang-angular': 0.1.3
'@codemirror/lang-cpp': 6.0.2
- '@codemirror/lang-css': 6.3.1
- '@codemirror/lang-go': 6.0.1
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.36.1)
+ '@codemirror/lang-go': 6.0.1(@codemirror/view@6.36.1)
'@codemirror/lang-html': 6.4.9
'@codemirror/lang-java': 6.0.1
'@codemirror/lang-javascript': 6.2.2
'@codemirror/lang-json': 6.0.1
- '@codemirror/lang-less': 6.0.2
- '@codemirror/lang-liquid': 6.2.2
- '@codemirror/lang-markdown': 6.3.1
+ '@codemirror/lang-less': 6.0.2(@codemirror/view@6.36.1)
+ '@codemirror/lang-liquid': 6.2.1
+ '@codemirror/lang-markdown': 6.3.0
'@codemirror/lang-php': 6.0.1
- '@codemirror/lang-python': 6.1.6
+ '@codemirror/lang-python': 6.1.6(@codemirror/view@6.36.1)
'@codemirror/lang-rust': 6.0.1
- '@codemirror/lang-sass': 6.0.2
- '@codemirror/lang-sql': 6.8.0
+ '@codemirror/lang-sass': 6.0.2(@codemirror/view@6.36.1)
+ '@codemirror/lang-sql': 6.8.0(@codemirror/view@6.36.1)
'@codemirror/lang-vue': 0.1.3
'@codemirror/lang-wast': 6.0.2
'@codemirror/lang-xml': 6.1.0
- '@codemirror/lang-yaml': 6.1.2
+ '@codemirror/lang-yaml': 6.1.1(@codemirror/view@6.36.1)
'@codemirror/language': 6.10.8
'@codemirror/legacy-modes': 6.4.2
+ transitivePeerDependencies:
+ - '@codemirror/view'
'@codemirror/language@6.10.8':
dependencies:
@@ -12292,13 +12320,13 @@ snapshots:
dependencies:
'@codemirror/language': 6.10.8
- '@codemirror/lint@6.8.4':
+ '@codemirror/lint@6.8.2':
dependencies:
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
crelt: 1.0.6
- '@codemirror/search@6.5.8':
+ '@codemirror/search@6.5.7':
dependencies:
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
@@ -12324,14 +12352,14 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commitlint/cli@19.6.1(@types/node@20.17.12)(typescript@5.7.2)':
+ '@commitlint/cli@19.6.1(@types/node@20.17.11)(typescript@5.7.2)':
dependencies:
'@commitlint/format': 19.5.0
'@commitlint/lint': 19.6.0
- '@commitlint/load': 19.6.1(@types/node@20.17.12)(typescript@5.7.2)
+ '@commitlint/load': 19.6.1(@types/node@20.17.11)(typescript@5.7.2)
'@commitlint/read': 19.5.0
'@commitlint/types': 19.5.0
- tinyexec: 0.3.2
+ tinyexec: 0.3.1
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -12361,7 +12389,7 @@ snapshots:
'@commitlint/format@19.5.0':
dependencies:
'@commitlint/types': 19.5.0
- chalk: 5.4.1
+ chalk: 5.3.0
'@commitlint/is-ignored@19.6.0':
dependencies:
@@ -12375,15 +12403,15 @@ snapshots:
'@commitlint/rules': 19.6.0
'@commitlint/types': 19.5.0
- '@commitlint/load@19.6.1(@types/node@20.17.12)(typescript@5.7.2)':
+ '@commitlint/load@19.6.1(@types/node@20.17.11)(typescript@5.7.2)':
dependencies:
'@commitlint/config-validator': 19.5.0
'@commitlint/execute-rule': 19.5.0
'@commitlint/resolve-extends': 19.5.0
'@commitlint/types': 19.5.0
- chalk: 5.4.1
+ chalk: 5.3.0
cosmiconfig: 9.0.0(typescript@5.7.2)
- cosmiconfig-typescript-loader: 6.1.0(@types/node@20.17.12)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2)
+ cosmiconfig-typescript-loader: 6.1.0(@types/node@20.17.11)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -12405,7 +12433,7 @@ snapshots:
'@commitlint/types': 19.5.0
git-raw-commits: 4.0.0
minimist: 1.2.8
- tinyexec: 0.3.2
+ tinyexec: 0.3.1
'@commitlint/resolve-extends@19.5.0':
dependencies:
@@ -12431,8 +12459,8 @@ snapshots:
'@commitlint/types@19.5.0':
dependencies:
- '@types/conventional-commits-parser': 5.0.1
- chalk: 5.4.1
+ '@types/conventional-commits-parser': 5.0.0
+ chalk: 5.3.0
'@cspotcode/source-map-support@0.8.1':
dependencies:
@@ -12499,15 +12527,6 @@ snapshots:
tslib: 2.8.1
optional: true
- '@envelop/core@5.0.2':
- dependencies:
- '@envelop/types': 5.0.0
- tslib: 2.8.1
-
- '@envelop/types@5.0.0':
- dependencies:
- tslib: 2.8.1
-
'@esbuild/aix-ppc64@0.21.5':
optional: true
@@ -12577,19 +12596,31 @@ snapshots:
'@esbuild/win32-x64@0.21.5':
optional: true
- '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)':
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))':
dependencies:
- eslint: 8.57.1
+ eslint: 9.17.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
- '@eslint/eslintrc@2.1.4':
+ '@eslint/config-array@0.19.1':
+ dependencies:
+ '@eslint/object-schema': 2.1.5
+ debug: 4.3.7(supports-color@8.1.1)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@eslint/core@0.9.1':
+ dependencies:
+ '@types/json-schema': 7.0.15
+
+ '@eslint/eslintrc@3.2.0':
dependencies:
ajv: 6.12.6
- debug: 4.4.0(supports-color@8.1.1)
- espree: 9.6.1
- globals: 13.24.0
+ debug: 4.3.7(supports-color@8.1.1)
+ espree: 10.3.0
+ globals: 14.0.0
ignore: 5.3.2
import-fresh: 3.3.0
js-yaml: 4.1.0
@@ -12598,7 +12629,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.57.1': {}
+ '@eslint/js@9.17.0': {}
+
+ '@eslint/object-schema@2.1.5': {}
+
+ '@eslint/plugin-kit@0.2.4':
+ dependencies:
+ levn: 0.4.1
'@faker-js/faker@9.3.0': {}
@@ -12621,36 +12658,36 @@ snapshots:
lodash.isundefined: 3.0.1
lodash.uniq: 4.5.0
- '@floating-ui/core@1.6.9':
+ '@floating-ui/core@1.6.8':
dependencies:
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/utils': 0.2.8
- '@floating-ui/dom@1.6.13':
+ '@floating-ui/dom@1.6.12':
dependencies:
- '@floating-ui/core': 1.6.9
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/core': 1.6.8
+ '@floating-ui/utils': 0.2.8
'@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/dom': 1.6.13
+ '@floating-ui/dom': 1.6.12
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@floating-ui/react@0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react@0.26.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@floating-ui/utils': 0.2.9
+ '@floating-ui/utils': 0.2.8
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
tabbable: 6.2.0
- '@floating-ui/utils@0.2.9': {}
+ '@floating-ui/utils@0.2.8': {}
'@golevelup/nestjs-common@2.0.1(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))':
dependencies:
'@nestjs/common': 10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1)
lodash: 4.17.21
- nanoid: 3.3.8
+ nanoid: 3.3.7
'@golevelup/nestjs-discovery@4.0.2(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)':
dependencies:
@@ -12671,8 +12708,8 @@ snapshots:
'@golevelup/nestjs-modules': 0.7.1(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(rxjs@7.8.1)
'@nestjs/common': 10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1)
'@nestjs/core': 10.4.15(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.15)(reflect-metadata@0.2.2)(rxjs@7.8.1)
- amqp-connection-manager: 4.1.14(amqplib@0.10.5)
- amqplib: 0.10.5
+ amqp-connection-manager: 4.1.14(amqplib@0.10.4)
+ amqplib: 0.10.4
lodash: 4.17.21
reflect-metadata: 0.2.2
rxjs: 7.8.1
@@ -12685,43 +12722,43 @@ snapshots:
graphql: 16.10.0
tslib: 2.6.3
- '@graphql-codegen/cli@5.0.3(@types/node@20.17.12)(graphql@16.10.0)(typescript@5.7.2)':
+ '@graphql-codegen/cli@5.0.3(@types/node@20.17.11)(graphql@16.10.0)(typescript@5.7.2)':
dependencies:
- '@babel/generator': 7.26.3
+ '@babel/generator': 7.26.2
'@babel/template': 7.25.9
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@graphql-codegen/client-preset': 4.5.1(graphql@16.10.0)
'@graphql-codegen/core': 4.0.2(graphql@16.10.0)
'@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0)
- '@graphql-tools/apollo-engine-loader': 8.0.12(graphql@16.10.0)
- '@graphql-tools/code-file-loader': 8.1.13(graphql@16.10.0)
- '@graphql-tools/git-loader': 8.0.17(graphql@16.10.0)
- '@graphql-tools/github-loader': 8.0.12(@types/node@20.17.12)(graphql@16.10.0)
- '@graphql-tools/graphql-file-loader': 8.0.11(graphql@16.10.0)
- '@graphql-tools/json-file-loader': 8.0.11(graphql@16.10.0)
- '@graphql-tools/load': 8.0.12(graphql@16.10.0)
- '@graphql-tools/prisma-loader': 8.0.17(@types/node@20.17.12)(graphql@16.10.0)
- '@graphql-tools/url-loader': 8.0.23(@types/node@20.17.12)(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/apollo-engine-loader': 8.0.2(graphql@16.10.0)
+ '@graphql-tools/code-file-loader': 8.1.4(graphql@16.10.0)
+ '@graphql-tools/git-loader': 8.0.8(graphql@16.10.0)
+ '@graphql-tools/github-loader': 8.0.2(@types/node@20.17.11)(graphql@16.10.0)
+ '@graphql-tools/graphql-file-loader': 8.0.2(graphql@16.10.0)
+ '@graphql-tools/json-file-loader': 8.0.2(graphql@16.10.0)
+ '@graphql-tools/load': 8.0.3(graphql@16.10.0)
+ '@graphql-tools/prisma-loader': 8.0.15(@types/node@20.17.11)(graphql@16.10.0)
+ '@graphql-tools/url-loader': 8.0.13(@types/node@20.17.11)(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
'@whatwg-node/fetch': 0.9.23
chalk: 4.1.2
cosmiconfig: 8.3.6(typescript@5.7.2)
debounce: 1.2.1
detect-indent: 6.1.0
graphql: 16.10.0
- graphql-config: 5.1.3(@types/node@20.17.12)(graphql@16.10.0)(typescript@5.7.2)
+ graphql-config: 5.1.3(@types/node@20.17.11)(graphql@16.10.0)(typescript@5.7.2)
inquirer: 8.2.6
is-glob: 4.0.3
- jiti: 1.21.7
+ jiti: 1.21.6
json-to-pretty-yaml: 1.2.2
listr2: 4.0.5
log-symbols: 4.1.0
micromatch: 4.0.8
- shell-quote: 1.8.2
+ shell-quote: 1.8.1
string-env-interpolation: 1.0.1
ts-log: 2.2.7
tslib: 2.8.1
- yaml: 2.7.0
+ yaml: 2.6.0
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -12745,7 +12782,7 @@ snapshots:
'@graphql-codegen/typescript-operations': 4.4.0(graphql@16.10.0)
'@graphql-codegen/visitor-plugin-common': 5.6.0(graphql@16.10.0)
'@graphql-tools/documents': 1.0.1(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
'@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0)
graphql: 16.10.0
tslib: 2.6.3
@@ -12756,8 +12793,8 @@ snapshots:
'@graphql-codegen/core@4.0.2(graphql@16.10.0)':
dependencies:
'@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0)
- '@graphql-tools/schema': 10.0.16(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/schema': 10.0.7(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
tslib: 2.6.3
@@ -12765,7 +12802,7 @@ snapshots:
dependencies:
'@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0)
'@graphql-codegen/visitor-plugin-common': 5.6.0(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
auto-bind: 4.0.0
graphql: 16.10.0
tslib: 2.6.3
@@ -12775,7 +12812,7 @@ snapshots:
'@graphql-codegen/plugin-helpers@5.1.0(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
change-case-all: 1.0.15
common-tags: 1.8.2
graphql: 16.10.0
@@ -12786,7 +12823,7 @@ snapshots:
'@graphql-codegen/schema-ast@4.1.0(graphql@16.10.0)':
dependencies:
'@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
tslib: 2.6.3
@@ -12830,8 +12867,8 @@ snapshots:
dependencies:
'@graphql-codegen/plugin-helpers': 5.1.0(graphql@16.10.0)
'@graphql-tools/optimize': 2.0.0(graphql@16.10.0)
- '@graphql-tools/relay-operation-optimizer': 7.0.11(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/relay-operation-optimizer': 7.0.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
auto-bind: 4.0.0
change-case-all: 1.0.15
dependency-graph: 0.11.0
@@ -12839,37 +12876,32 @@ snapshots:
graphql-tag: 2.12.6(graphql@16.10.0)
parse-filepath: 1.0.2
tslib: 2.6.3
- transitivePeerDependencies:
- - encoding
- - supports-color
-
- '@graphql-hive/gateway-abort-signal-any@0.0.3(graphql@16.10.0)':
- dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
- graphql: 16.10.0
- tslib: 2.8.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
- '@graphql-tools/apollo-engine-loader@8.0.12(graphql@16.10.0)':
+ '@graphql-tools/apollo-engine-loader@8.0.2(graphql@16.10.0)':
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
- '@whatwg-node/fetch': 0.10.1
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
+ '@whatwg-node/fetch': 0.9.23
graphql: 16.10.0
tslib: 2.8.1
transitivePeerDependencies:
- encoding
- '@graphql-tools/batch-execute@9.0.11(graphql@16.10.0)':
+ '@graphql-tools/batch-execute@9.0.5(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
- dataloader: 2.2.3
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
+ dataloader: 2.2.2
graphql: 16.10.0
tslib: 2.8.1
+ value-or-promise: 1.0.12
- '@graphql-tools/code-file-loader@8.1.13(graphql@16.10.0)':
+ '@graphql-tools/code-file-loader@8.1.4(graphql@16.10.0)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.12(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/graphql-tag-pluck': 8.3.3(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
globby: 11.1.0
graphql: 16.10.0
tslib: 2.8.1
@@ -12877,14 +12909,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@graphql-tools/delegate@10.2.9(graphql@16.10.0)':
+ '@graphql-tools/delegate@10.1.1(graphql@16.10.0)':
dependencies:
- '@graphql-tools/batch-execute': 9.0.11(graphql@16.10.0)
- '@graphql-tools/executor': 1.3.12(graphql@16.10.0)
- '@graphql-tools/schema': 10.0.16(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/batch-execute': 9.0.5(graphql@16.10.0)
+ '@graphql-tools/executor': 1.3.2(graphql@16.10.0)
+ '@graphql-tools/schema': 10.0.7(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
'@repeaterjs/repeater': 3.0.6
- dataloader: 2.2.3
+ dataloader: 2.2.2
dset: 3.1.4
graphql: 16.10.0
tslib: 2.8.1
@@ -12893,19 +12925,12 @@ snapshots:
dependencies:
graphql: 16.10.0
lodash.sortby: 4.7.0
- tslib: 2.6.3
-
- '@graphql-tools/executor-common@0.0.1(graphql@16.10.0)':
- dependencies:
- '@envelop/core': 5.0.2
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
- graphql: 16.10.0
+ tslib: 2.8.1
- '@graphql-tools/executor-graphql-ws@1.3.7(graphql@16.10.0)':
+ '@graphql-tools/executor-graphql-ws@1.3.1(graphql@16.10.0)':
dependencies:
- '@graphql-tools/executor-common': 0.0.1(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
- '@whatwg-node/disposablestack': 0.0.5
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
+ '@types/ws': 8.5.13
graphql: 16.10.0
graphql-ws: 5.16.0(graphql@16.10.0)
isomorphic-ws: 5.0.0(ws@8.18.0)
@@ -12915,25 +12940,22 @@ snapshots:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor-http@1.2.4(@types/node@20.17.12)(graphql@16.10.0)':
+ '@graphql-tools/executor-http@1.1.7(@types/node@20.17.11)(graphql@16.10.0)':
dependencies:
- '@graphql-hive/gateway-abort-signal-any': 0.0.3(graphql@16.10.0)
- '@graphql-tools/executor-common': 0.0.1(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
'@repeaterjs/repeater': 3.0.6
- '@whatwg-node/disposablestack': 0.0.5
- '@whatwg-node/fetch': 0.10.1
+ '@whatwg-node/fetch': 0.9.23
extract-files: 11.0.0
graphql: 16.10.0
- meros: 1.3.0(@types/node@20.17.12)
+ meros: 1.3.0(@types/node@20.17.11)
tslib: 2.8.1
value-or-promise: 1.0.12
transitivePeerDependencies:
- '@types/node'
- '@graphql-tools/executor-legacy-ws@1.1.10(graphql@16.10.0)':
+ '@graphql-tools/executor-legacy-ws@1.1.1(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
'@types/ws': 8.5.13
graphql: 16.10.0
isomorphic-ws: 5.0.0(ws@8.18.0)
@@ -12943,20 +12965,19 @@ snapshots:
- bufferutil
- utf-8-validate
- '@graphql-tools/executor@1.3.12(graphql@16.10.0)':
+ '@graphql-tools/executor@1.3.2(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
'@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0)
'@repeaterjs/repeater': 3.0.6
- '@whatwg-node/disposablestack': 0.0.5
graphql: 16.10.0
tslib: 2.8.1
value-or-promise: 1.0.12
- '@graphql-tools/git-loader@8.0.17(graphql@16.10.0)':
+ '@graphql-tools/git-loader@8.0.8(graphql@16.10.0)':
dependencies:
- '@graphql-tools/graphql-tag-pluck': 8.3.12(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/graphql-tag-pluck': 8.3.3(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
is-glob: 4.0.3
micromatch: 4.0.8
@@ -12965,13 +12986,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@graphql-tools/github-loader@8.0.12(@types/node@20.17.12)(graphql@16.10.0)':
+ '@graphql-tools/github-loader@8.0.2(@types/node@20.17.11)(graphql@16.10.0)':
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/executor-http': 1.2.4(@types/node@20.17.12)(graphql@16.10.0)
- '@graphql-tools/graphql-tag-pluck': 8.3.12(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
- '@whatwg-node/fetch': 0.10.1
+ '@graphql-tools/executor-http': 1.1.7(@types/node@20.17.11)(graphql@16.10.0)
+ '@graphql-tools/graphql-tag-pluck': 8.3.3(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
+ '@whatwg-node/fetch': 0.9.23
graphql: 16.10.0
tslib: 2.8.1
value-or-promise: 1.0.12
@@ -12980,47 +13001,47 @@ snapshots:
- encoding
- supports-color
- '@graphql-tools/graphql-file-loader@8.0.11(graphql@16.10.0)':
+ '@graphql-tools/graphql-file-loader@8.0.2(graphql@16.10.0)':
dependencies:
- '@graphql-tools/import': 7.0.11(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/import': 7.0.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
globby: 11.1.0
graphql: 16.10.0
tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/graphql-tag-pluck@8.3.12(graphql@16.10.0)':
+ '@graphql-tools/graphql-tag-pluck@8.3.3(graphql@16.10.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.2
'@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
- '@babel/traverse': 7.26.4
- '@babel/types': 7.26.3
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
tslib: 2.8.1
transitivePeerDependencies:
- supports-color
- '@graphql-tools/import@7.0.11(graphql@16.10.0)':
+ '@graphql-tools/import@7.0.2(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
resolve-from: 5.0.0
tslib: 2.8.1
- '@graphql-tools/json-file-loader@8.0.11(graphql@16.10.0)':
+ '@graphql-tools/json-file-loader@8.0.2(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
globby: 11.1.0
graphql: 16.10.0
tslib: 2.8.1
unixify: 1.0.0
- '@graphql-tools/load@8.0.12(graphql@16.10.0)':
+ '@graphql-tools/load@8.0.3(graphql@16.10.0)':
dependencies:
- '@graphql-tools/schema': 10.0.16(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/schema': 10.0.7(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
p-limit: 3.1.0
tslib: 2.8.1
@@ -13037,30 +13058,30 @@ snapshots:
graphql: 16.10.0
tslib: 2.8.1
- '@graphql-tools/merge@9.0.17(graphql@16.10.0)':
+ '@graphql-tools/merge@9.0.8(graphql@16.10.0)':
dependencies:
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
tslib: 2.8.1
'@graphql-tools/optimize@2.0.0(graphql@16.10.0)':
dependencies:
graphql: 16.10.0
- tslib: 2.6.3
+ tslib: 2.8.1
- '@graphql-tools/prisma-loader@8.0.17(@types/node@20.17.12)(graphql@16.10.0)':
+ '@graphql-tools/prisma-loader@8.0.15(@types/node@20.17.11)(graphql@16.10.0)':
dependencies:
- '@graphql-tools/url-loader': 8.0.23(@types/node@20.17.12)(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/url-loader': 8.0.13(@types/node@20.17.11)(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
'@types/js-yaml': 4.0.9
- '@whatwg-node/fetch': 0.10.1
+ '@whatwg-node/fetch': 0.9.23
chalk: 4.1.2
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
dotenv: 16.4.7
graphql: 16.10.0
graphql-request: 6.1.0(graphql@16.10.0)
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
+ https-proxy-agent: 7.0.5
jose: 5.9.6
js-yaml: 4.1.0
lodash: 4.17.21
@@ -13074,12 +13095,12 @@ snapshots:
- supports-color
- utf-8-validate
- '@graphql-tools/relay-operation-optimizer@7.0.11(graphql@16.10.0)':
+ '@graphql-tools/relay-operation-optimizer@7.0.2(graphql@16.10.0)':
dependencies:
'@ardatan/relay-compiler': 12.0.0(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
- tslib: 2.6.3
+ tslib: 2.8.1
transitivePeerDependencies:
- encoding
- supports-color
@@ -13092,10 +13113,10 @@ snapshots:
tslib: 2.8.1
value-or-promise: 1.0.12
- '@graphql-tools/schema@10.0.16(graphql@16.10.0)':
+ '@graphql-tools/schema@10.0.7(graphql@16.10.0)':
dependencies:
- '@graphql-tools/merge': 9.0.17(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/merge': 9.0.8(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
tslib: 2.8.1
value-or-promise: 1.0.12
@@ -13108,16 +13129,16 @@ snapshots:
tslib: 2.8.1
value-or-promise: 1.0.12
- '@graphql-tools/url-loader@8.0.23(@types/node@20.17.12)(graphql@16.10.0)':
+ '@graphql-tools/url-loader@8.0.13(@types/node@20.17.11)(graphql@16.10.0)':
dependencies:
'@ardatan/sync-fetch': 0.0.1
- '@graphql-tools/executor-graphql-ws': 1.3.7(graphql@16.10.0)
- '@graphql-tools/executor-http': 1.2.4(@types/node@20.17.12)(graphql@16.10.0)
- '@graphql-tools/executor-legacy-ws': 1.1.10(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
- '@graphql-tools/wrap': 10.0.27(graphql@16.10.0)
+ '@graphql-tools/executor-graphql-ws': 1.3.1(graphql@16.10.0)
+ '@graphql-tools/executor-http': 1.1.7(@types/node@20.17.11)(graphql@16.10.0)
+ '@graphql-tools/executor-legacy-ws': 1.1.1(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
+ '@graphql-tools/wrap': 10.0.15(graphql@16.10.0)
'@types/ws': 8.5.13
- '@whatwg-node/fetch': 0.10.1
+ '@whatwg-node/fetch': 0.9.23
graphql: 16.10.0
isomorphic-ws: 5.0.0(ws@8.18.0)
tslib: 2.8.1
@@ -13129,7 +13150,7 @@ snapshots:
- encoding
- utf-8-validate
- '@graphql-tools/utils@10.6.1(graphql@16.10.0)':
+ '@graphql-tools/utils@10.5.5(graphql@16.10.0)':
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0)
cross-inspect: 1.0.1
@@ -13137,7 +13158,7 @@ snapshots:
graphql: 16.10.0
tslib: 2.8.1
- '@graphql-tools/utils@10.7.2(graphql@16.10.0)':
+ '@graphql-tools/utils@10.6.1(graphql@16.10.0)':
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0)
cross-inspect: 1.0.1
@@ -13151,19 +13172,20 @@ snapshots:
graphql: 16.10.0
tslib: 2.8.1
- '@graphql-tools/wrap@10.0.27(graphql@16.10.0)':
+ '@graphql-tools/wrap@10.0.15(graphql@16.10.0)':
dependencies:
- '@graphql-tools/delegate': 10.2.9(graphql@16.10.0)
- '@graphql-tools/schema': 10.0.16(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/delegate': 10.1.1(graphql@16.10.0)
+ '@graphql-tools/schema': 10.0.7(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
graphql: 16.10.0
tslib: 2.8.1
+ value-or-promise: 1.0.12
'@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)':
dependencies:
graphql: 16.10.0
- '@grpc/grpc-js@1.12.5':
+ '@grpc/grpc-js@1.12.2':
dependencies:
'@grpc/proto-loader': 0.7.13
'@js-sdsl/ordered-map': 4.4.2
@@ -13177,28 +13199,29 @@ snapshots:
'@headlessui/react@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@floating-ui/react': 0.26.28(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/focus': 3.19.0(react@18.3.1)
- '@react-aria/interactions': 3.22.5(react@18.3.1)
- '@tanstack/react-virtual': 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@floating-ui/react': 0.26.27(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/focus': 3.18.4(react@18.3.1)
+ '@react-aria/interactions': 3.22.4(react@18.3.1)
+ '@tanstack/react-virtual': 3.10.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@hookform/resolvers@3.10.0(react-hook-form@7.54.2(react@18.3.1))':
+ '@hookform/resolvers@3.9.1(react-hook-form@7.54.2(react@18.3.1))':
dependencies:
react-hook-form: 7.54.2(react@18.3.1)
- '@humanwhocodes/config-array@0.13.0':
+ '@humanfs/core@0.19.1': {}
+
+ '@humanfs/node@0.16.6':
dependencies:
- '@humanwhocodes/object-schema': 2.0.3
- debug: 4.4.0(supports-color@8.1.1)
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.3.1
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/object-schema@2.0.3': {}
+ '@humanwhocodes/retry@0.3.1': {}
+
+ '@humanwhocodes/retry@0.4.1': {}
'@img/sharp-darwin-arm64@0.33.5':
optionalDependencies:
@@ -13275,16 +13298,16 @@ snapshots:
'@img/sharp-win32-x64@0.33.5':
optional: true
- '@inquirer/confirm@5.1.1(@types/node@20.17.12)':
+ '@inquirer/confirm@5.0.1(@types/node@20.17.11)':
dependencies:
- '@inquirer/core': 10.1.2(@types/node@20.17.12)
- '@inquirer/type': 3.0.2(@types/node@20.17.12)
- '@types/node': 20.17.12
+ '@inquirer/core': 10.0.1(@types/node@20.17.11)
+ '@inquirer/type': 3.0.0(@types/node@20.17.11)
+ '@types/node': 20.17.11
- '@inquirer/core@10.1.2(@types/node@20.17.12)':
+ '@inquirer/core@10.0.1(@types/node@20.17.11)':
dependencies:
- '@inquirer/figures': 1.0.9
- '@inquirer/type': 3.0.2(@types/node@20.17.12)
+ '@inquirer/figures': 1.0.7
+ '@inquirer/type': 3.0.0(@types/node@20.17.11)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -13295,11 +13318,11 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@inquirer/figures@1.0.9': {}
+ '@inquirer/figures@1.0.7': {}
- '@inquirer/type@3.0.2(@types/node@20.17.12)':
+ '@inquirer/type@3.0.0(@types/node@20.17.11)':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@isaacs/cliui@8.0.2':
dependencies:
@@ -13325,7 +13348,7 @@ snapshots:
'@istanbuljs/schema@0.1.3': {}
- '@jridgewell/gen-mapping@0.3.8':
+ '@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.5.0
@@ -13337,7 +13360,7 @@ snapshots:
'@jridgewell/source-map@0.3.6':
dependencies:
- '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/sourcemap-codec@1.5.0': {}
@@ -13392,13 +13415,13 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@lezer/javascript@1.4.21':
+ '@lezer/javascript@1.4.19':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@lezer/json@1.0.3':
+ '@lezer/json@1.0.2':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -13413,7 +13436,7 @@ snapshots:
dependencies:
'@lezer/common': 1.2.3
- '@lezer/markdown@1.4.0':
+ '@lezer/markdown@1.3.2':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -13424,7 +13447,7 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@lezer/python@1.1.15':
+ '@lezer/python@1.1.14':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -13442,7 +13465,7 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@lezer/xml@1.0.6':
+ '@lezer/xml@1.0.5':
dependencies:
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
@@ -13456,7 +13479,7 @@ snapshots:
'@ljharb/through@2.3.13':
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
'@lukeed/csprng@1.1.0': {}
@@ -13467,21 +13490,21 @@ snapshots:
katex: 0.16.19
react: 18.3.1
- '@microsoft/tsdoc@0.15.1': {}
+ '@microsoft/tsdoc@0.15.0': {}
- '@monaco-editor/loader@1.4.0(monaco-editor@0.52.2)':
+ '@monaco-editor/loader@1.4.0(monaco-editor@0.52.0)':
dependencies:
- monaco-editor: 0.52.2
+ monaco-editor: 0.52.0
state-local: 1.0.7
- '@monaco-editor/react@4.6.0(monaco-editor@0.52.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@monaco-editor/react@4.6.0(monaco-editor@0.52.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@monaco-editor/loader': 1.4.0(monaco-editor@0.52.2)
- monaco-editor: 0.52.2
+ '@monaco-editor/loader': 1.4.0(monaco-editor@0.52.0)
+ monaco-editor: 0.52.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@mswjs/interceptors@0.37.5':
+ '@mswjs/interceptors@0.37.4':
dependencies:
'@open-draft/deferred-promise': 2.2.0
'@open-draft/logger': 0.3.0
@@ -13558,7 +13581,7 @@ snapshots:
'@napi-rs/nice-win32-x64-msvc': 1.0.1
optional: true
- '@napi-rs/wasm-runtime@0.2.6':
+ '@napi-rs/wasm-runtime@0.2.5':
dependencies:
'@emnapi/core': 1.3.1
'@emnapi/runtime': 1.3.1
@@ -13578,7 +13601,7 @@ snapshots:
'@types/pug': 2.0.10
ejs: 3.1.10
handlebars: 4.7.8
- liquidjs: 10.20.1
+ liquidjs: 10.18.0
mjml: 4.15.3
preview-email: 3.1.0
pug: 3.0.3
@@ -13610,7 +13633,7 @@ snapshots:
cache-manager: 5.7.6
rxjs: 7.8.1
- '@nestjs/cli@10.4.9(@swc/cli@0.5.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(chokidar@3.6.0))(@swc/core@1.10.6(@swc/helpers@0.5.15))':
+ '@nestjs/cli@10.4.9(@swc/cli@0.5.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(chokidar@3.6.0))(@swc/core@1.10.4(@swc/helpers@0.5.13))':
dependencies:
'@angular-devkit/core': 17.3.11(chokidar@3.6.0)
'@angular-devkit/schematics': 17.3.11(chokidar@3.6.0)
@@ -13620,7 +13643,7 @@ snapshots:
chokidar: 3.6.0
cli-table3: 0.6.5
commander: 4.1.1
- fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))
+ fork-ts-checker-webpack-plugin: 9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))
glob: 10.4.5
inquirer: 8.2.6
node-emoji: 1.11.0
@@ -13629,11 +13652,11 @@ snapshots:
tsconfig-paths: 4.2.0
tsconfig-paths-webpack-plugin: 4.2.0
typescript: 5.7.2
- webpack: 5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))
+ webpack: 5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))
webpack-node-externals: 3.0.0
optionalDependencies:
- '@swc/cli': 0.5.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(chokidar@3.6.0)
- '@swc/core': 1.10.6(@swc/helpers@0.5.15)
+ '@swc/cli': 0.5.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(chokidar@3.6.0)
+ '@swc/core': 1.10.4(@swc/helpers@0.5.13)
transitivePeerDependencies:
- esbuild
- uglify-js
@@ -13754,7 +13777,7 @@ snapshots:
'@nestjs/swagger@7.4.2(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)':
dependencies:
- '@microsoft/tsdoc': 0.15.1
+ '@microsoft/tsdoc': 0.15.0
'@nestjs/common': 10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1)
'@nestjs/core': 10.4.15(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.15)(reflect-metadata@0.2.2)(rxjs@7.8.1)
'@nestjs/mapped-types': 2.0.5(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)
@@ -13775,7 +13798,7 @@ snapshots:
optionalDependencies:
'@nestjs/platform-express': 10.4.15(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/core@10.4.15)
- '@next/bundle-analyzer@14.2.23':
+ '@next/bundle-analyzer@14.2.22':
dependencies:
webpack-bundle-analyzer: 4.10.1
transitivePeerDependencies:
@@ -13784,9 +13807,9 @@ snapshots:
'@next/env@14.2.22': {}
- '@next/eslint-plugin-next@14.2.23':
+ '@next/eslint-plugin-next@15.1.2':
dependencies:
- glob: 10.3.10
+ fast-glob: 3.3.1
'@next/swc-darwin-arm64@14.2.22':
optional: true
@@ -13834,7 +13857,7 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.18.0
+ fastq: 1.17.1
'@nolyfill/is-core-module@1.0.39': {}
@@ -13876,6 +13899,11 @@ snapshots:
dependencies:
'@opentelemetry/api': 1.9.0
+ '@opentelemetry/core@1.27.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/semantic-conventions': 1.27.0
+
'@opentelemetry/core@1.29.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -13888,7 +13916,7 @@ snapshots:
'@opentelemetry/exporter-logs-otlp-grpc@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.12.5
+ '@grpc/grpc-js': 1.12.2
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/otlp-grpc-exporter-base': 0.57.0(@opentelemetry/api@1.9.0)
@@ -13917,7 +13945,7 @@ snapshots:
'@opentelemetry/exporter-metrics-otlp-grpc@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.12.5
+ '@grpc/grpc-js': 1.12.2
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/exporter-metrics-otlp-http': 0.57.0(@opentelemetry/api@1.9.0)
@@ -13955,7 +13983,7 @@ snapshots:
'@opentelemetry/exporter-trace-otlp-grpc@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.12.5
+ '@grpc/grpc-js': 1.12.2
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/otlp-grpc-exporter-base': 0.57.0(@opentelemetry/api@1.9.0)
@@ -13989,10 +14017,11 @@ snapshots:
'@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
- '@opentelemetry/host-metrics@0.35.5(@opentelemetry/api@1.9.0)':
+ '@opentelemetry/host-metrics@0.35.4(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- systeminformation: 5.23.8
+ '@opentelemetry/sdk-metrics': 1.30.0(@opentelemetry/api@1.9.0)
+ systeminformation: 5.22.9
'@opentelemetry/instrumentation-amqplib@0.45.0(@opentelemetry/api@1.9.0)':
dependencies:
@@ -14032,7 +14061,7 @@ snapshots:
'@opentelemetry/instrumentation-express@0.47.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
- '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.57.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
@@ -14227,7 +14256,7 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.53.0
'@types/shimmer': 1.2.0
- import-in-the-middle: 1.12.0
+ import-in-the-middle: 1.11.2
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
@@ -14239,7 +14268,7 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.56.0
'@types/shimmer': 1.2.0
- import-in-the-middle: 1.12.0
+ import-in-the-middle: 1.11.2
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
@@ -14251,7 +14280,7 @@ snapshots:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.57.0
'@types/shimmer': 1.2.0
- import-in-the-middle: 1.12.0
+ import-in-the-middle: 1.11.2
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
@@ -14266,7 +14295,7 @@ snapshots:
'@opentelemetry/otlp-grpc-exporter-base@0.57.0(@opentelemetry/api@1.9.0)':
dependencies:
- '@grpc/grpc-js': 1.12.5
+ '@grpc/grpc-js': 1.12.2
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/otlp-exporter-base': 0.57.0(@opentelemetry/api@1.9.0)
@@ -14295,6 +14324,12 @@ snapshots:
'@opentelemetry/redis-common@0.36.2': {}
+ '@opentelemetry/resources@1.27.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.27.0
+
'@opentelemetry/resources@1.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -14340,6 +14375,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/sdk-trace-base@1.27.0(@opentelemetry/api@1.9.0)':
+ dependencies:
+ '@opentelemetry/api': 1.9.0
+ '@opentelemetry/core': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.27.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.27.0
+
'@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -14392,7 +14434,7 @@ snapshots:
'@oxc-resolver/binding-wasm32-wasi@1.12.0':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.6
+ '@napi-rs/wasm-runtime': 0.2.5
optional: true
'@oxc-resolver/binding-win32-arm64-msvc@1.12.0':
@@ -14451,7 +14493,7 @@ snapshots:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
- '@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.27.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -14566,6 +14608,12 @@ snapshots:
'@types/react': 18.3.18
'@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.18
+
'@radix-ui/react-compose-refs@1.1.1(@types/react@18.3.18)(react@18.3.1)':
dependencies:
react: 18.3.1
@@ -14758,6 +14806,15 @@ snapshots:
'@types/react': 18.3.18
'@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.3.18)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.18
+ '@types/react-dom': 18.3.5(@types/react@18.3.18)
+
'@radix-ui/react-primitive@2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@radix-ui/react-slot': 1.1.1(@types/react@18.3.18)(react@18.3.1)
@@ -14839,6 +14896,13 @@ snapshots:
'@types/react': 18.3.18
'@types/react-dom': 18.3.5(@types/react@18.3.18)
+ '@radix-ui/react-slot@1.1.0(@types/react@18.3.18)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.18)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.18
+
'@radix-ui/react-slot@1.1.1(@types/react@18.3.18)(react@18.3.1)':
dependencies:
'@radix-ui/react-compose-refs': 1.1.1(@types/react@18.3.18)(react@18.3.1)
@@ -14985,43 +15049,43 @@ snapshots:
'@radix-ui/rect@1.1.0': {}
- '@react-aria/focus@3.19.0(react@18.3.1)':
+ '@react-aria/focus@3.18.4(react@18.3.1)':
dependencies:
- '@react-aria/interactions': 3.22.5(react@18.3.1)
- '@react-aria/utils': 3.26.0(react@18.3.1)
- '@react-types/shared': 3.26.0(react@18.3.1)
- '@swc/helpers': 0.5.15
+ '@react-aria/interactions': 3.22.4(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
clsx: 2.1.1
react: 18.3.1
- '@react-aria/interactions@3.22.5(react@18.3.1)':
+ '@react-aria/interactions@3.22.4(react@18.3.1)':
dependencies:
- '@react-aria/ssr': 3.9.7(react@18.3.1)
- '@react-aria/utils': 3.26.0(react@18.3.1)
- '@react-types/shared': 3.26.0(react@18.3.1)
- '@swc/helpers': 0.5.15
+ '@react-aria/ssr': 3.9.6(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
react: 18.3.1
- '@react-aria/ssr@3.9.7(react@18.3.1)':
+ '@react-aria/ssr@3.9.6(react@18.3.1)':
dependencies:
- '@swc/helpers': 0.5.15
+ '@swc/helpers': 0.5.13
react: 18.3.1
- '@react-aria/utils@3.26.0(react@18.3.1)':
+ '@react-aria/utils@3.25.3(react@18.3.1)':
dependencies:
- '@react-aria/ssr': 3.9.7(react@18.3.1)
- '@react-stately/utils': 3.10.5(react@18.3.1)
- '@react-types/shared': 3.26.0(react@18.3.1)
- '@swc/helpers': 0.5.15
+ '@react-aria/ssr': 3.9.6(react@18.3.1)
+ '@react-stately/utils': 3.10.4(react@18.3.1)
+ '@react-types/shared': 3.25.0(react@18.3.1)
+ '@swc/helpers': 0.5.13
clsx: 2.1.1
react: 18.3.1
- '@react-stately/utils@3.10.5(react@18.3.1)':
+ '@react-stately/utils@3.10.4(react@18.3.1)':
dependencies:
- '@swc/helpers': 0.5.15
+ '@swc/helpers': 0.5.13
react: 18.3.1
- '@react-types/shared@3.26.0(react@18.3.1)':
+ '@react-types/shared@3.25.0(react@18.3.1)':
dependencies:
react: 18.3.1
@@ -15055,9 +15119,9 @@ snapshots:
'@repeaterjs/repeater@3.0.6': {}
- '@replit/codemirror-lang-csharp@6.2.0(@codemirror/autocomplete@6.18.4)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)':
+ '@replit/codemirror-lang-csharp@6.2.0(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
@@ -15065,9 +15129,9 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- '@replit/codemirror-lang-nix@6.0.1(@codemirror/autocomplete@6.18.4)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)':
+ '@replit/codemirror-lang-nix@6.0.1(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/language': 6.10.8
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
@@ -15080,10 +15144,10 @@ snapshots:
'@codemirror/language': 6.10.8
'@lezer/highlight': 1.2.1
- '@replit/codemirror-lang-svelte@6.0.0(@codemirror/autocomplete@6.18.4)(@codemirror/lang-css@6.3.1)(@codemirror/lang-html@6.4.9)(@codemirror/lang-javascript@6.2.2)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.21)(@lezer/lr@1.4.2)':
+ '@replit/codemirror-lang-svelte@6.0.0(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/lang-css@6.3.0(@codemirror/view@6.36.1))(@codemirror/lang-html@6.4.9)(@codemirror/lang-javascript@6.2.2)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.19)(@lezer/lr@1.4.2)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
- '@codemirror/lang-css': 6.3.1
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.36.1)
'@codemirror/lang-html': 6.4.9
'@codemirror/lang-javascript': 6.2.2
'@codemirror/language': 6.10.8
@@ -15091,22 +15155,22 @@ snapshots:
'@codemirror/view': 6.36.1
'@lezer/common': 1.2.3
'@lezer/highlight': 1.2.1
- '@lezer/javascript': 1.4.21
+ '@lezer/javascript': 1.4.19
'@lezer/lr': 1.4.2
'@rollup/plugin-commonjs@28.0.1(rollup@3.29.5)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@3.29.5)
+ '@rollup/pluginutils': 5.1.3(rollup@3.29.5)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.2(picomatch@4.0.2)
is-reference: 1.2.1
- magic-string: 0.30.17
+ magic-string: 0.30.12
picomatch: 4.0.2
optionalDependencies:
rollup: 3.29.5
- '@rollup/pluginutils@5.1.4(rollup@3.29.5)':
+ '@rollup/pluginutils@5.1.3(rollup@3.29.5)':
dependencies:
'@types/estree': 1.0.6
estree-walker: 2.0.2
@@ -15114,66 +15178,63 @@ snapshots:
optionalDependencies:
rollup: 3.29.5
- '@rollup/rollup-android-arm-eabi@4.30.1':
- optional: true
-
- '@rollup/rollup-android-arm64@4.30.1':
+ '@rollup/rollup-android-arm-eabi@4.24.4':
optional: true
- '@rollup/rollup-darwin-arm64@4.30.1':
+ '@rollup/rollup-android-arm64@4.24.4':
optional: true
- '@rollup/rollup-darwin-x64@4.30.1':
+ '@rollup/rollup-darwin-arm64@4.24.4':
optional: true
- '@rollup/rollup-freebsd-arm64@4.30.1':
+ '@rollup/rollup-darwin-x64@4.24.4':
optional: true
- '@rollup/rollup-freebsd-x64@4.30.1':
+ '@rollup/rollup-freebsd-arm64@4.24.4':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.30.1':
+ '@rollup/rollup-freebsd-x64@4.24.4':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.30.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.24.4':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.30.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.24.4':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.30.1':
+ '@rollup/rollup-linux-arm64-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.30.1':
+ '@rollup/rollup-linux-arm64-musl@4.24.4':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.30.1':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.30.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.30.1':
+ '@rollup/rollup-linux-s390x-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.30.1':
+ '@rollup/rollup-linux-x64-gnu@4.24.4':
optional: true
- '@rollup/rollup-linux-x64-musl@4.30.1':
+ '@rollup/rollup-linux-x64-musl@4.24.4':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.30.1':
+ '@rollup/rollup-win32-arm64-msvc@4.24.4':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.30.1':
+ '@rollup/rollup-win32-ia32-msvc@4.24.4':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.30.1':
+ '@rollup/rollup-win32-x64-msvc@4.24.4':
optional: true
'@rtsao/scc@1.1.0': {}
- '@rushstack/eslint-patch@1.10.5': {}
+ '@rushstack/eslint-patch@1.10.4': {}
'@sec-ant/readable-stream@0.4.1': {}
@@ -15183,33 +15244,33 @@ snapshots:
selderee: 0.11.0
optional: true
- '@sentry-internal/browser-utils@8.48.0':
+ '@sentry-internal/browser-utils@8.47.0':
dependencies:
- '@sentry/core': 8.48.0
+ '@sentry/core': 8.47.0
- '@sentry-internal/feedback@8.48.0':
+ '@sentry-internal/feedback@8.47.0':
dependencies:
- '@sentry/core': 8.48.0
+ '@sentry/core': 8.47.0
- '@sentry-internal/replay-canvas@8.48.0':
+ '@sentry-internal/replay-canvas@8.47.0':
dependencies:
- '@sentry-internal/replay': 8.48.0
- '@sentry/core': 8.48.0
+ '@sentry-internal/replay': 8.47.0
+ '@sentry/core': 8.47.0
- '@sentry-internal/replay@8.48.0':
+ '@sentry-internal/replay@8.47.0':
dependencies:
- '@sentry-internal/browser-utils': 8.48.0
- '@sentry/core': 8.48.0
+ '@sentry-internal/browser-utils': 8.47.0
+ '@sentry/core': 8.47.0
'@sentry/babel-plugin-component-annotate@2.22.7': {}
- '@sentry/browser@8.48.0':
+ '@sentry/browser@8.47.0':
dependencies:
- '@sentry-internal/browser-utils': 8.48.0
- '@sentry-internal/feedback': 8.48.0
- '@sentry-internal/replay': 8.48.0
- '@sentry-internal/replay-canvas': 8.48.0
- '@sentry/core': 8.48.0
+ '@sentry-internal/browser-utils': 8.47.0
+ '@sentry-internal/feedback': 8.47.0
+ '@sentry-internal/replay': 8.47.0
+ '@sentry-internal/replay-canvas': 8.47.0
+ '@sentry/core': 8.47.0
'@sentry/bundler-plugin-core@2.22.7':
dependencies:
@@ -15265,20 +15326,20 @@ snapshots:
- encoding
- supports-color
- '@sentry/core@8.48.0': {}
+ '@sentry/core@8.47.0': {}
- '@sentry/nextjs@8.48.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(next@14.2.22(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))':
+ '@sentry/nextjs@8.47.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(next@14.2.22(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.28.0
'@rollup/plugin-commonjs': 28.0.1(rollup@3.29.5)
- '@sentry-internal/browser-utils': 8.48.0
- '@sentry/core': 8.48.0
- '@sentry/node': 8.48.0
- '@sentry/opentelemetry': 8.48.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)
- '@sentry/react': 8.48.0(react@18.3.1)
- '@sentry/vercel-edge': 8.48.0
- '@sentry/webpack-plugin': 2.22.7(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))
+ '@sentry-internal/browser-utils': 8.47.0
+ '@sentry/core': 8.47.0
+ '@sentry/node': 8.47.0
+ '@sentry/opentelemetry': 8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)
+ '@sentry/react': 8.47.0(react@18.3.1)
+ '@sentry/vercel-edge': 8.47.0
+ '@sentry/webpack-plugin': 2.22.7(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))
chalk: 3.0.0
next: 14.2.22(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
resolve: 1.22.8
@@ -15293,7 +15354,7 @@ snapshots:
- supports-color
- webpack
- '@sentry/node@8.48.0':
+ '@sentry/node@8.47.0':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/context-async-hooks': 1.30.0(@opentelemetry/api@1.9.0)
@@ -15327,39 +15388,39 @@ snapshots:
'@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@prisma/instrumentation': 5.22.0
- '@sentry/core': 8.48.0
- '@sentry/opentelemetry': 8.48.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)
- import-in-the-middle: 1.12.0
+ '@sentry/core': 8.47.0
+ '@sentry/opentelemetry': 8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)
+ import-in-the-middle: 1.11.2
transitivePeerDependencies:
- supports-color
- '@sentry/opentelemetry@8.48.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)':
+ '@sentry/opentelemetry@8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
- '@sentry/core': 8.48.0
+ '@sentry/core': 8.47.0
- '@sentry/react@8.48.0(react@18.3.1)':
+ '@sentry/react@8.47.0(react@18.3.1)':
dependencies:
- '@sentry/browser': 8.48.0
- '@sentry/core': 8.48.0
+ '@sentry/browser': 8.47.0
+ '@sentry/core': 8.47.0
hoist-non-react-statics: 3.3.2
react: 18.3.1
- '@sentry/vercel-edge@8.48.0':
+ '@sentry/vercel-edge@8.47.0':
dependencies:
'@opentelemetry/api': 1.9.0
- '@sentry/core': 8.48.0
+ '@sentry/core': 8.47.0
- '@sentry/webpack-plugin@2.22.7(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))':
+ '@sentry/webpack-plugin@2.22.7(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))':
dependencies:
'@sentry/bundler-plugin-core': 2.22.7
unplugin: 1.0.1
uuid: 9.0.1
- webpack: 5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))
+ webpack: 5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))
transitivePeerDependencies:
- encoding
- supports-color
@@ -15382,250 +15443,250 @@ snapshots:
'@sinonjs/text-encoding@0.7.3': {}
- '@smithy/abort-controller@4.0.0':
+ '@smithy/abort-controller@3.1.9':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/chunked-blob-reader-native@4.0.0':
+ '@smithy/chunked-blob-reader-native@3.0.1':
dependencies:
- '@smithy/util-base64': 4.0.0
+ '@smithy/util-base64': 3.0.0
tslib: 2.8.1
- '@smithy/chunked-blob-reader@5.0.0':
+ '@smithy/chunked-blob-reader@4.0.0':
dependencies:
tslib: 2.8.1
- '@smithy/config-resolver@4.0.0':
+ '@smithy/config-resolver@3.0.13':
dependencies:
- '@smithy/node-config-provider': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/types': 3.7.2
+ '@smithy/util-config-provider': 3.0.0
+ '@smithy/util-middleware': 3.0.11
tslib: 2.8.1
- '@smithy/core@3.0.0':
+ '@smithy/core@2.5.7':
dependencies:
- '@smithy/middleware-serde': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-stream': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/middleware-serde': 3.0.11
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
+ '@smithy/util-body-length-browser': 3.0.0
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-stream': 3.3.4
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@smithy/credential-provider-imds@4.0.0':
+ '@smithy/credential-provider-imds@3.2.8':
dependencies:
- '@smithy/node-config-provider': 4.0.0
- '@smithy/property-provider': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/url-parser': 4.0.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/property-provider': 3.1.11
+ '@smithy/types': 3.7.2
+ '@smithy/url-parser': 3.0.11
tslib: 2.8.1
- '@smithy/eventstream-codec@4.0.0':
+ '@smithy/eventstream-codec@3.1.10':
dependencies:
'@aws-crypto/crc32': 5.2.0
- '@smithy/types': 4.0.0
- '@smithy/util-hex-encoding': 4.0.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-hex-encoding': 3.0.0
tslib: 2.8.1
- '@smithy/eventstream-serde-browser@4.0.0':
+ '@smithy/eventstream-serde-browser@3.0.14':
dependencies:
- '@smithy/eventstream-serde-universal': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/eventstream-serde-universal': 3.0.13
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/eventstream-serde-config-resolver@4.0.0':
+ '@smithy/eventstream-serde-config-resolver@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/eventstream-serde-node@4.0.0':
+ '@smithy/eventstream-serde-node@3.0.13':
dependencies:
- '@smithy/eventstream-serde-universal': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/eventstream-serde-universal': 3.0.13
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/eventstream-serde-universal@4.0.0':
+ '@smithy/eventstream-serde-universal@3.0.13':
dependencies:
- '@smithy/eventstream-codec': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/eventstream-codec': 3.1.10
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/fetch-http-handler@5.0.0':
+ '@smithy/fetch-http-handler@4.1.3':
dependencies:
- '@smithy/protocol-http': 5.0.0
- '@smithy/querystring-builder': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-base64': 4.0.0
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/querystring-builder': 3.0.11
+ '@smithy/types': 3.7.2
+ '@smithy/util-base64': 3.0.0
tslib: 2.8.1
- '@smithy/hash-blob-browser@4.0.0':
+ '@smithy/hash-blob-browser@3.1.10':
dependencies:
- '@smithy/chunked-blob-reader': 5.0.0
- '@smithy/chunked-blob-reader-native': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/chunked-blob-reader': 4.0.0
+ '@smithy/chunked-blob-reader-native': 3.0.1
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/hash-node@4.0.0':
+ '@smithy/hash-node@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@smithy/hash-stream-node@4.0.0':
+ '@smithy/hash-stream-node@3.1.10':
dependencies:
- '@smithy/types': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@smithy/invalid-dependency@4.0.0':
+ '@smithy/invalid-dependency@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.8.1
- '@smithy/is-array-buffer@4.0.0':
+ '@smithy/is-array-buffer@3.0.0':
dependencies:
tslib: 2.8.1
- '@smithy/md5-js@4.0.0':
+ '@smithy/md5-js@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@smithy/middleware-content-length@4.0.0':
+ '@smithy/middleware-content-length@3.0.13':
dependencies:
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/middleware-endpoint@4.0.0':
+ '@smithy/middleware-endpoint@3.2.8':
dependencies:
- '@smithy/core': 3.0.0
- '@smithy/middleware-serde': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/shared-ini-file-loader': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/url-parser': 4.0.0
- '@smithy/util-middleware': 4.0.0
+ '@smithy/core': 2.5.7
+ '@smithy/middleware-serde': 3.0.11
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/shared-ini-file-loader': 3.1.12
+ '@smithy/types': 3.7.2
+ '@smithy/url-parser': 3.0.11
+ '@smithy/util-middleware': 3.0.11
tslib: 2.8.1
- '@smithy/middleware-retry@4.0.0':
+ '@smithy/middleware-retry@3.0.34':
dependencies:
- '@smithy/node-config-provider': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/service-error-classification': 4.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-retry': 4.0.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/service-error-classification': 3.0.11
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-retry': 3.0.11
tslib: 2.8.1
uuid: 9.0.1
- '@smithy/middleware-serde@4.0.0':
+ '@smithy/middleware-serde@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/middleware-stack@4.0.0':
+ '@smithy/middleware-stack@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/node-config-provider@4.0.0':
+ '@smithy/node-config-provider@3.1.12':
dependencies:
- '@smithy/property-provider': 4.0.0
- '@smithy/shared-ini-file-loader': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/property-provider': 3.1.11
+ '@smithy/shared-ini-file-loader': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/node-http-handler@4.0.0':
+ '@smithy/node-http-handler@3.3.3':
dependencies:
- '@smithy/abort-controller': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/querystring-builder': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/abort-controller': 3.1.9
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/querystring-builder': 3.0.11
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/property-provider@4.0.0':
+ '@smithy/property-provider@3.1.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/protocol-http@5.0.0':
+ '@smithy/protocol-http@4.1.8':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/querystring-builder@4.0.0':
+ '@smithy/querystring-builder@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
- '@smithy/util-uri-escape': 4.0.0
+ '@smithy/types': 3.7.2
+ '@smithy/util-uri-escape': 3.0.0
tslib: 2.8.1
- '@smithy/querystring-parser@4.0.0':
+ '@smithy/querystring-parser@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/service-error-classification@4.0.0':
+ '@smithy/service-error-classification@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
- '@smithy/shared-ini-file-loader@4.0.0':
+ '@smithy/shared-ini-file-loader@3.1.12':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/signature-v4@5.0.0':
+ '@smithy/signature-v4@4.2.4':
dependencies:
- '@smithy/is-array-buffer': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-middleware': 4.0.0
- '@smithy/util-uri-escape': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/is-array-buffer': 3.0.0
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
+ '@smithy/util-hex-encoding': 3.0.0
+ '@smithy/util-middleware': 3.0.11
+ '@smithy/util-uri-escape': 3.0.0
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@smithy/smithy-client@4.0.0':
+ '@smithy/smithy-client@3.7.0':
dependencies:
- '@smithy/core': 3.0.0
- '@smithy/middleware-endpoint': 4.0.0
- '@smithy/middleware-stack': 4.0.0
- '@smithy/protocol-http': 5.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-stream': 4.0.0
+ '@smithy/core': 2.5.7
+ '@smithy/middleware-endpoint': 3.2.8
+ '@smithy/middleware-stack': 3.0.11
+ '@smithy/protocol-http': 4.1.8
+ '@smithy/types': 3.7.2
+ '@smithy/util-stream': 3.3.4
tslib: 2.8.1
- '@smithy/types@4.0.0':
+ '@smithy/types@3.7.2':
dependencies:
tslib: 2.8.1
- '@smithy/url-parser@4.0.0':
+ '@smithy/url-parser@3.0.11':
dependencies:
- '@smithy/querystring-parser': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/querystring-parser': 3.0.11
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/util-base64@4.0.0':
+ '@smithy/util-base64@3.0.0':
dependencies:
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@smithy/util-body-length-browser@4.0.0':
+ '@smithy/util-body-length-browser@3.0.0':
dependencies:
tslib: 2.8.1
- '@smithy/util-body-length-node@4.0.0':
+ '@smithy/util-body-length-node@3.0.0':
dependencies:
tslib: 2.8.1
@@ -15634,66 +15695,66 @@ snapshots:
'@smithy/is-array-buffer': 2.2.0
tslib: 2.8.1
- '@smithy/util-buffer-from@4.0.0':
+ '@smithy/util-buffer-from@3.0.0':
dependencies:
- '@smithy/is-array-buffer': 4.0.0
+ '@smithy/is-array-buffer': 3.0.0
tslib: 2.8.1
- '@smithy/util-config-provider@4.0.0':
+ '@smithy/util-config-provider@3.0.0':
dependencies:
tslib: 2.8.1
- '@smithy/util-defaults-mode-browser@4.0.0':
+ '@smithy/util-defaults-mode-browser@3.0.34':
dependencies:
- '@smithy/property-provider': 4.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/property-provider': 3.1.11
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
bowser: 2.11.0
tslib: 2.8.1
- '@smithy/util-defaults-mode-node@4.0.0':
+ '@smithy/util-defaults-mode-node@3.0.34':
dependencies:
- '@smithy/config-resolver': 4.0.0
- '@smithy/credential-provider-imds': 4.0.0
- '@smithy/node-config-provider': 4.0.0
- '@smithy/property-provider': 4.0.0
- '@smithy/smithy-client': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/config-resolver': 3.0.13
+ '@smithy/credential-provider-imds': 3.2.8
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/property-provider': 3.1.11
+ '@smithy/smithy-client': 3.7.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/util-endpoints@3.0.0':
+ '@smithy/util-endpoints@2.1.7':
dependencies:
- '@smithy/node-config-provider': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/node-config-provider': 3.1.12
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/util-hex-encoding@4.0.0':
+ '@smithy/util-hex-encoding@3.0.0':
dependencies:
tslib: 2.8.1
- '@smithy/util-middleware@4.0.0':
+ '@smithy/util-middleware@3.0.11':
dependencies:
- '@smithy/types': 4.0.0
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/util-retry@4.0.0':
+ '@smithy/util-retry@3.0.11':
dependencies:
- '@smithy/service-error-classification': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/service-error-classification': 3.0.11
+ '@smithy/types': 3.7.2
tslib: 2.8.1
- '@smithy/util-stream@4.0.0':
+ '@smithy/util-stream@3.3.4':
dependencies:
- '@smithy/fetch-http-handler': 5.0.0
- '@smithy/node-http-handler': 4.0.0
- '@smithy/types': 4.0.0
- '@smithy/util-base64': 4.0.0
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/fetch-http-handler': 4.1.3
+ '@smithy/node-http-handler': 3.3.3
+ '@smithy/types': 3.7.2
+ '@smithy/util-base64': 3.0.0
+ '@smithy/util-buffer-from': 3.0.0
+ '@smithy/util-hex-encoding': 3.0.0
+ '@smithy/util-utf8': 3.0.0
tslib: 2.8.1
- '@smithy/util-uri-escape@4.0.0':
+ '@smithy/util-uri-escape@3.0.0':
dependencies:
tslib: 2.8.1
@@ -15702,15 +15763,15 @@ snapshots:
'@smithy/util-buffer-from': 2.2.0
tslib: 2.8.1
- '@smithy/util-utf8@4.0.0':
+ '@smithy/util-utf8@3.0.0':
dependencies:
- '@smithy/util-buffer-from': 4.0.0
+ '@smithy/util-buffer-from': 3.0.0
tslib: 2.8.1
- '@smithy/util-waiter@4.0.0':
+ '@smithy/util-waiter@3.2.0':
dependencies:
- '@smithy/abort-controller': 4.0.0
- '@smithy/types': 4.0.0
+ '@smithy/abort-controller': 3.1.9
+ '@smithy/types': 3.7.2
tslib: 2.8.1
'@snyk/github-codeowners@1.1.0':
@@ -15723,18 +15784,18 @@ snapshots:
dependencies:
react: 18.3.1
- '@swc-node/core@1.13.3(@swc/core@1.10.6(@swc/helpers@0.5.15))(@swc/types@0.1.17)':
+ '@swc-node/core@1.13.3(@swc/core@1.10.4(@swc/helpers@0.5.13))(@swc/types@0.1.17)':
dependencies:
- '@swc/core': 1.10.6(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.4(@swc/helpers@0.5.13)
'@swc/types': 0.1.17
- '@swc-node/register@1.10.9(@swc/core@1.10.6(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.2)':
+ '@swc-node/register@1.10.9(@swc/core@1.10.4(@swc/helpers@0.5.13))(@swc/types@0.1.17)(typescript@5.7.2)':
dependencies:
- '@swc-node/core': 1.13.3(@swc/core@1.10.6(@swc/helpers@0.5.15))(@swc/types@0.1.17)
+ '@swc-node/core': 1.13.3(@swc/core@1.10.4(@swc/helpers@0.5.13))(@swc/types@0.1.17)
'@swc-node/sourcemap-support': 0.5.1
- '@swc/core': 1.10.6(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.4(@swc/helpers@0.5.13)
colorette: 2.0.20
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
oxc-resolver: 1.12.0
pirates: 4.0.6
tslib: 2.8.1
@@ -15748,71 +15809,71 @@ snapshots:
source-map-support: 0.5.21
tslib: 2.8.1
- '@swc/cli@0.5.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(chokidar@3.6.0)':
+ '@swc/cli@0.5.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(chokidar@3.6.0)':
dependencies:
- '@swc/core': 1.10.6(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.4(@swc/helpers@0.5.13)
'@swc/counter': 0.1.3
'@xhmikosr/bin-wrapper': 13.0.5
commander: 8.3.0
- fast-glob: 3.3.3
+ fast-glob: 3.3.2
minimatch: 9.0.5
- piscina: 4.8.0
+ piscina: 4.7.0
semver: 7.6.3
slash: 3.0.0
source-map: 0.7.4
optionalDependencies:
chokidar: 3.6.0
- '@swc/core-darwin-arm64@1.10.6':
+ '@swc/core-darwin-arm64@1.10.4':
optional: true
- '@swc/core-darwin-x64@1.10.6':
+ '@swc/core-darwin-x64@1.10.4':
optional: true
- '@swc/core-linux-arm-gnueabihf@1.10.6':
+ '@swc/core-linux-arm-gnueabihf@1.10.4':
optional: true
- '@swc/core-linux-arm64-gnu@1.10.6':
+ '@swc/core-linux-arm64-gnu@1.10.4':
optional: true
- '@swc/core-linux-arm64-musl@1.10.6':
+ '@swc/core-linux-arm64-musl@1.10.4':
optional: true
- '@swc/core-linux-x64-gnu@1.10.6':
+ '@swc/core-linux-x64-gnu@1.10.4':
optional: true
- '@swc/core-linux-x64-musl@1.10.6':
+ '@swc/core-linux-x64-musl@1.10.4':
optional: true
- '@swc/core-win32-arm64-msvc@1.10.6':
+ '@swc/core-win32-arm64-msvc@1.10.4':
optional: true
- '@swc/core-win32-ia32-msvc@1.10.6':
+ '@swc/core-win32-ia32-msvc@1.10.4':
optional: true
- '@swc/core-win32-x64-msvc@1.10.6':
+ '@swc/core-win32-x64-msvc@1.10.4':
optional: true
- '@swc/core@1.10.6(@swc/helpers@0.5.15)':
+ '@swc/core@1.10.4(@swc/helpers@0.5.13)':
dependencies:
'@swc/counter': 0.1.3
'@swc/types': 0.1.17
optionalDependencies:
- '@swc/core-darwin-arm64': 1.10.6
- '@swc/core-darwin-x64': 1.10.6
- '@swc/core-linux-arm-gnueabihf': 1.10.6
- '@swc/core-linux-arm64-gnu': 1.10.6
- '@swc/core-linux-arm64-musl': 1.10.6
- '@swc/core-linux-x64-gnu': 1.10.6
- '@swc/core-linux-x64-musl': 1.10.6
- '@swc/core-win32-arm64-msvc': 1.10.6
- '@swc/core-win32-ia32-msvc': 1.10.6
- '@swc/core-win32-x64-msvc': 1.10.6
- '@swc/helpers': 0.5.15
+ '@swc/core-darwin-arm64': 1.10.4
+ '@swc/core-darwin-x64': 1.10.4
+ '@swc/core-linux-arm-gnueabihf': 1.10.4
+ '@swc/core-linux-arm64-gnu': 1.10.4
+ '@swc/core-linux-arm64-musl': 1.10.4
+ '@swc/core-linux-x64-gnu': 1.10.4
+ '@swc/core-linux-x64-musl': 1.10.4
+ '@swc/core-win32-arm64-msvc': 1.10.4
+ '@swc/core-win32-ia32-msvc': 1.10.4
+ '@swc/core-win32-x64-msvc': 1.10.4
+ '@swc/helpers': 0.5.13
'@swc/counter@0.1.3': {}
- '@swc/helpers@0.5.15':
+ '@swc/helpers@0.5.13':
dependencies:
tslib: 2.8.1
@@ -15829,27 +15890,27 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tailwindcss/typography@0.5.16(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)))':
+ '@tailwindcss/typography@0.5.15(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)))':
dependencies:
lodash.castarray: 4.4.0
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
postcss-selector-parser: 6.0.10
- tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2))
+ tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2))
- '@tanstack/query-core@5.62.16': {}
+ '@tanstack/query-core@5.62.12': {}
- '@tanstack/query-devtools@5.62.16': {}
+ '@tanstack/query-devtools@5.62.9': {}
- '@tanstack/react-query-devtools@5.62.16(@tanstack/react-query@5.62.16(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-query-devtools@5.62.14(@tanstack/react-query@5.62.14(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/query-devtools': 5.62.16
- '@tanstack/react-query': 5.62.16(react@18.3.1)
+ '@tanstack/query-devtools': 5.62.9
+ '@tanstack/react-query': 5.62.14(react@18.3.1)
react: 18.3.1
- '@tanstack/react-query@5.62.16(react@18.3.1)':
+ '@tanstack/react-query@5.62.14(react@18.3.1)':
dependencies:
- '@tanstack/query-core': 5.62.16
+ '@tanstack/query-core': 5.62.12
react: 18.3.1
'@tanstack/react-table@8.20.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
@@ -15858,15 +15919,15 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@tanstack/react-virtual@3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-virtual@3.10.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/virtual-core': 3.11.2
+ '@tanstack/virtual-core': 3.10.8
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@tanstack/table-core@8.20.5': {}
- '@tanstack/virtual-core@3.11.2': {}
+ '@tanstack/virtual-core@3.10.8': {}
'@testing-library/dom@10.4.0':
dependencies:
@@ -16013,12 +16074,12 @@ snapshots:
prosemirror-keymap: 1.2.2
prosemirror-markdown: 1.13.1
prosemirror-menu: 1.2.4
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-schema-basic: 1.2.3
- prosemirror-schema-list: 1.5.0
+ prosemirror-schema-list: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-tables: 1.6.2
- prosemirror-trailing-node: 3.0.0(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.37.1)
+ prosemirror-tables: 1.6.1
+ prosemirror-trailing-node: 3.0.0(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.1)
prosemirror-transform: 1.10.2
prosemirror-view: 1.37.1
@@ -16032,7 +16093,7 @@ snapshots:
fast-deep-equal: 3.1.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- use-sync-external-store: 1.4.0(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
'@tiptap/starter-kit@2.11.0':
dependencies:
@@ -16063,7 +16124,7 @@ snapshots:
'@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.4.2)':
dependencies:
'@babel/generator': 7.17.7
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.2
'@babel/traverse': 7.23.2
'@babel/types': 7.17.0
javascript-natural-sort: 0.7.1
@@ -16074,7 +16135,7 @@ snapshots:
'@ts-morph/common@0.17.0':
dependencies:
- fast-glob: 3.3.3
+ fast-glob: 3.3.2
minimatch: 5.1.6
mkdirp: 1.0.4
path-browserify: 1.0.1
@@ -16096,7 +16157,7 @@ snapshots:
'@types/accepts@1.3.7':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/apollo-upload-client@18.0.0(@types/react@18.3.18)(graphql-ws@5.16.0(graphql@16.10.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.10.0))':
dependencies:
@@ -16114,29 +16175,29 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/cache-manager@4.0.6': {}
@@ -16148,17 +16209,17 @@ snapshots:
'@types/connect@3.4.36':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/content-disposition@0.5.8': {}
- '@types/conventional-commits-parser@5.0.1':
+ '@types/conventional-commits-parser@5.0.0':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/cookie@0.6.0': {}
@@ -16167,7 +16228,7 @@ snapshots:
'@types/connect': 3.4.38
'@types/express': 5.0.0
'@types/keygrip': 1.0.6
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/ejs@3.1.5':
optional: true
@@ -16186,14 +16247,14 @@ snapshots:
'@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/qs': 6.9.17
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
- '@types/express-serve-static-core@5.0.4':
+ '@types/express-serve-static-core@5.0.1':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/qs': 6.9.17
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
@@ -16208,7 +16269,7 @@ snapshots:
'@types/express@5.0.0':
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 5.0.4
+ '@types/express-serve-static-core': 5.0.1
'@types/qs': 6.9.17
'@types/serve-static': 1.15.7
@@ -16237,11 +16298,11 @@ snapshots:
'@types/jsonwebtoken@9.0.5':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/jsonwebtoken@9.0.7':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/katex@0.16.7': {}
@@ -16260,7 +16321,7 @@ snapshots:
'@types/http-errors': 2.0.4
'@types/keygrip': 1.0.6
'@types/koa-compose': 3.2.8
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/linkify-it@5.0.0': {}
@@ -16287,22 +16348,22 @@ snapshots:
'@types/mysql@2.15.26':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
- '@types/node-fetch@2.6.12':
+ '@types/node-fetch@2.6.11':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
form-data: 4.0.1
'@types/node@14.18.63': {}
- '@types/node@20.17.12':
+ '@types/node@20.17.11':
dependencies:
undici-types: 6.19.8
'@types/nodemailer@6.4.17':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/passport-jwt@4.0.1':
dependencies:
@@ -16324,11 +16385,11 @@ snapshots:
'@types/pg@8.6.1':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
pg-protocol: 1.7.0
pg-types: 2.2.0
- '@types/prop-types@15.7.14': {}
+ '@types/prop-types@15.7.13': {}
'@types/proxyquire@1.3.31': {}
@@ -16353,18 +16414,18 @@ snapshots:
'@types/react@18.3.18':
dependencies:
- '@types/prop-types': 15.7.14
+ '@types/prop-types': 15.7.13
csstype: 3.1.3
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/send': 0.17.4
'@types/shimmer@1.2.0': {}
@@ -16379,7 +16440,7 @@ snapshots:
'@types/tedious@4.0.14':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
'@types/tough-cookie@4.0.5': {}
@@ -16392,127 +16453,123 @@ snapshots:
'@types/ws@8.5.13':
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/eslint-plugin@8.18.1(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/visitor-keys': 7.18.0
- eslint: 8.57.1
+ '@typescript-eslint/parser': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/scope-manager': 8.18.1
+ '@typescript-eslint/type-utils': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.18.1
+ eslint: 9.17.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.4.3(typescript@5.7.2)
- optionalDependencies:
+ ts-api-utils: 1.4.0(typescript@5.7.2)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
- '@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.4.0(supports-color@8.1.1)
- eslint: 8.57.1
- optionalDependencies:
+ '@typescript-eslint/scope-manager': 8.18.1
+ '@typescript-eslint/types': 8.18.1
+ '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.18.1
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 9.17.0(jiti@2.4.2)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.18.0':
+ '@typescript-eslint/scope-manager@8.18.1':
dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
+ '@typescript-eslint/types': 8.18.1
+ '@typescript-eslint/visitor-keys': 8.18.1
- '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/type-utils@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- debug: 4.4.0(supports-color@8.1.1)
- eslint: 8.57.1
- ts-api-utils: 1.4.3(typescript@5.7.2)
- optionalDependencies:
+ '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 9.17.0(jiti@2.4.2)
+ ts-api-utils: 1.4.0(typescript@5.7.2)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@7.18.0': {}
+ '@typescript-eslint/types@8.18.1': {}
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.7.2)':
+ '@typescript-eslint/typescript-estree@8.18.1(typescript@5.7.2)':
dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.4.0(supports-color@8.1.1)
- globby: 11.1.0
+ '@typescript-eslint/types': 8.18.1
+ '@typescript-eslint/visitor-keys': 8.18.1
+ debug: 4.3.7(supports-color@8.1.1)
+ fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.4.3(typescript@5.7.2)
- optionalDependencies:
+ ts-api-utils: 1.4.0(typescript@5.7.2)
typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.7.2)':
+ '@typescript-eslint/utils@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.7.2)
- eslint: 8.57.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.18.1
+ '@typescript-eslint/types': 8.18.1
+ '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
+ typescript: 5.7.2
transitivePeerDependencies:
- supports-color
- - typescript
- '@typescript-eslint/visitor-keys@7.18.0':
+ '@typescript-eslint/visitor-keys@8.18.1':
dependencies:
- '@typescript-eslint/types': 7.18.0
- eslint-visitor-keys: 3.4.3
+ '@typescript-eslint/types': 8.18.1
+ eslint-visitor-keys: 4.2.0
- '@uiw/codemirror-extensions-basic-setup@4.23.7(@codemirror/autocomplete@6.18.4)(@codemirror/commands@6.7.1)(@codemirror/language@6.10.8)(@codemirror/lint@6.8.4)(@codemirror/search@6.5.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)':
+ '@uiw/codemirror-extensions-basic-setup@4.23.7(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/commands@6.7.1)(@codemirror/language@6.10.8)(@codemirror/lint@6.8.2)(@codemirror/search@6.5.7)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)':
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/commands': 6.7.1
'@codemirror/language': 6.10.8
- '@codemirror/lint': 6.8.4
- '@codemirror/search': 6.5.8
+ '@codemirror/lint': 6.8.2
+ '@codemirror/search': 6.5.7
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
- '@uiw/codemirror-extensions-langs@4.23.7(@codemirror/autocomplete@6.18.4)(@codemirror/language-data@6.5.1)(@codemirror/language@6.10.8)(@codemirror/legacy-modes@6.4.2)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.21)(@lezer/lr@1.4.2)':
+ '@uiw/codemirror-extensions-langs@4.23.7(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language-data@6.5.1(@codemirror/view@6.36.1))(@codemirror/language@6.10.8)(@codemirror/legacy-modes@6.4.2)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.19)(@lezer/lr@1.4.2)':
dependencies:
'@codemirror/lang-angular': 0.1.3
'@codemirror/lang-cpp': 6.0.2
- '@codemirror/lang-css': 6.3.1
+ '@codemirror/lang-css': 6.3.0(@codemirror/view@6.36.1)
'@codemirror/lang-html': 6.4.9
'@codemirror/lang-java': 6.0.1
'@codemirror/lang-javascript': 6.2.2
'@codemirror/lang-json': 6.0.1
- '@codemirror/lang-less': 6.0.2
+ '@codemirror/lang-less': 6.0.2(@codemirror/view@6.36.1)
'@codemirror/lang-lezer': 6.0.1
- '@codemirror/lang-liquid': 6.2.2
- '@codemirror/lang-markdown': 6.3.1
+ '@codemirror/lang-liquid': 6.2.1
+ '@codemirror/lang-markdown': 6.3.0
'@codemirror/lang-php': 6.0.1
- '@codemirror/lang-python': 6.1.6
+ '@codemirror/lang-python': 6.1.6(@codemirror/view@6.36.1)
'@codemirror/lang-rust': 6.0.1
- '@codemirror/lang-sass': 6.0.2
- '@codemirror/lang-sql': 6.8.0
+ '@codemirror/lang-sass': 6.0.2(@codemirror/view@6.36.1)
+ '@codemirror/lang-sql': 6.8.0(@codemirror/view@6.36.1)
'@codemirror/lang-vue': 0.1.3
'@codemirror/lang-wast': 6.0.2
'@codemirror/lang-xml': 6.1.0
- '@codemirror/language-data': 6.5.1
+ '@codemirror/language-data': 6.5.1(@codemirror/view@6.36.1)
'@codemirror/legacy-modes': 6.4.2
'@nextjournal/lang-clojure': 1.0.0
- '@replit/codemirror-lang-csharp': 6.2.0(@codemirror/autocomplete@6.18.4)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)
- '@replit/codemirror-lang-nix': 6.0.1(@codemirror/autocomplete@6.18.4)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)
+ '@replit/codemirror-lang-csharp': 6.2.0(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)
+ '@replit/codemirror-lang-nix': 6.0.1(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/lr@1.4.2)
'@replit/codemirror-lang-solidity': 6.0.2(@codemirror/language@6.10.8)
- '@replit/codemirror-lang-svelte': 6.0.0(@codemirror/autocomplete@6.18.4)(@codemirror/lang-css@6.3.1)(@codemirror/lang-html@6.4.9)(@codemirror/lang-javascript@6.2.2)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.21)(@lezer/lr@1.4.2)
+ '@replit/codemirror-lang-svelte': 6.0.0(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/lang-css@6.3.0(@codemirror/view@6.36.1))(@codemirror/lang-html@6.4.9)(@codemirror/lang-javascript@6.2.2)(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)(@lezer/highlight@1.2.1)(@lezer/javascript@1.4.19)(@lezer/lr@1.4.2)
codemirror-lang-mermaid: 0.5.0
transitivePeerDependencies:
- '@codemirror/autocomplete'
@@ -16530,15 +16587,15 @@ snapshots:
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
- '@uiw/react-codemirror@4.23.7(@babel/runtime@7.26.0)(@codemirror/autocomplete@6.18.4)(@codemirror/language@6.10.8)(@codemirror/lint@6.8.4)(@codemirror/search@6.5.8)(@codemirror/state@6.5.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.36.1)(codemirror@6.0.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@uiw/react-codemirror@4.23.7(@babel/runtime@7.26.0)(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/language@6.10.8)(@codemirror/lint@6.8.2)(@codemirror/search@6.5.7)(@codemirror/state@6.5.0)(@codemirror/theme-one-dark@6.1.2)(@codemirror/view@6.36.1)(codemirror@6.0.1(@lezer/common@1.2.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@babel/runtime': 7.26.0
'@codemirror/commands': 6.7.1
'@codemirror/state': 6.5.0
'@codemirror/theme-one-dark': 6.1.2
'@codemirror/view': 6.36.1
- '@uiw/codemirror-extensions-basic-setup': 4.23.7(@codemirror/autocomplete@6.18.4)(@codemirror/commands@6.7.1)(@codemirror/language@6.10.8)(@codemirror/lint@6.8.4)(@codemirror/search@6.5.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)
- codemirror: 6.0.1
+ '@uiw/codemirror-extensions-basic-setup': 4.23.7(@codemirror/autocomplete@6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3))(@codemirror/commands@6.7.1)(@codemirror/language@6.10.8)(@codemirror/lint@6.8.2)(@codemirror/search@6.5.7)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)
+ codemirror: 6.0.1(@lezer/common@1.2.3)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
@@ -16547,16 +16604,14 @@ snapshots:
- '@codemirror/lint'
- '@codemirror/search'
- '@ungap/structured-clone@1.2.1': {}
-
- '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))':
+ '@vitejs/plugin-react@4.3.4(vite@5.4.10(@types/node@20.17.11)(terser@5.36.0))':
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0)
+ vite: 5.4.10(@types/node@20.17.11)(terser@5.36.0)
transitivePeerDependencies:
- supports-color
@@ -16567,14 +16622,14 @@ snapshots:
chai: 5.1.2
tinyrainbow: 1.2.0
- '@vitest/mocker@2.1.8(msw@2.7.0(@types/node@20.17.12)(typescript@5.7.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))':
+ '@vitest/mocker@2.1.8(msw@2.7.0(@types/node@20.17.11)(typescript@5.7.2))(vite@5.4.10(@types/node@20.17.11)(terser@5.36.0))':
dependencies:
'@vitest/spy': 2.1.8
estree-walker: 3.0.3
- magic-string: 0.30.17
+ magic-string: 0.30.12
optionalDependencies:
- msw: 2.7.0(@types/node@20.17.12)(typescript@5.7.2)
- vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0)
+ msw: 2.7.0(@types/node@20.17.11)(typescript@5.7.2)
+ vite: 5.4.10(@types/node@20.17.11)(terser@5.36.0)
'@vitest/pretty-format@2.1.8':
dependencies:
@@ -16588,7 +16643,7 @@ snapshots:
'@vitest/snapshot@2.1.8':
dependencies:
'@vitest/pretty-format': 2.1.8
- magic-string: 0.30.17
+ magic-string: 0.30.12
pathe: 1.1.2
'@vitest/spy@2.1.8':
@@ -16677,15 +16732,6 @@ snapshots:
'@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
- '@whatwg-node/disposablestack@0.0.5':
- dependencies:
- tslib: 2.8.1
-
- '@whatwg-node/fetch@0.10.1':
- dependencies:
- '@whatwg-node/node-fetch': 0.7.5
- urlpattern-polyfill: 10.0.0
-
'@whatwg-node/fetch@0.9.23':
dependencies:
'@whatwg-node/node-fetch': 0.6.0
@@ -16698,14 +16744,6 @@ snapshots:
fast-querystring: 1.1.2
tslib: 2.8.1
- '@whatwg-node/node-fetch@0.7.5':
- dependencies:
- '@kamilkisiela/fast-url-parser': 1.1.4
- '@whatwg-node/disposablestack': 0.0.5
- busboy: 1.6.0
- fast-querystring: 1.1.2
- tslib: 2.8.1
-
'@wry/caches@1.0.1':
dependencies:
tslib: 2.8.1
@@ -16718,6 +16756,10 @@ snapshots:
dependencies:
tslib: 2.8.1
+ '@wry/trie@0.4.3':
+ dependencies:
+ tslib: 2.8.1
+
'@wry/trie@0.5.0':
dependencies:
tslib: 2.8.1
@@ -16832,11 +16874,15 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- agent-base@7.1.3: {}
+ agent-base@7.1.1:
+ dependencies:
+ debug: 4.3.7(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
aggregate-error@3.1.0:
dependencies:
@@ -16847,19 +16893,10 @@ snapshots:
optionalDependencies:
ajv: 8.12.0
- ajv-formats@2.1.1(ajv@8.17.1):
- optionalDependencies:
- ajv: 8.17.1
-
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
- ajv-keywords@5.1.0(ajv@8.17.1):
- dependencies:
- ajv: 8.17.1
- fast-deep-equal: 3.1.3
-
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -16877,7 +16914,7 @@ snapshots:
ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
- fast-uri: 3.0.5
+ fast-uri: 3.0.3
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
@@ -16887,15 +16924,16 @@ snapshots:
estraverse: 1.9.3
optional: true
- amqp-connection-manager@4.1.14(amqplib@0.10.5):
+ amqp-connection-manager@4.1.14(amqplib@0.10.4):
dependencies:
- amqplib: 0.10.5
+ amqplib: 0.10.4
promise-breaker: 6.0.0
- amqplib@0.10.5:
+ amqplib@0.10.4:
dependencies:
'@acuminous/bitsyntax': 0.1.2
buffer-more-ints: 1.0.0
+ readable-stream: 1.1.14
url-parse: 1.5.10
transitivePeerDependencies:
- supports-color
@@ -16984,8 +17022,8 @@ snapshots:
argon2@0.41.1:
dependencies:
'@phc/format': 1.0.0
- node-addon-api: 8.3.0
- node-gyp-build: 4.8.4
+ node-addon-api: 8.2.1
+ node-gyp-build: 4.8.2
argparse@1.0.10:
dependencies:
@@ -17003,10 +17041,10 @@ snapshots:
aria-query@5.3.2: {}
- array-buffer-byte-length@1.0.2:
+ array-buffer-byte-length@1.0.1:
dependencies:
- call-bound: 1.0.3
- is-array-buffer: 3.0.5
+ call-bind: 1.0.7
+ is-array-buffer: 3.0.4
array-flatten@1.1.1: {}
@@ -17014,12 +17052,12 @@ snapshots:
array-includes@3.1.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-object-atoms: 1.0.0
- get-intrinsic: 1.2.7
- is-string: 1.1.1
+ get-intrinsic: 1.2.4
+ is-string: 1.0.7
array-timsort@1.0.3: {}
@@ -17027,57 +17065,58 @@ snapshots:
array.prototype.findlast@1.2.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
array.prototype.findlastindex@1.2.5:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-shim-unscopables: 1.0.2
- array.prototype.flat@1.3.3:
+ array.prototype.flat@1.3.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-shim-unscopables: 1.0.2
- array.prototype.flatmap@1.3.3:
+ array.prototype.flatmap@1.3.2:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-shim-unscopables: 1.0.2
array.prototype.tosorted@1.1.4:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-shim-unscopables: 1.0.2
- arraybuffer.prototype.slice@1.0.4:
+ arraybuffer.prototype.slice@1.0.3:
dependencies:
- array-buffer-byte-length: 1.0.2
- call-bind: 1.0.8
+ array-buffer-byte-length: 1.0.1
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-errors: 1.3.0
- get-intrinsic: 1.2.7
- is-array-buffer: 3.0.5
+ get-intrinsic: 1.2.4
+ is-array-buffer: 3.0.4
+ is-shared-array-buffer: 1.0.3
asap@2.0.6: {}
- assert-never@1.4.0:
+ assert-never@1.3.0:
optional: true
assertion-error@1.1.0: {}
@@ -17102,8 +17141,8 @@ snapshots:
autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
- browserslist: 4.24.3
- caniuse-lite: 1.0.30001690
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001677
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -17154,7 +17193,7 @@ snapshots:
'@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
'@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
@@ -17169,14 +17208,14 @@ snapshots:
babel-walk@3.0.0-canary-5:
dependencies:
- '@babel/types': 7.26.3
+ '@babel/types': 7.26.0
optional: true
backo2@1.0.2: {}
balanced-match@1.0.2: {}
- bare-events@2.5.3:
+ bare-events@2.5.1:
optional: true
base64-js@1.5.1: {}
@@ -17248,12 +17287,12 @@ snapshots:
browser-stdout@1.3.1: {}
- browserslist@4.24.3:
+ browserslist@4.24.2:
dependencies:
- caniuse-lite: 1.0.30001690
- electron-to-chromium: 1.5.79
- node-releases: 2.0.19
- update-browserslist-db: 1.1.1(browserslist@4.24.3)
+ caniuse-lite: 1.0.30001677
+ electron-to-chromium: 1.5.52
+ node-releases: 2.0.18
+ update-browserslist-db: 1.1.1(browserslist@4.24.2)
bser@2.1.1:
dependencies:
@@ -17330,23 +17369,14 @@ snapshots:
package-hash: 4.0.0
write-file-atomic: 3.0.3
- call-bind-apply-helpers@1.0.1:
+ call-bind@1.0.7:
dependencies:
+ es-define-property: 1.0.0
es-errors: 1.3.0
function-bind: 1.1.2
-
- call-bind@1.0.8:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-define-property: 1.0.1
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
set-function-length: 1.2.2
- call-bound@1.0.3:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- get-intrinsic: 1.2.7
-
callsites@3.1.0: {}
camel-case@3.0.0:
@@ -17366,7 +17396,7 @@ snapshots:
camelcase@6.3.0: {}
- caniuse-lite@1.0.30001690: {}
+ caniuse-lite@1.0.30001677: {}
capital-case@1.0.4:
dependencies:
@@ -17416,7 +17446,7 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.4.1: {}
+ chalk@5.3.0: {}
change-case-all@1.0.15:
dependencies:
@@ -17448,7 +17478,7 @@ snapshots:
character-parser@2.2.0:
dependencies:
- is-regex: 1.2.1
+ is-regex: 1.1.4
optional: true
chardet@0.7.0: {}
@@ -17466,7 +17496,7 @@ snapshots:
css-what: 6.1.0
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.2.2
+ domutils: 3.1.0
optional: true
cheerio@1.0.0-rc.12:
@@ -17474,7 +17504,7 @@ snapshots:
cheerio-select: 2.1.0
dom-serializer: 2.0.0
domhandler: 5.0.3
- domutils: 3.2.2
+ domutils: 3.1.0
htmlparser2: 8.0.2
parse5: 7.2.1
parse5-htmlparser2-tree-adapter: 7.1.0
@@ -17508,7 +17538,7 @@ snapshots:
class-validator@0.14.1:
dependencies:
'@types/validator': 13.12.2
- libphonenumber-js: 1.11.17
+ libphonenumber-js: 1.11.12
validator: 13.12.0
class-variance-authority@0.7.1:
@@ -17573,10 +17603,10 @@ snapshots:
dependencies:
'@radix-ui/react-dialog': 1.1.4(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-id': 1.1.0(@types/react@18.3.18)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.5(@types/react@18.3.18))(@types/react@18.3.18)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- use-sync-external-store: 1.4.0(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -17589,15 +17619,17 @@ snapshots:
'@lezer/highlight': 1.2.1
'@lezer/lr': 1.4.2
- codemirror@6.0.1:
+ codemirror@6.0.1(@lezer/common@1.2.3):
dependencies:
- '@codemirror/autocomplete': 6.18.4
+ '@codemirror/autocomplete': 6.18.2(@codemirror/language@6.10.8)(@codemirror/state@6.5.0)(@codemirror/view@6.36.1)(@lezer/common@1.2.3)
'@codemirror/commands': 6.7.1
'@codemirror/language': 6.10.8
- '@codemirror/lint': 6.8.4
- '@codemirror/search': 6.5.8
+ '@codemirror/lint': 6.8.2
+ '@codemirror/search': 6.5.7
'@codemirror/state': 6.5.0
'@codemirror/view': 6.36.1
+ transitivePeerDependencies:
+ - '@lezer/common'
color-convert@2.0.1:
dependencies:
@@ -17683,8 +17715,8 @@ snapshots:
constantinople@4.0.1:
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
optional: true
content-disposition@0.5.4:
@@ -17734,9 +17766,9 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
- cosmiconfig-typescript-loader@6.1.0(@types/node@20.17.12)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2):
+ cosmiconfig-typescript-loader@6.1.0(@types/node@20.17.11)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2):
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
cosmiconfig: 9.0.0(typescript@5.7.2)
jiti: 2.4.2
typescript: 5.7.2
@@ -17772,9 +17804,9 @@ snapshots:
cross-env@7.0.3:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
- cross-fetch@3.2.0:
+ cross-fetch@3.1.8:
dependencies:
node-fetch: 2.7.0
transitivePeerDependencies:
@@ -17784,7 +17816,7 @@ snapshots:
dependencies:
tslib: 2.8.1
- cross-spawn@6.0.6:
+ cross-spawn@6.0.5:
dependencies:
nice-try: 1.0.5
path-key: 2.0.1
@@ -17793,6 +17825,12 @@ snapshots:
which: 1.3.1
optional: true
+ cross-spawn@7.0.3:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
@@ -17808,7 +17846,7 @@ snapshots:
boolbase: 1.0.0
css-what: 6.1.0
domhandler: 5.0.3
- domutils: 3.2.2
+ domutils: 3.1.0
nth-check: 2.1.1
optional: true
@@ -17837,27 +17875,27 @@ snapshots:
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
+ whatwg-url: 14.0.0
- data-view-buffer@1.0.2:
+ data-view-buffer@1.0.1:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
- data-view-byte-length@1.0.2:
+ data-view-byte-length@1.0.1:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
- data-view-byte-offset@1.0.1:
+ data-view-byte-offset@1.0.0:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-data-view: 1.0.2
+ is-data-view: 1.0.1
- dataloader@2.2.3: {}
+ dataloader@2.2.2: {}
date-fns@4.1.0: {}
@@ -17875,7 +17913,7 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.4.0(supports-color@8.1.1):
+ debug@4.3.7(supports-color@8.1.1):
dependencies:
ms: 2.1.3
optionalDependencies:
@@ -17918,9 +17956,9 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.1
+ es-define-property: 1.0.0
es-errors: 1.3.0
- gopd: 1.2.0
+ gopd: 1.0.1
define-properties@1.2.1:
dependencies:
@@ -17982,10 +18020,6 @@ snapshots:
dependencies:
esutils: 2.0.3
- doctrine@3.0.0:
- dependencies:
- esutils: 2.0.3
-
doctypes@1.1.0:
optional: true
@@ -18034,7 +18068,7 @@ snapshots:
domhandler: 4.3.1
optional: true
- domutils@3.2.2:
+ domutils@3.1.0:
dependencies:
dom-serializer: 2.0.0
domelementtype: 2.3.0
@@ -18058,12 +18092,6 @@ snapshots:
dset@3.1.4: {}
- dunder-proto@1.0.1:
- dependencies:
- call-bind-apply-helpers: 1.0.1
- es-errors: 1.3.0
- gopd: 1.2.0
-
duplexer2@0.1.4:
dependencies:
readable-stream: 2.3.8
@@ -18097,7 +18125,7 @@ snapshots:
jake: 10.9.2
optional: true
- electron-to-chromium@1.5.79: {}
+ electron-to-chromium@1.5.52: {}
embla-carousel-react@8.5.1(react@18.3.1):
dependencies:
@@ -18119,14 +18147,17 @@ snapshots:
encodeurl@2.0.0: {}
- encoding-japanese@2.2.0:
+ encoding-japanese@2.0.0:
+ optional: true
+
+ encoding-japanese@2.1.0:
optional: true
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
- enhanced-resolve@5.18.0:
+ enhanced-resolve@5.17.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -18146,93 +18177,88 @@ snapshots:
dependencies:
stackframe: 1.3.4
- es-abstract@1.23.9:
+ es-abstract@1.23.3:
dependencies:
- array-buffer-byte-length: 1.0.2
- arraybuffer.prototype.slice: 1.0.4
+ array-buffer-byte-length: 1.0.1
+ arraybuffer.prototype.slice: 1.0.3
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.3
- data-view-buffer: 1.0.2
- data-view-byte-length: 1.0.2
- data-view-byte-offset: 1.0.1
- es-define-property: 1.0.1
+ call-bind: 1.0.7
+ data-view-buffer: 1.0.1
+ data-view-byte-length: 1.0.1
+ data-view-byte-offset: 1.0.0
+ es-define-property: 1.0.0
es-errors: 1.3.0
es-object-atoms: 1.0.0
- es-set-tostringtag: 2.1.0
- es-to-primitive: 1.3.0
- function.prototype.name: 1.1.8
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- get-symbol-description: 1.1.0
+ es-set-tostringtag: 2.0.3
+ es-to-primitive: 1.2.1
+ function.prototype.name: 1.1.6
+ get-intrinsic: 1.2.4
+ get-symbol-description: 1.0.2
globalthis: 1.0.4
- gopd: 1.2.0
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
hasown: 2.0.2
- internal-slot: 1.1.0
- is-array-buffer: 3.0.5
+ internal-slot: 1.0.7
+ is-array-buffer: 3.0.4
is-callable: 1.2.7
- is-data-view: 1.0.2
- is-regex: 1.2.1
- is-shared-array-buffer: 1.0.4
- is-string: 1.1.1
- is-typed-array: 1.1.15
- is-weakref: 1.1.0
- math-intrinsics: 1.1.0
- object-inspect: 1.13.3
+ is-data-view: 1.0.1
+ is-negative-zero: 2.0.3
+ is-regex: 1.1.4
+ is-shared-array-buffer: 1.0.3
+ is-string: 1.0.7
+ is-typed-array: 1.1.13
+ is-weakref: 1.0.2
+ object-inspect: 1.13.2
object-keys: 1.1.1
- object.assign: 4.1.7
- own-keys: 1.0.1
- regexp.prototype.flags: 1.5.4
- safe-array-concat: 1.1.3
- safe-push-apply: 1.0.0
- safe-regex-test: 1.1.0
- set-proto: 1.0.0
- string.prototype.trim: 1.2.10
- string.prototype.trimend: 1.0.9
+ object.assign: 4.1.5
+ regexp.prototype.flags: 1.5.3
+ safe-array-concat: 1.1.2
+ safe-regex-test: 1.0.3
+ string.prototype.trim: 1.2.9
+ string.prototype.trimend: 1.0.8
string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.3
- typed-array-byte-length: 1.0.3
- typed-array-byte-offset: 1.0.4
- typed-array-length: 1.0.7
- unbox-primitive: 1.1.0
- which-typed-array: 1.1.18
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.6
+ unbox-primitive: 1.0.2
+ which-typed-array: 1.1.15
- es-define-property@1.0.1: {}
+ es-define-property@1.0.0:
+ dependencies:
+ get-intrinsic: 1.2.4
es-errors@1.3.0: {}
- es-iterator-helpers@1.2.1:
+ es-iterator-helpers@1.2.0:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-errors: 1.3.0
- es-set-tostringtag: 2.1.0
+ es-set-tostringtag: 2.0.3
function-bind: 1.1.2
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
globalthis: 1.0.4
- gopd: 1.2.0
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
- has-proto: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- iterator.prototype: 1.1.5
- safe-array-concat: 1.1.3
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ iterator.prototype: 1.1.3
+ safe-array-concat: 1.1.2
- es-module-lexer@1.6.0: {}
+ es-module-lexer@1.5.4: {}
es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
- es-set-tostringtag@2.1.0:
+ es-set-tostringtag@2.0.3:
dependencies:
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
has-tostringtag: 1.0.2
hasown: 2.0.2
@@ -18240,11 +18266,11 @@ snapshots:
dependencies:
hasown: 2.0.2
- es-to-primitive@1.3.0:
+ es-to-primitive@1.2.1:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.1.0
- is-symbol: 1.1.1
+ is-date-object: 1.0.5
+ is-symbol: 1.0.4
es6-error@4.1.1: {}
@@ -18290,19 +18316,19 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-config-next@14.2.23(eslint@8.57.1)(typescript@5.7.2):
+ eslint-config-next@15.1.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
dependencies:
- '@next/eslint-plugin-next': 14.2.23
- '@rushstack/eslint-patch': 1.10.5
- '@typescript-eslint/eslint-plugin': 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint@8.57.1)(typescript@5.7.2)
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- eslint: 8.57.1
+ '@next/eslint-plugin-next': 15.1.2
+ '@rushstack/eslint-patch': 1.10.4
+ '@typescript-eslint/eslint-plugin': 8.18.1(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/parser': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1)
- eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
- eslint-plugin-react: 7.37.3(eslint@8.57.1)
- eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-react: 7.37.2(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-react-hooks: 5.1.0(eslint@9.17.0(jiti@2.4.2))
optionalDependencies:
typescript: 5.7.2
transitivePeerDependencies:
@@ -18310,127 +18336,130 @@ snapshots:
- eslint-plugin-import-x
- supports-color
- eslint-config-prettier@9.1.0(eslint@8.57.1):
+ eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
- eslint: 8.57.1
+ eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.16.1
- resolve: 1.22.10
+ is-core-module: 2.15.1
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1):
+ eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.4.0(supports-color@8.1.1)
- enhanced-resolve: 5.18.0
- eslint: 8.57.1
- fast-glob: 3.3.3
+ debug: 4.3.7(supports-color@8.1.1)
+ enhanced-resolve: 5.17.1
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.17.0(jiti@2.4.2))
+ fast-glob: 3.3.2
get-tsconfig: 4.8.1
- is-bun-module: 1.3.0
+ is-bun-module: 1.2.1
is-glob: 4.0.3
- stable-hash: 0.0.4
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.17.0(jiti@2.4.2))
transitivePeerDependencies:
+ - '@typescript-eslint/parser'
+ - eslint-import-resolver-node
+ - eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.17.0(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
- eslint: 8.57.1
+ '@typescript-eslint/parser': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.57.1)
+ eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.3)(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
- array.prototype.flat: 1.3.3
- array.prototype.flatmap: 1.3.3
+ array.prototype.flat: 1.3.2
+ array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.57.1
+ eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@8.57.1)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.17.0(jiti@2.4.2))
hasown: 2.0.2
- is-core-module: 2.16.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
object.groupby: 1.0.3
- object.values: 1.2.1
+ object.values: 1.2.0
semver: 6.3.1
- string.prototype.trimend: 1.0.9
+ string.prototype.trimend: 1.0.8
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.7.2)
+ '@typescript-eslint/parser': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jsx-a11y@6.10.2(eslint@8.57.1):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@9.17.0(jiti@2.4.2)):
dependencies:
aria-query: 5.3.2
array-includes: 3.1.8
- array.prototype.flatmap: 1.3.3
+ array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
axe-core: 4.10.2
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.57.1
+ eslint: 9.17.0(jiti@2.4.2)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
minimatch: 3.1.2
object.fromentries: 2.0.8
- safe-regex-test: 1.1.0
+ safe-regex-test: 1.0.3
string.prototype.includes: 2.0.1
- eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.4.2):
+ eslint-plugin-prettier@5.2.1(@types/eslint@9.6.1)(eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(prettier@3.4.2):
dependencies:
- eslint: 8.57.1
+ eslint: 9.17.0(jiti@2.4.2)
prettier: 3.4.2
prettier-linter-helpers: 1.0.0
synckit: 0.9.2
optionalDependencies:
'@types/eslint': 9.6.1
- eslint-config-prettier: 9.1.0(eslint@8.57.1)
+ eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2))
- eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705(eslint@8.57.1):
+ eslint-plugin-react-hooks@5.1.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
- eslint: 8.57.1
+ eslint: 9.17.0(jiti@2.4.2)
- eslint-plugin-react@7.37.3(eslint@8.57.1):
+ eslint-plugin-react@7.37.2(eslint@9.17.0(jiti@2.4.2)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
- array.prototype.flatmap: 1.3.3
+ array.prototype.flatmap: 1.3.2
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
- es-iterator-helpers: 1.2.1
- eslint: 8.57.1
+ es-iterator-helpers: 1.2.0
+ eslint: 9.17.0(jiti@2.4.2)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
object.entries: 1.1.8
object.fromentries: 2.0.8
- object.values: 1.2.1
+ object.values: 1.2.0
prop-types: 15.8.1
resolve: 2.0.0-next.5
semver: 6.3.1
- string.prototype.matchall: 4.0.12
+ string.prototype.matchall: 4.0.11
string.prototype.repeat: 1.0.0
eslint-scope@5.1.1:
@@ -18438,61 +18467,61 @@ snapshots:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-scope@7.2.2:
+ eslint-scope@8.2.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint@8.57.1:
+ eslint-visitor-keys@4.2.0: {}
+
+ eslint@9.17.0(jiti@2.4.2):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.57.1
- '@humanwhocodes/config-array': 0.13.0
+ '@eslint/config-array': 0.19.1
+ '@eslint/core': 0.9.1
+ '@eslint/eslintrc': 3.2.0
+ '@eslint/js': 9.17.0
+ '@eslint/plugin-kit': 0.2.4
+ '@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.1
+ '@humanwhocodes/retry': 0.4.1
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.6
- debug: 4.4.0(supports-color@8.1.1)
- doctrine: 3.0.0
+ debug: 4.3.7(supports-color@8.1.1)
escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
+ file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
- strip-ansi: 6.0.1
- text-table: 0.2.0
+ optionalDependencies:
+ jiti: 2.4.2
transitivePeerDependencies:
- supports-color
- espree@9.6.1:
+ espree@10.3.0:
dependencies:
acorn: 8.14.0
acorn-jsx: 5.3.2(acorn@8.14.0)
- eslint-visitor-keys: 3.4.3
+ eslint-visitor-keys: 4.2.0
esprima@1.2.5:
optional: true
@@ -18546,7 +18575,7 @@ snapshots:
execa@0.10.0:
dependencies:
- cross-spawn: 6.0.6
+ cross-spawn: 6.0.5
get-stream: 3.0.0
is-stream: 1.1.0
npm-run-path: 2.0.2
@@ -18557,7 +18586,7 @@ snapshots:
execa@5.1.1:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -18644,7 +18673,7 @@ snapshots:
fast-fifo@1.3.2: {}
- fast-glob@3.3.2:
+ fast-glob@3.3.1:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
@@ -18652,7 +18681,7 @@ snapshots:
merge2: 1.4.1
micromatch: 4.0.8
- fast-glob@3.3.3:
+ fast-glob@3.3.2:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
@@ -18674,7 +18703,7 @@ snapshots:
fast-shallow-equal@1.0.0: {}
- fast-uri@3.0.5: {}
+ fast-uri@3.0.3: {}
fast-xml-parser@4.4.1:
dependencies:
@@ -18682,7 +18711,7 @@ snapshots:
fastest-stable-stringify@2.0.2: {}
- fastq@1.18.0:
+ fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -18694,13 +18723,13 @@ snapshots:
fbjs@3.0.5:
dependencies:
- cross-fetch: 3.2.0
+ cross-fetch: 3.1.8
fbjs-css-vars: 1.0.2
loose-envify: 1.4.0
object-assign: 4.1.1
promise: 7.3.1
setimmediate: 1.0.5
- ua-parser-js: 1.0.40
+ ua-parser-js: 1.0.39
transitivePeerDependencies:
- encoding
@@ -18714,9 +18743,9 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- file-entry-cache@6.0.1:
+ file-entry-cache@8.0.0:
dependencies:
- flat-cache: 3.2.0
+ flat-cache: 4.0.1
file-type@19.6.0:
dependencies:
@@ -18801,15 +18830,14 @@ snapshots:
rc: 1.2.8
optional: true
- flat-cache@3.2.0:
+ flat-cache@4.0.1:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.1
keyv: 4.5.4
- rimraf: 3.0.2
flat@5.0.2: {}
- flatted@3.3.2: {}
+ flatted@3.3.1: {}
follow-redirects@1.15.9: {}
@@ -18819,15 +18847,15 @@ snapshots:
foreground-child@2.0.0:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
signal-exit: 3.0.7
foreground-child@3.3.0:
dependencies:
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))):
+ fork-ts-checker-webpack-plugin@9.0.2(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))):
dependencies:
'@babel/code-frame': 7.26.2
chalk: 4.1.2
@@ -18842,7 +18870,7 @@ snapshots:
semver: 7.6.3
tapable: 2.2.1
typescript: 5.7.2
- webpack: 5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))
+ webpack: 5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))
form-data-encoder@2.1.4: {}
@@ -18858,10 +18886,10 @@ snapshots:
fraction.js@4.3.7: {}
- framer-motion@11.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ framer-motion@11.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- motion-dom: 11.16.0
- motion-utils: 11.16.0
+ motion-dom: 11.14.3
+ motion-utils: 11.14.3
tslib: 2.8.1
optionalDependencies:
react: 18.3.1
@@ -18902,14 +18930,12 @@ snapshots:
function-bind@1.1.2: {}
- function.prototype.name@1.1.8:
+ function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
+ es-abstract: 1.23.3
functions-have-names: 1.2.3
- hasown: 2.0.2
- is-callable: 1.2.7
functions-have-names@1.2.3: {}
@@ -18923,18 +18949,13 @@ snapshots:
get-func-name@2.0.2: {}
- get-intrinsic@1.2.7:
+ get-intrinsic@1.2.4:
dependencies:
- call-bind-apply-helpers: 1.0.1
- es-define-property: 1.0.1
es-errors: 1.3.0
- es-object-atoms: 1.0.0
function-bind: 1.1.2
- get-proto: 1.0.1
- gopd: 1.2.0
- has-symbols: 1.1.0
+ has-proto: 1.0.3
+ has-symbols: 1.0.3
hasown: 2.0.2
- math-intrinsics: 1.1.0
get-nonce@1.0.1: {}
@@ -18943,11 +18964,6 @@ snapshots:
get-port@5.1.1:
optional: true
- get-proto@1.0.1:
- dependencies:
- dunder-proto: 1.0.1
- es-object-atoms: 1.0.0
-
get-relative-path@1.0.2: {}
get-stdin@8.0.0: {}
@@ -18962,11 +18978,11 @@ snapshots:
'@sec-ant/readable-stream': 0.4.1
is-stream: 4.0.1
- get-symbol-description@1.1.0:
+ get-symbol-description@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.2.4
get-tsconfig@4.8.1:
dependencies:
@@ -18988,14 +19004,6 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.3.10:
- dependencies:
- foreground-child: 3.3.0
- jackspeak: 2.3.6
- minimatch: 9.0.5
- minipass: 7.1.2
- path-scurry: 1.11.1
-
glob@10.3.12:
dependencies:
foreground-child: 3.3.0
@@ -19043,25 +19051,27 @@ snapshots:
globals@11.12.0: {}
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
+ globals@14.0.0: {}
+
+ globals@15.14.0: {}
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
- gopd: 1.2.0
+ gopd: 1.0.1
globby@11.1.0:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.3
+ fast-glob: 3.3.2
ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
- gopd@1.2.0: {}
+ gopd@1.0.1:
+ dependencies:
+ get-intrinsic: 1.2.4
got@13.0.0:
dependencies:
@@ -19081,17 +19091,17 @@ snapshots:
graphemer@1.4.0: {}
- graphql-config@5.1.3(@types/node@20.17.12)(graphql@16.10.0)(typescript@5.7.2):
+ graphql-config@5.1.3(@types/node@20.17.11)(graphql@16.10.0)(typescript@5.7.2):
dependencies:
- '@graphql-tools/graphql-file-loader': 8.0.11(graphql@16.10.0)
- '@graphql-tools/json-file-loader': 8.0.11(graphql@16.10.0)
- '@graphql-tools/load': 8.0.12(graphql@16.10.0)
- '@graphql-tools/merge': 9.0.17(graphql@16.10.0)
- '@graphql-tools/url-loader': 8.0.23(@types/node@20.17.12)(graphql@16.10.0)
- '@graphql-tools/utils': 10.7.2(graphql@16.10.0)
+ '@graphql-tools/graphql-file-loader': 8.0.2(graphql@16.10.0)
+ '@graphql-tools/json-file-loader': 8.0.2(graphql@16.10.0)
+ '@graphql-tools/load': 8.0.3(graphql@16.10.0)
+ '@graphql-tools/merge': 9.0.8(graphql@16.10.0)
+ '@graphql-tools/url-loader': 8.0.13(@types/node@20.17.11)(graphql@16.10.0)
+ '@graphql-tools/utils': 10.5.5(graphql@16.10.0)
cosmiconfig: 8.3.6(typescript@5.7.2)
graphql: 16.10.0
- jiti: 2.4.2
+ jiti: 2.4.0
minimatch: 9.0.5
string-env-interpolation: 1.0.1
tslib: 2.8.1
@@ -19105,7 +19115,7 @@ snapshots:
graphql-request@6.1.0(graphql@16.10.0):
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.10.0)
- cross-fetch: 3.2.0
+ cross-fetch: 3.1.8
graphql: 16.10.0
transitivePeerDependencies:
- encoding
@@ -19146,7 +19156,7 @@ snapshots:
optionalDependencies:
uglify-js: 3.19.3
- has-bigints@1.1.0: {}
+ has-bigints@1.0.2: {}
has-flag@4.0.0: {}
@@ -19154,17 +19164,15 @@ snapshots:
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.1
+ es-define-property: 1.0.0
- has-proto@1.2.0:
- dependencies:
- dunder-proto: 1.0.1
+ has-proto@1.0.3: {}
- has-symbols@1.1.0: {}
+ has-symbols@1.0.3: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.1.0
+ has-symbols: 1.0.3
hasha@5.2.2:
dependencies:
@@ -19228,7 +19236,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.2.2
+ domutils: 3.1.0
entities: 4.5.0
optional: true
@@ -19236,7 +19244,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.2.2
+ domutils: 3.1.0
entities: 4.5.0
optional: true
@@ -19260,8 +19268,8 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ agent-base: 7.1.1
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -19273,14 +19281,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.6:
+ https-proxy-agent@7.0.5:
dependencies:
- agent-base: 7.1.3
- debug: 4.4.0(supports-color@8.1.1)
+ agent-base: 7.1.1
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -19311,7 +19319,7 @@ snapshots:
import-from@4.0.0: {}
- import-in-the-middle@1.12.0:
+ import-in-the-middle@1.11.2:
dependencies:
acorn: 8.14.0
acorn-import-attributes: 1.9.5(acorn@8.14.0)
@@ -19362,7 +19370,7 @@ snapshots:
dependencies:
'@ljharb/through': 2.3.13
ansi-escapes: 4.3.2
- chalk: 5.4.1
+ chalk: 5.3.0
cli-cursor: 3.1.0
cli-width: 4.1.0
external-editor: 3.1.0
@@ -19380,11 +19388,11 @@ snapshots:
dependencies:
kind-of: 6.0.3
- internal-slot@1.1.0:
+ internal-slot@1.0.7:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
- side-channel: 1.1.0
+ side-channel: 1.0.6
invariant@2.2.4:
dependencies:
@@ -19397,55 +19405,48 @@ snapshots:
is-relative: 1.0.0
is-windows: 1.0.2
- is-array-buffer@3.0.5:
+ is-array-buffer@3.0.4:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-arrayish@0.2.1: {}
is-arrayish@0.3.2: {}
- is-async-function@2.1.0:
+ is-async-function@2.0.0:
dependencies:
- call-bound: 1.0.3
- get-proto: 1.0.1
has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
- is-bigint@1.1.0:
+ is-bigint@1.0.4:
dependencies:
- has-bigints: 1.1.0
+ has-bigints: 1.0.2
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
- is-boolean-object@1.2.1:
+ is-boolean-object@1.1.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
- is-bun-module@1.3.0:
+ is-bun-module@1.2.1:
dependencies:
semver: 7.6.3
is-callable@1.2.7: {}
- is-core-module@2.16.1:
+ is-core-module@2.15.1:
dependencies:
hasown: 2.0.2
- is-data-view@1.0.2:
+ is-data-view@1.0.1:
dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
- is-typed-array: 1.1.15
+ is-typed-array: 1.1.13
- is-date-object@1.1.0:
+ is-date-object@1.0.5:
dependencies:
- call-bound: 1.0.3
has-tostringtag: 1.0.2
is-docker@2.2.1:
@@ -19459,18 +19460,15 @@ snapshots:
is-extglob@2.1.1: {}
- is-finalizationregistry@1.1.1:
+ is-finalizationregistry@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
is-fullwidth-code-point@3.0.0: {}
- is-generator-function@1.1.0:
+ is-generator-function@1.0.10:
dependencies:
- call-bound: 1.0.3
- get-proto: 1.0.1
has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
is-glob@4.0.3:
dependencies:
@@ -19484,11 +19482,12 @@ snapshots:
is-map@2.0.3: {}
+ is-negative-zero@2.0.3: {}
+
is-node-process@1.2.0: {}
- is-number-object@1.1.1:
+ is-number-object@1.0.7:
dependencies:
- call-bound: 1.0.3
has-tostringtag: 1.0.2
is-number@7.0.0: {}
@@ -19497,8 +19496,6 @@ snapshots:
is-object@1.0.2: {}
- is-path-inside@3.0.3: {}
-
is-plain-obj@1.1.0: {}
is-plain-obj@2.1.0: {}
@@ -19518,12 +19515,10 @@ snapshots:
dependencies:
'@types/estree': 1.0.6
- is-regex@1.2.1:
+ is-regex@1.1.4:
dependencies:
- call-bound: 1.0.3
- gopd: 1.2.0
+ call-bind: 1.0.7
has-tostringtag: 1.0.2
- hasown: 2.0.2
is-relative@1.0.0:
dependencies:
@@ -19531,9 +19526,9 @@ snapshots:
is-set@2.0.3: {}
- is-shared-array-buffer@1.0.4:
+ is-shared-array-buffer@1.0.3:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
is-stream@1.1.0:
optional: true
@@ -19542,24 +19537,21 @@ snapshots:
is-stream@4.0.1: {}
- is-string@1.1.1:
+ is-string@1.0.7:
dependencies:
- call-bound: 1.0.3
has-tostringtag: 1.0.2
- is-symbol@1.1.1:
+ is-symbol@1.0.4:
dependencies:
- call-bound: 1.0.3
- has-symbols: 1.1.0
- safe-regex-test: 1.1.0
+ has-symbols: 1.0.3
is-text-path@2.0.0:
dependencies:
text-extensions: 2.4.0
- is-typed-array@1.1.15:
+ is-typed-array@1.1.13:
dependencies:
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.15
is-typedarray@1.0.0: {}
@@ -19575,14 +19567,14 @@ snapshots:
is-weakmap@2.0.2: {}
- is-weakref@1.1.0:
+ is-weakref@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
- is-weakset@2.0.4:
+ is-weakset@2.0.3:
dependencies:
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-windows@1.0.2: {}
@@ -19591,6 +19583,8 @@ snapshots:
is-docker: 2.2.1
optional: true
+ isarray@0.0.1: {}
+
isarray@1.0.0: {}
isarray@2.0.5: {}
@@ -19620,7 +19614,7 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
'@babel/core': 7.26.0
- '@babel/parser': 7.26.3
+ '@babel/parser': 7.26.2
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.6.3
@@ -19630,7 +19624,7 @@ snapshots:
istanbul-lib-processinfo@2.0.3:
dependencies:
archy: 1.0.0
- cross-spawn: 7.0.6
+ cross-spawn: 7.0.3
istanbul-lib-coverage: 3.2.2
p-map: 3.0.0
rimraf: 3.0.2
@@ -19644,7 +19638,7 @@ snapshots:
istanbul-lib-source-maps@4.0.1:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
istanbul-lib-coverage: 3.2.2
source-map: 0.6.1
transitivePeerDependencies:
@@ -19659,13 +19653,12 @@ snapshots:
iterare@1.2.1: {}
- iterator.prototype@1.1.5:
+ iterator.prototype@1.1.3:
dependencies:
- define-data-property: 1.1.4
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- has-symbols: 1.1.0
+ define-properties: 1.2.1
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
+ reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
jackspeak@2.3.6:
@@ -19692,11 +19685,13 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
merge-stream: 2.0.0
supports-color: 8.1.1
- jiti@1.21.7: {}
+ jiti@1.21.6: {}
+
+ jiti@2.4.0: {}
jiti@2.4.2: {}
@@ -19710,7 +19705,7 @@ snapshots:
dependencies:
config-chain: 1.1.13
editorconfig: 1.0.4
- glob: 10.3.12
+ glob: 10.4.5
js-cookie: 3.0.5
nopt: 7.2.1
optional: true
@@ -19744,9 +19739,9 @@ snapshots:
form-data: 4.0.1
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.6
+ https-proxy-agent: 7.0.5
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.16
+ nwsapi: 2.2.13
parse5: 7.2.1
rrweb-cssom: 0.7.1
saxes: 6.0.0
@@ -19756,7 +19751,7 @@ snapshots:
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
+ whatwg-url: 14.0.0
ws: 8.18.0
xml-name-validator: 5.0.0
transitivePeerDependencies:
@@ -19766,7 +19761,7 @@ snapshots:
jsesc@2.5.2: {}
- jsesc@3.1.0: {}
+ jsesc@3.0.2: {}
json-buffer@3.0.1: {}
@@ -19823,9 +19818,9 @@ snapshots:
jsx-ast-utils@3.3.5:
dependencies:
array-includes: 3.1.8
- array.prototype.flat: 1.3.3
- object.assign: 4.1.7
- object.values: 1.2.1
+ array.prototype.flat: 1.3.2
+ object.assign: 4.1.5
+ object.values: 1.2.0
jszip@3.10.1:
dependencies:
@@ -19870,20 +19865,20 @@ snapshots:
kind-of@6.0.3: {}
- knip@5.41.1(@types/node@20.17.12)(typescript@5.7.2):
+ knip@5.41.1(@types/node@20.17.11)(typescript@5.7.2):
dependencies:
'@nodelib/fs.walk': 1.2.8
'@snyk/github-codeowners': 1.1.0
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
easy-table: 1.2.0
- enhanced-resolve: 5.18.0
- fast-glob: 3.3.3
- jiti: 2.4.2
+ enhanced-resolve: 5.17.1
+ fast-glob: 3.3.2
+ jiti: 2.4.0
js-yaml: 4.1.0
minimist: 1.2.8
picocolors: 1.1.1
picomatch: 4.0.2
- pretty-ms: 9.2.0
+ pretty-ms: 9.1.0
smol-toml: 1.3.1
strip-json-comments: 5.0.1
summary: 2.1.0
@@ -19954,20 +19949,34 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ libbase64@1.2.1:
+ optional: true
+
libbase64@1.3.0:
optional: true
- libmime@5.3.6:
+ libmime@5.2.0:
+ dependencies:
+ encoding-japanese: 2.0.0
+ iconv-lite: 0.6.3
+ libbase64: 1.2.1
+ libqp: 2.0.1
+ optional: true
+
+ libmime@5.3.5:
dependencies:
- encoding-japanese: 2.2.0
+ encoding-japanese: 2.1.0
iconv-lite: 0.6.3
libbase64: 1.3.0
- libqp: 2.1.1
+ libqp: 2.1.0
optional: true
- libphonenumber-js@1.11.17: {}
+ libphonenumber-js@1.11.12: {}
+
+ libqp@2.0.1:
+ optional: true
- libqp@2.1.1:
+ libqp@2.1.0:
optional: true
lie@3.3.0:
@@ -19984,7 +19993,7 @@ snapshots:
linkifyjs@4.2.0: {}
- liquidjs@10.20.1:
+ liquidjs@10.18.0:
dependencies:
commander: 10.0.1
optional: true
@@ -20139,7 +20148,7 @@ snapshots:
lz-string@1.5.0: {}
- magic-string@0.30.17:
+ magic-string@0.30.12:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
@@ -20147,25 +20156,25 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
- mailparser@3.7.2:
+ mailparser@3.7.1:
dependencies:
- encoding-japanese: 2.2.0
+ encoding-japanese: 2.1.0
he: 1.2.0
html-to-text: 9.0.5
iconv-lite: 0.6.3
- libmime: 5.3.6
+ libmime: 5.3.5
linkify-it: 5.0.0
- mailsplit: 5.4.2
- nodemailer: 6.9.16
+ mailsplit: 5.4.0
+ nodemailer: 6.9.13
punycode.js: 2.3.1
- tlds: 1.255.0
+ tlds: 1.252.0
optional: true
- mailsplit@5.4.2:
+ mailsplit@5.4.0:
dependencies:
- libbase64: 1.3.0
- libmime: 5.3.6
- libqp: 2.1.1
+ libbase64: 1.2.1
+ libmime: 5.2.0
+ libqp: 2.0.1
optional: true
make-dir@3.1.0:
@@ -20189,8 +20198,6 @@ snapshots:
punycode.js: 2.3.1
uc.micro: 2.1.0
- math-intrinsics@1.1.0: {}
-
mdn-data@2.0.14: {}
mdurl@2.0.0: {}
@@ -20212,9 +20219,9 @@ snapshots:
merge2@1.4.1: {}
- meros@1.3.0(@types/node@20.17.12):
+ meros@1.3.0(@types/node@20.17.11):
optionalDependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
methods@1.1.2: {}
@@ -20309,7 +20316,7 @@ snapshots:
dependencies:
'@babel/runtime': 7.26.0
chokidar: 3.6.0
- glob: 10.3.12
+ glob: 10.4.5
html-minifier: 4.0.0
js-beautify: 1.15.1
lodash: 4.17.21
@@ -20609,7 +20616,7 @@ snapshots:
ansi-colors: 4.1.3
browser-stdout: 1.3.1
chokidar: 3.6.0
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
diff: 5.2.0
escape-string-regexp: 4.0.0
find-up: 5.0.0
@@ -20631,15 +20638,13 @@ snapshots:
module-not-found-error@1.0.1: {}
- monaco-editor@0.52.2: {}
+ monaco-editor@0.52.0: {}
moo@0.5.2: {}
- motion-dom@11.16.0:
- dependencies:
- motion-utils: 11.16.0
+ motion-dom@11.14.3: {}
- motion-utils@11.16.0: {}
+ motion-utils@11.14.3: {}
mrmime@2.0.0: {}
@@ -20647,13 +20652,13 @@ snapshots:
ms@2.1.3: {}
- msw@2.7.0(@types/node@20.17.12)(typescript@5.7.2):
+ msw@2.7.0(@types/node@20.17.11)(typescript@5.7.2):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
'@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.1.1(@types/node@20.17.12)
- '@mswjs/interceptors': 0.37.5
+ '@inquirer/confirm': 5.0.1(@types/node@20.17.11)
+ '@mswjs/interceptors': 0.37.4
'@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
'@types/cookie': 0.6.0
@@ -20665,7 +20670,7 @@ snapshots:
path-to-regexp: 6.3.0
picocolors: 1.1.1
strict-event-emitter: 0.5.1
- type-fest: 4.31.0
+ type-fest: 4.26.1
yargs: 17.7.2
optionalDependencies:
typescript: 5.7.2
@@ -20707,7 +20712,7 @@ snapshots:
stacktrace-js: 2.0.2
stylis: 4.3.4
- nanoid@3.3.8: {}
+ nanoid@3.3.7: {}
natural-compare@1.4.0: {}
@@ -20729,7 +20734,7 @@ snapshots:
'@nestjs/common': 10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1)
'@nestjs/core': 10.4.15(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(@nestjs/platform-express@10.4.15)(reflect-metadata@0.2.2)(rxjs@7.8.1)
'@opentelemetry/api': 1.9.0
- '@opentelemetry/host-metrics': 0.35.5(@opentelemetry/api@1.9.0)
+ '@opentelemetry/host-metrics': 0.35.4(@opentelemetry/api@1.9.0)
response-time: 2.3.3
nestjs-pino@4.2.0(@nestjs/common@10.4.15(class-transformer@0.5.1)(class-validator@0.14.1)(reflect-metadata@0.2.2)(rxjs@7.8.1))(pino-http@10.3.0):
@@ -20745,9 +20750,9 @@ snapshots:
jose: 4.15.9
next: 14.2.22(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(@playwright/test@1.49.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
oauth: 0.9.15
- openid-client: 5.7.1
- preact: 10.25.4
- preact-render-to-string: 5.2.6(preact@10.25.4)
+ openid-client: 5.7.0
+ preact: 10.24.3
+ preact-render-to-string: 5.2.6(preact@10.24.3)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
uuid: 8.3.2
@@ -20764,7 +20769,7 @@ snapshots:
'@next/env': 14.2.22
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001690
+ caniuse-lite: 1.0.30001677
graceful-fs: 4.2.11
postcss: 8.4.31
react: 18.3.1
@@ -20809,7 +20814,7 @@ snapshots:
node-abort-controller@3.1.1: {}
- node-addon-api@8.3.0: {}
+ node-addon-api@8.2.1: {}
node-emoji@1.11.0:
dependencies:
@@ -20819,15 +20824,18 @@ snapshots:
dependencies:
whatwg-url: 5.0.0
- node-gyp-build@4.8.4: {}
+ node-gyp-build@4.8.2: {}
node-int64@0.4.0: {}
node-preload@0.2.1:
dependencies:
- process-on-spawn: 1.1.0
+ process-on-spawn: 1.0.0
+
+ node-releases@2.0.18: {}
- node-releases@2.0.19: {}
+ nodemailer@6.9.13:
+ optional: true
nodemailer@6.9.16: {}
@@ -20862,7 +20870,7 @@ snapshots:
nullthrows@1.1.1: {}
- nwsapi@2.2.16: {}
+ nwsapi@2.2.13: {}
nyc@17.1.0:
dependencies:
@@ -20886,7 +20894,7 @@ snapshots:
make-dir: 3.1.0
node-preload: 0.2.1
p-map: 3.0.0
- process-on-spawn: 1.1.0
+ process-on-spawn: 1.0.0
resolve-from: 5.0.0
rimraf: 3.0.2
signal-exit: 3.0.7
@@ -20906,44 +20914,41 @@ snapshots:
object-hash@3.0.0: {}
- object-inspect@1.13.3: {}
+ object-inspect@1.13.2: {}
object-keys@1.1.1: {}
object-path@0.11.8: {}
- object.assign@4.1.7:
+ object.assign@4.1.5:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.0.0
- has-symbols: 1.1.0
+ has-symbols: 1.0.3
object-keys: 1.1.1
object.entries@1.1.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
object.fromentries@2.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-object-atoms: 1.0.0
object.groupby@1.0.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
- object.values@1.2.1:
+ object.values@1.2.0:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
@@ -20973,18 +20978,18 @@ snapshots:
opener@1.5.2: {}
- openid-client@5.7.1:
+ openid-client@5.7.0:
dependencies:
jose: 4.15.9
lru-cache: 6.0.0
object-hash: 2.2.0
oidc-token-hash: 5.0.3
- optimism@0.18.1:
+ optimism@0.18.0:
dependencies:
'@wry/caches': 1.0.1
'@wry/context': 0.7.4
- '@wry/trie': 0.5.0
+ '@wry/trie': 0.4.3
tslib: 2.8.1
optionator@0.9.4:
@@ -21016,12 +21021,6 @@ snapshots:
outvariant@1.4.3: {}
- own-keys@1.0.1:
- dependencies:
- get-intrinsic: 1.2.7
- object-keys: 1.1.1
- safe-push-apply: 1.0.0
-
oxc-resolver@1.12.0:
optionalDependencies:
'@oxc-resolver/binding-darwin-arm64': 1.12.0
@@ -21274,9 +21273,9 @@ snapshots:
pino-http@10.3.0:
dependencies:
get-caller-file: 2.0.5
- pino: 9.6.0
+ pino: 9.5.0
pino-std-serializers: 7.0.0
- process-warning: 4.0.1
+ process-warning: 4.0.0
pino-pretty@11.3.0:
dependencies:
@@ -21290,21 +21289,21 @@ snapshots:
on-exit-leak-free: 2.1.2
pino-abstract-transport: 2.0.0
pump: 3.0.2
- readable-stream: 4.7.0
+ readable-stream: 4.5.2
secure-json-parse: 2.7.0
sonic-boom: 4.2.0
strip-json-comments: 3.1.1
pino-std-serializers@7.0.0: {}
- pino@9.6.0:
+ pino@9.5.0:
dependencies:
atomic-sleep: 1.0.0
fast-redact: 3.5.0
on-exit-leak-free: 2.1.2
pino-abstract-transport: 2.0.0
pino-std-serializers: 7.0.0
- process-warning: 4.0.1
+ process-warning: 4.0.0
quick-format-unescaped: 4.0.4
real-require: 0.2.0
safe-stable-stringify: 2.5.0
@@ -21313,7 +21312,7 @@ snapshots:
pirates@4.0.6: {}
- piscina@4.8.0:
+ piscina@4.7.0:
optionalDependencies:
'@napi-rs/nice': 1.0.1
@@ -21340,20 +21339,20 @@ snapshots:
postcss: 8.4.49
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.10
+ resolve: 1.22.8
postcss-js@4.0.1(postcss@8.4.49):
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.49
- postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)):
+ postcss-load-config@4.0.2(postcss@8.4.49)(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)):
dependencies:
lilconfig: 3.1.3
- yaml: 2.7.0
+ yaml: 2.6.0
optionalDependencies:
postcss: 8.4.49
- ts-node: 10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)
+ ts-node: 10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)
postcss-nested@6.2.0(postcss@8.4.49):
dependencies:
@@ -21374,13 +21373,13 @@ snapshots:
postcss@8.4.31:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.7
picocolors: 1.1.1
source-map-js: 1.2.1
postcss@8.4.49:
dependencies:
- nanoid: 3.3.8
+ nanoid: 3.3.7
picocolors: 1.1.1
source-map-js: 1.2.1
@@ -21394,12 +21393,12 @@ snapshots:
dependencies:
xtend: 4.0.2
- preact-render-to-string@5.2.6(preact@10.25.4):
+ preact-render-to-string@5.2.6(preact@10.24.3):
dependencies:
- preact: 10.25.4
+ preact: 10.24.3
pretty-format: 3.8.0
- preact@10.25.4: {}
+ preact@10.24.3: {}
prelude-ls@1.2.1: {}
@@ -21425,7 +21424,7 @@ snapshots:
pretty-format@3.8.0: {}
- pretty-ms@9.2.0:
+ pretty-ms@9.1.0:
dependencies:
parse-ms: 4.0.0
@@ -21435,7 +21434,7 @@ snapshots:
display-notification: 2.0.0
fixpack: 4.0.0
get-port: 5.1.1
- mailparser: 3.7.2
+ mailparser: 3.7.1
nodemailer: 6.9.16
open: 7.4.2
p-event: 4.2.0
@@ -21467,11 +21466,11 @@ snapshots:
process-nextick-args@2.0.1: {}
- process-on-spawn@1.1.0:
+ process-on-spawn@1.0.0:
dependencies:
fromentries: 1.3.2
- process-warning@4.0.1: {}
+ process-warning@4.0.0: {}
process@0.11.10: {}
@@ -21501,7 +21500,7 @@ snapshots:
prosemirror-commands@1.6.2:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
@@ -21514,7 +21513,7 @@ snapshots:
prosemirror-gapcursor@1.3.2:
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-view: 1.37.1
@@ -21539,7 +21538,7 @@ snapshots:
dependencies:
'@types/markdown-it': 14.1.2
markdown-it: 14.1.0
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-menu@1.2.4:
dependencies:
@@ -21548,49 +21547,49 @@ snapshots:
prosemirror-history: 1.4.1
prosemirror-state: 1.4.3
- prosemirror-model@1.24.1:
+ prosemirror-model@1.23.0:
dependencies:
orderedmap: 2.1.1
prosemirror-schema-basic@1.2.3:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
- prosemirror-schema-list@1.5.0:
+ prosemirror-schema-list@1.4.1:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
prosemirror-state@1.4.3:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-transform: 1.10.2
prosemirror-view: 1.37.1
- prosemirror-tables@1.6.2:
+ prosemirror-tables@1.6.1:
dependencies:
prosemirror-keymap: 1.2.2
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
prosemirror-view: 1.37.1
- prosemirror-trailing-node@3.0.0(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.37.1):
+ prosemirror-trailing-node@3.0.0(prosemirror-model@1.23.0)(prosemirror-state@1.4.3)(prosemirror-view@1.37.1):
dependencies:
'@remirror/core-constants': 3.0.0
escape-string-regexp: 4.0.0
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-view: 1.37.1
prosemirror-transform@1.10.2:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-view@1.37.1:
dependencies:
- prosemirror-model: 1.24.1
+ prosemirror-model: 1.23.0
prosemirror-state: 1.4.3
prosemirror-transform: 1.10.2
@@ -21609,7 +21608,7 @@ snapshots:
'@protobufjs/path': 1.1.2
'@protobufjs/pool': 1.1.0
'@protobufjs/utf8': 1.1.0
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
long: 5.2.3
proxy-addr@2.0.7:
@@ -21623,11 +21622,9 @@ snapshots:
dependencies:
fill-keys: 1.0.2
module-not-found-error: 1.0.1
- resolve: 1.22.10
+ resolve: 1.22.8
- psl@1.15.0:
- dependencies:
- punycode: 2.3.1
+ psl@1.9.0: {}
pug-attrs@3.0.0:
dependencies:
@@ -21657,7 +21654,7 @@ snapshots:
jstransformer: 1.0.0
pug-error: 2.1.0
pug-walk: 2.0.0
- resolve: 1.22.10
+ resolve: 1.22.8
optional: true
pug-lexer@5.0.1:
@@ -21723,7 +21720,7 @@ snapshots:
qs@6.13.0:
dependencies:
- side-channel: 1.1.0
+ side-channel: 1.0.6
querystringify@2.2.0: {}
@@ -21812,10 +21809,10 @@ snapshots:
dependencies:
react: 18.3.1
react-remove-scroll-bar: 2.3.8(@types/react@18.3.18)(react@18.3.1)
- react-style-singleton: 2.2.3(@types/react@18.3.18)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.3.18)(react@18.3.1)
tslib: 2.8.1
use-callback-ref: 1.3.3(@types/react@18.3.18)(react@18.3.1)
- use-sidecar: 1.1.3(@types/react@18.3.18)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.3.18)(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.18
@@ -21824,6 +21821,15 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-style-singleton@2.2.1(@types/react@18.3.18)(react@18.3.1):
+ dependencies:
+ get-nonce: 1.0.1
+ invariant: 2.2.4
+ react: 18.3.1
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 18.3.18
+
react-style-singleton@2.2.3(@types/react@18.3.18)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
@@ -21864,6 +21870,13 @@ snapshots:
dependencies:
pify: 2.3.0
+ readable-stream@1.1.14:
+ dependencies:
+ core-util-is: 1.0.3
+ inherits: 2.0.4
+ isarray: 0.0.1
+ string_decoder: 0.10.31
+
readable-stream@2.3.8:
dependencies:
core-util-is: 1.0.3
@@ -21880,7 +21893,7 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
- readable-stream@4.7.0:
+ readable-stream@4.5.2:
dependencies:
abort-controller: 3.0.0
buffer: 6.0.3
@@ -21911,26 +21924,23 @@ snapshots:
reflect-metadata@0.2.2: {}
- reflect.getprototypeof@1.0.10:
+ reflect.getprototypeof@1.0.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.7
- get-proto: 1.0.1
- which-builtin-type: 1.2.1
+ get-intrinsic: 1.2.4
+ globalthis: 1.0.4
+ which-builtin-type: 1.1.4
regenerator-runtime@0.14.1: {}
- regexp.prototype.flags@1.5.4:
+ regexp.prototype.flags@1.5.3:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-errors: 1.3.0
- get-proto: 1.0.1
- gopd: 1.2.0
set-function-name: 2.0.2
rehackt@0.1.0(@types/react@18.3.18)(react@18.3.1):
@@ -21967,9 +21977,9 @@ snapshots:
require-in-the-middle@7.4.0:
dependencies:
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
module-details-from-path: 1.0.3
- resolve: 1.22.10
+ resolve: 1.22.8
transitivePeerDependencies:
- supports-color
@@ -21987,25 +21997,19 @@ snapshots:
resolve-pkg-maps@1.0.0: {}
- resolve@1.22.10:
- dependencies:
- is-core-module: 2.16.1
- path-parse: 1.0.7
- supports-preserve-symlinks-flag: 1.0.0
-
resolve@1.22.8:
dependencies:
- is-core-module: 2.16.1
+ is-core-module: 2.15.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
+ is-core-module: 2.15.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
- response-iterator@0.2.11: {}
+ response-iterator@0.2.6: {}
response-time@2.3.3:
dependencies:
@@ -22041,29 +22045,28 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.30.1:
+ rollup@4.24.4:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.30.1
- '@rollup/rollup-android-arm64': 4.30.1
- '@rollup/rollup-darwin-arm64': 4.30.1
- '@rollup/rollup-darwin-x64': 4.30.1
- '@rollup/rollup-freebsd-arm64': 4.30.1
- '@rollup/rollup-freebsd-x64': 4.30.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.30.1
- '@rollup/rollup-linux-arm-musleabihf': 4.30.1
- '@rollup/rollup-linux-arm64-gnu': 4.30.1
- '@rollup/rollup-linux-arm64-musl': 4.30.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.30.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.30.1
- '@rollup/rollup-linux-riscv64-gnu': 4.30.1
- '@rollup/rollup-linux-s390x-gnu': 4.30.1
- '@rollup/rollup-linux-x64-gnu': 4.30.1
- '@rollup/rollup-linux-x64-musl': 4.30.1
- '@rollup/rollup-win32-arm64-msvc': 4.30.1
- '@rollup/rollup-win32-ia32-msvc': 4.30.1
- '@rollup/rollup-win32-x64-msvc': 4.30.1
+ '@rollup/rollup-android-arm-eabi': 4.24.4
+ '@rollup/rollup-android-arm64': 4.24.4
+ '@rollup/rollup-darwin-arm64': 4.24.4
+ '@rollup/rollup-darwin-x64': 4.24.4
+ '@rollup/rollup-freebsd-arm64': 4.24.4
+ '@rollup/rollup-freebsd-x64': 4.24.4
+ '@rollup/rollup-linux-arm-gnueabihf': 4.24.4
+ '@rollup/rollup-linux-arm-musleabihf': 4.24.4
+ '@rollup/rollup-linux-arm64-gnu': 4.24.4
+ '@rollup/rollup-linux-arm64-musl': 4.24.4
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.24.4
+ '@rollup/rollup-linux-riscv64-gnu': 4.24.4
+ '@rollup/rollup-linux-s390x-gnu': 4.24.4
+ '@rollup/rollup-linux-x64-gnu': 4.24.4
+ '@rollup/rollup-linux-x64-musl': 4.24.4
+ '@rollup/rollup-win32-arm64-msvc': 4.24.4
+ '@rollup/rollup-win32-ia32-msvc': 4.24.4
+ '@rollup/rollup-win32-x64-msvc': 4.24.4
fsevents: 2.3.3
rope-sequence@1.3.4: {}
@@ -22091,28 +22094,22 @@ snapshots:
dependencies:
tslib: 2.8.1
- safe-array-concat@1.1.3:
+ safe-array-concat@1.1.2:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- get-intrinsic: 1.2.7
- has-symbols: 1.1.0
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
+ has-symbols: 1.0.3
isarray: 2.0.5
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
- safe-push-apply@1.0.0:
- dependencies:
- es-errors: 1.3.0
- isarray: 2.0.5
-
- safe-regex-test@1.1.0:
+ safe-regex-test@1.0.3:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-regex: 1.2.1
+ is-regex: 1.1.4
safe-stable-stringify@2.5.0: {}
@@ -22136,13 +22133,6 @@ snapshots:
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- schema-utils@4.3.0:
- 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)
-
screenfull@5.2.0: {}
scuid@1.1.0: {}
@@ -22215,8 +22205,8 @@ snapshots:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.7
- gopd: 1.2.0
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
has-property-descriptors: 1.0.2
set-function-name@2.0.2:
@@ -22228,12 +22218,6 @@ snapshots:
set-harmonic-interval@1.0.1: {}
- set-proto@1.0.0:
- dependencies:
- dunder-proto: 1.0.1
- es-errors: 1.3.0
- es-object-atoms: 1.0.0
-
setimmediate@1.0.5: {}
setprototypeof@1.2.0: {}
@@ -22283,37 +22267,16 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.2: {}
+ shell-quote@1.8.1: {}
shimmer@1.2.1: {}
- side-channel-list@1.0.0:
- dependencies:
- es-errors: 1.3.0
- object-inspect: 1.13.3
-
- side-channel-map@1.0.1:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.3
-
- side-channel-weakmap@1.0.2:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.7
- object-inspect: 1.13.3
- side-channel-map: 1.0.1
-
- side-channel@1.1.0:
+ side-channel@1.0.6:
dependencies:
+ call-bind: 1.0.7
es-errors: 1.3.0
- object-inspect: 1.13.3
- side-channel-list: 1.0.0
- side-channel-map: 1.0.1
- side-channel-weakmap: 1.0.2
+ get-intrinsic: 1.2.4
+ object-inspect: 1.13.2
siginfo@2.0.0: {}
@@ -22415,14 +22378,12 @@ snapshots:
sprintf-js@1.0.3: {}
- sql-formatter@15.4.9:
+ sql-formatter@15.4.8:
dependencies:
argparse: 2.0.1
get-stdin: 8.0.0
nearley: 2.20.1
- stable-hash@0.0.4: {}
-
stack-generator@2.0.10:
dependencies:
stackframe: 1.3.4
@@ -22464,7 +22425,7 @@ snapshots:
queue-tick: 1.0.1
text-decoder: 1.2.3
optionalDependencies:
- bare-events: 2.5.3
+ bare-events: 2.5.1
strict-event-emitter@0.5.1: {}
@@ -22484,54 +22445,51 @@ snapshots:
string.prototype.includes@2.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
- string.prototype.matchall@4.0.12:
+ string.prototype.matchall@4.0.11:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-errors: 1.3.0
es-object-atoms: 1.0.0
- get-intrinsic: 1.2.7
- gopd: 1.2.0
- has-symbols: 1.1.0
- internal-slot: 1.1.0
- regexp.prototype.flags: 1.5.4
+ get-intrinsic: 1.2.4
+ gopd: 1.0.1
+ has-symbols: 1.0.3
+ internal-slot: 1.0.7
+ regexp.prototype.flags: 1.5.3
set-function-name: 2.0.2
- side-channel: 1.1.0
+ side-channel: 1.0.6
string.prototype.repeat@1.0.0:
dependencies:
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
- string.prototype.trim@1.2.10:
+ string.prototype.trim@1.2.9:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
- define-data-property: 1.1.4
+ call-bind: 1.0.7
define-properties: 1.2.1
- es-abstract: 1.23.9
+ es-abstract: 1.23.3
es-object-atoms: 1.0.0
- has-property-descriptors: 1.0.2
- string.prototype.trimend@1.0.9:
+ string.prototype.trimend@1.0.8:
dependencies:
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
define-properties: 1.2.1
es-object-atoms: 1.0.0
+ string_decoder@0.10.31: {}
+
string_decoder@1.1.1:
dependencies:
safe-buffer: 5.1.2
@@ -22605,7 +22563,7 @@ snapshots:
sucrase@3.35.0:
dependencies:
- '@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/gen-mapping': 0.3.5
commander: 4.1.1
glob: 10.4.5
lines-and-columns: 1.2.4
@@ -22631,15 +22589,15 @@ snapshots:
dependencies:
tslib: 2.8.1
- swc-loader@0.2.6(@swc/core@1.10.6(@swc/helpers@0.5.15))(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))):
+ swc-loader@0.2.6(@swc/core@1.10.4(@swc/helpers@0.5.13))(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))):
dependencies:
- '@swc/core': 1.10.6(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.4(@swc/helpers@0.5.13)
'@swc/counter': 0.1.3
- webpack: 5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))
+ webpack: 5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))
- swc-node@1.0.0(@swc/core@1.10.6(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.2):
+ swc-node@1.0.0(@swc/core@1.10.4(@swc/helpers@0.5.13))(@swc/types@0.1.17)(typescript@5.7.2):
dependencies:
- '@swc-node/register': 1.10.9(@swc/core@1.10.6(@swc/helpers@0.5.15))(@swc/types@0.1.17)(typescript@5.7.2)
+ '@swc-node/register': 1.10.9(@swc/core@1.10.4(@swc/helpers@0.5.13))(@swc/types@0.1.17)(typescript@5.7.2)
transitivePeerDependencies:
- '@swc/core'
- '@swc/types'
@@ -22657,27 +22615,27 @@ snapshots:
'@pkgr/core': 0.1.1
tslib: 2.8.1
- systeminformation@5.23.8: {}
+ systeminformation@5.22.9: {}
tabbable@6.2.0: {}
tailwind-merge@2.6.0: {}
- tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2))):
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2))):
dependencies:
- tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2))
+ tailwindcss: 3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2))
- tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2)):
+ tailwindcss@3.4.17(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
chokidar: 3.6.0
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.3.3
+ fast-glob: 3.3.2
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.21.7
+ jiti: 1.21.6
lilconfig: 3.1.3
micromatch: 4.0.8
normalize-path: 3.0.0
@@ -22686,10 +22644,10 @@ snapshots:
postcss: 8.4.49
postcss-import: 15.1.0(postcss@8.4.49)
postcss-js: 4.0.1(postcss@8.4.49)
- postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2))
+ postcss-load-config: 4.0.2(postcss@8.4.49)(ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2))
postcss-nested: 6.2.0(postcss@8.4.49)
postcss-selector-parser: 6.1.2
- resolve: 1.22.10
+ resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
@@ -22710,18 +22668,18 @@ snapshots:
fast-fifo: 1.3.2
streamx: 2.21.1
- terser-webpack-plugin@5.3.11(@swc/core@1.10.6(@swc/helpers@0.5.15))(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))):
+ terser-webpack-plugin@5.3.10(@swc/core@1.10.4(@swc/helpers@0.5.13))(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 4.3.0
+ schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.37.0
- webpack: 5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))
+ terser: 5.36.0
+ webpack: 5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))
optionalDependencies:
- '@swc/core': 1.10.6(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.4(@swc/helpers@0.5.13)
- terser@5.37.0:
+ terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
acorn: 8.14.0
@@ -22740,8 +22698,6 @@ snapshots:
text-extensions@2.4.0: {}
- text-table@0.2.0: {}
-
thenify-all@1.6.0:
dependencies:
thenify: 3.3.1
@@ -22760,9 +22716,9 @@ snapshots:
tinybench@2.9.0: {}
- tinyexec@0.3.2: {}
+ tinyexec@0.3.1: {}
- tinypool@1.0.2: {}
+ tinypool@1.0.1: {}
tinyrainbow@1.2.0: {}
@@ -22776,14 +22732,14 @@ snapshots:
dependencies:
tslib: 2.8.1
- tlds@1.255.0:
+ tlds@1.252.0:
optional: true
- tldts-core@6.1.71: {}
+ tldts-core@6.1.58: {}
- tldts@6.1.71:
+ tldts@6.1.58:
dependencies:
- tldts-core: 6.1.71
+ tldts-core: 6.1.58
tmp@0.0.33:
dependencies:
@@ -22813,14 +22769,14 @@ snapshots:
tough-cookie@4.1.4:
dependencies:
- psl: 1.15.0
+ psl: 1.9.0
punycode: 2.3.1
universalify: 0.2.0
url-parse: 1.5.10
tough-cookie@5.0.0:
dependencies:
- tldts: 6.1.71
+ tldts: 6.1.58
tr46@0.0.3: {}
@@ -22836,7 +22792,7 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- ts-api-utils@1.4.3(typescript@5.7.2):
+ ts-api-utils@1.4.0(typescript@5.7.2):
dependencies:
typescript: 5.7.2
@@ -22848,15 +22804,15 @@ snapshots:
dependencies:
tslib: 2.8.1
- ts-loader@9.5.1(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))):
+ ts-loader@9.5.1(typescript@5.7.2)(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))):
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.18.0
+ enhanced-resolve: 5.17.1
micromatch: 4.0.8
semver: 7.6.3
source-map: 0.7.4
typescript: 5.7.2
- webpack: 5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15))
+ webpack: 5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13))
ts-log@2.2.7: {}
@@ -22865,14 +22821,14 @@ snapshots:
'@ts-morph/common': 0.17.0
code-block-writer: 11.0.3
- ts-node@10.9.2(@swc/core@1.10.6(@swc/helpers@0.5.15))(@types/node@20.17.12)(typescript@5.7.2):
+ ts-node@10.9.2(@swc/core@1.10.4(@swc/helpers@0.5.13))(@types/node@20.17.11)(typescript@5.7.2):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
'@tsconfig/node12': 1.0.11
'@tsconfig/node14': 1.0.3
'@tsconfig/node16': 1.0.4
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
acorn: 8.14.0
acorn-walk: 8.3.4
arg: 4.1.3
@@ -22883,12 +22839,12 @@ snapshots:
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
- '@swc/core': 1.10.6(@swc/helpers@0.5.15)
+ '@swc/core': 1.10.4(@swc/helpers@0.5.13)
tsconfig-paths-webpack-plugin@4.2.0:
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.18.0
+ enhanced-resolve: 5.17.1
tapable: 2.2.1
tsconfig-paths: 4.2.0
@@ -22917,53 +22873,50 @@ snapshots:
type-detect@4.1.0: {}
- type-fest@0.20.2: {}
-
type-fest@0.21.3: {}
type-fest@0.7.1: {}
type-fest@0.8.1: {}
- type-fest@4.31.0: {}
+ type-fest@4.26.1: {}
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
- typed-array-buffer@1.0.3:
+ typed-array-buffer@1.0.2:
dependencies:
- call-bound: 1.0.3
+ call-bind: 1.0.7
es-errors: 1.3.0
- is-typed-array: 1.1.15
+ is-typed-array: 1.1.13
- typed-array-byte-length@1.0.3:
+ typed-array-byte-length@1.0.1:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
- typed-array-byte-offset@1.0.4:
+ typed-array-byte-offset@1.0.2:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
- has-proto: 1.2.0
- is-typed-array: 1.1.15
- reflect.getprototypeof: 1.0.10
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
- typed-array-length@1.0.7:
+ typed-array-length@1.0.6:
dependencies:
- call-bind: 1.0.8
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
- is-typed-array: 1.1.15
+ gopd: 1.0.1
+ has-proto: 1.0.3
+ is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
- reflect.getprototypeof: 1.0.10
typedarray-to-buffer@3.1.5:
dependencies:
@@ -22971,9 +22924,19 @@ snapshots:
typedarray@0.0.6: {}
+ typescript-eslint@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.18.1(@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/parser': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
+ typescript: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
typescript@5.7.2: {}
- ua-parser-js@1.0.40: {}
+ ua-parser-js@1.0.39: {}
uc.micro@2.1.0: {}
@@ -22988,12 +22951,12 @@ snapshots:
uint8array-extras@1.4.0: {}
- unbox-primitive@1.1.0:
+ unbox-primitive@1.0.2:
dependencies:
- call-bound: 1.0.3
- has-bigints: 1.1.0
- has-symbols: 1.1.0
- which-boxed-primitive: 1.1.1
+ call-bind: 1.0.7
+ has-bigints: 1.0.2
+ has-symbols: 1.0.3
+ which-boxed-primitive: 1.0.2
unbzip2-stream@1.4.3:
dependencies:
@@ -23036,9 +22999,9 @@ snapshots:
readable-stream: 2.3.8
setimmediate: 1.0.5
- update-browserslist-db@1.1.1(browserslist@4.24.3):
+ update-browserslist-db@1.1.1(browserslist@4.24.2):
dependencies:
- browserslist: 4.24.3
+ browserslist: 4.24.2
escalade: 3.2.0
picocolors: 1.1.1
@@ -23071,7 +23034,7 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.18
- use-sidecar@1.1.3(@types/react@18.3.18)(react@18.3.1):
+ use-sidecar@1.1.2(@types/react@18.3.18)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
@@ -23079,7 +23042,7 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.18
- use-sync-external-store@1.4.0(react@18.3.1):
+ use-sync-external-store@1.2.2(react@18.3.1):
dependencies:
react: 18.3.1
@@ -23104,13 +23067,13 @@ snapshots:
vary@1.1.2: {}
- vite-node@2.1.8(@types/node@20.17.12)(terser@5.37.0):
+ vite-node@2.1.8(@types/node@20.17.11)(terser@5.36.0):
dependencies:
cac: 6.7.14
- debug: 4.4.0(supports-color@8.1.1)
- es-module-lexer: 1.6.0
+ debug: 4.3.7(supports-color@8.1.1)
+ es-module-lexer: 1.5.4
pathe: 1.1.2
- vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0)
+ vite: 5.4.10(@types/node@20.17.11)(terser@5.36.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -23122,40 +23085,40 @@ snapshots:
- supports-color
- terser
- vite@5.4.11(@types/node@20.17.12)(terser@5.37.0):
+ vite@5.4.10(@types/node@20.17.11)(terser@5.36.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.49
- rollup: 4.30.1
+ rollup: 4.24.4
optionalDependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
fsevents: 2.3.3
- terser: 5.37.0
+ terser: 5.36.0
- vitest@2.1.8(@types/node@20.17.12)(jsdom@25.0.1)(msw@2.7.0(@types/node@20.17.12)(typescript@5.7.2))(terser@5.37.0):
+ vitest@2.1.8(@types/node@20.17.11)(jsdom@25.0.1)(msw@2.7.0(@types/node@20.17.11)(typescript@5.7.2))(terser@5.36.0):
dependencies:
'@vitest/expect': 2.1.8
- '@vitest/mocker': 2.1.8(msw@2.7.0(@types/node@20.17.12)(typescript@5.7.2))(vite@5.4.11(@types/node@20.17.12)(terser@5.37.0))
+ '@vitest/mocker': 2.1.8(msw@2.7.0(@types/node@20.17.11)(typescript@5.7.2))(vite@5.4.10(@types/node@20.17.11)(terser@5.36.0))
'@vitest/pretty-format': 2.1.8
'@vitest/runner': 2.1.8
'@vitest/snapshot': 2.1.8
'@vitest/spy': 2.1.8
'@vitest/utils': 2.1.8
chai: 5.1.2
- debug: 4.4.0(supports-color@8.1.1)
+ debug: 4.3.7(supports-color@8.1.1)
expect-type: 1.1.0
- magic-string: 0.30.17
+ magic-string: 0.30.12
pathe: 1.1.2
std-env: 3.8.0
tinybench: 2.9.0
- tinyexec: 0.3.2
- tinypool: 1.0.2
+ tinyexec: 0.3.1
+ tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.4.11(@types/node@20.17.12)(terser@5.37.0)
- vite-node: 2.1.8(@types/node@20.17.12)(terser@5.37.0)
+ vite: 5.4.10(@types/node@20.17.11)(terser@5.36.0)
+ vite-node: 2.1.8(@types/node@20.17.11)(terser@5.36.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 20.17.12
+ '@types/node': 20.17.11
jsdom: 25.0.1
transitivePeerDependencies:
- less
@@ -23227,7 +23190,7 @@ snapshots:
webpack-virtual-modules@0.5.0: {}
- webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)):
+ webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
@@ -23235,10 +23198,10 @@ snapshots:
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.14.0
- browserslist: 4.24.3
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
- enhanced-resolve: 5.18.0
- es-module-lexer: 1.6.0
+ enhanced-resolve: 5.17.1
+ es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -23249,7 +23212,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.11(@swc/core@1.10.6(@swc/helpers@0.5.15))(webpack@5.97.1(@swc/core@1.10.6(@swc/helpers@0.5.15)))
+ terser-webpack-plugin: 5.3.10(@swc/core@1.10.4(@swc/helpers@0.5.13))(webpack@5.97.1(@swc/core@1.10.4(@swc/helpers@0.5.13)))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -23265,7 +23228,7 @@ snapshots:
whatwg-mimetype@4.0.0: {}
- whatwg-url@14.1.0:
+ whatwg-url@14.0.0:
dependencies:
tr46: 5.0.0
webidl-conversions: 7.0.0
@@ -23275,46 +23238,44 @@ snapshots:
tr46: 0.0.3
webidl-conversions: 3.0.1
- which-boxed-primitive@1.1.1:
+ which-boxed-primitive@1.0.2:
dependencies:
- is-bigint: 1.1.0
- is-boolean-object: 1.2.1
- is-number-object: 1.1.1
- is-string: 1.1.1
- is-symbol: 1.1.1
+ is-bigint: 1.0.4
+ is-boolean-object: 1.1.2
+ is-number-object: 1.0.7
+ is-string: 1.0.7
+ is-symbol: 1.0.4
- which-builtin-type@1.2.1:
+ which-builtin-type@1.1.4:
dependencies:
- call-bound: 1.0.3
- function.prototype.name: 1.1.8
+ function.prototype.name: 1.1.6
has-tostringtag: 1.0.2
- is-async-function: 2.1.0
- is-date-object: 1.1.0
- is-finalizationregistry: 1.1.1
- is-generator-function: 1.1.0
- is-regex: 1.2.1
- is-weakref: 1.1.0
+ is-async-function: 2.0.0
+ is-date-object: 1.0.5
+ is-finalizationregistry: 1.0.2
+ is-generator-function: 1.0.10
+ is-regex: 1.1.4
+ is-weakref: 1.0.2
isarray: 2.0.5
- which-boxed-primitive: 1.1.1
+ which-boxed-primitive: 1.0.2
which-collection: 1.0.2
- which-typed-array: 1.1.18
+ which-typed-array: 1.1.15
which-collection@1.0.2:
dependencies:
is-map: 2.0.3
is-set: 2.0.3
is-weakmap: 2.0.2
- is-weakset: 2.0.4
+ is-weakset: 2.0.3
which-module@2.0.1: {}
- which-typed-array@1.1.18:
+ which-typed-array@1.1.15:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.8
- call-bound: 1.0.3
+ call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.2.0
+ gopd: 1.0.1
has-tostringtag: 1.0.2
which@1.3.1:
@@ -23333,9 +23294,9 @@ snapshots:
with@7.0.2:
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
- assert-never: 1.4.0
+ '@babel/parser': 7.26.2
+ '@babel/types': 7.26.0
+ assert-never: 1.3.0
babel-walk: 3.0.0-canary-5
optional: true
@@ -23397,7 +23358,7 @@ snapshots:
yaml-ast-parser@0.0.43: {}
- yaml@2.7.0: {}
+ yaml@2.6.0: {}
yargs-parser@18.1.3:
dependencies:
@@ -23480,9 +23441,9 @@ snapshots:
zod@3.24.1: {}
- zustand@4.5.6(@types/react@18.3.18)(react@18.3.1):
+ zustand@4.5.5(@types/react@18.3.18)(react@18.3.1):
dependencies:
- use-sync-external-store: 1.4.0(react@18.3.1)
+ use-sync-external-store: 1.2.2(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.18
react: 18.3.1