From df812fedd9e788ca1ea03529a889665818bab62c Mon Sep 17 00:00:00 2001 From: andresgutgon Date: Wed, 16 Oct 2024 12:37:55 +0200 Subject: [PATCH] Use node-fetch on javascript SDK We realized that the sdk is run on client's server and we can't control the nodejs version or if the have `fetch` polyfill. Also one user saw our sdk failing with TLSSocket.onSocketEnd TypeError terminated other.side closed. The stack trace we saw was pointing to undinci https://github.com/nodejs/undici/issues/583 Which looks is the nodejs fetch implementatin. So we try to use node-fetch to see if this mitigates the error --- packages/sdks/typescript/README.md | 8 + packages/sdks/typescript/package.json | 5 +- packages/sdks/typescript/rollup.config.mjs | 2 + packages/sdks/typescript/src/index.ts | 42 +- .../nodeFetchResponseToReadableStream.ts | 19 + pnpm-lock.yaml | 979 +++++++++--------- 6 files changed, 577 insertions(+), 478 deletions(-) create mode 100644 packages/sdks/typescript/src/utils/nodeFetchResponseToReadableStream.ts diff --git a/packages/sdks/typescript/README.md b/packages/sdks/typescript/README.md index 9ff976ab8..ab8e8eb00 100644 --- a/packages/sdks/typescript/README.md +++ b/packages/sdks/typescript/README.md @@ -117,4 +117,12 @@ onError: (error: Error) => { } ``` +### Publish a new version + +If you have publish permissions you can do: + +```bash +pnpm version patch && pnpm build && pnpm publish +``` + That's it! You are now ready to integrate Latitude's powerful AI features into your TypeScript application using the Latitude SDK. For more detailed information and advanced usage, please refer to the official documentation. diff --git a/packages/sdks/typescript/package.json b/packages/sdks/typescript/package.json index 31cdd4c94..bc529cb6f 100644 --- a/packages/sdks/typescript/package.json +++ b/packages/sdks/typescript/package.json @@ -1,6 +1,6 @@ { "name": "@latitude-data/sdk", - "version": "0.0.11", + "version": "0.0.12", "description": "Latitude SDK for Typescript", "author": "Latitude Data SL ", "license": "LGPL-3.0", @@ -27,6 +27,7 @@ "dependencies": { "@t3-oss/env-core": "^0.10.1", "eventsource-parser": "^2.0.1", + "node-fetch": "3.3.2", "zod": "^3.23.8" }, "devDependencies": { @@ -38,6 +39,8 @@ "@rollup/plugin-replace": "^6.0.1", "@rollup/plugin-typescript": "^11.1.6", "@types/eventsource": "^1.1.15", + "@types/node": "^22.7.5", + "@types/node-fetch": "^2.6.11", "msw": "^2.3.5", "rollup": "^4.21.1", "rollup-plugin-dts": "^6.1.1", diff --git a/packages/sdks/typescript/rollup.config.mjs b/packages/sdks/typescript/rollup.config.mjs index 96f555956..88248c624 100644 --- a/packages/sdks/typescript/rollup.config.mjs +++ b/packages/sdks/typescript/rollup.config.mjs @@ -19,7 +19,9 @@ const aliasEntries = { const EXTERNALS = [ '@t3-oss/env-core', 'zod', + // This fix some circular dependencies from core. Not really needed in prod 'flydrive/types', + 'node-fetch', 'stream', 'eventsource-parser/stream', ] diff --git a/packages/sdks/typescript/src/index.ts b/packages/sdks/typescript/src/index.ts index 5581a9ee5..89987518a 100644 --- a/packages/sdks/typescript/src/index.ts +++ b/packages/sdks/typescript/src/index.ts @@ -1,3 +1,5 @@ +import { Readable } from 'stream' + import type { Config, Message } from '@latitude-data/compiler' import type { ChainCallResponseDto, @@ -7,9 +9,11 @@ import type { } from '@latitude-data/core/browser' import env from '$sdk/env' import { GatewayApiConfig, RouteResolver } from '$sdk/utils' +import { nodeFetchResponseToReadableStream } from '$sdk/utils/nodeFetchResponseToReadableStream' import { BodyParams, HandlerType, UrlParams } from '$sdk/utils/types' import { ParsedEvent, ReconnectInterval } from 'eventsource-parser' import { EventSourceParserStream } from 'eventsource-parser/stream' +import nodeFetch from 'node-fetch' export type StreamChainResponse = { conversation: Message[] @@ -153,7 +157,7 @@ export class Latitude { versionUuid = versionUuid ?? this.versionUuid try { - const response = await this.request({ + const response = await this.nodeFetchRequest({ method: 'POST', handler: HandlerType.RunDocument, params: { projectId, versionUuid }, @@ -166,7 +170,7 @@ export class Latitude { } return this.handleStream({ - stream: response.body!, + body: response.body! as Readable, onEvent, onFinished, onError, @@ -182,14 +186,14 @@ export class Latitude { messages: Message[], { onEvent, onFinished, onError }: StreamResponseCallbacks = {}, ) { - const response = await this.request({ + const response = await this.nodeFetchRequest({ method: 'POST', handler: HandlerType.Chat, params: { conversationUuid: uuid }, body: { messages }, }) return this.handleStream({ - stream: response.body!, + body: response.body! as Readable, onEvent, onFinished, onError, @@ -197,18 +201,19 @@ export class Latitude { } private async handleStream({ - stream, + body, onEvent, onFinished, onError, }: StreamResponseCallbacks & { - stream: ReadableStream + body: Readable }) { let conversation: Message[] = [] let uuid: string | undefined let chainResponse: ChainCallResponseDto | undefined const parser = new EventSourceParserStream() + const stream = nodeFetchResponseToReadableStream(body) const eventStream = stream .pipeThrough(new TextDecoderStream()) .pipeThrough(parser) @@ -279,10 +284,25 @@ export class Latitude { return await fetch(this.routeResolver.resolve({ handler, params }), { method, headers: this.authHeader, - body: - method === 'POST' - ? this.bodyToString({ ...body, __internal: { source: this.source } }) - : undefined, + body: method === 'POST' ? this.bodyToString(body) : undefined, + }) + } + + private async nodeFetchRequest({ + method, + handler, + params, + body, + }: { + handler: H + params?: UrlParams + method: 'POST' | 'GET' | 'PUT' | 'DELETE' + body?: BodyParams + }) { + return nodeFetch(this.routeResolver.resolve({ handler, params }), { + method, + headers: this.authHeader, + body: method === 'POST' ? this.bodyToString(body) : undefined, }) } @@ -302,7 +322,7 @@ export class Latitude { } private bodyToString(body: object = {}) { - return JSON.stringify(body) + return JSON.stringify({ ...body, __internal: { source: this.source } }) } } diff --git a/packages/sdks/typescript/src/utils/nodeFetchResponseToReadableStream.ts b/packages/sdks/typescript/src/utils/nodeFetchResponseToReadableStream.ts new file mode 100644 index 000000000..83d106a5d --- /dev/null +++ b/packages/sdks/typescript/src/utils/nodeFetchResponseToReadableStream.ts @@ -0,0 +1,19 @@ +import { Readable } from 'stream' + +export function nodeFetchResponseToReadableStream(nodeStream: Readable) { + return new ReadableStream({ + start(controller) { + nodeStream.on('data', (chunk: Buffer) => { + controller.enqueue(chunk) + }) + + nodeStream.on('end', () => { + controller.close() + }) + + nodeStream.on('error', (err) => { + controller.error(err) + }) + }, + }) +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c5b88227..35a30bc37 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -34,7 +34,7 @@ importers: version: 4.6.0(monaco-editor@0.50.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@plunk/node': specifier: ^3.0.2 - version: 3.0.2 + version: 3.0.3 '@radix-ui/react-avatar': specifier: ^1.1.0 version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -79,13 +79,13 @@ importers: version: 0.11.1(typescript@5.6.3)(zod@3.23.8) ai: specifier: ^3.2.42 - version: 3.4.9(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) + version: 3.4.10(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) argon2: specifier: ^0.41.0 version: 0.41.1 bullmq: specifier: ^5.12.11 - version: 5.19.0 + version: 5.20.0 class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -136,7 +136,7 @@ importers: version: 8.13.0 posthog-node: specifier: ^4.2.0 - version: 4.2.0 + version: 4.2.1 react: specifier: ^18.3.1 version: 18.3.1 @@ -157,16 +157,16 @@ importers: version: 4.8.0 tailwind-merge: specifier: ^2.4.0 - version: 2.5.3 + version: 2.5.4 tailwindcss: specifier: ^3.4.4 - version: 3.4.13(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)) + version: 3.4.14(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3))) + version: 1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3))) use-debounce: specifier: ^10.0.1 - version: 10.0.3(react@18.3.1) + version: 10.0.4(react@18.3.1) uuid: specifier: ^10.0.0 version: 10.0.0 @@ -198,7 +198,7 @@ importers: version: 11.0.0 mintlify: specifier: ^4.0.233 - version: 4.0.240(encoding@0.1.13)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + version: 4.0.241(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) prettier: specifier: ^3.3.3 version: 3.3.3 @@ -216,10 +216,10 @@ importers: dependencies: '@hono/node-server': specifier: ^1.12.0 - version: 1.13.2(hono@4.6.4) + version: 1.13.2(hono@4.6.5) '@hono/zod-validator': specifier: ^0.2.2 - version: 0.2.2(hono@4.6.4)(zod@3.23.8) + version: 0.2.2(hono@4.6.5)(zod@3.23.8) '@latitude-data/compiler': specifier: workspace:^ version: link:../../packages/compiler @@ -240,7 +240,7 @@ importers: version: 0.33.0(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@18.3.0)(pg@8.13.0)(react@18.3.1) hono: specifier: ^4.5.3 - version: 4.6.4 + version: 4.6.5 jet-paths: specifier: ^1.0.6 version: 1.0.9 @@ -268,19 +268,19 @@ importers: version: 10.0.0 tsup: specifier: ^8.2.4 - version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.5.1) + version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.6.0) tsx: specifier: ^4.16.2 version: 4.19.1 vitest: specifier: ^2.0.4 - version: 2.1.2(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.10(typescript@5.6.3))(terser@5.34.1) + version: 2.1.3(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.11(typescript@5.6.3))(terser@5.34.1) apps/infra: dependencies: '@pulumi/aws': specifier: ^6.50.1 - version: 6.55.0(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) + version: 6.56.0(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) '@pulumi/awsx': specifier: ^2.14.0 version: 2.16.1(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) @@ -329,7 +329,7 @@ importers: version: 4.6.0(monaco-editor@0.50.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) '@sentry/nextjs': specifier: ^8.32.0 - version: 8.34.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)(webpack@5.95.0(esbuild@0.19.12)) + version: 8.34.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)(webpack@5.95.0) '@sentry/utils': specifier: ^8.30.0 version: 8.34.0 @@ -341,10 +341,10 @@ importers: version: 0.10.1(typescript@5.6.3)(zod@3.23.8) ai: specifier: ^3.2.42 - version: 3.4.9(react@19.0.0-rc-5d19e1c8-20240923)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) + version: 3.4.10(react@19.0.0-rc-5d19e1c8-20240923)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) bullmq: specifier: ^5.8.5 - version: 5.19.0 + version: 5.20.0 date-fns: specifier: ^3.6.0 version: 3.6.0 @@ -392,7 +392,7 @@ importers: version: 1.2.0 posthog-js: specifier: ^1.161.6 - version: 1.167.0 + version: 1.169.0 react: specifier: 19.0.0-rc-5d19e1c8-20240923 version: 19.0.0-rc-5d19e1c8-20240923 @@ -407,10 +407,10 @@ importers: version: 2.2.5(react@19.0.0-rc-5d19e1c8-20240923) use-debounce: specifier: ^10.0.1 - version: 10.0.3(react@19.0.0-rc-5d19e1c8-20240923) + version: 10.0.4(react@19.0.0-rc-5d19e1c8-20240923) yaml: specifier: ^2.4.5 - version: 2.5.1 + version: 2.6.0 zod: specifier: ^3.23.8 version: 3.23.8 @@ -481,10 +481,10 @@ importers: version: 8.4.47 tailwindcss: specifier: ^3.4.4 - version: 3.4.13(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.3)) + version: 3.4.14(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.3)) vitest: specifier: ^2.0.3 - version: 2.1.2(@types/node@20.16.11)(jsdom@24.1.3)(msw@2.4.10(typescript@5.6.3))(terser@5.34.1) + version: 2.1.3(@types/node@20.16.11)(jsdom@24.1.3)(msw@2.4.11(typescript@5.6.3))(terser@5.34.1) apps/websockets: dependencies: @@ -521,7 +521,7 @@ importers: version: 22.7.5 tsup: specifier: ^8.2.4 - version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.5.1) + version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.6.0) tsx: specifier: ^4.16.2 version: 4.19.1 @@ -555,7 +555,7 @@ importers: version: 22.7.5 tsup: specifier: ^8.2.4 - version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.5.1) + version: 8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.6.0) tsx: specifier: ^4.16.2 version: 4.19.1 @@ -564,7 +564,7 @@ importers: dependencies: acorn: specifier: ^8.9.0 - version: 8.12.1 + version: 8.13.0 code-red: specifier: ^1.0.3 version: 1.0.4 @@ -573,7 +573,7 @@ importers: version: 3.0.0 yaml: specifier: ^2.4.5 - version: 2.5.1 + version: 2.6.0 zod: specifier: ^3.23.8 version: 3.23.8 @@ -589,7 +589,7 @@ importers: version: 5.1.1(rollup@4.24.0) '@rollup/plugin-typescript': specifier: ^11.1.6 - version: 11.1.6(rollup@4.24.0)(tslib@2.7.0)(typescript@5.6.3) + version: 11.1.6(rollup@4.24.0)(tslib@2.8.0)(typescript@5.6.3) '@types/estree': specifier: ^1.0.1 version: 1.0.6 @@ -646,7 +646,7 @@ importers: version: link:../../tools/typescript '@plunk/node': specifier: ^3.0.2 - version: 3.0.2 + version: 3.0.3 '@react-email/components': specifier: ^0.0.23 version: 0.0.23(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -688,7 +688,7 @@ importers: version: 10.0.0 ai: specifier: ^3.4.7 - version: 3.4.9(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) + version: 3.4.10(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) argon2: specifier: ^0.41.0 version: 0.41.1 @@ -739,7 +739,7 @@ importers: version: 1.2.0(pg@8.13.0) posthog-node: specifier: ^4.2.0 - version: 4.2.0 + version: 4.2.1 prettier: specifier: ^3.3.3 version: 3.3.3 @@ -763,7 +763,7 @@ importers: version: 10.0.0 vitest: specifier: ^2.0.3 - version: 2.1.2(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.10(typescript@5.6.3))(terser@5.34.1) + version: 2.1.3(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.11(typescript@5.6.3))(terser@5.34.1) vue: specifier: ^3.4.38 version: 3.5.12(typescript@5.6.3) @@ -797,6 +797,9 @@ importers: eventsource-parser: specifier: ^2.0.1 version: 2.0.1 + node-fetch: + specifier: 3.3.2 + version: 3.3.2 typescript: specifier: ^5.5.4 version: 5.6.3 @@ -824,13 +827,19 @@ importers: version: 6.0.1(rollup@4.24.0) '@rollup/plugin-typescript': specifier: ^11.1.6 - version: 11.1.6(rollup@4.24.0)(tslib@2.7.0)(typescript@5.6.3) + version: 11.1.6(rollup@4.24.0)(tslib@2.8.0)(typescript@5.6.3) '@types/eventsource': specifier: ^1.1.15 version: 1.1.15 + '@types/node': + specifier: ^22.7.5 + version: 22.7.5 + '@types/node-fetch': + specifier: ^2.6.11 + version: 2.6.11 msw: specifier: ^2.3.5 - version: 2.4.10(typescript@5.6.3) + version: 2.4.11(typescript@5.6.3) rollup: specifier: ^4.21.1 version: 4.24.0 @@ -839,7 +848,7 @@ importers: version: 6.1.1(rollup@4.24.0)(typescript@5.6.3) vitest: specifier: ^2.0.5 - version: 2.1.2(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.10(typescript@5.6.3))(terser@5.34.1) + version: 2.1.3(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.11(typescript@5.6.3))(terser@5.34.1) packages/web-ui: dependencies: @@ -969,19 +978,19 @@ importers: version: 2.13.0-alpha.5(react-dom@18.3.0(react@18.3.0))(react@18.3.0) tailwind-merge: specifier: ^2.4.0 - version: 2.5.3 + version: 2.5.4 tailwindcss: specifier: ^3.4.4 - version: 3.4.13(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)) + version: 3.4.14(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3))) + version: 1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3))) use-debounce: specifier: ^10.0.1 - version: 10.0.3(react@18.3.0) + version: 10.0.4(react@18.3.0) vitest: specifier: ^2.0.3 - version: 2.1.2(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.10(typescript@5.6.3))(terser@5.34.1) + version: 2.1.3(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.11(typescript@5.6.3))(terser@5.34.1) zod: specifier: ^3.23.8 version: 3.23.8 @@ -1129,21 +1138,6 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@apidevtools/json-schema-ref-parser@9.0.6': - resolution: {integrity: sha512-M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg==} - - '@apidevtools/openapi-schemas@2.1.0': - resolution: {integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==} - engines: {node: '>=10'} - - '@apidevtools/swagger-methods@3.0.2': - resolution: {integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==} - - '@apidevtools/swagger-parser@10.1.0': - resolution: {integrity: sha512-9Kt7EuS/7WbMAUv2gSziqjvxwDbFSg3Xeyfuj5laUODX8o/k/CpsAKiQ8W7/R88eXFTMbJYg6+7uAmOWNKmwnw==} - peerDependencies: - openapi-types: '>=7' - '@aws-crypto/crc32@5.2.0': resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==} engines: {node: '>=16.0.0'} @@ -2134,7 +2128,7 @@ packages: resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 || >=8.x '@eslint-community/regexpp@4.11.1': resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} @@ -2161,8 +2155,8 @@ packages: '@floating-ui/react-dom@2.1.2': resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==} peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: '>=16.8.0 || >=18.x' + react-dom: '>=16.8.0 || >=18.x' '@floating-ui/utils@0.2.8': resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} @@ -2383,9 +2377,6 @@ packages: '@js-sdsl/ordered-map@4.4.2': resolution: {integrity: sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==} - '@jsdevtools/ono@7.1.3': - resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==} - '@leichtgewicht/ip-codec@2.0.5': resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} @@ -2417,39 +2408,43 @@ packages: '@microsoft/tsdoc@0.14.2': resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} - '@mintlify/cli@4.0.240': - resolution: {integrity: sha512-dhuuOSquHtf/XEZxfEEqIND2x+FwmE98GtXTRLxUG6K38/VhFWRWlyYuF+32Q6fDDvF9oB0TSlHt6mg1uP710A==} + '@mintlify/cli@4.0.241': + resolution: {integrity: sha512-jYoYpnHwcKa9wuAjXtpKuXdNe4i9E0cfttjDVb8HoOyohsBLzh10png6ld2Cq/N6il4dvCzgn5E03ecsA5Ze0Q==} engines: {node: '>=18.0.0'} hasBin: true - '@mintlify/common@1.0.156': - resolution: {integrity: sha512-WSgv9+zvNahYxeOSXiD8Rh5Keym6wFXPPF/pp5gDID7Dkp4Apzn2VFMb6wS/TSE9RSuk94y+l65Pe9KDCaMzjg==} + '@mintlify/common@1.0.157': + resolution: {integrity: sha512-KR5RWZp0JpVLjmBevORKmZA6/dFX+ixX8UAM0CbI75DA/ySIAwIoIWDqgeHjI1Ke4QiD0J/iLE55u2WINFSVxQ==} - '@mintlify/link-rot@3.0.237': - resolution: {integrity: sha512-osQ1PwnpEkMAnKl+Aehms5+Q7UNn754dWtdRbECRV4ooOmtlApCAtdTXfhVLvRwA9aUBoKVjLEFDg1+2/1Ctiw==} + '@mintlify/link-rot@3.0.238': + resolution: {integrity: sha512-IgOmdVP3HthHcz95hmkRCzs6x1cXgR98r5en5qQ+vIT3fLTCiIoOvGV51ymOKL8oC6X4UgxhJP/GK1YV+/WhTg==} engines: {node: '>=18.0.0'} '@mintlify/mdx@0.0.46': resolution: {integrity: sha512-8BZsTvFhek4Z6//+kWKvlgnKy+dOjbtHqPnhiYaNlvZvGFU5BkLjOtFFP2jG+7vluvfI2yWOS8g3mtPwntWrVg==} - '@mintlify/models@0.0.132': - resolution: {integrity: sha512-SbvsgDk2z6GbnXPCcCA9cwQlXhkX7cY4bhQubpJp9JroFspLpxgZIM0PMk/9KNwKCV6HKgPVv1GPzua5HlFJQA==} + '@mintlify/models@0.0.133': + resolution: {integrity: sha512-IwwFjBSkFtMwQGc7OVVPPaqGpRikTHkGMoPXMLUMQGn/z4OGnb1uIcjqxCT2esWH5RFbY5nYXj2Md+5R3Q1zOw==} engines: {node: '>=18.0.0'} - '@mintlify/prebuild@1.0.236': - resolution: {integrity: sha512-UVeA5OOj8LEKIKz2NmIDpX9i+sn+DChXRClANQ0DSFK081R8mnFOQEZsuywtkmBPbw6BmOIi8xKLK9i21QPQEA==} + '@mintlify/openapi-parser@0.0.0': + resolution: {integrity: sha512-gUdgc5/Y2HsQ6avd3kr3SVQ8ONfUdctgOuVYmuv/dPWPOTizf+EL+azaoLS6ZNk7mBRsewVW1y1iGdjfzmTNiQ==} + engines: {node: '>=18'} + + '@mintlify/prebuild@1.0.237': + resolution: {integrity: sha512-4owtEUDa0vsradAbSyz1s7fn2/NUtAaq96GAcs4iwHf9Pm3O2ph2XeX93eytwO6qkqT37s7kA9y2mBwwFOGoBQ==} - '@mintlify/previewing@4.0.234': - resolution: {integrity: sha512-a3M7YbqxF1Ho6ijKOpL3H9nbJNgiyNIWFn/zKDspo5R6d0jxW6hd2RfwRqaVlVHmfVz8fOQeje9MZ7iW62jvJw==} + '@mintlify/previewing@4.0.235': + resolution: {integrity: sha512-rNg2sgN9ilsQW9a1smAEq3kDnoEra5Xs1a3vEgv8vcyAH998aMiG1xzWS6YkoxyzTPOWCXRywJMSj/laHGXT3A==} engines: {node: '>=18.0.0'} - '@mintlify/scraping@3.0.179': - resolution: {integrity: sha512-uSjPKxmjENGBKEQefzj2Jom6Zeh++56fTaNmqQ/x+oBITIRLdeKrWqTSrTkFf8K9hop8kXeamo7ZOmbkFkqxRA==} + '@mintlify/scraping@3.0.180': + resolution: {integrity: sha512-3p8SWAZHOWHWxNfZd5MORraWH4mfV8O6Sk8V1IP8LhB3jIOPMlDNupvhe8YGLqzs1kH+T7ZCTcM8EQPfTDX96A==} engines: {node: '>=18.0.0'} hasBin: true - '@mintlify/validation@0.1.201': - resolution: {integrity: sha512-UlEux2g+ELnHdYifqVoc0ebQfasn2YtQO4YaXP+XS0ox97fLDOkFzXPypEkKi2nYxoCdYHCttKq4we29+a6VNg==} + '@mintlify/validation@0.1.202': + resolution: {integrity: sha512-0DM4CqLfn9YB/D4KPe7UVjOEorKJ/haJ0+OIIz1x7H53kC2qMaVtork6kXMMRgWmZaXgKxkl3OZzn1Hzws7oxg==} '@monaco-editor/loader@1.4.0': resolution: {integrity: sha512-00ioBig0x642hytVspPl7DbQyaSWRaolYie/UFNjoTdvoKPzo6xrXLhTk9ixgIKcLH5b5vDOjVNiGyY+uDCUlg==} @@ -2460,8 +2455,8 @@ packages: resolution: {integrity: sha512-RFkU9/i7cN2bsq/iTkurMWOEErmYcY6JiQI3Jn+WeR/FGISH8JbHERjpS9oRuSOPvDMJI0Z8nJeKkbOs9sBYQw==} peerDependencies: monaco-editor: '>= 0.25.0 < 1' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18.x + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || >=18.x '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3': resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==} @@ -3192,8 +3187,8 @@ packages: resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@plunk/node@3.0.2': - resolution: {integrity: sha512-6sn8Iog59dVi9vhPWNoWRGHwb29WS2ZRTgIMsMHpVLX9ksQi5XbhJ3rmd71J9gNocYCllz92Tb7fHIZqN08RqQ==} + '@plunk/node@3.0.3': + resolution: {integrity: sha512-f3NT418/EdLjebQ4arAwR64cnz7d5H7i1CeKh8+B0cVBrwzHvF+Q+QkhutF+FAp49yuI/BYc71qQH+RFc2fxxQ==} '@poppinss/utils@6.8.3': resolution: {integrity: sha512-YGeH7pIUm9ExONURNH3xN61dBZ0SXgVuPA9E76t7EHeZHXPNrmR8TlbXQaka6kd5n+cpBNcHG4VsVfYf59bZ7g==} @@ -3232,8 +3227,8 @@ packages: '@protobufjs/utf8@1.1.0': resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - '@pulumi/aws@6.55.0': - resolution: {integrity: sha512-7VRhe72xPJqJHciPP1vDDz1ZCM10UTHv9jDsHYlzL1Tk0+1hBpqH4kNENlJ8icO3vGm3NXImKTB1vkvNk3mBlg==} + '@pulumi/aws@6.56.0': + resolution: {integrity: sha512-7Huxe+hREqybvVM3wiA8j0aaqg0SZIiz8lHXsX/H45FWiBwMRcwLZoCqt76uVsxAu6EaCxc4LmmsYDcDgPEszA==} '@pulumi/awsx@2.16.1': resolution: {integrity: sha512-mQEz+2XdaqkXxDNmkfkqdiU7DAUkD3uNkBFN15q2vsnvZQCjUxZ8WxAJQmLabj/zYV1zl/X4ckf3lMy8Z3Dbcg==} @@ -3288,8 +3283,8 @@ packages: 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 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc || >=18.x + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc || >=18.x peerDependenciesMeta: '@types/react': optional: true @@ -3710,7 +3705,7 @@ packages: resolution: {integrity: sha512-RcBoffx2IZG6quLBXo5sj3fF47rKmmkiMhG1ZBua4nFjHYlmW8j1uUMyO5HNglxIF9E52NYq4sF7XeZRp9jYjg==} engines: {node: '>=18.0.0'} peerDependencies: - react: ^18.0 || ^19.0 || ^19.0.0-rc + react: ^18.0 || ^19.0 || ^19.0.0-rc || >=18.x '@react-email/container@0.0.14': resolution: {integrity: sha512-NgoaJJd9tTtsrveL86Ocr/AYLkGyN3prdXKd/zm5fQpfDhy/NXezyT3iF6VlwAOEUIu64ErHpAJd+P6ygR+vjg==} @@ -4570,6 +4565,9 @@ packages: '@types/nlcst@1.0.4': resolution: {integrity: sha512-ABoYdNQ/kBSsLvZAekMhIPMQ3YUZvavStpKYs7BjLLuKVmIMA0LUgZ7b54zzuWJRbHF80v1cNf4r90Vd6eMQDg==} + '@types/node-fetch@2.6.11': + resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} + '@types/node@18.19.55': resolution: {integrity: sha512-zzw5Vw52205Zr/nmErSEkN5FLqXPuKX/k5d1D7RKHATGqU7y6YfX9QxZraUzUrFGqH6XzOzG196BC35ltJC4Cw==} @@ -4688,7 +4686,7 @@ packages: engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 - eslint: ^8.56.0 + eslint: ^8.56.0 || >=8.x typescript: '*' peerDependenciesMeta: typescript: @@ -4789,7 +4787,7 @@ packages: resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || >=8.x '@typescript-eslint/utils@6.21.0': resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} @@ -4823,7 +4821,7 @@ packages: engines: {node: '>=16'} peerDependencies: '@next/eslint-plugin-next': '>=12.3.0 <15' - eslint: '>=8.48.0 <9' + eslint: '>=8.48.0 <9 || >=8.x' prettier: '>=3.0.0 <4' typescript: '>=4.8.0 <6' peerDependenciesMeta: @@ -4839,13 +4837,13 @@ packages: '@vitest/expect@1.6.0': resolution: {integrity: sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==} - '@vitest/expect@2.1.2': - resolution: {integrity: sha512-FEgtlN8mIUSEAAnlvn7mP8vzaWhEaAEvhSXCqrsijM7K6QqjB11qoRZYEd4AKSCDz8p0/+yH5LzhZ47qt+EyPg==} + '@vitest/expect@2.1.3': + resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==} - '@vitest/mocker@2.1.2': - resolution: {integrity: sha512-ExElkCGMS13JAJy+812fw1aCv2QO/LBK6CyO4WOPAzLTmve50gydOlWhgdBJPx2ztbADUq3JVI0C5U+bShaeEA==} + '@vitest/mocker@2.1.3': + resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==} peerDependencies: - '@vitest/spy': 2.1.2 + '@vitest/spy': 2.1.3 msw: ^2.3.5 vite: ^5.0.0 peerDependenciesMeta: @@ -4854,32 +4852,32 @@ packages: vite: optional: true - '@vitest/pretty-format@2.1.2': - resolution: {integrity: sha512-FIoglbHrSUlOJPDGIrh2bjX1sNars5HbxlcsFKCtKzu4+5lpsRhOCVcuzp0fEhAGHkPZRIXVNzPcpSlkoZ3LuA==} + '@vitest/pretty-format@2.1.3': + resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==} '@vitest/runner@1.6.0': resolution: {integrity: sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==} - '@vitest/runner@2.1.2': - resolution: {integrity: sha512-UCsPtvluHO3u7jdoONGjOSil+uON5SSvU9buQh3lP7GgUXHp78guN1wRmZDX4wGK6J10f9NUtP6pO+SFquoMlw==} + '@vitest/runner@2.1.3': + resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==} '@vitest/snapshot@1.6.0': resolution: {integrity: sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==} - '@vitest/snapshot@2.1.2': - resolution: {integrity: sha512-xtAeNsZ++aRIYIUsek7VHzry/9AcxeULlegBvsdLncLmNCR6tR8SRjn8BbDP4naxtccvzTqZ+L1ltZlRCfBZFA==} + '@vitest/snapshot@2.1.3': + resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==} '@vitest/spy@1.6.0': resolution: {integrity: sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==} - '@vitest/spy@2.1.2': - resolution: {integrity: sha512-GSUi5zoy+abNRJwmFhBDC0yRuVUn8WMlQscvnbbXdKLXX9dE59YbfwXxuJ/mth6eeqIzofU8BB5XDo/Ns/qK2A==} + '@vitest/spy@2.1.3': + resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==} '@vitest/utils@1.6.0': resolution: {integrity: sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==} - '@vitest/utils@2.1.2': - resolution: {integrity: sha512-zMO2KdYy6mx56btx9JvAqAZ6EyS3g49krMPPrgOp1yxGZiA93HumGk+bZ5jIZtOg5/VBYl5eBmGRQHqq4FG6uQ==} + '@vitest/utils@2.1.3': + resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==} '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} @@ -4983,8 +4981,8 @@ packages: resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} engines: {node: '>=0.4.0'} - acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} + acorn@8.13.0: + resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==} engines: {node: '>=0.4.0'} hasBin: true @@ -5008,8 +5006,8 @@ packages: resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} engines: {node: '>=12'} - ai@3.4.9: - resolution: {integrity: sha512-wmVzpIHNGjCEjIJ/3945a/DIkz+gwObjC767ZRgO8AmtIZMO5KqvqNr7n2KF+gQrCPCMC8fM1ICQFXSvBZnBlA==} + ai@3.4.10: + resolution: {integrity: sha512-K+Nm8+AsVWEJDd/DsezSlAteIvcA+HjCUDQhuXKVTBU4z+4lpyji6j9wsyaGBhwFDqGZgNzR/D0r5FQLasA4Jg==} engines: {node: '>=18'} peerDependencies: openai: ^4.42.0 @@ -5037,6 +5035,14 @@ packages: ajv: optional: true + ajv-formats@3.0.1: + resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} + peerDependencies: + ajv: ^8.0.0 + peerDependenciesMeta: + ajv: + optional: true + ajv-keywords@3.5.2: resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: @@ -5319,8 +5325,8 @@ packages: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - bullmq@5.19.0: - resolution: {integrity: sha512-S6ZxVqPgzvKVkGjUN5Qwi0bDgM2aZPKsgJ8ESe5gUOOt3APDRPfDAzrkUz1FkTd1nfgc3HFBN8MCipWDGTdFGA==} + bullmq@5.20.0: + resolution: {integrity: sha512-eCJyYJqNUl9swC39x2fVm1BUv5BuO/nv2eAcAsz58znue0ZCYgSG+yWXZeauRG98Jl0UIBcPgJtbF+c9Wd+Odg==} bundle-require@5.0.0: resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} @@ -5364,9 +5370,6 @@ packages: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} - call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} - callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -5375,8 +5378,8 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - caniuse-lite@1.0.30001668: - resolution: {integrity: sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==} + caniuse-lite@1.0.30001669: + resolution: {integrity: sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==} case-anything@3.1.0: resolution: {integrity: sha512-rRYnn5Elur8RuNHKoJ2b0tgn+pjYxL7BzWom+JZ7NKKn1lt/yGV/tUNwOovxYa9l9VL5hnXQdMc+mENbhJzosQ==} @@ -5907,6 +5910,10 @@ packages: damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + data-uri-to-buffer@4.0.1: + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} + data-uri-to-buffer@6.0.2: resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} engines: {node: '>= 14'} @@ -6252,8 +6259,8 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.36: - resolution: {integrity: sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==} + electron-to-chromium@1.5.39: + resolution: {integrity: sha512-4xkpSR6CjuiaNyvwiWDI85N9AxsvbPawB8xc7yzLPonYTuP19BVgYweKyUMFtHEZgIcHWMt1ks5Cqx2m+6/Grg==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -6704,8 +6711,8 @@ packages: fast-safe-stringify@2.1.1: resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} - fast-uri@3.0.2: - resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==} + fast-uri@3.0.3: + resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} fast-xml-parser@4.4.1: resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==} @@ -6735,6 +6742,10 @@ packages: picomatch: optional: true + fetch-blob@3.2.0: + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} + fflate@0.4.8: resolution: {integrity: sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==} @@ -6816,6 +6827,10 @@ packages: resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} + formdata-polyfill@4.0.10: + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} + formidable@3.5.1: resolution: {integrity: sha512-WJWKelbRHN41m5dumb0/k8TeAx7Id/y3a+Z7QfhxP/htI9Js5zYaEDtG8uMgG0vM0lOlqnmjE99/kfpOYi/0Og==} @@ -7124,8 +7139,8 @@ packages: hoist-non-react-statics@3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} - hono@4.6.4: - resolution: {integrity: sha512-T5WqBkTOcIQblqBKB5mpzaH/A+dSpvVe938xZJCHOmOuYfF7DSwE/9/10+BMvwSPq9N/f6LiQ38HxrZSQOsXKw==} + hono@4.6.5: + resolution: {integrity: sha512-qsmN3V5fgtwdKARGLgwwHvcdLKursMd+YOt69eGpl1dUCJb8mCd7hZfyZnBYjxCegBG7qkJRQRUy2oO25yHcyQ==} engines: {node: '>=16.9.0'} hosted-git-info@2.8.9: @@ -7653,6 +7668,10 @@ packages: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} + jsonpointer@5.0.1: + resolution: {integrity: sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==} + engines: {node: '>=0.10.0'} + jsx-ast-utils@3.3.5: resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} engines: {node: '>=4.0'} @@ -7691,6 +7710,10 @@ packages: leac@0.6.0: resolution: {integrity: sha512-y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg==} + leven@4.0.0: + resolution: {integrity: sha512-puehA3YKku3osqPlNuzGDUHq8WpwXupUg1V6NXdV38G+gr+gkBwFC8g1b/+YcIvp8gnqVIus+eJCH/eGsRmJNw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} @@ -8165,8 +8188,8 @@ packages: resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} engines: {node: '>= 8'} - mintlify@4.0.240: - resolution: {integrity: sha512-69EEd8hwlwyMTyY4ShS9x2A53QMfwUBymZPvfDgAwqlqpsxKoZPvm1C2aFcHn6B6mXAYSdXk9QcHQQ/v/kWdaQ==} + mintlify@4.0.241: + resolution: {integrity: sha512-2i/tHuYPHRx7eT/hM/x0gYinzOpBD3u0LWerGog8WgcruagNRI9SCF1Ed4KfBNjKv4WnqizFfu9aUOAXnrW4hQ==} engines: {node: '>=18.0.0'} hasBin: true @@ -8204,8 +8227,8 @@ packages: msgpackr@1.11.0: resolution: {integrity: sha512-I8qXuuALqJe5laEBYoFykChhSXLikZmUhccjGsPuSJ/7uPip2TJ7lwdIQwWSAi0jGZDXv4WOP8Qg65QZRuXxXw==} - msw@2.4.10: - resolution: {integrity: sha512-bDQh9b25JK4IKMs5hnamwAkcNZ9RwA4mR/4YcgWkzwHOxj7UICbVJfmChJvY1UCAAMraPpvjHdxjoUDpc3F+Qw==} + msw@2.4.11: + resolution: {integrity: sha512-TVEw9NOPTc6ufOQLJ53234S9NBRxQbu7xFMxs+OCP43JQcNEIOKiZHxEm2nDzYIrwccoIhUxUf8wr99SukD76A==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -8319,6 +8342,10 @@ packages: resolution: {integrity: sha512-vmEOvxwiH8tlOcv4SyE8RH34rI5/nWVaigUeAUPawC6f0+HoDthwI0vkMu4tbtsZrXq6QXFfrkhjofzKEs5tpA==} engines: {node: ^18 || ^20 || >= 21} + node-domexception@1.0.0: + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} + node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -8328,6 +8355,10 @@ packages: encoding: optional: true + node-fetch@3.3.2: + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + node-gyp-build-optional-packages@5.2.2: resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==} hasBin: true @@ -8888,15 +8919,15 @@ packages: postgres-range@1.1.4: resolution: {integrity: sha512-i/hbxIE9803Alj/6ytL7UHQxRvZkI9O4Sy+J3HGc4F4oo/2eQAjTSNJ0bfxyse3bH0nuVesCk+3IRLaMtG3H6w==} - posthog-js@1.167.0: - resolution: {integrity: sha512-/zXQ6tuJgiF1d4mgg3UsAi/uoyg7UnfFNQtikuALmaE53xFExpcAKbMfHPG/f54QgTvLxSHyGL1kFl/1uspkGg==} + posthog-js@1.169.0: + resolution: {integrity: sha512-C0TiNv6ehbiy78F9gKZIqy3RbCRsWDSQDbQMi1YW2iuO4kDQUQwacmx2DKyaCwsH0/oN69FdBl99WoEJdjmxXg==} - posthog-node@4.2.0: - resolution: {integrity: sha512-hgyCYMyzMvuF3qWMw6JvS8gT55v7Mtp5wKWcnDrw+nu39D0Tk9BXD7I0LOBp0lGlHEPaXCEVYUtviNKrhMALGA==} + posthog-node@4.2.1: + resolution: {integrity: sha512-l+fsjYEkTik3m/G0pE7gMr4qBJP84LhK779oQm6MBzhBGpd4By4qieTW+4FUAlNCyzQTynn3Nhsa50c0IELSxQ==} engines: {node: '>=15.0.0'} - preact@10.24.2: - resolution: {integrity: sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==} + preact@10.24.3: + resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==} prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -9659,8 +9690,9 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} - string.prototype.includes@2.0.0: - resolution: {integrity: sha512-E34CkBgyeqNDcrbU76cDjL5JLcVrtSdYq0MEh/B10r17pRP4ciHLwTgnuLV8Ay6cgEMLkcBkFCKyFZ43YldYzg==} + string.prototype.includes@2.0.1: + resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} + engines: {node: '>= 0.4'} string.prototype.matchall@4.0.11: resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} @@ -9806,16 +9838,16 @@ packages: resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} engines: {node: ^14.18.0 || >=16.0.0} - tailwind-merge@2.5.3: - resolution: {integrity: sha512-d9ZolCAIzom1nf/5p4LdD5zvjmgSxY0BGgdSvmXIoMYAiPdAW/dSpP7joCDYFY7r/HkEa2qmPtkgsu0xjQeQtw==} + tailwind-merge@2.5.4: + resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==} tailwindcss-animate@1.0.7: resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==} peerDependencies: tailwindcss: '>=3.0.0 || insiders' - tailwindcss@3.4.13: - resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==} + tailwindcss@3.4.14: + resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==} engines: {node: '>=14.0.0'} hasBin: true @@ -9876,8 +9908,8 @@ packages: tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.0: - resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} + tinyexec@0.3.1: + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} tinyglobby@0.2.9: resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==} @@ -9983,8 +10015,8 @@ packages: tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - tslib@2.7.0: - resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + tslib@2.8.0: + resolution: {integrity: sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==} tsup@8.3.0: resolution: {integrity: sha512-ALscEeyS03IomcuNdFdc0YWGVIkwH1Ws7nfTbAPuoILvEV2hpGQAY72LIOjglGo4ShWpZfpBqP/jpQVCzqYQag==} @@ -10126,8 +10158,8 @@ packages: undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici@6.20.0: - resolution: {integrity: sha512-AITZfPuxubm31Sx0vr8bteSalEbs9wQb/BOBi9FPlD9Qpd6HxZ4Q0+hI742jBhkPb4RT2v5MQzaW5VhRVyj+9A==} + undici@6.20.1: + resolution: {integrity: sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==} engines: {node: '>=18.17'} unherit@3.0.1: @@ -10265,8 +10297,8 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - use-debounce@10.0.3: - resolution: {integrity: sha512-DxQSI9ZKso689WM1mjgGU3ozcxU1TJElBJ3X6S4SMzMNcm2lVH0AHmyXB+K7ewjz2BSUKJTDqTcwtSMRfB89dg==} + use-debounce@10.0.4: + resolution: {integrity: sha512-6Cf7Yr7Wk7Kdv77nnJMf6de4HuDE4dTxKij+RqE9rufDsI6zsbjyAxcH5y2ueJCQAnfgKbzXbZHYlkFwmBlWkw==} engines: {node: '>= 16.0.0'} peerDependencies: react: '*' @@ -10374,13 +10406,13 @@ packages: engines: {node: ^18.0.0 || >=20.0.0} hasBin: true - vite-node@2.1.2: - resolution: {integrity: sha512-HPcGNN5g/7I2OtPjLqgOtCRu/qhVvBxTUD3qzitmL0SrG1cWFzxzhMDWussxSbrRYWqnKf8P2jiNhPMSN+ymsQ==} + vite-node@2.1.3: + resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true - vite@5.4.8: - resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==} + vite@5.4.9: + resolution: {integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -10435,15 +10467,15 @@ packages: jsdom: optional: true - vitest@2.1.2: - resolution: {integrity: sha512-veNjLizOMkRrJ6xxb+pvxN6/QAWg95mzcRjtmkepXdN87FNfxAss9RKe2far/G9cQpipfgP2taqg0KiWsquj8A==} + vitest@2.1.3: + resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.1.2 - '@vitest/ui': 2.1.2 + '@vitest/browser': 2.1.3 + '@vitest/ui': 2.1.3 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -10485,6 +10517,10 @@ packages: web-namespaces@2.0.1: resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + web-streams-polyfill@3.3.3: + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} + engines: {node: '>= 8'} + web-vitals@4.2.3: resolution: {integrity: sha512-/CFAm1mNxSmOj6i0Co+iGFJ58OS4NRGVP+AWS/l509uIK5a1bSoIVaHz/ZumpHTfHSZBpgrJ+wjfpAOrTHok5Q==} @@ -10643,8 +10679,8 @@ packages: yallist@4.0.0: resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} - yaml@2.5.1: - resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} + yaml@2.6.0: + resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==} engines: {node: '>= 14'} hasBin: true @@ -10839,38 +10875,17 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@apidevtools/json-schema-ref-parser@9.0.6': - dependencies: - '@jsdevtools/ono': 7.1.3 - call-me-maybe: 1.0.2 - js-yaml: 3.14.1 - - '@apidevtools/openapi-schemas@2.1.0': {} - - '@apidevtools/swagger-methods@3.0.2': {} - - '@apidevtools/swagger-parser@10.1.0(openapi-types@12.1.3)': - dependencies: - '@apidevtools/json-schema-ref-parser': 9.0.6 - '@apidevtools/openapi-schemas': 2.1.0 - '@apidevtools/swagger-methods': 3.0.2 - '@jsdevtools/ono': 7.1.3 - ajv: 8.17.1 - ajv-draft-04: 1.0.0(ajv@8.17.1) - call-me-maybe: 1.0.2 - openapi-types: 12.1.3 - '@aws-crypto/crc32@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.667.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-crypto/crc32c@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.667.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-crypto/sha1-browser@5.2.0': dependencies: @@ -10879,7 +10894,7 @@ snapshots: '@aws-sdk/types': 3.667.0 '@aws-sdk/util-locate-window': 3.568.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-crypto/sha256-browser@5.2.0': dependencies: @@ -10889,23 +10904,23 @@ snapshots: '@aws-sdk/types': 3.667.0 '@aws-sdk/util-locate-window': 3.568.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 '@aws-sdk/types': 3.667.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-crypto/supports-web-crypto@5.2.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@aws-crypto/util@5.2.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/client-ecs@3.670.0': dependencies: @@ -10950,7 +10965,7 @@ snapshots: '@smithy/util-retry': 3.0.7 '@smithy/util-utf8': 3.0.0 '@smithy/util-waiter': 3.1.6 - tslib: 2.7.0 + tslib: 2.8.0 uuid: 9.0.1 transitivePeerDependencies: - aws-crt @@ -11014,7 +11029,7 @@ snapshots: '@smithy/util-stream': 3.1.9 '@smithy/util-utf8': 3.0.0 '@smithy/util-waiter': 3.1.6 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - aws-crt @@ -11059,7 +11074,7 @@ snapshots: '@smithy/util-middleware': 3.0.7 '@smithy/util-retry': 3.0.7 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - aws-crt @@ -11102,7 +11117,7 @@ snapshots: '@smithy/util-middleware': 3.0.7 '@smithy/util-retry': 3.0.7 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - aws-crt @@ -11147,7 +11162,7 @@ snapshots: '@smithy/util-middleware': 3.0.7 '@smithy/util-retry': 3.0.7 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - aws-crt @@ -11163,7 +11178,7 @@ snapshots: '@smithy/types': 3.5.0 '@smithy/util-middleware': 3.0.7 fast-xml-parser: 4.4.1 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/credential-provider-env@3.667.0': dependencies: @@ -11171,7 +11186,7 @@ snapshots: '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.7 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/credential-provider-http@3.667.0': dependencies: @@ -11184,7 +11199,7 @@ snapshots: '@smithy/smithy-client': 3.4.0 '@smithy/types': 3.5.0 '@smithy/util-stream': 3.1.9 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/credential-provider-ini@3.670.0(@aws-sdk/client-sso-oidc@3.670.0(@aws-sdk/client-sts@3.670.0))(@aws-sdk/client-sts@3.670.0)': dependencies: @@ -11200,7 +11215,7 @@ snapshots: '@smithy/property-provider': 3.1.7 '@smithy/shared-ini-file-loader': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt @@ -11218,7 +11233,7 @@ snapshots: '@smithy/property-provider': 3.1.7 '@smithy/shared-ini-file-loader': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' @@ -11231,7 +11246,7 @@ snapshots: '@smithy/property-provider': 3.1.7 '@smithy/shared-ini-file-loader': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/credential-provider-sso@3.670.0(@aws-sdk/client-sso-oidc@3.670.0(@aws-sdk/client-sts@3.670.0))': dependencies: @@ -11242,7 +11257,7 @@ snapshots: '@smithy/property-provider': 3.1.7 '@smithy/shared-ini-file-loader': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt @@ -11254,7 +11269,7 @@ snapshots: '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.7 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-bucket-endpoint@3.667.0': dependencies: @@ -11264,14 +11279,14 @@ snapshots: '@smithy/protocol-http': 4.1.4 '@smithy/types': 3.5.0 '@smithy/util-config-provider': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-expect-continue@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/protocol-http': 4.1.4 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-flexible-checksums@3.669.0': dependencies: @@ -11285,33 +11300,33 @@ snapshots: '@smithy/types': 3.5.0 '@smithy/util-middleware': 3.0.7 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-host-header@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/protocol-http': 4.1.4 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-location-constraint@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-logger@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-recursion-detection@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/protocol-http': 4.1.4 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-sdk-s3@3.669.0': dependencies: @@ -11328,13 +11343,13 @@ snapshots: '@smithy/util-middleware': 3.0.7 '@smithy/util-stream': 3.1.9 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-ssec@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/middleware-user-agent@3.669.0': dependencies: @@ -11344,7 +11359,7 @@ snapshots: '@smithy/core': 2.4.8 '@smithy/protocol-http': 4.1.4 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/region-config-resolver@3.667.0': dependencies: @@ -11353,7 +11368,7 @@ snapshots: '@smithy/types': 3.5.0 '@smithy/util-config-provider': 3.0.0 '@smithy/util-middleware': 3.0.7 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/s3-request-presigner@3.670.0': dependencies: @@ -11364,7 +11379,7 @@ snapshots: '@smithy/protocol-http': 4.1.4 '@smithy/smithy-client': 3.4.0 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/signature-v4-multi-region@3.669.0': dependencies: @@ -11373,7 +11388,7 @@ snapshots: '@smithy/protocol-http': 4.1.4 '@smithy/signature-v4': 4.2.0 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/token-providers@3.667.0(@aws-sdk/client-sso-oidc@3.670.0(@aws-sdk/client-sts@3.670.0))': dependencies: @@ -11382,41 +11397,41 @@ snapshots: '@smithy/property-provider': 3.1.7 '@smithy/shared-ini-file-loader': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/types@3.667.0': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/util-arn-parser@3.568.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/util-endpoints@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/types': 3.5.0 '@smithy/util-endpoints': 2.1.3 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/util-format-url@3.667.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/querystring-builder': 3.0.7 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/util-locate-window@3.568.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/util-user-agent-browser@3.670.0': dependencies: '@aws-sdk/types': 3.667.0 '@smithy/types': 3.5.0 bowser: 2.11.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/util-user-agent-node@3.669.0': dependencies: @@ -11424,12 +11439,12 @@ snapshots: '@aws-sdk/types': 3.667.0 '@smithy/node-config-provider': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@aws-sdk/xml-builder@3.662.0': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@babel/code-frame@7.25.7': dependencies: @@ -11608,17 +11623,17 @@ snapshots: '@emnapi/core@0.45.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 optional: true '@emnapi/runtime@0.45.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 optional: true '@emnapi/runtime@1.3.1': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 optional: true '@esbuild-kit/core-utils@3.3.2': @@ -12036,13 +12051,13 @@ snapshots: protobufjs: 7.4.0 yargs: 17.7.2 - '@hono/node-server@1.13.2(hono@4.6.4)': + '@hono/node-server@1.13.2(hono@4.6.5)': dependencies: - hono: 4.6.4 + hono: 4.6.5 - '@hono/zod-validator@0.2.2(hono@4.6.4)(zod@3.23.8)': + '@hono/zod-validator@0.2.2(hono@4.6.5)(zod@3.23.8)': dependencies: - hono: 4.6.4 + hono: 4.6.5 zod: 3.23.8 '@humanwhocodes/config-array@0.13.0': @@ -12226,8 +12241,6 @@ snapshots: '@js-sdsl/ordered-map@4.4.2': {} - '@jsdevtools/ono@7.1.3': {} - '@leichtgewicht/ip-codec@2.0.5': {} '@logdna/tail-file@2.2.0': {} @@ -12276,14 +12289,13 @@ snapshots: '@microsoft/tsdoc@0.14.2': {} - '@mintlify/cli@4.0.240(encoding@0.1.13)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': + '@mintlify/cli@4.0.241(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@apidevtools/swagger-parser': 10.1.0(openapi-types@12.1.3) - '@mintlify/link-rot': 3.0.237(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) - '@mintlify/models': 0.0.132 - '@mintlify/prebuild': 1.0.236(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) - '@mintlify/previewing': 4.0.234(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) - '@mintlify/validation': 0.1.201 + '@mintlify/link-rot': 3.0.238(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@mintlify/models': 0.0.133 + '@mintlify/prebuild': 1.0.237(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@mintlify/previewing': 4.0.235(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@mintlify/validation': 0.1.202 chalk: 5.3.0 detect-port: 1.6.1 fs-extra: 11.2.0 @@ -12295,22 +12307,21 @@ snapshots: - bufferutil - debug - encoding - - openapi-types - react - react-dom - supports-color - typescript - utf-8-validate - '@mintlify/common@1.0.156(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@mintlify/common@1.0.157(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@apidevtools/swagger-parser': 10.1.0(openapi-types@12.1.3) '@mintlify/mdx': 0.0.46(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mintlify/models': 0.0.132 - '@mintlify/validation': 0.1.201 + '@mintlify/models': 0.0.133 + '@mintlify/openapi-parser': 0.0.0 + '@mintlify/validation': 0.1.202 '@sindresorhus/slugify': 2.2.1 - acorn: 8.12.1 - acorn-jsx: 5.3.2(acorn@8.12.1) + acorn: 8.13.0 + acorn-jsx: 5.3.2(acorn@8.13.0) esast-util-from-js: 2.0.1 estree-util-to-js: 2.0.0 estree-walker: 3.0.3 @@ -12349,11 +12360,10 @@ snapshots: - react-dom - supports-color - '@mintlify/link-rot@3.0.237(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': + '@mintlify/link-rot@3.0.238(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@apidevtools/swagger-parser': 10.1.0(openapi-types@12.1.3) - '@mintlify/common': 1.0.156(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mintlify/prebuild': 1.0.236(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@mintlify/common': 1.0.157(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mintlify/prebuild': 1.0.237(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) chalk: 5.3.0 fs-extra: 11.2.0 gray-matter: 4.0.3 @@ -12384,19 +12394,28 @@ snapshots: - react-dom - supports-color - '@mintlify/models@0.0.132': + '@mintlify/models@0.0.133': dependencies: axios: 1.7.7 openapi-types: 12.1.3 transitivePeerDependencies: - debug - '@mintlify/prebuild@1.0.236(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': + '@mintlify/openapi-parser@0.0.0': + dependencies: + ajv: 8.17.1 + ajv-draft-04: 1.0.0(ajv@8.17.1) + ajv-formats: 3.0.1(ajv@8.17.1) + jsonpointer: 5.0.1 + leven: 4.0.0 + yaml: 2.6.0 + + '@mintlify/prebuild@1.0.237(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@apidevtools/swagger-parser': 10.1.0(openapi-types@12.1.3) - '@mintlify/common': 1.0.156(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mintlify/scraping': 3.0.179(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) - '@mintlify/validation': 0.1.201 + '@mintlify/common': 1.0.157(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mintlify/openapi-parser': 0.0.0 + '@mintlify/scraping': 3.0.180(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@mintlify/validation': 0.1.202 axios: 1.7.7 chalk: 5.3.0 favicons: 7.2.0 @@ -12415,12 +12434,11 @@ snapshots: - typescript - utf-8-validate - '@mintlify/previewing@4.0.234(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': + '@mintlify/previewing@4.0.235(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@apidevtools/swagger-parser': 10.1.0(openapi-types@12.1.3) - '@mintlify/common': 1.0.156(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mintlify/prebuild': 1.0.236(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) - '@mintlify/validation': 0.1.201 + '@mintlify/common': 1.0.157(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mintlify/prebuild': 1.0.237(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@mintlify/validation': 0.1.202 '@octokit/rest': 19.0.13(encoding@0.1.13) better-opn: 3.0.2 chalk: 5.3.0 @@ -12447,10 +12465,10 @@ snapshots: - typescript - utf-8-validate - '@mintlify/scraping@3.0.179(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': + '@mintlify/scraping@3.0.180(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@apidevtools/swagger-parser': 10.1.0(openapi-types@12.1.3) - '@mintlify/common': 1.0.156(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mintlify/common': 1.0.157(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mintlify/openapi-parser': 0.0.0 axios: 1.7.7 cheerio: 1.0.0 fs-extra: 11.2.0 @@ -12461,16 +12479,15 @@ snapshots: transitivePeerDependencies: - bufferutil - debug - - openapi-types - react - react-dom - supports-color - typescript - utf-8-validate - '@mintlify/validation@0.1.201': + '@mintlify/validation@0.1.202': dependencies: - '@mintlify/models': 0.0.132 + '@mintlify/models': 0.0.133 lcm: 0.0.3 lodash: 4.17.21 openapi-types: 12.1.3 @@ -13281,9 +13298,9 @@ snapshots: '@pkgr/core@0.1.1': {} - '@plunk/node@3.0.2': + '@plunk/node@3.0.3': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@poppinss/utils@6.8.3': dependencies: @@ -13331,7 +13348,7 @@ snapshots: '@protobufjs/utf8@1.1.0': {} - '@pulumi/aws@6.55.0(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3)': + '@pulumi/aws@6.56.0(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3)': dependencies: '@pulumi/pulumi': 3.136.1(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) builtin-modules: 3.0.0 @@ -13346,7 +13363,7 @@ snapshots: '@pulumi/awsx@2.16.1(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3)': dependencies: '@aws-sdk/client-ecs': 3.670.0 - '@pulumi/aws': 6.55.0(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) + '@pulumi/aws': 6.56.0(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) '@pulumi/docker': 4.5.6(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) '@pulumi/pulumi': 3.136.1(ts-node@10.9.2(@types/node@18.19.55)(typescript@5.6.3))(typescript@5.6.3) '@types/aws-lambda': 8.10.145 @@ -14390,14 +14407,14 @@ snapshots: optionalDependencies: rollup: 4.24.0 - '@rollup/plugin-typescript@11.1.6(rollup@4.24.0)(tslib@2.7.0)(typescript@5.6.3)': + '@rollup/plugin-typescript@11.1.6(rollup@4.24.0)(tslib@2.8.0)(typescript@5.6.3)': dependencies: '@rollup/pluginutils': 5.1.2(rollup@4.24.0) resolve: 1.22.8 typescript: 5.6.3 optionalDependencies: rollup: 4.24.0 - tslib: 2.7.0 + tslib: 2.8.0 '@rollup/pluginutils@5.1.2(rollup@3.29.5)': dependencies: @@ -14569,7 +14586,7 @@ snapshots: '@sentry/types': 8.34.0 '@sentry/utils': 8.34.0 - '@sentry/nextjs@8.34.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)(webpack@5.95.0(esbuild@0.19.12))': + '@sentry/nextjs@8.34.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.26.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.53.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.26.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923)(webpack@5.95.0)': dependencies: '@opentelemetry/instrumentation-http': 0.53.0(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.27.0 @@ -14582,14 +14599,14 @@ snapshots: '@sentry/types': 8.34.0 '@sentry/utils': 8.34.0 '@sentry/vercel-edge': 8.34.0 - '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.95.0(esbuild@0.19.12)) + '@sentry/webpack-plugin': 2.22.3(encoding@0.1.13)(webpack@5.95.0) chalk: 3.0.0 next: 15.0.0-canary.168(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923))(react@19.0.0-rc-5d19e1c8-20240923) resolve: 1.22.8 rollup: 3.29.5 stacktrace-parser: 0.1.10 optionalDependencies: - webpack: 5.95.0(esbuild@0.19.12) + webpack: 5.95.0 transitivePeerDependencies: - '@opentelemetry/api' - '@opentelemetry/core' @@ -14671,12 +14688,12 @@ snapshots: '@sentry/types': 8.34.0 '@sentry/utils': 8.34.0 - '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.95.0(esbuild@0.19.12))': + '@sentry/webpack-plugin@2.22.3(encoding@0.1.13)(webpack@5.95.0)': dependencies: '@sentry/bundler-plugin-core': 2.22.3(encoding@0.1.13) unplugin: 1.0.1 uuid: 9.0.1 - webpack: 5.95.0(esbuild@0.19.12) + webpack: 5.95.0 transitivePeerDependencies: - encoding - supports-color @@ -14731,16 +14748,16 @@ snapshots: '@smithy/abort-controller@3.1.5': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/chunked-blob-reader-native@3.0.0': dependencies: '@smithy/util-base64': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/chunked-blob-reader@3.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/config-resolver@3.0.9': dependencies: @@ -14748,7 +14765,7 @@ snapshots: '@smithy/types': 3.5.0 '@smithy/util-config-provider': 3.0.0 '@smithy/util-middleware': 3.0.7 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/core@2.4.8': dependencies: @@ -14761,7 +14778,7 @@ snapshots: '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-middleware': 3.0.7 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/credential-provider-imds@3.2.4': dependencies: @@ -14769,37 +14786,37 @@ snapshots: '@smithy/property-provider': 3.1.7 '@smithy/types': 3.5.0 '@smithy/url-parser': 3.0.7 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/eventstream-codec@3.1.6': dependencies: '@aws-crypto/crc32': 5.2.0 '@smithy/types': 3.5.0 '@smithy/util-hex-encoding': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/eventstream-serde-browser@3.0.10': dependencies: '@smithy/eventstream-serde-universal': 3.0.9 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/eventstream-serde-config-resolver@3.0.7': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/eventstream-serde-node@3.0.9': dependencies: '@smithy/eventstream-serde-universal': 3.0.9 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/eventstream-serde-universal@3.0.9': dependencies: '@smithy/eventstream-codec': 3.1.6 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/fetch-http-handler@3.2.9': dependencies: @@ -14807,52 +14824,52 @@ snapshots: '@smithy/querystring-builder': 3.0.7 '@smithy/types': 3.5.0 '@smithy/util-base64': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/hash-blob-browser@3.1.6': dependencies: '@smithy/chunked-blob-reader': 3.0.0 '@smithy/chunked-blob-reader-native': 3.0.0 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/hash-node@3.0.7': dependencies: '@smithy/types': 3.5.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/hash-stream-node@3.1.6': dependencies: '@smithy/types': 3.5.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/invalid-dependency@3.0.7': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/is-array-buffer@2.2.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/is-array-buffer@3.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/md5-js@3.0.7': dependencies: '@smithy/types': 3.5.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/middleware-content-length@3.0.9': dependencies: '@smithy/protocol-http': 4.1.4 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/middleware-endpoint@3.1.4': dependencies: @@ -14862,7 +14879,7 @@ snapshots: '@smithy/types': 3.5.0 '@smithy/url-parser': 3.0.7 '@smithy/util-middleware': 3.0.7 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/middleware-retry@3.0.23': dependencies: @@ -14873,25 +14890,25 @@ snapshots: '@smithy/types': 3.5.0 '@smithy/util-middleware': 3.0.7 '@smithy/util-retry': 3.0.7 - tslib: 2.7.0 + tslib: 2.8.0 uuid: 9.0.1 '@smithy/middleware-serde@3.0.7': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/middleware-stack@3.0.7': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/node-config-provider@3.1.8': dependencies: '@smithy/property-provider': 3.1.7 '@smithy/shared-ini-file-loader': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/node-http-handler@3.2.4': dependencies: @@ -14899,28 +14916,28 @@ snapshots: '@smithy/protocol-http': 4.1.4 '@smithy/querystring-builder': 3.0.7 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/property-provider@3.1.7': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/protocol-http@4.1.4': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/querystring-builder@3.0.7': dependencies: '@smithy/types': 3.5.0 '@smithy/util-uri-escape': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/querystring-parser@3.0.7': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/service-error-classification@3.0.7': dependencies: @@ -14929,7 +14946,7 @@ snapshots: '@smithy/shared-ini-file-loader@3.1.8': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/signature-v4@4.2.0': dependencies: @@ -14940,7 +14957,7 @@ snapshots: '@smithy/util-middleware': 3.0.7 '@smithy/util-uri-escape': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/smithy-client@3.4.0': dependencies: @@ -14949,45 +14966,45 @@ snapshots: '@smithy/protocol-http': 4.1.4 '@smithy/types': 3.5.0 '@smithy/util-stream': 3.1.9 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/types@3.5.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/url-parser@3.0.7': dependencies: '@smithy/querystring-parser': 3.0.7 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-base64@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-body-length-browser@3.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-body-length-node@3.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-buffer-from@2.2.0': dependencies: '@smithy/is-array-buffer': 2.2.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-buffer-from@3.0.0': dependencies: '@smithy/is-array-buffer': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-config-provider@3.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-defaults-mode-browser@3.0.23': dependencies: @@ -14995,7 +15012,7 @@ snapshots: '@smithy/smithy-client': 3.4.0 '@smithy/types': 3.5.0 bowser: 2.11.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-defaults-mode-node@3.0.23': dependencies: @@ -15005,28 +15022,28 @@ snapshots: '@smithy/property-provider': 3.1.7 '@smithy/smithy-client': 3.4.0 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-endpoints@2.1.3': dependencies: '@smithy/node-config-provider': 3.1.8 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-hex-encoding@3.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-middleware@3.0.7': dependencies: '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-retry@3.0.7': dependencies: '@smithy/service-error-classification': 3.0.7 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-stream@3.1.9': dependencies: @@ -15037,27 +15054,27 @@ snapshots: '@smithy/util-buffer-from': 3.0.0 '@smithy/util-hex-encoding': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-uri-escape@3.0.0': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-utf8@2.3.0': dependencies: '@smithy/util-buffer-from': 2.2.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-utf8@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 '@smithy/util-waiter@3.1.6': dependencies: '@smithy/abort-controller': 3.1.5 '@smithy/types': 3.5.0 - tslib: 2.7.0 + tslib: 2.8.0 '@socket.io/component-emitter@3.1.2': {} @@ -15065,12 +15082,12 @@ snapshots: '@swc/helpers@0.5.13': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 '@swc/helpers@0.5.5': dependencies: '@swc/counter': 0.1.3 - tslib: 2.7.0 + tslib: 2.8.0 '@szmarczak/http-timer@4.0.6': dependencies: @@ -15167,7 +15184,7 @@ snapshots: '@tybys/wasm-util@0.8.3': dependencies: - tslib: 2.7.0 + tslib: 2.8.0 optional: true '@types/acorn@4.0.6': @@ -15324,6 +15341,11 @@ snapshots: dependencies: '@types/unist': 2.0.11 + '@types/node-fetch@2.6.11': + dependencies: + '@types/node': 22.7.5 + form-data: 4.0.1 + '@types/node@18.19.55': dependencies: undici-types: 5.26.5 @@ -15685,32 +15707,32 @@ snapshots: '@vitest/utils': 1.6.0 chai: 4.5.0 - '@vitest/expect@2.1.2': + '@vitest/expect@2.1.3': dependencies: - '@vitest/spy': 2.1.2 - '@vitest/utils': 2.1.2 + '@vitest/spy': 2.1.3 + '@vitest/utils': 2.1.3 chai: 5.1.1 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.2(@vitest/spy@2.1.2)(msw@2.4.10(typescript@5.6.3))(vite@5.4.8(@types/node@20.16.11)(terser@5.34.1))': + '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(msw@2.4.11(typescript@5.6.3))(vite@5.4.9(@types/node@20.16.11)(terser@5.34.1))': dependencies: - '@vitest/spy': 2.1.2 + '@vitest/spy': 2.1.3 estree-walker: 3.0.3 magic-string: 0.30.12 optionalDependencies: - msw: 2.4.10(typescript@5.6.3) - vite: 5.4.8(@types/node@20.16.11)(terser@5.34.1) + msw: 2.4.11(typescript@5.6.3) + vite: 5.4.9(@types/node@20.16.11)(terser@5.34.1) - '@vitest/mocker@2.1.2(@vitest/spy@2.1.2)(msw@2.4.10(typescript@5.6.3))(vite@5.4.8(@types/node@22.7.5)(terser@5.34.1))': + '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(msw@2.4.11(typescript@5.6.3))(vite@5.4.9(@types/node@22.7.5)(terser@5.34.1))': dependencies: - '@vitest/spy': 2.1.2 + '@vitest/spy': 2.1.3 estree-walker: 3.0.3 magic-string: 0.30.12 optionalDependencies: - msw: 2.4.10(typescript@5.6.3) - vite: 5.4.8(@types/node@22.7.5)(terser@5.34.1) + msw: 2.4.11(typescript@5.6.3) + vite: 5.4.9(@types/node@22.7.5)(terser@5.34.1) - '@vitest/pretty-format@2.1.2': + '@vitest/pretty-format@2.1.3': dependencies: tinyrainbow: 1.2.0 @@ -15720,9 +15742,9 @@ snapshots: p-limit: 5.0.0 pathe: 1.1.2 - '@vitest/runner@2.1.2': + '@vitest/runner@2.1.3': dependencies: - '@vitest/utils': 2.1.2 + '@vitest/utils': 2.1.3 pathe: 1.1.2 '@vitest/snapshot@1.6.0': @@ -15731,9 +15753,9 @@ snapshots: pathe: 1.1.2 pretty-format: 29.7.0 - '@vitest/snapshot@2.1.2': + '@vitest/snapshot@2.1.3': dependencies: - '@vitest/pretty-format': 2.1.2 + '@vitest/pretty-format': 2.1.3 magic-string: 0.30.12 pathe: 1.1.2 @@ -15741,7 +15763,7 @@ snapshots: dependencies: tinyspy: 2.2.1 - '@vitest/spy@2.1.2': + '@vitest/spy@2.1.3': dependencies: tinyspy: 3.0.2 @@ -15752,9 +15774,9 @@ snapshots: loupe: 2.3.7 pretty-format: 29.7.0 - '@vitest/utils@2.1.2': + '@vitest/utils@2.1.3': dependencies: - '@vitest/pretty-format': 2.1.2 + '@vitest/pretty-format': 2.1.3 loupe: 3.1.2 tinyrainbow: 1.2.0 @@ -15899,19 +15921,19 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-import-attributes@1.9.5(acorn@8.12.1): + acorn-import-attributes@1.9.5(acorn@8.13.0): dependencies: - acorn: 8.12.1 + acorn: 8.13.0 - acorn-jsx@5.3.2(acorn@8.12.1): + acorn-jsx@5.3.2(acorn@8.13.0): dependencies: - acorn: 8.12.1 + acorn: 8.13.0 acorn-walk@8.3.4: dependencies: - acorn: 8.12.1 + acorn: 8.13.0 - acorn@8.12.1: {} + acorn@8.13.0: {} address@1.2.2: {} @@ -15937,7 +15959,7 @@ snapshots: clean-stack: 4.2.0 indent-string: 5.0.0 - ai@3.4.9(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8): + ai@3.4.10(react@18.3.1)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8): dependencies: '@ai-sdk/provider': 0.0.24 '@ai-sdk/provider-utils': 1.0.20(zod@3.23.8) @@ -15962,7 +15984,7 @@ snapshots: - solid-js - vue - ai@3.4.9(react@19.0.0-rc-5d19e1c8-20240923)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8): + ai@3.4.10(react@19.0.0-rc-5d19e1c8-20240923)(sswr@2.1.0(svelte@4.2.19))(svelte@4.2.19)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8): dependencies: '@ai-sdk/provider': 0.0.24 '@ai-sdk/provider-utils': 1.0.20(zod@3.23.8) @@ -15991,6 +16013,10 @@ snapshots: optionalDependencies: ajv: 8.17.1 + ajv-formats@3.0.1(ajv@8.17.1): + optionalDependencies: + ajv: 8.17.1 + ajv-keywords@3.5.2(ajv@6.12.6): dependencies: ajv: 6.12.6 @@ -16005,7 +16031,7 @@ snapshots: ajv@8.17.1: dependencies: fast-deep-equal: 3.1.3 - fast-uri: 3.0.2 + fast-uri: 3.0.3 json-schema-traverse: 1.0.0 require-from-string: 2.0.2 @@ -16054,7 +16080,7 @@ snapshots: aria-hidden@1.2.4: dependencies: - tslib: 2.7.0 + tslib: 2.8.0 aria-query@5.1.3: dependencies: @@ -16147,11 +16173,11 @@ snapshots: ast-types@0.13.4: dependencies: - tslib: 2.7.0 + tslib: 2.8.0 ast-types@0.16.1: dependencies: - tslib: 2.7.0 + tslib: 2.8.0 astring@1.9.0: {} @@ -16160,7 +16186,7 @@ snapshots: autoprefixer@10.4.20(postcss@8.4.47): dependencies: browserslist: 4.24.0 - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.0 @@ -16299,8 +16325,8 @@ snapshots: browserslist@4.24.0: dependencies: - caniuse-lite: 1.0.30001668 - electron-to-chromium: 1.5.36 + caniuse-lite: 1.0.30001669 + electron-to-chromium: 1.5.39 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.0) @@ -16328,14 +16354,14 @@ snapshots: builtin-modules@3.3.0: {} - bullmq@5.19.0: + bullmq@5.20.0: dependencies: cron-parser: 4.9.0 ioredis: 5.4.1 msgpackr: 1.11.0 node-abort-controller: 3.1.1 semver: 7.6.3 - tslib: 2.7.0 + tslib: 2.8.0 uuid: 9.0.1 transitivePeerDependencies: - supports-color @@ -16400,13 +16426,11 @@ snapshots: get-intrinsic: 1.2.4 set-function-length: 1.2.2 - call-me-maybe@1.0.2: {} - callsites@3.1.0: {} camelcase-css@2.0.1: {} - caniuse-lite@1.0.30001668: {} + caniuse-lite@1.0.30001669: {} case-anything@3.1.0: {} @@ -16488,7 +16512,7 @@ snapshots: parse5: 7.2.0 parse5-htmlparser2-tree-adapter: 7.1.0 parse5-parser-stream: 7.1.2 - undici: 6.20.0 + undici: 6.20.1 whatwg-mimetype: 4.0.0 chokidar@3.6.0: @@ -16572,7 +16596,7 @@ snapshots: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 '@types/estree': 1.0.6 - acorn: 8.12.1 + acorn: 8.13.0 estree-walker: 3.0.3 periscopic: 3.1.0 @@ -16757,6 +16781,8 @@ snapshots: damerau-levenshtein@1.0.8: {} + data-uri-to-buffer@4.0.1: {} + data-uri-to-buffer@6.0.2: {} data-urls@5.0.0: @@ -17019,7 +17045,7 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.36: {} + electron-to-chromium@1.5.39: {} emoji-regex@8.0.0: {} @@ -17224,7 +17250,7 @@ snapshots: esast-util-from-js@2.0.1: dependencies: '@types/estree-jsx': 1.0.5 - acorn: 8.12.1 + acorn: 8.13.0 esast-util-from-estree: 2.0.0 vfile-message: 4.0.2 @@ -17510,7 +17536,7 @@ snapshots: minimatch: 3.1.2 object.fromentries: 2.0.8 safe-regex-test: 1.0.3 - string.prototype.includes: 2.0.0 + string.prototype.includes: 2.0.1 eslint-plugin-only-warn@1.1.0: {} @@ -17642,8 +17668,8 @@ snapshots: espree@9.6.1: dependencies: - acorn: 8.12.1 - acorn-jsx: 5.3.2(acorn@8.12.1) + acorn: 8.13.0 + acorn-jsx: 5.3.2(acorn@8.13.0) eslint-visitor-keys: 3.4.3 esprima@4.0.1: {} @@ -17814,7 +17840,7 @@ snapshots: fast-safe-stringify@2.1.1: {} - fast-uri@3.0.2: {} + fast-uri@3.0.3: {} fast-xml-parser@4.4.1: dependencies: @@ -17850,6 +17876,11 @@ snapshots: optionalDependencies: picomatch: 4.0.2 + fetch-blob@3.2.0: + dependencies: + node-domexception: 1.0.0 + web-streams-polyfill: 3.3.3 + fflate@0.4.8: {} file-entry-cache@6.0.1: @@ -17928,6 +17959,10 @@ snapshots: format@0.2.2: {} + formdata-polyfill@4.0.10: + dependencies: + fetch-blob: 3.2.0 + formidable@3.5.1: dependencies: dezalgo: 1.0.4 @@ -18388,7 +18423,7 @@ snapshots: dependencies: react-is: 16.13.1 - hono@4.6.4: {} + hono@4.6.5: {} hosted-git-info@2.8.9: {} @@ -18508,8 +18543,8 @@ snapshots: import-in-the-middle@1.11.2: dependencies: - acorn: 8.12.1 - acorn-import-attributes: 1.9.5(acorn@8.12.1) + acorn: 8.13.0 + acorn-import-attributes: 1.9.5(acorn@8.13.0) cjs-module-lexer: 1.4.1 module-details-from-path: 1.0.3 @@ -18902,6 +18937,8 @@ snapshots: jsonparse@1.3.1: {} + jsonpointer@5.0.1: {} + jsx-ast-utils@3.3.5: dependencies: array-includes: 3.1.8 @@ -18937,6 +18974,8 @@ snapshots: leac@0.6.0: {} + leven@4.0.0: {} + levn@0.4.1: dependencies: prelude-ls: 1.2.1 @@ -19415,8 +19454,8 @@ snapshots: micromark-extension-mdxjs@1.0.1: dependencies: - acorn: 8.12.1 - acorn-jsx: 5.3.2(acorn@8.12.1) + acorn: 8.13.0 + acorn-jsx: 5.3.2(acorn@8.13.0) micromark-extension-mdx-expression: 1.0.8 micromark-extension-mdx-jsx: 1.0.5 micromark-extension-mdx-md: 1.0.1 @@ -19652,14 +19691,13 @@ snapshots: minipass: 3.3.6 yallist: 4.0.0 - mintlify@4.0.240(encoding@0.1.13)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3): + mintlify@4.0.241(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3): dependencies: - '@mintlify/cli': 4.0.240(encoding@0.1.13)(openapi-types@12.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@mintlify/cli': 4.0.241(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) transitivePeerDependencies: - bufferutil - debug - encoding - - openapi-types - react - react-dom - supports-color @@ -19672,7 +19710,7 @@ snapshots: mlly@1.7.2: dependencies: - acorn: 8.12.1 + acorn: 8.13.0 pathe: 1.1.2 pkg-types: 1.2.1 ufo: 1.5.4 @@ -19703,7 +19741,7 @@ snapshots: optionalDependencies: msgpackr-extract: 3.0.3 - msw@2.4.10(typescript@5.6.3): + msw@2.4.11(typescript@5.6.3): dependencies: '@bundled-es-modules/cookie': 2.0.0 '@bundled-es-modules/statuses': 1.0.1 @@ -19768,7 +19806,7 @@ snapshots: '@next/env': 14.2.3 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 @@ -19795,7 +19833,7 @@ snapshots: '@swc/counter': 0.1.3 '@swc/helpers': 0.5.13 busboy: 1.6.0 - caniuse-lite: 1.0.30001668 + caniuse-lite: 1.0.30001669 postcss: 8.4.31 react: 19.0.0-rc-5d19e1c8-20240923 react-dom: 19.0.0-rc-5d19e1c8-20240923(react@19.0.0-rc-5d19e1c8-20240923) @@ -19832,12 +19870,20 @@ snapshots: node-addon-api@8.2.1: {} + node-domexception@1.0.0: {} + node-fetch@2.7.0(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 optionalDependencies: encoding: 0.1.13 + node-fetch@3.3.2: + dependencies: + data-uri-to-buffer: 4.0.1 + fetch-blob: 3.2.0 + formdata-polyfill: 4.0.10 + node-gyp-build-optional-packages@5.2.2: dependencies: detect-libc: 2.0.3 @@ -20443,7 +20489,7 @@ snapshots: postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.3)): dependencies: lilconfig: 3.1.2 - yaml: 2.5.1 + yaml: 2.6.0 optionalDependencies: postcss: 8.4.47 ts-node: 10.9.2(@types/node@20.16.11)(typescript@5.6.3) @@ -20451,19 +20497,19 @@ snapshots: postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)): dependencies: lilconfig: 3.1.2 - yaml: 2.5.1 + yaml: 2.6.0 optionalDependencies: postcss: 8.4.47 ts-node: 10.9.2(@types/node@22.7.5)(typescript@5.6.3) - postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.5.1): + postcss-load-config@6.0.1(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.6.0): dependencies: lilconfig: 3.1.2 optionalDependencies: jiti: 1.21.6 postcss: 8.4.47 tsx: 4.19.1 - yaml: 2.5.1 + yaml: 2.6.0 postcss-nested@6.2.0(postcss@8.4.47): dependencies: @@ -20511,20 +20557,20 @@ snapshots: postgres-range@1.1.4: {} - posthog-js@1.167.0: + posthog-js@1.169.0: dependencies: fflate: 0.4.8 - preact: 10.24.2 + preact: 10.24.3 web-vitals: 4.2.3 - posthog-node@4.2.0: + posthog-node@4.2.1: dependencies: axios: 1.7.7 rusha: 0.8.14 transitivePeerDependencies: - debug - preact@10.24.2: {} + preact@10.24.3: {} prelude-ls@1.2.1: {} @@ -20769,7 +20815,7 @@ snapshots: dependencies: react: 18.3.0 react-style-singleton: 2.2.1(@types/react@18.3.0)(react@18.3.0) - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 @@ -20777,7 +20823,7 @@ snapshots: dependencies: react: 18.3.1 react-style-singleton: 2.2.1(@types/react@18.3.0)(react@18.3.1) - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 @@ -20786,7 +20832,7 @@ snapshots: react: 18.3.0 react-remove-scroll-bar: 2.3.6(@types/react@18.3.0)(react@18.3.0) react-style-singleton: 2.2.1(@types/react@18.3.0)(react@18.3.0) - tslib: 2.7.0 + tslib: 2.8.0 use-callback-ref: 1.3.2(@types/react@18.3.0)(react@18.3.0) use-sidecar: 1.1.2(@types/react@18.3.0)(react@18.3.0) optionalDependencies: @@ -20797,7 +20843,7 @@ snapshots: react: 18.3.1 react-remove-scroll-bar: 2.3.6(@types/react@18.3.0)(react@18.3.1) react-style-singleton: 2.2.1(@types/react@18.3.0)(react@18.3.1) - tslib: 2.7.0 + tslib: 2.8.0 use-callback-ref: 1.3.2(@types/react@18.3.0)(react@18.3.1) use-sidecar: 1.1.2(@types/react@18.3.0)(react@18.3.1) optionalDependencies: @@ -20840,7 +20886,7 @@ snapshots: get-nonce: 1.0.1 invariant: 2.2.4 react: 18.3.0 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 @@ -20849,7 +20895,7 @@ snapshots: get-nonce: 1.0.1 invariant: 2.2.4 react: 18.3.1 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 @@ -20948,7 +20994,7 @@ snapshots: esprima: 4.0.1 source-map: 0.6.1 tiny-invariant: 1.3.3 - tslib: 2.7.0 + tslib: 2.8.0 recharts-scale@0.4.5: dependencies: @@ -21605,8 +21651,9 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 - string.prototype.includes@2.0.0: + string.prototype.includes@2.0.1: dependencies: + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.23.3 @@ -21753,7 +21800,7 @@ snapshots: '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 '@types/estree': 1.0.6 - acorn: 8.12.1 + acorn: 8.13.0 aria-query: 5.3.2 axobject-query: 4.1.0 code-red: 1.0.4 @@ -21787,15 +21834,15 @@ snapshots: synckit@0.9.2: dependencies: '@pkgr/core': 0.1.1 - tslib: 2.7.0 + tslib: 2.8.0 - tailwind-merge@2.5.3: {} + tailwind-merge@2.5.4: {} - tailwindcss-animate@1.0.7(tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3))): dependencies: - tailwindcss: 3.4.13(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)) + tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)) - tailwindcss@3.4.13(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.3)): + tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.16.11)(typescript@5.6.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -21822,7 +21869,7 @@ snapshots: transitivePeerDependencies: - ts-node - tailwindcss@3.4.13(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)): + tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.5)(typescript@5.6.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -21874,21 +21921,19 @@ snapshots: mkdirp: 1.0.4 yallist: 4.0.0 - terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.95.0(esbuild@0.19.12)): + terser-webpack-plugin@5.3.10(webpack@5.95.0): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.34.1 - webpack: 5.95.0(esbuild@0.19.12) - optionalDependencies: - esbuild: 0.19.12 + webpack: 5.95.0 terser@5.34.1: dependencies: '@jridgewell/source-map': 0.3.6 - acorn: 8.12.1 + acorn: 8.13.0 commander: 2.20.3 source-map-support: 0.5.21 @@ -21912,7 +21957,7 @@ snapshots: tinybench@2.9.0: {} - tinyexec@0.3.0: {} + tinyexec@0.3.1: {} tinyglobby@0.2.9: dependencies: @@ -21980,7 +22025,7 @@ snapshots: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 18.19.55 - acorn: 8.12.1 + acorn: 8.13.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 @@ -21998,7 +22043,7 @@ snapshots: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 20.16.11 - acorn: 8.12.1 + acorn: 8.13.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 @@ -22017,7 +22062,7 @@ snapshots: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 22.7.5 - acorn: 8.12.1 + acorn: 8.13.0 acorn-walk: 8.3.4 arg: 4.1.3 create-require: 1.1.1 @@ -22043,9 +22088,9 @@ snapshots: tslib@1.14.1: {} - tslib@2.7.0: {} + tslib@2.8.0: {} - tsup@8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.5.1): + tsup@8.3.0(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(typescript@5.6.3)(yaml@2.6.0): dependencies: bundle-require: 5.0.0(esbuild@0.23.1) cac: 6.7.14 @@ -22056,7 +22101,7 @@ snapshots: execa: 5.1.1 joycon: 3.1.1 picocolors: 1.1.0 - postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.5.1) + postcss-load-config: 6.0.1(jiti@1.21.6)(postcss@8.4.47)(tsx@4.19.1)(yaml@2.6.0) resolve-from: 5.0.0 rollup: 4.24.0 source-map: 0.8.0-beta.0 @@ -22194,7 +22239,7 @@ snapshots: undici-types@6.19.8: {} - undici@6.20.0: {} + undici@6.20.1: {} unherit@3.0.1: {} @@ -22321,7 +22366,7 @@ snapshots: unplugin@1.0.1: dependencies: - acorn: 8.12.1 + acorn: 8.13.0 chokidar: 3.6.0 webpack-sources: 3.2.3 webpack-virtual-modules: 0.5.0 @@ -22355,14 +22400,14 @@ snapshots: use-callback-ref@1.3.2(@types/react@18.3.0)(react@18.3.0): dependencies: react: 18.3.0 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 use-callback-ref@1.3.2(@types/react@18.3.0)(react@18.3.1): dependencies: react: 18.3.1 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 @@ -22374,15 +22419,15 @@ snapshots: dependencies: react: 18.3.1 - use-debounce@10.0.3(react@18.3.0): + use-debounce@10.0.4(react@18.3.0): dependencies: react: 18.3.0 - use-debounce@10.0.3(react@18.3.1): + use-debounce@10.0.4(react@18.3.1): dependencies: react: 18.3.1 - use-debounce@10.0.3(react@19.0.0-rc-5d19e1c8-20240923): + use-debounce@10.0.4(react@19.0.0-rc-5d19e1c8-20240923): dependencies: react: 19.0.0-rc-5d19e1c8-20240923 @@ -22416,7 +22461,7 @@ snapshots: dependencies: detect-node-es: 1.1.0 react: 18.3.0 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 @@ -22424,7 +22469,7 @@ snapshots: dependencies: detect-node-es: 1.1.0 react: 18.3.1 - tslib: 2.7.0 + tslib: 2.8.0 optionalDependencies: '@types/react': 18.3.0 @@ -22537,7 +22582,7 @@ snapshots: debug: 4.3.7 pathe: 1.1.2 picocolors: 1.1.0 - vite: 5.4.8(@types/node@20.16.11)(terser@5.34.1) + vite: 5.4.9(@types/node@20.16.11)(terser@5.34.1) transitivePeerDependencies: - '@types/node' - less @@ -22549,12 +22594,12 @@ snapshots: - supports-color - terser - vite-node@2.1.2(@types/node@20.16.11)(terser@5.34.1): + vite-node@2.1.3(@types/node@20.16.11)(terser@5.34.1): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.4.8(@types/node@20.16.11)(terser@5.34.1) + vite: 5.4.9(@types/node@20.16.11)(terser@5.34.1) transitivePeerDependencies: - '@types/node' - less @@ -22566,12 +22611,12 @@ snapshots: - supports-color - terser - vite-node@2.1.2(@types/node@22.7.5)(terser@5.34.1): + vite-node@2.1.3(@types/node@22.7.5)(terser@5.34.1): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.4.8(@types/node@22.7.5)(terser@5.34.1) + vite: 5.4.9(@types/node@22.7.5)(terser@5.34.1) transitivePeerDependencies: - '@types/node' - less @@ -22583,7 +22628,7 @@ snapshots: - supports-color - terser - vite@5.4.8(@types/node@20.16.11)(terser@5.34.1): + vite@5.4.9(@types/node@20.16.11)(terser@5.34.1): dependencies: esbuild: 0.21.5 postcss: 8.4.47 @@ -22593,7 +22638,7 @@ snapshots: fsevents: 2.3.3 terser: 5.34.1 - vite@5.4.8(@types/node@22.7.5)(terser@5.34.1): + vite@5.4.9(@types/node@22.7.5)(terser@5.34.1): dependencies: esbuild: 0.21.5 postcss: 8.4.47 @@ -22622,7 +22667,7 @@ snapshots: strip-literal: 2.1.0 tinybench: 2.9.0 tinypool: 0.8.4 - vite: 5.4.8(@types/node@20.16.11)(terser@5.34.1) + vite: 5.4.9(@types/node@20.16.11)(terser@5.34.1) vite-node: 1.6.0(@types/node@20.16.11)(terser@5.34.1) why-is-node-running: 2.3.0 optionalDependencies: @@ -22638,26 +22683,26 @@ snapshots: - supports-color - terser - vitest@2.1.2(@types/node@20.16.11)(jsdom@24.1.3)(msw@2.4.10(typescript@5.6.3))(terser@5.34.1): + vitest@2.1.3(@types/node@20.16.11)(jsdom@24.1.3)(msw@2.4.11(typescript@5.6.3))(terser@5.34.1): dependencies: - '@vitest/expect': 2.1.2 - '@vitest/mocker': 2.1.2(@vitest/spy@2.1.2)(msw@2.4.10(typescript@5.6.3))(vite@5.4.8(@types/node@20.16.11)(terser@5.34.1)) - '@vitest/pretty-format': 2.1.2 - '@vitest/runner': 2.1.2 - '@vitest/snapshot': 2.1.2 - '@vitest/spy': 2.1.2 - '@vitest/utils': 2.1.2 + '@vitest/expect': 2.1.3 + '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(msw@2.4.11(typescript@5.6.3))(vite@5.4.9(@types/node@20.16.11)(terser@5.34.1)) + '@vitest/pretty-format': 2.1.3 + '@vitest/runner': 2.1.3 + '@vitest/snapshot': 2.1.3 + '@vitest/spy': 2.1.3 + '@vitest/utils': 2.1.3 chai: 5.1.1 debug: 4.3.7 magic-string: 0.30.12 pathe: 1.1.2 std-env: 3.7.0 tinybench: 2.9.0 - tinyexec: 0.3.0 + tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.8(@types/node@20.16.11)(terser@5.34.1) - vite-node: 2.1.2(@types/node@20.16.11)(terser@5.34.1) + vite: 5.4.9(@types/node@20.16.11)(terser@5.34.1) + vite-node: 2.1.3(@types/node@20.16.11)(terser@5.34.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 20.16.11 @@ -22673,26 +22718,26 @@ snapshots: - supports-color - terser - vitest@2.1.2(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.10(typescript@5.6.3))(terser@5.34.1): + vitest@2.1.3(@types/node@22.7.5)(jsdom@24.1.3)(msw@2.4.11(typescript@5.6.3))(terser@5.34.1): dependencies: - '@vitest/expect': 2.1.2 - '@vitest/mocker': 2.1.2(@vitest/spy@2.1.2)(msw@2.4.10(typescript@5.6.3))(vite@5.4.8(@types/node@22.7.5)(terser@5.34.1)) - '@vitest/pretty-format': 2.1.2 - '@vitest/runner': 2.1.2 - '@vitest/snapshot': 2.1.2 - '@vitest/spy': 2.1.2 - '@vitest/utils': 2.1.2 + '@vitest/expect': 2.1.3 + '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(msw@2.4.11(typescript@5.6.3))(vite@5.4.9(@types/node@22.7.5)(terser@5.34.1)) + '@vitest/pretty-format': 2.1.3 + '@vitest/runner': 2.1.3 + '@vitest/snapshot': 2.1.3 + '@vitest/spy': 2.1.3 + '@vitest/utils': 2.1.3 chai: 5.1.1 debug: 4.3.7 magic-string: 0.30.12 pathe: 1.1.2 std-env: 3.7.0 tinybench: 2.9.0 - tinyexec: 0.3.0 + tinyexec: 0.3.1 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.8(@types/node@22.7.5)(terser@5.34.1) - vite-node: 2.1.2(@types/node@22.7.5)(terser@5.34.1) + vite: 5.4.9(@types/node@22.7.5)(terser@5.34.1) + vite-node: 2.1.3(@types/node@22.7.5)(terser@5.34.1) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 22.7.5 @@ -22735,6 +22780,8 @@ snapshots: web-namespaces@2.0.1: {} + web-streams-polyfill@3.3.3: {} + web-vitals@4.2.3: {} webidl-conversions@3.0.1: {} @@ -22747,14 +22794,14 @@ snapshots: webpack-virtual-modules@0.5.0: {} - webpack@5.95.0(esbuild@0.19.12): + webpack@5.95.0: dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/wasm-edit': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 - acorn: 8.12.1 - acorn-import-attributes: 1.9.5(acorn@8.12.1) + acorn: 8.13.0 + acorn-import-attributes: 1.9.5(acorn@8.13.0) browserslist: 4.24.0 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.1 @@ -22769,7 +22816,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(esbuild@0.19.12)(webpack@5.95.0(esbuild@0.19.12)) + terser-webpack-plugin: 5.3.10(webpack@5.95.0) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -22902,7 +22949,7 @@ snapshots: yallist@4.0.0: {} - yaml@2.5.1: {} + yaml@2.6.0: {} yargs-parser@21.1.1: {}