From 620c63cd19cdb9208c3fc13810ef1e73eaf85eb1 Mon Sep 17 00:00:00 2001 From: Alex Yang <himself65@outlook.com> Date: Sun, 27 Oct 2024 20:28:55 -0500 Subject: [PATCH] feat: add `@llamaindex/readers` package (#1404) --- .changeset/witty-suns-complain.md | 9 + apps/next/package.json | 2 + .../src/content/docs/llamaindex/index.mdx | 2 +- .../src/content/docs/llamaindex/meta.json | 9 +- .../content/docs/llamaindex/readers/index.mdx | 105 + .../content/docs/llamaindex/readers/meta.json | 5 + examples/astradb/load.ts | 4 +- examples/chromadb/test.ts | 6 +- examples/milvus/load.ts | 4 +- examples/mongodb/2_load_and_index.ts | 2 +- examples/package.json | 1 + examples/readers/package.json | 1 + examples/readers/src/assemblyai.ts | 2 +- examples/readers/src/csv.ts | 4 +- .../src/custom-simple-directory-reader.ts | 6 +- examples/readers/src/discord.ts | 2 +- examples/readers/src/docx.ts | 2 +- examples/readers/src/html.ts | 2 +- examples/readers/src/json.ts | 2 +- examples/readers/src/markdown.ts | 2 +- examples/readers/src/notion.ts | 2 +- examples/readers/src/pdf.ts | 2 +- examples/readers/src/pdf_fw.ts | 2 +- examples/readers/src/pdf_fw_openai.ts | 2 +- ...simple-directory-reader-with-llamaparse.ts | 7 +- .../readers/src/simple-directory-reader.ts | 2 +- examples/weaviate/load.ts | 4 +- packages/core/src/schema/type.ts | 14 +- packages/env/src/node-polyfill.ts | 7 +- .../nextjs-edge-runtime/src/utils/llm.ts | 1 - .../nextjs-node-runtime/src/actions/openai.ts | 2 +- packages/llamaindex/package.json | 20 +- packages/llamaindex/register.js | 6 + packages/llamaindex/src/readers/index.ts | 27 +- packages/llamaindex/src/readers/type.ts | 0 packages/llamaindex/src/readers/utils.ts | 106 - packages/readers/README.md | 20 + packages/readers/assembly-ai/package.json | 14 + packages/readers/csv/package.json | 14 + packages/readers/directory/package.json | 14 + packages/readers/discord/package.json | 14 + packages/readers/docx/package.json | 14 + packages/readers/html/package.json | 14 + packages/readers/image/package.json | 14 + packages/readers/json/package.json | 14 + packages/readers/markdown/package.json | 14 + packages/readers/mongo/package.json | 14 + packages/readers/notion/package.json | 14 + packages/readers/package.json | 293 ++ packages/readers/pdf/package.json | 14 + .../src/assembly-ai.ts} | 37 +- .../CSVReader.ts => readers/src/csv/base.ts} | 30 +- packages/readers/src/csv/index.edge-light.ts | 1 + packages/readers/src/csv/index.non-node.ts | 6 + packages/readers/src/csv/index.ts | 6 + packages/readers/src/csv/index.workerd.ts | 1 + .../src/directory/base.ts} | 14 +- .../readers/src/directory/index.edge-light.ts | 1 + .../readers/src/directory/index.non-node.ts | 3 + .../src/directory/index.ts} | 22 +- .../readers/src/directory/index.workerd.ts | 1 + packages/readers/src/directory/utils.ts | 18 + .../src/discord.ts} | 1 + .../DocxReader.ts => readers/src/docx.ts} | 2 +- .../HTMLReader.ts => readers/src/html.ts} | 13 +- .../ImageReader.ts => readers/src/image.ts} | 5 +- .../JSONReader.ts => readers/src/json.ts} | 2 +- .../src/markdown.ts} | 2 +- .../src/mongo.ts} | 3 +- packages/readers/src/node/hook.ts | 25 + packages/readers/src/node/index.ts | 9 + .../NotionReader.ts => readers/src/notion.ts} | 2 +- .../PDFReader.ts => readers/src/pdf.ts} | 2 +- .../TextFileReader.ts => readers/src/text.ts} | 2 +- packages/readers/text/package.json | 14 + packages/readers/tsconfig.json | 16 + packages/readers/turbo.json | 8 + pnpm-lock.yaml | 4629 ++++------------- pnpm-workspace.yaml | 1 + .../tests/readers => unit}/fixtures/test.xlsx | Bin unit/package.json | 19 + .../readers/.snap/basic.pdf.snap | 0 .../readers/docx.test.ts | 4 +- .../readers/json.test.ts | 6 +- .../readers/llama-parse.test.ts | 2 +- .../readers/markdown.test.ts | 4 +- .../tests => unit}/readers/pdf-reader.test.ts | 10 +- unit/readers/register.test.ts | 118 + unit/tsconfig.json | 21 + 89 files changed, 2153 insertions(+), 3764 deletions(-) create mode 100644 .changeset/witty-suns-complain.md create mode 100644 apps/next/src/content/docs/llamaindex/readers/index.mdx create mode 100644 apps/next/src/content/docs/llamaindex/readers/meta.json create mode 100644 packages/llamaindex/register.js delete mode 100644 packages/llamaindex/src/readers/type.ts delete mode 100644 packages/llamaindex/src/readers/utils.ts create mode 100644 packages/readers/README.md create mode 100644 packages/readers/assembly-ai/package.json create mode 100644 packages/readers/csv/package.json create mode 100644 packages/readers/directory/package.json create mode 100644 packages/readers/discord/package.json create mode 100644 packages/readers/docx/package.json create mode 100644 packages/readers/html/package.json create mode 100644 packages/readers/image/package.json create mode 100644 packages/readers/json/package.json create mode 100644 packages/readers/markdown/package.json create mode 100644 packages/readers/mongo/package.json create mode 100644 packages/readers/notion/package.json create mode 100644 packages/readers/package.json create mode 100644 packages/readers/pdf/package.json rename packages/{llamaindex/src/readers/AssemblyAIReader.ts => readers/src/assembly-ai.ts} (82%) rename packages/{llamaindex/src/readers/CSVReader.ts => readers/src/csv/base.ts} (64%) create mode 100644 packages/readers/src/csv/index.edge-light.ts create mode 100644 packages/readers/src/csv/index.non-node.ts create mode 100644 packages/readers/src/csv/index.ts create mode 100644 packages/readers/src/csv/index.workerd.ts rename packages/{llamaindex/src/readers/SimpleDirectoryReader.edge.ts => readers/src/directory/base.ts} (93%) create mode 100644 packages/readers/src/directory/index.edge-light.ts create mode 100644 packages/readers/src/directory/index.non-node.ts rename packages/{llamaindex/src/readers/SimpleDirectoryReader.ts => readers/src/directory/index.ts} (67%) create mode 100644 packages/readers/src/directory/index.workerd.ts create mode 100644 packages/readers/src/directory/utils.ts rename packages/{llamaindex/src/readers/DiscordReader.ts => readers/src/discord.ts} (99%) rename packages/{llamaindex/src/readers/DocxReader.ts => readers/src/docx.ts} (89%) rename packages/{llamaindex/src/readers/HTMLReader.ts => readers/src/html.ts} (89%) rename packages/{llamaindex/src/readers/ImageReader.ts => readers/src/image.ts} (75%) rename packages/{llamaindex/src/readers/JSONReader.ts => readers/src/json.ts} (99%) rename packages/{llamaindex/src/readers/MarkdownReader.ts => readers/src/markdown.ts} (98%) rename packages/{llamaindex/src/readers/SimpleMongoReader.ts => readers/src/mongo.ts} (96%) create mode 100644 packages/readers/src/node/hook.ts create mode 100644 packages/readers/src/node/index.ts rename packages/{llamaindex/src/readers/NotionReader.ts => readers/src/notion.ts} (97%) rename packages/{llamaindex/src/readers/PDFReader.ts => readers/src/pdf.ts} (94%) rename packages/{llamaindex/src/readers/TextFileReader.ts => readers/src/text.ts} (100%) create mode 100644 packages/readers/text/package.json create mode 100644 packages/readers/tsconfig.json create mode 100644 packages/readers/turbo.json rename {packages/llamaindex/tests/readers => unit}/fixtures/test.xlsx (100%) create mode 100644 unit/package.json rename {packages/llamaindex/tests => unit}/readers/.snap/basic.pdf.snap (100%) rename packages/llamaindex/tests/readers/DocxReader.test.ts => unit/readers/docx.test.ts (82%) rename packages/llamaindex/tests/readers/JSONReader.test.ts => unit/readers/json.test.ts (98%) rename {packages/llamaindex/tests => unit}/readers/llama-parse.test.ts (98%) rename packages/llamaindex/tests/readers/MarkdownReader.test.ts => unit/readers/markdown.test.ts (81%) rename {packages/llamaindex/tests => unit}/readers/pdf-reader.test.ts (67%) create mode 100644 unit/readers/register.test.ts create mode 100644 unit/tsconfig.json diff --git a/.changeset/witty-suns-complain.md b/.changeset/witty-suns-complain.md new file mode 100644 index 000000000..1132f7a8b --- /dev/null +++ b/.changeset/witty-suns-complain.md @@ -0,0 +1,9 @@ +--- +"@llamaindex/core": patch +"llamaindex": patch +--- + +feat: add `@llamaindex/readers` package + +If you are using import `llamaindex/readers/...`, +you will need to install `@llamaindex/core` and change import path to `@llamaindex/readers/...`. diff --git a/apps/next/package.json b/apps/next/package.json index 51118f1db..99bfb6bd1 100644 --- a/apps/next/package.json +++ b/apps/next/package.json @@ -15,6 +15,7 @@ "@llamaindex/cloud": "workspace:*", "@llamaindex/core": "workspace:*", "@llamaindex/openai": "workspace:*", + "@llamaindex/readers": "workspace:*", "@mdx-js/mdx": "^3.1.0", "@radix-ui/react-dialog": "^1.1.2", "@radix-ui/react-icons": "^1.3.0", @@ -32,6 +33,7 @@ "fumadocs-twoslash": "^2.0.0", "fumadocs-ui": "14.0.2", "hast-util-to-jsx-runtime": "^2.3.2", + "llamaindex": "workspace:*", "lucide-react": "^0.436.0", "next": "15.0.1", "next-themes": "^0.3.0", diff --git a/apps/next/src/content/docs/llamaindex/index.mdx b/apps/next/src/content/docs/llamaindex/index.mdx index 8ff94eb80..52c0bfdbc 100644 --- a/apps/next/src/content/docs/llamaindex/index.mdx +++ b/apps/next/src/content/docs/llamaindex/index.mdx @@ -5,7 +5,7 @@ description: Install llamaindex by running a single command. import { Tab, Tabs } from "fumadocs-ui/components/tabs"; -<Tabs items={["npm", "yarn", "pnpm"]}> +<Tabs groupId="install-llamaindex" items={["npm", "yarn", "pnpm"]} persist> ```shell tab="npm" npm install llamaindex ``` diff --git a/apps/next/src/content/docs/llamaindex/meta.json b/apps/next/src/content/docs/llamaindex/meta.json index d6eb3a201..967d9b076 100644 --- a/apps/next/src/content/docs/llamaindex/meta.json +++ b/apps/next/src/content/docs/llamaindex/meta.json @@ -2,5 +2,12 @@ "title": "LlamaIndex", "description": "The Data framework for LLM", "root": true, - "pages": ["---Guide---", "what-is-llamaindex", "index", "setup", "starter"] + "pages": [ + "---Guide---", + "what-is-llamaindex", + "index", + "setup", + "starter", + "readers" + ] } diff --git a/apps/next/src/content/docs/llamaindex/readers/index.mdx b/apps/next/src/content/docs/llamaindex/readers/index.mdx new file mode 100644 index 000000000..874788ffe --- /dev/null +++ b/apps/next/src/content/docs/llamaindex/readers/index.mdx @@ -0,0 +1,105 @@ +--- +title: Document and Nodes +description: llamaindex readers is a collection of readers for different file formats. +--- + +import { Tab, Tabs } from "fumadocs-ui/components/tabs"; + +import { Accordion, Accordions } from 'fumadocs-ui/components/accordion'; + +<Accordions> + <Accordion title="Install @llamaindex/readers"> + + If you want to only use reader modules, you can install `@llamaindex/readers` + + <Tabs groupId="install-llamaindex" items={["npm", "yarn", "pnpm"]} persist> + ```shell tab="npm" + npm install @llamaindex/readers + ``` + + ```shell tab="yarn" + yarn add @llamaindex/readers + ``` + + ```shell tab="pnpm" + pnpm add @llamaindex/readers + ``` + + </Tabs> + </Accordion> +</Accordions> + +We offer readers for different file formats. + +<Tabs groupId="llamaindex-or-readers" items={["llamaindex", "@llamaindex/readers"]} persist> + ```ts twoslash tab="llamaindex" + import { CSVReader } from 'llamaindex' + import { PDFReader } from 'llamaindex' + import { JSONReader } from 'llamaindex' + import { MarkdownReader } from 'llamaindex' + import { HTMLReader } from 'llamaindex' + // you can find more readers in the documentation + ``` + + ```ts twoslash tab="@llamaindex/readers" + import { CSVReader } from '@llamaindex/readers/csv' + import { PDFReader } from '@llamaindex/readers/pdf' + import { JSONReader } from '@llamaindex/readers/json' + import { MarkdownReader } from '@llamaindex/readers/markdown' + import { HTMLReader } from '@llamaindex/readers/html' + // you can find more readers in the documentation + ``` + +</Tabs> + +## SimpleDirectoryReader + +`SimpleDirectoryReader` is the simplest way to load data from local files into LlamaIndex. + +<Tabs groupId="llamaindex-or-readers" items={["llamaindex", "@llamaindex/readers"]} persist> + + ```ts twoslash tab="llamaindex" + import { SimpleDirectoryReader } from "llamaindex"; + + const reader = new SimpleDirectoryReader() + const documents = await reader.loadData("./data") + // ^? + + + const texts = documents.map(doc => doc.getText()) + // ^? + ``` + + ```ts twoslash tab="@llamaindex/readers" + import { SimpleDirectoryReader } from "@llamaindex/readers/directory"; + + const reader = new SimpleDirectoryReader() + const documents = await reader.loadData("./data") + // ^? + + + const texts = documents.map(doc => doc.getText()) + // ^? + ``` + +</Tabs> + +## Load file natively using Node.js Customization Hooks + +We have a helper utility to allow you to import a file in Node.js script. + +<Tabs groupId="llamaindex-or-readers" items={["llamaindex", "@llamaindex/readers"]} persist> + ```shell tab="llamaindex" + node --import llamaindex/register ./script.js + ``` + + ```shell tab="@llamaindex/readers" + node --import @llamaindex/readers/node ./script.js + ``` +</Tabs> + +```ts +import csv from './path/to/data.csv'; + +const text = csv.getText() +``` \ No newline at end of file diff --git a/apps/next/src/content/docs/llamaindex/readers/meta.json b/apps/next/src/content/docs/llamaindex/readers/meta.json new file mode 100644 index 000000000..fb42b41ce --- /dev/null +++ b/apps/next/src/content/docs/llamaindex/readers/meta.json @@ -0,0 +1,5 @@ +{ + "title": "Loading", + "description": "File Readers Collection", + "pages": ["index"] +} diff --git a/examples/astradb/load.ts b/examples/astradb/load.ts index 728373fe7..12f544754 100644 --- a/examples/astradb/load.ts +++ b/examples/astradb/load.ts @@ -1,6 +1,6 @@ import { AstraDBVectorStore, - PapaCSVReader, + CSVReader, storageContextFromDefaults, VectorStoreIndex, } from "llamaindex"; @@ -9,7 +9,7 @@ const collectionName = "movie_reviews"; async function main() { try { - const reader = new PapaCSVReader(false); + const reader = new CSVReader(false); const docs = await reader.loadData("./data/movie_reviews.csv"); const astraVS = new AstraDBVectorStore({ contentKey: "reviewtext" }); diff --git a/examples/chromadb/test.ts b/examples/chromadb/test.ts index f1084566e..942e8eba1 100644 --- a/examples/chromadb/test.ts +++ b/examples/chromadb/test.ts @@ -1,6 +1,6 @@ import { ChromaVectorStore, - PapaCSVReader, + CSVReader, storageContextFromDefaults, VectorStoreIndex, } from "llamaindex"; @@ -12,9 +12,7 @@ async function main() { try { console.log(`Loading data from ${sourceFile}`); - const reader = new PapaCSVReader(false, ", ", "\n", { - header: true, - }); + const reader = new CSVReader(false, ", ", "\n"); const docs = await reader.loadData(sourceFile); console.log("Creating ChromaDB vector store"); diff --git a/examples/milvus/load.ts b/examples/milvus/load.ts index 38a62080e..25a5c3e64 100644 --- a/examples/milvus/load.ts +++ b/examples/milvus/load.ts @@ -1,6 +1,6 @@ import { + CSVReader, MilvusVectorStore, - PapaCSVReader, storageContextFromDefaults, VectorStoreIndex, } from "llamaindex"; @@ -9,7 +9,7 @@ const collectionName = "movie_reviews"; async function main() { try { - const reader = new PapaCSVReader(false); + const reader = new CSVReader(false); const docs = await reader.loadData("./data/movie_reviews.csv"); const vectorStore = new MilvusVectorStore({ collection: collectionName }); diff --git a/examples/mongodb/2_load_and_index.ts b/examples/mongodb/2_load_and_index.ts index 340013254..25042772b 100644 --- a/examples/mongodb/2_load_and_index.ts +++ b/examples/mongodb/2_load_and_index.ts @@ -1,8 +1,8 @@ /* eslint-disable turbo/no-undeclared-env-vars */ +import { SimpleMongoReader } from "@llamaindex/readers/mongo"; import * as dotenv from "dotenv"; import { MongoDBAtlasVectorSearch, - SimpleMongoReader, storageContextFromDefaults, VectorStoreIndex, } from "llamaindex"; diff --git a/examples/package.json b/examples/package.json index 79dc5c970..e51decf7f 100644 --- a/examples/package.json +++ b/examples/package.json @@ -7,6 +7,7 @@ "@azure/identity": "^4.4.1", "@datastax/astra-db-ts": "^1.4.1", "@llamaindex/core": "^0.3.4", + "@llamaindex/readers": "^0.0.1", "@notionhq/client": "^2.2.15", "@pinecone-database/pinecone": "^3.0.2", "@vercel/postgres": "^0.10.0", diff --git a/examples/readers/package.json b/examples/readers/package.json index 2189710f3..04e48a301 100644 --- a/examples/readers/package.json +++ b/examples/readers/package.json @@ -18,6 +18,7 @@ "start:json": "node --import tsx ./src/json.ts" }, "dependencies": { + "@llamaindex/readers": "*", "llamaindex": "*" }, "devDependencies": { diff --git a/examples/readers/src/assemblyai.ts b/examples/readers/src/assemblyai.ts index 11ae87405..a15939142 100644 --- a/examples/readers/src/assemblyai.ts +++ b/examples/readers/src/assemblyai.ts @@ -1,6 +1,6 @@ +import { AudioTranscriptReader } from "@llamaindex/readers/assembly-ai"; import { program } from "commander"; import { TranscribeParams, VectorStoreIndex } from "llamaindex"; -import { AudioTranscriptReader } from "llamaindex/readers/AssemblyAIReader"; import { stdin as input, stdout as output } from "node:process"; import { createInterface } from "node:readline/promises"; diff --git a/examples/readers/src/csv.ts b/examples/readers/src/csv.ts index 8764829ad..ac69468e3 100644 --- a/examples/readers/src/csv.ts +++ b/examples/readers/src/csv.ts @@ -1,3 +1,4 @@ +import { CSVReader } from "@llamaindex/readers/csv"; import { getResponseSynthesizer, OpenAI, @@ -5,13 +6,12 @@ import { Settings, VectorStoreIndex, } from "llamaindex"; -import { PapaCSVReader } from "llamaindex/readers/CSVReader"; Settings.llm = new OpenAI({ model: "gpt-4" }); async function main() { // Load CSV - const reader = new PapaCSVReader(); + const reader = new CSVReader(); const path = "../data/titanic_train.csv"; const documents = await reader.loadData(path); diff --git a/examples/readers/src/custom-simple-directory-reader.ts b/examples/readers/src/custom-simple-directory-reader.ts index 19549a4d5..32fedd137 100644 --- a/examples/readers/src/custom-simple-directory-reader.ts +++ b/examples/readers/src/custom-simple-directory-reader.ts @@ -1,10 +1,10 @@ +import { TextFileReader } from "@llamaindex/readers/text"; import type { Document, Metadata } from "llamaindex"; -import { FileReader } from "llamaindex"; import { FILE_EXT_TO_READER, + FileReader, SimpleDirectoryReader, -} from "llamaindex/readers/SimpleDirectoryReader"; -import { TextFileReader } from "llamaindex/readers/TextFileReader"; +} from "llamaindex"; class ZipReader extends FileReader { loadDataAsContent(fileContent: Uint8Array): Promise<Document<Metadata>[]> { diff --git a/examples/readers/src/discord.ts b/examples/readers/src/discord.ts index 098890d85..b403fd882 100644 --- a/examples/readers/src/discord.ts +++ b/examples/readers/src/discord.ts @@ -1,4 +1,4 @@ -import { DiscordReader } from "llamaindex"; +import { DiscordReader } from "@llamaindex/readers/discord"; async function main() { // Create an instance of the DiscordReader. Set token here or DISCORD_TOKEN environment variable diff --git a/examples/readers/src/docx.ts b/examples/readers/src/docx.ts index 2e1a1a16c..2e3f82ee3 100644 --- a/examples/readers/src/docx.ts +++ b/examples/readers/src/docx.ts @@ -1,5 +1,5 @@ +import { DocxReader } from "@llamaindex/readers/docx"; import { VectorStoreIndex } from "llamaindex"; -import { DocxReader } from "llamaindex/readers/DocxReader"; const FILE_PATH = "../data/stars.docx"; const SAMPLE_QUERY = "Information about Zodiac"; diff --git a/examples/readers/src/html.ts b/examples/readers/src/html.ts index 5bb555453..acce24a43 100644 --- a/examples/readers/src/html.ts +++ b/examples/readers/src/html.ts @@ -1,5 +1,5 @@ +import { HTMLReader } from "@llamaindex/readers/html"; import { VectorStoreIndex } from "llamaindex"; -import { HTMLReader } from "llamaindex/readers/HTMLReader"; async function main() { // Load page diff --git a/examples/readers/src/json.ts b/examples/readers/src/json.ts index 02ef507db..5a2b2ea38 100644 --- a/examples/readers/src/json.ts +++ b/examples/readers/src/json.ts @@ -1,4 +1,4 @@ -import { JSONReader } from "llamaindex"; +import { JSONReader } from "@llamaindex/readers/json"; async function main() { // Data diff --git a/examples/readers/src/markdown.ts b/examples/readers/src/markdown.ts index 4037f745e..9b12194d7 100644 --- a/examples/readers/src/markdown.ts +++ b/examples/readers/src/markdown.ts @@ -1,5 +1,5 @@ +import { MarkdownReader } from "@llamaindex/readers/markdown"; import { VectorStoreIndex } from "llamaindex"; -import { MarkdownReader } from "llamaindex/readers/MarkdownReader"; const FILE_PATH = "../data/planets.md"; const SAMPLE_QUERY = "List all planets"; diff --git a/examples/readers/src/notion.ts b/examples/readers/src/notion.ts index 439e92700..92ca5c8ed 100644 --- a/examples/readers/src/notion.ts +++ b/examples/readers/src/notion.ts @@ -1,7 +1,7 @@ +import { NotionReader } from "@llamaindex/readers/notion"; import { Client } from "@notionhq/client"; import { program } from "commander"; import { VectorStoreIndex } from "llamaindex"; -import { NotionReader } from "llamaindex/readers/NotionReader"; import { stdin as input, stdout as output } from "node:process"; import { createInterface } from "node:readline/promises"; diff --git a/examples/readers/src/pdf.ts b/examples/readers/src/pdf.ts index bf37669cb..15f8d2651 100644 --- a/examples/readers/src/pdf.ts +++ b/examples/readers/src/pdf.ts @@ -1,5 +1,5 @@ +import { PDFReader } from "@llamaindex/readers/pdf"; import { VectorStoreIndex } from "llamaindex"; -import { PDFReader } from "llamaindex/readers/PDFReader"; async function main() { // Load PDF diff --git a/examples/readers/src/pdf_fw.ts b/examples/readers/src/pdf_fw.ts index 95b83a050..cad617fa8 100644 --- a/examples/readers/src/pdf_fw.ts +++ b/examples/readers/src/pdf_fw.ts @@ -1,5 +1,5 @@ +import { PDFReader } from "@llamaindex/readers/pdf"; import { FireworksEmbedding, FireworksLLM, VectorStoreIndex } from "llamaindex"; -import { PDFReader } from "llamaindex/readers/PDFReader"; import { Settings } from "llamaindex"; diff --git a/examples/readers/src/pdf_fw_openai.ts b/examples/readers/src/pdf_fw_openai.ts index 0d9fba659..1089f46af 100644 --- a/examples/readers/src/pdf_fw_openai.ts +++ b/examples/readers/src/pdf_fw_openai.ts @@ -1,5 +1,5 @@ +import { PDFReader } from "@llamaindex/readers/pdf"; import { OpenAI, OpenAIEmbedding, VectorStoreIndex } from "llamaindex"; -import { PDFReader } from "llamaindex/readers/PDFReader"; import { Settings } from "llamaindex"; diff --git a/examples/readers/src/simple-directory-reader-with-llamaparse.ts b/examples/readers/src/simple-directory-reader-with-llamaparse.ts index 2c8e8019f..5a1214a47 100644 --- a/examples/readers/src/simple-directory-reader-with-llamaparse.ts +++ b/examples/readers/src/simple-directory-reader-with-llamaparse.ts @@ -1,8 +1,5 @@ -import { - LlamaParseReader, - SimpleDirectoryReader, - VectorStoreIndex, -} from "llamaindex"; +import { SimpleDirectoryReader } from "@llamaindex/readers/directory"; +import { LlamaParseReader, VectorStoreIndex } from "llamaindex"; async function main() { const reader = new SimpleDirectoryReader(); diff --git a/examples/readers/src/simple-directory-reader.ts b/examples/readers/src/simple-directory-reader.ts index 5d25c4cc8..23df9c82b 100644 --- a/examples/readers/src/simple-directory-reader.ts +++ b/examples/readers/src/simple-directory-reader.ts @@ -1,4 +1,4 @@ -import { SimpleDirectoryReader } from "llamaindex/readers/SimpleDirectoryReader"; +import { SimpleDirectoryReader } from "@llamaindex/readers/directory"; // or // import { SimpleDirectoryReader } from 'llamaindex' diff --git a/examples/weaviate/load.ts b/examples/weaviate/load.ts index ac367c82d..a1bf38187 100644 --- a/examples/weaviate/load.ts +++ b/examples/weaviate/load.ts @@ -1,5 +1,5 @@ import { - PapaCSVReader, + CSVReader, storageContextFromDefaults, VectorStoreIndex, WeaviateVectorStore, @@ -9,7 +9,7 @@ const indexName = "MovieReviews"; async function main() { try { - const reader = new PapaCSVReader(false); + const reader = new CSVReader(false); const docs = await reader.loadData("./data/movie_reviews.csv"); const vectorStore = new WeaviateVectorStore({ indexName }); const storageContext = await storageContextFromDefaults({ vectorStore }); diff --git a/packages/core/src/schema/type.ts b/packages/core/src/schema/type.ts index 3df194fb5..abe386206 100644 --- a/packages/core/src/schema/type.ts +++ b/packages/core/src/schema/type.ts @@ -32,20 +32,22 @@ export class TransformComponent { /** * A reader takes imports data into Document objects. */ -export interface BaseReader { - loadData(...args: unknown[]): Promise<Document[]>; +export interface BaseReader<T extends BaseNode = Document> { + loadData(...args: unknown[]): Promise<T[]>; } /** * A FileReader takes file paths and imports data into Document objects. */ -export abstract class FileReader implements BaseReader { +export abstract class FileReader<T extends BaseNode = Document> + implements BaseReader<T> +{ abstract loadDataAsContent( fileContent: Uint8Array, filename?: string, - ): Promise<Document[]>; + ): Promise<T[]>; - async loadData(filePath: string): Promise<Document[]> { + async loadData(filePath: string): Promise<T[]> { const fileContent = await fs.readFile(filePath); const filename = path.basename(filePath); const docs = await this.loadDataAsContent(fileContent, filename); @@ -54,7 +56,7 @@ export abstract class FileReader implements BaseReader { } static addMetaData(filePath: string) { - return (doc: Document, index: number) => { + return (doc: BaseNode, index: number) => { // generate id as loadDataAsContent is only responsible for the content doc.id_ = `${filePath}_${index + 1}`; doc.metadata["file_path"] = path.resolve(filePath); diff --git a/packages/env/src/node-polyfill.ts b/packages/env/src/node-polyfill.ts index b8cf8d802..de4973e2f 100644 --- a/packages/env/src/node-polyfill.ts +++ b/packages/env/src/node-polyfill.ts @@ -49,7 +49,12 @@ export function randomUUID(): string { return crypto.randomUUID(); } -export const process: NodeJS.Process = globalThis.process; +export const process: NodeJS.Process = globalThis.process ?? { + platform: "unknown", + arch: "unknown", + version: "unknown", + versions: {}, +}; export { AsyncLocalStorage, diff --git a/packages/llamaindex/e2e/examples/nextjs-edge-runtime/src/utils/llm.ts b/packages/llamaindex/e2e/examples/nextjs-edge-runtime/src/utils/llm.ts index 5a743f401..375cd15b3 100644 --- a/packages/llamaindex/e2e/examples/nextjs-edge-runtime/src/utils/llm.ts +++ b/packages/llamaindex/e2e/examples/nextjs-edge-runtime/src/utils/llm.ts @@ -1,6 +1,5 @@ // test runtime import "llamaindex"; -import "llamaindex/readers/SimpleDirectoryReader"; // @ts-expect-error if (typeof EdgeRuntime !== "string") { diff --git a/packages/llamaindex/e2e/examples/nextjs-node-runtime/src/actions/openai.ts b/packages/llamaindex/e2e/examples/nextjs-node-runtime/src/actions/openai.ts index 29c7733d8..da82368a2 100644 --- a/packages/llamaindex/e2e/examples/nextjs-node-runtime/src/actions/openai.ts +++ b/packages/llamaindex/e2e/examples/nextjs-node-runtime/src/actions/openai.ts @@ -4,10 +4,10 @@ import { OpenAIAgent, QueryEngineTool, Settings, + SimpleDirectoryReader, VectorStoreIndex, } from "llamaindex"; import { HuggingFaceEmbedding } from "llamaindex/embeddings/HuggingFaceEmbedding"; -import { SimpleDirectoryReader } from "llamaindex/readers/SimpleDirectoryReader"; Settings.llm = new OpenAI({ // eslint-disable-next-line turbo/no-undeclared-env-vars diff --git a/packages/llamaindex/package.json b/packages/llamaindex/package.json index 2e53807dd..5d4cb5de6 100644 --- a/packages/llamaindex/package.json +++ b/packages/llamaindex/package.json @@ -22,9 +22,9 @@ "dependencies": { "@anthropic-ai/sdk": "0.27.1", "@aws-crypto/sha256-js": "^5.2.0", + "@aws-sdk/client-sso-oidc": "^3.679.0", "@azure/identity": "^4.4.1", "@datastax/astra-db-ts": "^1.4.1", - "@discordjs/rest": "^2.3.0", "@discoveryjs/json-ext": "^0.6.1", "@google-cloud/vertexai": "1.2.0", "@google/generative-ai": "0.12.0", @@ -40,14 +40,14 @@ "@llamaindex/ollama": "workspace:*", "@llamaindex/openai": "workspace:*", "@llamaindex/portkey-ai": "workspace:*", - "@llamaindex/replicate": "workspace:^0.0.8", + "@llamaindex/readers": "workspace:*", + "@llamaindex/replicate": "workspace:*", "@mistralai/mistralai": "^1.0.4", "@mixedbread-ai/sdk": "^2.2.11", "@pinecone-database/pinecone": "^3.0.2", "@qdrant/js-client-rest": "^1.11.0", "@types/lodash": "^4.17.7", "@types/node": "^22.5.1", - "@types/papaparse": "^5.3.14", "@types/pg": "^8.11.8", "@upstash/vector": "^1.1.5", "@zilliz/milvus2-sdk-node": "^2.4.6", @@ -56,36 +56,25 @@ "chromadb": "1.9.2", "chromadb-default-embed": "^2.13.2", "cohere-ai": "7.13.0", - "discord-api-types": "^0.37.98", "gpt-tokenizer": "^2.5.0", "groq-sdk": "^0.6.1", "js-tiktoken": "^1.0.14", "lodash": "^4.17.21", "magic-bytes.js": "^1.10.0", - "mammoth": "^1.7.2", - "md-utils-ts": "^2.0.0", "mongodb": "^6.7.0", - "notion-md-crawler": "^1.0.0", "openai": "^4.60.0", - "papaparse": "^5.4.1", "pathe": "^1.1.2", "rake-modified": "^1.0.8", - "string-strip-html": "^13.4.8", - "unpdf": "^0.11.0", "weaviate-client": "^3.1.4", "wikipedia": "^2.1.2", "wink-nlp": "^2.3.0", "zod": "^3.23.8" }, "peerDependencies": { - "@notionhq/client": "^2.2.15", "pg": "^8.12.0", "pgvector": "0.2.0" }, "peerDependenciesMeta": { - "@notionhq/client": { - "optional": true - }, "pg": { "optional": true }, @@ -94,7 +83,6 @@ } }, "devDependencies": { - "@notionhq/client": "^2.2.15", "@swc/cli": "^0.4.0", "@swc/core": "^1.7.22", "@vercel/postgres": "^0.10.0", @@ -134,6 +122,7 @@ "default": "./dist/cjs/index.js" } }, + "./register": "./register.js", "./internal/*": { "import": "./dist/not-allow.js", "require": "./dist/cjs/not-allow.js" @@ -168,6 +157,7 @@ } }, "files": [ + "./register.js", "dist", "CHANGELOG.md", "examples", diff --git a/packages/llamaindex/register.js b/packages/llamaindex/register.js new file mode 100644 index 000000000..16d8488e2 --- /dev/null +++ b/packages/llamaindex/register.js @@ -0,0 +1,6 @@ +/** + * ```shell + * node --import llamaindex/register ./loader.js + * ``` + */ +import "@llamaindex/readers/node"; diff --git a/packages/llamaindex/src/readers/index.ts b/packages/llamaindex/src/readers/index.ts index 58fcec2c7..55b7a945a 100644 --- a/packages/llamaindex/src/readers/index.ts +++ b/packages/llamaindex/src/readers/index.ts @@ -3,17 +3,16 @@ export { type Language, type ResultType, } from "@llamaindex/cloud/reader"; -export * from "./AssemblyAIReader.js"; -export * from "./CSVReader.js"; -export * from "./DiscordReader.js"; -export * from "./DocxReader.js"; -export * from "./HTMLReader.js"; -export * from "./ImageReader.js"; -export * from "./JSONReader.js"; -export * from "./MarkdownReader.js"; -export * from "./NotionReader.js"; -export * from "./PDFReader.js"; -export * from "./SimpleDirectoryReader.js"; -export * from "./SimpleMongoReader.js"; -export * from "./TextFileReader.js"; -export * from "./type.js"; +export * from "@llamaindex/readers/assembly-ai"; +export * from "@llamaindex/readers/csv"; +export * from "@llamaindex/readers/directory"; +export * from "@llamaindex/readers/discord"; +export * from "@llamaindex/readers/docx"; +export * from "@llamaindex/readers/html"; +export * from "@llamaindex/readers/image"; +export * from "@llamaindex/readers/json"; +export * from "@llamaindex/readers/markdown"; +export * from "@llamaindex/readers/mongo"; +export * from "@llamaindex/readers/notion"; +export * from "@llamaindex/readers/pdf"; +export * from "@llamaindex/readers/text"; diff --git a/packages/llamaindex/src/readers/type.ts b/packages/llamaindex/src/readers/type.ts deleted file mode 100644 index e69de29bb..000000000 diff --git a/packages/llamaindex/src/readers/utils.ts b/packages/llamaindex/src/readers/utils.ts deleted file mode 100644 index 1daa09281..000000000 --- a/packages/llamaindex/src/readers/utils.ts +++ /dev/null @@ -1,106 +0,0 @@ -// Note: this code is taken from p-limit 5.0.0 and modified to work with non NodeJS envs by removing AsyncResource which seems not be needed in our case and also it's not recommended to used anymore. If we need to preserve some state between async calls better use `AsyncLocalStorage`. -// Also removed dependency to yocto-queue by using normal Array - -export type LimitFunction = { - /** - The number of promises that are currently running. - */ - readonly activeCount: number; - - /** - The number of promises that are waiting to run (i.e. their internal `fn` was not called yet). - */ - readonly pendingCount: number; - - /** - Discard pending promises that are waiting to run. - - This might be useful if you want to teardown the queue at the end of your program's lifecycle or discard any function calls referencing an intermediary state of your app. - - Note: This does not cancel promises that are already running. - */ - clearQueue: () => void; - - /** - @param fn - Promise-returning/async function. - @param arguments - Any arguments to pass through to `fn`. Support for passing arguments on to the `fn` is provided in order to be able to avoid creating unnecessary closures. You probably don't need this optimization unless you're pushing a lot of functions. - @returns The promise returned by calling `fn(...arguments)`. - */ - <Arguments extends unknown[], ReturnType>( - fn: (...arguments_: Arguments) => PromiseLike<ReturnType> | ReturnType, - ...arguments_: Arguments - ): Promise<ReturnType>; -}; - -export default function pLimit(concurrency: number): LimitFunction { - if ( - !( - (Number.isInteger(concurrency) || - concurrency === Number.POSITIVE_INFINITY) && - concurrency > 0 - ) - ) { - throw new TypeError("Expected `concurrency` to be a number from 1 and up"); - } - - const queue = new Array(); - let activeCount = 0; - - const next = () => { - activeCount--; - - if (queue.length > 0) { - queue.shift()(); - } - }; - - const run = async (function_: any, resolve: any, arguments_: any) => { - activeCount++; - - const result = (async () => function_(...arguments_))(); - resolve(result); - - try { - await result; - } catch {} - - next(); - }; - - const enqueue = (function_: any, resolve: any, arguments_: any) => { - queue.push(run.bind(undefined, function_, resolve, arguments_)); - - (async () => { - // This function needs to wait until the next microtask before comparing - // `activeCount` to `concurrency`, because `activeCount` is updated asynchronously - // when the run function is dequeued and called. The comparison in the if-statement - // needs to happen asynchronously as well to get an up-to-date value for `activeCount`. - await Promise.resolve(); - - if (activeCount < concurrency && queue.length > 0) { - queue.shift()(); - } - })(); - }; - - const generator = (function_: any, ...arguments_: any) => - new Promise((resolve) => { - enqueue(function_, resolve, arguments_); - }); - - Object.defineProperties(generator, { - activeCount: { - get: () => activeCount, - }, - pendingCount: { - get: () => queue.length, - }, - clearQueue: { - value() { - queue.length = 0; - }, - }, - }); - - return generator as LimitFunction; -} diff --git a/packages/readers/README.md b/packages/readers/README.md new file mode 100644 index 000000000..66ca4beac --- /dev/null +++ b/packages/readers/README.md @@ -0,0 +1,20 @@ +# @llamaindex/readers + +> Utilities for reading data from various sources + +## Usage + +```shell +npm i @llamaindex/readers +``` + +```ts +import { SimpleDirectoryReader } from "@llamaindex/readers/directory"; + +const reader = new SimpleDirectoryReader(); +const documents = reader.loadData("./directory"); +``` + +## License + +MIT diff --git a/packages/readers/assembly-ai/package.json b/packages/readers/assembly-ai/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/assembly-ai/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/csv/package.json b/packages/readers/csv/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/csv/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/directory/package.json b/packages/readers/directory/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/directory/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/discord/package.json b/packages/readers/discord/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/discord/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/docx/package.json b/packages/readers/docx/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/docx/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/html/package.json b/packages/readers/html/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/html/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/image/package.json b/packages/readers/image/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/image/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/json/package.json b/packages/readers/json/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/json/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/markdown/package.json b/packages/readers/markdown/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/markdown/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/mongo/package.json b/packages/readers/mongo/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/mongo/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/notion/package.json b/packages/readers/notion/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/notion/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/package.json b/packages/readers/package.json new file mode 100644 index 000000000..0fb288cda --- /dev/null +++ b/packages/readers/package.json @@ -0,0 +1,293 @@ +{ + "name": "@llamaindex/readers", + "description": "LlamaIndex Readers", + "version": "0.0.1", + "type": "module", + "exports": { + "./node/hook": "./node/dist/hook.js", + "./node": "./node/dist/index.js", + "./assembly-ai": { + "edge-light": { + "types": "./assembly-ai/dist/index.edge-light.d.ts", + "default": "./assembly-ai/dist/index.edge-light.js" + }, + "workerd": { + "types": "./assembly-ai/dist/index.workerd.d.ts", + "default": "./assembly-ai/dist/index.workerd.js" + }, + "require": { + "types": "./assembly-ai/dist/index.d.cts", + "default": "./assembly-ai/dist/index.cjs" + }, + "import": { + "types": "./assembly-ai/dist/index.d.ts", + "default": "./assembly-ai/dist/index.js" + } + }, + "./csv": { + "edge-light": { + "types": "./csv/dist/index.edge-light.d.ts", + "default": "./csv/dist/index.edge-light.js" + }, + "workerd": { + "types": "./csv/dist/index.workerd.d.ts", + "default": "./csv/dist/index.workerd.js" + }, + "require": { + "types": "./csv/dist/index.d.cts", + "default": "./csv/dist/index.cjs" + }, + "import": { + "types": "./csv/dist/index.d.ts", + "default": "./csv/dist/index.js" + } + }, + "./directory": { + "edge-light": { + "types": "./directory/dist/index.edge-light.d.ts", + "default": "./directory/dist/index.edge-light.js" + }, + "workerd": { + "types": "./directory/dist/index.workerd.d.ts", + "default": "./directory/dist/index.workerd.js" + }, + "require": { + "types": "./directory/dist/index.d.cts", + "default": "./directory/dist/index.cjs" + }, + "import": { + "types": "./directory/dist/index.d.ts", + "default": "./directory/dist/index.js" + } + }, + "./discord": { + "edge-light": { + "types": "./discord/dist/index.edge-light.d.ts", + "default": "./discord/dist/index.edge-light.js" + }, + "workerd": { + "types": "./discord/dist/index.workerd.d.ts", + "default": "./discord/dist/index.workerd.js" + }, + "require": { + "types": "./discord/dist/index.d.cts", + "default": "./discord/dist/index.cjs" + }, + "import": { + "types": "./discord/dist/index.d.ts", + "default": "./discord/dist/index.js" + } + }, + "./docx": { + "edge-light": { + "types": "./docx/dist/index.edge-light.d.ts", + "default": "./docx/dist/index.edge-light.js" + }, + "workerd": { + "types": "./docx/dist/index.workerd.d.ts", + "default": "./docx/dist/index.workerd.js" + }, + "require": { + "types": "./docx/dist/index.d.cts", + "default": "./docx/dist/index.cjs" + }, + "import": { + "types": "./docx/dist/index.d.ts", + "default": "./docx/dist/index.js" + } + }, + "./html": { + "edge-light": { + "types": "./html/dist/index.edge-light.d.ts", + "default": "./html/dist/index.edge-light.js" + }, + "workerd": { + "types": "./html/dist/index.workerd.d.ts", + "default": "./html/dist/index.workerd.js" + }, + "require": { + "types": "./html/dist/index.d.cts", + "default": "./html/dist/index.cjs" + }, + "import": { + "types": "./html/dist/index.d.ts", + "default": "./html/dist/index.js" + } + }, + "./image": { + "edge-light": { + "types": "./image/dist/index.edge-light.d.ts", + "default": "./image/dist/index.edge-light.js" + }, + "workerd": { + "types": "./image/dist/index.workerd.d.ts", + "default": "./image/dist/index.workerd.js" + }, + "require": { + "types": "./image/dist/index.d.cts", + "default": "./image/dist/index.cjs" + }, + "import": { + "types": "./image/dist/index.d.ts", + "default": "./image/dist/index.js" + } + }, + "./json": { + "edge-light": { + "types": "./json/dist/index.edge-light.d.ts", + "default": "./json/dist/index.edge-light.js" + }, + "workerd": { + "types": "./json/dist/index.workerd.d.ts", + "default": "./json/dist/index.workerd.js" + }, + "require": { + "types": "./json/dist/index.d.cts", + "default": "./json/dist/index.cjs" + }, + "import": { + "types": "./json/dist/index.d.ts", + "default": "./json/dist/index.js" + } + }, + "./markdown": { + "edge-light": { + "types": "./markdown/dist/index.edge-light.d.ts", + "default": "./markdown/dist/index.edge-light.js" + }, + "workerd": { + "types": "./markdown/dist/index.workerd.d.ts", + "default": "./markdown/dist/index.workerd.js" + }, + "require": { + "types": "./markdown/dist/index.d.cts", + "default": "./markdown/dist/index.cjs" + }, + "import": { + "types": "./markdown/dist/index.d.ts", + "default": "./markdown/dist/index.js" + } + }, + "./mongo": { + "edge-light": { + "types": "./mongo/dist/index.edge-light.d.ts", + "default": "./mongo/dist/index.edge-light.js" + }, + "workerd": { + "types": "./mongo/dist/index.workerd.d.ts", + "default": "./mongo/dist/index.workerd.js" + }, + "require": { + "types": "./mongo/dist/index.d.cts", + "default": "./mongo/dist/index.cjs" + }, + "import": { + "types": "./mongo/dist/index.d.ts", + "default": "./mongo/dist/index.js" + } + }, + "./notion": { + "edge-light": { + "types": "./notion/dist/index.edge-light.d.ts", + "default": "./notion/dist/index.edge-light.js" + }, + "workerd": { + "types": "./notion/dist/index.workerd.d.ts", + "default": "./notion/dist/index.workerd.js" + }, + "require": { + "types": "./notion/dist/index.d.cts", + "default": "./notion/dist/index.cjs" + }, + "import": { + "types": "./notion/dist/index.d.ts", + "default": "./notion/dist/index.js" + } + }, + "./pdf": { + "edge-light": { + "types": "./pdf/dist/index.edge-light.d.ts", + "default": "./pdf/dist/index.edge-light.js" + }, + "workerd": { + "types": "./pdf/dist/index.workerd.d.ts", + "default": "./pdf/dist/index.workerd.js" + }, + "require": { + "types": "./pdf/dist/index.d.cts", + "default": "./pdf/dist/index.cjs" + }, + "import": { + "types": "./pdf/dist/index.d.ts", + "default": "./pdf/dist/index.js" + } + }, + "./text": { + "edge-light": { + "types": "./text/dist/index.edge-light.d.ts", + "default": "./text/dist/index.edge-light.js" + }, + "workerd": { + "types": "./text/dist/index.workerd.d.ts", + "default": "./text/dist/index.workerd.js" + }, + "require": { + "types": "./text/dist/index.d.cts", + "default": "./text/dist/index.cjs" + }, + "import": { + "types": "./text/dist/index.d.ts", + "default": "./text/dist/index.js" + } + } + }, + "files": [ + "assembly-ai", + "csv", + "directory", + "discord", + "docx", + "html", + "image", + "json", + "markdown", + "mongo", + "notion", + "pdf", + "text", + "node" + ], + "repository": { + "type": "git", + "url": "https://github.com/run-llama/LlamaIndexTS.git", + "directory": "packages/readers" + }, + "scripts": { + "build": "bunchee", + "dev": "bunchee --watch" + }, + "devDependencies": { + "@llamaindex/core": "workspace:*", + "@llamaindex/env": "workspace:*", + "@types/node": "^22.8.1", + "bunchee": "5.5.1", + "p-limit": "^6.1.0", + "string-strip-html": "^13.4.8" + }, + "peerDependencies": { + "@llamaindex/core": "workspace:*", + "@llamaindex/env": "workspace:*" + }, + "dependencies": { + "@discordjs/rest": "^2.3.0", + "@discoveryjs/json-ext": "^0.6.1", + "assemblyai": "^4.7.0", + "csv-parse": "^5.5.6", + "discord-api-types": "^0.37.98", + "mammoth": "^1.7.2", + "mongodb": "^6.7.0", + "notion-md-crawler": "^1.0.0", + "papaparse": "^5.4.1", + "unpdf": "^0.11.0" + } +} diff --git a/packages/readers/pdf/package.json b/packages/readers/pdf/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/pdf/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/llamaindex/src/readers/AssemblyAIReader.ts b/packages/readers/src/assembly-ai.ts similarity index 82% rename from packages/llamaindex/src/readers/AssemblyAIReader.ts rename to packages/readers/src/assembly-ai.ts index d64f0f57a..f8e273710 100644 --- a/packages/llamaindex/src/readers/AssemblyAIReader.ts +++ b/packages/readers/src/assembly-ai.ts @@ -1,18 +1,19 @@ import { type BaseReader, Document } from "@llamaindex/core/schema"; import { getEnv } from "@llamaindex/env"; import type { + AssemblyAI, BaseServiceParams, SubtitleFormat, TranscribeParams, TranscriptParagraph, TranscriptSentence, } from "assemblyai"; -import { AssemblyAI } from "assemblyai"; type AssemblyAIOptions = Partial<BaseServiceParams>; const defaultOptions = { userAgent: { integration: { + // fixme: use `@llamaindex/env` name: "LlamaIndexTS", version: "1.0.1", }, @@ -21,8 +22,8 @@ const defaultOptions = { /** * Base class for AssemblyAI Readers. */ -abstract class AssemblyAIReader implements BaseReader { - protected client: AssemblyAI; +abstract class AssemblyAIReader implements BaseReader<Document> { + protected clientPromise: Promise<AssemblyAI>; /** * Creates a new AssemblyAI Reader. @@ -43,19 +44,23 @@ abstract class AssemblyAIReader implements BaseReader { ); } - this.client = new AssemblyAI({ - ...defaultOptions, - ...options, - } as BaseServiceParams); + this.clientPromise = import("assemblyai").then( + ({ AssemblyAI }) => + new AssemblyAI({ + ...defaultOptions, + ...options, + } as BaseServiceParams), + ); } abstract loadData(params: TranscribeParams | string): Promise<Document[]>; protected async transcribeOrGetTranscript(params: TranscribeParams | string) { + const client = await this.clientPromise; if (typeof params === "string") { - return await this.client.transcripts.get(params); + return await client.transcripts.get(params); } else { - return await this.client.transcripts.transcribe(params); + return await client.transcripts.transcribe(params); } } @@ -63,7 +68,8 @@ abstract class AssemblyAIReader implements BaseReader { if (typeof params === "string") { return params; } else { - return (await this.client.transcripts.transcribe(params)).id; + const client = await this.clientPromise; + return (await client.transcripts.transcribe(params)).id; } } } @@ -94,8 +100,9 @@ class AudioTranscriptParagraphsReader extends AssemblyAIReader { */ async loadData(params: TranscribeParams | string): Promise<Document[]> { const transcriptId = await this.getTranscriptId(params); + const client = await this.clientPromise; const paragraphsResponse = - await this.client.transcripts.paragraphs(transcriptId); + await client.transcripts.paragraphs(transcriptId); return paragraphsResponse.paragraphs.map( (p: TranscriptParagraph) => new Document({ text: p.text }), ); @@ -113,8 +120,8 @@ class AudioTranscriptSentencesReader extends AssemblyAIReader { */ async loadData(params: TranscribeParams | string): Promise<Document[]> { const transcriptId = await this.getTranscriptId(params); - const sentencesResponse = - await this.client.transcripts.sentences(transcriptId); + const client = await this.clientPromise; + const sentencesResponse = await client.transcripts.sentences(transcriptId); return sentencesResponse.sentences.map( (p: TranscriptSentence) => new Document({ text: p.text }), ); @@ -136,7 +143,8 @@ class AudioSubtitlesReader extends AssemblyAIReader { subtitleFormat: SubtitleFormat = "srt", ): Promise<Document[]> { const transcriptId = await this.getTranscriptId(params); - const subtitles = await this.client.transcripts.subtitles( + const client = await this.clientPromise; + const subtitles = await client.transcripts.subtitles( transcriptId, subtitleFormat, ); @@ -150,4 +158,5 @@ export { AudioTranscriptReader, AudioTranscriptSentencesReader, }; + export type { AssemblyAIOptions, SubtitleFormat, TranscribeParams }; diff --git a/packages/llamaindex/src/readers/CSVReader.ts b/packages/readers/src/csv/base.ts similarity index 64% rename from packages/llamaindex/src/readers/CSVReader.ts rename to packages/readers/src/csv/base.ts index 122b5b08b..022a312ee 100644 --- a/packages/llamaindex/src/readers/CSVReader.ts +++ b/packages/readers/src/csv/base.ts @@ -1,17 +1,16 @@ -import { type BaseReader, Document, FileReader } from "@llamaindex/core/schema"; -import type { ParseConfig } from "papaparse"; -import Papa from "papaparse"; +import { Document, FileReader } from "@llamaindex/core/schema"; +import type { Options, parse } from "csv-parse"; /** - * papaparse-based csv parser - * @class CSVReader - * @implements BaseReader + * CSV parser */ -export class PapaCSVReader extends FileReader { +export class CSVReader extends FileReader<Document> { + static parse: typeof parse; + private concatRows: boolean; private colJoiner: string; private rowJoiner: string; - private papaConfig: ParseConfig | undefined; + private config: Options; /** * Constructs a new instance of the class. @@ -23,13 +22,13 @@ export class PapaCSVReader extends FileReader { concatRows: boolean = true, colJoiner: string = ", ", rowJoiner: string = "\n", - papaConfig?: ParseConfig, + config?: Options, ) { super(); this.concatRows = concatRows; this.colJoiner = colJoiner; this.rowJoiner = rowJoiner; - this.papaConfig = papaConfig; + this.config = config ?? {}; } /** @@ -40,12 +39,11 @@ export class PapaCSVReader extends FileReader { async loadDataAsContent(fileContent: Uint8Array): Promise<Document[]> { const decoder = new TextDecoder("utf-8"); const fileContentString = decoder.decode(fileContent); - const result = Papa.parse(fileContentString, this.papaConfig); - const textList = result.data.map((row: any) => { - // Compatible with header row mode - const rowValues = Object.values(row).map((value) => String(value)); - return rowValues.join(this.colJoiner); - }); + const parser = CSVReader.parse(fileContentString, this.config); + const textList: string[] = []; + for await (const record of parser) { + textList.push(record.map((v: any) => `${v}`).join(this.colJoiner)); + } if (this.concatRows) { return [new Document({ text: textList.join(this.rowJoiner) })]; diff --git a/packages/readers/src/csv/index.edge-light.ts b/packages/readers/src/csv/index.edge-light.ts new file mode 100644 index 000000000..a33a0c986 --- /dev/null +++ b/packages/readers/src/csv/index.edge-light.ts @@ -0,0 +1 @@ +export * from "./index.non-node"; diff --git a/packages/readers/src/csv/index.non-node.ts b/packages/readers/src/csv/index.non-node.ts new file mode 100644 index 000000000..a4777acef --- /dev/null +++ b/packages/readers/src/csv/index.non-node.ts @@ -0,0 +1,6 @@ +import { parse } from "csv-parse/browser/esm"; + +import { CSVReader } from "./base"; +CSVReader.parse = parse; + +export { CSVReader }; diff --git a/packages/readers/src/csv/index.ts b/packages/readers/src/csv/index.ts new file mode 100644 index 000000000..19513d6d4 --- /dev/null +++ b/packages/readers/src/csv/index.ts @@ -0,0 +1,6 @@ +import { parse } from "csv-parse"; + +import { CSVReader } from "./base"; +CSVReader.parse = parse; + +export { CSVReader }; diff --git a/packages/readers/src/csv/index.workerd.ts b/packages/readers/src/csv/index.workerd.ts new file mode 100644 index 000000000..a33a0c986 --- /dev/null +++ b/packages/readers/src/csv/index.workerd.ts @@ -0,0 +1 @@ +export * from "./index.non-node"; diff --git a/packages/llamaindex/src/readers/SimpleDirectoryReader.edge.ts b/packages/readers/src/directory/base.ts similarity index 93% rename from packages/llamaindex/src/readers/SimpleDirectoryReader.edge.ts rename to packages/readers/src/directory/base.ts index c3f5554fb..61590c00f 100644 --- a/packages/llamaindex/src/readers/SimpleDirectoryReader.edge.ts +++ b/packages/readers/src/directory/base.ts @@ -1,9 +1,9 @@ import type { BaseReader, FileReader } from "@llamaindex/core/schema"; import { Document } from "@llamaindex/core/schema"; import { path } from "@llamaindex/env"; -import { walk } from "../storage/FileSystem.js"; -import { TextFileReader } from "./TextFileReader.js"; -import pLimit from "./utils.js"; +import pLimit from "p-limit"; +import { TextFileReader } from "../text"; +import { walk } from "./utils"; type ReaderCallback = ( category: "file" | "directory", @@ -11,6 +11,7 @@ type ReaderCallback = ( status: ReaderStatus, message?: string, ) => boolean; + enum ReaderStatus { STARTED = 0, COMPLETE, @@ -34,12 +35,7 @@ type ProcessFileParams = Omit< "directoryPath" >; -/** - * Read all the documents in a directory. - * By default, supports the list of file types - * in the FILE_EXT_TO_READER map. - */ -export class SimpleDirectoryReader implements BaseReader { +export class AbstractSimpleDirectoryReader implements BaseReader { constructor(private observer?: ReaderCallback) {} async loadData( diff --git a/packages/readers/src/directory/index.edge-light.ts b/packages/readers/src/directory/index.edge-light.ts new file mode 100644 index 000000000..a33a0c986 --- /dev/null +++ b/packages/readers/src/directory/index.edge-light.ts @@ -0,0 +1 @@ +export * from "./index.non-node"; diff --git a/packages/readers/src/directory/index.non-node.ts b/packages/readers/src/directory/index.non-node.ts new file mode 100644 index 000000000..718743746 --- /dev/null +++ b/packages/readers/src/directory/index.non-node.ts @@ -0,0 +1,3 @@ +import { AbstractSimpleDirectoryReader } from "./base"; + +export class SimpleDirectoryReader extends AbstractSimpleDirectoryReader {} diff --git a/packages/llamaindex/src/readers/SimpleDirectoryReader.ts b/packages/readers/src/directory/index.ts similarity index 67% rename from packages/llamaindex/src/readers/SimpleDirectoryReader.ts rename to packages/readers/src/directory/index.ts index b4e12523a..6c3a1bec2 100644 --- a/packages/llamaindex/src/readers/SimpleDirectoryReader.ts +++ b/packages/readers/src/directory/index.ts @@ -1,21 +1,21 @@ import type { FileReader } from "@llamaindex/core/schema"; import { Document } from "@llamaindex/core/schema"; -import { PapaCSVReader } from "./CSVReader.js"; -import { DocxReader } from "./DocxReader.js"; -import { HTMLReader } from "./HTMLReader.js"; -import { ImageReader } from "./ImageReader.js"; -import { MarkdownReader } from "./MarkdownReader.js"; -import { PDFReader } from "./PDFReader.js"; +import { CSVReader } from "../csv"; +import { DocxReader } from "../docx"; +import { HTMLReader } from "../html.js"; +import { ImageReader } from "../image"; +import { MarkdownReader } from "../markdown"; +import { PDFReader } from "../pdf"; +import { TextFileReader } from "../text"; import { - SimpleDirectoryReader as EdgeSimpleDirectoryReader, + AbstractSimpleDirectoryReader, type SimpleDirectoryReaderLoadDataParams, -} from "./SimpleDirectoryReader.edge.js"; -import { TextFileReader } from "./TextFileReader.js"; +} from "./base"; export const FILE_EXT_TO_READER: Record<string, FileReader> = { txt: new TextFileReader(), pdf: new PDFReader(), - csv: new PapaCSVReader(), + csv: new CSVReader(), md: new MarkdownReader(), docx: new DocxReader(), htm: new HTMLReader(), @@ -31,7 +31,7 @@ export const FILE_EXT_TO_READER: Record<string, FileReader> = { * By default, supports the list of file types * in the FILE_EXT_TO_READER map. */ -export class SimpleDirectoryReader extends EdgeSimpleDirectoryReader { +export class SimpleDirectoryReader extends AbstractSimpleDirectoryReader { async loadData( params: SimpleDirectoryReaderLoadDataParams, ): Promise<Document[]>; diff --git a/packages/readers/src/directory/index.workerd.ts b/packages/readers/src/directory/index.workerd.ts new file mode 100644 index 000000000..a33a0c986 --- /dev/null +++ b/packages/readers/src/directory/index.workerd.ts @@ -0,0 +1 @@ +export * from "./index.non-node"; diff --git a/packages/readers/src/directory/utils.ts b/packages/readers/src/directory/utils.ts new file mode 100644 index 000000000..782539f44 --- /dev/null +++ b/packages/readers/src/directory/utils.ts @@ -0,0 +1,18 @@ +import { fs } from "@llamaindex/env"; + +/** + * Recursively traverses a directory and yields all the paths to the files in it. + * @param dirPath The path to the directory to traverse. + */ +export async function* walk(dirPath: string): AsyncIterable<string> { + const entries = await fs.readdir(dirPath); + for (const entry of entries) { + const fullPath = `${dirPath}/${entry}`; + const stats = await fs.stat(fullPath); + if (stats.isDirectory()) { + yield* walk(fullPath); + } else { + yield fullPath; + } + } +} diff --git a/packages/llamaindex/src/readers/DiscordReader.ts b/packages/readers/src/discord.ts similarity index 99% rename from packages/llamaindex/src/readers/DiscordReader.ts rename to packages/readers/src/discord.ts index 8cf92981a..15a5d6725 100644 --- a/packages/llamaindex/src/readers/DiscordReader.ts +++ b/packages/readers/src/discord.ts @@ -1,3 +1,4 @@ +// todo: move to `providers` import { REST, type RESTOptions } from "@discordjs/rest"; import { Document, type BaseReader } from "@llamaindex/core/schema"; import { getEnv } from "@llamaindex/env"; diff --git a/packages/llamaindex/src/readers/DocxReader.ts b/packages/readers/src/docx.ts similarity index 89% rename from packages/llamaindex/src/readers/DocxReader.ts rename to packages/readers/src/docx.ts index 79ce9857d..a6d17d7bf 100644 --- a/packages/llamaindex/src/readers/DocxReader.ts +++ b/packages/readers/src/docx.ts @@ -1,7 +1,7 @@ import { Document, FileReader } from "@llamaindex/core/schema"; import mammoth from "mammoth"; -export class DocxReader extends FileReader { +export class DocxReader extends FileReader<Document> { /** DocxParser */ async loadDataAsContent(fileContent: Uint8Array): Promise<Document[]> { // Note: await mammoth.extractRawText({ arrayBuffer: fileContent }); is not working diff --git a/packages/llamaindex/src/readers/HTMLReader.ts b/packages/readers/src/html.ts similarity index 89% rename from packages/llamaindex/src/readers/HTMLReader.ts rename to packages/readers/src/html.ts index 916847eb6..3bfc2d9a5 100644 --- a/packages/llamaindex/src/readers/HTMLReader.ts +++ b/packages/readers/src/html.ts @@ -1,4 +1,6 @@ import { Document, FileReader } from "@llamaindex/core/schema"; +import type { Opts } from "string-strip-html"; + /** * Extract the significant text from an arbitrary HTML document. * The contents of any head, script, style, and xml tags are removed completely. @@ -6,7 +8,7 @@ import { Document, FileReader } from "@llamaindex/core/schema"; * All other tags are removed, and the inner text is kept intact. * Html entities (e.g., &) are not decoded. */ -export class HTMLReader extends FileReader { +export class HTMLReader extends FileReader<Document> { /** * Public method for this reader. * Required by BaseReader interface. @@ -28,9 +30,12 @@ export class HTMLReader extends FileReader { * @see getOptions * @returns The HTML content, stripped of unwanted tags and attributes */ - async parseContent(html: string, options: any = {}): Promise<string> { + async parseContent( + html: string, + options: Partial<Opts> = {}, + ): Promise<string> { const { stripHtml } = await import("string-strip-html"); // ESM only - return stripHtml(html).result; + return stripHtml(html, options).result; } /** @@ -38,7 +43,7 @@ export class HTMLReader extends FileReader { * @see https://codsen.com/os/string-strip-html/examples * @returns An object of options for the underlying library */ - getOptions() { + getOptions(): Partial<Opts> { return { skipHtmlDecoding: true, stripTogetherWithTheirContents: [ diff --git a/packages/llamaindex/src/readers/ImageReader.ts b/packages/readers/src/image.ts similarity index 75% rename from packages/llamaindex/src/readers/ImageReader.ts rename to packages/readers/src/image.ts index 25658053a..b82d440b7 100644 --- a/packages/llamaindex/src/readers/ImageReader.ts +++ b/packages/readers/src/image.ts @@ -1,17 +1,16 @@ -import type { Document } from "@llamaindex/core/schema"; import { FileReader, ImageDocument } from "@llamaindex/core/schema"; /** * Reads the content of an image file into a Document object (which stores the image file as a Blob). */ -export class ImageReader extends FileReader { +export class ImageReader extends FileReader<ImageDocument> { /** * Public method for this reader. * Required by BaseReader interface. * @param fileContent - The content of the file. * @returns Promise<Document[]> A Promise object, eventually yielding zero or one ImageDocument of the specified file. */ - async loadDataAsContent(fileContent: Uint8Array): Promise<Document[]> { + async loadDataAsContent(fileContent: Uint8Array): Promise<ImageDocument[]> { const blob = new Blob([fileContent]); return [new ImageDocument({ image: blob })]; } diff --git a/packages/llamaindex/src/readers/JSONReader.ts b/packages/readers/src/json.ts similarity index 99% rename from packages/llamaindex/src/readers/JSONReader.ts rename to packages/readers/src/json.ts index 6c5cff4bc..a37b8024d 100644 --- a/packages/llamaindex/src/readers/JSONReader.ts +++ b/packages/readers/src/json.ts @@ -158,7 +158,7 @@ class JSONParser { * A reader that reads JSON data and returns an array of Document objects. * Supports various options to modify the output. */ -export class JSONReader extends FileReader { +export class JSONReader extends FileReader<Document> { private options: JSONReaderOptions; constructor(options: JSONReaderOptions = {}) { diff --git a/packages/llamaindex/src/readers/MarkdownReader.ts b/packages/readers/src/markdown.ts similarity index 98% rename from packages/llamaindex/src/readers/MarkdownReader.ts rename to packages/readers/src/markdown.ts index e8e43410c..b3635a1c4 100644 --- a/packages/llamaindex/src/readers/MarkdownReader.ts +++ b/packages/readers/src/markdown.ts @@ -6,7 +6,7 @@ type MarkdownTuple = [string | null, string]; * Extract text from markdown files. * Returns dictionary with keys as headers and values as the text between headers. */ -export class MarkdownReader extends FileReader { +export class MarkdownReader extends FileReader<Document> { private _removeHyperlinks: boolean; private _removeImages: boolean; diff --git a/packages/llamaindex/src/readers/SimpleMongoReader.ts b/packages/readers/src/mongo.ts similarity index 96% rename from packages/llamaindex/src/readers/SimpleMongoReader.ts rename to packages/readers/src/mongo.ts index d85d1c13f..bddb4bb40 100644 --- a/packages/llamaindex/src/readers/SimpleMongoReader.ts +++ b/packages/readers/src/mongo.ts @@ -1,3 +1,4 @@ +// todo: should move to providers import type { Metadata } from "@llamaindex/core/schema"; import { type BaseReader, Document } from "@llamaindex/core/schema"; import type { MongoClient } from "mongodb"; @@ -5,7 +6,7 @@ import type { MongoClient } from "mongodb"; /** * Read in from MongoDB */ -export class SimpleMongoReader implements BaseReader { +export class SimpleMongoReader implements BaseReader<Document> { private client: MongoClient; constructor(client: MongoClient) { diff --git a/packages/readers/src/node/hook.ts b/packages/readers/src/node/hook.ts new file mode 100644 index 000000000..a4cdefae7 --- /dev/null +++ b/packages/readers/src/node/hook.ts @@ -0,0 +1,25 @@ +import type { InitializeHook, LoadHook } from "node:module"; +import { extname } from "node:path"; +import { FILE_EXT_TO_READER } from "../directory"; + +let packageDir: string; + +export const initialize: InitializeHook = (data: { packageDir: string }) => { + packageDir = data.packageDir; +}; + +export const load: LoadHook = async (url, context, nextLoad) => { + const ext: string | undefined = extname(url).slice(1); + if (ext && FILE_EXT_TO_READER[ext]) { + return { + format: "module", + shortCircuit: true, + source: `import { FILE_EXT_TO_READER } from '${packageDir}directory/dist/index.js'; +import fs from 'node:fs/promises'; +import { fileURLToPath } from 'node:url'; +const path = fileURLToPath(new URL('${url}')); +export default (await FILE_EXT_TO_READER['${ext}'].loadData(path))[0];`, + }; + } + return nextLoad(url, context); +}; diff --git a/packages/readers/src/node/index.ts b/packages/readers/src/node/index.ts new file mode 100644 index 000000000..3cdf03dff --- /dev/null +++ b/packages/readers/src/node/index.ts @@ -0,0 +1,9 @@ +import { register } from "node:module"; +import { fileURLToPath } from "node:url"; + +register("./hook.js", { + parentURL: import.meta.url, + data: { + packageDir: fileURLToPath(new URL("../../", import.meta.url)), + }, +}); diff --git a/packages/llamaindex/src/readers/NotionReader.ts b/packages/readers/src/notion.ts similarity index 97% rename from packages/llamaindex/src/readers/NotionReader.ts rename to packages/readers/src/notion.ts index 313423fac..5871e8bb5 100644 --- a/packages/llamaindex/src/readers/NotionReader.ts +++ b/packages/readers/src/notion.ts @@ -12,7 +12,7 @@ type NotionReaderOptions = Pick<CrawlerOptions, "client" | "serializers">; * [Note] To use this reader, must be created the Notion integration must be created in advance * Please refer to [this document](https://www.notion.so/help/create-integrations-with-the-notion-api) for details. */ -export class NotionReader implements BaseReader { +export class NotionReader implements BaseReader<Document> { private readonly crawl: ReturnType<Crawler>; /** diff --git a/packages/llamaindex/src/readers/PDFReader.ts b/packages/readers/src/pdf.ts similarity index 94% rename from packages/llamaindex/src/readers/PDFReader.ts rename to packages/readers/src/pdf.ts index bd46e3ce3..944a65e54 100644 --- a/packages/llamaindex/src/readers/PDFReader.ts +++ b/packages/readers/src/pdf.ts @@ -3,7 +3,7 @@ import { Document, FileReader } from "@llamaindex/core/schema"; /** * Read the text of a PDF */ -export class PDFReader extends FileReader { +export class PDFReader extends FileReader<Document> { async loadDataAsContent(content: Uint8Array): Promise<Document[]> { // XXX: create a new Uint8Array to prevent "Please provide binary data as `Uint8Array`, rather than `Buffer`." error if a Buffer passed if (content instanceof Buffer) { diff --git a/packages/llamaindex/src/readers/TextFileReader.ts b/packages/readers/src/text.ts similarity index 100% rename from packages/llamaindex/src/readers/TextFileReader.ts rename to packages/readers/src/text.ts index 785a8f01c..1392e54f5 100644 --- a/packages/llamaindex/src/readers/TextFileReader.ts +++ b/packages/readers/src/text.ts @@ -1,8 +1,8 @@ import { Document, FileReader } from "@llamaindex/core/schema"; + /** * Read a .txt file */ - export class TextFileReader extends FileReader { async loadDataAsContent(fileContent: Uint8Array): Promise<Document[]> { const decoder = new TextDecoder("utf-8"); diff --git a/packages/readers/text/package.json b/packages/readers/text/package.json new file mode 100644 index 000000000..10dbf8b62 --- /dev/null +++ b/packages/readers/text/package.json @@ -0,0 +1,14 @@ +{ + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "edge-light": "./dist/index.edge-light.js", + "workerd": "./dist/index.workerd.js", + "default": "./dist/index.js" + } + }, + "private": true +} diff --git a/packages/readers/tsconfig.json b/packages/readers/tsconfig.json new file mode 100644 index 000000000..79588977a --- /dev/null +++ b/packages/readers/tsconfig.json @@ -0,0 +1,16 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "rootDir": "./src", + "outDir": "./dist/type", + "tsBuildInfoFile": "./dist/.tsbuildinfo", + "emitDeclarationOnly": true, + "moduleResolution": "Bundler", + "skipLibCheck": true, + "strict": true, + "lib": ["ESNext", "DOM", "DOM.Iterable", "DOM.AsyncIterable"], + "types": ["node"] + }, + "include": ["./src"], + "exclude": ["node_modules"] +} diff --git a/packages/readers/turbo.json b/packages/readers/turbo.json new file mode 100644 index 000000000..3e50dc890 --- /dev/null +++ b/packages/readers/turbo.json @@ -0,0 +1,8 @@ +{ + "extends": ["//"], + "tasks": { + "build": { + "outputs": ["**/dist/**"] + } + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 74154fac5..1afb21949 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -17,13 +17,13 @@ importers: version: 2.27.7 '@typescript-eslint/eslint-plugin': specifier: ^8.3.0 - version: 8.3.0(@typescript-eslint/parser@8.10.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2) + version: 8.3.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3) eslint: specifier: 8.57.0 version: 8.57.0 eslint-config-next: specifier: ^14.2.7 - version: 14.2.7(eslint@8.57.0)(typescript@5.6.2) + version: 14.2.11(eslint@8.57.0)(typescript@5.6.3) eslint-config-prettier: specifier: ^9.1.0 version: 9.1.0(eslint@8.57.0) @@ -41,25 +41,25 @@ importers: version: 15.2.9 madge: specifier: ^8.0.0 - version: 8.0.0(typescript@5.6.2) + version: 8.0.0(typescript@5.6.3) prettier: specifier: ^3.3.3 version: 3.3.3 prettier-plugin-organize-imports: specifier: ^4.0.0 - version: 4.0.0(prettier@3.3.3)(typescript@5.6.2) + version: 4.0.0(prettier@3.3.3)(typescript@5.6.3) turbo: specifier: ^2.1.2 version: 2.1.2 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 apps/docs: dependencies: '@docusaurus/core': specifier: 3.5.2 - version: 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + version: 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/remark-plugin-npm2yarn': specifier: 3.5.2 version: 3.5.2 @@ -96,10 +96,10 @@ importers: version: 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@docusaurus/preset-classic': specifier: 3.5.2 - version: 3.5.2(@algolia/client-search@5.9.1)(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.2) + version: 3.5.2(@algolia/client-search@5.9.1)(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3) '@docusaurus/theme-classic': specifier: 3.5.2 - version: 3.5.2(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + version: 3.5.2(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': specifier: 3.5.2 version: 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) @@ -108,19 +108,19 @@ importers: version: 2.0.3 '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 docusaurus-plugin-typedoc: specifier: 1.0.5 - version: 1.0.5(typedoc-plugin-markdown@4.2.6(typedoc@0.26.6(typescript@5.6.2))) + version: 1.0.5(typedoc-plugin-markdown@4.2.6(typedoc@0.26.6(typescript@5.6.3))) typedoc: specifier: 0.26.6 - version: 0.26.6(typescript@5.6.2) + version: 0.26.6(typescript@5.6.3) typedoc-plugin-markdown: specifier: 4.2.6 - version: 4.2.6(typedoc@0.26.6(typescript@5.6.2)) + version: 4.2.6(typedoc@0.26.6(typescript@5.6.3)) typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 apps/next: dependencies: @@ -136,6 +136,9 @@ importers: '@llamaindex/openai': specifier: workspace:* version: link:../../packages/providers/openai + '@llamaindex/readers': + specifier: workspace:* + version: link:../../packages/readers '@mdx-js/mdx': specifier: ^3.1.0 version: 3.1.0(acorn@8.13.0) @@ -153,7 +156,7 @@ importers: version: 1.1.3(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ai: specifier: ^3.3.21 - version: 3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) + version: 3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.0.2))(svelte@5.0.2)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -187,6 +190,9 @@ importers: hast-util-to-jsx-runtime: specifier: ^2.3.2 version: 2.3.2 + llamaindex: + specifier: workspace:* + version: link:../../packages/llamaindex lucide-react: specifier: ^0.436.0 version: 0.436.0(react@18.3.1) @@ -278,6 +284,9 @@ importers: '@llamaindex/core': specifier: ^0.3.4 version: link:../packages/core + '@llamaindex/readers': + specifier: ^0.0.1 + version: link:../packages/readers '@notionhq/client': specifier: ^2.2.15 version: 2.2.15(encoding@0.1.13) @@ -292,7 +301,7 @@ importers: version: 2.4.6 chromadb: specifier: ^1.8.1 - version: 1.8.1(cohere-ai@7.14.0(encoding@0.1.13))(encoding@0.1.13)(openai@4.68.1(encoding@0.1.13)) + version: 1.9.2(cohere-ai@7.14.0(encoding@0.1.13))(encoding@0.1.13)(openai@4.68.1(encoding@0.1.13)) commander: specifier: ^12.1.0 version: 12.1.0 @@ -317,29 +326,32 @@ importers: devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 tsx: specifier: ^4.19.0 version: 4.19.0 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 examples/readers: dependencies: + '@llamaindex/readers': + specifier: '*' + version: link:../../packages/readers llamaindex: specifier: '*' version: link:../../packages/llamaindex devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 tsx: specifier: ^4.19.0 version: 4.19.0 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 examples/vector-store/pg: {} @@ -347,16 +359,16 @@ importers: dependencies: '@swc/core': specifier: ^1.7.22 - version: 1.7.22(@swc/helpers@0.5.13) + version: 1.7.36(@swc/helpers@0.5.13) jotai: specifier: 2.8.4 version: 2.8.4(@types/react@18.3.12)(react@19.0.0-rc-bf7e210c-20241017) openai: specifier: ^4 - version: 4.60.1(encoding@0.1.13)(zod@3.23.8) + version: 4.68.1(encoding@0.1.13)(zod@3.23.8) typedoc: specifier: ^0.26.6 - version: 0.26.6(typescript@5.6.2) + version: 0.26.6(typescript@5.6.3) unplugin: specifier: ^1.12.2 version: 1.12.2 @@ -369,10 +381,10 @@ importers: version: 7.0.15 '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 bunchee: specifier: 5.5.1 - version: 5.5.1(typescript@5.6.2) + version: 5.5.1(typescript@5.6.3) llamaindex: specifier: workspace:* version: link:../llamaindex @@ -381,19 +393,19 @@ importers: version: 14.2.11(@opentelemetry/api@1.9.0)(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react@19.0.0-rc-bf7e210c-20241017) rollup: specifier: ^4.21.2 - version: 4.21.2 + version: 4.24.0 tsx: specifier: ^4.19.0 version: 4.19.0 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 vitest: specifier: ^2.0.5 - version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.5.4)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0) + version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) webpack: specifier: ^5.94.0 - version: 5.94.0(@swc/core@1.7.22(@swc/helpers@0.5.13)) + version: 5.95.0(@swc/core@1.7.36(@swc/helpers@0.5.13)) packages/autotool/examples/01_node: dependencies: @@ -405,7 +417,7 @@ importers: version: link:../../../llamaindex openai: specifier: ^4.57.0 - version: 4.60.1(encoding@0.1.13)(zod@3.23.8) + version: 4.68.1(encoding@0.1.13)(zod@3.23.8) devDependencies: tsx: specifier: ^4.19.0 @@ -421,7 +433,7 @@ importers: version: 1.1.0(@types/react@18.3.12)(react@18.3.1) ai: specifier: ^3.3.21 - version: 3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.0.2))(svelte@5.0.2)(vue@3.5.12(typescript@5.6.2))(zod@3.23.8) + version: 3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.0.2))(svelte@5.0.2)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) class-variance-authority: specifier: ^0.7.0 version: 0.7.0 @@ -454,11 +466,11 @@ importers: version: 1.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tailwind-merge: specifier: ^2.5.2 - version: 2.5.2 + version: 2.5.4 devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -470,19 +482,19 @@ importers: version: 15.5.13 autoprefixer: specifier: ^10.4.20 - version: 10.4.20(postcss@8.4.41) + version: 10.4.20(postcss@8.4.47) cross-env: specifier: ^7.0.3 version: 7.0.3 postcss: specifier: ^8.4.41 - version: 8.4.41 + version: 8.4.47 tailwindcss: specifier: ^3.4.10 - version: 3.4.10 + version: 3.4.14 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 packages/cloud: devDependencies: @@ -519,7 +531,7 @@ importers: devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 bunchee: specifier: 5.5.1 version: 5.5.1(typescript@5.6.3) @@ -531,7 +543,7 @@ importers: version: link:../env '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 magic-bytes.js: specifier: ^1.10.0 version: 1.10.0 @@ -565,7 +577,7 @@ importers: version: link:.. vitest: specifier: ^2.0.5 - version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0) + version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) packages/env: dependencies: @@ -578,7 +590,7 @@ importers: devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 '@types/readable-stream': specifier: ^4.0.15 version: 4.0.15 @@ -596,7 +608,7 @@ importers: version: 1.1.2 vitest: specifier: ^2.0.5 - version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.5.4)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) + version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) packages/experimental: dependencies: @@ -605,7 +617,7 @@ importers: version: 4.17.7 '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 jsonpath: specifier: ^1.1.1 version: 1.1.1 @@ -621,10 +633,10 @@ importers: version: 5.2.0 '@swc/cli': specifier: ^0.4.0 - version: 0.4.0(@swc/core@1.7.22(@swc/helpers@0.5.13))(chokidar@3.6.0) + version: 0.4.0(@swc/core@1.7.36(@swc/helpers@0.5.13))(chokidar@3.6.0) '@swc/core': specifier: ^1.7.22 - version: 1.7.22(@swc/helpers@0.5.13) + version: 1.7.36(@swc/helpers@0.5.13) '@types/jsonpath': specifier: ^0.2.4 version: 0.2.4 @@ -643,15 +655,15 @@ importers: '@aws-crypto/sha256-js': specifier: ^5.2.0 version: 5.2.0 + '@aws-sdk/client-sso-oidc': + specifier: ^3.679.0 + version: 3.679.0(@aws-sdk/client-sts@3.678.0) '@azure/identity': specifier: ^4.4.1 version: 4.4.1 '@datastax/astra-db-ts': specifier: ^1.4.1 version: 1.4.1 - '@discordjs/rest': - specifier: ^2.3.0 - version: 2.3.0 '@discoveryjs/json-ext': specifier: ^0.6.1 version: 0.6.1 @@ -697,8 +709,11 @@ importers: '@llamaindex/portkey-ai': specifier: workspace:* version: link:../providers/portkey-ai + '@llamaindex/readers': + specifier: workspace:* + version: link:../readers '@llamaindex/replicate': - specifier: workspace:^0.0.8 + specifier: workspace:* version: link:../providers/replicate '@mistralai/mistralai': specifier: ^1.0.4 @@ -711,16 +726,13 @@ importers: version: 3.0.2 '@qdrant/js-client-rest': specifier: ^1.11.0 - version: 1.11.0(typescript@5.6.2) + version: 1.11.0(typescript@5.6.3) '@types/lodash': specifier: ^4.17.7 version: 4.17.7 '@types/node': specifier: ^22.5.1 - version: 22.5.4 - '@types/papaparse': - specifier: ^5.3.14 - version: 5.3.14 + version: 22.8.1 '@types/pg': specifier: ^8.11.8 version: 8.11.8 @@ -738,16 +750,13 @@ importers: version: 4.7.0(bufferutil@4.0.8) chromadb: specifier: 1.9.2 - version: 1.9.2(@google/generative-ai@0.12.0)(cohere-ai@7.13.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(encoding@0.1.13))(encoding@0.1.13)(openai@4.60.1(encoding@0.1.13)(zod@3.23.8)) + version: 1.9.2(@google/generative-ai@0.12.0)(cohere-ai@7.13.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(encoding@0.1.13))(encoding@0.1.13)(openai@4.68.1(encoding@0.1.13)(zod@3.23.8)) chromadb-default-embed: specifier: ^2.13.2 version: 2.13.2 cohere-ai: specifier: 7.13.0 - version: 7.13.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(encoding@0.1.13) - discord-api-types: - specifier: ^0.37.98 - version: 0.37.98 + version: 7.13.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(encoding@0.1.13) gpt-tokenizer: specifier: ^2.5.0 version: 2.5.0 @@ -763,36 +772,18 @@ importers: magic-bytes.js: specifier: ^1.10.0 version: 1.10.0 - mammoth: - specifier: ^1.7.2 - version: 1.8.0 - md-utils-ts: - specifier: ^2.0.0 - version: 2.0.0 mongodb: specifier: ^6.7.0 - version: 6.8.0(@aws-sdk/credential-providers@3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))) - notion-md-crawler: - specifier: ^1.0.0 - version: 1.0.0(encoding@0.1.13) + version: 6.8.0(@aws-sdk/credential-providers@3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))) openai: specifier: ^4.60.0 - version: 4.60.1(encoding@0.1.13)(zod@3.23.8) - papaparse: - specifier: ^5.4.1 - version: 5.4.1 + version: 4.68.1(encoding@0.1.13)(zod@3.23.8) pathe: specifier: ^1.1.2 version: 1.1.2 rake-modified: specifier: ^1.0.8 version: 1.0.8 - string-strip-html: - specifier: ^13.4.8 - version: 13.4.8 - unpdf: - specifier: ^0.11.0 - version: 0.11.0(encoding@0.1.13) weaviate-client: specifier: ^3.1.4 version: 3.1.4(encoding@0.1.13) @@ -806,15 +797,12 @@ importers: specifier: ^3.23.8 version: 3.23.8 devDependencies: - '@notionhq/client': - specifier: ^2.2.15 - version: 2.2.15(encoding@0.1.13) '@swc/cli': specifier: ^0.4.0 - version: 0.4.0(@swc/core@1.7.22(@swc/helpers@0.5.13))(chokidar@3.6.0) + version: 0.4.0(@swc/core@1.7.36(@swc/helpers@0.5.13))(chokidar@3.6.0) '@swc/core': specifier: ^1.7.22 - version: 1.7.22(@swc/helpers@0.5.13) + version: 1.7.36(@swc/helpers@0.5.13) '@vercel/postgres': specifier: ^0.10.0 version: 0.10.0 @@ -838,7 +826,7 @@ importers: version: 3.4.4 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 packages/llamaindex/e2e: devDependencies: @@ -847,7 +835,7 @@ importers: version: 9.0.1 '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 consola: specifier: ^3.2.3 version: 3.2.3 @@ -869,7 +857,7 @@ importers: devDependencies: '@cloudflare/vitest-pool-workers': specifier: ^0.5.8 - version: 0.5.8(@cloudflare/workers-types@4.20240924.0)(@vitest/runner@2.1.1)(@vitest/snapshot@2.1.1)(bufferutil@4.0.8)(vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0)) + version: 0.5.8(@cloudflare/workers-types@4.20240924.0)(@vitest/runner@2.1.1)(@vitest/snapshot@2.1.1)(bufferutil@4.0.8)(vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0)) '@cloudflare/workers-types': specifier: ^4.20240924.0 version: 4.20240924.0 @@ -881,10 +869,10 @@ importers: version: 2.1.1 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 vitest: specifier: 2.1.1 - version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0) + version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) wrangler: specifier: ^3.78.8 version: 3.78.8(@cloudflare/workers-types@4.20240924.0)(bufferutil@4.0.8) @@ -897,19 +885,19 @@ importers: devDependencies: typescript: specifier: ^5.5.3 - version: 5.6.2 + version: 5.6.3 vite: specifier: ^5.4.1 - version: 5.4.2(@types/node@22.7.8)(terser@5.36.0) + version: 5.4.9(@types/node@22.8.1)(terser@5.36.0) vite-plugin-wasm: specifier: ^3.3.0 - version: 3.3.0(vite@5.4.2(@types/node@22.7.8)(terser@5.36.0)) + version: 3.3.0(vite@5.4.9(@types/node@22.8.1)(terser@5.36.0)) packages/llamaindex/e2e/examples/nextjs-agent: dependencies: ai: specifier: ^3.3.21 - version: 3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.0.2))(svelte@5.0.2)(vue@3.5.12(typescript@5.6.2))(zod@3.23.8) + version: 3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.0.2))(svelte@5.0.2)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8) llamaindex: specifier: workspace:* version: link:../../.. @@ -925,7 +913,7 @@ importers: devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -937,16 +925,16 @@ importers: version: 8.57.0 eslint-config-next: specifier: 14.2.11 - version: 14.2.11(eslint@8.57.0)(typescript@5.6.2) + version: 14.2.11(eslint@8.57.0)(typescript@5.6.3) postcss: specifier: ^8.4.41 - version: 8.4.41 + version: 8.4.47 tailwindcss: specifier: ^3.4.10 - version: 3.4.10 + version: 3.4.14 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 packages/llamaindex/e2e/examples/nextjs-edge-runtime: dependencies: @@ -965,7 +953,7 @@ importers: devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -974,7 +962,7 @@ importers: version: 18.3.1 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 packages/llamaindex/e2e/examples/nextjs-node-runtime: dependencies: @@ -993,7 +981,7 @@ importers: devDependencies: '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 '@types/react': specifier: ^18.3.12 version: 18.3.12 @@ -1005,16 +993,16 @@ importers: version: 8.57.0 eslint-config-next: specifier: 14.2.11 - version: 14.2.11(eslint@8.57.0)(typescript@5.6.2) + version: 14.2.11(eslint@8.57.0)(typescript@5.6.3) postcss: specifier: ^8.4.41 - version: 8.4.41 + version: 8.4.47 tailwindcss: specifier: ^3.4.10 - version: 3.4.10 + version: 3.4.14 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 packages/llamaindex/e2e/examples/waku-query-engine: dependencies: @@ -1032,7 +1020,7 @@ importers: version: 19.0.0-rc-bf7e210c-20241017(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react@19.0.0-rc-bf7e210c-20241017)(webpack@5.95.0) waku: specifier: 0.21.4 - version: 0.21.4(@swc/helpers@0.5.13)(@types/node@22.7.8)(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react-server-dom-webpack@19.0.0-rc-bf7e210c-20241017(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react@19.0.0-rc-bf7e210c-20241017)(webpack@5.95.0))(react@19.0.0-rc-bf7e210c-20241017)(terser@5.36.0) + version: 0.21.4(@swc/helpers@0.5.13)(@types/node@22.8.1)(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react-server-dom-webpack@19.0.0-rc-bf7e210c-20241017(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react@19.0.0-rc-bf7e210c-20241017)(webpack@5.95.0))(react@19.0.0-rc-bf7e210c-20241017)(terser@5.36.0) devDependencies: '@types/react': specifier: 18.3.11 @@ -1060,10 +1048,10 @@ importers: version: link:.. msw: specifier: ^2.4.8 - version: 2.4.8(typescript@5.6.3) + version: 2.4.11(typescript@5.6.3) vitest: specifier: ^2.0.5 - version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.8(typescript@5.6.3))(terser@5.36.0) + version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) packages/providers/anthropic: dependencies: @@ -1230,6 +1218,58 @@ importers: specifier: 5.5.1 version: 5.5.1(typescript@5.6.3) + packages/readers: + dependencies: + '@discordjs/rest': + specifier: ^2.3.0 + version: 2.3.0 + '@discoveryjs/json-ext': + specifier: ^0.6.1 + version: 0.6.1 + assemblyai: + specifier: ^4.7.0 + version: 4.7.0(bufferutil@4.0.8) + csv-parse: + specifier: ^5.5.6 + version: 5.5.6 + discord-api-types: + specifier: ^0.37.98 + version: 0.37.98 + mammoth: + specifier: ^1.7.2 + version: 1.8.0 + mongodb: + specifier: ^6.7.0 + version: 6.8.0(@aws-sdk/credential-providers@3.675.0) + notion-md-crawler: + specifier: ^1.0.0 + version: 1.0.0(encoding@0.1.13) + papaparse: + specifier: ^5.4.1 + version: 5.4.1 + unpdf: + specifier: ^0.11.0 + version: 0.11.0(encoding@0.1.13) + devDependencies: + '@llamaindex/core': + specifier: workspace:* + version: link:../core + '@llamaindex/env': + specifier: workspace:* + version: link:../env + '@types/node': + specifier: ^22.8.1 + version: 22.8.1 + bunchee: + specifier: 5.5.1 + version: 5.5.1(typescript@5.6.3) + p-limit: + specifier: ^6.1.0 + version: 6.1.0 + string-strip-html: + specifier: ^13.4.8 + version: 13.4.8 + packages/wasm-tools: dependencies: '@assemblyscript/loader': @@ -1237,20 +1277,42 @@ importers: version: 0.27.29 '@types/node': specifier: ^22.5.1 - version: 22.5.4 + version: 22.8.1 devDependencies: '@swc/cli': specifier: ^0.4.0 - version: 0.4.0(@swc/core@1.7.22(@swc/helpers@0.5.13))(chokidar@3.6.0) + version: 0.4.0(@swc/core@1.7.36(@swc/helpers@0.5.13))(chokidar@3.6.0) '@swc/core': specifier: ^1.7.22 - version: 1.7.22(@swc/helpers@0.5.13) + version: 1.7.36(@swc/helpers@0.5.13) assemblyscript: specifier: ^0.27.27 version: 0.27.29 typescript: specifier: ^5.6.2 - version: 5.6.2 + version: 5.6.3 + + unit: + dependencies: + '@llamaindex/cloud': + specifier: workspace:* + version: link:../packages/cloud + '@llamaindex/readers': + specifier: workspace:* + version: link:../packages/readers + llamaindex: + specifier: workspace:* + version: link:../packages/llamaindex + devDependencies: + '@faker-js/faker': + specifier: ^9.0.1 + version: 9.0.1 + msw: + specifier: ^2.4.8 + version: 2.4.11(typescript@5.6.3) + vitest: + specifier: ^2.0.5 + version: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) packages: @@ -1456,18 +1518,10 @@ packages: resolution: {integrity: sha512-+FY4LEUG4JJZRLGb0U1JZ+qnUcrGSRd5+//bVZuPKOkSUzAiPijba9KajfYh2jSiXzDhPOmCKxVP+thwAsbJaQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-cognito-identity@3.650.0': - resolution: {integrity: sha512-ng9Ta7emTgIAnUW52wi2KcNbAudGQPiXuPKJwtw67WQei3gHMpxvgCCRXP7AiB+LyB/fBURxraDkO5N+sPZp0w==} - engines: {node: '>=16.0.0'} - '@aws-sdk/client-cognito-identity@3.675.0': resolution: {integrity: sha512-KgYweyJyEa1UADd8p0JMDz+8OIbxcYDCCy7wdhlQ4GBDzJtEUYNeqQ+C+FNRkAafanYHlLBTHA8fyD1EDlQ3Tw==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sagemaker@3.650.0': - resolution: {integrity: sha512-jto48RtbDHPL5zs0tNoFj4TyRan0IHnaBEOz99e8h+k9W8XVpr8YqyAa3ElfB0lSbAl8T4oFQRGU90D38y6O6A==} - engines: {node: '>=16.0.0'} - '@aws-sdk/client-sagemaker@3.678.0': resolution: {integrity: sha512-/5lHRkBn7Ii4EkctE7BdAXxtU6jn5QsrE3yK7QyxOhbCccLq8GRLTSawqI9DxkM6RtUH9nPPDjm3rpka/jiorQ==} engines: {node: '>=16.0.0'} @@ -1478,12 +1532,6 @@ packages: peerDependencies: '@aws-sdk/client-sts': ^3.637.0 - '@aws-sdk/client-sso-oidc@3.650.0': - resolution: {integrity: sha512-6J7IS0f8ovhvbIAZaynOYP+jPX8344UlTjwHxjaXHgFvI8axu3+NslKtEEV5oHLhgzDvrKbinsu5lgE2n4Sqng==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sts': ^3.650.0 - '@aws-sdk/client-sso-oidc@3.654.0': resolution: {integrity: sha512-gbHrKsEnaAtmkNCVQzLyiqMzpDaThV/bWl/ODEklI+t6stW3Pe3oDMstEHLfJ6JU5g8sYnx4VLuxlnJMtUkvPw==} engines: {node: '>=16.0.0'} @@ -1502,12 +1550,14 @@ packages: peerDependencies: '@aws-sdk/client-sts': ^3.678.0 - '@aws-sdk/client-sso@3.637.0': - resolution: {integrity: sha512-+KjLvgX5yJYROWo3TQuwBJlHCY0zz9PsLuEolmXQn0BVK1L/m9GteZHtd+rEdAoDGBpE0Xqjy1oz5+SmtsaRUw==} + '@aws-sdk/client-sso-oidc@3.679.0': + resolution: {integrity: sha512-/dBYWcCwbA/id4sFCIVZvf0UsvzHCC68SryxeNQk/PDkY9N4n5yRcMUkZDaEyQCjowc3kY4JOXp2AdUP037nhA==} engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sts': ^3.679.0 - '@aws-sdk/client-sso@3.650.0': - resolution: {integrity: sha512-YKm14gCMChD/jlCisFlsVqB8HJujR41bl4Fup2crHwNJxhD/9LTnzwMiVVlBqlXr41Sfa6fSxczX2AMP8NM14A==} + '@aws-sdk/client-sso@3.637.0': + resolution: {integrity: sha512-+KjLvgX5yJYROWo3TQuwBJlHCY0zz9PsLuEolmXQn0BVK1L/m9GteZHtd+rEdAoDGBpE0Xqjy1oz5+SmtsaRUw==} engines: {node: '>=16.0.0'} '@aws-sdk/client-sso@3.654.0': @@ -1522,12 +1572,12 @@ packages: resolution: {integrity: sha512-5Fg2BkR1En8iBbiZ18STvLDGPK9Re5MyCmX+hfIhQzPsEf1FRkAkOluEXX79aBva8iWn2oCD/xKBUku4x3eusw==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sts@3.637.0': - resolution: {integrity: sha512-xUi7x4qDubtA8QREtlblPuAcn91GS/09YVEY/RwU7xCY0aqGuFwgszAANlha4OUIqva8oVj2WO4gJuG+iaSnhw==} + '@aws-sdk/client-sso@3.679.0': + resolution: {integrity: sha512-/0cAvYnpOZTo/Y961F1kx2fhDDLUYZ0SQQ5/75gh3xVImLj7Zw+vp74ieqFbqWLYGMaq8z1Arr9A8zG95mbLdg==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sts@3.650.0': - resolution: {integrity: sha512-ISK0ZQYA7O5/WYgslpWy956lUBudGC9d7eL0FFbiL0j50N80Gx3RUv22ezvZgxJWE0W3DqNr4CE19sPYn4Lw8g==} + '@aws-sdk/client-sts@3.637.0': + resolution: {integrity: sha512-xUi7x4qDubtA8QREtlblPuAcn91GS/09YVEY/RwU7xCY0aqGuFwgszAANlha4OUIqva8oVj2WO4gJuG+iaSnhw==} engines: {node: '>=16.0.0'} '@aws-sdk/client-sts@3.654.0': @@ -1546,10 +1596,6 @@ packages: resolution: {integrity: sha512-i1x/E/sgA+liUE1XJ7rj1dhyXpAKO1UKFUcTTHXok2ARjWTvszHnSXMOsB77aPbmn0fUp1JTx2kHUAZ1LVt5Bg==} engines: {node: '>=16.0.0'} - '@aws-sdk/core@3.649.0': - resolution: {integrity: sha512-dheG/X2y25RHE7K+TlS32kcy7TgDg1OpWV44BQRoE0OBPAWmFR1D1qjjTZ7WWrdqRPKzcnDj1qED8ncyncOX8g==} - engines: {node: '>=16.0.0'} - '@aws-sdk/core@3.654.0': resolution: {integrity: sha512-4Rwx7BVaNaFqmXBDmnOkMbyuIFFbpZ+ru4lr660p45zY1QoNNSalechfoRffcokLFOZO+VWEJkdcorPUUU993w==} engines: {node: '>=16.0.0'} @@ -1562,8 +1608,8 @@ packages: resolution: {integrity: sha512-ZTzybFZqSaPQymgRkTl08vk6xilaxr8LnJOc0h3KhcHLK4TJmdOcxqPpa6QxrBKcn2rmxzGiPRbAHLGI+BIxBw==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-cognito-identity@3.650.0': - resolution: {integrity: sha512-QwtRKWKE6vv78Be3Lm5GmFkSl2DGWSOXPZYgkbo8GsD6SP0ParUvJvUE8wsPS5c4tUXC9KuvJAwYAYNFN10Fnw==} + '@aws-sdk/core@3.679.0': + resolution: {integrity: sha512-CS6PWGX8l4v/xyvX8RtXnBisdCa5+URzKd0L6GvHChype9qKUVxO/Gg6N/y43Hvg7MNWJt9FBPNWIxUB+byJwg==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-cognito-identity@3.675.0': @@ -1574,10 +1620,6 @@ packages: resolution: {integrity: sha512-ExuILJ2qLW5ZO+rgkNRj0xiAipKT16Rk77buvPP8csR7kkCflT/gXTyzRe/uzIiETTxM7tr8xuO9MP/DQXqkfg==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-env@3.649.0': - resolution: {integrity: sha512-tViwzM1dauksA3fdRjsg0T8mcHklDa8EfveyiQKK6pUJopkqV6FQx+X5QNda0t/LrdEVlFZvwHNdXqOEfc83TA==} - engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-env@3.654.0': resolution: {integrity: sha512-kogsx3Ql81JouHS7DkheCDU9MYAvK0AokxjcshDveGmf7BbgbWCA8Fnb9wjQyNDaOXNvkZu8Z8rgkX91z324/w==} engines: {node: '>=16.0.0'} @@ -1590,12 +1632,12 @@ packages: resolution: {integrity: sha512-29uhXAB7uJqHtvJ2U3pi1YkMfv0WefW9EmSMoFAunjudXXBVktwTlWg0lyCM+KHrGKLkQyfs5UF/A9IelS8tdQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-http@3.635.0': - resolution: {integrity: sha512-iJyRgEjOCQlBMXqtwPLIKYc7Bsc6nqjrZybdMDenPDa+kmLg7xh8LxHsu9088e+2/wtLicE34FsJJIfzu3L82g==} + '@aws-sdk/credential-provider-env@3.679.0': + resolution: {integrity: sha512-EdlTYbzMm3G7VUNAMxr9S1nC1qUNqhKlAxFU8E7cKsAe8Bp29CD5HAs3POc56AVo9GC4yRIS+/mtlZSmrckzUA==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-http@3.649.0': - resolution: {integrity: sha512-ODAJ+AJJq6ozbns6ejGbicpsQ0dyMOpnGlg0J9J0jITQ05DKQZ581hdB8APDOZ9N8FstShP6dLZflSj8jb5fNA==} + '@aws-sdk/credential-provider-http@3.635.0': + resolution: {integrity: sha512-iJyRgEjOCQlBMXqtwPLIKYc7Bsc6nqjrZybdMDenPDa+kmLg7xh8LxHsu9088e+2/wtLicE34FsJJIfzu3L82g==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-http@3.654.0': @@ -1610,18 +1652,16 @@ packages: resolution: {integrity: sha512-EvpmP0nc7ddRp0qwJOSu0uBXa+MMk4+OLlyEJcdaHnZI4/BoyVWr5fJUD5eQYZk11LZPZSvnsliYXWwLyVNXHQ==} engines: {node: '>=16.0.0'} + '@aws-sdk/credential-provider-http@3.679.0': + resolution: {integrity: sha512-ZoKLubW5DqqV1/2a3TSn+9sSKg0T8SsYMt1JeirnuLJF0mCoYFUaWMyvxxKuxPoqvUsaycxKru4GkpJ10ltNBw==} + engines: {node: '>=16.0.0'} + '@aws-sdk/credential-provider-ini@3.637.0': resolution: {integrity: sha512-h+PFCWfZ0Q3Dx84SppET/TFpcQHmxFW8/oV9ArEvMilw4EBN+IlxgbL0CnHwjHW64szcmrM0mbebjEfHf4FXmw==} engines: {node: '>=16.0.0'} peerDependencies: '@aws-sdk/client-sts': ^3.637.0 - '@aws-sdk/credential-provider-ini@3.650.0': - resolution: {integrity: sha512-x2M9buZxIsKuUbuDgkGHhAKYBpn0/rYdKlwuFuOhXyyAcnhvPj0lgNF2KE4ld/GF1mKr7FF/uV3G9lM6PFaYmA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sts': ^3.650.0 - '@aws-sdk/credential-provider-ini@3.654.0': resolution: {integrity: sha512-DKSdaNu2hwdmuvnm9KnA0NLqMWxxmxSOLWjSUSoFIm++wGXUjPrRMFYKvMktaXnPuyf5my8gF/yGbwzPZ8wlTg==} engines: {node: '>=16.0.0'} @@ -1640,12 +1680,14 @@ packages: peerDependencies: '@aws-sdk/client-sts': ^3.678.0 - '@aws-sdk/credential-provider-node@3.637.0': - resolution: {integrity: sha512-yoEhoxJJfs7sPVQ6Is939BDQJZpZCoUgKr/ySse4YKOZ24t4VqgHA6+wV7rYh+7IW24Rd91UTvEzSuHYTlxlNA==} + '@aws-sdk/credential-provider-ini@3.679.0': + resolution: {integrity: sha512-Rg7t8RwUzKcumpipG4neZqaeJ6DF+Bco1+FHn5BZB68jpvwvjBjcQUuWkxj18B6ctYHr1fkunnzeKEn/+vy7+w==} engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sts': ^3.679.0 - '@aws-sdk/credential-provider-node@3.650.0': - resolution: {integrity: sha512-uBra5YjzS/gWSekAogfqJfY6c+oKQkkou7Cjc4d/cpMNvQtF1IBdekJ7NaE1RfsDEz3uH1+Myd07YWZAJo/2Qw==} + '@aws-sdk/credential-provider-node@3.637.0': + resolution: {integrity: sha512-yoEhoxJJfs7sPVQ6Is939BDQJZpZCoUgKr/ySse4YKOZ24t4VqgHA6+wV7rYh+7IW24Rd91UTvEzSuHYTlxlNA==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-node@3.654.0': @@ -1660,12 +1702,12 @@ packages: resolution: {integrity: sha512-KGRBVD/oNr/aD+Wy5zc5AjfeSv5b4ahAu5eAUbOz+eGjGpGgrMtjY+R2rDY/3i3wFj9/DvOIfFGeZQMwtDzIuA==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-process@3.620.1': - resolution: {integrity: sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg==} + '@aws-sdk/credential-provider-node@3.679.0': + resolution: {integrity: sha512-E3lBtaqCte8tWs6Rkssc8sLzvGoJ10TLGvpkijOlz43wPd6xCRh1YLwg6zolf9fVFtEyUs/GsgymiASOyxhFtw==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-process@3.649.0': - resolution: {integrity: sha512-6VYPQpEVpU+6DDS/gLoI40ppuNM5RPIEprK30qZZxnhTr5wyrGOeJ7J7wbbwPOZ5dKwta290BiJDU2ipV8Y9BQ==} + '@aws-sdk/credential-provider-process@3.620.1': + resolution: {integrity: sha512-hWqFMidqLAkaV9G460+1at6qa9vySbjQKKc04p59OT7lZ5cO5VH5S4aI05e+m4j364MBROjjk2ugNvfNf/8ILg==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-process@3.654.0': @@ -1680,12 +1722,12 @@ packages: resolution: {integrity: sha512-5TpzzHKwPOvUJig0bvTt+brtXfLPaSVLwea9re+XGrS5T6Hz65IaX2RL6uY1GQ0UVOqgwQ5nAti1WOfBoSJ5BA==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-sso@3.637.0': - resolution: {integrity: sha512-Mvz+h+e62/tl+dVikLafhv+qkZJ9RUb8l2YN/LeKMWkxQylPT83CPk9aimVhCV89zth1zpREArl97+3xsfgQvA==} + '@aws-sdk/credential-provider-process@3.679.0': + resolution: {integrity: sha512-u/p4TV8kQ0zJWDdZD4+vdQFTMhkDEJFws040Gm113VHa/Xo1SYOjbpvqeuFoz6VmM0bLvoOWjxB9MxnSQbwKpQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-sso@3.650.0': - resolution: {integrity: sha512-069nkhcwximbvyGiAC6Fr2G+yrG/p1S3NQ5BZ2cMzB1hgUKo6TvgFK7nriYI4ljMQ+UWxqPwIdTqiUmn2iJmhg==} + '@aws-sdk/credential-provider-sso@3.637.0': + resolution: {integrity: sha512-Mvz+h+e62/tl+dVikLafhv+qkZJ9RUb8l2YN/LeKMWkxQylPT83CPk9aimVhCV89zth1zpREArl97+3xsfgQvA==} engines: {node: '>=16.0.0'} '@aws-sdk/credential-provider-sso@3.654.0': @@ -1700,18 +1742,16 @@ packages: resolution: {integrity: sha512-PXydLUsLYd1rkhZ7zwf0613u5sofxIEhh7C1QGP1MSY3L1jt8bu7pZIcMzubfvmaGZI5k84aHhhjQEiAJUxIMg==} engines: {node: '>=16.0.0'} + '@aws-sdk/credential-provider-sso@3.679.0': + resolution: {integrity: sha512-SAtWonhi9asxn0ukEbcE81jkyanKgqpsrtskvYPpO9Z9KOednM4Cqt6h1bfcS9zaHjN2zu815Gv8O7WiV+F/DQ==} + engines: {node: '>=16.0.0'} + '@aws-sdk/credential-provider-web-identity@3.621.0': resolution: {integrity: sha512-w7ASSyfNvcx7+bYGep3VBgC3K6vEdLmlpjT7nSIHxxQf+WSdvy+HynwJosrpZax0sK5q0D1Jpn/5q+r5lwwW6w==} engines: {node: '>=16.0.0'} peerDependencies: '@aws-sdk/client-sts': ^3.621.0 - '@aws-sdk/credential-provider-web-identity@3.649.0': - resolution: {integrity: sha512-XVk3WsDa0g3kQFPmnCH/LaCtGY/0R2NDv7gscYZSXiBZcG/fixasglTprgWSp8zcA0t7tEIGu9suyjz8ZwhymQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sts': ^3.649.0 - '@aws-sdk/credential-provider-web-identity@3.654.0': resolution: {integrity: sha512-6a2g9gMtZToqSu+CusjNK5zvbLJahQ9di7buO3iXgbizXpLXU1rnawCpWxwslMpT5fLgMSKDnKDrr6wdEk7jSw==} engines: {node: '>=16.0.0'} @@ -1730,9 +1770,11 @@ packages: peerDependencies: '@aws-sdk/client-sts': ^3.678.0 - '@aws-sdk/credential-providers@3.650.0': - resolution: {integrity: sha512-e99xHtzfL3fwS5j2gzMXRikoux/vNO3JKlxYSTnz/yfcReYRtRIz4iNrbqOzYFIQFlPS11ToXXXcwl6FOzNM7Q==} + '@aws-sdk/credential-provider-web-identity@3.679.0': + resolution: {integrity: sha512-a74tLccVznXCaBefWPSysUcLXYJiSkeUmQGtalNgJ1vGkE36W5l/8czFiiowdWdKWz7+x6xf0w+Kjkjlj42Ung==} engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sts': ^3.679.0 '@aws-sdk/credential-providers@3.675.0': resolution: {integrity: sha512-gaUPTiBX9SliPHYlOJnW7mEmHlZp/j7mMGtyx2pSK3Qt+t7d3sObILGt+p6zl7QewUFOwDav1AsLS3U9V6VAYQ==} @@ -1742,10 +1784,6 @@ packages: resolution: {integrity: sha512-VMtPEZwqYrII/oUkffYsNWY9PZ9xpNJpMgmyU0rlDQ25O1c0Hk3fJmZRe6pEkAJ0omD7kLrqGl1DUjQVxpd/Rg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-host-header@3.649.0': - resolution: {integrity: sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==} - engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-host-header@3.654.0': resolution: {integrity: sha512-rxGgVHWKp8U2ubMv+t+vlIk7QYUaRCHaVpmUlJv0Wv6Q0KeO9a42T9FxHphjOTlCGQOLcjCreL9CF8Qhtb4mdQ==} engines: {node: '>=16.0.0'} @@ -1754,12 +1792,12 @@ packages: resolution: {integrity: sha512-Z7fIAMQnPegs7JjAQvlOeWXwpMRfegh5eCoIP6VLJIeR6DLfYKbP35JBtt98R6DXslrN2RsbTogjbxPEDQfw1w==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-logger@3.609.0': - resolution: {integrity: sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ==} + '@aws-sdk/middleware-host-header@3.679.0': + resolution: {integrity: sha512-y176HuQ8JRY3hGX8rQzHDSbCl9P5Ny9l16z4xmaiLo+Qfte7ee4Yr3yaAKd7GFoJ3/Mhud2XZ37fR015MfYl2w==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-logger@3.649.0': - resolution: {integrity: sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==} + '@aws-sdk/middleware-logger@3.609.0': + resolution: {integrity: sha512-S62U2dy4jMDhDFDK5gZ4VxFdWzCtLzwbYyFZx2uvPYTECkepLUfzLic2BHg2Qvtu4QjX+oGE3P/7fwaGIsGNuQ==} engines: {node: '>=16.0.0'} '@aws-sdk/middleware-logger@3.654.0': @@ -1770,12 +1808,12 @@ packages: resolution: {integrity: sha512-PtTRNpNm/5c746jRgZCNg4X9xEJIwggkGJrF0GP9AB1ANg4pc/sF2Fvn1NtqPe9wtQ2stunJprnm5WkCHN7QiA==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-recursion-detection@3.620.0': - resolution: {integrity: sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w==} + '@aws-sdk/middleware-logger@3.679.0': + resolution: {integrity: sha512-0vet8InEj7nvIvGKk+ch7bEF5SyZ7Us9U7YTEgXPrBNStKeRUsgwRm0ijPWWd0a3oz2okaEwXsFl7G/vI0XiEA==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-recursion-detection@3.649.0': - resolution: {integrity: sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==} + '@aws-sdk/middleware-recursion-detection@3.620.0': + resolution: {integrity: sha512-nh91S7aGK3e/o1ck64sA/CyoFw+gAYj2BDOnoNa6ouyCrVJED96ZXWbhye/fz9SgmNUZR2g7GdVpiLpMKZoI5w==} engines: {node: '>=16.0.0'} '@aws-sdk/middleware-recursion-detection@3.654.0': @@ -1786,12 +1824,12 @@ packages: resolution: {integrity: sha512-U5glWD3ehFohzpUpopLtmqAlDurGWo2wRGPNgi4SwhWU7UDt6LS7E/UvJjqC0CUrjlzOw+my2A+Ncf+fisMhxQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-user-agent@3.637.0': - resolution: {integrity: sha512-EYo0NE9/da/OY8STDsK2LvM4kNa79DBsf4YVtaG4P5pZ615IeFsD8xOHZeuJmUrSMlVQ8ywPRX7WMucUybsKug==} + '@aws-sdk/middleware-recursion-detection@3.679.0': + resolution: {integrity: sha512-sQoAZFsQiW/LL3DfKMYwBoGjYDEnMbA9WslWN8xneCmBAwKo6IcSksvYs23PP8XMIoBGe2I2J9BSr654XWygTQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-user-agent@3.649.0': - resolution: {integrity: sha512-q6sO10dnCXoxe9thobMJxekhJumzd1j6dxcE1+qJdYKHJr6yYgWbogJqrLCpWd30w0lEvnuAHK8lN2kWLdJxJw==} + '@aws-sdk/middleware-user-agent@3.637.0': + resolution: {integrity: sha512-EYo0NE9/da/OY8STDsK2LvM4kNa79DBsf4YVtaG4P5pZ615IeFsD8xOHZeuJmUrSMlVQ8ywPRX7WMucUybsKug==} engines: {node: '>=16.0.0'} '@aws-sdk/middleware-user-agent@3.654.0': @@ -1806,6 +1844,10 @@ packages: resolution: {integrity: sha512-tg9cC5COgGP0cznD2ys9kxPtVeKUygPZshDWXLAfA/cH/4m2ZUBvoEVv1SxkIbvOjnPwa976rdPLQUwRZvsL0g==} engines: {node: '>=16.0.0'} + '@aws-sdk/middleware-user-agent@3.679.0': + resolution: {integrity: sha512-4hdeXhPDURPqQLPd9jCpUEo9fQITXl3NM3W1MwcJpE0gdUM36uXkQOYsTPeeU/IRCLVjK8Htlh2oCaM9iJrLCA==} + engines: {node: '>=16.0.0'} + '@aws-sdk/protocol-http@3.374.0': resolution: {integrity: sha512-9WpRUbINdGroV3HiZZIBoJvL2ndoWk39OfwxWs2otxByppJZNN14bg/lvCx5e8ggHUti7IBk5rb0nqQZ4m05pg==} engines: {node: '>=14.0.0'} @@ -1815,10 +1857,6 @@ packages: resolution: {integrity: sha512-vDCeMXvic/LU0KFIUjpC3RiSTIkkvESsEfbVHiHH0YINfl8HnEqR5rj+L8+phsCeVg2+LmYwYxd5NRz4PHxt5g==} engines: {node: '>=16.0.0'} - '@aws-sdk/region-config-resolver@3.649.0': - resolution: {integrity: sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==} - engines: {node: '>=16.0.0'} - '@aws-sdk/region-config-resolver@3.654.0': resolution: {integrity: sha512-ydGOrXJxj3x0sJhsXyTmvJVLAE0xxuTWFJihTl67RtaO7VRNtd82I3P3bwoMMaDn5WpmV5mPo8fEUDRlBm3fPg==} engines: {node: '>=16.0.0'} @@ -1827,6 +1865,10 @@ packages: resolution: {integrity: sha512-iNr+JhhA902JMKHG9IwT9YdaEx6KGl6vjAL5BRNeOjfj4cZYMog6Lz/IlfOAltMtT0w88DAHDEFrBd2uO0l2eg==} engines: {node: '>=16.0.0'} + '@aws-sdk/region-config-resolver@3.679.0': + resolution: {integrity: sha512-Ybx54P8Tg6KKq5ck7uwdjiKif7n/8g1x+V0V9uTjBjRWqaIgiqzXwKWoPj6NCNkE7tJNtqI4JrNxp/3S3HvmRw==} + engines: {node: '>=16.0.0'} + '@aws-sdk/signature-v4@3.374.0': resolution: {integrity: sha512-2xLJvSdzcZZAg0lsDLUAuSQuihzK0dcxIK7WmfuJeF7DGKJFmp9czQmz5f3qiDz6IDQzvgK1M9vtJSVCslJbyQ==} engines: {node: '>=14.0.0'} @@ -1838,12 +1880,6 @@ packages: peerDependencies: '@aws-sdk/client-sso-oidc': ^3.614.0 - '@aws-sdk/token-providers@3.649.0': - resolution: {integrity: sha512-ZBqr+JuXI9RiN+4DSZykMx5gxpL8Dr3exIfFhxMiwAP3DQojwl0ub8ONjMuAjq9OvmX6n+jHZL6fBnNgnNFC8w==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sso-oidc': ^3.649.0 - '@aws-sdk/token-providers@3.654.0': resolution: {integrity: sha512-D8GeJYmvbfWkQDtTB4owmIobSMexZel0fOoetwvgCQ/7L8VPph3Q2bn1TRRIXvH7wdt6DcDxA3tKMHPBkT3GlA==} engines: {node: '>=16.0.0'} @@ -1856,12 +1892,14 @@ packages: peerDependencies: '@aws-sdk/client-sso-oidc': ^3.667.0 - '@aws-sdk/types@3.609.0': - resolution: {integrity: sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q==} + '@aws-sdk/token-providers@3.679.0': + resolution: {integrity: sha512-1/+Zso/x2jqgutKixYFQEGli0FELTgah6bm7aB+m2FAWH4Hz7+iMUsazg6nSWm714sG9G3h5u42Dmpvi9X6/hA==} engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sso-oidc': ^3.679.0 - '@aws-sdk/types@3.649.0': - resolution: {integrity: sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==} + '@aws-sdk/types@3.609.0': + resolution: {integrity: sha512-+Tqnh9w0h2LcrUsdXyT1F8mNhXz+tVYBtP19LpeEGntmvHwa2XzvLUCWpoIAIVsHp5+HdB2X9Sn0KAtmbFXc2Q==} engines: {node: '>=16.0.0'} '@aws-sdk/types@3.654.0': @@ -1872,12 +1910,12 @@ packages: resolution: {integrity: sha512-gYq0xCsqFfQaSL/yT1Gl1vIUjtsg7d7RhnUfsXaHt8xTxOKRTdH9GjbesBjXOzgOvB0W0vfssfreSNGFlOOMJg==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-endpoints@3.637.0': - resolution: {integrity: sha512-pAqOKUHeVWHEXXDIp/qoMk/6jyxIb6GGjnK1/f8dKHtKIEs4tKsnnL563gceEvdad53OPXIt86uoevCcCzmBnw==} + '@aws-sdk/types@3.679.0': + resolution: {integrity: sha512-NwVq8YvInxQdJ47+zz4fH3BRRLC6lL+WLkvr242PVBbUOLRyK/lkwHlfiKUoeVIMyK5NF+up6TRg71t/8Bny6Q==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-endpoints@3.649.0': - resolution: {integrity: sha512-bZI1Wc3R/KibdDVWFxX/N4AoJFG4VJ92Dp4WYmOrVD6VPkb8jPz7ZeiYc7YwPl8NoDjYyPneBV0lEoK/V8OKAA==} + '@aws-sdk/util-endpoints@3.637.0': + resolution: {integrity: sha512-pAqOKUHeVWHEXXDIp/qoMk/6jyxIb6GGjnK1/f8dKHtKIEs4tKsnnL563gceEvdad53OPXIt86uoevCcCzmBnw==} engines: {node: '>=16.0.0'} '@aws-sdk/util-endpoints@3.654.0': @@ -1888,6 +1926,10 @@ packages: resolution: {integrity: sha512-X22SYDAuQJWnkF1/q17pkX3nGw5XMD9YEUbmt87vUnRq7iyJ3JOpl6UKOBeUBaL838wA5yzdbinmCITJ/VZ1QA==} engines: {node: '>=16.0.0'} + '@aws-sdk/util-endpoints@3.679.0': + resolution: {integrity: sha512-YL6s4Y/1zC45OvddvgE139fjeWSKKPgLlnfrvhVL7alNyY9n7beR4uhoDpNrt5mI6sn9qiBF17790o+xLAXjjg==} + engines: {node: '>=16.0.0'} + '@aws-sdk/util-locate-window@3.568.0': resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==} engines: {node: '>=16.0.0'} @@ -1895,15 +1937,15 @@ packages: '@aws-sdk/util-user-agent-browser@3.609.0': resolution: {integrity: sha512-fojPU+mNahzQ0YHYBsx0ZIhmMA96H+ZIZ665ObU9tl+SGdbLneVZVikGve+NmHTQwHzwkFsZYYnVKAkreJLAtA==} - '@aws-sdk/util-user-agent-browser@3.649.0': - resolution: {integrity: sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==} - '@aws-sdk/util-user-agent-browser@3.654.0': resolution: {integrity: sha512-ykYAJqvnxLt7wfrqya28wuH3/7NdrwzfiFd7NqEVQf7dXVxL5RPEpD7DxjcyQo3DsHvvdUvGZVaQhozycn1pzA==} '@aws-sdk/util-user-agent-browser@3.675.0': resolution: {integrity: sha512-HW4vGfRiX54RLcsYjLuAhcBBJ6lRVEZd7njfGpAwBB9s7BH8t48vrpYbyA5XbbqbTvXfYBnugQCUw9HWjEa1ww==} + '@aws-sdk/util-user-agent-browser@3.679.0': + resolution: {integrity: sha512-CusSm2bTBG1kFypcsqU8COhnYc6zltobsqs3nRrvYqYaOqtMnuE46K4XTWpnzKgwDejgZGOE+WYyprtAxrPvmQ==} + '@aws-sdk/util-user-agent-node@3.614.0': resolution: {integrity: sha512-15ElZT88peoHnq5TEoEtZwoXTXRxNrk60TZNdpl/TUBJ5oNJ9Dqb5Z4ryb8ofN6nm9aFf59GVAerFDz8iUoHBA==} engines: {node: '>=16.0.0'} @@ -1913,8 +1955,8 @@ packages: aws-crt: optional: true - '@aws-sdk/util-user-agent-node@3.649.0': - resolution: {integrity: sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==} + '@aws-sdk/util-user-agent-node@3.654.0': + resolution: {integrity: sha512-a0ojjdBN6pqv6gB4H/QPPSfhs7mFtlVwnmKCM/QrTaFzN0U810PJ1BST3lBx5sa23I5jWHGaoFY+5q65C3clLQ==} engines: {node: '>=16.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -1922,8 +1964,8 @@ packages: aws-crt: optional: true - '@aws-sdk/util-user-agent-node@3.654.0': - resolution: {integrity: sha512-a0ojjdBN6pqv6gB4H/QPPSfhs7mFtlVwnmKCM/QrTaFzN0U810PJ1BST3lBx5sa23I5jWHGaoFY+5q65C3clLQ==} + '@aws-sdk/util-user-agent-node@3.669.0': + resolution: {integrity: sha512-9jxCYrgggy2xd44ZASqI7AMiRVaSiFp+06Kg8BQSU0ijKpBJlwcsqIS8pDT/n6LxuOw2eV5ipvM2C0r1iKzrGA==} engines: {node: '>=16.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -1931,8 +1973,8 @@ packages: aws-crt: optional: true - '@aws-sdk/util-user-agent-node@3.669.0': - resolution: {integrity: sha512-9jxCYrgggy2xd44ZASqI7AMiRVaSiFp+06Kg8BQSU0ijKpBJlwcsqIS8pDT/n6LxuOw2eV5ipvM2C0r1iKzrGA==} + '@aws-sdk/util-user-agent-node@3.678.0': + resolution: {integrity: sha512-bKRemCdHMPAlEYE9KuQiMQG9/b4n8C+9DlJAL/X00Q7Zvm9Gv6h0+i5EZ+Xx8sbHq5oUv9a4W4tb+nkUZ0ltpw==} engines: {node: '>=16.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -1940,8 +1982,8 @@ packages: aws-crt: optional: true - '@aws-sdk/util-user-agent-node@3.678.0': - resolution: {integrity: sha512-bKRemCdHMPAlEYE9KuQiMQG9/b4n8C+9DlJAL/X00Q7Zvm9Gv6h0+i5EZ+Xx8sbHq5oUv9a4W4tb+nkUZ0ltpw==} + '@aws-sdk/util-user-agent-node@3.679.0': + resolution: {integrity: sha512-Bw4uXZ+NU5ed6TNfo4tBbhBSW+2eQxXYjYBGl5gLUNUpg2pDFToQAP6rXBFiwcG52V2ny5oLGiD82SoYuYkAVg==} engines: {node: '>=16.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -2000,10 +2042,6 @@ packages: resolution: {integrity: sha512-sijfzPNorKt6+9g1/miHwhj6Iapff4mPQx1azmmZExgzUROqWTM1o3ACyxDja0g47VpowFy/sxTM/WsuCyXTiw==} engines: {node: '>=16'} - '@babel/code-frame@7.24.7': - resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} - engines: {node: '>=6.9.0'} - '@babel/code-frame@7.25.7': resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} engines: {node: '>=6.9.0'} @@ -2091,18 +2129,10 @@ packages: resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.25.7': - resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} - engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.25.9': resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.7': - resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} - engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.9': resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} @@ -2119,24 +2149,10 @@ packages: resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.24.7': - resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} - engines: {node: '>=6.9.0'} - '@babel/highlight@7.25.7': resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} engines: {node: '>=6.9.0'} - '@babel/parser@7.25.6': - resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/parser@7.25.8': - resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==} - engines: {node: '>=6.0.0'} - hasBin: true - '@babel/parser@7.25.9': resolution: {integrity: sha512-aI3jjAAO1fh7vY/pBGsn1i9LDbRP43+asrRlkPuTXW5yHXtd1NgTEMudbBoDDxrf1daEEfPJqR+JBMakzrR4Dg==} engines: {node: '>=6.0.0'} @@ -2676,14 +2692,6 @@ packages: resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==} engines: {node: '>=6.9.0'} - '@babel/types@7.25.6': - resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.25.8': - resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==} - engines: {node: '>=6.9.0'} - '@babel/types@7.25.9': resolution: {integrity: sha512-OwS2CM5KocvQ/k7dFJa8i5bNGJP0hXWfVCfDkqRFP1IreH1JDC7wG6eCYCi0+McbfT8OR/kNqsI0UU0xP9H6PQ==} engines: {node: '>=6.9.0'} @@ -3605,10 +3613,6 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.11.0': - resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint-community/regexpp@4.11.1': resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -3975,10 +3979,6 @@ packages: '@mongodb-js/saslprep@1.1.7': resolution: {integrity: sha512-dCHW/oEX0KJ4NjDULBo3JiOaK5+6axtpBbS+ao2ZInoAL9/YRQLhXzSNAFz7hP4nzLkIqsfYAK/PDE3+XHny0Q==} - '@mswjs/interceptors@0.35.6': - resolution: {integrity: sha512-PpD687w7qLxVMK176bpQjbzU9O0VC75QnBK5U1lKd29s4hIuxfTItUD6raNKyQ6BN8b64/8HE34RuYTkwH9uPQ==} - engines: {node: '>=18'} - '@mswjs/interceptors@0.35.9': resolution: {integrity: sha512-SSnyl/4ni/2ViHKkiZb8eajA/eN1DNFaHjhGiLUdZvDz6PKF4COSf/17xqSz64nOo2Ia29SA6B2KNCsyCbVmaQ==} engines: {node: '>=18'} @@ -4001,9 +4001,6 @@ packages: '@next/eslint-plugin-next@14.2.11': resolution: {integrity: sha512-7mw+xW7Y03Ph4NTCcAzYe+vu4BNjEHZUfZayyF3Y1D9RX6c5NIe25m1grHEAkyUuaqjRxOYhnCNeglOkIqLkBA==} - '@next/eslint-plugin-next@14.2.7': - resolution: {integrity: sha512-+7xh142AdhZGjY9/L0iFo7mqRBMJHe+q+uOL+hto1Lfo9DeWCGcR6no4StlFbVSVcA6fQLKEX6y6qhMsSKbgNQ==} - '@next/swc-darwin-arm64@14.2.11': resolution: {integrity: sha512-eiY9u7wEJZWp/Pga07Qy3ZmNEfALmmSS1HtsJF3y1QEyaExu7boENz11fWqDmZ3uvcyAxCMhTrA1jfVxITQW8g==} engines: {node: '>= 10'} @@ -4970,161 +4967,81 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.21.2': - resolution: {integrity: sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==} - cpu: [arm] - os: [android] - '@rollup/rollup-android-arm-eabi@4.24.0': resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.21.2': - resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==} + '@rollup/rollup-android-arm64@4.24.0': + resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==} cpu: [arm64] os: [android] - '@rollup/rollup-android-arm64@4.24.0': - resolution: {integrity: sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-darwin-arm64@4.21.2': - resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==} - cpu: [arm64] - os: [darwin] - '@rollup/rollup-darwin-arm64@4.24.0': resolution: {integrity: sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.21.2': - resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==} - cpu: [x64] - os: [darwin] - '@rollup/rollup-darwin-x64@4.24.0': resolution: {integrity: sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.21.2': - resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-gnueabihf@4.24.0': resolution: {integrity: sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.21.2': - resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==} - cpu: [arm] - os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.24.0': resolution: {integrity: sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.21.2': - resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.24.0': resolution: {integrity: sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.21.2': - resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==} - cpu: [arm64] - os: [linux] - '@rollup/rollup-linux-arm64-musl@4.24.0': resolution: {integrity: sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': - resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==} - cpu: [ppc64] - os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': resolution: {integrity: sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.21.2': - resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==} - cpu: [riscv64] - os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.24.0': resolution: {integrity: sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.21.2': - resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==} - cpu: [s390x] - os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.24.0': resolution: {integrity: sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.21.2': - resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-gnu@4.24.0': resolution: {integrity: sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.21.2': - resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==} - cpu: [x64] - os: [linux] - '@rollup/rollup-linux-x64-musl@4.24.0': resolution: {integrity: sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.21.2': - resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==} - cpu: [arm64] - os: [win32] - '@rollup/rollup-win32-arm64-msvc@4.24.0': resolution: {integrity: sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.21.2': - resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==} - cpu: [ia32] - os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.24.0': resolution: {integrity: sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.21.2': - resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==} - cpu: [x64] - os: [win32] - '@rollup/rollup-win32-x64-msvc@4.24.0': resolution: {integrity: sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==} cpu: [x64] @@ -5203,14 +5120,6 @@ packages: '@slorber/remark-comment@1.0.0': resolution: {integrity: sha512-RCE24n7jsOj1M0UPvIQCHTe7fI0sFL4S2nwKVWwHyVr/wI/H8GosgsJGyhnsZoGFnD/P2hLf1mSbrrgSLN93NA==} - '@smithy/abort-controller@3.1.3': - resolution: {integrity: sha512-N28xAvipNX+pAMzp1RzluF+lONj3rwlhN0b+PziEIB1RcajwcfG9yDY29J/OK1As7BIR6L8HR59mUg3ZpwOQuw==} - engines: {node: '>=16.0.0'} - - '@smithy/abort-controller@3.1.4': - resolution: {integrity: sha512-VupaALAQlXViW3/enTf/f5l5JZYSAxoJL7f0nanhNNKnww6DGCg1oYIuNP78KDugnkwthBO6iEcym16HhWV8RQ==} - engines: {node: '>=16.0.0'} - '@smithy/abort-controller@3.1.6': resolution: {integrity: sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==} engines: {node: '>=16.0.0'} @@ -5219,34 +5128,10 @@ packages: resolution: {integrity: sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==} engines: {node: '>=16.0.0'} - '@smithy/config-resolver@3.0.7': - resolution: {integrity: sha512-xSmaL89IdF5yUtJYy6Y4brxTnK7irFDKagTlrCvdPlJKZq1M+OMfvUlhxbxRM4T2RPgxtFQvacWbtRX+6vldPw==} - engines: {node: '>=16.0.0'} - - '@smithy/config-resolver@3.0.8': - resolution: {integrity: sha512-Tv1obAC18XOd2OnDAjSWmmthzx6Pdeh63FbLin8MlPiuJ2ATpKkq0NcNOJFr0dO+JmZXnwu8FQxKJ3TKJ3Hulw==} - engines: {node: '>=16.0.0'} - - '@smithy/core@2.4.2': - resolution: {integrity: sha512-/+KSeo2DMYnkep9/qYNyLMZ/44ETq0Q2aG2MOkh6zNi48GYZsDNxJl6HxVXrIbAVyzDEcQi39KKcOrICGWXENw==} - engines: {node: '>=16.0.0'} - - '@smithy/core@2.4.5': - resolution: {integrity: sha512-Z0qlPXgZ0pouYgnu/cZTEYeRAvniiKZmVl4wIbZHX/nEMHkMDV9ao6KFArsU9KndE0TuhL149xcRx45wfw1YCA==} - engines: {node: '>=16.0.0'} - '@smithy/core@2.5.1': resolution: {integrity: sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==} engines: {node: '>=16.0.0'} - '@smithy/credential-provider-imds@3.2.2': - resolution: {integrity: sha512-Dz9k4XgRqUTTKODVfqEYQGVmS9cC7/HSkZADqojC/sBi5Dpu2eiBn/cZQX/buHfbyxtm5gMdmH+MoPz6Uz2JnA==} - engines: {node: '>=16.0.0'} - - '@smithy/credential-provider-imds@3.2.3': - resolution: {integrity: sha512-VoxMzSzdvkkjMJNE38yQgx4CfnmT+Z+5EUXkg4x7yag93eQkVQgZvN3XBSHC/ylfBbLbAtdu7flTCChX9I+mVg==} - engines: {node: '>=16.0.0'} - '@smithy/credential-provider-imds@3.2.5': resolution: {integrity: sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==} engines: {node: '>=16.0.0'} @@ -5254,74 +5139,35 @@ packages: '@smithy/eventstream-codec@1.1.0': resolution: {integrity: sha512-3tEbUb8t8an226jKB6V/Q2XU/J53lCwCzULuBPEaF4JjSh+FlCMp7TmogE/Aij5J9DwlsZ4VAD/IRDuQ/0ZtMw==} - '@smithy/eventstream-codec@3.1.2': - resolution: {integrity: sha512-0mBcu49JWt4MXhrhRAlxASNy0IjDRFU+aWNDRal9OtUJvJNiwDuyKMUONSOjLjSCeGwZaE0wOErdqULer8r7yw==} - '@smithy/eventstream-codec@3.1.5': resolution: {integrity: sha512-6pu+PT2r+5ZnWEV3vLV1DzyrpJ0TmehQlniIDCSpZg6+Ji2SfOI38EqUyQ+O8lotVElCrfVc9chKtSMe9cmCZQ==} - '@smithy/eventstream-serde-browser@3.0.6': - resolution: {integrity: sha512-2hM54UWQUOrki4BtsUI1WzmD13/SeaqT/AB3EUJKbcver/WgKNaiJ5y5F5XXuVe6UekffVzuUDrBZVAA3AWRpQ==} - engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-browser@3.0.9': resolution: {integrity: sha512-PiQLo6OQmZAotJweIcObL1H44gkvuJACKMNqpBBe5Rf2Ax1DOcGi/28+feZI7yTe1ERHlQQaGnm8sSkyDUgsMg==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-config-resolver@3.0.3': - resolution: {integrity: sha512-NVTYjOuYpGfrN/VbRQgn31x73KDLfCXCsFdad8DiIc3IcdxL+dYA9zEQPyOP7Fy2QL8CPy2WE4WCUD+ZsLNfaQ==} - engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-config-resolver@3.0.6': resolution: {integrity: sha512-iew15It+c7WfnVowWkt2a7cdPp533LFJnpjDQgfZQcxv2QiOcyEcea31mnrk5PVbgo0nNH3VbYGq7myw2q/F6A==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-node@3.0.5': - resolution: {integrity: sha512-+upXvnHNyZP095s11jF5dhGw/Ihzqwl5G+/KtMnoQOpdfC3B5HYCcDVG9EmgkhJMXJlM64PyN5gjJl0uXFQehQ==} - engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-node@3.0.8': resolution: {integrity: sha512-6m+wI+fT0na+6oao6UqALVA38fsScCpoG5UO/A8ZSyGLnPM2i4MS1cFUhpuALgvLMxfYoTCh7qSeJa0aG4IWpQ==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-universal@3.0.5': - resolution: {integrity: sha512-5u/nXbyoh1s4QxrvNre9V6vfyoLWuiVvvd5TlZjGThIikc3G+uNiG9uOTCWweSRjv1asdDIWK7nOmN7le4RYHQ==} - engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-universal@3.0.8': resolution: {integrity: sha512-09tqzIQ6e+7jLqGvRji1yJoDbL/zob0OFhq75edgStWErGLf16+yI5hRc/o9/YAybOhUZs/swpW2SPn892G5Gg==} engines: {node: '>=16.0.0'} - '@smithy/fetch-http-handler@3.2.6': - resolution: {integrity: sha512-Pll8H4B+Wr52MZ89MgM0MjTFWoTVGmYR3GqDec3QJT1TM2NvqfWnhHkNP/ryp1M6i4AZ9V638V0tDkbE1YHcHA==} - - '@smithy/fetch-http-handler@3.2.8': - resolution: {integrity: sha512-Lqe0B8F5RM7zkw//6avq1SJ8AfaRd3ubFUS1eVp5WszV7p6Ne5hQ4dSuMHDpNRPhgTvj4va9Kd/pcVigHEHRow==} - '@smithy/fetch-http-handler@3.2.9': resolution: {integrity: sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==} '@smithy/fetch-http-handler@4.0.0': resolution: {integrity: sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==} - '@smithy/hash-node@3.0.5': - resolution: {integrity: sha512-pF984y7JCgChaesAWZDDcpJ+e2ocdQDaSDBTpWrm6t/tSUIpAbPhH3PjcXSwBpaK7tZNNkKaLWKeWH9TEhyfOA==} - engines: {node: '>=16.0.0'} - - '@smithy/hash-node@3.0.6': - resolution: {integrity: sha512-c/FHEdKK/7DU2z6ZE91L36ahyXWayR3B+FzELjnYq7wH5YqIseM24V+pWCS9kFn1Ln8OFGTf+pyYPiHZuX0s/Q==} - engines: {node: '>=16.0.0'} - '@smithy/hash-node@3.0.8': resolution: {integrity: sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==} engines: {node: '>=16.0.0'} - '@smithy/invalid-dependency@3.0.5': - resolution: {integrity: sha512-SMdamleWUZm456jWMreY+A9zkLb19Ih4vsxYKrmaXT1hnxpRAbpFPqyLKXyMFyR4hMY/8E3K25RDKSwIwpnSMg==} - - '@smithy/invalid-dependency@3.0.6': - resolution: {integrity: sha512-czM7Ioq3s8pIXht7oD+vmgy4Wfb4XavU/k/irO8NdXFFOx7YAlsCCcKOh/lJD1mJSYQqiR7NmpZ9JviryD/7AQ==} - '@smithy/invalid-dependency@3.0.8': resolution: {integrity: sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==} @@ -5341,94 +5187,30 @@ packages: resolution: {integrity: sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==} engines: {node: '>=16.0.0'} - '@smithy/middleware-content-length@3.0.7': - resolution: {integrity: sha512-l4qjyXWmkiP/kQ9xdDaA1YA08n0TbHhKwKnaPYY+IbXUHVYGf+Xvrp3A+FXzIUocf462Ia1z+V4oB0jyZEVBHw==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-content-length@3.0.8': - resolution: {integrity: sha512-VuyszlSO49WKh3H9/kIO2kf07VUwGV80QRiaDxUfP8P8UKlokz381ETJvwLhwuypBYhLymCYyNhB3fLAGBX2og==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-endpoint@3.1.2': - resolution: {integrity: sha512-V1LfiPWTtbRHbvXuY+8BNxRnyakDpsALQh/bG1by1AqFJ3U4D3La6pJbjO+/wsmGOq439KBbqshRbiLKsUGVzA==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-endpoint@3.1.3': - resolution: {integrity: sha512-KeM/OrK8MVFUsoJsmCN0MZMVPjKKLudn13xpgwIMpGTYpA8QZB2Xq5tJ+RE6iu3A6NhOI4VajDTwBsm8pwwrhg==} - engines: {node: '>=16.0.0'} - '@smithy/middleware-endpoint@3.2.1': resolution: {integrity: sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==} engines: {node: '>=16.0.0'} - '@smithy/middleware-retry@3.0.17': - resolution: {integrity: sha512-svh6QUiS0hDpOvRIW0qSaNlAekEME+J56qpqPJXdS27s7blaXTS+Xsu2iTZyuIsdwOI3q33s5Y880qDoKFWfaw==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-retry@3.0.20': - resolution: {integrity: sha512-HELCOVwYw5hFDBm69d+LmmGjBCjWnwp/t7SJiHmp+c4u9vgfIaCjdSeIdnlOsLrr5ic5jGTJXvJFUQnd987b/g==} - engines: {node: '>=16.0.0'} - '@smithy/middleware-retry@3.0.25': resolution: {integrity: sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==} engines: {node: '>=16.0.0'} - '@smithy/middleware-serde@3.0.5': - resolution: {integrity: sha512-H6oR6f/InBwQDzfYjUwfi32NRuqeXWThba0NBF96MOPOmkYtlYGeVn1SZYvM4k0J9WgjfIiUp1wIahyGBSk+WA==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-serde@3.0.6': - resolution: {integrity: sha512-KKTUSl1MzOM0MAjGbudeaVNtIDo+PpekTBkCNwvfZlKndodrnvRo+00USatiyLOc0ujjO9UydMRu3O9dYML7ag==} - engines: {node: '>=16.0.0'} - '@smithy/middleware-serde@3.0.8': resolution: {integrity: sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==} engines: {node: '>=16.0.0'} - '@smithy/middleware-stack@3.0.5': - resolution: {integrity: sha512-wW9JfmsInpaCAfZx2aHELOQJzgMI+CZBh0KTLpPnKgNOkEr6zRwoMl3su7aSGCkeKc6vuF+J0s67fL1IHrhs6w==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-stack@3.0.6': - resolution: {integrity: sha512-2c0eSYhTQ8xQqHMcRxLMpadFbTXg6Zla5l0mwNftFCZMQmuhI7EbAJMx6R5eqfuV3YbJ3QGyS3d5uSmrHV8Khg==} - engines: {node: '>=16.0.0'} - '@smithy/middleware-stack@3.0.8': resolution: {integrity: sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==} engines: {node: '>=16.0.0'} - '@smithy/node-config-provider@3.1.6': - resolution: {integrity: sha512-JoX4+FeqNzrSxwpwvBMv8L7J/kKTVCgkZIzBJbgGPj4T74iO11qzU0/BWF5Bepmu+GY4M31EZYRZdFMGdR6Rsg==} - engines: {node: '>=16.0.0'} - - '@smithy/node-config-provider@3.1.7': - resolution: {integrity: sha512-g3mfnC3Oo8pOI0dYuPXLtdW1WGVb3bR2tkV21GNkm0ZvQjLTtamXAwCWt/FCb0HGvKt3gHHmF1XerG0ICfalOg==} - engines: {node: '>=16.0.0'} - '@smithy/node-config-provider@3.1.9': resolution: {integrity: sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==} engines: {node: '>=16.0.0'} - '@smithy/node-http-handler@3.2.1': - resolution: {integrity: sha512-n/XdrtuYPxXBJ0IcA8ftEwgGupNG/ToVwigtna0hdJvpaZ6H2Dnt6IyEGI6Tw/z7haKkP6+F5ALnpdqjFyfn4g==} - engines: {node: '>=16.0.0'} - - '@smithy/node-http-handler@3.2.3': - resolution: {integrity: sha512-/gcm5DJ3k1b1zEInzBGAZC8ntJ+jwrz1NcSIu+9dSXd1FfG0G6QgkDI40tt8/WYUbHtLyo8fEqtm2v29koWo/w==} - engines: {node: '>=16.0.0'} - '@smithy/node-http-handler@3.2.5': resolution: {integrity: sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==} engines: {node: '>=16.0.0'} - '@smithy/property-provider@3.1.5': - resolution: {integrity: sha512-2B8s9aZ3MKphuM+hUauPApbKslldIa+Lk2ITqDOko7rpUcq6lEsR4wKUd/SvNXI1NHTKfQmncFvArlYhuSZ1nw==} - engines: {node: '>=16.0.0'} - - '@smithy/property-provider@3.1.6': - resolution: {integrity: sha512-NK3y/T7Q/Bw+Z8vsVs9MYIQ5v7gOX7clyrXcwhhIBQhbPgRl6JDrZbusO9qWDhcEus75Tg+VCxtIRfo3H76fpw==} - engines: {node: '>=16.0.0'} - '@smithy/property-provider@3.1.8': resolution: {integrity: sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==} engines: {node: '>=16.0.0'} @@ -5437,62 +5219,22 @@ packages: resolution: {integrity: sha512-GfGfruksi3nXdFok5RhgtOnWe5f6BndzYfmEXISD+5gAGdayFGpjWu5pIqIweTudMtse20bGbc+7MFZXT1Tb8Q==} engines: {node: '>=14.0.0'} - '@smithy/protocol-http@4.1.2': - resolution: {integrity: sha512-PyzdqhVOJOUjxE9BpyBVSVU/HKiekW+ZAy47RktIIH2nmtXr8uUXAifFzkInCNhlToXidLrMaaayqH7+s0MMcA==} - engines: {node: '>=16.0.0'} - - '@smithy/protocol-http@4.1.3': - resolution: {integrity: sha512-GcbMmOYpH9iRqtC05RbRnc/0FssxSTHlmaNhYBTgSgNCYpdR3Kt88u5GAZTBmouzv+Zlj/VRv92J9ruuDeJuEw==} - engines: {node: '>=16.0.0'} - '@smithy/protocol-http@4.1.5': resolution: {integrity: sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==} engines: {node: '>=16.0.0'} - '@smithy/querystring-builder@3.0.5': - resolution: {integrity: sha512-4s9s07WUv8mQI4SGVqcMoAI+Q1tlY7BqC8FSgl3BD43rpCOKDzeZt+NASJJi/PAldE3Y3nEenIWbOIR1iLdmeg==} - engines: {node: '>=16.0.0'} - - '@smithy/querystring-builder@3.0.6': - resolution: {integrity: sha512-sQe08RunoObe+Usujn9+R2zrLuQERi3CWvRO3BvnoWSYUaIrLKuAIeY7cMeDax6xGyfIP3x/yFWbEKSXvOnvVg==} - engines: {node: '>=16.0.0'} - '@smithy/querystring-builder@3.0.8': resolution: {integrity: sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==} engines: {node: '>=16.0.0'} - '@smithy/querystring-parser@3.0.5': - resolution: {integrity: sha512-T6Jiz5T7ul5heQct4qugQ3O2M84nT4doKtO0/yfqUGGoUgmn3qejZVRcbGlQq2yZM2XbbJpkMtjqND5UpTMKcg==} - engines: {node: '>=16.0.0'} - - '@smithy/querystring-parser@3.0.6': - resolution: {integrity: sha512-UJKw4LlEkytzz2Wq+uIdHf6qOtFfee/o7ruH0jF5I6UAuU+19r9QV7nU3P/uI0l6+oElRHmG/5cBBcGJrD7Ozg==} - engines: {node: '>=16.0.0'} - '@smithy/querystring-parser@3.0.8': resolution: {integrity: sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==} engines: {node: '>=16.0.0'} - '@smithy/service-error-classification@3.0.5': - resolution: {integrity: sha512-xpKPZExnbOqbvl18hAPuY5V1KRn+xx19SLaH3O2/2889FoJjPS/Fxr4SlsszQnSuurBxNh5+XcxgHMjS9YCdmw==} - engines: {node: '>=16.0.0'} - - '@smithy/service-error-classification@3.0.6': - resolution: {integrity: sha512-53SpchU3+DUZrN7J6sBx9tBiCVGzsib2e4sc512Q7K9fpC5zkJKs6Z9s+qbMxSYrkEkle6hnMtrts7XNkMJJMg==} - engines: {node: '>=16.0.0'} - '@smithy/service-error-classification@3.0.8': resolution: {integrity: sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==} engines: {node: '>=16.0.0'} - '@smithy/shared-ini-file-loader@3.1.6': - resolution: {integrity: sha512-SzKpWzFiwwUOVuNRgbrl+VT3Ca8oi5gjEH7bBYUBreDorr1/M8uK90Jt1+mG2IDPbFcGBSe/90xceLuaTx8a7Q==} - engines: {node: '>=16.0.0'} - - '@smithy/shared-ini-file-loader@3.1.7': - resolution: {integrity: sha512-IA4K2qTJYXkF5OfVN4vsY1hfnUZjaslEE8Fsr/gGFza4TAC2A9NfnZuSY2srQIbt9bwtjHiAayrRVgKse4Q7fA==} - engines: {node: '>=16.0.0'} - '@smithy/shared-ini-file-loader@3.1.9': resolution: {integrity: sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==} engines: {node: '>=16.0.0'} @@ -5501,26 +5243,10 @@ packages: resolution: {integrity: sha512-fDo3m7YqXBs7neciOePPd/X9LPm5QLlDMdIC4m1H6dgNLnXfLMFNIxEfPyohGA8VW9Wn4X8lygnPSGxDZSmp0Q==} engines: {node: '>=14.0.0'} - '@smithy/signature-v4@4.1.2': - resolution: {integrity: sha512-JmazVi14qD6/LBHARoZY24UY0hG2YsMBXHph/Hh05Z3m0cwvJE9EpbkyEr/m16SespUDldE3Y9Gk733D1T5W9g==} - engines: {node: '>=16.0.0'} - - '@smithy/signature-v4@4.1.4': - resolution: {integrity: sha512-72MiK7xYukNsnLJI9NqvUHqTu0ziEsfMsYNlWpiJfuGQnCTFKpckThlEatirvcA/LmT1h7rRO+pJD06PYsPu9Q==} - engines: {node: '>=16.0.0'} - '@smithy/signature-v4@4.2.1': resolution: {integrity: sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==} engines: {node: '>=16.0.0'} - '@smithy/smithy-client@3.3.1': - resolution: {integrity: sha512-5BvfTGflaAinZ+MoNJT9x6v8RKc+hWwUTJYtEs0CbxF9w9DVH3rQ9y94vZgMjuePC2lgjMi+og2bt5gGGfvK5A==} - engines: {node: '>=16.0.0'} - - '@smithy/smithy-client@3.3.4': - resolution: {integrity: sha512-NKw/2XxOW/Rg3rzB90HxsmGok5oS6vRzJgMh/JN4BHaOQQ4q5OuX999GmOGxEp730wbpIXIowfKZmIMXkG4v0Q==} - engines: {node: '>=16.0.0'} - '@smithy/smithy-client@3.4.2': resolution: {integrity: sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==} engines: {node: '>=16.0.0'} @@ -5529,24 +5255,10 @@ packages: resolution: {integrity: sha512-z1r00TvBqF3dh4aHhya7nz1HhvCg4TRmw51fjMrh5do3h+ngSstt/yKlNbHeb9QxJmFbmN8KEVSWgb1bRvfEoA==} engines: {node: '>=14.0.0'} - '@smithy/types@3.4.1': - resolution: {integrity: sha512-8sySrPnBJdFUX0/hJUGhOWyHR+QRbaCGPlfeNjoCYIQDvsAUtPrnz2fHXHvixiUkCB3Rb9BsL2VP2HdAMnitYQ==} - engines: {node: '>=16.0.0'} - - '@smithy/types@3.4.2': - resolution: {integrity: sha512-tHiFcfcVedVBHpmHUEUHOCCih8iZbIAYn9NvPsNzaPm/237I3imdDdZoOC8c87H5HBAVEa06tTgb+OcSWV9g5w==} - engines: {node: '>=16.0.0'} - '@smithy/types@3.6.0': resolution: {integrity: sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==} engines: {node: '>=16.0.0'} - '@smithy/url-parser@3.0.5': - resolution: {integrity: sha512-JJ+zHce2xlSz4MbWz82fbMQv8Ye5cr3dcQJati6mtaoxWyZ/UpLlBRAzvpui6v08hNUBjinhELCEXK0GQjT5Mw==} - - '@smithy/url-parser@3.0.6': - resolution: {integrity: sha512-47Op/NU8Opt49KyGpHtVdnmmJMsp2hEwBdyjuFB9M2V5QVOwA7pBhhxKN5z6ztKGrMw76gd8MlbPuzzvaAncuQ==} - '@smithy/url-parser@3.0.8': resolution: {integrity: sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==} @@ -5577,38 +5289,14 @@ packages: resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==} engines: {node: '>=16.0.0'} - '@smithy/util-defaults-mode-browser@3.0.17': - resolution: {integrity: sha512-C/yA/iKFX3YP2sCs57gA4YythCwrMgKz6qmLXzJafG1H/D80AtiPxWeYHIUpgU8q0YcK5JMhLNtGihIJBC0aOg==} - engines: {node: '>= 10.0.0'} - - '@smithy/util-defaults-mode-browser@3.0.20': - resolution: {integrity: sha512-HpYmCpEThQJpCKzwzrGrklhdegRfuXI9keHRrHidbyEMliCdgic6t38MikJeZEkdIcEMhO1g95HIYMzjUzB+xg==} - engines: {node: '>= 10.0.0'} - '@smithy/util-defaults-mode-browser@3.0.25': resolution: {integrity: sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==} engines: {node: '>= 10.0.0'} - '@smithy/util-defaults-mode-node@3.0.17': - resolution: {integrity: sha512-33n7WdU5t/vNrgnKPf0BPHewkn+aMsYDAt5UfRVIV/0ILQ2lMXvRYnVakUjTJTig869rIJCUi5TVxtnB0DULiA==} - engines: {node: '>= 10.0.0'} - - '@smithy/util-defaults-mode-node@3.0.20': - resolution: {integrity: sha512-atdsHNtAX0rwTvRRGsrONU0C0XzapH6tI8T1y/OReOvWN7uBwXqqWRft6m8egU2DgeReU0xqT3PHdGCe5VRaaQ==} - engines: {node: '>= 10.0.0'} - '@smithy/util-defaults-mode-node@3.0.25': resolution: {integrity: sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==} engines: {node: '>= 10.0.0'} - '@smithy/util-endpoints@2.1.1': - resolution: {integrity: sha512-WKc6zr4xyhBdnYxhDKSbqxMlS+QFoF6n9bRK7l1t2hlyDrv/hZBMNBNsxWzkGRbv5Iwak+fp+fLjBnLUtVO11A==} - engines: {node: '>=16.0.0'} - - '@smithy/util-endpoints@2.1.2': - resolution: {integrity: sha512-FEISzffb4H8DLzGq1g4MuDpcv6CIG15fXoQzDH9SjpRJv6h7J++1STFWWinilG0tQh9H1v2UKWG19Jjr2B16zQ==} - engines: {node: '>=16.0.0'} - '@smithy/util-endpoints@2.1.4': resolution: {integrity: sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==} engines: {node: '>=16.0.0'} @@ -5625,38 +5313,14 @@ packages: resolution: {integrity: sha512-6hhckcBqVgjWAqLy2vqlPZ3rfxLDhFWEmM7oLh2POGvsi7j0tHkbN7w4DFhuBExVJAbJ/qqxqZdRY6Fu7/OezQ==} engines: {node: '>=14.0.0'} - '@smithy/util-middleware@3.0.5': - resolution: {integrity: sha512-lG/lYcEJ4yUBm06iYpMHhepVH1xsMLb90/PpK5MqGjahTHVOHyzePHENv8OniN4aRiCjiow3E9tbSkAA3dCBSw==} - engines: {node: '>=16.0.0'} - - '@smithy/util-middleware@3.0.6': - resolution: {integrity: sha512-BxbX4aBhI1O9p87/xM+zWy0GzT3CEVcXFPBRDoHAM+pV0eSW156pR+PSYEz0DQHDMYDsYAflC2bQNz2uaDBUZQ==} - engines: {node: '>=16.0.0'} - '@smithy/util-middleware@3.0.8': resolution: {integrity: sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==} engines: {node: '>=16.0.0'} - '@smithy/util-retry@3.0.5': - resolution: {integrity: sha512-Ag4bJ465QbBB934DueeDVTzcI7Sl1SSk3i7gd8HeN/edA/v1a5Zk5eZx/DQkOYzCU5g+WoPr5ZpsRgZ2PaTCnA==} - engines: {node: '>=16.0.0'} - - '@smithy/util-retry@3.0.6': - resolution: {integrity: sha512-BRZiuF7IwDntAbevqMco67an0Sr9oLQJqqRCsSPZZHYRnehS0LHDAkJk/pSmI7Z8c/1Vet294H7fY2fWUgB+Rg==} - engines: {node: '>=16.0.0'} - '@smithy/util-retry@3.0.8': resolution: {integrity: sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==} engines: {node: '>=16.0.0'} - '@smithy/util-stream@3.1.5': - resolution: {integrity: sha512-/AHA21AjiIVVUJwX4G/c0Tqjg4DQ1fXgygaI2PTs2SDYurX8WUux+uZHPETo4cq3LyEeAlQi6bXSOeOlQzh11w==} - engines: {node: '>=16.0.0'} - - '@smithy/util-stream@3.1.8': - resolution: {integrity: sha512-hoKOqSmb8FD3WLObuB5hwbM7bNIWgcnvkThokTvVq7J5PKjlLUK5qQQcB9zWLHIoSaIlf3VIv2OxZY2wtQjcRQ==} - engines: {node: '>=16.0.0'} - '@smithy/util-stream@3.2.1': resolution: {integrity: sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==} engines: {node: '>=16.0.0'} @@ -5681,10 +5345,6 @@ packages: resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==} engines: {node: '>=16.0.0'} - '@smithy/util-waiter@3.1.4': - resolution: {integrity: sha512-E/Y0KegfQrlMK+4oyL+4BZbRWsKxd4IhYfi+5j835bzBNZ3Xe5g/NYDpY3Q88O3pdhJB+IXKolz+NNyNanSbAw==} - engines: {node: '>=16.0.0'} - '@smithy/util-waiter@3.1.7': resolution: {integrity: sha512-d5yGlQtmN/z5eoTtIYgkvOw27US2Ous4VycnXatyoImIF9tzlcpnKqQ/V7qhvJmb2p6xZne1NopCLakdTnkBBQ==} engines: {node: '>=16.0.0'} @@ -5778,135 +5438,66 @@ packages: chokidar: optional: true - '@swc/core-darwin-arm64@1.7.22': - resolution: {integrity: sha512-B2Bh2W+C7ALdGwDxRWAJ+UtNExfozvwyayGiNkbR3wmDKXXeQfhGM5MK+QYUWKu7UQ6ATq69OyZrxofDobKUug==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - '@swc/core-darwin-arm64@1.7.36': resolution: {integrity: sha512-8vDczXzCgv3ceTPhEivlpGprN44YlrCK1nbfU9g2TrhV/Aiqi09W/eM5zLesdoM1Z3mJl492gc/8nlTkpDdusw==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.7.22': - resolution: {integrity: sha512-s34UQntnQ6tL9hS9aX3xG7OfGhpmy05FEEndbHaooGO8O+L5k8uWxhE5KhYCOC0N803sGdZg6YZmKtYrWN/YxA==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - '@swc/core-darwin-x64@1.7.36': resolution: {integrity: sha512-Pa2Gao7+Wf5m3SsK4abKRtd48AtoUnJInvaC3d077swBfgZjbjUbQvcpdc2dOeQtWwo49rFqUZJonMsL0jnPgQ==} engines: {node: '>=10'} cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.7.22': - resolution: {integrity: sha512-SE69+oos1jLOXx5YdMH//Qc5zQc2xYukajB+0BWmkcFd/S/cCanGWYtdSzYausm8af2Fw1hPJMNIfndJLnBDFw==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - '@swc/core-linux-arm-gnueabihf@1.7.36': resolution: {integrity: sha512-3YsMWd7V+WZEjbfBnLkkz/olcRBa8nyoK0iIOnNARJBMcYaJxjkJSMZpmSojCnIVwvjA1N83CPAbUL+W+fCnHg==} engines: {node: '>=10'} cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.7.22': - resolution: {integrity: sha512-59FzDW/ojgiTj4dlnv3Z3ESuVlzhSAq9X12CNYh4/WTCNA8BoJqOnWMRQKspWtoNlnVviFLMvpek0pGXHndEBA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - '@swc/core-linux-arm64-gnu@1.7.36': resolution: {integrity: sha512-lqM3aBB7kJazJYOwHeA5OGNLqXoQPZ/76b3dV+XcjN1GhD0CcXz6mW5PRYVin6OSN1eKrKBKJjtDA1mqADDEvw==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.7.22': - resolution: {integrity: sha512-cMQMI8YRO/XR3OrYuiUlWksNsJOZSkA6gSLNyH6eHTw+FOAzv05oJ4SFYe6s1WesrOqRwhpez6y5H6OIP/EKzg==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - '@swc/core-linux-arm64-musl@1.7.36': resolution: {integrity: sha512-bqei2YDzvUfG0pth5W2xJaj0eG4XWYk0d/NJ75vBX6bkIzK6dC8iuKQ41jOfUWonnrAs7rTDDJW0sTn/evvRdw==} engines: {node: '>=10'} cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.7.22': - resolution: {integrity: sha512-639kA7MXrWqWYfwuSJ+XTg21VYb/5o99R1zJrndoEjEX6m7Wza/sXssQKU5jbbkPoSEKVKNP3n/gazLWiUKgiQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - '@swc/core-linux-x64-gnu@1.7.36': resolution: {integrity: sha512-03maXTUyaBjeCxlDltmdzHje1ryQt1C4OWmmNgSSRXjLb+GNnAenwOJMSrcvHP/aNClD2pwsFCnYKDGy+sYE6w==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.7.22': - resolution: {integrity: sha512-f3zfGgY8EJQUOk3ve25ZTkNkhB/kHo9QlN2r+0exaE1g9W7X8IS6J8pWzF3hJrV2P9dBi6ofMOt+opVA89JKHA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - '@swc/core-linux-x64-musl@1.7.36': resolution: {integrity: sha512-XXysqLkvjtQnXm1zHqLhy00UYPv/gk5OtwR732X+piNisnEbcJBqI8Qp9O7YvLWllRcoP8IMBGDWLGdGLSpViA==} engines: {node: '>=10'} cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.7.22': - resolution: {integrity: sha512-p/Fav5U+LtTJD/tbbS0dKK8SVVAhXo5Jdm1TDeBPJ4BEIVguYBZEXgD3CW9wY4K34g1hscpiz2Q2rktfhFj1+A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - '@swc/core-win32-arm64-msvc@1.7.36': resolution: {integrity: sha512-k7+dmb13a/zPw+E4XYfPmLZFWJgcOcBRKIjYl9nQErtYsgsg3Ji6TBbsvJVETy23lNHyewZ17V5Vq6NzaG0hzg==} engines: {node: '>=10'} cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.7.22': - resolution: {integrity: sha512-HbmfasaCNTqeCTvDjleYj+jJZQ6MlraiVOdhW55KtbA9mAVQdPBq6DDAvR7VOero3wUNYUM/e36otFKgEJI5Rg==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - '@swc/core-win32-ia32-msvc@1.7.36': resolution: {integrity: sha512-ridD3ay6YM2PEYHZXXFN+edYEv0FOynaqOBP+NSnGNHA35azItIjoIe+KNi4WltGtAjpKCHSpjGCNfna12wdYQ==} engines: {node: '>=10'} cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.7.22': - resolution: {integrity: sha512-lppIveE+hpe7WXny/9cUT+T6sBM/ND0E+dviKWJ5jFBISj2KWomlSJGUjYEsRGJVPnTEc8uOlKK7etmXBhQx9A==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - '@swc/core-win32-x64-msvc@1.7.36': resolution: {integrity: sha512-j1z2Z1Ln9d0E3dHsPkC1K9XDh0ojhRPwV+GfRTu4D61PE+aYhYLvbJC6xPvL4/204QrStRS7eDu3m+BcDp3rgQ==} engines: {node: '>=10'} cpu: [x64] os: [win32] - '@swc/core@1.7.22': - resolution: {integrity: sha512-Asn79WKqyjEuO2VEeSnVjn2YiRMToRhFJwOsQeqftBvwWMn1FGUuzVcXtkQFBk37si8Gh2Vkk/+p0u4K5NxDig==} - engines: {node: '>=10'} - peerDependencies: - '@swc/helpers': '*' - peerDependenciesMeta: - '@swc/helpers': - optional: true - '@swc/core@1.7.36': resolution: {integrity: sha512-bu7ymMX+LCJOSSrKank25Jaq66ymLVA9fOUuy4ck3/6rbXdLw+pIJPnIDKQ9uNcxww8KDxOuJk9Ui9pqR+aGFw==} engines: {node: '>=10'} @@ -6018,9 +5609,6 @@ packages: '@types/estree-jsx@1.0.5': resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} @@ -6114,17 +5702,14 @@ packages: '@types/node@18.19.57': resolution: {integrity: sha512-I2ioBd/IPrYDMv9UNR5NlPElOZ68QB7yY5V2EsLtSrTO0LM0PnCEFF9biLWHf5k+sIy4ohueCV9t4gk1AEdlVA==} - '@types/node@22.5.4': - resolution: {integrity: sha512-FDuKUJQm/ju9fT/SeX/6+gBzoPzlVCzfzmGkwKvRHQVxi4BntVbyIwf6a4Xn62mrvndLiml6z/UBXIdEVjQLXg==} - '@types/node@22.7.7': resolution: {integrity: sha512-SRxCrrg9CL/y54aiMCG3edPKdprgMVGDXjA3gB8UmmBW5TcXzRUYAh8EWzTnSJFAd1rgImPELza+A3bJ+qxz8Q==} '@types/node@22.7.8': resolution: {integrity: sha512-a922jJy31vqR5sk+kAdIENJjHblqcZ4RmERviFsER4WJcEONqxKcjNOlk0q7OUfrF5sddT+vng070cdfMlrPLg==} - '@types/papaparse@5.3.14': - resolution: {integrity: sha512-LxJ4iEFcpqc6METwp9f6BV6VVc43m6MfH0VqFosHvrUgfXiFe6ww7R3itkOQ+TCK6Y+Iv/+RnnvtRZnkc5Kc9g==} + '@types/node@22.8.1': + resolution: {integrity: sha512-k6Gi8Yyo8EtrNtkHXutUu2corfDf9su95VYVP10aGYMMROM6SAItZi0w1XszA6RtWTHSVp5OeFof37w0IEqCQg==} '@types/parse-json@4.0.2': resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} @@ -6138,9 +5723,6 @@ packages: '@types/prismjs@1.26.4': resolution: {integrity: sha512-rlAnzkW2sZOjbqZ743IHUhFcvzaGbqijwOu8QZnZCjfQzBqFE3s4lOTJEsxikImav9uzz/42I+O7YUs1mWgMlg==} - '@types/prop-types@15.7.12': - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - '@types/prop-types@15.7.13': resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==} @@ -6171,9 +5753,6 @@ packages: '@types/react@18.3.12': resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} - '@types/react@18.3.5': - resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==} - '@types/readable-stream@4.0.15': resolution: {integrity: sha512-oAZ3kw+kJFkEqyh7xORZOku1YAKvsFTogRY8kVl4vHpEKiDkfnSA/My8haRE7fvmix5Zyy+1pwzOi7yycGLBJw==} @@ -6272,24 +5851,10 @@ packages: typescript: optional: true - '@typescript-eslint/parser@8.10.0': - resolution: {integrity: sha512-E24l90SxuJhytWJ0pTQydFT46Nk0Z+bsLKo/L8rtQSL93rQ6byd1V/QbDpHUTdLPOMsBCcYXZweADNCfOCmOAg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - '@typescript-eslint/scope-manager@7.2.0': resolution: {integrity: sha512-Qh976RbQM/fYtjx9hs4XkayYujB/aPwglw2choHmf3zBjB4qOywWSdt9+KLRdHubGcoSwBnXUH2sR3hkyaERRg==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/scope-manager@8.10.0': - resolution: {integrity: sha512-AgCaEjhfql9MDKjMUxWvH7HjLeBqMCBfIaBbzzIcBbQPZE7CPh1m6FF+L75NUMJFMLYhCywJXIDEMa3//1A0dw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/scope-manager@8.3.0': resolution: {integrity: sha512-mz2X8WcN2nVu5Hodku+IR8GgCOl4C0G/Z1ruaWN4dgec64kDBabuXyPAr+/RgJtumv8EEkqIzf3X2U5DUKB2eg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -6321,10 +5886,6 @@ packages: resolution: {integrity: sha512-XFtUHPI/abFhm4cbCDc5Ykc8npOKBSJePY3a3s+lwumt7XWJuzP5cZcfZ610MIPHjQjNsOLlYK8ASPaNG8UiyA==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/types@8.10.0': - resolution: {integrity: sha512-k/E48uzsfJCRRbGLapdZgrX52csmWJ2rcowwPvOZ8lwPUv3xW6CcFeJAXgx4uJm+Ge4+a4tFOkdYvSpxhRhg1w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/types@8.3.0': resolution: {integrity: sha512-y6sSEeK+facMaAyixM36dQ5NVXTnKWunfD1Ft4xraYqxP0lC0POJmIaL/mw72CUMqjY9qfyVfXafMeaUj0noWw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -6347,15 +5908,6 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@8.10.0': - resolution: {integrity: sha512-3OE0nlcOHaMvQ8Xu5gAfME3/tWVDpb/HxtpUZ1WeOAksZ/h/gwrBzCklaGzwZT97/lBbbxJ16dMA98JMEngW4w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - '@typescript-eslint/typescript-estree@8.3.0': resolution: {integrity: sha512-Mq7FTHl0R36EmWlCJWojIC1qn/ZWo2YiWYc1XVtasJ7FIgjo0MVv9rZWXEE7IK2CGrtwe1dVOxWwqXUdNgfRCA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -6385,10 +5937,6 @@ packages: resolution: {integrity: sha512-c6EIQRHhcpl6+tO8EMR+kjkkV+ugUNXOmeASA1rlzkd8EPIriavpWoiEz1HR/VLhbVIdhqnV6E7JZm00cBDx2A==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/visitor-keys@8.10.0': - resolution: {integrity: sha512-k8nekgqwr7FadWk548Lfph6V3r9OVqjzAIVskE7orMZR23cGJjAOVazsZSJW+ElyjfTM4wx/1g88Mi70DDtG9A==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/visitor-keys@8.3.0': resolution: {integrity: sha512-RmZwrTbQ9QveF15m/Cl28n0LXD6ea2CjkhH5rQ55ewz3H24w+AMCJHPVYaZ8/0HoG8Z3cLLFFycRXxeO2tz9FA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -6451,27 +5999,15 @@ packages: '@vue/compiler-core@3.5.12': resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} - '@vue/compiler-core@3.5.5': - resolution: {integrity: sha512-ZrxcY8JMoV+kgDrmRwlDufz0SjDZ7jfoNZiIBluAACMBmgr55o/jTbxnyrccH6VSJXnFaDI4Ik1UFCiq9r8i7w==} - '@vue/compiler-dom@3.5.12': resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==} - '@vue/compiler-dom@3.5.5': - resolution: {integrity: sha512-HSvK5q1gmBbxRse3S0Wt34RcKuOyjDJKDDMuF3i7NC+QkDFrbAqw8NnrEm/z7zFDxWZa4/5eUwsBOMQzm1RHBA==} - '@vue/compiler-sfc@3.5.12': resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==} - '@vue/compiler-sfc@3.5.5': - resolution: {integrity: sha512-MzBHDxwZhgQPHrwJ5tj92gdTYRCuPDSZr8PY3+JFv8cv2UD5/WayH5yo0kKCkKfrtJhc39jNSMityHrkMSbfnA==} - '@vue/compiler-ssr@3.5.12': resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==} - '@vue/compiler-ssr@3.5.5': - resolution: {integrity: sha512-oFasHnpv/upubjJEmqiTKQYb4qS3ziJddf4UVWuFw6ebk/QTrTUc+AUoTJdo39x9g+AOQBzhOU0ICCRuUjvkmw==} - '@vue/reactivity@3.5.12': resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==} @@ -6489,9 +6025,6 @@ packages: '@vue/shared@3.5.12': resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==} - '@vue/shared@3.5.5': - resolution: {integrity: sha512-0KyMXyEgnmFAs6rNUL+6eUHtUCqCaNrVd+AW3MX3LyA0Yry5SA0Km03CDKiOua1x1WWnIr+W9+S0GMFoSDWERQ==} - '@webassemblyjs/ast@1.12.1': resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} @@ -6590,11 +6123,6 @@ packages: resolution: {integrity: sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==} engines: {node: '>=0.4.0'} - acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} - engines: {node: '>=0.4.0'} - hasBin: true - acorn@8.13.0: resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==} engines: {node: '>=0.4.0'} @@ -7003,11 +6531,6 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.23.3: - resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.24.0: resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -7116,9 +6639,6 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001655: - resolution: {integrity: sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==} - caniuse-lite@1.0.30001669: resolution: {integrity: sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==} @@ -7205,21 +6725,6 @@ packages: chromadb-default-embed@2.13.2: resolution: {integrity: sha512-mhqo5rLjkF2KkxAV0WS82vNIXWpVMzvz5y5ayIB2FxcebUbEBNlcRh6XSSqYChWMfJ9us1ZzLQU8RXqsy3sKaA==} - chromadb@1.8.1: - resolution: {integrity: sha512-NpbYydbg4Uqt/9BXKgkZXn0fqpsh2Z1yjhkhKH+rcHMoq0pwI18BFSU2QU7Fk/ZypwGefW2AvqyE/3ZJIgy4QA==} - engines: {node: '>=14.17.0'} - peerDependencies: - '@google/generative-ai': ^0.1.1 - cohere-ai: ^5.0.0 || ^6.0.0 || ^7.0.0 - openai: ^3.0.0 || ^4.0.0 - peerDependenciesMeta: - '@google/generative-ai': - optional: true - cohere-ai: - optional: true - openai: - optional: true - chromadb@1.9.2: resolution: {integrity: sha512-JNeLKlrsPxld7oPJCNeF73yHyyYeyP950enWRkTa6WsJ6UohH2NQ1vXZu6lWO9WuA9EMypITyZFZ8KtcTV3y2Q==} engines: {node: '>=14.17.0'} @@ -7647,6 +7152,9 @@ packages: csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + csv-parse@5.5.6: + resolution: {integrity: sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==} + damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} @@ -7965,9 +7473,6 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.13: - resolution: {integrity: sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==} - electron-to-chromium@1.5.44: resolution: {integrity: sha512-Lz3POUa7wANQA8G+9btKAdH+cqkfWCBdkotvQZJVOqRXMYGm1tTD835Z01iCjWpEBf0RInPBWuPfzhGbxOCULw==} @@ -8130,15 +7635,6 @@ packages: typescript: optional: true - eslint-config-next@14.2.7: - resolution: {integrity: sha512-ppmy+QdQ7qkuCHGDlPjWaoSbJvjGpWSBD4zEW8f1eWlxYXYpZK7QzBOer1EcHKT3uKhlY1JjUus9g7Kvv712rw==} - peerDependencies: - eslint: ^7.23.0 || ^8.0.0 - typescript: '>=3.3.1' - peerDependenciesMeta: - typescript: - optional: true - eslint-config-prettier@9.1.0: resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} hasBin: true @@ -8816,9 +8312,6 @@ packages: resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} engines: {node: '>= 0.4'} - get-tsconfig@4.8.0: - resolution: {integrity: sha512-Pgba6TExTZ0FJAn1qkJAjIeKoDJ3CsI2ChuLohJnZl/tTU8MVrq3b+2t5UOPfRa4RMsorClBjJALkJUMjG1PAw==} - get-tsconfig@4.8.1: resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} @@ -9038,9 +8531,6 @@ packages: hast-util-to-html@9.0.3: resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==} - hast-util-to-jsx-runtime@2.3.0: - resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} - hast-util-to-jsx-runtime@2.3.2: resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} @@ -9999,9 +9489,6 @@ packages: magic-string@0.25.9: resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} - magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} - magic-string@0.30.12: resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} @@ -10477,16 +9964,6 @@ packages: typescript: optional: true - msw@2.4.8: - resolution: {integrity: sha512-a+FUW1m5yT8cV9GBy0L/cbNg0EA4//SKEzgu3qFrpITrWYeZmqfo7dqtM74T2lAl69jjUjjCaEhZKaxG2Ns8DA==} - engines: {node: '>=18'} - hasBin: true - peerDependencies: - typescript: '>= 4.8.x' - peerDependenciesMeta: - typescript: - optional: true - multicast-dns@7.2.5: resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true @@ -10835,15 +10312,6 @@ packages: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} - openai@4.60.1: - resolution: {integrity: sha512-j7aZOpgN0MtflPgNaBlSnOyok4jwto0GVOxVC5g0jCfa0lvywYx+LhlFim/dXzPtyi8MjKozyLshSj93617vNQ==} - hasBin: true - peerDependencies: - zod: ^3.23.8 - peerDependenciesMeta: - zod: - optional: true - openai@4.68.1: resolution: {integrity: sha512-C9XmYRHgra1U1G4GGFNqRHQEjxhoOWbQYR85IibfJ0jpHUhOm4/lARiKaC/h3zThvikwH9Dx/XOKWPNVygIS3g==} hasBin: true @@ -10921,6 +10389,10 @@ packages: resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-limit@6.1.0: + resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} + engines: {node: '>=18'} + p-locate@3.0.0: resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} engines: {node: '>=6'} @@ -11124,9 +10596,6 @@ packages: resolution: {integrity: sha512-ef9SggYLzgshzpsFHAha77ghSOucf1ebXcuvokgTQK6V01uihqGJv6i0+U+yjEgiDsiVtTdojDrqOHRcSmcECw==} engines: {node: '>= 18'} - picocolors@1.1.0: - resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} - picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -12026,9 +11495,6 @@ packages: remark-parse@11.0.0: resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} - remark-rehype@11.1.0: - resolution: {integrity: sha512-z3tJrAs2kIs1AqIIy6pzHmAHlF1hWQ+OdY4/hv+Wxe35EhyLKcajL33iUEn3ScxtFox9nUvRufR/Zre8Q08H/g==} - remark-rehype@11.1.1: resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} @@ -12169,11 +11635,6 @@ packages: peerDependencies: rollup: ^2.0.0 || ^3.0.0 || ^4.0.0 - rollup@4.21.2: - resolution: {integrity: sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} - hasBin: true - rollup@4.24.0: resolution: {integrity: sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} @@ -12803,9 +12264,6 @@ packages: resolution: {integrity: sha512-SzRP5LQ6Ts2G5NyAa/jg16s8e3R7rfdFjizy1zeoecYWw+nGL+YA1xZvW/+iJmidBGSdLkuvdwTYEyJEb+EiUw==} engines: {node: '>=0.2.6'} - tailwind-merge@2.5.2: - resolution: {integrity: sha512-kjEBm+pvD+6eAwzJL2Bi+02/9LFLal1Gs61+QB7HvTfQQ0aXwC5LGT8PEt1gS0CWKktKe6ysPTAy3cBC5MeiIg==} - tailwind-merge@2.5.4: resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==} @@ -12814,11 +12272,6 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders' - tailwindcss@3.4.10: - resolution: {integrity: sha512-KWZkVPm7yJRhdu4SRSl9d4AK2wM3a50UsvgHZO7xY77NQr2V+fIrEuoDGQcbvswWvFGbS2f6e+jC/6WJm1Dl0w==} - engines: {node: '>=14.0.0'} - hasBin: true - tailwindcss@3.4.14: resolution: {integrity: sha512-IcSvOcTRcUtQQ7ILQL5quRDg7Xs93PdJEk1ZLbhhvJc7uj/OAhYOnruEiwnGgBvUtaUAJ8/mhSw1o8L2jCiENA==} engines: {node: '>=14.0.0'} @@ -12869,11 +12322,6 @@ packages: uglify-js: optional: true - terser@5.32.0: - resolution: {integrity: sha512-v3Gtw3IzpBJ0ugkxEX8U0W6+TnPKRRCWGh1jC/iM/e3Ki5+qvO1L1EAZ56bZasc64aXHwRHNIQEzm6//i5cemQ==} - engines: {node: '>=10'} - hasBin: true - terser@5.36.0: resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==} engines: {node: '>=10'} @@ -12936,10 +12384,6 @@ packages: to-arraybuffer@1.0.1: resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} - to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -13014,9 +12458,6 @@ 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==} @@ -13262,12 +12703,6 @@ packages: resolution: {integrity: sha512-bEqQxeC7rxtxPZ3M5V4Djcc4lQqKPgGe3mAWZvxcSmX5jhGxll19NliaRzQSQPrk4xJZSGniK3puLWpRuZN7VQ==} engines: {node: '>=14.0.0'} - update-browserslist-db@1.1.0: - resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} - hasBin: true - peerDependencies: - browserslist: '>= 4.21.0' - update-browserslist-db@1.1.1: resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} hasBin: true @@ -13374,37 +12809,6 @@ packages: peerDependencies: vite: ^2 || ^3 || ^4 || ^5 - vite@5.4.2: - resolution: {integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' - lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - lightningcss: - optional: true - sass: - optional: true - sass-embedded: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - vite@5.4.9: resolution: {integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==} engines: {node: ^18.0.0 || >=20.0.0} @@ -13545,16 +12949,6 @@ packages: webpack-virtual-modules@0.6.2: resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} - webpack@5.94.0: - resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - webpack@5.95.0: resolution: {integrity: sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==} engines: {node: '>=10.13.0'} @@ -13861,16 +13255,6 @@ snapshots: optionalDependencies: zod: 3.23.8 - '@ai-sdk/vue@0.0.45(vue@3.5.12(typescript@5.6.2))(zod@3.23.8)': - dependencies: - '@ai-sdk/provider-utils': 1.0.17(zod@3.23.8) - '@ai-sdk/ui-utils': 0.0.40(zod@3.23.8) - swrv: 1.0.4(vue@3.5.12(typescript@5.6.2)) - optionalDependencies: - vue: 3.5.12(typescript@5.6.2) - transitivePeerDependencies: - - zod - '@ai-sdk/vue@0.0.45(vue@3.5.12(typescript@5.6.3))(zod@3.23.8)': dependencies: '@ai-sdk/provider-utils': 1.0.17(zod@3.23.8) @@ -14044,13 +13428,13 @@ snapshots: '@aws-crypto/crc32@3.0.0': dependencies: '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.649.0 + '@aws-sdk/types': 3.667.0 tslib: 1.14.1 '@aws-crypto/crc32@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.649.0 + '@aws-sdk/types': 3.667.0 tslib: 2.8.0 '@aws-crypto/sha256-browser@5.2.0': @@ -14058,7 +13442,7 @@ snapshots: '@aws-crypto/sha256-js': 5.2.0 '@aws-crypto/supports-web-crypto': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.654.0 + '@aws-sdk/types': 3.679.0 '@aws-sdk/util-locate-window': 3.568.0 '@smithy/util-utf8': 2.3.0 tslib: 2.8.0 @@ -14066,8 +13450,8 @@ snapshots: '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.649.0 - tslib: 2.7.0 + '@aws-sdk/types': 3.667.0 + tslib: 2.8.0 '@aws-crypto/supports-web-crypto@5.2.0': dependencies: @@ -14075,13 +13459,13 @@ snapshots: '@aws-crypto/util@3.0.0': dependencies: - '@aws-sdk/types': 3.649.0 + '@aws-sdk/types': 3.667.0 '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 1.14.1 '@aws-crypto/util@5.2.0': dependencies: - '@aws-sdk/types': 3.649.0 + '@aws-sdk/types': 3.667.0 '@smithy/util-utf8': 2.3.0 tslib: 2.8.0 @@ -14102,35 +13486,35 @@ snapshots: '@aws-sdk/util-endpoints': 3.654.0 '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 - '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.5 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 '@smithy/eventstream-serde-browser': 3.0.9 '@smithy/eventstream-serde-config-resolver': 3.0.6 '@smithy/eventstream-serde-node': 3.0.8 - '@smithy/fetch-http-handler': 3.2.8 - '@smithy/hash-node': 3.0.6 - '@smithy/invalid-dependency': 3.0.6 - '@smithy/middleware-content-length': 3.0.8 - '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.20 - '@smithy/middleware-serde': 3.0.6 - '@smithy/middleware-stack': 3.0.6 - '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.3 - '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/url-parser': 3.0.6 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.20 - '@smithy/util-defaults-mode-node': 3.0.20 - '@smithy/util-endpoints': 2.1.2 - '@smithy/util-middleware': 3.0.6 - '@smithy/util-retry': 3.0.6 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - aws-crt @@ -14151,80 +13535,34 @@ snapshots: '@aws-sdk/util-endpoints': 3.637.0 '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/eventstream-serde-browser': 3.0.6 - '@smithy/eventstream-serde-config-resolver': 3.0.3 - '@smithy/eventstream-serde-node': 3.0.5 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 - '@smithy/util-stream': 3.1.5 - '@smithy/util-utf8': 3.0.0 - tslib: 2.7.0 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-cognito-identity@3.650.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/core': 3.649.0 - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/eventstream-serde-browser': 3.0.9 + '@smithy/eventstream-serde-config-resolver': 3.0.6 + '@smithy/eventstream-serde-node': 3.0.8 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 + '@smithy/util-stream': 3.2.1 '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 transitivePeerDependencies: @@ -14275,55 +13613,6 @@ snapshots: tslib: 2.8.0 transitivePeerDependencies: - aws-crt - optional: true - - '@aws-sdk/client-sagemaker@3.650.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/core': 3.649.0 - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 - '@smithy/util-utf8': 3.0.0 - '@smithy/util-waiter': 3.1.4 - tslib: 2.8.0 - uuid: 9.0.1 - transitivePeerDependencies: - - aws-crt '@aws-sdk/client-sagemaker@3.678.0': dependencies: @@ -14373,7 +13662,6 @@ snapshots: uuid: 9.0.1 transitivePeerDependencies: - aws-crt - optional: true '@aws-sdk/client-sso-oidc@3.637.0(@aws-sdk/client-sts@3.637.0)': dependencies: @@ -14391,75 +13679,30 @@ snapshots: '@aws-sdk/util-endpoints': 3.637.0 '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/core': 3.649.0 - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 transitivePeerDependencies: @@ -14481,30 +13724,30 @@ snapshots: '@aws-sdk/util-endpoints': 3.654.0 '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 - '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.5 - '@smithy/fetch-http-handler': 3.2.8 - '@smithy/hash-node': 3.0.6 - '@smithy/invalid-dependency': 3.0.6 - '@smithy/middleware-content-length': 3.0.8 - '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.20 - '@smithy/middleware-serde': 3.0.6 - '@smithy/middleware-stack': 3.0.6 - '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.3 - '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/url-parser': 3.0.6 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.20 - '@smithy/util-defaults-mode-node': 3.0.20 - '@smithy/util-endpoints': 2.1.2 - '@smithy/util-middleware': 3.0.6 - '@smithy/util-retry': 3.0.6 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 transitivePeerDependencies: @@ -14554,15 +13797,14 @@ snapshots: tslib: 2.8.0 transitivePeerDependencies: - aws-crt - optional: true - '@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)': + '@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sts': 3.650.0 + '@aws-sdk/client-sts': 3.678.0 '@aws-sdk/core': 3.678.0 - '@aws-sdk/credential-provider-node': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/credential-provider-node': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0) '@aws-sdk/middleware-host-header': 3.667.0 '@aws-sdk/middleware-logger': 3.667.0 '@aws-sdk/middleware-recursion-detection': 3.667.0 @@ -14601,22 +13843,22 @@ snapshots: transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)': + '@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 '@aws-sdk/client-sts': 3.678.0 - '@aws-sdk/core': 3.678.0 - '@aws-sdk/credential-provider-node': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0) - '@aws-sdk/middleware-host-header': 3.667.0 - '@aws-sdk/middleware-logger': 3.667.0 - '@aws-sdk/middleware-recursion-detection': 3.667.0 - '@aws-sdk/middleware-user-agent': 3.678.0 - '@aws-sdk/region-config-resolver': 3.667.0 - '@aws-sdk/types': 3.667.0 - '@aws-sdk/util-endpoints': 3.667.0 - '@aws-sdk/util-user-agent-browser': 3.675.0 - '@aws-sdk/util-user-agent-node': 3.678.0 + '@aws-sdk/core': 3.679.0 + '@aws-sdk/credential-provider-node': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0) + '@aws-sdk/middleware-host-header': 3.679.0 + '@aws-sdk/middleware-logger': 3.679.0 + '@aws-sdk/middleware-recursion-detection': 3.679.0 + '@aws-sdk/middleware-user-agent': 3.679.0 + '@aws-sdk/region-config-resolver': 3.679.0 + '@aws-sdk/types': 3.679.0 + '@aws-sdk/util-endpoints': 3.679.0 + '@aws-sdk/util-user-agent-browser': 3.679.0 + '@aws-sdk/util-user-agent-node': 3.679.0 '@smithy/config-resolver': 3.0.10 '@smithy/core': 2.5.1 '@smithy/fetch-http-handler': 3.2.9 @@ -14645,7 +13887,6 @@ snapshots: tslib: 2.8.0 transitivePeerDependencies: - aws-crt - optional: true '@aws-sdk/client-sso@3.637.0': dependencies: @@ -14661,73 +13902,30 @@ snapshots: '@aws-sdk/util-endpoints': 3.637.0 '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sso@3.650.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.649.0 - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 transitivePeerDependencies: @@ -14747,30 +13945,30 @@ snapshots: '@aws-sdk/util-endpoints': 3.654.0 '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 - '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.5 - '@smithy/fetch-http-handler': 3.2.8 - '@smithy/hash-node': 3.0.6 - '@smithy/invalid-dependency': 3.0.6 - '@smithy/middleware-content-length': 3.0.8 - '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.20 - '@smithy/middleware-serde': 3.0.6 - '@smithy/middleware-stack': 3.0.6 - '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.3 - '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/url-parser': 3.0.6 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.20 - '@smithy/util-defaults-mode-node': 3.0.20 - '@smithy/util-endpoints': 2.1.2 - '@smithy/util-middleware': 3.0.6 - '@smithy/util-retry': 3.0.6 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 transitivePeerDependencies: @@ -14818,7 +14016,6 @@ snapshots: tslib: 2.8.0 transitivePeerDependencies: - aws-crt - optional: true '@aws-sdk/client-sso@3.678.0': dependencies: @@ -14863,6 +14060,49 @@ snapshots: transitivePeerDependencies: - aws-crt + '@aws-sdk/client-sso@3.679.0': + dependencies: + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/core': 3.679.0 + '@aws-sdk/middleware-host-header': 3.679.0 + '@aws-sdk/middleware-logger': 3.679.0 + '@aws-sdk/middleware-recursion-detection': 3.679.0 + '@aws-sdk/middleware-user-agent': 3.679.0 + '@aws-sdk/region-config-resolver': 3.679.0 + '@aws-sdk/types': 3.679.0 + '@aws-sdk/util-endpoints': 3.679.0 + '@aws-sdk/util-user-agent-browser': 3.679.0 + '@aws-sdk/util-user-agent-node': 3.679.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 + '@smithy/util-base64': 3.0.0 + '@smithy/util-body-length-browser': 3.0.0 + '@smithy/util-body-length-node': 3.0.0 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 + '@smithy/util-utf8': 3.0.0 + tslib: 2.8.0 + transitivePeerDependencies: + - aws-crt + '@aws-sdk/client-sts@3.637.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 @@ -14879,75 +14119,30 @@ snapshots: '@aws-sdk/util-endpoints': 3.637.0 '@aws-sdk/util-user-agent-browser': 3.609.0 '@aws-sdk/util-user-agent-node': 3.614.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sts@3.650.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/core': 3.649.0 - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.7 - '@smithy/core': 2.4.2 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/hash-node': 3.0.5 - '@smithy/invalid-dependency': 3.0.5 - '@smithy/middleware-content-length': 3.0.7 - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/middleware-stack': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.17 - '@smithy/util-defaults-mode-node': 3.0.17 - '@smithy/util-endpoints': 2.1.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 transitivePeerDependencies: @@ -14969,30 +14164,30 @@ snapshots: '@aws-sdk/util-endpoints': 3.654.0 '@aws-sdk/util-user-agent-browser': 3.654.0 '@aws-sdk/util-user-agent-node': 3.654.0 - '@smithy/config-resolver': 3.0.8 - '@smithy/core': 2.4.5 - '@smithy/fetch-http-handler': 3.2.8 - '@smithy/hash-node': 3.0.6 - '@smithy/invalid-dependency': 3.0.6 - '@smithy/middleware-content-length': 3.0.8 - '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.20 - '@smithy/middleware-serde': 3.0.6 - '@smithy/middleware-stack': 3.0.6 - '@smithy/node-config-provider': 3.1.7 - '@smithy/node-http-handler': 3.2.3 - '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/url-parser': 3.0.6 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.20 - '@smithy/util-defaults-mode-node': 3.0.20 - '@smithy/util-endpoints': 2.1.2 - '@smithy/util-middleware': 3.0.6 - '@smithy/util-retry': 3.0.6 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 transitivePeerDependencies: @@ -15042,7 +14237,6 @@ snapshots: tslib: 2.8.0 transitivePeerDependencies: - aws-crt - optional: true '@aws-sdk/client-sts@3.678.0': dependencies: @@ -15088,44 +14282,30 @@ snapshots: tslib: 2.8.0 transitivePeerDependencies: - aws-crt - optional: true '@aws-sdk/core@3.635.0': dependencies: - '@smithy/core': 2.4.2 - '@smithy/node-config-provider': 3.1.6 - '@smithy/property-provider': 3.1.5 - '@smithy/protocol-http': 4.1.2 - '@smithy/signature-v4': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/util-middleware': 3.0.5 - fast-xml-parser: 4.4.1 - tslib: 2.8.0 - - '@aws-sdk/core@3.649.0': - dependencies: - '@smithy/core': 2.4.2 - '@smithy/node-config-provider': 3.1.6 - '@smithy/property-provider': 3.1.5 - '@smithy/protocol-http': 4.1.2 - '@smithy/signature-v4': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/util-middleware': 3.0.5 + '@smithy/core': 2.5.1 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/signature-v4': 4.2.1 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 fast-xml-parser: 4.4.1 tslib: 2.8.0 '@aws-sdk/core@3.654.0': dependencies: - '@smithy/core': 2.4.5 - '@smithy/node-config-provider': 3.1.7 - '@smithy/property-provider': 3.1.6 - '@smithy/protocol-http': 4.1.3 - '@smithy/signature-v4': 4.1.4 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/util-middleware': 3.0.6 + '@smithy/core': 2.5.1 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/signature-v4': 4.2.1 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 fast-xml-parser: 4.4.1 tslib: 2.8.0 @@ -15142,7 +14322,6 @@ snapshots: '@smithy/util-middleware': 3.0.8 fast-xml-parser: 4.4.1 tslib: 2.8.0 - optional: true '@aws-sdk/core@3.678.0': dependencies: @@ -15158,15 +14337,19 @@ snapshots: fast-xml-parser: 4.4.1 tslib: 2.8.0 - '@aws-sdk/credential-provider-cognito-identity@3.650.0': + '@aws-sdk/core@3.679.0': dependencies: - '@aws-sdk/client-cognito-identity': 3.650.0 - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.679.0 + '@smithy/core': 2.5.1 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/signature-v4': 4.2.1 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 + fast-xml-parser: 4.4.1 tslib: 2.8.0 - transitivePeerDependencies: - - aws-crt '@aws-sdk/credential-provider-cognito-identity@3.675.0': dependencies: @@ -15177,27 +14360,19 @@ snapshots: tslib: 2.8.0 transitivePeerDependencies: - aws-crt - optional: true '@aws-sdk/credential-provider-env@3.620.1': dependencies: '@aws-sdk/types': 3.609.0 - '@smithy/property-provider': 3.1.5 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@aws-sdk/credential-provider-env@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/types': 3.4.1 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/credential-provider-env@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/property-provider': 3.1.6 - '@smithy/types': 3.4.2 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/credential-provider-env@3.667.0': @@ -15207,7 +14382,6 @@ snapshots: '@smithy/property-provider': 3.1.8 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true '@aws-sdk/credential-provider-env@3.678.0': dependencies: @@ -15217,40 +14391,36 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/credential-provider-http@3.635.0': + '@aws-sdk/credential-provider-env@3.679.0': dependencies: - '@aws-sdk/types': 3.609.0 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/property-provider': 3.1.5 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/util-stream': 3.1.5 + '@aws-sdk/core': 3.679.0 + '@aws-sdk/types': 3.679.0 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/credential-provider-http@3.649.0': + '@aws-sdk/credential-provider-http@3.635.0': dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/property-provider': 3.1.5 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/util-stream': 3.1.5 + '@aws-sdk/types': 3.609.0 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-stream': 3.2.1 tslib: 2.8.0 '@aws-sdk/credential-provider-http@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/fetch-http-handler': 3.2.8 - '@smithy/node-http-handler': 3.2.3 - '@smithy/property-provider': 3.1.6 - '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/util-stream': 3.1.8 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-stream': 3.2.1 tslib: 2.8.0 '@aws-sdk/credential-provider-http@3.667.0': @@ -15265,7 +14435,6 @@ snapshots: '@smithy/types': 3.6.0 '@smithy/util-stream': 3.2.1 tslib: 2.8.0 - optional: true '@aws-sdk/credential-provider-http@3.678.0': dependencies: @@ -15280,6 +14449,19 @@ snapshots: '@smithy/util-stream': 3.2.1 tslib: 2.8.0 + '@aws-sdk/credential-provider-http@3.679.0': + dependencies: + '@aws-sdk/core': 3.679.0 + '@aws-sdk/types': 3.679.0 + '@smithy/fetch-http-handler': 3.2.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-stream': 3.2.1 + tslib: 2.8.0 + '@aws-sdk/credential-provider-ini@3.637.0(@aws-sdk/client-sso-oidc@3.637.0(@aws-sdk/client-sts@3.637.0))(@aws-sdk/client-sts@3.637.0)': dependencies: '@aws-sdk/client-sts': 3.637.0 @@ -15289,46 +14471,10 @@ snapshots: '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.637.0(@aws-sdk/client-sts@3.637.0)) '@aws-sdk/credential-provider-web-identity': 3.621.0(@aws-sdk/client-sts@3.637.0) '@aws-sdk/types': 3.609.0 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-ini@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/credential-provider-env': 3.649.0 - '@aws-sdk/credential-provider-http': 3.649.0 - '@aws-sdk/credential-provider-process': 3.649.0 - '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-ini@3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/credential-provider-env': 3.649.0 - '@aws-sdk/credential-provider-http': 3.649.0 - '@aws-sdk/credential-provider-process': 3.649.0 - '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' @@ -15343,25 +14489,6 @@ snapshots: '@aws-sdk/credential-provider-sso': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0)) '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.654.0) '@aws-sdk/types': 3.654.0 - '@smithy/credential-provider-imds': 3.2.3 - '@smithy/property-provider': 3.1.6 - '@smithy/shared-ini-file-loader': 3.1.7 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-ini@3.675.0(@aws-sdk/client-sso-oidc@3.675.0(@aws-sdk/client-sts@3.675.0))(@aws-sdk/client-sts@3.675.0)': - dependencies: - '@aws-sdk/client-sts': 3.675.0 - '@aws-sdk/core': 3.667.0 - '@aws-sdk/credential-provider-env': 3.667.0 - '@aws-sdk/credential-provider-http': 3.667.0 - '@aws-sdk/credential-provider-process': 3.667.0 - '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.675.0(@aws-sdk/client-sts@3.675.0)) - '@aws-sdk/credential-provider-web-identity': 3.667.0(@aws-sdk/client-sts@3.675.0) - '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 @@ -15370,16 +14497,15 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true - '@aws-sdk/credential-provider-ini@3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.675.0)': + '@aws-sdk/credential-provider-ini@3.675.0(@aws-sdk/client-sso-oidc@3.675.0(@aws-sdk/client-sts@3.675.0))(@aws-sdk/client-sts@3.675.0)': dependencies: '@aws-sdk/client-sts': 3.675.0 '@aws-sdk/core': 3.667.0 '@aws-sdk/credential-provider-env': 3.667.0 '@aws-sdk/credential-provider-http': 3.667.0 '@aws-sdk/credential-provider-process': 3.667.0 - '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.675.0(@aws-sdk/client-sts@3.675.0)) '@aws-sdk/credential-provider-web-identity': 3.667.0(@aws-sdk/client-sts@3.675.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 @@ -15390,16 +14516,15 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true - '@aws-sdk/credential-provider-ini@3.675.0(@aws-sdk/client-sts@3.675.0)': + '@aws-sdk/credential-provider-ini@3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.675.0)': dependencies: '@aws-sdk/client-sts': 3.675.0 '@aws-sdk/core': 3.667.0 '@aws-sdk/credential-provider-env': 3.667.0 '@aws-sdk/credential-provider-http': 3.667.0 '@aws-sdk/credential-provider-process': 3.667.0 - '@aws-sdk/credential-provider-sso': 3.675.0 + '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/credential-provider-web-identity': 3.667.0(@aws-sdk/client-sts@3.675.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 @@ -15410,17 +14535,16 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true - '@aws-sdk/credential-provider-ini@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': + '@aws-sdk/credential-provider-ini@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0)': dependencies: - '@aws-sdk/client-sts': 3.650.0 + '@aws-sdk/client-sts': 3.678.0 '@aws-sdk/core': 3.678.0 '@aws-sdk/credential-provider-env': 3.678.0 '@aws-sdk/credential-provider-http': 3.678.0 '@aws-sdk/credential-provider-process': 3.678.0 - '@aws-sdk/credential-provider-sso': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.678.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/credential-provider-sso': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)) + '@aws-sdk/credential-provider-web-identity': 3.678.0(@aws-sdk/client-sts@3.678.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 '@smithy/property-provider': 3.1.8 @@ -15431,16 +14555,16 @@ snapshots: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-ini@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0)': + '@aws-sdk/credential-provider-ini@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0)': dependencies: '@aws-sdk/client-sts': 3.678.0 - '@aws-sdk/core': 3.678.0 - '@aws-sdk/credential-provider-env': 3.678.0 - '@aws-sdk/credential-provider-http': 3.678.0 - '@aws-sdk/credential-provider-process': 3.678.0 - '@aws-sdk/credential-provider-sso': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)) - '@aws-sdk/credential-provider-web-identity': 3.678.0(@aws-sdk/client-sts@3.678.0) - '@aws-sdk/types': 3.667.0 + '@aws-sdk/core': 3.679.0 + '@aws-sdk/credential-provider-env': 3.679.0 + '@aws-sdk/credential-provider-http': 3.679.0 + '@aws-sdk/credential-provider-process': 3.679.0 + '@aws-sdk/credential-provider-sso': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) + '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.678.0) + '@aws-sdk/types': 3.679.0 '@smithy/credential-provider-imds': 3.2.5 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 @@ -15449,7 +14573,6 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true '@aws-sdk/credential-provider-node@3.637.0(@aws-sdk/client-sso-oidc@3.637.0(@aws-sdk/client-sts@3.637.0))(@aws-sdk/client-sts@3.637.0)': dependencies: @@ -15460,48 +14583,10 @@ snapshots: '@aws-sdk/credential-provider-sso': 3.637.0(@aws-sdk/client-sso-oidc@3.637.0(@aws-sdk/client-sts@3.637.0)) '@aws-sdk/credential-provider-web-identity': 3.621.0(@aws-sdk/client-sts@3.637.0) '@aws-sdk/types': 3.609.0 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - '@aws-sdk/client-sts' - - aws-crt - - '@aws-sdk/credential-provider-node@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/credential-provider-env': 3.649.0 - '@aws-sdk/credential-provider-http': 3.649.0 - '@aws-sdk/credential-provider-ini': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/credential-provider-process': 3.649.0 - '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - '@aws-sdk/client-sts' - - aws-crt - - '@aws-sdk/credential-provider-node@3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/credential-provider-env': 3.649.0 - '@aws-sdk/credential-provider-http': 3.649.0 - '@aws-sdk/credential-provider-ini': 3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/credential-provider-process': 3.649.0 - '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' @@ -15517,10 +14602,10 @@ snapshots: '@aws-sdk/credential-provider-sso': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0)) '@aws-sdk/credential-provider-web-identity': 3.654.0(@aws-sdk/client-sts@3.654.0) '@aws-sdk/types': 3.654.0 - '@smithy/credential-provider-imds': 3.2.3 - '@smithy/property-provider': 3.1.6 - '@smithy/shared-ini-file-loader': 3.1.7 - '@smithy/types': 3.4.2 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' @@ -15545,15 +14630,14 @@ snapshots: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' - aws-crt - optional: true - '@aws-sdk/credential-provider-node@3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.675.0)': + '@aws-sdk/credential-provider-node@3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.675.0)': dependencies: '@aws-sdk/credential-provider-env': 3.667.0 '@aws-sdk/credential-provider-http': 3.667.0 - '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.675.0) + '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.675.0) '@aws-sdk/credential-provider-process': 3.667.0 - '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/credential-provider-web-identity': 3.667.0(@aws-sdk/client-sts@3.675.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 @@ -15565,15 +14649,14 @@ snapshots: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' - aws-crt - optional: true '@aws-sdk/credential-provider-node@3.675.0(@aws-sdk/client-sts@3.675.0)': dependencies: '@aws-sdk/credential-provider-env': 3.667.0 '@aws-sdk/credential-provider-http': 3.667.0 - '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sts@3.675.0) + '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.675.0) '@aws-sdk/credential-provider-process': 3.667.0 - '@aws-sdk/credential-provider-sso': 3.675.0 + '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/credential-provider-web-identity': 3.667.0(@aws-sdk/client-sts@3.675.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 @@ -15587,14 +14670,14 @@ snapshots: - aws-crt optional: true - '@aws-sdk/credential-provider-node@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': + '@aws-sdk/credential-provider-node@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0)': dependencies: '@aws-sdk/credential-provider-env': 3.678.0 '@aws-sdk/credential-provider-http': 3.678.0 - '@aws-sdk/credential-provider-ini': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/credential-provider-ini': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0) '@aws-sdk/credential-provider-process': 3.678.0 - '@aws-sdk/credential-provider-sso': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.678.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/credential-provider-sso': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)) + '@aws-sdk/credential-provider-web-identity': 3.678.0(@aws-sdk/client-sts@3.678.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 '@smithy/property-provider': 3.1.8 @@ -15606,15 +14689,15 @@ snapshots: - '@aws-sdk/client-sts' - aws-crt - '@aws-sdk/credential-provider-node@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0)': + '@aws-sdk/credential-provider-node@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0)': dependencies: - '@aws-sdk/credential-provider-env': 3.678.0 - '@aws-sdk/credential-provider-http': 3.678.0 - '@aws-sdk/credential-provider-ini': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0) - '@aws-sdk/credential-provider-process': 3.678.0 - '@aws-sdk/credential-provider-sso': 3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)) - '@aws-sdk/credential-provider-web-identity': 3.678.0(@aws-sdk/client-sts@3.678.0) - '@aws-sdk/types': 3.667.0 + '@aws-sdk/credential-provider-env': 3.679.0 + '@aws-sdk/credential-provider-http': 3.679.0 + '@aws-sdk/credential-provider-ini': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.678.0) + '@aws-sdk/credential-provider-process': 3.679.0 + '@aws-sdk/credential-provider-sso': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) + '@aws-sdk/credential-provider-web-identity': 3.679.0(@aws-sdk/client-sts@3.678.0) + '@aws-sdk/types': 3.679.0 '@smithy/credential-provider-imds': 3.2.5 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 @@ -15624,30 +14707,21 @@ snapshots: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' - aws-crt - optional: true '@aws-sdk/credential-provider-process@3.620.1': dependencies: '@aws-sdk/types': 3.609.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@aws-sdk/credential-provider-process@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/credential-provider-process@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/property-provider': 3.1.6 - '@smithy/shared-ini-file-loader': 3.1.7 - '@smithy/types': 3.4.2 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/credential-provider-process@3.667.0': @@ -15658,7 +14732,6 @@ snapshots: '@smithy/shared-ini-file-loader': 3.1.9 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true '@aws-sdk/credential-provider-process@3.678.0': dependencies: @@ -15669,40 +14742,23 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 + '@aws-sdk/credential-provider-process@3.679.0': + dependencies: + '@aws-sdk/core': 3.679.0 + '@aws-sdk/types': 3.679.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.0 + '@aws-sdk/credential-provider-sso@3.637.0(@aws-sdk/client-sso-oidc@3.637.0(@aws-sdk/client-sts@3.637.0))': dependencies: '@aws-sdk/client-sso': 3.637.0 '@aws-sdk/token-providers': 3.614.0(@aws-sdk/client-sso-oidc@3.637.0(@aws-sdk/client-sts@3.637.0)) '@aws-sdk/types': 3.609.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-sso@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))': - dependencies: - '@aws-sdk/client-sso': 3.650.0 - '@aws-sdk/token-providers': 3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-sso@3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))': - dependencies: - '@aws-sdk/client-sso': 3.650.0 - '@aws-sdk/token-providers': 3.649.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' @@ -15713,20 +14769,6 @@ snapshots: '@aws-sdk/client-sso': 3.654.0 '@aws-sdk/token-providers': 3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0)) '@aws-sdk/types': 3.654.0 - '@smithy/property-provider': 3.1.6 - '@smithy/shared-ini-file-loader': 3.1.7 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-sso@3.675.0': - dependencies: - '@aws-sdk/client-sso': 3.675.0 - '@aws-sdk/core': 3.667.0 - '@aws-sdk/token-providers': 3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)) - '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 '@smithy/types': 3.6.0 @@ -15734,7 +14776,6 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true '@aws-sdk/credential-provider-sso@3.675.0(@aws-sdk/client-sso-oidc@3.675.0(@aws-sdk/client-sts@3.675.0))': dependencies: @@ -15749,13 +14790,12 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true - '@aws-sdk/credential-provider-sso@3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))': + '@aws-sdk/credential-provider-sso@3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))': dependencies: '@aws-sdk/client-sso': 3.675.0 '@aws-sdk/core': 3.667.0 - '@aws-sdk/token-providers': 3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/token-providers': 3.667.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 @@ -15764,13 +14804,12 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true - '@aws-sdk/credential-provider-sso@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))': + '@aws-sdk/credential-provider-sso@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))': dependencies: '@aws-sdk/client-sso': 3.678.0 '@aws-sdk/core': 3.678.0 - '@aws-sdk/token-providers': 3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/token-providers': 3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 @@ -15780,12 +14819,12 @@ snapshots: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-sso@3.678.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))': + '@aws-sdk/credential-provider-sso@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))': dependencies: - '@aws-sdk/client-sso': 3.678.0 - '@aws-sdk/core': 3.678.0 - '@aws-sdk/token-providers': 3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0)) - '@aws-sdk/types': 3.667.0 + '@aws-sdk/client-sso': 3.679.0 + '@aws-sdk/core': 3.679.0 + '@aws-sdk/token-providers': 3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) + '@aws-sdk/types': 3.679.0 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 '@smithy/types': 3.6.0 @@ -15793,30 +14832,21 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true '@aws-sdk/credential-provider-web-identity@3.621.0(@aws-sdk/client-sts@3.637.0)': dependencies: '@aws-sdk/client-sts': 3.637.0 '@aws-sdk/types': 3.609.0 - '@smithy/property-provider': 3.1.5 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@aws-sdk/credential-provider-web-identity@3.649.0(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/types': 3.4.1 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/credential-provider-web-identity@3.654.0(@aws-sdk/client-sts@3.654.0)': dependencies: '@aws-sdk/client-sts': 3.654.0 '@aws-sdk/types': 3.654.0 - '@smithy/property-provider': 3.1.6 - '@smithy/types': 3.4.2 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/credential-provider-web-identity@3.667.0(@aws-sdk/client-sts@3.675.0)': @@ -15827,48 +14857,24 @@ snapshots: '@smithy/property-provider': 3.1.8 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true - '@aws-sdk/credential-provider-web-identity@3.678.0(@aws-sdk/client-sts@3.650.0)': + '@aws-sdk/credential-provider-web-identity@3.678.0(@aws-sdk/client-sts@3.678.0)': dependencies: - '@aws-sdk/client-sts': 3.650.0 + '@aws-sdk/client-sts': 3.678.0 '@aws-sdk/core': 3.678.0 '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.8 '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/credential-provider-web-identity@3.678.0(@aws-sdk/client-sts@3.678.0)': + '@aws-sdk/credential-provider-web-identity@3.679.0(@aws-sdk/client-sts@3.678.0)': dependencies: '@aws-sdk/client-sts': 3.678.0 - '@aws-sdk/core': 3.678.0 - '@aws-sdk/types': 3.667.0 + '@aws-sdk/core': 3.679.0 + '@aws-sdk/types': 3.679.0 '@smithy/property-provider': 3.1.8 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true - - '@aws-sdk/credential-providers@3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))': - dependencies: - '@aws-sdk/client-cognito-identity': 3.650.0 - '@aws-sdk/client-sso': 3.650.0 - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/credential-provider-cognito-identity': 3.650.0 - '@aws-sdk/credential-provider-env': 3.649.0 - '@aws-sdk/credential-provider-http': 3.649.0 - '@aws-sdk/credential-provider-ini': 3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/credential-provider-process': 3.649.0 - '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/property-provider': 3.1.5 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt '@aws-sdk/credential-providers@3.675.0': dependencies: @@ -15879,10 +14885,10 @@ snapshots: '@aws-sdk/credential-provider-cognito-identity': 3.675.0 '@aws-sdk/credential-provider-env': 3.667.0 '@aws-sdk/credential-provider-http': 3.667.0 - '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sts@3.675.0) + '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.675.0) '@aws-sdk/credential-provider-node': 3.675.0(@aws-sdk/client-sts@3.675.0) '@aws-sdk/credential-provider-process': 3.667.0 - '@aws-sdk/credential-provider-sso': 3.675.0 + '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/credential-provider-web-identity': 3.667.0(@aws-sdk/client-sts@3.675.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 @@ -15894,7 +14900,7 @@ snapshots: - aws-crt optional: true - '@aws-sdk/credential-providers@3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))': + '@aws-sdk/credential-providers@3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))': dependencies: '@aws-sdk/client-cognito-identity': 3.675.0 '@aws-sdk/client-sso': 3.675.0 @@ -15903,10 +14909,10 @@ snapshots: '@aws-sdk/credential-provider-cognito-identity': 3.675.0 '@aws-sdk/credential-provider-env': 3.667.0 '@aws-sdk/credential-provider-http': 3.667.0 - '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.675.0) - '@aws-sdk/credential-provider-node': 3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.675.0) + '@aws-sdk/credential-provider-ini': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.675.0) + '@aws-sdk/credential-provider-node': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(@aws-sdk/client-sts@3.675.0) '@aws-sdk/credential-provider-process': 3.667.0 - '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/credential-provider-sso': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/credential-provider-web-identity': 3.667.0(@aws-sdk/client-sts@3.675.0) '@aws-sdk/types': 3.667.0 '@smithy/credential-provider-imds': 3.2.5 @@ -15916,27 +14922,19 @@ snapshots: transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - optional: true '@aws-sdk/middleware-host-header@3.620.0': dependencies: '@aws-sdk/types': 3.609.0 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@aws-sdk/middleware-host-header@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-host-header@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/protocol-http': 4.1.3 - '@smithy/types': 3.4.2 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-host-header@3.667.0': @@ -15946,22 +14944,23 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/middleware-logger@3.609.0': + '@aws-sdk/middleware-host-header@3.679.0': dependencies: - '@aws-sdk/types': 3.609.0 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.679.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/middleware-logger@3.649.0': + '@aws-sdk/middleware-logger@3.609.0': dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.609.0 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-logger@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/types': 3.4.2 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-logger@3.667.0': @@ -15970,25 +14969,24 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/middleware-recursion-detection@3.620.0': + '@aws-sdk/middleware-logger@3.679.0': dependencies: - '@aws-sdk/types': 3.609.0 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.679.0 + '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/middleware-recursion-detection@3.649.0': + '@aws-sdk/middleware-recursion-detection@3.620.0': dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.609.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-recursion-detection@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/protocol-http': 4.1.3 - '@smithy/types': 3.4.2 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-recursion-detection@3.667.0': @@ -15998,28 +14996,27 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/middleware-user-agent@3.637.0': + '@aws-sdk/middleware-recursion-detection@3.679.0': dependencies: - '@aws-sdk/types': 3.609.0 - '@aws-sdk/util-endpoints': 3.637.0 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.679.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/middleware-user-agent@3.649.0': + '@aws-sdk/middleware-user-agent@3.637.0': dependencies: - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.609.0 + '@aws-sdk/util-endpoints': 3.637.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-user-agent@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 '@aws-sdk/util-endpoints': 3.654.0 - '@smithy/protocol-http': 4.1.3 - '@smithy/types': 3.4.2 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/middleware-user-agent@3.669.0': @@ -16031,7 +15028,6 @@ snapshots: '@smithy/protocol-http': 4.1.5 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true '@aws-sdk/middleware-user-agent@3.678.0': dependencies: @@ -16043,6 +15039,16 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 + '@aws-sdk/middleware-user-agent@3.679.0': + dependencies: + '@aws-sdk/core': 3.679.0 + '@aws-sdk/types': 3.679.0 + '@aws-sdk/util-endpoints': 3.679.0 + '@smithy/core': 2.5.1 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + tslib: 2.8.0 + '@aws-sdk/protocol-http@3.374.0': dependencies: '@smithy/protocol-http': 1.2.0 @@ -16051,28 +15057,19 @@ snapshots: '@aws-sdk/region-config-resolver@3.614.0': dependencies: '@aws-sdk/types': 3.609.0 - '@smithy/node-config-provider': 3.1.6 - '@smithy/types': 3.4.1 - '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.5 - tslib: 2.8.0 - - '@aws-sdk/region-config-resolver@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/node-config-provider': 3.1.6 - '@smithy/types': 3.4.1 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.5 + '@smithy/util-middleware': 3.0.8 tslib: 2.8.0 '@aws-sdk/region-config-resolver@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/node-config-provider': 3.1.7 - '@smithy/types': 3.4.2 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.6 + '@smithy/util-middleware': 3.0.8 tslib: 2.8.0 '@aws-sdk/region-config-resolver@3.667.0': @@ -16084,6 +15081,15 @@ snapshots: '@smithy/util-middleware': 3.0.8 tslib: 2.8.0 + '@aws-sdk/region-config-resolver@3.679.0': + dependencies: + '@aws-sdk/types': 3.679.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 + '@smithy/util-config-provider': 3.0.0 + '@smithy/util-middleware': 3.0.8 + tslib: 2.8.0 + '@aws-sdk/signature-v4@3.374.0': dependencies: '@smithy/signature-v4': 1.1.0 @@ -16093,36 +15099,18 @@ snapshots: dependencies: '@aws-sdk/client-sso-oidc': 3.637.0(@aws-sdk/client-sts@3.637.0) '@aws-sdk/types': 3.609.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@aws-sdk/token-providers@3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))': - dependencies: - '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@aws-sdk/token-providers@3.649.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))': - dependencies: - '@aws-sdk/client-sso-oidc': 3.678.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/token-providers@3.654.0(@aws-sdk/client-sso-oidc@3.654.0(@aws-sdk/client-sts@3.654.0))': dependencies: '@aws-sdk/client-sso-oidc': 3.654.0(@aws-sdk/client-sts@3.654.0) '@aws-sdk/types': 3.654.0 - '@smithy/property-provider': 3.1.6 - '@smithy/shared-ini-file-loader': 3.1.7 - '@smithy/types': 3.4.2 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/token-providers@3.667.0(@aws-sdk/client-sso-oidc@3.675.0(@aws-sdk/client-sts@3.675.0))': @@ -16133,40 +15121,42 @@ snapshots: '@smithy/shared-ini-file-loader': 3.1.9 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true - '@aws-sdk/token-providers@3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))': + '@aws-sdk/token-providers@3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))': dependencies: - '@aws-sdk/client-sso-oidc': 3.678.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/client-sso-oidc': 3.678.0(@aws-sdk/client-sts@3.678.0) '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/token-providers@3.667.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.678.0))': + '@aws-sdk/token-providers@3.667.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))': dependencies: - '@aws-sdk/client-sso-oidc': 3.678.0(@aws-sdk/client-sts@3.678.0) + '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.678.0) '@aws-sdk/types': 3.667.0 '@smithy/property-provider': 3.1.8 '@smithy/shared-ini-file-loader': 3.1.9 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true - '@aws-sdk/types@3.609.0': + '@aws-sdk/token-providers@3.679.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))': dependencies: - '@smithy/types': 3.4.1 + '@aws-sdk/client-sso-oidc': 3.679.0(@aws-sdk/client-sts@3.678.0) + '@aws-sdk/types': 3.679.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/types@3.649.0': + '@aws-sdk/types@3.609.0': dependencies: - '@smithy/types': 3.4.1 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/types@3.654.0': dependencies: - '@smithy/types': 3.4.2 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/types@3.667.0': @@ -16174,25 +15164,23 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/util-endpoints@3.637.0': + '@aws-sdk/types@3.679.0': dependencies: - '@aws-sdk/types': 3.609.0 - '@smithy/types': 3.4.1 - '@smithy/util-endpoints': 2.1.1 + '@smithy/types': 3.6.0 tslib: 2.8.0 - '@aws-sdk/util-endpoints@3.649.0': + '@aws-sdk/util-endpoints@3.637.0': dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.1 - '@smithy/util-endpoints': 2.1.1 + '@aws-sdk/types': 3.609.0 + '@smithy/types': 3.6.0 + '@smithy/util-endpoints': 2.1.4 tslib: 2.8.0 '@aws-sdk/util-endpoints@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/types': 3.4.2 - '@smithy/util-endpoints': 2.1.2 + '@smithy/types': 3.6.0 + '@smithy/util-endpoints': 2.1.4 tslib: 2.8.0 '@aws-sdk/util-endpoints@3.667.0': @@ -16202,28 +15190,28 @@ snapshots: '@smithy/util-endpoints': 2.1.4 tslib: 2.8.0 - '@aws-sdk/util-locate-window@3.568.0': + '@aws-sdk/util-endpoints@3.679.0': dependencies: + '@aws-sdk/types': 3.679.0 + '@smithy/types': 3.6.0 + '@smithy/util-endpoints': 2.1.4 tslib: 2.8.0 - '@aws-sdk/util-user-agent-browser@3.609.0': + '@aws-sdk/util-locate-window@3.568.0': dependencies: - '@aws-sdk/types': 3.609.0 - '@smithy/types': 3.4.1 - bowser: 2.11.0 tslib: 2.8.0 - '@aws-sdk/util-user-agent-browser@3.649.0': + '@aws-sdk/util-user-agent-browser@3.609.0': dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.609.0 + '@smithy/types': 3.6.0 bowser: 2.11.0 tslib: 2.8.0 '@aws-sdk/util-user-agent-browser@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/types': 3.4.2 + '@smithy/types': 3.6.0 bowser: 2.11.0 tslib: 2.8.0 @@ -16234,25 +15222,25 @@ snapshots: bowser: 2.11.0 tslib: 2.8.0 - '@aws-sdk/util-user-agent-node@3.614.0': + '@aws-sdk/util-user-agent-browser@3.679.0': dependencies: - '@aws-sdk/types': 3.609.0 - '@smithy/node-config-provider': 3.1.6 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.679.0 + '@smithy/types': 3.6.0 + bowser: 2.11.0 tslib: 2.8.0 - '@aws-sdk/util-user-agent-node@3.649.0': + '@aws-sdk/util-user-agent-node@3.614.0': dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/node-config-provider': 3.1.6 - '@smithy/types': 3.4.1 + '@aws-sdk/types': 3.609.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/util-user-agent-node@3.654.0': dependencies: '@aws-sdk/types': 3.654.0 - '@smithy/node-config-provider': 3.1.7 - '@smithy/types': 3.4.2 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@aws-sdk/util-user-agent-node@3.669.0': @@ -16262,7 +15250,6 @@ snapshots: '@smithy/node-config-provider': 3.1.9 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true '@aws-sdk/util-user-agent-node@3.678.0': dependencies: @@ -16272,6 +15259,14 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 + '@aws-sdk/util-user-agent-node@3.679.0': + dependencies: + '@aws-sdk/middleware-user-agent': 3.679.0 + '@aws-sdk/types': 3.679.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.0 + '@aws-sdk/util-utf8-browser@3.259.0': dependencies: tslib: 2.8.0 @@ -16339,7 +15334,7 @@ snapshots: jws: 4.0.0 open: 8.4.2 stoppable: 1.1.0 - tslib: 2.7.0 + tslib: 2.8.0 transitivePeerDependencies: - supports-color @@ -16359,11 +15354,6 @@ snapshots: jsonwebtoken: 9.0.2 uuid: 8.3.2 - '@babel/code-frame@7.24.7': - dependencies: - '@babel/highlight': 7.24.7 - picocolors: 1.1.1 - '@babel/code-frame@7.25.7': dependencies: '@babel/highlight': 7.25.7 @@ -16374,15 +15364,15 @@ snapshots: '@babel/core@7.25.2': dependencies: '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 '@babel/generator': 7.25.6 '@babel/helper-compilation-targets': 7.25.2 '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) '@babel/helpers': 7.25.6 - '@babel/parser': 7.25.6 + '@babel/parser': 7.25.9 '@babel/template': 7.25.0 '@babel/traverse': 7.25.6 - '@babel/types': 7.25.6 + '@babel/types': 7.25.9 convert-source-map: 2.0.0 debug: 4.3.7 gensync: 1.0.0-beta.2 @@ -16393,19 +15383,19 @@ snapshots: '@babel/generator@7.25.6': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.25.9 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 '@babel/helper-annotate-as-pure@7.24.7': dependencies: - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7': dependencies: '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color @@ -16451,14 +15441,14 @@ snapshots: '@babel/helper-member-expression-to-functions@7.24.8': dependencies: '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color '@babel/helper-module-imports@7.24.7': dependencies: '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color @@ -16467,14 +15457,14 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-module-imports': 7.24.7 '@babel/helper-simple-access': 7.24.7 - '@babel/helper-validator-identifier': 7.25.7 + '@babel/helper-validator-identifier': 7.25.9 '@babel/traverse': 7.25.6 transitivePeerDependencies: - supports-color '@babel/helper-optimise-call-expression@7.24.7': dependencies: - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 '@babel/helper-plugin-utils@7.24.8': {} @@ -16499,23 +15489,19 @@ snapshots: '@babel/helper-simple-access@7.24.7': dependencies: '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color '@babel/helper-skip-transparent-expression-wrappers@7.24.7': dependencies: '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color - '@babel/helper-string-parser@7.25.7': {} - '@babel/helper-string-parser@7.25.9': {} - '@babel/helper-validator-identifier@7.25.7': {} - '@babel/helper-validator-identifier@7.25.9': {} '@babel/helper-validator-option@7.24.8': {} @@ -16524,37 +15510,22 @@ snapshots: dependencies: '@babel/template': 7.25.0 '@babel/traverse': 7.25.6 - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color '@babel/helpers@7.25.6': dependencies: '@babel/template': 7.25.0 - '@babel/types': 7.25.8 - - '@babel/highlight@7.24.7': - dependencies: - '@babel/helper-validator-identifier': 7.25.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.1 + '@babel/types': 7.25.9 '@babel/highlight@7.25.7': dependencies: - '@babel/helper-validator-identifier': 7.25.7 + '@babel/helper-validator-identifier': 7.25.9 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.1.1 - '@babel/parser@7.25.6': - dependencies: - '@babel/types': 7.25.8 - - '@babel/parser@7.25.8': - dependencies: - '@babel/types': 7.25.8 - '@babel/parser@7.25.9': dependencies: '@babel/types': 7.25.9 @@ -16871,7 +15842,7 @@ snapshots: '@babel/core': 7.25.2 '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) '@babel/helper-plugin-utils': 7.24.8 - '@babel/helper-validator-identifier': 7.25.7 + '@babel/helper-validator-identifier': 7.25.9 '@babel/traverse': 7.25.6 transitivePeerDependencies: - supports-color @@ -17000,7 +15971,7 @@ snapshots: '@babel/helper-module-imports': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 transitivePeerDependencies: - supports-color @@ -17188,7 +16159,7 @@ snapshots: dependencies: '@babel/core': 7.25.2 '@babel/helper-plugin-utils': 7.24.8 - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 esutils: 2.0.3 '@babel/preset-react@7.24.7(@babel/core@7.25.2)': @@ -17227,34 +16198,22 @@ snapshots: '@babel/template@7.25.0': dependencies: - '@babel/code-frame': 7.24.7 - '@babel/parser': 7.25.8 - '@babel/types': 7.25.8 + '@babel/code-frame': 7.25.7 + '@babel/parser': 7.25.9 + '@babel/types': 7.25.9 '@babel/traverse@7.25.6': dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 '@babel/generator': 7.25.6 - '@babel/parser': 7.25.6 + '@babel/parser': 7.25.9 '@babel/template': 7.25.0 - '@babel/types': 7.25.6 + '@babel/types': 7.25.9 debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.25.6': - dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 - - '@babel/types@7.25.8': - dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 - '@babel/types@7.25.9': dependencies: '@babel/helper-string-parser': 7.25.9 @@ -17433,7 +16392,7 @@ snapshots: dependencies: mime: 3.0.0 - '@cloudflare/vitest-pool-workers@0.5.8(@cloudflare/workers-types@4.20240924.0)(@vitest/runner@2.1.1)(@vitest/snapshot@2.1.1)(bufferutil@4.0.8)(vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0))': + '@cloudflare/vitest-pool-workers@0.5.8(@cloudflare/workers-types@4.20240924.0)(@vitest/runner@2.1.1)(@vitest/snapshot@2.1.1)(bufferutil@4.0.8)(vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0))': dependencies: '@vitest/runner': 2.1.1 '@vitest/snapshot': 2.1.1 @@ -17443,7 +16402,7 @@ snapshots: esbuild: 0.17.19 miniflare: 3.20240909.5(bufferutil@4.0.8) semver: 7.6.3 - vitest: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0) + vitest: 2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0) wrangler: 3.78.8(@cloudflare/workers-types@4.20240924.0)(bufferutil@4.0.8) zod: 3.23.8 transitivePeerDependencies: @@ -17512,7 +16471,7 @@ snapshots: '@vladfrangu/async_event_emitter': 2.4.3 discord-api-types: 0.37.83 magic-bytes.js: 1.10.0 - tslib: 2.7.0 + tslib: 2.8.0 undici: 6.13.0 '@discordjs/util@1.1.0': {} @@ -17537,7 +16496,7 @@ snapshots: transitivePeerDependencies: - '@algolia/client-search' - '@docusaurus/core@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/core@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: '@babel/core': 7.25.2 '@babel/generator': 7.25.6 @@ -17551,12 +16510,12 @@ snapshots: '@babel/traverse': 7.25.6 '@docusaurus/cssnano-preset': 3.5.2 '@docusaurus/logger': 3.5.2 - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@mdx-js/react': 3.0.1(@types/react@18.3.12)(react@18.3.1) - autoprefixer: 10.4.20(postcss@8.4.41) + autoprefixer: 10.4.20(postcss@8.4.47) babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.95.0) babel-plugin-dynamic-import-node: 2.3.3 boxen: 6.2.1 @@ -17570,7 +16529,7 @@ snapshots: core-js: 3.38.1 css-loader: 6.11.0(webpack@5.95.0) css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.95.0) - cssnano: 6.1.2(postcss@8.4.41) + cssnano: 6.1.2(postcss@8.4.47) del: 6.1.1 detect-port: 1.6.1 escape-html: 1.0.3 @@ -17585,11 +16544,11 @@ snapshots: lodash: 4.17.21 mini-css-extract-plugin: 2.9.1(webpack@5.95.0) p-map: 4.0.0 - postcss: 8.4.41 - postcss-loader: 7.3.4(postcss@8.4.41)(typescript@5.6.2)(webpack@5.95.0) + postcss: 8.4.47 + postcss-loader: 7.3.4(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0) prompts: 2.4.2 react: 18.3.1 - react-dev-utils: 12.0.1(eslint@9.13.0)(typescript@5.6.2)(webpack@5.95.0) + react-dev-utils: 12.0.1(eslint@9.13.0)(typescript@5.6.3)(webpack@5.95.0) react-dom: 18.3.1(react@18.3.1) react-helmet-async: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' @@ -17602,7 +16561,7 @@ snapshots: serve-handler: 6.1.5 shelljs: 0.8.5 terser-webpack-plugin: 5.3.10(webpack@5.95.0) - tslib: 2.7.0 + tslib: 2.8.0 update-notifier: 6.0.2 url-loader: 4.1.1(file-loader@6.2.0(webpack@5.95.0))(webpack@5.95.0) webpack: 5.95.0 @@ -17642,11 +16601,11 @@ snapshots: chalk: 4.1.2 tslib: 2.8.0 - '@docusaurus/mdx-loader@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/mdx-loader@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: '@docusaurus/logger': 3.5.2 - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@mdx-js/mdx': 3.1.0(acorn@8.13.0) '@slorber/remark-comment': 1.0.0 escape-html: 1.0.3 @@ -17684,7 +16643,7 @@ snapshots: dependencies: '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/history': 4.7.11 - '@types/react': 18.3.5 + '@types/react': 18.3.12 '@types/react-router-config': 5.0.11 '@types/react-router-dom': 5.3.3 react: 18.3.1 @@ -17699,17 +16658,17 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/plugin-content-blog@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-content-blog@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/logger': 3.5.2 - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) cheerio: 1.0.0-rc.12 feed: 4.2.2 fs-extra: 11.2.0 @@ -17742,17 +16701,17 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/logger': 3.5.2 - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/module-type-aliases': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@types/react-router-config': 5.0.11 combine-promises: 1.2.0 fs-extra: 11.2.0 @@ -17783,13 +16742,13 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-content-pages@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-content-pages@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -17815,11 +16774,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-debug@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-debug@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -17845,11 +16804,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-analytics@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-google-analytics@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.8.0 @@ -17873,11 +16832,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-gtag@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-google-gtag@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@types/gtag.js': 0.0.12 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -17902,11 +16861,11 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-tag-manager@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-google-tag-manager@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) tslib: 2.8.0 @@ -17930,14 +16889,14 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-sitemap@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/plugin-sitemap@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/logger': 3.5.2 '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -17963,20 +16922,20 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/preset-classic@3.5.2(@algolia/client-search@5.9.1)(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.2)': - dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-debug': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-google-analytics': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-google-gtag': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-google-tag-manager': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-sitemap': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/theme-classic': 3.5.2(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/theme-search-algolia': 3.5.2(@algolia/client-search@5.9.1)(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.2) + '@docusaurus/preset-classic@3.5.2(@algolia/client-search@5.9.1)(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3)': + dependencies: + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-debug': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-google-analytics': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-google-gtag': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-google-tag-manager': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-sitemap': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/theme-classic': 3.5.2(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/theme-search-algolia': 3.5.2(@algolia/client-search@5.9.1)(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3) '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -18012,40 +16971,40 @@ snapshots: dependencies: mdast-util-mdx: 3.0.0 npm-to-yarn: 2.2.1 - tslib: 2.7.0 + tslib: 2.8.0 unified: 11.0.5 unist-util-visit: 5.0.0 transitivePeerDependencies: - supports-color - '@docusaurus/theme-classic@3.5.2(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/theme-classic@3.5.2(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/module-type-aliases': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/plugin-content-blog': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/plugin-content-pages': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/theme-translations': 3.5.2 '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@mdx-js/react': 3.0.1(@types/react@18.3.12)(react@18.3.1) clsx: 2.1.1 copy-text-to-clipboard: 3.2.0 infima: 0.2.0-alpha.44 lodash: 4.17.21 nprogress: 0.2.0 - postcss: 8.4.41 + postcss: 8.4.47 prism-react-renderer: 2.4.0(react@18.3.1) prismjs: 1.29.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-router-dom: 5.3.4(react@18.3.1) rtlcss: 4.3.0 - tslib: 2.7.0 + tslib: 2.8.0 utility-types: 3.11.0 transitivePeerDependencies: - '@parcel/css' @@ -18067,12 +17026,12 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/theme-common@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2)': + '@docusaurus/theme-common@3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)': dependencies: - '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/mdx-loader': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/module-type-aliases': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) '@types/history': 4.7.11 '@types/react': 18.3.12 @@ -18094,16 +17053,16 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/theme-search-algolia@3.5.2(@algolia/client-search@5.9.1)(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.2)': + '@docusaurus/theme-search-algolia@3.5.2(@algolia/client-search@5.9.1)(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(@types/react@18.3.12)(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2)(typescript@5.6.3)': dependencies: '@docsearch/react': 3.6.1(@algolia/client-search@5.9.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(search-insights@2.17.2) - '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/core': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/logger': 3.5.2 - '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) - '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.2) + '@docusaurus/plugin-content-docs': 3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) + '@docusaurus/theme-common': 3.5.2(@docusaurus/plugin-content-docs@3.5.2(@mdx-js/react@3.0.1(@types/react@18.3.12)(react@18.3.1))(acorn@8.13.0)(bufferutil@4.0.8)(eslint@9.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3))(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3) '@docusaurus/theme-translations': 3.5.2 - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) - '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) + '@docusaurus/utils-validation': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) algoliasearch: 4.24.0 algoliasearch-helper: 3.22.4(algoliasearch@4.24.0) clsx: 2.1.1 @@ -18147,7 +17106,7 @@ snapshots: dependencies: '@mdx-js/mdx': 3.1.0(acorn@8.13.0) '@types/history': 4.7.11 - '@types/react': 18.3.5 + '@types/react': 18.3.12 commander: 5.1.0 joi: 17.13.3 react: 18.3.1 @@ -18170,10 +17129,10 @@ snapshots: optionalDependencies: '@docusaurus/types': 3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@docusaurus/utils-validation@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils-validation@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)': dependencies: '@docusaurus/logger': 3.5.2 - '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2) + '@docusaurus/utils': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3) '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) fs-extra: 11.2.0 joi: 17.13.3 @@ -18189,11 +17148,11 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/utils@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.2)': + '@docusaurus/utils@3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(typescript@5.6.3)': dependencies: '@docusaurus/logger': 3.5.2 '@docusaurus/utils-common': 3.5.2(@docusaurus/types@3.5.2(acorn@8.13.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)) - '@svgr/webpack': 8.1.0(typescript@5.6.2) + '@svgr/webpack': 8.1.0(typescript@5.6.3) escape-string-regexp: 4.0.0 file-loader: 6.2.0(webpack@5.95.0) fs-extra: 11.2.0 @@ -18532,10 +17491,7 @@ snapshots: eslint-visitor-keys: 3.4.3 optional: true - '@eslint-community/regexpp@4.11.0': {} - - '@eslint-community/regexpp@4.11.1': - optional: true + '@eslint-community/regexpp@4.11.1': {} '@eslint/config-array@0.18.0': dependencies: @@ -18798,7 +17754,7 @@ snapshots: '@inquirer/figures': 1.0.6 '@inquirer/type': 2.0.0 '@types/mute-stream': 0.0.4 - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 cli-width: 4.1.0 @@ -18836,7 +17792,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -18971,15 +17927,6 @@ snapshots: dependencies: sparse-bitfield: 3.0.3 - '@mswjs/interceptors@0.35.6': - dependencies: - '@open-draft/deferred-promise': 2.2.0 - '@open-draft/logger': 0.3.0 - '@open-draft/until': 2.1.0 - is-node-process: 1.2.0 - outvariant: 1.4.3 - strict-event-emitter: 0.5.1 - '@mswjs/interceptors@0.35.9': dependencies: '@open-draft/deferred-promise': 2.2.0 @@ -18988,7 +17935,6 @@ snapshots: is-node-process: 1.2.0 outvariant: 1.4.3 strict-event-emitter: 0.5.1 - optional: true '@neondatabase/serverless@0.9.5': dependencies: @@ -19007,10 +17953,6 @@ snapshots: dependencies: glob: 10.3.10 - '@next/eslint-plugin-next@14.2.7': - dependencies: - glob: 10.3.10 - '@next/swc-darwin-arm64@14.2.11': optional: true @@ -19193,11 +18135,11 @@ snapshots: '@protobufjs/utf8@1.1.0': {} - '@qdrant/js-client-rest@1.11.0(typescript@5.6.2)': + '@qdrant/js-client-rest@1.11.0(typescript@5.6.3)': dependencies: '@qdrant/openapi-typescript-fetch': 1.2.6 '@sevinf/maybe': 0.5.0 - typescript: 5.6.2 + typescript: 5.6.3 undici: 5.28.4 '@qdrant/openapi-typescript-fetch@1.2.6': {} @@ -19860,99 +18802,51 @@ snapshots: optionalDependencies: rollup: 4.24.0 - '@rollup/rollup-android-arm-eabi@4.21.2': - optional: true - '@rollup/rollup-android-arm-eabi@4.24.0': optional: true - '@rollup/rollup-android-arm64@4.21.2': - optional: true - '@rollup/rollup-android-arm64@4.24.0': optional: true - '@rollup/rollup-darwin-arm64@4.21.2': - optional: true - '@rollup/rollup-darwin-arm64@4.24.0': optional: true - '@rollup/rollup-darwin-x64@4.21.2': - optional: true - '@rollup/rollup-darwin-x64@4.24.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.21.2': - optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.24.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.21.2': - optional: true - '@rollup/rollup-linux-arm-musleabihf@4.24.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.21.2': - optional: true - '@rollup/rollup-linux-arm64-gnu@4.24.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.21.2': - optional: true - '@rollup/rollup-linux-arm64-musl@4.24.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': - optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.24.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.21.2': - optional: true - '@rollup/rollup-linux-riscv64-gnu@4.24.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.21.2': - optional: true - '@rollup/rollup-linux-s390x-gnu@4.24.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.21.2': - optional: true - '@rollup/rollup-linux-x64-gnu@4.24.0': optional: true - '@rollup/rollup-linux-x64-musl@4.21.2': - optional: true - '@rollup/rollup-linux-x64-musl@4.24.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.21.2': - optional: true - '@rollup/rollup-win32-arm64-msvc@4.24.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.21.2': - optional: true - '@rollup/rollup-win32-ia32-msvc@4.24.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.21.2': - optional: true - '@rollup/rollup-win32-x64-msvc@4.24.0': optional: true @@ -20058,16 +18952,6 @@ snapshots: micromark-util-character: 1.2.0 micromark-util-symbol: 1.1.0 - '@smithy/abort-controller@3.1.3': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/abort-controller@3.1.4': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/abort-controller@3.1.6': dependencies: '@smithy/types': 3.6.0 @@ -20081,48 +18965,6 @@ snapshots: '@smithy/util-middleware': 3.0.8 tslib: 2.8.0 - '@smithy/config-resolver@3.0.7': - dependencies: - '@smithy/node-config-provider': 3.1.6 - '@smithy/types': 3.4.1 - '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.5 - tslib: 2.8.0 - - '@smithy/config-resolver@3.0.8': - dependencies: - '@smithy/node-config-provider': 3.1.7 - '@smithy/types': 3.4.2 - '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.6 - tslib: 2.8.0 - - '@smithy/core@2.4.2': - dependencies: - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-retry': 3.0.17 - '@smithy/middleware-serde': 3.0.5 - '@smithy/protocol-http': 4.1.2 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - - '@smithy/core@2.4.5': - dependencies: - '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-retry': 3.0.20 - '@smithy/middleware-serde': 3.0.6 - '@smithy/protocol-http': 4.1.3 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-middleware': 3.0.6 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - '@smithy/core@2.5.1': dependencies: '@smithy/middleware-serde': 3.0.8 @@ -20134,22 +18976,6 @@ snapshots: '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 - '@smithy/credential-provider-imds@3.2.2': - dependencies: - '@smithy/node-config-provider': 3.1.6 - '@smithy/property-provider': 3.1.5 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 - tslib: 2.8.0 - - '@smithy/credential-provider-imds@3.2.3': - dependencies: - '@smithy/node-config-provider': 3.1.7 - '@smithy/property-provider': 3.1.6 - '@smithy/types': 3.4.2 - '@smithy/url-parser': 3.0.6 - tslib: 2.8.0 - '@smithy/credential-provider-imds@3.2.5': dependencies: '@smithy/node-config-provider': 3.1.9 @@ -20165,80 +18991,34 @@ snapshots: '@smithy/util-hex-encoding': 1.1.0 tslib: 2.8.0 - '@smithy/eventstream-codec@3.1.2': - dependencies: - '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 3.4.1 - '@smithy/util-hex-encoding': 3.0.0 - tslib: 2.8.0 - '@smithy/eventstream-codec@3.1.5': dependencies: '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 3.4.2 + '@smithy/types': 3.6.0 '@smithy/util-hex-encoding': 3.0.0 tslib: 2.8.0 - '@smithy/eventstream-serde-browser@3.0.6': - dependencies: - '@smithy/eventstream-serde-universal': 3.0.5 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - '@smithy/eventstream-serde-browser@3.0.9': dependencies: '@smithy/eventstream-serde-universal': 3.0.8 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - - '@smithy/eventstream-serde-config-resolver@3.0.3': - dependencies: - '@smithy/types': 3.4.1 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@smithy/eventstream-serde-config-resolver@3.0.6': dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - - '@smithy/eventstream-serde-node@3.0.5': - dependencies: - '@smithy/eventstream-serde-universal': 3.0.5 - '@smithy/types': 3.4.1 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@smithy/eventstream-serde-node@3.0.8': dependencies: '@smithy/eventstream-serde-universal': 3.0.8 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - - '@smithy/eventstream-serde-universal@3.0.5': - dependencies: - '@smithy/eventstream-codec': 3.1.2 - '@smithy/types': 3.4.1 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@smithy/eventstream-serde-universal@3.0.8': dependencies: '@smithy/eventstream-codec': 3.1.5 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - - '@smithy/fetch-http-handler@3.2.6': - dependencies: - '@smithy/protocol-http': 4.1.2 - '@smithy/querystring-builder': 3.0.5 - '@smithy/types': 3.4.1 - '@smithy/util-base64': 3.0.0 - tslib: 2.8.0 - - '@smithy/fetch-http-handler@3.2.8': - dependencies: - '@smithy/protocol-http': 4.1.3 - '@smithy/querystring-builder': 3.0.6 - '@smithy/types': 3.4.2 - '@smithy/util-base64': 3.0.0 + '@smithy/types': 3.6.0 tslib: 2.8.0 '@smithy/fetch-http-handler@3.2.9': @@ -20257,20 +19037,6 @@ snapshots: '@smithy/util-base64': 3.0.0 tslib: 2.8.0 - '@smithy/hash-node@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - '@smithy/util-buffer-from': 3.0.0 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - - '@smithy/hash-node@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - '@smithy/util-buffer-from': 3.0.0 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - '@smithy/hash-node@3.0.8': dependencies: '@smithy/types': 3.6.0 @@ -20278,16 +19044,6 @@ snapshots: '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 - '@smithy/invalid-dependency@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/invalid-dependency@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/invalid-dependency@3.0.8': dependencies: '@smithy/types': 3.6.0 @@ -20311,38 +19067,6 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/middleware-content-length@3.0.7': - dependencies: - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/middleware-content-length@3.0.8': - dependencies: - '@smithy/protocol-http': 4.1.3 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - - '@smithy/middleware-endpoint@3.1.2': - dependencies: - '@smithy/middleware-serde': 3.0.5 - '@smithy/node-config-provider': 3.1.6 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - '@smithy/url-parser': 3.0.5 - '@smithy/util-middleware': 3.0.5 - tslib: 2.8.0 - - '@smithy/middleware-endpoint@3.1.3': - dependencies: - '@smithy/middleware-serde': 3.0.6 - '@smithy/node-config-provider': 3.1.7 - '@smithy/shared-ini-file-loader': 3.1.7 - '@smithy/types': 3.4.2 - '@smithy/url-parser': 3.0.6 - '@smithy/util-middleware': 3.0.6 - tslib: 2.8.0 - '@smithy/middleware-endpoint@3.2.1': dependencies: '@smithy/core': 2.5.1 @@ -20354,30 +19078,6 @@ snapshots: '@smithy/util-middleware': 3.0.8 tslib: 2.8.0 - '@smithy/middleware-retry@3.0.17': - dependencies: - '@smithy/node-config-provider': 3.1.6 - '@smithy/protocol-http': 4.1.2 - '@smithy/service-error-classification': 3.0.5 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-retry': 3.0.5 - tslib: 2.8.0 - uuid: 9.0.1 - - '@smithy/middleware-retry@3.0.20': - dependencies: - '@smithy/node-config-provider': 3.1.7 - '@smithy/protocol-http': 4.1.3 - '@smithy/service-error-classification': 3.0.6 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - '@smithy/util-middleware': 3.0.6 - '@smithy/util-retry': 3.0.6 - tslib: 2.8.0 - uuid: 9.0.1 - '@smithy/middleware-retry@3.0.25': dependencies: '@smithy/node-config-provider': 3.1.9 @@ -20390,50 +19090,16 @@ snapshots: tslib: 2.8.0 uuid: 9.0.1 - '@smithy/middleware-serde@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/middleware-serde@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/middleware-serde@3.0.8': dependencies: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/middleware-stack@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/middleware-stack@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/middleware-stack@3.0.8': dependencies: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/node-config-provider@3.1.6': - dependencies: - '@smithy/property-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/node-config-provider@3.1.7': - dependencies: - '@smithy/property-provider': 3.1.6 - '@smithy/shared-ini-file-loader': 3.1.7 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/node-config-provider@3.1.9': dependencies: '@smithy/property-provider': 3.1.8 @@ -20441,22 +19107,6 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/node-http-handler@3.2.1': - dependencies: - '@smithy/abort-controller': 3.1.3 - '@smithy/protocol-http': 4.1.2 - '@smithy/querystring-builder': 3.0.5 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/node-http-handler@3.2.3': - dependencies: - '@smithy/abort-controller': 3.1.4 - '@smithy/protocol-http': 4.1.3 - '@smithy/querystring-builder': 3.0.6 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/node-http-handler@3.2.5': dependencies: '@smithy/abort-controller': 3.1.6 @@ -20465,16 +19115,6 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/property-provider@3.1.5': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/property-provider@3.1.6': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/property-provider@3.1.8': dependencies: '@smithy/types': 3.6.0 @@ -20485,75 +19125,25 @@ snapshots: '@smithy/types': 1.2.0 tslib: 2.8.0 - '@smithy/protocol-http@4.1.2': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/protocol-http@4.1.3': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/protocol-http@4.1.5': dependencies: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/querystring-builder@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - '@smithy/util-uri-escape': 3.0.0 - tslib: 2.8.0 - - '@smithy/querystring-builder@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - '@smithy/util-uri-escape': 3.0.0 - tslib: 2.8.0 - '@smithy/querystring-builder@3.0.8': dependencies: '@smithy/types': 3.6.0 '@smithy/util-uri-escape': 3.0.0 tslib: 2.8.0 - '@smithy/querystring-parser@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/querystring-parser@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - - '@smithy/querystring-parser@3.0.8': - dependencies: - '@smithy/types': 3.6.0 - tslib: 2.8.0 - - '@smithy/service-error-classification@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - - '@smithy/service-error-classification@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - - '@smithy/service-error-classification@3.0.8': - dependencies: - '@smithy/types': 3.6.0 - - '@smithy/shared-ini-file-loader@3.1.6': + '@smithy/querystring-parser@3.0.8': dependencies: - '@smithy/types': 3.4.1 + '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/shared-ini-file-loader@3.1.7': + '@smithy/service-error-classification@3.0.8': dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 + '@smithy/types': 3.6.0 '@smithy/shared-ini-file-loader@3.1.9': dependencies: @@ -20571,28 +19161,6 @@ snapshots: '@smithy/util-utf8': 1.1.0 tslib: 2.8.0 - '@smithy/signature-v4@4.1.2': - dependencies: - '@smithy/is-array-buffer': 3.0.0 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 - '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-middleware': 3.0.5 - '@smithy/util-uri-escape': 3.0.0 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - - '@smithy/signature-v4@4.1.4': - dependencies: - '@smithy/is-array-buffer': 3.0.0 - '@smithy/protocol-http': 4.1.3 - '@smithy/types': 3.4.2 - '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-middleware': 3.0.6 - '@smithy/util-uri-escape': 3.0.0 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - '@smithy/signature-v4@4.2.1': dependencies: '@smithy/is-array-buffer': 3.0.0 @@ -20604,24 +19172,6 @@ snapshots: '@smithy/util-utf8': 3.0.0 tslib: 2.8.0 - '@smithy/smithy-client@3.3.1': - dependencies: - '@smithy/middleware-endpoint': 3.1.2 - '@smithy/middleware-stack': 3.0.5 - '@smithy/protocol-http': 4.1.2 - '@smithy/types': 3.4.1 - '@smithy/util-stream': 3.1.5 - tslib: 2.8.0 - - '@smithy/smithy-client@3.3.4': - dependencies: - '@smithy/middleware-endpoint': 3.1.3 - '@smithy/middleware-stack': 3.0.6 - '@smithy/protocol-http': 4.1.3 - '@smithy/types': 3.4.2 - '@smithy/util-stream': 3.1.8 - tslib: 2.8.0 - '@smithy/smithy-client@3.4.2': dependencies: '@smithy/core': 2.5.1 @@ -20636,30 +19186,10 @@ snapshots: dependencies: tslib: 2.8.0 - '@smithy/types@3.4.1': - dependencies: - tslib: 2.8.0 - - '@smithy/types@3.4.2': - dependencies: - tslib: 2.8.0 - '@smithy/types@3.6.0': dependencies: tslib: 2.8.0 - '@smithy/url-parser@3.0.5': - dependencies: - '@smithy/querystring-parser': 3.0.5 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/url-parser@3.0.6': - dependencies: - '@smithy/querystring-parser': 3.0.6 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/url-parser@3.0.8': dependencies: '@smithy/querystring-parser': 3.0.8 @@ -20699,22 +19229,6 @@ snapshots: dependencies: tslib: 2.8.0 - '@smithy/util-defaults-mode-browser@3.0.17': - dependencies: - '@smithy/property-provider': 3.1.5 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - bowser: 2.11.0 - tslib: 2.8.0 - - '@smithy/util-defaults-mode-browser@3.0.20': - dependencies: - '@smithy/property-provider': 3.1.6 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - bowser: 2.11.0 - tslib: 2.8.0 - '@smithy/util-defaults-mode-browser@3.0.25': dependencies: '@smithy/property-provider': 3.1.8 @@ -20723,26 +19237,6 @@ snapshots: bowser: 2.11.0 tslib: 2.8.0 - '@smithy/util-defaults-mode-node@3.0.17': - dependencies: - '@smithy/config-resolver': 3.0.7 - '@smithy/credential-provider-imds': 3.2.2 - '@smithy/node-config-provider': 3.1.6 - '@smithy/property-provider': 3.1.5 - '@smithy/smithy-client': 3.3.1 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/util-defaults-mode-node@3.0.20': - dependencies: - '@smithy/config-resolver': 3.0.8 - '@smithy/credential-provider-imds': 3.2.3 - '@smithy/node-config-provider': 3.1.7 - '@smithy/property-provider': 3.1.6 - '@smithy/smithy-client': 3.3.4 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/util-defaults-mode-node@3.0.25': dependencies: '@smithy/config-resolver': 3.0.10 @@ -20753,18 +19247,6 @@ snapshots: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/util-endpoints@2.1.1': - dependencies: - '@smithy/node-config-provider': 3.1.6 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/util-endpoints@2.1.2': - dependencies: - '@smithy/node-config-provider': 3.1.7 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/util-endpoints@2.1.4': dependencies: '@smithy/node-config-provider': 3.1.9 @@ -20783,61 +19265,17 @@ snapshots: dependencies: tslib: 2.8.0 - '@smithy/util-middleware@3.0.5': - dependencies: - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/util-middleware@3.0.6': - dependencies: - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/util-middleware@3.0.8': dependencies: '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/util-retry@3.0.5': - dependencies: - '@smithy/service-error-classification': 3.0.5 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - - '@smithy/util-retry@3.0.6': - dependencies: - '@smithy/service-error-classification': 3.0.6 - '@smithy/types': 3.4.2 - tslib: 2.8.0 - '@smithy/util-retry@3.0.8': dependencies: '@smithy/service-error-classification': 3.0.8 '@smithy/types': 3.6.0 tslib: 2.8.0 - '@smithy/util-stream@3.1.5': - dependencies: - '@smithy/fetch-http-handler': 3.2.6 - '@smithy/node-http-handler': 3.2.1 - '@smithy/types': 3.4.1 - '@smithy/util-base64': 3.0.0 - '@smithy/util-buffer-from': 3.0.0 - '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - - '@smithy/util-stream@3.1.8': - dependencies: - '@smithy/fetch-http-handler': 3.2.8 - '@smithy/node-http-handler': 3.2.3 - '@smithy/types': 3.4.2 - '@smithy/util-base64': 3.0.0 - '@smithy/util-buffer-from': 3.0.0 - '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-utf8': 3.0.0 - tslib: 2.8.0 - '@smithy/util-stream@3.2.1': dependencies: '@smithy/fetch-http-handler': 4.0.0 @@ -20872,18 +19310,11 @@ snapshots: '@smithy/util-buffer-from': 3.0.0 tslib: 2.8.0 - '@smithy/util-waiter@3.1.4': - dependencies: - '@smithy/abort-controller': 3.1.3 - '@smithy/types': 3.4.1 - tslib: 2.8.0 - '@smithy/util-waiter@3.1.7': dependencies: '@smithy/abort-controller': 3.1.6 '@smithy/types': 3.6.0 tslib: 2.8.0 - optional: true '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.25.2)': dependencies: @@ -20929,12 +19360,12 @@ snapshots: '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.25.2) '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.25.2) - '@svgr/core@8.1.0(typescript@5.6.2)': + '@svgr/core@8.1.0(typescript@5.6.3)': dependencies: '@babel/core': 7.25.2 '@svgr/babel-preset': 8.1.0(@babel/core@7.25.2) camelcase: 6.3.0 - cosmiconfig: 8.3.6(typescript@5.6.2) + cosmiconfig: 8.3.6(typescript@5.6.3) snake-case: 3.0.4 transitivePeerDependencies: - supports-color @@ -20942,46 +19373,46 @@ snapshots: '@svgr/hast-util-to-babel-ast@8.0.0': dependencies: - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 entities: 4.5.0 - '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.2))': + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))': dependencies: '@babel/core': 7.25.2 '@svgr/babel-preset': 8.1.0(@babel/core@7.25.2) - '@svgr/core': 8.1.0(typescript@5.6.2) + '@svgr/core': 8.1.0(typescript@5.6.3) '@svgr/hast-util-to-babel-ast': 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.6.2))(typescript@5.6.2)': + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))(typescript@5.6.3)': dependencies: - '@svgr/core': 8.1.0(typescript@5.6.2) - cosmiconfig: 8.3.6(typescript@5.6.2) + '@svgr/core': 8.1.0(typescript@5.6.3) + cosmiconfig: 8.3.6(typescript@5.6.3) deepmerge: 4.3.1 svgo: 3.3.2 transitivePeerDependencies: - typescript - '@svgr/webpack@8.1.0(typescript@5.6.2)': + '@svgr/webpack@8.1.0(typescript@5.6.3)': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-react-constant-elements': 7.25.1(@babel/core@7.25.2) '@babel/preset-env': 7.25.4(@babel/core@7.25.2) '@babel/preset-react': 7.24.7(@babel/core@7.25.2) '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2) - '@svgr/core': 8.1.0(typescript@5.6.2) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.6.2)) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.6.2))(typescript@5.6.2) + '@svgr/core': 8.1.0(typescript@5.6.3) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3))(typescript@5.6.3) transitivePeerDependencies: - supports-color - typescript - '@swc/cli@0.4.0(@swc/core@1.7.22(@swc/helpers@0.5.13))(chokidar@3.6.0)': + '@swc/cli@0.4.0(@swc/core@1.7.36(@swc/helpers@0.5.13))(chokidar@3.6.0)': dependencies: '@mole-inc/bin-wrapper': 8.0.1 - '@swc/core': 1.7.22(@swc/helpers@0.5.13) + '@swc/core': 1.7.36(@swc/helpers@0.5.13) '@swc/counter': 0.1.3 commander: 8.3.0 fast-glob: 3.3.2 @@ -20993,83 +19424,36 @@ snapshots: optionalDependencies: chokidar: 3.6.0 - '@swc/core-darwin-arm64@1.7.22': - optional: true - '@swc/core-darwin-arm64@1.7.36': optional: true - '@swc/core-darwin-x64@1.7.22': - optional: true - '@swc/core-darwin-x64@1.7.36': optional: true - '@swc/core-linux-arm-gnueabihf@1.7.22': - optional: true - '@swc/core-linux-arm-gnueabihf@1.7.36': optional: true - '@swc/core-linux-arm64-gnu@1.7.22': - optional: true - '@swc/core-linux-arm64-gnu@1.7.36': optional: true - '@swc/core-linux-arm64-musl@1.7.22': - optional: true - '@swc/core-linux-arm64-musl@1.7.36': optional: true - '@swc/core-linux-x64-gnu@1.7.22': - optional: true - '@swc/core-linux-x64-gnu@1.7.36': optional: true - '@swc/core-linux-x64-musl@1.7.22': - optional: true - '@swc/core-linux-x64-musl@1.7.36': optional: true - '@swc/core-win32-arm64-msvc@1.7.22': - optional: true - '@swc/core-win32-arm64-msvc@1.7.36': optional: true - '@swc/core-win32-ia32-msvc@1.7.22': - optional: true - '@swc/core-win32-ia32-msvc@1.7.36': optional: true - '@swc/core-win32-x64-msvc@1.7.22': - optional: true - '@swc/core-win32-x64-msvc@1.7.36': optional: true - '@swc/core@1.7.22(@swc/helpers@0.5.13)': - dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.12 - optionalDependencies: - '@swc/core-darwin-arm64': 1.7.22 - '@swc/core-darwin-x64': 1.7.22 - '@swc/core-linux-arm-gnueabihf': 1.7.22 - '@swc/core-linux-arm64-gnu': 1.7.22 - '@swc/core-linux-arm64-musl': 1.7.22 - '@swc/core-linux-x64-gnu': 1.7.22 - '@swc/core-linux-x64-musl': 1.7.22 - '@swc/core-win32-arm64-msvc': 1.7.22 - '@swc/core-win32-ia32-msvc': 1.7.22 - '@swc/core-win32-x64-msvc': 1.7.22 - '@swc/helpers': 0.5.13 - '@swc/core@1.7.36(@swc/helpers@0.5.13)': dependencies: '@swc/counter': 0.1.3 @@ -21159,49 +19543,49 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.25.8 - '@babel/types': 7.25.8 + '@babel/parser': 7.25.9 + '@babel/types': 7.25.9 '@types/babel__generator': 7.6.8 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.6 '@types/babel__generator@7.6.8': dependencies: - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 '@types/babel__template@7.4.4': dependencies: - '@babel/parser': 7.25.8 - '@babel/types': 7.25.8 + '@babel/parser': 7.25.9 + '@babel/types': 7.25.9 '@types/babel__traverse@7.20.6': dependencies: - '@babel/types': 7.25.8 + '@babel/types': 7.25.9 '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/bonjour@3.5.13': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/responselike': 1.0.3 '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.19.5 - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/connect@3.4.38': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/cookie@0.6.0': {} @@ -21215,13 +19599,11 @@ snapshots: dependencies: '@types/estree': 1.0.6 - '@types/estree@1.0.5': {} - '@types/estree@1.0.6': {} '@types/express-serve-static-core@4.19.5': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -21253,7 +19635,7 @@ snapshots: '@types/http-proxy@1.17.15': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/istanbul-lib-coverage@2.0.6': {} @@ -21275,7 +19657,7 @@ snapshots: '@types/keyv@3.1.4': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/lodash-es@4.17.12': dependencies: @@ -21295,16 +19677,16 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/node-fetch@2.6.11': dependencies: - '@types/node': 22.7.8 - form-data: 4.0.0 + '@types/node': 22.8.1 + form-data: 4.0.1 '@types/node-forge@1.3.11': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/node@12.20.55': {} @@ -21314,10 +19696,6 @@ snapshots: dependencies: undici-types: 5.26.5 - '@types/node@22.5.4': - dependencies: - undici-types: 6.19.8 - '@types/node@22.7.7': dependencies: undici-types: 6.19.8 @@ -21326,28 +19704,26 @@ snapshots: dependencies: undici-types: 6.19.8 - '@types/papaparse@5.3.14': + '@types/node@22.8.1': dependencies: - '@types/node': 22.7.8 + undici-types: 6.19.8 '@types/parse-json@4.0.2': {} '@types/pg@8.11.6': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 pg-protocol: 1.6.1 pg-types: 4.0.2 '@types/pg@8.11.8': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 pg-protocol: 1.6.1 pg-types: 4.0.2 '@types/prismjs@1.26.4': {} - '@types/prop-types@15.7.12': {} - '@types/prop-types@15.7.13': {} '@types/qs@6.9.15': {} @@ -21356,18 +19732,18 @@ snapshots: '@types/react-dom@18.3.1': dependencies: - '@types/react': 18.3.11 + '@types/react': 18.3.12 '@types/react-router-config@5.0.11': dependencies: '@types/history': 4.7.11 - '@types/react': 18.3.5 + '@types/react': 18.3.12 '@types/react-router': 5.1.20 '@types/react-router-dom@5.3.3': dependencies: '@types/history': 4.7.11 - '@types/react': 18.3.5 + '@types/react': 18.3.12 '@types/react-router': 5.1.20 '@types/react-router@5.1.20': @@ -21389,34 +19765,29 @@ snapshots: '@types/prop-types': 15.7.13 csstype: 3.1.3 - '@types/react@18.3.5': - dependencies: - '@types/prop-types': 15.7.12 - csstype: 3.1.3 - '@types/readable-stream@4.0.15': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 safe-buffer: 5.1.2 '@types/resolve@1.20.2': {} '@types/responselike@1.0.3': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/retry@0.12.0': {} '@types/sax@1.2.7': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/semver@7.5.8': {} '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/serve-index@1.9.4': dependencies: @@ -21425,12 +19796,12 @@ snapshots: '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/send': 0.17.4 '@types/sockjs@0.3.36': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/statuses@2.0.5': {} @@ -21442,8 +19813,7 @@ snapshots: '@types/unist@3.0.3': {} - '@types/uuid@9.0.8': - optional: true + '@types/uuid@9.0.8': {} '@types/webidl-conversions@7.0.3': {} @@ -21455,7 +19825,7 @@ snapshots: '@types/ws@8.5.12': dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 '@types/yargs-parser@21.0.3': {} @@ -21463,13 +19833,13 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.3 - '@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)': + '@typescript-eslint/eslint-plugin@7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)': dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2) + '@eslint-community/regexpp': 4.11.1 + '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.3) '@typescript-eslint/scope-manager': 7.2.0 - '@typescript-eslint/type-utils': 7.2.0(eslint@8.57.0)(typescript@5.6.2) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.6.2) + '@typescript-eslint/type-utils': 7.2.0(eslint@8.57.0)(typescript@5.6.3) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.2.0 debug: 4.3.7 eslint: 8.57.0 @@ -21477,53 +19847,40 @@ snapshots: ignore: 5.3.2 natural-compare: 1.4.0 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@8.3.0(@typescript-eslint/parser@8.10.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2)': + '@typescript-eslint/eslint-plugin@8.3.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)': dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.10.0(eslint@8.57.0)(typescript@5.6.2) + '@eslint-community/regexpp': 4.11.1 + '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.3) '@typescript-eslint/scope-manager': 8.3.0 - '@typescript-eslint/type-utils': 8.3.0(eslint@8.57.0)(typescript@5.6.2) - '@typescript-eslint/utils': 8.3.0(eslint@8.57.0)(typescript@5.6.2) + '@typescript-eslint/type-utils': 8.3.0(eslint@8.57.0)(typescript@5.6.3) + '@typescript-eslint/utils': 8.3.0(eslint@8.57.0)(typescript@5.6.3) '@typescript-eslint/visitor-keys': 8.3.0 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2)': + '@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 7.2.0 '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.2.0 debug: 4.3.7 eslint: 8.57.0 optionalDependencies: - typescript: 5.6.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/parser@8.10.0(eslint@8.57.0)(typescript@5.6.2)': - dependencies: - '@typescript-eslint/scope-manager': 8.10.0 - '@typescript-eslint/types': 8.10.0 - '@typescript-eslint/typescript-estree': 8.10.0(typescript@5.6.2) - '@typescript-eslint/visitor-keys': 8.10.0 - debug: 4.3.7 - eslint: 8.57.0 - optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -21532,36 +19889,31 @@ snapshots: '@typescript-eslint/types': 7.2.0 '@typescript-eslint/visitor-keys': 7.2.0 - '@typescript-eslint/scope-manager@8.10.0': - dependencies: - '@typescript-eslint/types': 8.10.0 - '@typescript-eslint/visitor-keys': 8.10.0 - '@typescript-eslint/scope-manager@8.3.0': dependencies: '@typescript-eslint/types': 8.3.0 '@typescript-eslint/visitor-keys': 8.3.0 - '@typescript-eslint/type-utils@7.2.0(eslint@8.57.0)(typescript@5.6.2)': + '@typescript-eslint/type-utils@7.2.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.2) - '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.3) + '@typescript-eslint/utils': 7.2.0(eslint@8.57.0)(typescript@5.6.3) debug: 4.3.7 eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@8.3.0(eslint@8.57.0)(typescript@5.6.2)': + '@typescript-eslint/type-utils@8.3.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.6.2) - '@typescript-eslint/utils': 8.3.0(eslint@8.57.0)(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.6.3) + '@typescript-eslint/utils': 8.3.0(eslint@8.57.0)(typescript@5.6.3) debug: 4.3.7 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - eslint - supports-color @@ -21570,8 +19922,6 @@ snapshots: '@typescript-eslint/types@7.2.0': {} - '@typescript-eslint/types@8.10.0': {} - '@typescript-eslint/types@8.3.0': {} '@typescript-eslint/typescript-estree@7.18.0(typescript@5.6.3)': @@ -21589,7 +19939,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.2.0(typescript@5.6.2)': + '@typescript-eslint/typescript-estree@7.2.0(typescript@5.6.3)': dependencies: '@typescript-eslint/types': 7.2.0 '@typescript-eslint/visitor-keys': 7.2.0 @@ -21598,28 +19948,13 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.6.2) - optionalDependencies: - typescript: 5.6.2 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/typescript-estree@8.10.0(typescript@5.6.2)': - dependencies: - '@typescript-eslint/types': 8.10.0 - '@typescript-eslint/visitor-keys': 8.10.0 - debug: 4.3.7 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.3.0(typescript@5.6.2)': + '@typescript-eslint/typescript-estree@8.3.0(typescript@5.6.3)': dependencies: '@typescript-eslint/types': 8.3.0 '@typescript-eslint/visitor-keys': 8.3.0 @@ -21628,32 +19963,32 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.6.2) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@7.2.0(eslint@8.57.0)(typescript@5.6.2)': + '@typescript-eslint/utils@7.2.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 7.2.0 '@typescript-eslint/types': 7.2.0 - '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 7.2.0(typescript@5.6.3) eslint: 8.57.0 semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@8.3.0(eslint@8.57.0)(typescript@5.6.2)': + '@typescript-eslint/utils@8.3.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@typescript-eslint/scope-manager': 8.3.0 '@typescript-eslint/types': 8.3.0 - '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.6.2) + '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.6.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -21669,11 +20004,6 @@ snapshots: '@typescript-eslint/types': 7.2.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.10.0': - dependencies: - '@typescript-eslint/types': 8.10.0 - eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.3.0': dependencies: '@typescript-eslint/types': 8.3.0 @@ -21698,14 +20028,14 @@ snapshots: transitivePeerDependencies: - utf-8-validate - '@vitejs/plugin-react@4.3.2(vite@5.4.9(@types/node@22.7.8)(terser@5.36.0))': + '@vitejs/plugin-react@4.3.2(vite@5.4.9(@types/node@22.8.1)(terser@5.36.0))': dependencies: '@babel/core': 7.25.2 '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2) '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2) '@types/babel__core': 7.20.5 react-refresh: 0.14.2 - vite: 5.4.9(@types/node@22.7.8)(terser@5.36.0) + vite: 5.4.9(@types/node@22.8.1)(terser@5.36.0) transitivePeerDependencies: - supports-color @@ -21716,41 +20046,14 @@ snapshots: chai: 5.1.1 tinyrainbow: 1.2.0 - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.2))(vite@5.4.2(@types/node@22.5.4)(terser@5.36.0))': - dependencies: - '@vitest/spy': 2.1.1 - estree-walker: 3.0.3 - magic-string: 0.30.11 - optionalDependencies: - msw: 2.4.11(typescript@5.6.2) - vite: 5.4.2(@types/node@22.5.4)(terser@5.36.0) - - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.2))(vite@5.4.2(@types/node@22.7.8)(terser@5.36.0))': - dependencies: - '@vitest/spy': 2.1.1 - estree-walker: 3.0.3 - magic-string: 0.30.11 - optionalDependencies: - msw: 2.4.11(typescript@5.6.2) - vite: 5.4.2(@types/node@22.7.8)(terser@5.36.0) - - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.3))(vite@5.4.2(@types/node@22.5.4)(terser@5.36.0))': + '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.3))(vite@5.4.9(@types/node@22.8.1)(terser@5.36.0))': dependencies: '@vitest/spy': 2.1.1 estree-walker: 3.0.3 - magic-string: 0.30.11 + magic-string: 0.30.12 optionalDependencies: msw: 2.4.11(typescript@5.6.3) - vite: 5.4.2(@types/node@22.5.4)(terser@5.36.0) - - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.8(typescript@5.6.3))(vite@5.4.2(@types/node@22.7.8)(terser@5.36.0))': - dependencies: - '@vitest/spy': 2.1.1 - estree-walker: 3.0.3 - magic-string: 0.30.11 - optionalDependencies: - msw: 2.4.8(typescript@5.6.3) - vite: 5.4.2(@types/node@22.7.8)(terser@5.36.0) + vite: 5.4.9(@types/node@22.8.1)(terser@5.36.0) '@vitest/pretty-format@2.1.1': dependencies: @@ -21764,7 +20067,7 @@ snapshots: '@vitest/snapshot@2.1.1': dependencies: '@vitest/pretty-format': 2.1.1 - magic-string: 0.30.11 + magic-string: 0.30.12 pathe: 1.1.2 '@vitest/spy@2.1.1': @@ -21787,24 +20090,11 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-core@3.5.5': - dependencies: - '@babel/parser': 7.25.8 - '@vue/shared': 3.5.5 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.12': dependencies: '@vue/compiler-core': 3.5.12 '@vue/shared': 3.5.12 - '@vue/compiler-dom@3.5.5': - dependencies: - '@vue/compiler-core': 3.5.5 - '@vue/shared': 3.5.5 - '@vue/compiler-sfc@3.5.12': dependencies: '@babel/parser': 7.25.9 @@ -21817,28 +20107,11 @@ snapshots: postcss: 8.4.47 source-map-js: 1.2.1 - '@vue/compiler-sfc@3.5.5': - dependencies: - '@babel/parser': 7.25.8 - '@vue/compiler-core': 3.5.5 - '@vue/compiler-dom': 3.5.5 - '@vue/compiler-ssr': 3.5.5 - '@vue/shared': 3.5.5 - estree-walker: 2.0.2 - magic-string: 0.30.12 - postcss: 8.4.47 - source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.12': dependencies: '@vue/compiler-dom': 3.5.12 '@vue/shared': 3.5.12 - '@vue/compiler-ssr@3.5.5': - dependencies: - '@vue/compiler-dom': 3.5.5 - '@vue/shared': 3.5.5 - '@vue/reactivity@3.5.12': dependencies: '@vue/shared': 3.5.12 @@ -21855,12 +20128,6 @@ snapshots: '@vue/shared': 3.5.12 csstype: 3.1.3 - '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.2))': - dependencies: - '@vue/compiler-ssr': 3.5.12 - '@vue/shared': 3.5.12 - vue: 3.5.12(typescript@5.6.2) - '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.3))': dependencies: '@vue/compiler-ssr': 3.5.12 @@ -21869,8 +20136,6 @@ snapshots: '@vue/shared@3.5.12': {} - '@vue/shared@3.5.5': {} - '@webassemblyjs/ast@1.12.1': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 @@ -21986,10 +20251,6 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 - acorn-import-attributes@1.9.5(acorn@8.12.1): - dependencies: - acorn: 8.12.1 - acorn-import-attributes@1.9.5(acorn@8.13.0): dependencies: acorn: 8.13.0 @@ -22010,8 +20271,6 @@ snapshots: dependencies: acorn: 8.13.0 - acorn@8.12.1: {} - acorn@8.13.0: {} address@1.2.2: {} @@ -22020,55 +20279,29 @@ snapshots: afinn-165@1.0.4: {} - agent-base@6.0.2: - dependencies: - debug: 4.3.7 - transitivePeerDependencies: - - supports-color - optional: true - - agent-base@7.1.1: - dependencies: - debug: 4.3.7 - transitivePeerDependencies: - - supports-color - - agentkeepalive@4.5.0: - dependencies: - humanize-ms: 1.2.1 - - aggregate-error@3.1.0: - dependencies: - clean-stack: 2.2.0 - indent-string: 4.0.0 - - ai@3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.0.2))(svelte@5.0.2)(vue@3.5.12(typescript@5.6.2))(zod@3.23.8): - dependencies: - '@ai-sdk/provider': 0.0.22 - '@ai-sdk/provider-utils': 1.0.17(zod@3.23.8) - '@ai-sdk/react': 0.0.53(react@18.3.1)(zod@3.23.8) - '@ai-sdk/solid': 0.0.43(zod@3.23.8) - '@ai-sdk/svelte': 0.0.45(svelte@5.0.2)(zod@3.23.8) - '@ai-sdk/ui-utils': 0.0.40(zod@3.23.8) - '@ai-sdk/vue': 0.0.45(vue@3.5.12(typescript@5.6.2))(zod@3.23.8) - '@opentelemetry/api': 1.9.0 - eventsource-parser: 1.1.2 - json-schema: 0.4.0 - jsondiffpatch: 0.6.0 - nanoid: 3.3.6 - secure-json-parse: 2.7.0 - zod-to-json-schema: 3.23.2(zod@3.23.8) - optionalDependencies: - openai: 4.68.1(zod@3.23.8) - react: 18.3.1 - sswr: 2.1.0(svelte@5.0.2) - svelte: 5.0.2 - zod: 3.23.8 + agent-base@6.0.2: + dependencies: + debug: 4.3.7 transitivePeerDependencies: - - solid-js - - vue + - supports-color + optional: true + + agent-base@7.1.1: + dependencies: + debug: 4.3.7 + transitivePeerDependencies: + - supports-color + + agentkeepalive@4.5.0: + dependencies: + humanize-ms: 1.2.1 + + aggregate-error@3.1.0: + dependencies: + clean-stack: 2.2.0 + indent-string: 4.0.0 - ai@3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8): + ai@3.3.21(openai@4.68.1(zod@3.23.8))(react@18.3.1)(sswr@2.1.0(svelte@5.0.2))(svelte@5.0.2)(vue@3.5.12(typescript@5.6.3))(zod@3.23.8): dependencies: '@ai-sdk/provider': 0.0.22 '@ai-sdk/provider-utils': 1.0.17(zod@3.23.8) @@ -22088,6 +20321,7 @@ snapshots: openai: 4.68.1(zod@3.23.8) react: 18.3.1 sswr: 2.1.0(svelte@5.0.2) + svelte: 5.0.2 zod: 3.23.8 transitivePeerDependencies: - solid-js @@ -22320,23 +20554,13 @@ snapshots: at-least-node@1.0.0: {} - autoprefixer@10.4.20(postcss@8.4.41): - dependencies: - browserslist: 4.23.3 - caniuse-lite: 1.0.30001655 - fraction.js: 4.3.7 - normalize-range: 0.1.2 - picocolors: 1.1.0 - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - autoprefixer@10.4.20(postcss@8.4.47): dependencies: - browserslist: 4.23.3 - caniuse-lite: 1.0.30001655 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001669 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -22349,7 +20573,7 @@ snapshots: axios@1.7.2: dependencies: follow-redirects: 1.15.6 - form-data: 4.0.0 + form-data: 4.0.1 proxy-from-env: 1.1.0 transitivePeerDependencies: - debug @@ -22533,13 +20757,6 @@ snapshots: dependencies: fill-range: 7.1.1 - browserslist@4.23.3: - dependencies: - caniuse-lite: 1.0.30001655 - electron-to-chromium: 1.5.13 - node-releases: 2.0.18 - update-browserslist-db: 1.1.0(browserslist@4.23.3) - browserslist@4.24.0: dependencies: caniuse-lite: 1.0.30001669 @@ -22567,29 +20784,6 @@ snapshots: dependencies: node-gyp-build: 4.8.1 - bunchee@5.5.1(typescript@5.6.2): - dependencies: - '@rollup/plugin-commonjs': 28.0.1(rollup@4.24.0) - '@rollup/plugin-json': 6.1.0(rollup@4.24.0) - '@rollup/plugin-node-resolve': 15.3.0(rollup@4.24.0) - '@rollup/plugin-replace': 6.0.1(rollup@4.24.0) - '@rollup/plugin-wasm': 6.2.2(rollup@4.24.0) - '@rollup/pluginutils': 5.1.2(rollup@4.24.0) - '@swc/core': 1.7.36(@swc/helpers@0.5.13) - '@swc/helpers': 0.5.13 - arg: 5.0.2 - clean-css: 5.3.3 - magic-string: 0.30.12 - ora: 8.1.0 - pretty-bytes: 5.6.0 - rollup: 4.24.0 - rollup-plugin-dts: 6.1.1(rollup@4.24.0)(typescript@5.6.2) - rollup-plugin-swc3: 0.11.2(@swc/core@1.7.36(@swc/helpers@0.5.13))(rollup@4.24.0) - rollup-preserve-directives: 1.1.2(rollup@4.24.0) - tslib: 2.8.0 - optionalDependencies: - typescript: 5.6.2 - bunchee@5.5.1(typescript@5.6.3): dependencies: '@rollup/plugin-commonjs': 28.0.1(rollup@4.24.0) @@ -22694,8 +20888,6 @@ snapshots: lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001655: {} - caniuse-lite@1.0.30001669: {} canvas@2.11.2(encoding@0.1.13): @@ -22805,24 +20997,24 @@ snapshots: optionalDependencies: onnxruntime-node: 1.14.0 - chromadb@1.8.1(cohere-ai@7.14.0(encoding@0.1.13))(encoding@0.1.13)(openai@4.68.1(encoding@0.1.13)): + chromadb@1.9.2(@google/generative-ai@0.12.0)(cohere-ai@7.13.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(encoding@0.1.13))(encoding@0.1.13)(openai@4.68.1(encoding@0.1.13)(zod@3.23.8)): dependencies: cliui: 8.0.1 isomorphic-fetch: 3.0.0(encoding@0.1.13) optionalDependencies: - cohere-ai: 7.14.0(encoding@0.1.13) + '@google/generative-ai': 0.12.0 + cohere-ai: 7.13.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(encoding@0.1.13) openai: 4.68.1(encoding@0.1.13)(zod@3.23.8) transitivePeerDependencies: - encoding - chromadb@1.9.2(@google/generative-ai@0.12.0)(cohere-ai@7.13.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(encoding@0.1.13))(encoding@0.1.13)(openai@4.60.1(encoding@0.1.13)(zod@3.23.8)): + chromadb@1.9.2(cohere-ai@7.14.0(encoding@0.1.13))(encoding@0.1.13)(openai@4.68.1(encoding@0.1.13)): dependencies: cliui: 8.0.1 isomorphic-fetch: 3.0.0(encoding@0.1.13) optionalDependencies: - '@google/generative-ai': 0.12.0 - cohere-ai: 7.13.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(encoding@0.1.13) - openai: 4.60.1(encoding@0.1.13)(zod@3.23.8) + cohere-ai: 7.14.0(encoding@0.1.13) + openai: 4.68.1(encoding@0.1.13)(zod@3.23.8) transitivePeerDependencies: - encoding @@ -22913,13 +21105,13 @@ snapshots: dependencies: rfdc: 1.4.1 - cohere-ai@7.13.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))(encoding@0.1.13): + cohere-ai@7.13.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))(encoding@0.1.13): dependencies: - '@aws-sdk/client-sagemaker': 3.650.0 - '@aws-sdk/credential-providers': 3.650.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/client-sagemaker': 3.678.0 + '@aws-sdk/credential-providers': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) '@aws-sdk/protocol-http': 3.374.0 '@aws-sdk/signature-v4': 3.374.0 - form-data: 4.0.0 + form-data: 4.0.1 form-data-encoder: 4.0.2 formdata-node: 6.0.3 js-base64: 3.7.2 @@ -23125,14 +21317,14 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@8.3.6(typescript@5.6.2): + cosmiconfig@8.3.6(typescript@5.6.3): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 cross-env@7.0.3: dependencies: @@ -23160,10 +21352,6 @@ snapshots: dependencies: type-fest: 1.4.0 - css-declaration-sorter@7.2.0(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - css-declaration-sorter@7.2.0(postcss@8.4.47): dependencies: postcss: 8.4.47 @@ -23234,40 +21422,6 @@ snapshots: postcss-reduce-idents: 6.0.3(postcss@8.4.47) postcss-zindex: 6.0.2(postcss@8.4.47) - cssnano-preset-default@6.1.2(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - css-declaration-sorter: 7.2.0(postcss@8.4.41) - cssnano-utils: 4.0.2(postcss@8.4.41) - postcss: 8.4.41 - postcss-calc: 9.0.1(postcss@8.4.41) - postcss-colormin: 6.1.0(postcss@8.4.41) - postcss-convert-values: 6.1.0(postcss@8.4.41) - postcss-discard-comments: 6.0.2(postcss@8.4.41) - postcss-discard-duplicates: 6.0.3(postcss@8.4.41) - postcss-discard-empty: 6.0.3(postcss@8.4.41) - postcss-discard-overridden: 6.0.2(postcss@8.4.41) - postcss-merge-longhand: 6.0.5(postcss@8.4.41) - postcss-merge-rules: 6.1.1(postcss@8.4.41) - postcss-minify-font-values: 6.1.0(postcss@8.4.41) - postcss-minify-gradients: 6.0.3(postcss@8.4.41) - postcss-minify-params: 6.1.0(postcss@8.4.41) - postcss-minify-selectors: 6.0.4(postcss@8.4.41) - postcss-normalize-charset: 6.0.2(postcss@8.4.41) - postcss-normalize-display-values: 6.0.2(postcss@8.4.41) - postcss-normalize-positions: 6.0.2(postcss@8.4.41) - postcss-normalize-repeat-style: 6.0.2(postcss@8.4.41) - postcss-normalize-string: 6.0.2(postcss@8.4.41) - postcss-normalize-timing-functions: 6.0.2(postcss@8.4.41) - postcss-normalize-unicode: 6.1.0(postcss@8.4.41) - postcss-normalize-url: 6.0.2(postcss@8.4.41) - postcss-normalize-whitespace: 6.0.2(postcss@8.4.41) - postcss-ordered-values: 6.0.2(postcss@8.4.41) - postcss-reduce-initial: 6.1.0(postcss@8.4.41) - postcss-reduce-transforms: 6.0.2(postcss@8.4.41) - postcss-svgo: 6.0.3(postcss@8.4.41) - postcss-unique-selectors: 6.0.4(postcss@8.4.41) - cssnano-preset-default@6.1.2(postcss@8.4.47): dependencies: browserslist: 4.24.0 @@ -23302,20 +21456,10 @@ snapshots: postcss-svgo: 6.0.3(postcss@8.4.47) postcss-unique-selectors: 6.0.4(postcss@8.4.47) - cssnano-utils@4.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - cssnano-utils@4.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 - cssnano@6.1.2(postcss@8.4.41): - dependencies: - cssnano-preset-default: 6.1.2(postcss@8.4.41) - lilconfig: 3.1.2 - postcss: 8.4.41 - cssnano@6.1.2(postcss@8.4.47): dependencies: cssnano-preset-default: 6.1.2(postcss@8.4.47) @@ -23328,6 +21472,8 @@ snapshots: csstype@3.1.3: {} + csv-parse@5.5.6: {} + damerau-levenshtein@1.0.8: {} data-uri-to-buffer@2.0.2: {} @@ -23542,7 +21688,7 @@ snapshots: detective-vue2@2.0.3(typescript@5.6.3): dependencies: - '@vue/compiler-sfc': 3.5.5 + '@vue/compiler-sfc': 3.5.12 detective-es6: 5.0.0 detective-sass: 6.0.0 detective-scss: 5.0.0 @@ -23588,9 +21734,9 @@ snapshots: dependencies: esutils: 2.0.3 - docusaurus-plugin-typedoc@1.0.5(typedoc-plugin-markdown@4.2.6(typedoc@0.26.6(typescript@5.6.2))): + docusaurus-plugin-typedoc@1.0.5(typedoc-plugin-markdown@4.2.6(typedoc@0.26.6(typescript@5.6.3))): dependencies: - typedoc-plugin-markdown: 4.2.6(typedoc@0.26.6(typescript@5.6.2)) + typedoc-plugin-markdown: 4.2.6(typedoc@0.26.6(typescript@5.6.3)) dom-converter@0.2.0: dependencies: @@ -23657,8 +21803,6 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.13: {} - electron-to-chromium@1.5.44: {} emoji-regex@10.4.0: {} @@ -23959,40 +22103,21 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-config-next@14.2.11(eslint@8.57.0)(typescript@5.6.2): + eslint-config-next@14.2.11(eslint@8.57.0)(typescript@5.6.3): dependencies: '@next/eslint-plugin-next': 14.2.11 '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/eslint-plugin': 7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0)(typescript@5.6.2) - '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2) - eslint: 8.57.0 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0) - eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0) - eslint-plugin-react: 7.35.0(eslint@8.57.0) - eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) - optionalDependencies: - typescript: 5.6.2 - transitivePeerDependencies: - - eslint-import-resolver-webpack - - eslint-plugin-import-x - - supports-color - - eslint-config-next@14.2.7(eslint@8.57.0)(typescript@5.6.2): - dependencies: - '@next/eslint-plugin-next': 14.2.7 - '@rushstack/eslint-patch': 1.10.4 - '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2) + '@typescript-eslint/eslint-plugin': 7.2.0(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3) + '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.10.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.9.0(eslint@8.57.0) eslint-plugin-react: 7.35.0(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - eslint-import-resolver-webpack - eslint-plugin-import-x @@ -24015,64 +22140,37 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 8.57.0 - eslint-module-utils: 2.8.2(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) + eslint-module-utils: 2.8.2(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) fast-glob: 3.3.2 - get-tsconfig: 4.8.0 + get-tsconfig: 4.8.1 is-bun-module: 1.1.0 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.10.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.8.2(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): + eslint-module-utils@2.8.2(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2) - eslint: 8.57.0 - eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) - transitivePeerDependencies: - - supports-color - - eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0): - dependencies: - array-includes: 3.1.8 - array.prototype.findlastindex: 1.2.5 - array.prototype.flat: 1.3.2 - array.prototype.flatmap: 1.3.2 - debug: 3.2.7 - doctrine: 2.1.0 + '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.2(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) - hasown: 2.0.2 - is-core-module: 2.15.1 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.fromentries: 2.0.8 - object.groupby: 1.0.3 - object.values: 1.2.0 - semver: 6.3.1 - tsconfig-paths: 3.15.0 - optionalDependencies: - '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.2) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.10.0(eslint@8.57.0)(typescript@5.6.2))(eslint@8.57.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -24082,7 +22180,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.2(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) + eslint-module-utils: 2.8.2(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@7.2.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0))(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -24093,7 +22191,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.10.0(eslint@8.57.0)(typescript@5.6.2) + '@typescript-eslint/parser': 7.2.0(eslint@8.57.0)(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -24174,7 +22272,7 @@ snapshots: eslint@8.57.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@eslint-community/regexpp': 4.11.0 + '@eslint-community/regexpp': 4.11.1 '@eslint/eslintrc': 2.1.4 '@eslint/js': 8.57.0 '@humanwhocodes/config-array': 0.11.14 @@ -24340,7 +22438,7 @@ snapshots: eval@0.1.8: dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 require-like: 0.1.2 event-target-shim@5.0.1: {} @@ -24643,9 +22741,9 @@ snapshots: cross-spawn: 7.0.3 signal-exit: 4.1.0 - fork-ts-checker-webpack-plugin@6.5.3(eslint@9.13.0)(typescript@5.6.2)(webpack@5.95.0): + fork-ts-checker-webpack-plugin@6.5.3(eslint@9.13.0)(typescript@5.6.3)(webpack@5.95.0): dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 @@ -24658,7 +22756,7 @@ snapshots: schema-utils: 2.7.0 semver: 7.6.3 tapable: 1.1.3 - typescript: 5.6.2 + typescript: 5.6.3 webpack: 5.95.0 optionalDependencies: eslint: 9.13.0 @@ -24680,7 +22778,6 @@ snapshots: asynckit: 0.4.0 combined-stream: 1.0.8 mime-types: 2.1.35 - optional: true format@0.2.2: {} @@ -25015,10 +23112,6 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.2.4 - get-tsconfig@4.8.0: - dependencies: - resolve-pkg-maps: 1.0.0 - get-tsconfig@4.8.1: dependencies: resolve-pkg-maps: 1.0.0 @@ -25367,26 +23460,6 @@ snapshots: stringify-entities: 4.0.4 zwitch: 2.0.4 - hast-util-to-jsx-runtime@2.3.0: - dependencies: - '@types/estree': 1.0.6 - '@types/hast': 3.0.4 - '@types/unist': 3.0.3 - comma-separated-tokens: 2.0.3 - devlop: 1.1.0 - estree-util-is-identifier-name: 3.0.0 - hast-util-whitespace: 3.0.0 - mdast-util-mdx-expression: 2.0.0 - mdast-util-mdx-jsx: 3.1.3 - mdast-util-mdxjs-esm: 2.0.1 - property-information: 6.5.0 - space-separated-tokens: 2.0.2 - style-to-object: 1.0.6 - unist-util-position: 5.0.0 - vfile-message: 4.0.2 - transitivePeerDependencies: - - supports-color - hast-util-to-jsx-runtime@2.3.2: dependencies: '@types/estree': 1.0.6 @@ -25502,7 +23575,7 @@ snapshots: entities: 4.5.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.32.0 + terser: 5.36.0 html-tags@3.3.1: {} @@ -25978,7 +24051,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 22.7.8 + '@types/node': 22.8.1 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -25986,13 +24059,13 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -26366,7 +24439,7 @@ snapshots: lunr@2.3.9: {} - madge@8.0.0(typescript@5.6.2): + madge@8.0.0(typescript@5.6.3): dependencies: chalk: 4.1.2 commander: 7.2.0 @@ -26381,7 +24454,7 @@ snapshots: ts-graphviz: 2.1.2 walkdir: 0.4.1 optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -26391,10 +24464,6 @@ snapshots: dependencies: sourcemap-codec: 1.4.8 - magic-string@0.30.11: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.12: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -27095,13 +25164,13 @@ snapshots: optionalDependencies: '@aws-sdk/credential-providers': 3.675.0 - mongodb@6.8.0(@aws-sdk/credential-providers@3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0))): + mongodb@6.8.0(@aws-sdk/credential-providers@3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0))): dependencies: '@mongodb-js/saslprep': 1.1.7 bson: 6.8.0 mongodb-connection-string-url: 3.0.1 optionalDependencies: - '@aws-sdk/credential-providers': 3.675.0(@aws-sdk/client-sso-oidc@3.678.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/credential-providers': 3.675.0(@aws-sdk/client-sso-oidc@3.679.0(@aws-sdk/client-sts@3.678.0)) mongodb@6.8.0(@aws-sdk/credential-providers@3.675.0): dependencies: @@ -27146,29 +25215,6 @@ snapshots: ms@2.1.3: {} - msw@2.4.11(typescript@5.6.2): - dependencies: - '@bundled-es-modules/cookie': 2.0.0 - '@bundled-es-modules/statuses': 1.0.1 - '@bundled-es-modules/tough-cookie': 0.1.6 - '@inquirer/confirm': 3.2.0 - '@mswjs/interceptors': 0.35.9 - '@open-draft/until': 2.1.0 - '@types/cookie': 0.6.0 - '@types/statuses': 2.0.5 - chalk: 4.1.2 - graphql: 16.9.0 - headers-polyfill: 4.0.3 - is-node-process: 1.2.0 - outvariant: 1.4.3 - path-to-regexp: 6.3.0 - strict-event-emitter: 0.5.1 - type-fest: 4.26.1 - yargs: 17.7.2 - optionalDependencies: - typescript: 5.6.2 - optional: true - msw@2.4.11(typescript@5.6.3): dependencies: '@bundled-es-modules/cookie': 2.0.0 @@ -27190,29 +25236,6 @@ snapshots: yargs: 17.7.2 optionalDependencies: typescript: 5.6.3 - optional: true - - msw@2.4.8(typescript@5.6.3): - dependencies: - '@bundled-es-modules/cookie': 2.0.0 - '@bundled-es-modules/statuses': 1.0.1 - '@bundled-es-modules/tough-cookie': 0.1.6 - '@inquirer/confirm': 3.2.0 - '@mswjs/interceptors': 0.35.6 - '@open-draft/until': 2.1.0 - '@types/cookie': 0.6.0 - '@types/statuses': 2.0.5 - chalk: 4.1.2 - graphql: 16.9.0 - headers-polyfill: 4.0.3 - is-node-process: 1.2.0 - outvariant: 1.4.3 - path-to-regexp: 6.3.0 - strict-event-emitter: 0.5.1 - type-fest: 4.26.1 - yargs: 17.7.2 - optionalDependencies: - typescript: 5.6.3 multicast-dns@7.2.5: dependencies: @@ -27285,7 +25308,7 @@ snapshots: '@next/env': 14.2.11 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001655 + caniuse-lite: 1.0.30001669 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 @@ -27311,7 +25334,7 @@ snapshots: '@next/env': 14.2.11 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001655 + caniuse-lite: 1.0.30001669 graceful-fs: 4.2.11 postcss: 8.4.31 react: 19.0.0-rc-bf7e210c-20241017 @@ -27337,7 +25360,7 @@ snapshots: '@next/env': 14.3.0-canary.51 '@swc/helpers': 0.5.11 busboy: 1.6.0 - caniuse-lite: 1.0.30001655 + caniuse-lite: 1.0.30001669 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.3.1 @@ -27471,7 +25494,7 @@ snapshots: node-source-walk@7.0.0: dependencies: - '@babel/parser': 7.25.8 + '@babel/parser': 7.25.9 nopt@5.0.0: dependencies: @@ -27641,22 +25664,6 @@ snapshots: is-docker: 2.2.1 is-wsl: 2.2.0 - openai@4.60.1(encoding@0.1.13)(zod@3.23.8): - dependencies: - '@types/node': 18.19.57 - '@types/node-fetch': 2.6.11 - '@types/qs': 6.9.15 - abort-controller: 3.0.0 - agentkeepalive: 4.5.0 - form-data-encoder: 1.7.2 - formdata-node: 4.4.1 - node-fetch: 2.7.0(encoding@0.1.13) - qs: 6.13.0 - optionalDependencies: - zod: 3.23.8 - transitivePeerDependencies: - - encoding - openai@4.68.1(encoding@0.1.13)(zod@3.23.8): dependencies: '@types/node': 18.19.57 @@ -27769,6 +25776,10 @@ snapshots: dependencies: yocto-queue: 1.1.1 + p-limit@6.1.0: + dependencies: + yocto-queue: 1.1.1 + p-locate@3.0.0: dependencies: p-limit: 2.3.0 @@ -27966,8 +25977,6 @@ snapshots: pgvector@0.2.0: {} - picocolors@1.1.0: {} - picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -28022,26 +26031,12 @@ snapshots: possible-typed-array-names@1.0.0: {} - postcss-calc@9.0.1(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-selector-parser: 6.1.2 - postcss-value-parser: 4.2.0 - postcss-calc@9.0.1(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 - postcss-colormin@6.1.0(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - caniuse-api: 3.0.0 - colord: 2.9.3 - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-colormin@6.1.0(postcss@8.4.47): dependencies: browserslist: 4.24.0 @@ -28050,46 +26045,24 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-convert-values@6.1.0(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-convert-values@6.1.0(postcss@8.4.47): dependencies: browserslist: 4.24.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-discard-comments@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-discard-comments@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-discard-duplicates@6.0.3(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-discard-duplicates@6.0.3(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-discard-empty@6.0.3(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-discard-empty@6.0.3(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-discard-overridden@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-discard-overridden@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 @@ -28118,11 +26091,11 @@ snapshots: optionalDependencies: postcss: 8.4.47 - postcss-loader@7.3.4(postcss@8.4.41)(typescript@5.6.2)(webpack@5.95.0): + postcss-loader@7.3.4(postcss@8.4.47)(typescript@5.6.3)(webpack@5.95.0): dependencies: - cosmiconfig: 8.3.6(typescript@5.6.2) + cosmiconfig: 8.3.6(typescript@5.6.3) jiti: 1.21.6 - postcss: 8.4.41 + postcss: 8.4.47 semver: 7.6.3 webpack: 5.95.0 transitivePeerDependencies: @@ -28134,26 +26107,12 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-merge-longhand@6.0.5(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - stylehacks: 6.1.1(postcss@8.4.41) - postcss-merge-longhand@6.0.5(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 stylehacks: 6.1.1(postcss@8.4.47) - postcss-merge-rules@6.1.1(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - caniuse-api: 3.0.0 - cssnano-utils: 4.0.2(postcss@8.4.41) - postcss: 8.4.41 - postcss-selector-parser: 6.1.2 - postcss-merge-rules@6.1.1(postcss@8.4.47): dependencies: browserslist: 4.24.0 @@ -28162,23 +26121,11 @@ snapshots: postcss: 8.4.47 postcss-selector-parser: 6.1.2 - postcss-minify-font-values@6.1.0(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-minify-font-values@6.1.0(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-minify-gradients@6.0.3(postcss@8.4.41): - dependencies: - colord: 2.9.3 - cssnano-utils: 4.0.2(postcss@8.4.41) - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-minify-gradients@6.0.3(postcss@8.4.47): dependencies: colord: 2.9.3 @@ -28186,13 +26133,6 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-minify-params@6.1.0(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - cssnano-utils: 4.0.2(postcss@8.4.41) - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-minify-params@6.1.0(postcss@8.4.47): dependencies: browserslist: 4.24.0 @@ -28200,11 +26140,6 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-minify-selectors@6.0.4(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-selector-parser: 6.1.2 - postcss-minify-selectors@6.0.4(postcss@8.4.47): dependencies: postcss: 8.4.47 @@ -28236,102 +26171,51 @@ snapshots: postcss: 8.4.47 postcss-selector-parser: 6.1.2 - postcss-normalize-charset@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-normalize-charset@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-normalize-display-values@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-display-values@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-positions@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-positions@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-string@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-string@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@6.1.0(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-unicode@6.1.0(postcss@8.4.47): dependencies: browserslist: 4.24.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-url@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-url@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-ordered-values@6.0.2(postcss@8.4.41): - dependencies: - cssnano-utils: 4.0.2(postcss@8.4.41) - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-ordered-values@6.0.2(postcss@8.4.47): dependencies: cssnano-utils: 4.0.2(postcss@8.4.47) @@ -28343,23 +26227,12 @@ snapshots: postcss: 8.4.47 postcss-value-parser: 4.2.0 - postcss-reduce-initial@6.1.0(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - caniuse-api: 3.0.0 - postcss: 8.4.41 - postcss-reduce-initial@6.1.0(postcss@8.4.47): dependencies: browserslist: 4.24.0 caniuse-api: 3.0.0 postcss: 8.4.47 - postcss-reduce-transforms@6.0.2(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - postcss-reduce-transforms@6.0.2(postcss@8.4.47): dependencies: postcss: 8.4.47 @@ -28380,23 +26253,12 @@ snapshots: postcss: 8.4.47 sort-css-media-queries: 2.2.0 - postcss-svgo@6.0.3(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - svgo: 3.3.2 - postcss-svgo@6.0.3(postcss@8.4.47): dependencies: postcss: 8.4.47 postcss-value-parser: 4.2.0 svgo: 3.3.2 - postcss-unique-selectors@6.0.4(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-selector-parser: 6.1.2 - postcss-unique-selectors@6.0.4(postcss@8.4.47): dependencies: postcss: 8.4.47 @@ -28424,7 +26286,7 @@ snapshots: postcss@8.4.41: dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.1 postcss@8.4.47: @@ -28503,10 +26365,10 @@ snapshots: prelude-ls@1.2.1: {} - prettier-plugin-organize-imports@4.0.0(prettier@3.3.3)(typescript@5.6.2): + prettier-plugin-organize-imports@4.0.0(prettier@3.3.3)(typescript@5.6.3): dependencies: prettier: 3.3.3 - typescript: 5.6.2 + typescript: 5.6.3 prettier@2.8.8: {} @@ -28572,7 +26434,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 22.7.8 + '@types/node': 22.8.1 long: 5.2.3 proxy-addr@2.0.7: @@ -28684,9 +26546,9 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-dev-utils@12.0.1(eslint@9.13.0)(typescript@5.6.2)(webpack@5.95.0): + react-dev-utils@12.0.1(eslint@9.13.0)(typescript@5.6.3)(webpack@5.95.0): dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 address: 1.2.2 browserslist: 4.24.0 chalk: 4.1.2 @@ -28695,7 +26557,7 @@ snapshots: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.13.0)(typescript@5.6.2)(webpack@5.95.0) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.13.0)(typescript@5.6.3)(webpack@5.95.0) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -28712,7 +26574,7 @@ snapshots: text-table: 0.2.0 webpack: 5.95.0 optionalDependencies: - typescript: 5.6.2 + typescript: 5.6.3 transitivePeerDependencies: - eslint - supports-color @@ -28775,12 +26637,12 @@ snapshots: '@types/hast': 3.0.4 '@types/react': 18.3.12 devlop: 1.1.0 - hast-util-to-jsx-runtime: 2.3.0 + hast-util-to-jsx-runtime: 2.3.2 html-url-attributes: 3.0.0 mdast-util-to-hast: 13.2.0 react: 18.3.1 remark-parse: 11.0.0 - remark-rehype: 11.1.0 + remark-rehype: 11.1.1 unified: 11.0.5 unist-util-visit: 5.0.0 vfile: 6.0.3 @@ -29140,14 +27002,6 @@ snapshots: transitivePeerDependencies: - supports-color - remark-rehype@11.1.0: - dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - mdast-util-to-hast: 13.2.0 - unified: 11.0.5 - vfile: 6.0.3 - remark-rehype@11.1.1: dependencies: '@types/hast': 3.0.4 @@ -29261,14 +27115,6 @@ snapshots: glob: 11.0.0 package-json-from-dist: 1.0.0 - rollup-plugin-dts@6.1.1(rollup@4.24.0)(typescript@5.6.2): - dependencies: - magic-string: 0.30.12 - rollup: 4.24.0 - typescript: 5.6.2 - optionalDependencies: - '@babel/code-frame': 7.25.7 - rollup-plugin-dts@6.1.1(rollup@4.24.0)(typescript@5.6.3): dependencies: magic-string: 0.30.12 @@ -29305,28 +27151,6 @@ snapshots: magic-string: 0.30.12 rollup: 4.24.0 - rollup@4.21.2: - dependencies: - '@types/estree': 1.0.5 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.21.2 - '@rollup/rollup-android-arm64': 4.21.2 - '@rollup/rollup-darwin-arm64': 4.21.2 - '@rollup/rollup-darwin-x64': 4.21.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.21.2 - '@rollup/rollup-linux-arm-musleabihf': 4.21.2 - '@rollup/rollup-linux-arm64-gnu': 4.21.2 - '@rollup/rollup-linux-arm64-musl': 4.21.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.21.2 - '@rollup/rollup-linux-riscv64-gnu': 4.21.2 - '@rollup/rollup-linux-s390x-gnu': 4.21.2 - '@rollup/rollup-linux-x64-gnu': 4.21.2 - '@rollup/rollup-linux-x64-musl': 4.21.2 - '@rollup/rollup-win32-arm64-msvc': 4.21.2 - '@rollup/rollup-win32-ia32-msvc': 4.21.2 - '@rollup/rollup-win32-x64-msvc': 4.21.2 - fsevents: 2.3.3 - rollup@4.24.0: dependencies: '@types/estree': 1.0.6 @@ -29356,7 +27180,7 @@ snapshots: rtlcss@4.3.0: dependencies: escalade: 3.2.0 - picocolors: 1.1.0 + picocolors: 1.1.1 postcss: 8.4.47 strip-json-comments: 3.1.1 @@ -29978,12 +27802,6 @@ snapshots: client-only: 0.0.1 react: 18.3.1 - stylehacks@6.1.1(postcss@8.4.41): - dependencies: - browserslist: 4.24.0 - postcss: 8.4.41 - postcss-selector-parser: 6.1.2 - stylehacks@6.1.1(postcss@8.4.47): dependencies: browserslist: 4.24.0 @@ -30054,51 +27872,18 @@ snapshots: swrev@4.0.0: {} - swrv@1.0.4(vue@3.5.12(typescript@5.6.2)): - dependencies: - vue: 3.5.12(typescript@5.6.2) - swrv@1.0.4(vue@3.5.12(typescript@5.6.3)): dependencies: vue: 3.5.12(typescript@5.6.3) sylvester@0.0.12: {} - tailwind-merge@2.5.2: {} - tailwind-merge@2.5.4: {} tailwindcss-animate@1.0.7(tailwindcss@3.4.14): dependencies: tailwindcss: 3.4.14 - tailwindcss@3.4.10: - dependencies: - '@alloc/quick-lru': 5.2.0 - arg: 5.0.2 - chokidar: 3.6.0 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.2 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.6 - lilconfig: 2.1.0 - micromatch: 4.0.8 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.1.0 - postcss: 8.4.47 - postcss-import: 15.1.0(postcss@8.4.47) - postcss-js: 4.0.1(postcss@8.4.47) - postcss-load-config: 4.0.2(postcss@8.4.47) - postcss-nested: 6.2.0(postcss@8.4.47) - postcss-selector-parser: 6.1.2 - resolve: 1.22.8 - sucrase: 3.35.0 - transitivePeerDependencies: - - ts-node - tailwindcss@3.4.14: dependencies: '@alloc/quick-lru': 5.2.0 @@ -30170,16 +27955,16 @@ snapshots: term-size@2.2.1: {} - terser-webpack-plugin@5.3.10(@swc/core@1.7.22(@swc/helpers@0.5.13))(webpack@5.94.0(@swc/core@1.7.22(@swc/helpers@0.5.13))): + terser-webpack-plugin@5.3.10(@swc/core@1.7.36(@swc/helpers@0.5.13))(webpack@5.95.0(@swc/core@1.7.36(@swc/helpers@0.5.13))): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.36.0 - webpack: 5.94.0(@swc/core@1.7.22(@swc/helpers@0.5.13)) + webpack: 5.95.0(@swc/core@1.7.36(@swc/helpers@0.5.13)) optionalDependencies: - '@swc/core': 1.7.22(@swc/helpers@0.5.13) + '@swc/core': 1.7.36(@swc/helpers@0.5.13) terser-webpack-plugin@5.3.10(webpack@5.95.0): dependencies: @@ -30190,13 +27975,6 @@ snapshots: terser: 5.36.0 webpack: 5.95.0 - terser@5.32.0: - dependencies: - '@jridgewell/source-map': 0.3.6 - acorn: 8.13.0 - commander: 2.20.3 - source-map-support: 0.5.21 - terser@5.36.0: dependencies: '@jridgewell/source-map': 0.3.6 @@ -30251,8 +28029,6 @@ snapshots: to-arraybuffer@1.0.1: {} - to-fast-properties@2.0.0: {} - to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -30291,10 +28067,6 @@ snapshots: trough@2.2.0: {} - ts-api-utils@1.3.0(typescript@5.6.2): - dependencies: - typescript: 5.6.2 - ts-api-utils@1.3.0(typescript@5.6.3): dependencies: typescript: 5.6.3 @@ -30330,14 +28102,12 @@ snapshots: tslib@1.14.1: {} - tslib@2.7.0: {} - tslib@2.8.0: {} tsx@4.19.0: dependencies: esbuild: 0.23.1 - get-tsconfig: 4.8.0 + get-tsconfig: 4.8.1 optionalDependencies: fsevents: 2.3.3 @@ -30445,17 +28215,17 @@ snapshots: dependencies: is-typedarray: 1.0.0 - typedoc-plugin-markdown@4.2.6(typedoc@0.26.6(typescript@5.6.2)): + typedoc-plugin-markdown@4.2.6(typedoc@0.26.6(typescript@5.6.3)): dependencies: - typedoc: 0.26.6(typescript@5.6.2) + typedoc: 0.26.6(typescript@5.6.3) - typedoc@0.26.6(typescript@5.6.2): + typedoc@0.26.6(typescript@5.6.3): dependencies: lunr: 2.3.9 markdown-it: 14.1.0 minimatch: 9.0.5 shiki: 1.22.0 - typescript: 5.6.2 + typescript: 5.6.3 yaml: 2.5.0 typescript@5.6.2: {} @@ -30582,17 +28352,11 @@ snapshots: unplugin@1.12.2: dependencies: - acorn: 8.12.1 + acorn: 8.13.0 chokidar: 3.6.0 webpack-sources: 3.2.3 webpack-virtual-modules: 0.6.2 - update-browserslist-db@1.1.0(browserslist@4.23.3): - dependencies: - browserslist: 4.23.3 - escalade: 3.2.0 - picocolors: 1.1.1 - update-browserslist-db@1.1.1(browserslist@4.24.0): dependencies: browserslist: 4.24.0 @@ -30688,29 +28452,12 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite-node@2.1.1(@types/node@22.5.4)(terser@5.36.0): - dependencies: - cac: 6.7.14 - debug: 4.3.7 - pathe: 1.1.2 - vite: 5.4.2(@types/node@22.5.4)(terser@5.36.0) - transitivePeerDependencies: - - '@types/node' - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - vite-node@2.1.1(@types/node@22.7.8)(terser@5.36.0): + vite-node@2.1.1(@types/node@22.8.1)(terser@5.36.0): dependencies: cac: 6.7.14 debug: 4.3.7 pathe: 1.1.2 - vite: 5.4.2(@types/node@22.7.8)(terser@5.36.0) + vite: 5.4.9(@types/node@22.8.1)(terser@5.36.0) transitivePeerDependencies: - '@types/node' - less @@ -30722,152 +28469,24 @@ snapshots: - supports-color - terser - vite-plugin-wasm@3.3.0(vite@5.4.2(@types/node@22.7.8)(terser@5.36.0)): - dependencies: - vite: 5.4.2(@types/node@22.7.8)(terser@5.36.0) - - vite@5.4.2(@types/node@22.5.4)(terser@5.36.0): - dependencies: - esbuild: 0.21.5 - postcss: 8.4.47 - rollup: 4.21.2 - optionalDependencies: - '@types/node': 22.5.4 - fsevents: 2.3.3 - terser: 5.36.0 - - vite@5.4.2(@types/node@22.7.8)(terser@5.36.0): + vite-plugin-wasm@3.3.0(vite@5.4.9(@types/node@22.8.1)(terser@5.36.0)): dependencies: - esbuild: 0.21.5 - postcss: 8.4.47 - rollup: 4.21.2 - optionalDependencies: - '@types/node': 22.7.8 - fsevents: 2.3.3 - terser: 5.36.0 + vite: 5.4.9(@types/node@22.8.1)(terser@5.36.0) - vite@5.4.9(@types/node@22.7.8)(terser@5.36.0): + vite@5.4.9(@types/node@22.8.1)(terser@5.36.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 rollup: 4.24.0 optionalDependencies: - '@types/node': 22.7.8 + '@types/node': 22.8.1 fsevents: 2.3.3 terser: 5.36.0 - vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.5.4)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0): - dependencies: - '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.2))(vite@5.4.2(@types/node@22.5.4)(terser@5.36.0)) - '@vitest/pretty-format': 2.1.1 - '@vitest/runner': 2.1.1 - '@vitest/snapshot': 2.1.1 - '@vitest/spy': 2.1.1 - '@vitest/utils': 2.1.1 - chai: 5.1.1 - debug: 4.3.7 - magic-string: 0.30.11 - pathe: 1.1.2 - std-env: 3.7.0 - tinybench: 2.9.0 - tinyexec: 0.3.0 - tinypool: 1.0.1 - tinyrainbow: 1.2.0 - vite: 5.4.2(@types/node@22.5.4)(terser@5.36.0) - vite-node: 2.1.1(@types/node@22.5.4)(terser@5.36.0) - why-is-node-running: 2.3.0 - optionalDependencies: - '@edge-runtime/vm': 4.0.3 - '@types/node': 22.5.4 - happy-dom: 15.7.4 - transitivePeerDependencies: - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.5.4)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0): - dependencies: - '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.3))(vite@5.4.2(@types/node@22.5.4)(terser@5.36.0)) - '@vitest/pretty-format': 2.1.1 - '@vitest/runner': 2.1.1 - '@vitest/snapshot': 2.1.1 - '@vitest/spy': 2.1.1 - '@vitest/utils': 2.1.1 - chai: 5.1.1 - debug: 4.3.7 - magic-string: 0.30.11 - pathe: 1.1.2 - std-env: 3.7.0 - tinybench: 2.9.0 - tinyexec: 0.3.0 - tinypool: 1.0.1 - tinyrainbow: 1.2.0 - vite: 5.4.2(@types/node@22.5.4)(terser@5.36.0) - vite-node: 2.1.1(@types/node@22.5.4)(terser@5.36.0) - why-is-node-running: 2.3.0 - optionalDependencies: - '@edge-runtime/vm': 4.0.3 - '@types/node': 22.5.4 - happy-dom: 15.7.4 - transitivePeerDependencies: - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.2))(terser@5.36.0): - dependencies: - '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.2))(vite@5.4.2(@types/node@22.7.8)(terser@5.36.0)) - '@vitest/pretty-format': 2.1.1 - '@vitest/runner': 2.1.1 - '@vitest/snapshot': 2.1.1 - '@vitest/spy': 2.1.1 - '@vitest/utils': 2.1.1 - chai: 5.1.1 - debug: 4.3.7 - magic-string: 0.30.11 - pathe: 1.1.2 - std-env: 3.7.0 - tinybench: 2.9.0 - tinyexec: 0.3.0 - tinypool: 1.0.1 - tinyrainbow: 1.2.0 - vite: 5.4.2(@types/node@22.7.8)(terser@5.36.0) - vite-node: 2.1.1(@types/node@22.7.8)(terser@5.36.0) - why-is-node-running: 2.3.0 - optionalDependencies: - '@edge-runtime/vm': 4.0.3 - '@types/node': 22.7.8 - happy-dom: 15.7.4 - transitivePeerDependencies: - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.7.8)(happy-dom@15.7.4)(msw@2.4.8(typescript@5.6.3))(terser@5.36.0): + vitest@2.1.1(@edge-runtime/vm@4.0.3)(@types/node@22.8.1)(happy-dom@15.7.4)(msw@2.4.11(typescript@5.6.3))(terser@5.36.0): dependencies: '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.8(typescript@5.6.3))(vite@5.4.2(@types/node@22.7.8)(terser@5.36.0)) + '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.11(typescript@5.6.3))(vite@5.4.9(@types/node@22.8.1)(terser@5.36.0)) '@vitest/pretty-format': 2.1.1 '@vitest/runner': 2.1.1 '@vitest/snapshot': 2.1.1 @@ -30875,19 +28494,19 @@ snapshots: '@vitest/utils': 2.1.1 chai: 5.1.1 debug: 4.3.7 - magic-string: 0.30.11 + magic-string: 0.30.12 pathe: 1.1.2 std-env: 3.7.0 tinybench: 2.9.0 tinyexec: 0.3.0 tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.2(@types/node@22.7.8)(terser@5.36.0) - vite-node: 2.1.1(@types/node@22.7.8)(terser@5.36.0) + vite: 5.4.9(@types/node@22.8.1)(terser@5.36.0) + vite-node: 2.1.1(@types/node@22.8.1)(terser@5.36.0) why-is-node-running: 2.3.0 optionalDependencies: '@edge-runtime/vm': 4.0.3 - '@types/node': 22.7.8 + '@types/node': 22.8.1 happy-dom: 15.7.4 transitivePeerDependencies: - less @@ -30900,16 +28519,6 @@ snapshots: - supports-color - terser - vue@3.5.12(typescript@5.6.2): - dependencies: - '@vue/compiler-dom': 3.5.12 - '@vue/compiler-sfc': 3.5.12 - '@vue/runtime-dom': 3.5.12 - '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.6.2)) - '@vue/shared': 3.5.12 - optionalDependencies: - typescript: 5.6.2 - vue@3.5.12(typescript@5.6.3): dependencies: '@vue/compiler-dom': 3.5.12 @@ -30920,18 +28529,18 @@ snapshots: optionalDependencies: typescript: 5.6.3 - waku@0.21.4(@swc/helpers@0.5.13)(@types/node@22.7.8)(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react-server-dom-webpack@19.0.0-rc-bf7e210c-20241017(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react@19.0.0-rc-bf7e210c-20241017)(webpack@5.95.0))(react@19.0.0-rc-bf7e210c-20241017)(terser@5.36.0): + waku@0.21.4(@swc/helpers@0.5.13)(@types/node@22.8.1)(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react-server-dom-webpack@19.0.0-rc-bf7e210c-20241017(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react@19.0.0-rc-bf7e210c-20241017)(webpack@5.95.0))(react@19.0.0-rc-bf7e210c-20241017)(terser@5.36.0): dependencies: '@hono/node-server': 1.13.2(hono@4.6.5) '@swc/core': 1.7.36(@swc/helpers@0.5.13) - '@vitejs/plugin-react': 4.3.2(vite@5.4.9(@types/node@22.7.8)(terser@5.36.0)) + '@vitejs/plugin-react': 4.3.2(vite@5.4.9(@types/node@22.8.1)(terser@5.36.0)) dotenv: 16.4.5 hono: 4.6.5 react: 19.0.0-rc-bf7e210c-20241017 react-dom: 19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017) react-server-dom-webpack: 19.0.0-rc-bf7e210c-20241017(react-dom@19.0.0-rc-bf7e210c-20241017(react@19.0.0-rc-bf7e210c-20241017))(react@19.0.0-rc-bf7e210c-20241017)(webpack@5.95.0) rsc-html-stream: 0.0.3 - vite: 5.4.9(@types/node@22.7.8)(terser@5.36.0) + vite: 5.4.9(@types/node@22.8.1)(terser@5.36.0) transitivePeerDependencies: - '@swc/helpers' - '@types/node' @@ -31055,15 +28664,15 @@ snapshots: webpack-virtual-modules@0.6.2: {} - webpack@5.94.0(@swc/core@1.7.22(@swc/helpers@0.5.13)): + webpack@5.95.0: dependencies: - '@types/estree': 1.0.5 + '@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) - browserslist: 4.23.3 + 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 es-module-lexer: 1.5.4 @@ -31077,7 +28686,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.7.22(@swc/helpers@0.5.13))(webpack@5.94.0(@swc/core@1.7.22(@swc/helpers@0.5.13))) + terser-webpack-plugin: 5.3.10(webpack@5.95.0) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -31085,7 +28694,7 @@ snapshots: - esbuild - uglify-js - webpack@5.95.0: + webpack@5.95.0(@swc/core@1.7.36(@swc/helpers@0.5.13)): dependencies: '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 @@ -31107,7 +28716,7 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(webpack@5.95.0) + terser-webpack-plugin: 5.3.10(@swc/core@1.7.36(@swc/helpers@0.5.13))(webpack@5.95.0(@swc/core@1.7.36(@swc/helpers@0.5.13))) watchpack: 2.4.2 webpack-sources: 3.2.3 transitivePeerDependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 9e45866c4..4285ab2f8 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,4 +1,5 @@ packages: + - "unit" - "apps/*" - "packages/*" - "packages/providers/*" diff --git a/packages/llamaindex/tests/readers/fixtures/test.xlsx b/unit/fixtures/test.xlsx similarity index 100% rename from packages/llamaindex/tests/readers/fixtures/test.xlsx rename to unit/fixtures/test.xlsx diff --git a/unit/package.json b/unit/package.json new file mode 100644 index 000000000..2fd7c1397 --- /dev/null +++ b/unit/package.json @@ -0,0 +1,19 @@ +{ + "name": "@llamaindex/unit-test", + "private": true, + "version": "0.0.7", + "type": "module", + "scripts": { + "test": "vitest run" + }, + "devDependencies": { + "@faker-js/faker": "^9.0.1", + "msw": "^2.4.8", + "vitest": "^2.0.5" + }, + "dependencies": { + "@llamaindex/cloud": "workspace:*", + "@llamaindex/readers": "workspace:*", + "llamaindex": "workspace:*" + } +} diff --git a/packages/llamaindex/tests/readers/.snap/basic.pdf.snap b/unit/readers/.snap/basic.pdf.snap similarity index 100% rename from packages/llamaindex/tests/readers/.snap/basic.pdf.snap rename to unit/readers/.snap/basic.pdf.snap diff --git a/packages/llamaindex/tests/readers/DocxReader.test.ts b/unit/readers/docx.test.ts similarity index 82% rename from packages/llamaindex/tests/readers/DocxReader.test.ts rename to unit/readers/docx.test.ts index 4025d3348..5d007dc6b 100644 --- a/packages/llamaindex/tests/readers/DocxReader.test.ts +++ b/unit/readers/docx.test.ts @@ -1,4 +1,4 @@ -import { DocxReader } from "llamaindex/readers/DocxReader"; +import { DocxReader } from "@llamaindex/readers/docx"; import { beforeEach, describe, expect, it } from "vitest"; describe("DocxReader", () => { @@ -10,7 +10,7 @@ describe("DocxReader", () => { describe("loadData", () => { it("should load data from a docx file, return an array of documents and contain text", async () => { - const filePath = "../../../examples/data/stars.docx"; + const filePath = "../examples/data/stars.docx"; const docs = await docxReader.loadData(filePath); const docContent = docs.map((doc) => doc.text).join(""); diff --git a/packages/llamaindex/tests/readers/JSONReader.test.ts b/unit/readers/json.test.ts similarity index 98% rename from packages/llamaindex/tests/readers/JSONReader.test.ts rename to unit/readers/json.test.ts index 267f4b492..00bfddf6b 100644 --- a/packages/llamaindex/tests/readers/JSONReader.test.ts +++ b/unit/readers/json.test.ts @@ -1,4 +1,8 @@ -import { JSONParseError, JSONReader, JSONReaderError } from "llamaindex"; +import { + JSONParseError, + JSONReader, + JSONReaderError, +} from "@llamaindex/readers/json"; import { beforeEach, describe, expect, it } from "vitest"; const content = new TextEncoder().encode( diff --git a/packages/llamaindex/tests/readers/llama-parse.test.ts b/unit/readers/llama-parse.test.ts similarity index 98% rename from packages/llamaindex/tests/readers/llama-parse.test.ts rename to unit/readers/llama-parse.test.ts index 7649758c1..47ae1be3e 100644 --- a/packages/llamaindex/tests/readers/llama-parse.test.ts +++ b/unit/readers/llama-parse.test.ts @@ -170,7 +170,7 @@ test("llama parse should return a successful document", async () => { verbose: false, apiKey: "llx-fake-api-key", }); - const fileUrl = new URL("../../../../examples/data/TOS.pdf", import.meta.url); + const fileUrl = new URL("../../examples/data/TOS.pdf", import.meta.url); const documents = await reader.loadData(fileURLToPath(fileUrl)); expect(documents.length).toBe(1); }); diff --git a/packages/llamaindex/tests/readers/MarkdownReader.test.ts b/unit/readers/markdown.test.ts similarity index 81% rename from packages/llamaindex/tests/readers/MarkdownReader.test.ts rename to unit/readers/markdown.test.ts index c95c25a9b..679118caa 100644 --- a/packages/llamaindex/tests/readers/MarkdownReader.test.ts +++ b/unit/readers/markdown.test.ts @@ -1,4 +1,4 @@ -import { MarkdownReader } from "llamaindex/readers/MarkdownReader"; +import { MarkdownReader } from "@llamaindex/readers/markdown"; import { beforeEach, describe, expect, it } from "vitest"; describe("MarkdownReader", () => { @@ -10,7 +10,7 @@ describe("MarkdownReader", () => { describe("loadData", () => { it("should load data from a markdown file, return an array of documents and contain text", async () => { - const filePath = "../../../examples/data/planets.md"; + const filePath = "../examples/data/planets.md"; const docs = await markdownReader.loadData(filePath); const docContent = docs.map((doc) => doc.text).join(""); diff --git a/packages/llamaindex/tests/readers/pdf-reader.test.ts b/unit/readers/pdf-reader.test.ts similarity index 67% rename from packages/llamaindex/tests/readers/pdf-reader.test.ts rename to unit/readers/pdf-reader.test.ts index 7d16d2fc9..dae938001 100644 --- a/packages/llamaindex/tests/readers/pdf-reader.test.ts +++ b/unit/readers/pdf-reader.test.ts @@ -1,10 +1,10 @@ -import { PDFReader } from "llamaindex"; +import { PDFReader } from "@llamaindex/readers/pdf"; import { describe, expect, test } from "vitest"; describe("pdf reader", () => { const reader = new PDFReader(); test("basic.pdf", async () => { - const documents = await reader.loadData("../../../examples/data/basic.pdf"); + const documents = await reader.loadData("../examples/data/basic.pdf"); expect(documents.length).toBe(1); expect(documents[0]!.metadata).toMatchObject({ file_path: expect.any(String), @@ -17,13 +17,11 @@ describe("pdf reader", () => { ); }); test("brk-2022.pdf", async () => { - const documents = await reader.loadData( - "../../../examples/data/brk-2022.pdf", - ); + const documents = await reader.loadData("../examples/data/brk-2022.pdf"); expect(documents.length).toBe(144); }); test("manga.pdf", async () => { - const documents = await reader.loadData("../../../examples/data/manga.pdf"); + const documents = await reader.loadData("../examples/data/manga.pdf"); expect(documents.length).toBe(4); }); }); diff --git a/unit/readers/register.test.ts b/unit/readers/register.test.ts new file mode 100644 index 000000000..14b149135 --- /dev/null +++ b/unit/readers/register.test.ts @@ -0,0 +1,118 @@ +import { spawnSync } from "node:child_process"; +import { expect, test } from "vitest"; + +test("node register", async () => { + const code = `import csvDocument from '../examples/data/movie_reviews.csv';console.log(csvDocument.getText())`; + const cp = spawnSync( + process.execPath, + ["--input-type=module", "--import=llamaindex/register"], + { + input: code, + stdio: "pipe", + }, + ); + expect(cp.stdout.toString("utf-8")).toMatchInlineSnapshot(` + "title, reviewid, creationdate, criticname, originalscore, reviewstate, reviewtext + Beavers, 1145982, 2003-05-23, Ivan M. Lincoln, 3.5/4, fresh, Timed to be just long enough for most youngsters' brief attention spans -- and it's packed with plenty of interesting activity, both on land and under the water. + Blood Mask, 1636744, 2007-06-02, The Foywonder, 1/5, rotten, It doesn't matter if a movie costs 300 million or only 300 dollars; good is good and bad is bad, and Bloodmask: The Possession of Nicole Lameroux is just plain bad. + City Hunter: Shinjuku Private Eyes, 2590987, 2019-05-28, Reuben Baron, , fresh, The choreography is so precise and lifelike at points one might wonder whether the movie was rotoscoped, but no live-action reference footage was used. The quality is due to the skill of the animators and Kodama's love for professional wrestling. + City Hunter: Shinjuku Private Eyes, 2558908, 2019-02-14, Matt Schley, 2.5/5, rotten, The film's out-of-touch attempts at humor may find them hunting for the reason the franchise was so popular in the first place. + Dangerous Men, 2504681, 2018-08-29, Pat Padua, , fresh, Its clumsy determination is endearing and sometimes wildly entertaining + Dangerous Men, 2299284, 2015-12-13, Eric Melin, 4/5, fresh, With every new minute, there's another head-scratching choice that's bound to elicit some amazing out-loud responses, so this feels like a true party flick. + Dangerous Men, 2295858, 2015-11-22, Matt Donato, 7/10, fresh, Emotionless reaction shots, zero characterization, guns that have absolutely no special effects when blasted - Dangerous Men is rare winning dish from a one star restaurant. + Dangerous Men, 2295338, 2015-11-19, Peter Keough, 0.5/4, rotten, Conceivably, it could serve as a primer for students on how not to make a movie, and perhaps as a deconstruction of filmic conventions for the more theoretical minded. + Dangerous Men, 2294641, 2015-11-16, Jason Wilson, 3/10, rotten, If you're not a fan of garbage cinema, even for the fun of it, Dangerous Men is best to be avoided. + Dangerous Men, 2294129, 2015-11-12, Soren Andersen, 0/4, rotten, "Dangerous Men," the picture's production notes inform, took 26 years to reach the big screen. After having seen it, I wonder: What was the rush? + Dangerous Men, 2293902, 2015-11-12, Maitland McDonagh, , rotten, Will entertain some viewers and infuriate others with its clunky mix of feminist fury and awkward action sequences. + Dangerous Men, 2293900, 2015-11-12, Marjorie Baumgarten, 1.5/5, rotten, This is a bad movie, but one that awakens your senses every so often with flashes of originality and abundant self-belief. + Dangerous Men, 2293815, 2015-11-12, Katie Rife, B+, fresh, Ridiculous, artless, and wildly entertaining, Dangerous Men is more than the sum of its fascinatingly misguided parts, although it will take a special sort of moviegoer to truly appreciate (or endure, depending on your perspective) its charms. + Dangerous Men, 2293605, 2015-11-11, Amy Nicholson, C, fresh, To sit through it feels like honoring the dreamers of the world who at least get shit done. Is it terrible? Of course. Is there belly-dancing? Duh. + Small Town Wisconsin, 102711819, 2022-07-22, Peter Gray, , fresh, Small Town Wisconsin could hit some home truths for viewers, and though being faced with the truth isn’t always pleasant, it feels necessary in growing towards a happier fruition. + Small Town Wisconsin, 102711545, 2022-07-22, Tim Grierson, , fresh, This low-key drama has lovely interludes and some nicely understated performances, although director Niels Mueller doesn’t glean too many new insights from Jason Naczek’s familiar story... + Small Town Wisconsin, 102700937, 2022-06-16, Sumner Forbes, 8.5/10, fresh, Small Town Wisconsin is a success in almost every regard, and if you can see over the legions of cheeseheads in the rows ahead of you, it shouldn’t be missed. + Small Town Wisconsin, 102699897, 2022-06-14, Tara McNamara, 3/5, fresh, Just like Wayne, Small Town Wisconsin has flaws, but the poignancy of the story will stick with you for a long time. + Small Town Wisconsin, 102698744, 2022-06-10, Rob Thomas, 3/4, fresh, It’s a movie with its heart in the right place, and does both small town and big city Wisconsin proud. + Small Town Wisconsin, 102698639, 2022-06-10, Todd Jorgenson, , rotten, Despite some intriguing character dynamics and performances that generate sympathy for this fractured family, the film stumbles when it veers into melodrama without the narrative dexterity to tackle its weightier ambitions. + Small Town Wisconsin, 102698482, 2022-06-10, Jackie K. Cooper, 7/10, fresh, This is the kind of movie that draws you so deeply into its story you are reluctant to let it end. + Small Town Wisconsin, 102698164, 2022-06-09, Glenn Kenny, , fresh, Mueller’s direction is patient and sensitive, the cast is accomplished and committed, and the picture’s comedic aspects sometimes earn a chuckle. + Small Town Wisconsin, 102697854, 2022-06-08, Brian Orndorf, B+, fresh, Naczek isn't interested in making a soap opera with this examination of fallibility, going somewhere much more authentic when exploring character aches and pains. + Small Town Wisconsin, 102695788, 2022-06-02, Eddie Harrison, 4/5, fresh, …a warm-hearted story of everyday life that’s easy to recommend for those who like films about people rather than portals and vortexes… + Small Town Wisconsin, 102695250, 2022-05-31, Laura Clifford, C, rotten, Debuting screenwriter Jason Naczek has concocted a manchild redemption story using metaphors as heavy as a hammer and a fairy godmother who makes everything alright with a seeming flip of the switch. + Small Town Wisconsin, 2733251, 2020-10-12, Jared Mobarak, B, fresh, Small Town Wisconsin is always proving itself to be more than its familiar premise thanks to Naczek's ability to infuse a lot more drama into the mix than one custody battle. + Tejano, 2564925, 2019-03-07, Joe Friar, 3/4, fresh, The story of a South Texas ranch hand who gets mixed up with a Mexican cartel moves with pulse-pounding velocity and features top performances from a talented cast of actors with Texas roots. + Tejano, 2557738, 2019-02-12, Cary Darling, 4/5, fresh, An entertaining blast of Texas noir that nods toward the work of the Coen brothers, Quentin Tarantino and fellow Austinite Greg Kwedar's 2016 low-budget thriller "Transpecos" as well as "Breaking Bad." + Tejano, 2547231, 2019-01-10, Danielle White, 3/5, fresh, The story itself slithers with twists and turns and unexpected betrayals. It's almost ridiculous how many characters die in this film. + Tejano, 2530119, 2018-11-08, Chris Salce, 9/10, fresh, Tejano is one of those films that can be described as a hidden gem as it sneaks under the radar and will have you talking, telling your friends about it, and wanting to watch it again. + Death of a Salesman, 2770637, 2021-02-23, Michael Dougan, , fresh, Miller has taken a small, intimate tale and expanded it into a treatise on larger themes, primarily the abuse of the American Dream. + Death of a Salesman, 1950734, 2011-01-02, Randy White, 5/5, fresh, A classic American tragedy. + Death of a Salesman, 1422415, 2005-08-04, Jules Brenner, 4/5, fresh, + Death of a Salesman, 1409415, 2005-07-05, Emanuel Levy, 3/5, fresh, + Death of a Salesman, 839546, 2003-02-06, Frederic and Mary Ann Brussat, , fresh, Death of a Salesman, directed by Volker Schlondorff, draws out the multiple meanings of this Pulitzer Prize-winning play by Arthur Miller about change, family and fatherhood, work and love. + Death of a Salesman, 788410, 2002-09-29, Dan Lybarger, 4/5, fresh, Schlndorff's artificial settings and some amazing performances help keep this from looking like a typical "filmed play." + Death of a Salesman, 751951, 2002-08-08, Cory Cheney, 4/5, fresh, + Death of a Salesman, 743794, 2002-07-26, Bob Grimm, 5/5, fresh, + Death of a Salesman, 743291, 2002-07-26, Scott Weinberg, 5/5, fresh, They MAKE you watch it in English class for a good reason! + Sahara, 1137710, 2003-05-13, Dragan Antulov, 5/10, fresh, + The Debt, 2628192, 2019-09-20, Diego Batlle, , fresh, A Bresson-esque movie that is always enigmatic. [Full Review in Spanish] + The Debt, 2627988, 2019-09-20, Gaspar Zimerman, , fresh, The story [Director Gustavo Fontán] tells is an excuse to give way to the exploration of feelings and sensations that avoid verbality. [Full review in Spanish] + Peppermint Candy, 2725008, 2020-09-16, A.S. Hamrah, , fresh, South Korean political history of the previous twenty years, Peppermint Candy is not tempered by its hysterical edge, which adds unpredictable violence to its vignettes of romantic, domestic, and business failure. + Peppermint Candy, 2541271, 2018-12-16, Panos Kotzathanasis, , fresh, Lee Chang-dong presents a melodrama that stands apart from the plethora of similar productions due to its intense political element, because it doesn't lose its seriousness at any point and because it doesn't become hyperbolic in his effort to draw tears + Peppermint Candy, 1883708, 2010-05-11, Anton Bitel, , fresh, This is Korea's millennial elegy, filtering its search for times past through a confection no less bittersweet than Proust's madeleine. + Peppermint Candy, 1706014, 2008-01-29, Beth Accomando, 9/10, fresh, The film offers a heartbreaking drama told in reverse chronology and spanning twenty years in both the life of the main character and the political history of Korea. + Peppermint Candy, 1231988, 2003-12-22, Greg Muskewitz, 2/5, rotten, + Peppermint Candy, 1187104, 2003-08-14, Joshua Tanzer, 4/4, fresh, It's a story about the original sin of a nation as well as one character. There has rarely been a better film made, ever + Prison Girls, 2475348, 2018-05-03, Roger Ebert, , rotten, Prison Girls didn't have a lot of prison sets because it was a big-budget exploitation movie. Maybe. + Gimme the Power, 2575688, 2019-04-09, Afroxander, , fresh, Rubio's film shows ambition where none is required, making Gimme the Power a lot like Molotov's music: politically engaged without having to take itself too seriously. + Paa, 2673089, 2020-02-27, Nikhat Kazmi, 3.5/5, fresh, The film, which peters off into vague sub-plots about slum redevelopment and unwarranted media-bashing in the first half, suddenly picks up and scales new heights in the second half. + Paa, 2578129, 2019-04-17, Shubhra Gupta, 2/5, rotten, Disappointingly, Paa is not as out-of-the-box as it could have been. + Paa, 2429810, 2017-10-24, Anil Sinanan, 3/5, rotten, Will Auro survive to know his Pa and reunite his parents? Forget about the disease: this is a vanity vehicle designed to showcase the Big B's versatility. + Paa, 1860476, 2009-12-14, Frank Lovece, , rotten, This would-be tearjerker without the musical numbers of typical Bollywood fare is for die-hard Amitabh Bachchan fans only. + Paa, 1860473, 2009-12-14, David Chute, , fresh, The film owes much of its interest to the alertness and sincerity of the younger Bachchan and the luminous Vidya Balan as the anguished parents, and to the soft wash of the tasteful playback songs supplied by Ilaiyaraaja. + Paa, 1858964, 2009-12-05, Avi Offer, 5.85/10, rotten, Well-acted, funny and occasionally witty with terrific make-up design. However, it's often convoluted, awkwardly paced and too uneven as a whole. + Paa, 1858853, 2009-12-04, Frank Lovece, , fresh, A would-be tearjerker without the singing-dancing musical numbers of typical Bollywood fare seen in the U.S., the lackluster Paa is for die-hard Amitabh Bachchan fans only%u2014of which there is no small number. + Paa, 1858816, 2009-12-04, Rachel Saltz, 3/5, fresh, Odd and sometimes oddly affecting. + Alraune (A Daughter of Destiny) (Mandrake) (Unholy Love), 2835964, 2021-10-30, Erich Hellmund-Waldow, , fresh, The acting is not only artistic, it is also as realistic as can be possible in such a film. + Alraune (A Daughter of Destiny) (Mandrake) (Unholy Love), 2357086, 2016-10-17, C. Hooper Trask, , fresh, Aimed straight for the gooseflesh, it strikes directly into the centre of the target. + Toorbos, 2760593, 2021-01-29, Neil Young, , fresh, Built around a luminous and intriguing central performance by dancer-actor Elani Dekker. + Toorbos, 2752827, 2020-12-21, Guy Lodge, , fresh, A satisfying marriage of folky period romance and environmental parable from the misty, mossy depths of South Africa's Knysna forest region... + Connors' War, 1555113, 2006-11-09, David Nusair, 1.5/4, rotten, ...although Criss does show some potential as a performer, his efforts to step into the shoes of a blind character are laughable. + Connors' War, 1539106, 2006-09-19, Scott Weinberg, 2/5, rotten, Standard cable fodder all the way, with only a few solid action scenes and maybe one colorful performance in the whole thing. + Born to Kill, 2710947, 2020-08-05, Mike Massie, 10/10, fresh, One of the most acerbic of all films noir, boasting essentially no redeemable characters (or a wealth of deliciously evil villains) while also being utterly enthralling. + Born to Kill, 2340106, 2016-07-15, David Nusair, 3/4, fresh, ...a fairly typical film-noir premise that's employed to watchable yet entirely unmemorable effect by Robert Wise... + Born to Kill, 1507021, 2006-05-16, Nick Schager, B, fresh, Competent if slightly too tame for a supposedly sleazy story. + Born to Kill, 1501617, 2006-05-01, Fernando F. Croce, , fresh, The usually meek Robert Wise trades his chameleonic tastefulness for full-on, jazzy misanthropy in this nasty melodrama. + Born to Kill, 1433953, 2005-09-09, Jeffrey M. Anderson, 3/4, fresh, Hard to watch, but effective and alluring nonetheless. + Born to Kill, 1123980, 2003-04-02, Dennis Schwartz, C, rotten, A revolting B film noir... + The Soong Sisters, 1402087, 2005-06-15, Emanuel Levy, 3/5, fresh, + La Sapienza, 102772380, 2023-01-24, Vadim Rizov, , fresh, Sapienza is a pretty lovely film. Symmetricities are everywhere, starting with that opening architectural showreel, which deliberately avoids perfect symmetricity... + La Sapienza, 2767839, 2021-02-14, Dustin Chang, , fresh, Their sincere expression of these thoughts rings true and melts away its artificiality in its presentation soon enough. This is the beauty of La Sapienza and Green films in general. + La Sapienza, 2598336, 2019-06-18, C.J. Prince, , fresh, It's a nice entry point into a peculiar cinematic universe, and those willing to open themselves to it will find a lot to enjoy. + La Sapienza, 2503963, 2018-08-28, Charles Mudede, , fresh, If architecture aspires to the condition of music, the acting in La Sapienza aspires to the condition of architecture. You will love the ending of this very original and elegant and arty work. + La Sapienza, 2314368, 2016-03-12, Forrest Cardamenis, B, fresh, This startling architectural juxtaposition feels like a wake-up call. + La Sapienza, 2275677, 2015-08-03, Nicole Armour, , fresh, While Green's film is dense with historical fact and theory, it's not averse to plumbing life's mysteries. Suffused with warmth, it expresses a potent admiration for human striving and accomplishment. + La Sapienza, 2273804, 2015-07-23, Norman Wilner, 2/5, rotten, The uncomplicated narrative resists stylization; Green's presentation turns everyone into mannequins, rendering their emotions theoretical. That may well be his point, but it didn't work for me. + La Sapienza, 2269287, 2015-06-26, Sam Lubell, , fresh, On the surface, writer-director Eugne Green's film "La Sapienza" is slow, strange and awkward - but stick with it and it may win you over. + La Sapienza, 2265997, 2015-06-05, Rob Garratt, 4/5, fresh, Layered with reels of swirling shots of Rome's most beautiful buildings -- all crucially shot from the ground upwards, staring at the heavens-- La Sapienza is visually stunning. + La Sapienza, 2265990, 2015-06-05, Boyd van Hoeij, , fresh, The Sapience juxtaposes insights on how people are emotionally connected with ruminations on the buildings and spaces through which they move, in which they live and, in Alexandre's case, which they also create. + La Sapienza, 2265989, 2015-06-05, Robert Horton, 3/4, fresh, If you can groove into this non-realistic mode, the film casts a spell. + La Sapienza, 2265790, 2015-06-04, Tom Keogh, 3.5/4, fresh, A beautiful space for people and light. + La Sapienza, 2255621, 2015-04-09, Wesley Morris, , rotten, This kind of formalism needs to do more than walk through classical wonders. It should want to create cinema that can stand near or beside them. This movie defensively consecrates what's already there. You don't need a film to do that. + La Sapienza, 2255195, 2015-04-08, Scott Foundas, , fresh, An exquisite rumination on life, love and art that tickles the heart and mind in equal measure. + La Sapienza, 2252858, 2015-03-23, Richard Brody, , fresh, Green's richly textured, painterly images fuse with the story to evoke the essence of humane urbanity and the relationships that it fosters, whether educational, familial, or erotic. + La Sapienza, 2252553, 2015-03-20, Ignatiy Vishnevetsky, B+, fresh, Green doesn't so much use his characters as mouthpieces as emotionally invest them in art, turning opinions into feelings. + La Sapienza, 2252541, 2015-03-20, Godfrey Cheshire, 4/4, fresh, "La Sapienza" strikes this reviewer as easily the most astonishing and important movie to emerge from France in quite some time. + La Sapienza, 2252452, 2015-03-19, A.O. Scott, , fresh, The movie is an unapologetically rarefied undertaking and at the same time a gracious and inviting film. + La Sapienza, 2252301, 2015-03-19, David Noh, , rotten, Pretentious, stuffy and slow. There's some beautiful scenery here but oh, what you must put up with to earn it! + La Sapienza, 2252028, 2015-03-18, Noel Murray, 3/5, fresh, While La Sapienza is unsatisfying as drama, it's frequently beautiful just as a tour through architecturally significant Italian buildings. + La Sapienza, 2251985, 2015-03-17, David Ehrlich, 3/5, fresh, La Sapienza alternately feels like a self-reflexive love story or a haunted history lesson -- its best scenes play like both. + La Sapienza, 2251926, 2015-03-17, Zachary Wigon, , fresh, A picture that balances heart and mind with nuance. + La Sapienza, 2251650, 2015-03-14, Harvey S. Karten, B+, fresh, As in "Who's Afraid of Virginia Woolf," both the younger couple and their older mentors are changed from a relationship. + La Sapienza, 2250991, 2015-03-12, Ben Sachs, , fresh, This recalls Manoel de Oliveira and Eric Rohmer in its poker-faced style, deliberately archaic storytelling, and magisterial epiphanies. + La Sapienza, 2225361, 2014-09-28, Donald J. Levit, , fresh, Although a love-fiction crossed with documentary lecture and superb Raphael O'Byrne cinematography, 'La Sapienza' is as close as celluloid can approach to architecture. + La Sapienza, 2222032, 2014-09-10, Carson Lund, 3/4, fresh, Eugne Green's mannered direction doesn't work for every situation it's homogenously applied to, but at its most effective it inspires an enhanced sensitivity to the import of every gesture, visual or verbal. + Uncle Tom, 2713732, 2020-08-14, Megan Basham, , fresh, Uncle Tom suffers from an overreliance on pundits. Its most compelling insights come from people who've never been quoted in a Twitter or Facebook battle. + Uncle Tom, 2706229, 2020-07-19, Matthew Pejkovic, 4/5, fresh, An incredibly relevant and insightful documentary that delves into the past, present, and future of the black American conservative movement. + Uncle Tom, 2698525, 2020-06-24, Dante James, 7/10, fresh, It's a little misleading in some areas, especially if you know the players involved in this doc, but there are a lot of interesting historical facts about the breakdown of the Black family and how the whole welfare system targeted the Black community. + " + `); +}); diff --git a/unit/tsconfig.json b/unit/tsconfig.json new file mode 100644 index 000000000..772e608bc --- /dev/null +++ b/unit/tsconfig.json @@ -0,0 +1,21 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "outDir": "./lib", + "module": "node16", + "moduleResolution": "node16", + "target": "ESNext" + }, + "include": ["./**/*.ts"], + "references": [ + { + "path": "../packages/core/tsconfig.json" + }, + { + "path": "../packages/readers/tsconfig.json" + }, + { + "path": "../packages/env/tsconfig.json" + } + ] +} -- GitLab