From 754ffededcf496489780a3ac928fafbc8c336e5c Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Fri, 7 Feb 2025 12:24:25 -0800 Subject: [PATCH 01/70] feat(core): Add a way to manually specify serializable fields (#7667) --- langchain-core/src/callbacks/base.ts | 4 ++++ langchain-core/src/load/serializable.ts | 18 +++++++++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/langchain-core/src/callbacks/base.ts b/langchain-core/src/callbacks/base.ts index 2dad82102fb9..9b5b051461ff 100644 --- a/langchain-core/src/callbacks/base.ts +++ b/langchain-core/src/callbacks/base.ts @@ -328,6 +328,10 @@ export abstract class BaseCallbackHandler return undefined; } + get lc_serializable_keys(): string[] | undefined { + return undefined; + } + /** * The name of the serializable. Override to provide an alias or * to preserve the serialized module name in minified environments. diff --git a/langchain-core/src/load/serializable.ts b/langchain-core/src/load/serializable.ts index d4f7cc7e947a..66eb46f1892b 100644 --- a/langchain-core/src/load/serializable.ts +++ b/langchain-core/src/load/serializable.ts @@ -140,8 +140,24 @@ export abstract class Serializable implements SerializableInterface { return undefined; } + /** + * A manual list of keys that should be serialized. + * If not overridden, all fields passed into the constructor will be serialized. + */ + get lc_serializable_keys(): string[] | undefined { + return undefined; + } + constructor(kwargs?: SerializedFields, ..._args: never[]) { - this.lc_kwargs = kwargs || {}; + if (this.lc_serializable_keys !== undefined) { + this.lc_kwargs = Object.fromEntries( + Object.entries(kwargs || {}).filter(([key]) => + this.lc_serializable_keys?.includes(key) + ) + ); + } else { + this.lc_kwargs = kwargs ?? {}; + } } toJSON(): Serialized { From 1c1e6cd0e681912e568913335f0e4019be192dd9 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Fri, 7 Feb 2025 12:28:33 -0800 Subject: [PATCH 02/70] release(core): 0.3.39 (#7668) --- langchain-core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain-core/package.json b/langchain-core/package.json index 83532133b2ac..0f72c69e9753 100644 --- a/langchain-core/package.json +++ b/langchain-core/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/core", - "version": "0.3.38", + "version": "0.3.39", "description": "Core LangChain.js abstractions and schemas", "type": "module", "engines": { From c77a8a5ed5c2e5f8e5de048d8fb84278c28bfae9 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Fri, 7 Feb 2025 15:56:58 -0800 Subject: [PATCH 03/70] fix(openai): Prevent extra constructor params from being serialized, add script (#7669) --- libs/langchain-openai/package.json | 2 +- .../langchain-openai/src/azure/chat_models.ts | 15 ++++ libs/langchain-openai/src/chat_models.ts | 39 +++++++++ .../src/tests/azure/chat_models.test.ts | 14 ++++ .../src/tests/chat_models.test.ts | 12 +++ .../bin/extract_serializable_fields.js | 2 + libs/langchain-scripts/package.json | 1 + .../src/extract_serializable_fields.ts | 81 +++++++++++++++++++ yarn.lock | 3 +- 9 files changed, 167 insertions(+), 2 deletions(-) create mode 100755 libs/langchain-scripts/bin/extract_serializable_fields.js create mode 100644 libs/langchain-scripts/src/extract_serializable_fields.ts diff --git a/libs/langchain-openai/package.json b/libs/langchain-openai/package.json index ca74ef2934a3..781026c9a482 100644 --- a/libs/langchain-openai/package.json +++ b/libs/langchain-openai/package.json @@ -41,7 +41,7 @@ "zod-to-json-schema": "^3.22.3" }, "peerDependencies": { - "@langchain/core": ">=0.3.29 <0.4.0" + "@langchain/core": ">=0.3.39 <0.4.0" }, "devDependencies": { "@azure/identity": "^4.2.1", diff --git a/libs/langchain-openai/src/azure/chat_models.ts b/libs/langchain-openai/src/azure/chat_models.ts index 1bde3578fb5a..8ce4ea5bd23e 100644 --- a/libs/langchain-openai/src/azure/chat_models.ts +++ b/libs/langchain-openai/src/azure/chat_models.ts @@ -473,6 +473,21 @@ export class AzureChatOpenAI extends ChatOpenAI { }; } + get lc_serializable_keys(): string[] { + return [ + ...super.lc_serializable_keys, + "azureOpenAIApiKey", + "azureOpenAIApiVersion", + "azureOpenAIBasePath", + "azureOpenAIEndpoint", + "azureOpenAIApiInstanceName", + "azureOpenAIApiDeploymentName", + "deploymentName", + "openAIApiKey", + "openAIApiVersion", + ]; + } + constructor( fields?: Partial & Partial & { diff --git a/libs/langchain-openai/src/chat_models.ts b/libs/langchain-openai/src/chat_models.ts index 2ff57f5c95bd..2cb3d9ba2034 100644 --- a/libs/langchain-openai/src/chat_models.ts +++ b/libs/langchain-openai/src/chat_models.ts @@ -905,6 +905,45 @@ export class ChatOpenAI< }; } + get lc_serializable_keys(): string[] { + return [ + "configuration", + "logprobs", + "topLogprobs", + "prefixMessages", + "supportsStrictToolCalling", + "modalities", + "audio", + "reasoningEffort", + "temperature", + "maxTokens", + "topP", + "frequencyPenalty", + "presencePenalty", + "n", + "logitBias", + "user", + "streaming", + "streamUsage", + "modelName", + "model", + "modelKwargs", + "stop", + "stopSequences", + "timeout", + "openAIApiKey", + "apiKey", + "cache", + "maxConcurrency", + "maxRetries", + "verbose", + "callbacks", + "tags", + "metadata", + "disableStreaming", + ]; + } + temperature?: number; topP?: number; diff --git a/libs/langchain-openai/src/tests/azure/chat_models.test.ts b/libs/langchain-openai/src/tests/azure/chat_models.test.ts index 036b02358b2a..431196ac19b9 100644 --- a/libs/langchain-openai/src/tests/azure/chat_models.test.ts +++ b/libs/langchain-openai/src/tests/azure/chat_models.test.ts @@ -23,6 +23,20 @@ test("Test Azure OpenAI serialization from azure endpoint", async () => { ); }); +test("Test Azure OpenAI serialization does not pass along extra params", async () => { + const chat = new AzureChatOpenAI({ + azureOpenAIEndpoint: "https://foobar.openai.azure.com/", + azureOpenAIApiDeploymentName: "gpt-4o", + azureOpenAIApiVersion: "2024-08-01-preview", + azureOpenAIApiKey: "foo", + extraParam: "extra", + // eslint-disable-next-line @typescript-eslint/no-explicit-any + } as any); + expect(JSON.stringify(chat)).toEqual( + `{"lc":1,"type":"constructor","id":["langchain","chat_models","azure_openai","AzureChatOpenAI"],"kwargs":{"azure_endpoint":"https://foobar.openai.azure.com/","deployment_name":"gpt-4o","openai_api_version":"2024-08-01-preview","azure_open_ai_api_key":{"lc":1,"type":"secret","id":["AZURE_OPENAI_API_KEY"]}}}` + ); +}); + test("Test Azure OpenAI serialization from base path", async () => { const chat = new AzureChatOpenAI({ azureOpenAIBasePath: diff --git a/libs/langchain-openai/src/tests/chat_models.test.ts b/libs/langchain-openai/src/tests/chat_models.test.ts index 274c150845ef..52fba579424e 100644 --- a/libs/langchain-openai/src/tests/chat_models.test.ts +++ b/libs/langchain-openai/src/tests/chat_models.test.ts @@ -259,3 +259,15 @@ describe("strict tool calling", () => { } }); }); + +test("Test OpenAI serialization doesn't pass along extra params", async () => { + const chat = new ChatOpenAI({ + apiKey: "test-key", + model: "o3-mini", + somethingUnexpected: true, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + } as any); + expect(JSON.stringify(chat)).toEqual( + `{"lc":1,"type":"constructor","id":["langchain","chat_models","openai","ChatOpenAI"],"kwargs":{"openai_api_key":{"lc":1,"type":"secret","id":["OPENAI_API_KEY"]},"model":"o3-mini"}}` + ); +}); diff --git a/libs/langchain-scripts/bin/extract_serializable_fields.js b/libs/langchain-scripts/bin/extract_serializable_fields.js new file mode 100755 index 000000000000..d2cd7cb301e0 --- /dev/null +++ b/libs/langchain-scripts/bin/extract_serializable_fields.js @@ -0,0 +1,2 @@ +#!/usr/bin/env node +import "../dist/extract_serializable_fields.js"; diff --git a/libs/langchain-scripts/package.json b/libs/langchain-scripts/package.json index 611c61749b4f..ec4efa1337d0 100644 --- a/libs/langchain-scripts/package.json +++ b/libs/langchain-scripts/package.json @@ -14,6 +14,7 @@ }, "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-scripts/", "bin": { + "extract_serializable_fields": "bin/extract_serializable_fields.js", "filter_spam_comment": "bin/filter_spam_comment.js", "lc_build": "bin/build.js", "notebook_validate": "bin/validate_notebook.js" diff --git a/libs/langchain-scripts/src/extract_serializable_fields.ts b/libs/langchain-scripts/src/extract_serializable_fields.ts new file mode 100644 index 000000000000..370a9bd325e8 --- /dev/null +++ b/libs/langchain-scripts/src/extract_serializable_fields.ts @@ -0,0 +1,81 @@ +import ts from "typescript"; +import * as path from "path"; + +function extractConstructorParams( + sourceFile: string, + className: string +): { type: string; fields: string[] } | null { + const absolutePath = path.resolve(sourceFile); + const program = ts.createProgram([absolutePath], { + target: ts.ScriptTarget.ES2015, + module: ts.ModuleKind.CommonJS, + }); + const source = program.getSourceFile(absolutePath); + const typeChecker = program.getTypeChecker(); + + if (!source) { + console.error(`Could not find source file: ${absolutePath}`); + return null; + } + + let result: { type: string; fields: string[] } | null = null; + + function visit(node: ts.Node) { + if (ts.isClassDeclaration(node) && node.name?.text === className) { + node.members.forEach((member) => { + if ( + ts.isConstructorDeclaration(member) && + member.parameters.length > 0 + ) { + const firstParam = member.parameters[0]; + const type = typeChecker.getTypeAtLocation(firstParam); + const typeString = typeChecker.typeToString(type); + + // Get properties of the type + const fields: string[] = []; + type.getProperties().forEach((prop) => { + // Get the type of the property + const propType = typeChecker.getTypeOfSymbolAtLocation( + prop, + firstParam + ); + // Only include non-function properties that don't start with __ + if ( + !prop.getName().startsWith("__") && + prop.getName() !== "callbackManager" && + !(propType.getCallSignatures().length > 0) + ) { + fields.push(prop.getName()); + } + }); + + result = { + type: typeString, + fields, + }; + } + }); + } + ts.forEachChild(node, visit); + } + + visit(source); + return result; +} +const filepath = process.argv[2]; +const className = process.argv[3]; + +if (!filepath || !className) { + console.error( + "Usage: node extract_serializable_fields.ts " + ); + process.exit(1); +} + +const results = extractConstructorParams(filepath, className); + +if (results?.fields?.length) { + console.log(JSON.stringify(results?.fields, null, 2)); +} else { + console.error("No constructor parameters found"); +} diff --git a/yarn.lock b/yarn.lock index d608fc479976..8d8124231be9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13035,7 +13035,7 @@ __metadata: zod: ^3.22.4 zod-to-json-schema: ^3.22.3 peerDependencies: - "@langchain/core": ">=0.3.29 <0.4.0" + "@langchain/core": ">=0.3.39 <0.4.0" languageName: unknown linkType: soft @@ -13200,6 +13200,7 @@ __metadata: tsx: ^4.16.2 typescript: ^5.4.5 bin: + extract_serializable_fields: bin/extract_serializable_fields.js filter_spam_comment: bin/filter_spam_comment.js lc_build: bin/build.js notebook_validate: bin/validate_notebook.js From 01e86141abc02ced908dce07a07d99d5055d1905 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Fri, 7 Feb 2025 15:59:29 -0800 Subject: [PATCH 04/70] release(openai): 0.4.3 (#7670) --- libs/langchain-openai/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-openai/package.json b/libs/langchain-openai/package.json index 781026c9a482..ed2a5e99e8e3 100644 --- a/libs/langchain-openai/package.json +++ b/libs/langchain-openai/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/openai", - "version": "0.4.2", + "version": "0.4.3", "description": "OpenAI integrations for LangChain.js", "type": "module", "engines": { From 0050a558abda22fa411b0ee624ea1224cdb61c10 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Sat, 8 Feb 2025 14:44:52 -0800 Subject: [PATCH 05/70] feat(ollama): Add support for Ollama built-in JSON schema with withStructuredOutput (#7672) --- libs/langchain-ollama/package.json | 10 +- libs/langchain-ollama/src/chat_models.ts | 133 +++++++++++++++++- ...chat_models_structured_output.int.test.ts} | 19 ++- yarn.lock | 23 ++- 4 files changed, 167 insertions(+), 18 deletions(-) rename libs/langchain-ollama/src/tests/{chat_models-tools.int.test.ts => chat_models_structured_output.int.test.ts} (83%) diff --git a/libs/langchain-ollama/package.json b/libs/langchain-ollama/package.json index 389575ae1ed5..84501e325cda 100644 --- a/libs/langchain-ollama/package.json +++ b/libs/langchain-ollama/package.json @@ -32,8 +32,10 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "ollama": "^0.5.9", - "uuid": "^10.0.0" + "ollama": "^0.5.12", + "uuid": "^10.0.0", + "zod": "^3.24.1", + "zod-to-json-schema": "^3.24.1" }, "peerDependencies": { "@langchain/core": ">=0.2.21 <0.4.0" @@ -62,9 +64,7 @@ "release-it": "^17.6.0", "rollup": "^4.5.2", "ts-jest": "^29.1.0", - "typescript": "<5.2.0", - "zod": "^3.22.4", - "zod-to-json-schema": "^3.23.0" + "typescript": "<5.2.0" }, "publishConfig": { "access": "public" diff --git a/libs/langchain-ollama/src/chat_models.ts b/libs/langchain-ollama/src/chat_models.ts index 1eeb745f5bba..fc23966a26a4 100644 --- a/libs/langchain-ollama/src/chat_models.ts +++ b/libs/langchain-ollama/src/chat_models.ts @@ -3,7 +3,10 @@ import { UsageMetadata, type BaseMessage, } from "@langchain/core/messages"; -import { BaseLanguageModelInput } from "@langchain/core/language_models/base"; +import { + BaseLanguageModelInput, + StructuredOutputMethodOptions, +} from "@langchain/core/language_models/base"; import { CallbackManagerForLLMRun } from "@langchain/core/callbacks/manager"; import { type BaseChatModelParams, @@ -21,9 +24,20 @@ import type { Message as OllamaMessage, Tool as OllamaTool, } from "ollama"; -import { Runnable } from "@langchain/core/runnables"; +import { + Runnable, + RunnablePassthrough, + RunnableSequence, +} from "@langchain/core/runnables"; import { convertToOpenAITool } from "@langchain/core/utils/function_calling"; import { concat } from "@langchain/core/utils/stream"; +import { + JsonOutputParser, + StructuredOutputParser, +} from "@langchain/core/output_parsers"; +import { isZodSchema } from "@langchain/core/utils/types"; +import { z } from "zod"; +import { zodToJsonSchema } from "zod-to-json-schema"; import { convertOllamaMessagesToLangChain, convertToOllamaMessages, @@ -36,6 +50,8 @@ export interface ChatOllamaCallOptions extends BaseChatModelCallOptions { */ stop?: string[]; tools?: BindToolsInput[]; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + format?: string | Record; } export interface PullModelOptions { @@ -82,7 +98,8 @@ export interface ChatOllamaInput */ checkOrPullModel?: boolean; streaming?: boolean; - format?: string; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + format?: string | Record; } /** @@ -453,7 +470,8 @@ export class ChatOllama streaming?: boolean; - format?: string; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + format?: string | Record; keepAlive?: string | number; @@ -575,7 +593,7 @@ export class ChatOllama return { model: this.model, - format: this.format, + format: options?.format ?? this.format, keep_alive: this.keepAlive, options: { numa: this.numa, @@ -763,4 +781,109 @@ export class ChatOllama }), }); } + + withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: StructuredOutputMethodOptions + ): Runnable; + + withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: StructuredOutputMethodOptions + ): Runnable; + + withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: StructuredOutputMethodOptions + ): + | Runnable + | Runnable< + BaseLanguageModelInput, + { + raw: BaseMessage; + parsed: RunOutput; + } + >; + + withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: StructuredOutputMethodOptions + ): + | Runnable + | Runnable< + BaseLanguageModelInput, + { + raw: BaseMessage; + parsed: RunOutput; + } + > { + // TODO: Make this method the default in a minor bump + if (config?.method === "jsonSchema") { + const outputSchemaIsZod = isZodSchema(outputSchema); + const jsonSchema = outputSchemaIsZod + ? zodToJsonSchema(outputSchema) + : outputSchema; + const llm = this.bind({ + format: jsonSchema, + }); + const outputParser = outputSchemaIsZod + ? StructuredOutputParser.fromZodSchema(outputSchema) + : new JsonOutputParser(); + + if (!config?.includeRaw) { + return llm.pipe(outputParser) as Runnable< + BaseLanguageModelInput, + RunOutput + >; + } + + const parserAssign = RunnablePassthrough.assign({ + // eslint-disable-next-line @typescript-eslint/no-explicit-any + parsed: (input: any, config) => outputParser.invoke(input.raw, config), + }); + const parserNone = RunnablePassthrough.assign({ + parsed: () => null, + }); + const parsedWithFallback = parserAssign.withFallbacks({ + fallbacks: [parserNone], + }); + return RunnableSequence.from< + BaseLanguageModelInput, + { raw: BaseMessage; parsed: RunOutput } + >([ + { + raw: llm, + }, + parsedWithFallback, + ]); + } else { + // TODO: Fix this type in core + // eslint-disable-next-line @typescript-eslint/no-explicit-any + return super.withStructuredOutput(outputSchema, config as any); + } + } } diff --git a/libs/langchain-ollama/src/tests/chat_models-tools.int.test.ts b/libs/langchain-ollama/src/tests/chat_models_structured_output.int.test.ts similarity index 83% rename from libs/langchain-ollama/src/tests/chat_models-tools.int.test.ts rename to libs/langchain-ollama/src/tests/chat_models_structured_output.int.test.ts index 0d699060eca0..cba16e4639d5 100644 --- a/libs/langchain-ollama/src/tests/chat_models-tools.int.test.ts +++ b/libs/langchain-ollama/src/tests/chat_models_structured_output.int.test.ts @@ -89,7 +89,24 @@ test("Ollama can call withStructuredOutput", async () => { expect(result.location).not.toBe(""); }); -test("Ollama can call withStructuredOutput includeRaw", async () => { +test("Ollama can call withStructuredOutput includeRaw JSON Schema", async () => { + const model = new ChatOllama({ + model: "llama3-groq-tool-use", + maxRetries: 1, + }).withStructuredOutput(weatherTool.schema, { + name: weatherTool.name, + includeRaw: true, + method: "jsonSchema", + }); + + const result = await model.invoke(messageHistory); + expect(result).toBeDefined(); + expect(result.parsed.location).toBeDefined(); + expect(result.parsed.location).not.toBe(""); + expect((result.raw as AIMessage).tool_calls?.length).toBe(0); +}); + +test("Ollama can call withStructuredOutput includeRaw with tool calling", async () => { const model = new ChatOllama({ model: "llama3-groq-tool-use", maxRetries: 1, diff --git a/yarn.lock b/yarn.lock index 8d8124231be9..71b247416ac4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12990,15 +12990,15 @@ __metadata: eslint-plugin-prettier: ^4.2.1 jest: ^29.5.0 jest-environment-node: ^29.6.4 - ollama: ^0.5.9 + ollama: ^0.5.12 prettier: ^2.8.3 release-it: ^17.6.0 rollup: ^4.5.2 ts-jest: ^29.1.0 typescript: <5.2.0 uuid: ^10.0.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.23.0 + zod: ^3.24.1 + zod-to-json-schema: ^3.24.1 peerDependencies: "@langchain/core": ">=0.2.21 <0.4.0" languageName: unknown @@ -36216,12 +36216,12 @@ __metadata: languageName: node linkType: hard -"ollama@npm:^0.5.9": - version: 0.5.9 - resolution: "ollama@npm:0.5.9" +"ollama@npm:^0.5.12": + version: 0.5.12 + resolution: "ollama@npm:0.5.12" dependencies: whatwg-fetch: ^3.6.20 - checksum: bfaadcec6273d86fcc7c94e5e9e571a7b6b84b852b407a473f3bac7dc69b7b11815a163ae549b5318267a00f192d39696225309812319d2edc8a98a079ace475 + checksum: 0abc1151d2cfd02198829f706f8efca978c8562691e7502924166798f6a0cd7e1bf51e085d313ddf5a76507a36ffa12b48a66d4dd659b419474c2f33e3f03b44 languageName: node linkType: hard @@ -44942,6 +44942,15 @@ __metadata: languageName: node linkType: hard +"zod-to-json-schema@npm:^3.24.1": + version: 3.24.1 + resolution: "zod-to-json-schema@npm:3.24.1" + peerDependencies: + zod: ^3.24.1 + checksum: 7195563f611bc21ea7f44129b8e32780125a9bd98b2e6b8709ac98bd2645729fecd87b8aeeaa8789617ee3f38e6585bab23dd613e2a35c31c6c157908f7a1681 + languageName: node + linkType: hard + "zod@npm:3.23.8": version: 3.23.8 resolution: "zod@npm:3.23.8" From 193d1e969e121d7d397e61755deb59168d8f59a1 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Sat, 8 Feb 2025 14:46:58 -0800 Subject: [PATCH 06/70] release(ollama): 0.1.6 (#7673) --- libs/langchain-ollama/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-ollama/package.json b/libs/langchain-ollama/package.json index 84501e325cda..ef7c661bce6c 100644 --- a/libs/langchain-ollama/package.json +++ b/libs/langchain-ollama/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/ollama", - "version": "0.1.5", + "version": "0.1.6", "description": "Ollama integration for LangChain.js", "type": "module", "engines": { From bb3c2cfb604e4da4973fd1fc269b14026b159685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20=C5=BBmijewski?= Date: Mon, 10 Feb 2025 09:23:46 +0100 Subject: [PATCH 07/70] Rework tests without langgraph --- libs/langchain-community/package.json | 1 - .../src/chat_models/tests/ibm.int.test.ts | 30 +++++++------------ yarn.lock | 1 - 3 files changed, 11 insertions(+), 21 deletions(-) diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index 13172605f537..c2dbc57a618a 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -254,7 +254,6 @@ "@ibm-cloud/watsonx-ai": "*", "@lancedb/lancedb": "^0.12.0", "@langchain/core": ">=0.2.21 <0.4.0", - "@langchain/langgraph": "*", "@layerup/layerup-security": "^1.5.12", "@libsql/client": "^0.14.0", "@mendable/firecrawl-js": "^1.4.3", diff --git a/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts b/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts index e36fc8e906ac..fbaf8c4ee8db 100644 --- a/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts +++ b/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts @@ -12,8 +12,11 @@ import { LLMResult } from "@langchain/core/outputs"; import { ChatPromptTemplate } from "@langchain/core/prompts"; import { tool } from "@langchain/core/tools"; import { NewTokenIndices } from "@langchain/core/callbacks/base"; -import { createReactAgent } from "@langchain/langgraph/prebuilt"; import { ChatWatsonx } from "../ibm.js"; +import { + BaseChatModel, + BaseChatModelCallOptions, +} from "@langchain/core/language_models/chat_models"; describe("Tests for chat", () => { describe("Test ChatWatsonx invoke and generate", () => { @@ -723,24 +726,13 @@ describe("Tests for chat", () => { version: "2024-05-31", model: "mistralai/mistral-large", }); - const storage = [ - { id: 1, name: "Apple", category: "fruit" }, - { id: 2, name: "Carrot", category: "vegetable" }, - { id: 3, name: "Banana", category: "fruit" }, - ]; - const searchStorage = tool( - () => JSON.stringify(storage.map((item) => item.name)), - { - name: "searchStorage", - description: - "Can retireve items that are currently stored in my home storage", - } - ); - - const tools = [searchStorage]; - - const graph = createReactAgent({ llm: model, tools }); - expect(graph).toBeDefined(); + const testModel = ( + model: BaseChatModel + ) => { + if (model instanceof BaseChatModel) return true; + else throw new Error("Wrong model passed"); + }; + expect(testModel(model)).toBeTruthy(); }); }); diff --git a/yarn.lock b/yarn.lock index a3d718933be3..d608fc479976 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12084,7 +12084,6 @@ __metadata: "@ibm-cloud/watsonx-ai": "*" "@lancedb/lancedb": ^0.12.0 "@langchain/core": ">=0.2.21 <0.4.0" - "@langchain/langgraph": "*" "@layerup/layerup-security": ^1.5.12 "@libsql/client": ^0.14.0 "@mendable/firecrawl-js": ^1.4.3 From 850819acf20a0bcf1f1d1475fc69b911018dff4d Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 10 Feb 2025 13:59:06 -0800 Subject: [PATCH 08/70] feat(ollama): Switch Ollama default withStructuredOutput method to jsonSchema (#7681) --- libs/langchain-ollama/src/chat_models.ts | 3 +-- .../src/tests/chat_models_structured_output.int.test.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/langchain-ollama/src/chat_models.ts b/libs/langchain-ollama/src/chat_models.ts index fc23966a26a4..dc2b2f2a7761 100644 --- a/libs/langchain-ollama/src/chat_models.ts +++ b/libs/langchain-ollama/src/chat_models.ts @@ -841,8 +841,7 @@ export class ChatOllama parsed: RunOutput; } > { - // TODO: Make this method the default in a minor bump - if (config?.method === "jsonSchema") { + if (config?.method === undefined || config?.method === "jsonSchema") { const outputSchemaIsZod = isZodSchema(outputSchema); const jsonSchema = outputSchemaIsZod ? zodToJsonSchema(outputSchema) diff --git a/libs/langchain-ollama/src/tests/chat_models_structured_output.int.test.ts b/libs/langchain-ollama/src/tests/chat_models_structured_output.int.test.ts index cba16e4639d5..70d4c3ee363f 100644 --- a/libs/langchain-ollama/src/tests/chat_models_structured_output.int.test.ts +++ b/libs/langchain-ollama/src/tests/chat_models_structured_output.int.test.ts @@ -96,7 +96,6 @@ test("Ollama can call withStructuredOutput includeRaw JSON Schema", async () => }).withStructuredOutput(weatherTool.schema, { name: weatherTool.name, includeRaw: true, - method: "jsonSchema", }); const result = await model.invoke(messageHistory); @@ -113,6 +112,7 @@ test("Ollama can call withStructuredOutput includeRaw with tool calling", async }).withStructuredOutput(weatherTool.schema, { name: weatherTool.name, includeRaw: true, + method: "functionCalling", }); const result = await model.invoke(messageHistory); From b81807a784fbd1d5c990c8e9fa5cb48cda212c03 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 10 Feb 2025 14:01:07 -0800 Subject: [PATCH 09/70] release(ollama): 0.2.0 (#7682) --- libs/langchain-ollama/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-ollama/package.json b/libs/langchain-ollama/package.json index ef7c661bce6c..57ef26a02ac1 100644 --- a/libs/langchain-ollama/package.json +++ b/libs/langchain-ollama/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/ollama", - "version": "0.1.6", + "version": "0.2.0", "description": "Ollama integration for LangChain.js", "type": "module", "engines": { From b33a19feb616246cde4def374eaff75af7cdd57f Mon Sep 17 00:00:00 2001 From: Yohan Lasorsa Date: Tue, 11 Feb 2025 22:16:26 +0100 Subject: [PATCH 10/70] chore(openai): update azure user agent (#7543) Co-authored-by: jacoblee93 --- libs/langchain-openai/src/azure/chat_models.ts | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/libs/langchain-openai/src/azure/chat_models.ts b/libs/langchain-openai/src/azure/chat_models.ts index 8ce4ea5bd23e..691781af78b4 100644 --- a/libs/langchain-openai/src/azure/chat_models.ts +++ b/libs/langchain-openai/src/azure/chat_models.ts @@ -3,7 +3,7 @@ import { LangSmithParams, type BaseChatModelParams, } from "@langchain/core/language_models/chat_models"; -import { getEnvironmentVariable } from "@langchain/core/utils/env"; +import { getEnv, getEnvironmentVariable } from "@langchain/core/utils/env"; import { BaseLanguageModelInput } from "@langchain/core/language_models/base"; import { BaseMessage } from "@langchain/core/messages"; import { Runnable } from "@langchain/core/runnables"; @@ -570,11 +570,17 @@ export class AzureChatOpenAI extends ChatOpenAI { delete params.baseURL; } + let env = getEnv(); + if (env === "node" || env === "deno") { + env = `(${env}/${process.version}; ${process.platform}; ${process.arch})`; + } + + const specifiedUserAgent = params.defaultHeaders?.["User-Agent"]; params.defaultHeaders = { ...params.defaultHeaders, - "User-Agent": params.defaultHeaders?.["User-Agent"] - ? `${params.defaultHeaders["User-Agent"]}: langchainjs-azure-openai-v2` - : `langchainjs-azure-openai-v2`, + "User-Agent": `langchainjs-azure-openai/2.0.0 (${env})${ + specifiedUserAgent ? ` ${specifiedUserAgent}` : "" + }`, }; this.client = new AzureOpenAIClient({ From 54499254b63dddc13515e15aa8e556217bf775e2 Mon Sep 17 00:00:00 2001 From: FilipZmijewski Date: Tue, 11 Feb 2025 22:17:11 +0100 Subject: [PATCH 11/70] fix(community): Fix interface of chat deployment IBM and add test for this case (#7666) --- .../src/chat_models/ibm.ts | 4 +++- .../src/chat_models/tests/ibm.int.test.ts | 23 +++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/libs/langchain-community/src/chat_models/ibm.ts b/libs/langchain-community/src/chat_models/ibm.ts index 7db2c9cec1c6..d8d1196343bf 100644 --- a/libs/langchain-community/src/chat_models/ibm.ts +++ b/libs/langchain-community/src/chat_models/ibm.ts @@ -102,9 +102,11 @@ export interface WatsonxCallOptionsChat } export interface WatsonxCallOptionsDeployedChat - extends WatsonxCallDeployedParams, + extends Omit, + WatsonxCallDeployedParams, WatsonxChatBasicOptions { promptIndex?: number; + tool_choice?: TextChatParameterTools | string | "auto" | "any"; } type ChatWatsonxToolType = BindToolsInput | TextChatParameterTools; diff --git a/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts b/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts index 1cdc836ba9c8..59a646aaa88a 100644 --- a/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts +++ b/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts @@ -12,6 +12,10 @@ import { LLMResult } from "@langchain/core/outputs"; import { ChatPromptTemplate } from "@langchain/core/prompts"; import { tool } from "@langchain/core/tools"; import { NewTokenIndices } from "@langchain/core/callbacks/base"; +import { + BaseChatModel, + BaseChatModelCallOptions, +} from "@langchain/core/language_models/chat_models"; import { ChatWatsonx } from "../ibm.js"; describe("Tests for chat", () => { @@ -713,6 +717,24 @@ describe("Tests for chat", () => { expect(res.tool_calls[0].args.a).not.toBe(res.tool_calls[1].args.a); expect(res.tool_calls[0].args.b).not.toBe(res.tool_calls[1].args.b); }); + test("React agent creation", async () => { + const model = new ChatWatsonx({ + projectId: process.env.WATSONX_AI_PROJECT_ID, + serviceUrl: process.env.WATSONX_AI_SERVICE_URL as string, + watsonxAIApikey: process.env.WATSONX_AI_APIKEY, + watsonxAIAuthType: "iam", + version: "2024-05-31", + model: "mistralai/mistral-large", + }); + const testModel = ( + model: BaseChatModel + ) => { + // eslint-disable-next-line no-instanceof/no-instanceof + if (model instanceof BaseChatModel) return true; + else throw new Error("Wrong model passed"); + }; + expect(testModel(model)).toBeTruthy(); + }); }); describe("Test withStructuredOutput usage", () => { @@ -762,6 +784,7 @@ describe("Tests for chat", () => { for await (const chunk of res) { expect(typeof chunk).toBe("object"); object = chunk; + console.log(chunk); } expect("setup" in object).toBe(true); expect("punchline" in object).toBe(true); From 25ea68c6111538a8445de15c7dc24d4111dfc39e Mon Sep 17 00:00:00 2001 From: Yash Sharma <97662335+yashsharma999@users.noreply.github.com> Date: Wed, 12 Feb 2025 02:56:26 +0530 Subject: [PATCH 12/70] docs: Update message_history.ipynb (#7677) --- docs/core_docs/docs/how_to/message_history.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core_docs/docs/how_to/message_history.ipynb b/docs/core_docs/docs/how_to/message_history.ipynb index 67640b10c11f..48d5fc260695 100644 --- a/docs/core_docs/docs/how_to/message_history.ipynb +++ b/docs/core_docs/docs/how_to/message_history.ipynb @@ -202,7 +202,7 @@ "]\n", "const output = await app.invoke({ messages: input }, config)\n", "// The output contains all messages in the state.\n", - "// This will long the last message in the conversation.\n", + "// This will log the last message in the conversation.\n", "console.log(output.messages[output.messages.length - 1]);" ] }, @@ -583,4 +583,4 @@ }, "nbformat": 4, "nbformat_minor": 5 -} \ No newline at end of file +} From 6bb5db84aaf0069f17e8d1037059e7f00d875aa4 Mon Sep 17 00:00:00 2001 From: zachary-nguyen <43250829+zachary-nguyen@users.noreply.github.com> Date: Tue, 11 Feb 2025 16:40:39 -0500 Subject: [PATCH 13/70] fix(experimental): openai assistant attachments (#7664) --- langchain/src/experimental/openai_assistant/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/langchain/src/experimental/openai_assistant/index.ts b/langchain/src/experimental/openai_assistant/index.ts index 57bd7574d768..6a1bf5c51e2a 100644 --- a/langchain/src/experimental/openai_assistant/index.ts +++ b/langchain/src/experimental/openai_assistant/index.ts @@ -115,7 +115,7 @@ export class OpenAIAssistantRunnable< { role: "user", content: input.content, - file_ids: input.fileIds, + attachments: input.attachments, metadata: input.messagesMetadata, }, ], @@ -129,7 +129,7 @@ export class OpenAIAssistantRunnable< await this.client.beta.threads.messages.create(input.threadId, { content: input.content, role: "user", - file_ids: input.file_ids, + attachments: input.attachments, metadata: input.messagesMetadata, // eslint-disable-next-line @typescript-eslint/no-explicit-any } as any); From ed298b2abbe9f7de8fe4ee7269512b2f2cee2916 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20F=2E=20Romaniello?= Date: Tue, 11 Feb 2025 18:52:45 -0300 Subject: [PATCH 14/70] fix(community): hide console errors on RecursiveUrlLoader (#7679) Co-authored-by: jacoblee93 --- .../tests/recursive_url.int.test.ts | 22 ++++++++++++++++++- .../src/document_loaders/web/recursive_url.ts | 9 +++++--- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/libs/langchain-community/src/document_loaders/tests/recursive_url.int.test.ts b/libs/langchain-community/src/document_loaders/tests/recursive_url.int.test.ts index b1bf2cbbe271..e7cbf283e455 100644 --- a/libs/langchain-community/src/document_loaders/tests/recursive_url.int.test.ts +++ b/libs/langchain-community/src/document_loaders/tests/recursive_url.int.test.ts @@ -1,10 +1,18 @@ /* eslint-disable no-process-env */ /* eslint-disable @typescript-eslint/no-non-null-assertion */ -import { test } from "@jest/globals"; +import { test, jest } from "@jest/globals"; import { compile } from "html-to-text"; import { RecursiveUrlLoader } from "../web/recursive_url.js"; describe("RecursiveUrlLoader", () => { + beforeEach(() => { + jest.spyOn(console, "error"); + }); + + afterEach(() => { + jest.restoreAllMocks(); + }); + test("loading valid url", async () => { const url = "https://js.langchain.com/docs/introduction"; @@ -84,4 +92,16 @@ describe("RecursiveUrlLoader", () => { false ); }); + + test("load docs from langsmith without reporting errors", async () => { + const url = "https://docs.smith.langchain.com/"; + const loader = new RecursiveUrlLoader(url, { + maxDepth: 5, + timeout: 5000, + }); + + const docs = await loader.load(); + expect(docs.length).toBeGreaterThan(1); + expect(console.error).not.toHaveBeenCalled(); + }); }); diff --git a/libs/langchain-community/src/document_loaders/web/recursive_url.ts b/libs/langchain-community/src/document_loaders/web/recursive_url.ts index a3c1fd0ebb5d..ac6d004fc5e4 100644 --- a/libs/langchain-community/src/document_loaders/web/recursive_url.ts +++ b/libs/langchain-community/src/document_loaders/web/recursive_url.ts @@ -1,4 +1,4 @@ -import { JSDOM } from "jsdom"; +import { JSDOM, VirtualConsole } from "jsdom"; import { Document } from "@langchain/core/documents"; import { AsyncCaller } from "@langchain/core/utils/async_caller"; import { @@ -6,6 +6,9 @@ import { DocumentLoader, } from "@langchain/core/document_loaders/base"; +const virtualConsole = new VirtualConsole(); +virtualConsole.on("error", () => {}); + export interface RecursiveUrlLoaderOptions { excludeDirs?: string[]; extractor?: (text: string) => string; @@ -62,7 +65,7 @@ export class RecursiveUrlLoader private getChildLinks(html: string, baseUrl: string): Array { const allLinks = Array.from( - new JSDOM(html).window.document.querySelectorAll("a") + new JSDOM(html, { virtualConsole }).window.document.querySelectorAll("a") ).map((a) => a.href); const absolutePaths = []; // eslint-disable-next-line no-script-url @@ -117,7 +120,7 @@ export class RecursiveUrlLoader private extractMetadata(rawHtml: string, url: string) { // eslint-disable-next-line @typescript-eslint/no-explicit-any const metadata: Record = { source: url }; - const { document } = new JSDOM(rawHtml).window; + const { document } = new JSDOM(rawHtml, { virtualConsole }).window; const title = document.getElementsByTagName("title")[0]; if (title) { From 037dd918a85c83ea1d7c288c3f48e5dbe5047f5f Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Tue, 11 Feb 2025 14:16:31 -0800 Subject: [PATCH 15/70] release(community): 0.3.30 (#7684) --- libs/langchain-community/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index c2dbc57a618a..78066ef946b6 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/community", - "version": "0.3.29", + "version": "0.3.30", "description": "Third-party integrations for LangChain.js", "type": "module", "engines": { From 92edca1fb2b7faa5174d8ef2cb42a0513b994c15 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Tue, 11 Feb 2025 14:18:03 -0800 Subject: [PATCH 16/70] feat(openai): Properly pass through max_completion_tokens (#7683) --- libs/langchain-openai/src/chat_models.ts | 15 +++++++++++--- .../src/tests/chat_models.int.test.ts | 20 +++++++++++++++++++ libs/langchain-openai/src/types.ts | 7 +++++++ 3 files changed, 39 insertions(+), 3 deletions(-) diff --git a/libs/langchain-openai/src/chat_models.ts b/libs/langchain-openai/src/chat_models.ts index 2cb3d9ba2034..c7d4ed858446 100644 --- a/libs/langchain-openai/src/chat_models.ts +++ b/libs/langchain-openai/src/chat_models.ts @@ -153,7 +153,7 @@ export function _convertMessagesToOpenAIParams( // TODO: Function messages do not support array content, fix cast return messages.flatMap((message) => { let role = messageToOpenAIRole(message); - if (role === "system" && model?.startsWith("o1")) { + if (role === "system" && isReasoningModel(model)) { role = "developer"; } // eslint-disable-next-line @typescript-eslint/no-explicit-any @@ -224,6 +224,10 @@ function _convertChatOpenAIToolTypeToOpenAITool( return _convertToOpenAITool(tool, fields); } +function isReasoningModel(model?: string) { + return model?.startsWith("o1") || model?.startsWith("o3"); +} + // TODO: Use the base structured output options param in next breaking release. export interface ChatOpenAIStructuredOutputMethodOptions< IncludeRaw extends boolean @@ -1027,7 +1031,6 @@ export class ChatOpenAI< this.topP = fields?.topP ?? this.topP; this.frequencyPenalty = fields?.frequencyPenalty ?? this.frequencyPenalty; this.presencePenalty = fields?.presencePenalty ?? this.presencePenalty; - this.maxTokens = fields?.maxTokens; this.logprobs = fields?.logprobs; this.topLogprobs = fields?.topLogprobs; this.n = fields?.n ?? this.n; @@ -1039,6 +1042,7 @@ export class ChatOpenAI< this.audio = fields?.audio; this.modalities = fields?.modalities; this.reasoningEffort = fields?.reasoningEffort; + this.maxTokens = fields?.maxCompletionTokens ?? fields?.maxTokens; if (this.model === "o1") { this.disableStreaming = true; @@ -1151,7 +1155,6 @@ export class ChatOpenAI< top_p: this.topP, frequency_penalty: this.frequencyPenalty, presence_penalty: this.presencePenalty, - max_tokens: this.maxTokens === -1 ? undefined : this.maxTokens, logprobs: this.logprobs, top_logprobs: this.topLogprobs, n: this.n, @@ -1187,6 +1190,12 @@ export class ChatOpenAI< if (reasoningEffort !== undefined) { params.reasoning_effort = reasoningEffort; } + if (isReasoningModel(params.model)) { + params.max_completion_tokens = + this.maxTokens === -1 ? undefined : this.maxTokens; + } else { + params.max_tokens = this.maxTokens === -1 ? undefined : this.maxTokens; + } return params; } diff --git a/libs/langchain-openai/src/tests/chat_models.int.test.ts b/libs/langchain-openai/src/tests/chat_models.int.test.ts index 025adac32e39..caab98ea84e6 100644 --- a/libs/langchain-openai/src/tests/chat_models.int.test.ts +++ b/libs/langchain-openai/src/tests/chat_models.int.test.ts @@ -1233,6 +1233,26 @@ test("Allows developer messages with o1", async () => { expect(res.content).toEqual("testing"); }); +test("Works with maxCompletionTokens with o3", async () => { + const model = new ChatOpenAI({ + model: "o3-mini", + reasoningEffort: "low", + maxCompletionTokens: 100, + }); + const res = await model.invoke([ + { + role: "system", + content: `Always respond only with the word "testing"`, + }, + { + role: "user", + content: "hi", + }, + ]); + console.log(res); + expect(res.content).toEqual("testing"); +}); + test.skip("Allow overriding", async () => { class ChatDeepSeek extends ChatOpenAI { protected override _convertOpenAIDeltaToBaseMessageChunk( diff --git a/libs/langchain-openai/src/types.ts b/libs/langchain-openai/src/types.ts index 27f3d108a13a..e41631885980 100644 --- a/libs/langchain-openai/src/types.ts +++ b/libs/langchain-openai/src/types.ts @@ -23,6 +23,13 @@ export declare interface OpenAIBaseInput { */ maxTokens?: number; + /** + * Maximum number of tokens to generate in the completion. -1 returns as many + * tokens as possible given the prompt and the model's maximum context size. + * Alias for `maxTokens` for reasoning models. + */ + maxCompletionTokens?: number; + /** Total probability mass of tokens to consider at each step */ topP: number; From 719e081213db8cd9bf8ebd9f3315f7cf1b182f0c Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Tue, 11 Feb 2025 14:22:16 -0800 Subject: [PATCH 17/70] release(openai): 0.4.4 (#7685) --- libs/langchain-openai/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-openai/package.json b/libs/langchain-openai/package.json index ed2a5e99e8e3..794081ea0611 100644 --- a/libs/langchain-openai/package.json +++ b/libs/langchain-openai/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/openai", - "version": "0.4.3", + "version": "0.4.4", "description": "OpenAI integrations for LangChain.js", "type": "module", "engines": { From c3a153feee48de34abac13cab210105ffd5e3075 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Wed, 12 Feb 2025 10:50:02 -0800 Subject: [PATCH 18/70] feat(core): Expose types/stream as an entrypoint (#7686) --- langchain-core/.gitignore | 4 ++++ langchain-core/langchain.config.js | 1 + langchain-core/package.json | 13 +++++++++++++ langchain-core/src/runnables/types.ts | 2 +- langchain-core/src/types/_internal.ts | 5 +++++ langchain-core/src/types/stream.ts | 8 ++++++-- langchain-core/src/utils/stream.ts | 5 +++-- 7 files changed, 33 insertions(+), 5 deletions(-) create mode 100644 langchain-core/src/types/_internal.ts diff --git a/langchain-core/.gitignore b/langchain-core/.gitignore index 6876afce9643..53b5925331ff 100644 --- a/langchain-core/.gitignore +++ b/langchain-core/.gitignore @@ -178,6 +178,10 @@ tracers/tracer_langchain_v1.cjs tracers/tracer_langchain_v1.js tracers/tracer_langchain_v1.d.ts tracers/tracer_langchain_v1.d.cts +types/stream.cjs +types/stream.js +types/stream.d.ts +types/stream.d.cts utils/async_caller.cjs utils/async_caller.js utils/async_caller.d.ts diff --git a/langchain-core/langchain.config.js b/langchain-core/langchain.config.js index d51e73e0b122..c748cc7afdd6 100644 --- a/langchain-core/langchain.config.js +++ b/langchain-core/langchain.config.js @@ -57,6 +57,7 @@ export const config = { "tracers/run_collector": "tracers/run_collector", "tracers/tracer_langchain": "tracers/tracer_langchain", "tracers/tracer_langchain_v1": "tracers/tracer_langchain_v1", + "types/stream": "types/stream", "utils/async_caller": "utils/async_caller", "utils/chunk_array": "utils/chunk_array", "utils/env": "utils/env", diff --git a/langchain-core/package.json b/langchain-core/package.json index 0f72c69e9753..f888328935f8 100644 --- a/langchain-core/package.json +++ b/langchain-core/package.json @@ -494,6 +494,15 @@ "import": "./tracers/tracer_langchain_v1.js", "require": "./tracers/tracer_langchain_v1.cjs" }, + "./types/stream": { + "types": { + "import": "./types/stream.d.ts", + "require": "./types/stream.d.cts", + "default": "./types/stream.d.ts" + }, + "import": "./types/stream.js", + "require": "./types/stream.cjs" + }, "./utils/async_caller": { "types": { "import": "./utils/async_caller.d.ts", @@ -804,6 +813,10 @@ "tracers/tracer_langchain_v1.js", "tracers/tracer_langchain_v1.d.ts", "tracers/tracer_langchain_v1.d.cts", + "types/stream.cjs", + "types/stream.js", + "types/stream.d.ts", + "types/stream.d.cts", "utils/async_caller.cjs", "utils/async_caller.js", "utils/async_caller.d.ts", diff --git a/langchain-core/src/runnables/types.ts b/langchain-core/src/runnables/types.ts index f06e94fa1254..b3775de094a4 100644 --- a/langchain-core/src/runnables/types.ts +++ b/langchain-core/src/runnables/types.ts @@ -1,7 +1,7 @@ import type { z } from "zod"; import type { SerializableInterface } from "../load/serializable.js"; import type { BaseCallbackConfig } from "../callbacks/manager.js"; -import type { IterableReadableStreamInterface } from "../types/stream.js"; +import type { IterableReadableStreamInterface } from "../types/_internal.js"; export type RunnableBatchOptions = { /** @deprecated Pass in via the standard runnable config object instead */ diff --git a/langchain-core/src/types/_internal.ts b/langchain-core/src/types/_internal.ts new file mode 100644 index 000000000000..ae03b69b78bb --- /dev/null +++ b/langchain-core/src/types/_internal.ts @@ -0,0 +1,5 @@ +// Make this a type to override ReadableStream's async iterator type in case +// the popular web-streams-polyfill is imported - the supplied types +// in that case don't quite match. +export type IterableReadableStreamInterface = ReadableStream & + AsyncIterable; diff --git a/langchain-core/src/types/stream.ts b/langchain-core/src/types/stream.ts index ae03b69b78bb..cd1151008a3d 100644 --- a/langchain-core/src/types/stream.ts +++ b/langchain-core/src/types/stream.ts @@ -1,5 +1,9 @@ // Make this a type to override ReadableStream's async iterator type in case // the popular web-streams-polyfill is imported - the supplied types // in that case don't quite match. -export type IterableReadableStreamInterface = ReadableStream & - AsyncIterable; +export { type IterableReadableStreamInterface } from "./_internal.js"; + +export { + type StreamEvent, + type StreamEventData, +} from "../tracers/event_stream.js"; diff --git a/langchain-core/src/utils/stream.ts b/langchain-core/src/utils/stream.ts index cd3e592806be..4db1032a959a 100644 --- a/langchain-core/src/utils/stream.ts +++ b/langchain-core/src/utils/stream.ts @@ -1,10 +1,11 @@ import { pickRunnableConfigKeys } from "../runnables/config.js"; import { AsyncLocalStorageProviderSingleton } from "../singletons/index.js"; -import type { IterableReadableStreamInterface } from "../types/stream.js"; +import type { IterableReadableStreamInterface } from "../types/_internal.js"; import { raceWithSignal } from "./signal.js"; // Re-exported for backwards compatibility -// Do NOT import this type from this file inside the project. Instead, always import from `types/stream.js` +// Do NOT import this type from this file inside the project. Instead, always import from `types/_internal.js` +// when using internally export type { IterableReadableStreamInterface }; /* From a0f1dc9a1c41c743f379f49b452ffc5dd2e750d5 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Wed, 12 Feb 2025 10:53:02 -0800 Subject: [PATCH 19/70] release(core): 0.3.40 (#7687) --- langchain-core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain-core/package.json b/langchain-core/package.json index f888328935f8..e8fd553fbfe0 100644 --- a/langchain-core/package.json +++ b/langchain-core/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/core", - "version": "0.3.39", + "version": "0.3.40", "description": "Core LangChain.js abstractions and schemas", "type": "module", "engines": { From e6d053f30401ef9f968d252eb24e027263d5cbe1 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 17 Feb 2025 17:13:38 -0800 Subject: [PATCH 20/70] feat(langchain): Allow model providers prefixed by colon in initChatModel (#7712) --- .../src/models/chat/configurable/basic.ts | 10 +++++---- .../chat_models/tests/universal.int.test.ts | 9 ++++++++ langchain/src/chat_models/universal.ts | 21 +++++++++++++------ 3 files changed, 30 insertions(+), 10 deletions(-) diff --git a/examples/src/models/chat/configurable/basic.ts b/examples/src/models/chat/configurable/basic.ts index b1c2de344625..b130633d63e9 100644 --- a/examples/src/models/chat/configurable/basic.ts +++ b/examples/src/models/chat/configurable/basic.ts @@ -5,14 +5,16 @@ const gpt4o = await initChatModel("gpt-4o", { modelProvider: "openai", temperature: 0, }); + +// You can also specify the model provider in the model name like this in +// langchain>=0.3.16: + // Returns a @langchain/anthropic ChatAnthropic instance. -const claudeOpus = await initChatModel("claude-3-opus-20240229", { - modelProvider: "anthropic", +const claudeOpus = await initChatModel("anthropic:claude-3-opus-20240229", { temperature: 0, }); // Returns a @langchain/google-vertexai ChatVertexAI instance. -const gemini15 = await initChatModel("gemini-1.5-pro", { - modelProvider: "google-vertexai", +const gemini15 = await initChatModel("google-vertexai:gemini-1.5-pro", { temperature: 0, }); diff --git a/langchain/src/chat_models/tests/universal.int.test.ts b/langchain/src/chat_models/tests/universal.int.test.ts index a4a6857e7126..dc2c4cfb97dc 100644 --- a/langchain/src/chat_models/tests/universal.int.test.ts +++ b/langchain/src/chat_models/tests/universal.int.test.ts @@ -61,6 +61,15 @@ test("Initialize non-configurable models", async () => { expect(geminiResult.content.length).toBeGreaterThan(0); }); +test("Works with model provider in model name", async () => { + const gpt4 = await initChatModel("openai:gpt-4o-mini", { + temperature: 0.25, + apiKey: openAIApiKey, + }); + const result = await gpt4.invoke("what's your name"); + expect(result).toBeDefined(); +}); + test("Create a partially configurable model with no default model", async () => { const configurableModel = await initChatModel(undefined, { temperature: 0, diff --git a/langchain/src/chat_models/universal.ts b/langchain/src/chat_models/universal.ts index 679fa427ea31..a4341e3b2d95 100644 --- a/langchain/src/chat_models/universal.ts +++ b/langchain/src/chat_models/universal.ts @@ -42,7 +42,6 @@ const _SUPPORTED_PROVIDERS = [ "google-vertexai", "google-vertexai-web", "google-genai", - "google-genai", "ollama", "together", "fireworks", @@ -601,6 +600,7 @@ export async function initChatModel< * @template {extends ConfigurableChatModelCallOptions = ConfigurableChatModelCallOptions} CallOptions - Call options for the model. * * @param {string | ChatModelProvider} [model] - The name of the model, e.g. "gpt-4", "claude-3-opus-20240229". + * Can be prefixed with the model provider, e.g. "openai:gpt-4", "anthropic:claude-3-opus-20240229". * @param {Object} [fields] - Additional configuration options. * @param {string} [fields.modelProvider] - The model provider. Supported values include: * - openai (@langchain/openai) @@ -632,14 +632,12 @@ export async function initChatModel< * ```typescript * import { initChatModel } from "langchain/chat_models/universal"; * - * const gpt4 = await initChatModel("gpt-4", { - * modelProvider: "openai", + * const gpt4 = await initChatModel("openai:gpt-4", { * temperature: 0.25, * }); * const gpt4Result = await gpt4.invoke("what's your name"); * - * const claude = await initChatModel("claude-3-opus-20240229", { - * modelProvider: "anthropic", + * const claude = await initChatModel("anthropic:claude-3-opus-20240229", { * temperature: 0.25, * }); * const claudeResult = await claude.invoke("what's your name"); @@ -810,10 +808,20 @@ export async function initChatModel< configPrefix?: string; } ): Promise<_ConfigurableModel> { - const { configurableFields, configPrefix, modelProvider, ...params } = { + // eslint-disable-next-line prefer-const + let { configurableFields, configPrefix, modelProvider, ...params } = { configPrefix: "", ...(fields ?? {}), }; + if (modelProvider === undefined && model?.includes(":")) { + const modelComponents = model.split(":", 1); + if ( + _SUPPORTED_PROVIDERS.includes(modelComponents[0] as ChatModelProvider) + ) { + // eslint-disable-next-line no-param-reassign + [modelProvider, model] = modelComponents; + } + } let configurableFieldsCopy = Array.isArray(configurableFields) ? [...configurableFields] : configurableFields; @@ -848,6 +856,7 @@ export async function initChatModel< if (modelProvider) { paramsCopy.modelProvider = modelProvider; } + console.log("paramsCopy", paramsCopy); return new _ConfigurableModel({ defaultConfig: paramsCopy, configPrefix, From fbf20afa73a5c941b6a0b51294f93c419054f3f9 Mon Sep 17 00:00:00 2001 From: jacoblee93 Date: Mon, 17 Feb 2025 17:20:29 -0800 Subject: [PATCH 21/70] Release 0.3.16 --- langchain/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/package.json b/langchain/package.json index f7a81958c592..401249bfe9ad 100644 --- a/langchain/package.json +++ b/langchain/package.json @@ -1,6 +1,6 @@ { "name": "langchain", - "version": "0.3.15", + "version": "0.3.16", "description": "Typescript bindings for langchain", "type": "module", "engines": { From fff61263e71673e58896eb60bdb369f36c773ae9 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 17 Feb 2025 17:26:53 -0800 Subject: [PATCH 22/70] fix(langchain): Remove stray log (#7714) --- examples/src/models/chat/configurable/basic.ts | 2 +- langchain/src/chat_models/universal.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/src/models/chat/configurable/basic.ts b/examples/src/models/chat/configurable/basic.ts index b130633d63e9..fb88ef42290d 100644 --- a/examples/src/models/chat/configurable/basic.ts +++ b/examples/src/models/chat/configurable/basic.ts @@ -7,7 +7,7 @@ const gpt4o = await initChatModel("gpt-4o", { }); // You can also specify the model provider in the model name like this in -// langchain>=0.3.16: +// langchain>=0.3.17: // Returns a @langchain/anthropic ChatAnthropic instance. const claudeOpus = await initChatModel("anthropic:claude-3-opus-20240229", { diff --git a/langchain/src/chat_models/universal.ts b/langchain/src/chat_models/universal.ts index a4341e3b2d95..d4e7c861f86a 100644 --- a/langchain/src/chat_models/universal.ts +++ b/langchain/src/chat_models/universal.ts @@ -856,7 +856,6 @@ export async function initChatModel< if (modelProvider) { paramsCopy.modelProvider = modelProvider; } - console.log("paramsCopy", paramsCopy); return new _ConfigurableModel({ defaultConfig: paramsCopy, configPrefix, From 47aade81210a0b65f126aac10cd69d95223ecdac Mon Sep 17 00:00:00 2001 From: jacoblee93 Date: Mon, 17 Feb 2025 17:28:46 -0800 Subject: [PATCH 23/70] Release 0.3.17 --- langchain/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/package.json b/langchain/package.json index 401249bfe9ad..5e8b6b161d2e 100644 --- a/langchain/package.json +++ b/langchain/package.json @@ -1,6 +1,6 @@ { "name": "langchain", - "version": "0.3.16", + "version": "0.3.17", "description": "Typescript bindings for langchain", "type": "module", "engines": { From 92db8a77706cb4e2586241876130e1a709f9032c Mon Sep 17 00:00:00 2001 From: toqeer-hussain <63150363+toqeer-hussain@users.noreply.github.com> Date: Tue, 18 Feb 2025 07:17:26 +0500 Subject: [PATCH 24/70] docs: Fix the broken link (#7699) --- docs/core_docs/docs/how_to/sequence.ipynb | 4 ++-- docs/core_docs/docs/tutorials/rag.ipynb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/core_docs/docs/how_to/sequence.ipynb b/docs/core_docs/docs/how_to/sequence.ipynb index 1d5fc1a6755f..04e779124a0c 100644 --- a/docs/core_docs/docs/how_to/sequence.ipynb +++ b/docs/core_docs/docs/how_to/sequence.ipynb @@ -36,7 +36,7 @@ "\n", "## The pipe method\n", "\n", - "To show off how this works, let's go through an example. We'll walk through a common pattern in LangChain: using a [prompt template](/docs/concepts/prompt_templates) to format input into a [chat model](/docs/concepts/chat_models), and finally converting the chat message output into a string with an [output parser](/docs/concepts/output_parsers.\n", + "To show off how this works, let's go through an example. We'll walk through a common pattern in LangChain: using a [prompt template](/docs/concepts/prompt_templates) to format input into a [chat model](/docs/concepts/chat_models), and finally converting the chat message output into a string with an [output parser](/docs/concepts/output_parsers).\n", "\n", "```{=mdx}\n", "import ChatModelTabs from \"@theme/ChatModelTabs\";\n", @@ -249,4 +249,4 @@ }, "nbformat": 4, "nbformat_minor": 2 -} \ No newline at end of file +} diff --git a/docs/core_docs/docs/tutorials/rag.ipynb b/docs/core_docs/docs/tutorials/rag.ipynb index 7d9472d9c00c..12f67294427a 100644 --- a/docs/core_docs/docs/tutorials/rag.ipynb +++ b/docs/core_docs/docs/tutorials/rag.ipynb @@ -372,7 +372,7 @@ "\n", "- [Docs](/docs/concepts/document_loaders): Detailed documentation on how to use\n", "- [Integrations](/docs/integrations/document_loaders/)\n", - "- [Interface](https:/api.js.langchain.com/classes/langchain.document_loaders_base.BaseDocumentLoader.html): API reference for the base interface.\n", + "- [Interface](https://api.js.langchain.com/classes/langchain.document_loaders_base.BaseDocumentLoader.html): API reference for the base interface.\n", "\n", "### Splitting documents\n", "\n", From e1bd39cbeb100674f3f1727631ad2f29dd02bb02 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 17 Feb 2025 18:19:13 -0800 Subject: [PATCH 25/70] fix(langchain): Respect split model name for initChatModel (#7716) --- examples/src/models/chat/configurable/basic.ts | 2 +- .../src/chat_models/tests/universal.int.test.ts | 12 +++++++++--- langchain/src/chat_models/universal.ts | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/examples/src/models/chat/configurable/basic.ts b/examples/src/models/chat/configurable/basic.ts index fb88ef42290d..ccbd241bddd2 100644 --- a/examples/src/models/chat/configurable/basic.ts +++ b/examples/src/models/chat/configurable/basic.ts @@ -7,7 +7,7 @@ const gpt4o = await initChatModel("gpt-4o", { }); // You can also specify the model provider in the model name like this in -// langchain>=0.3.17: +// langchain>=0.3.18: // Returns a @langchain/anthropic ChatAnthropic instance. const claudeOpus = await initChatModel("anthropic:claude-3-opus-20240229", { diff --git a/langchain/src/chat_models/tests/universal.int.test.ts b/langchain/src/chat_models/tests/universal.int.test.ts index dc2c4cfb97dc..5f2eb1a71b07 100644 --- a/langchain/src/chat_models/tests/universal.int.test.ts +++ b/langchain/src/chat_models/tests/universal.int.test.ts @@ -62,12 +62,18 @@ test("Initialize non-configurable models", async () => { }); test("Works with model provider in model name", async () => { - const gpt4 = await initChatModel("openai:gpt-4o-mini", { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let error: any; + const o3Mini = await initChatModel("openai:o3-mini", { temperature: 0.25, apiKey: openAIApiKey, }); - const result = await gpt4.invoke("what's your name"); - expect(result).toBeDefined(); + try { + await o3Mini.invoke("what's your name"); + } catch (e) { + error = e; + } + expect(error.message).toContain("temperature"); }); test("Create a partially configurable model with no default model", async () => { diff --git a/langchain/src/chat_models/universal.ts b/langchain/src/chat_models/universal.ts index d4e7c861f86a..6b74bb8fb295 100644 --- a/langchain/src/chat_models/universal.ts +++ b/langchain/src/chat_models/universal.ts @@ -814,7 +814,7 @@ export async function initChatModel< ...(fields ?? {}), }; if (modelProvider === undefined && model?.includes(":")) { - const modelComponents = model.split(":", 1); + const modelComponents = model.split(":", 2); if ( _SUPPORTED_PROVIDERS.includes(modelComponents[0] as ChatModelProvider) ) { From c05b77ce76ebeafd98eb10642cb344ab3a3266b9 Mon Sep 17 00:00:00 2001 From: Vedant Mishra <122669445+vedantmishra69@users.noreply.github.com> Date: Tue, 18 Feb 2025 08:00:10 +0530 Subject: [PATCH 26/70] fix: typo in the chatbot tutorial (#7693) --- docs/core_docs/docs/tutorials/chatbot.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core_docs/docs/tutorials/chatbot.ipynb b/docs/core_docs/docs/tutorials/chatbot.ipynb index 29d8878c2ed6..82d854a0bad8 100644 --- a/docs/core_docs/docs/tutorials/chatbot.ipynb +++ b/docs/core_docs/docs/tutorials/chatbot.ipynb @@ -470,7 +470,7 @@ "]\n", "const output = await app.invoke({ messages: input }, config)\n", "// The output contains all messages in the state.\n", - "// This will long the last message in the conversation.\n", + "// This will log the last message in the conversation.\n", "console.log(output.messages[output.messages.length - 1]);" ] }, From b7626bbf7a847f5365c630c8f53f84b1f72191f2 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 17 Feb 2025 18:31:18 -0800 Subject: [PATCH 27/70] fix(ci): Fix Vercel build (#7717) --- examples/package.json | 1 - libs/langchain-community/package.json | 5 ---- .../src/vectorstores/faiss.ts | 2 ++ .../src/vectorstores/tests/faiss.int.test.ts | 8 +++--- .../src/vectorstores/tests/faiss.test.ts | 14 +++++----- yarn.lock | 26 ------------------- 6 files changed, 14 insertions(+), 42 deletions(-) diff --git a/examples/package.json b/examples/package.json index 957ee04f1596..bc641455e403 100644 --- a/examples/package.json +++ b/examples/package.json @@ -87,7 +87,6 @@ "date-fns": "^3.3.1", "duck-duck-scrape": "^2.2.5", "exa-js": "^1.0.12", - "faiss-node": "^0.5.1", "firebase-admin": "^12.0.0", "graphql": "^16.6.0", "hdb": "^0.19.8", diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index 78066ef946b6..d482909f89cc 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -166,7 +166,6 @@ "eslint-plugin-jest": "^27.6.0", "eslint-plugin-no-instanceof": "^1.0.1", "eslint-plugin-prettier": "^4.2.1", - "faiss-node": "^0.5.1", "fast-xml-parser": "^4.5.1", "firebase-admin": "^11.9.0 || ^12.0.0", "google-auth-library": "^9.10.0", @@ -303,7 +302,6 @@ "dria": "^0.0.3", "duck-duck-scrape": "^2.2.5", "epub2": "^3.0.1", - "faiss-node": "^0.5.1", "fast-xml-parser": "*", "firebase-admin": "^11.9.0 || ^12.0.0", "google-auth-library": "*", @@ -584,9 +582,6 @@ "epub2": { "optional": true }, - "faiss-node": { - "optional": true - }, "fast-xml-parser": { "optional": true }, diff --git a/libs/langchain-community/src/vectorstores/faiss.ts b/libs/langchain-community/src/vectorstores/faiss.ts index 734cc5a69263..ac831da71f5e 100644 --- a/libs/langchain-community/src/vectorstores/faiss.ts +++ b/libs/langchain-community/src/vectorstores/faiss.ts @@ -1,3 +1,5 @@ +/* eslint-disable */ +// @ts-nocheck import type { IndexFlatL2 } from "faiss-node"; import type { NameRegistry, Parser } from "pickleparser"; import * as uuid from "uuid"; diff --git a/libs/langchain-community/src/vectorstores/tests/faiss.int.test.ts b/libs/langchain-community/src/vectorstores/tests/faiss.int.test.ts index ffed4dc7202f..c10ee55b3e06 100644 --- a/libs/langchain-community/src/vectorstores/tests/faiss.int.test.ts +++ b/libs/langchain-community/src/vectorstores/tests/faiss.int.test.ts @@ -8,7 +8,7 @@ import { OpenAIEmbeddings } from "@langchain/openai"; import { Document } from "@langchain/core/documents"; import { FaissStore } from "../faiss.js"; -test("Test FaissStore.fromTexts", async () => { +test.skip("Test FaissStore.fromTexts", async () => { const vectorStore = await FaissStore.fromTexts( ["Hello world", "Bye bye", "hello nice world"], [{ id: 2 }, { id: 1 }, { id: 3 }], @@ -25,7 +25,7 @@ test("Test FaissStore.fromTexts", async () => { expect(resultTwoMetadatas).toEqual([{ id: 2 }, { id: 3 }, { id: 1 }]); }); -test("Test FaissStore.fromTexts + addDocuments", async () => { +test.skip("Test FaissStore.fromTexts + addDocuments", async () => { const vectorStore = await FaissStore.fromTexts( ["Hello world", "Bye bye", "hello nice world"], [{ id: 2 }, { id: 1 }, { id: 3 }], @@ -46,7 +46,7 @@ test("Test FaissStore.fromTexts + addDocuments", async () => { expect(resultTwoMetadatas).toEqual([{ id: 2 }, { id: 3 }, { id: 4 }]); }); -test("Test FaissStore.load and FaissStore.save", async () => { +test.skip("Test FaissStore.load and FaissStore.save", async () => { const vectorStore = await FaissStore.fromTexts( ["Hello world", "Bye bye", "hello nice world"], [{ id: 2 }, { id: 1 }, { id: 3 }], @@ -87,7 +87,7 @@ test("Test FaissStore.load and FaissStore.save", async () => { expect(resultFourMetadatas).toEqual([{ id: 2 }, { id: 3 }, { id: 1 }]); }); -test("Test FaissStore.loadFromPython", async () => { +test.skip("Test FaissStore.loadFromPython", async () => { const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const loadedFromPythonVectorStore = await FaissStore.loadFromPython( diff --git a/libs/langchain-community/src/vectorstores/tests/faiss.test.ts b/libs/langchain-community/src/vectorstores/tests/faiss.test.ts index e3a39fb51a5f..9fa95213544f 100644 --- a/libs/langchain-community/src/vectorstores/tests/faiss.test.ts +++ b/libs/langchain-community/src/vectorstores/tests/faiss.test.ts @@ -1,9 +1,11 @@ +/* eslint-disable */ +// @ts-nocheck import { test, expect } from "@jest/globals"; import { Document } from "@langchain/core/documents"; import { FakeEmbeddings } from "@langchain/core/utils/testing"; import { FaissStore } from "../faiss.js"; -test("Test FaissStore.fromTexts + addVectors", async () => { +test.skip("Test FaissStore.fromTexts + addVectors", async () => { const vectorStore = await FaissStore.fromTexts( ["Hello world"], [{ id: 2 }], @@ -42,7 +44,7 @@ test("Test FaissStore.fromTexts + addVectors", async () => { expect(resultTwoMetadatas).toEqual([{ id: 4 }, { id: 6 }, { id: 2 }]); }); -test("Test FaissStore.fromDocuments + addVectors", async () => { +test.skip("Test FaissStore.fromDocuments + addVectors", async () => { const vectorStore = await FaissStore.fromDocuments( [ new Document({ @@ -91,7 +93,7 @@ test("Test FaissStore.fromDocuments + addVectors", async () => { ]); }); -test("Test FaissStore.fromIndex + mergeFrom", async () => { +test.skip("Test FaissStore.fromIndex + mergeFrom", async () => { const vectorStore1 = await FaissStore.fromDocuments( [ new Document({ @@ -157,7 +159,7 @@ test("Test FaissStore.fromIndex + mergeFrom", async () => { ]); }); -test("Test FaissStore.addDocuments", async () => { +test.skip("Test FaissStore.addDocuments", async () => { const vectorStore = new FaissStore(new FakeEmbeddings(), {}); const idsReturned = await vectorStore.addDocuments([ { pageContent: "bar", metadata: { id: 4, name: "4" } }, @@ -183,7 +185,7 @@ test("Test FaissStore.addDocuments", async () => { expect(vectorStore.docstore._docs.size).toBe(4); }); -test("Test FaissStore.delete", async () => { +test.skip("Test FaissStore.delete", async () => { const vectorStore = new FaissStore(new FakeEmbeddings(), {}); const ids = ["2", "1", "4"]; const idsReturned = await vectorStore.addVectors( @@ -267,7 +269,7 @@ test("Test FaissStore.delete", async () => { expect(doc3.metadata.tag).toEqual(8); }); -test("Test FaissStore Exceptions", async () => { +test.skip("Test FaissStore Exceptions", async () => { const vectorStore = new FaissStore(new FakeEmbeddings(), {}); expect(() => vectorStore.index).toThrow( "Vector store not initialised yet. Try calling `fromTexts`, `fromDocuments` or `fromIndex` first." diff --git a/yarn.lock b/yarn.lock index 71b247416ac4..9f43677a26c7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11990,7 +11990,6 @@ __metadata: eslint-plugin-no-instanceof: ^1.0.1 eslint-plugin-prettier: ^4.2.1 expr-eval: ^2.0.2 - faiss-node: ^0.5.1 fast-xml-parser: ^4.5.1 firebase-admin: ^11.9.0 || ^12.0.0 flat: ^5.0.2 @@ -12133,7 +12132,6 @@ __metadata: dria: ^0.0.3 duck-duck-scrape: ^2.2.5 epub2: ^3.0.1 - faiss-node: ^0.5.1 fast-xml-parser: "*" firebase-admin: ^11.9.0 || ^12.0.0 google-auth-library: "*" @@ -12335,8 +12333,6 @@ __metadata: optional: true epub2: optional: true - faiss-node: - optional: true fast-xml-parser: optional: true firebase-admin: @@ -27897,7 +27893,6 @@ __metadata: eslint-plugin-prettier: ^4.2.1 eslint-plugin-unused-imports: ^3.0.0 exa-js: ^1.0.12 - faiss-node: ^0.5.1 firebase-admin: ^12.0.0 graphql: ^16.6.0 hdb: ^0.19.8 @@ -28216,18 +28211,6 @@ __metadata: languageName: node linkType: hard -"faiss-node@npm:^0.5.1": - version: 0.5.1 - resolution: "faiss-node@npm:0.5.1" - dependencies: - bindings: ^1.5.0 - node-addon-api: ^6.0.0 - node-gyp: latest - prebuild-install: ^7.1.1 - checksum: 9c8ba45c004151be6e94460a30b46fdd854de5f067fd18757f388e103276bb4d479db66cd0475961c447c40c11df629612144d31af932984d4b5ca5c5276f508 - languageName: node - linkType: hard - "fast-deep-equal@npm:3.1.3, fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3": version: 3.1.3 resolution: "fast-deep-equal@npm:3.1.3" @@ -35563,15 +35546,6 @@ __metadata: languageName: node linkType: hard -"node-addon-api@npm:^6.0.0": - version: 6.0.0 - resolution: "node-addon-api@npm:6.0.0" - dependencies: - node-gyp: latest - checksum: a34a901b9f0d6d201a173e12ed378033e4e0f27f77fd27c225dc7e6f96e88a88e94bd78b2b0404fc95deee20a137f1cbfc92738cbfba38862ed9b6c2e61c1ab2 - languageName: node - linkType: hard - "node-addon-api@npm:^7.0.0": version: 7.0.0 resolution: "node-addon-api@npm:7.0.0" From b5a82497cbcc49880e9eae2591faba3c0e7be026 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 18 Feb 2025 03:35:23 +0100 Subject: [PATCH 28/70] fix(community): Fix handling of ChromeAI chunks (#7700) --- libs/langchain-community/src/experimental/llms/chrome_ai.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-community/src/experimental/llms/chrome_ai.ts b/libs/langchain-community/src/experimental/llms/chrome_ai.ts index c41ba13121a6..c107a7c6650a 100644 --- a/libs/langchain-community/src/experimental/llms/chrome_ai.ts +++ b/libs/langchain-community/src/experimental/llms/chrome_ai.ts @@ -194,7 +194,7 @@ export class ChromeAI extends LLM { let previousContent = ""; for await (const chunk of iterableStream) { - const newContent = chunk.slice(previousContent.length); + const newContent = chunk; previousContent += newContent; yield new GenerationChunk({ text: newContent, From 473ef0ecd92be9381f78cee1d12f4f8e09860565 Mon Sep 17 00:00:00 2001 From: allen Date: Mon, 17 Feb 2025 18:37:42 -0800 Subject: [PATCH 29/70] fix(redis): Add TTL support for redis vector store (#7695) --- .../src/tests/vectorstores.test.ts | 22 +++++++++++++++++++ libs/langchain-redis/src/vectorstores.ts | 10 ++++++++- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/libs/langchain-redis/src/tests/vectorstores.test.ts b/libs/langchain-redis/src/tests/vectorstores.test.ts index a590074c0b66..1a2041b6e54f 100644 --- a/libs/langchain-redis/src/tests/vectorstores.test.ts +++ b/libs/langchain-redis/src/tests/vectorstores.test.ts @@ -6,6 +6,7 @@ import { RedisVectorStore } from "../vectorstores.js"; const createRedisClientMockup = () => { const hSetMock = jest.fn(); + const expireMock = jest.fn(); return { ft: { @@ -20,9 +21,11 @@ const createRedisClientMockup = () => { dropIndex: jest.fn(), }, hSet: hSetMock, + expire: expireMock, multi: jest.fn().mockImplementation(() => ({ exec: jest.fn(), hSet: hSetMock, + expire: expireMock, })), }; }; @@ -83,6 +86,25 @@ test("RedisVectorStore with generated keys", async () => { expect(results).toHaveLength(0); }); +test("RedisVectorStore with TTL", async () => { + const client = createRedisClientMockup(); + const embeddings = new FakeEmbeddings(); + const ttl = 10; + const store = new RedisVectorStore(embeddings, { + redisClient: client as any, + indexName: "documents", + ttl, + }); + + expect(store).toBeDefined(); + + await store.addDocuments([{ pageContent: "hello", metadata: { a: 1 } }]); + + expect(client.hSet).toHaveBeenCalledTimes(1); + expect(client.expire).toHaveBeenCalledTimes(1); + expect(client.expire).toHaveBeenCalledWith("doc:documents:0", ttl); +}); + test("RedisVectorStore with filters", async () => { const client = createRedisClientMockup(); const embeddings = new FakeEmbeddings(); diff --git a/libs/langchain-redis/src/vectorstores.ts b/libs/langchain-redis/src/vectorstores.ts index 82f4d8976d81..db09b15c5c80 100644 --- a/libs/langchain-redis/src/vectorstores.ts +++ b/libs/langchain-redis/src/vectorstores.ts @@ -62,7 +62,7 @@ export type RedisVectorStoreIndexOptions = Omit< /** * Interface for the configuration of the RedisVectorStore. It includes * the Redis client, index name, index options, key prefix, content key, - * metadata key, vector key, and filter. + * metadata key, vector key, filter and ttl. */ export interface RedisVectorStoreConfig { redisClient: @@ -76,6 +76,7 @@ export interface RedisVectorStoreConfig { metadataKey?: string; vectorKey?: string; filter?: RedisVectorStoreFilterType; + ttl?: number; // ttl in second } /** @@ -123,6 +124,8 @@ export class RedisVectorStore extends VectorStore { filter?: RedisVectorStoreFilterType; + ttl?: number; + _vectorstoreType(): string { return "redis"; } @@ -144,6 +147,7 @@ export class RedisVectorStore extends VectorStore { this.metadataKey = _dbConfig.metadataKey ?? "metadata"; this.vectorKey = _dbConfig.vectorKey ?? "content_vector"; this.filter = _dbConfig.filter; + this.ttl = _dbConfig.ttl; this.createIndexOptions = { ON: "HASH", PREFIX: this.keyPrefix, @@ -208,6 +212,10 @@ export class RedisVectorStore extends VectorStore { [this.metadataKey]: this.escapeSpecialChars(JSON.stringify(metadata)), }); + if (this.ttl) { + multi.expire(key, this.ttl); + } + // write batch if (idx % batchSize === 0) { await multi.exec(); From 54b68a4eaa92ab4483280928280414ad4ecf6d86 Mon Sep 17 00:00:00 2001 From: allen Date: Mon, 17 Feb 2025 18:38:10 -0800 Subject: [PATCH 30/70] fix(redis): update wrong redis setup link (#7698) --- libs/langchain-redis/src/vectorstores.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-redis/src/vectorstores.ts b/libs/langchain-redis/src/vectorstores.ts index db09b15c5c80..e9112ea9394a 100644 --- a/libs/langchain-redis/src/vectorstores.ts +++ b/libs/langchain-redis/src/vectorstores.ts @@ -340,7 +340,7 @@ export class RedisVectorStore extends VectorStore { // eslint-disable-next-line @typescript-eslint/no-explicit-any if ((err as any)?.message.includes("unknown command")) { throw new Error( - "Failed to run FT.INFO command. Please ensure that you are running a RediSearch-capable Redis instance: https://js.langchain.com/docs/modules/data_connection/vectorstores/integrations/redis#setup" + "Failed to run FT.INFO command. Please ensure that you are running a RediSearch-capable Redis instance: https://js.langchain.com/docs/integrations/vectorstores/redis/#setup" ); } // index doesn't exist From b2d6b74507db39deffcc45b639971cc4646a8441 Mon Sep 17 00:00:00 2001 From: Nicolas <8360521+nicolas-geysse@users.noreply.github.com> Date: Tue, 18 Feb 2025 03:57:44 +0100 Subject: [PATCH 31/70] feat(community): Update Voyage embeddings parameters (#7689) Co-authored-by: jacoblee93 --- .../integrations/text_embedding/voyageai.mdx | 11 ++++ .../src/embeddings/voyage.ts | 63 ++++++++++++++++++- 2 files changed, 72 insertions(+), 2 deletions(-) diff --git a/docs/core_docs/docs/integrations/text_embedding/voyageai.mdx b/docs/core_docs/docs/integrations/text_embedding/voyageai.mdx index ae3d3a5cb543..b895b0e65b32 100644 --- a/docs/core_docs/docs/integrations/text_embedding/voyageai.mdx +++ b/docs/core_docs/docs/integrations/text_embedding/voyageai.mdx @@ -8,12 +8,23 @@ The `inputType` parameter allows you to specify the type of input text for bette - `document`: Use this for documents or content that you want to be retrievable. Voyage AI will prepend a prompt to optimize the embeddings for document use cases. - `None` (default): The input text will be directly encoded without any additional prompt. +Additionally, the class supports new parameters for further customization of the embedding process: + +- **truncation**: Whether to truncate the input texts to the maximum length allowed by the model. +- **outputDimension**: The desired dimension of the output embeddings. +- **outputDtype**: The data type of the output embeddings. Can be `"float"` or `"int8"`. +- **encodingFormat**: The format of the output embeddings. Can be `"float"`, `"base64"`, or `"ubinary"`. + ```typescript import { VoyageEmbeddings } from "@langchain/community/embeddings/voyage"; const embeddings = new VoyageEmbeddings({ apiKey: "YOUR-API-KEY", // In Node.js defaults to process.env.VOYAGEAI_API_KEY inputType: "document", // Optional: specify input type as 'query', 'document', or omit for None / Undefined / Null + truncation: true, // Optional: enable truncation of input texts + outputDimension: 768, // Optional: set desired output embedding dimension + outputDtype: "float", // Optional: set output data type ("float" or "int8") + encodingFormat: "float", // Optional: set output encoding format ("float", "base64", or "ubinary") }); ``` diff --git a/libs/langchain-community/src/embeddings/voyage.ts b/libs/langchain-community/src/embeddings/voyage.ts index 8d8f80be1395..15d6f8a57885 100644 --- a/libs/langchain-community/src/embeddings/voyage.ts +++ b/libs/langchain-community/src/embeddings/voyage.ts @@ -19,6 +19,26 @@ export interface VoyageEmbeddingsParams extends EmbeddingsParams { * Input type for the embeddings request. */ inputType?: string; + + /** + * Whether to truncate the input texts to the maximum length allowed by the model. + */ + truncation?: boolean; + + /** + * The desired dimension of the output embeddings. + */ + outputDimension?: number; + + /** + * The data type of the output embeddings. Can be "float" or "int8". + */ + outputDtype?: string; + + /** + * The format of the output embeddings. Can be "float", "base64", or "ubinary". + */ + encodingFormat?: string; } /** @@ -42,6 +62,26 @@ export interface CreateVoyageEmbeddingRequest { * Input type for the embeddings request. */ input_type?: string; + + /** + * Whether to truncate the input texts. + */ + truncation?: boolean; + + /** + * The desired dimension of the output embeddings. + */ + output_dimension?: number; + + /** + * The data type of the output embeddings. + */ + output_dtype?: string; + + /** + * The format of the output embeddings. + */ + encoding_format?: string; } /** @@ -65,6 +105,14 @@ export class VoyageEmbeddings inputType?: string; + truncation?: boolean; + + outputDimension?: number; + + outputDtype?: string; + + encodingFormat?: string; + /** * Constructor for the VoyageEmbeddings class. * @param fields - An optional object with properties to configure the instance. @@ -73,7 +121,7 @@ export class VoyageEmbeddings fields?: Partial & { verbose?: boolean; apiKey?: string; - inputType?: string; // Make inputType optional + inputType?: string; } ) { const fieldsWithDefaults = { ...fields }; @@ -92,6 +140,10 @@ export class VoyageEmbeddings this.apiKey = apiKey; this.apiUrl = `${this.basePath}/embeddings`; this.inputType = fieldsWithDefaults?.inputType; + this.truncation = fieldsWithDefaults?.truncation; + this.outputDimension = fieldsWithDefaults?.outputDimension; + this.outputDtype = fieldsWithDefaults?.outputDtype; + this.encodingFormat = fieldsWithDefaults?.encodingFormat; } /** @@ -107,6 +159,10 @@ export class VoyageEmbeddings model: this.modelName, input: batch, input_type: this.inputType, + truncation: this.truncation, + output_dimension: this.outputDimension, + output_dtype: this.outputDtype, + encoding_format: this.encodingFormat, }) ); @@ -135,6 +191,10 @@ export class VoyageEmbeddings model: this.modelName, input: text, input_type: this.inputType, + truncation: this.truncation, + output_dimension: this.outputDimension, + output_dtype: this.outputDtype, + encoding_format: this.encodingFormat, }); return data[0].embedding; @@ -145,7 +205,6 @@ export class VoyageEmbeddings * @param request - An object with properties to configure the request. * @returns A Promise that resolves to the response from the Voyage AI API. */ - private async embeddingWithRetry(request: CreateVoyageEmbeddingRequest) { const makeCompletionRequest = async () => { const url = `${this.apiUrl}`; From 195cfffbfcefc774457c7f06ed7721b630e3ef47 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 17 Feb 2025 19:03:15 -0800 Subject: [PATCH 32/70] release(redis): 0.1.1 (#7718) --- libs/langchain-redis/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-redis/package.json b/libs/langchain-redis/package.json index 1423dd7f5e19..24b0d90f447c 100644 --- a/libs/langchain-redis/package.json +++ b/libs/langchain-redis/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/redis", - "version": "0.1.0", + "version": "0.1.1", "description": "Sample integration for LangChain.js", "type": "module", "engines": { From 81d9f3297e2a0c308f1b117d13f6ba3eb50cec34 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 17 Feb 2025 19:06:40 -0800 Subject: [PATCH 33/70] release(community): 0.3.31 (#7719) --- libs/langchain-community/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index d482909f89cc..abfb1772d215 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/community", - "version": "0.3.30", + "version": "0.3.31", "description": "Third-party integrations for LangChain.js", "type": "module", "engines": { From 993d0f8ce5861eb1eb4bcbadc45dd15f28ebc22f Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 17 Feb 2025 19:10:47 -0800 Subject: [PATCH 34/70] Release 0.3.18 (#7720) --- langchain/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/package.json b/langchain/package.json index 5e8b6b161d2e..86a9d803b472 100644 --- a/langchain/package.json +++ b/langchain/package.json @@ -1,6 +1,6 @@ { "name": "langchain", - "version": "0.3.17", + "version": "0.3.18", "description": "Typescript bindings for langchain", "type": "module", "engines": { From f755f8478b9aa8fec15b7d6cbc33803c67929fd2 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Tue, 18 Feb 2025 10:40:44 -0800 Subject: [PATCH 35/70] feat(xai): xAI polish (#7722) --- libs/langchain-xai/package.json | 4 +- libs/langchain-xai/src/chat_models.ts | 105 ++++++++++++++++++ .../src/tests/chat_models.int.test.ts | 8 +- .../chat_models_structured_output.int.test.ts | 22 ++-- yarn.lock | 2 +- 5 files changed, 122 insertions(+), 19 deletions(-) diff --git a/libs/langchain-xai/package.json b/libs/langchain-xai/package.json index 62dd7a368cb8..f7e36af29018 100644 --- a/libs/langchain-xai/package.json +++ b/libs/langchain-xai/package.json @@ -35,7 +35,8 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@langchain/openai": "~0.3.0" + "@langchain/openai": "~0.4.4", + "zod": "^3.24.2" }, "peerDependencies": { "@langchain/core": ">=0.2.21 <0.4.0" @@ -67,7 +68,6 @@ "rollup": "^4.5.2", "ts-jest": "^29.1.0", "typescript": "<5.2.0", - "zod": "^3.22.4", "zod-to-json-schema": "^3.23.1" }, "publishConfig": { diff --git a/libs/langchain-xai/src/chat_models.ts b/libs/langchain-xai/src/chat_models.ts index 8a948e630945..37d85889c636 100644 --- a/libs/langchain-xai/src/chat_models.ts +++ b/libs/langchain-xai/src/chat_models.ts @@ -1,3 +1,4 @@ +import { BaseLanguageModelInput } from "@langchain/core/language_models/base"; import { BaseChatModelCallOptions, BindToolsInput, @@ -5,13 +6,17 @@ import { type BaseChatModelParams, } from "@langchain/core/language_models/chat_models"; import { Serialized } from "@langchain/core/load/serializable"; +import { AIMessageChunk, BaseMessage } from "@langchain/core/messages"; +import { Runnable } from "@langchain/core/runnables"; import { getEnvironmentVariable } from "@langchain/core/utils/env"; import { type OpenAICoreRequestOptions, type OpenAIClient, ChatOpenAI, OpenAIToolChoice, + ChatOpenAIStructuredOutputMethodOptions, } from "@langchain/openai"; +import { z } from "zod"; type ChatXAIToolType = BindToolsInput | OpenAIClient.ChatCompletionTool; @@ -494,4 +499,104 @@ export class ChatXAI extends ChatOpenAI { return super.completionWithRetry(newRequest, options); } + + protected override _convertOpenAIDeltaToBaseMessageChunk( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + delta: Record, + rawResponse: OpenAIClient.ChatCompletionChunk, + defaultRole?: + | "function" + | "user" + | "system" + | "developer" + | "assistant" + | "tool" + ) { + const messageChunk: AIMessageChunk = + super._convertOpenAIDeltaToBaseMessageChunk( + delta, + rawResponse, + defaultRole + ); + // Make concatenating chunks work without merge warning + if (!rawResponse.choices[0]?.finish_reason) { + delete messageChunk.response_metadata.usage; + delete messageChunk.usage_metadata; + } else { + messageChunk.usage_metadata = messageChunk.response_metadata.usage; + } + return messageChunk; + } + + protected override _convertOpenAIChatCompletionMessageToBaseMessage( + message: OpenAIClient.ChatCompletionMessage, + rawResponse: OpenAIClient.ChatCompletion + ) { + const langChainMessage = + super._convertOpenAIChatCompletionMessageToBaseMessage( + message, + rawResponse + ); + langChainMessage.additional_kwargs.reasoning_content = + // eslint-disable-next-line @typescript-eslint/no-explicit-any + (message as any).reasoning_content; + return langChainMessage; + } + + override withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: ChatOpenAIStructuredOutputMethodOptions + ): Runnable; + + override withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: ChatOpenAIStructuredOutputMethodOptions + ): Runnable; + + override withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: ChatOpenAIStructuredOutputMethodOptions + ): + | Runnable + | Runnable; + + override withStructuredOutput< + // eslint-disable-next-line @typescript-eslint/no-explicit-any + RunOutput extends Record = Record + >( + outputSchema: + | z.ZodType + // eslint-disable-next-line @typescript-eslint/no-explicit-any + | Record, + config?: ChatOpenAIStructuredOutputMethodOptions + ): + | Runnable + | Runnable< + BaseLanguageModelInput, + { raw: BaseMessage; parsed: RunOutput } + > { + const ensuredConfig = { ...config }; + if (ensuredConfig?.method === undefined) { + ensuredConfig.method = "functionCalling"; + } + return super.withStructuredOutput(outputSchema, ensuredConfig); + } } diff --git a/libs/langchain-xai/src/tests/chat_models.int.test.ts b/libs/langchain-xai/src/tests/chat_models.int.test.ts index efb6b04371fd..4d4564b1c4de 100644 --- a/libs/langchain-xai/src/tests/chat_models.int.test.ts +++ b/libs/langchain-xai/src/tests/chat_models.int.test.ts @@ -68,7 +68,7 @@ test("streaming", async () => { test("invoke with bound tools", async () => { const chat = new ChatXAI({ maxRetries: 0, - model: "grok-beta", + model: "grok-2-1212", }); const message = new HumanMessage("What is the current weather in Hawaii?"); const res = await chat @@ -144,7 +144,7 @@ test("stream with bound tools, yielding a single chunk", async () => { test("Few shotting with tool calls", async () => { const chat = new ChatXAI({ - model: "grok-beta", + model: "grok-2-1212", temperature: 0, }).bind({ tools: [ @@ -194,9 +194,9 @@ test("Few shotting with tool calls", async () => { expect(res.content).toContain("24"); }); -test("Groq can stream tool calls", async () => { +test("xAI can stream tool calls", async () => { const model = new ChatXAI({ - model: "grok-beta", + model: "grok-2-1212", temperature: 0, }); diff --git a/libs/langchain-xai/src/tests/chat_models_structured_output.int.test.ts b/libs/langchain-xai/src/tests/chat_models_structured_output.int.test.ts index 61071a5b2f4f..63aec34b539f 100644 --- a/libs/langchain-xai/src/tests/chat_models_structured_output.int.test.ts +++ b/libs/langchain-xai/src/tests/chat_models_structured_output.int.test.ts @@ -7,7 +7,7 @@ import { ChatXAI } from "../chat_models.js"; test("withStructuredOutput zod schema function calling", async () => { const model = new ChatXAI({ temperature: 0, - model: "grok-beta", + model: "grok-2-1212", }); const calculatorSchema = z.object({ @@ -37,7 +37,7 @@ test("withStructuredOutput zod schema function calling", async () => { test("withStructuredOutput zod schema JSON mode", async () => { const model = new ChatXAI({ temperature: 0, - model: "grok-beta", + model: "grok-2-1212", }); const calculatorSchema = z.object({ @@ -76,7 +76,7 @@ Respond with a JSON object containing three keys: test("withStructuredOutput JSON schema function calling", async () => { const model = new ChatXAI({ temperature: 0, - model: "grok-beta", + model: "grok-2-1212", }); const calculatorSchema = z.object({ @@ -106,7 +106,7 @@ test("withStructuredOutput JSON schema function calling", async () => { test("withStructuredOutput OpenAI function definition function calling", async () => { const model = new ChatXAI({ temperature: 0, - model: "grok-beta", + model: "grok-2-1212", }); const calculatorSchema = z.object({ @@ -120,14 +120,12 @@ test("withStructuredOutput OpenAI function definition function calling", async ( }); const prompt = ChatPromptTemplate.fromMessages([ - "system", - `You are VERY bad at math and must always use a calculator.`, - "human", - "Please help me!! What is 2 + 2?", + ["system", `You are VERY bad at math and must always use a calculator.`], + ["human", "Please help me!! What is 2 + 2?"], ]); const chain = prompt.pipe(modelWithStructuredOutput); const result = await chain.invoke({}); - // console.log(result); + expect("operation" in result).toBe(true); expect("number1" in result).toBe(true); expect("number2" in result).toBe(true); @@ -136,7 +134,7 @@ test("withStructuredOutput OpenAI function definition function calling", async ( test("withStructuredOutput JSON schema JSON mode", async () => { const model = new ChatXAI({ temperature: 0, - model: "grok-beta", + model: "grok-2-1212", }); const calculatorSchema = z.object({ @@ -175,7 +173,7 @@ Respond with a JSON object containing three keys: test("withStructuredOutput JSON schema", async () => { const model = new ChatXAI({ temperature: 0, - model: "grok-beta", + model: "grok-2-1212", }); const jsonSchema = { @@ -216,7 +214,7 @@ Respond with a JSON object containing three keys: test("withStructuredOutput includeRaw true", async () => { const model = new ChatXAI({ temperature: 0, - model: "grok-beta", + model: "grok-2-1212", }); const calculatorSchema = z.object({ diff --git a/yarn.lock b/yarn.lock index 9f43677a26c7..6577a7d34db7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13335,7 +13335,7 @@ __metadata: rollup: ^4.5.2 ts-jest: ^29.1.0 typescript: <5.2.0 - zod: ^3.22.4 + zod: ^3.24.2 zod-to-json-schema: ^3.23.1 peerDependencies: "@langchain/core": ">=0.2.21 <0.4.0" From c65147da655558125f8a43860a1ba4d4c95c4122 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Tue, 18 Feb 2025 11:30:57 -0800 Subject: [PATCH 36/70] feat(langchain): Adds xAI to initChatModel (#7721) --- langchain/package.json | 5 +++++ langchain/src/chat_models/universal.ts | 9 ++++++++- libs/langchain-xai/src/chat_models.ts | 2 +- libs/langchain-xai/src/tests/chat_models.test.ts | 13 +++++++++---- yarn.lock | 6 +++++- 5 files changed, 28 insertions(+), 7 deletions(-) diff --git a/langchain/package.json b/langchain/package.json index 86a9d803b472..da99e6f218c5 100644 --- a/langchain/package.json +++ b/langchain/package.json @@ -428,6 +428,7 @@ "@langchain/mistralai": "*", "@langchain/ollama": "*", "@langchain/scripts": ">=0.1.0 <0.2.0", + "@langchain/xai": "*", "@swc/core": "^1.3.90", "@swc/jest": "^0.2.29", "@tsconfig/recommended": "^1.0.2", @@ -477,6 +478,7 @@ "@langchain/groq": "*", "@langchain/mistralai": "*", "@langchain/ollama": "*", + "@langchain/xai": "*", "axios": "*", "cheerio": "*", "handlebars": "^4.7.8", @@ -517,6 +519,9 @@ "@langchain/ollama": { "optional": true }, + "@langchain/xai": { + "optional": true + }, "axios": { "optional": true }, diff --git a/langchain/src/chat_models/universal.ts b/langchain/src/chat_models/universal.ts index 6b74bb8fb295..5f4f33a0f36c 100644 --- a/langchain/src/chat_models/universal.ts +++ b/langchain/src/chat_models/universal.ts @@ -50,6 +50,7 @@ const _SUPPORTED_PROVIDERS = [ "bedrock", "cerebras", "deepseek", + "xai", ] as const; export type ChatModelProvider = (typeof _SUPPORTED_PROVIDERS)[number]; @@ -135,6 +136,10 @@ async function _initChatModelHelper( const { ChatDeepSeek } = await import("@langchain/deepseek"); return new ChatDeepSeek({ model, ...passedParams }); } + case "xai": { + const { ChatXAI } = await import("@langchain/xai"); + return new ChatXAI({ model, ...passedParams }); + } case "fireworks": { const { ChatFireworks } = await import( // We can not 'expect-error' because if you explicitly build `@langchain/community` @@ -194,7 +199,8 @@ export function _inferModelProvider(modelName: string): string | undefined { if ( modelName.startsWith("gpt-3") || modelName.startsWith("gpt-4") || - modelName.startsWith("o1") + modelName.startsWith("o1") || + modelName.startsWith("o3") ) { return "openai"; } else if (modelName.startsWith("claude")) { @@ -618,6 +624,7 @@ export async function initChatModel< * - ollama (@langchain/ollama) * - cerebras (@langchain/cerebras) * - deepseek (@langchain/deepseek) + * - xai (@langchain/xai) * @param {string[] | "any"} [fields.configurableFields] - Which model parameters are configurable: * - undefined: No configurable fields. * - "any": All fields are configurable. (See Security Note in description) diff --git a/libs/langchain-xai/src/chat_models.ts b/libs/langchain-xai/src/chat_models.ts index 37d85889c636..31c20718bf64 100644 --- a/libs/langchain-xai/src/chat_models.ts +++ b/libs/langchain-xai/src/chat_models.ts @@ -396,7 +396,7 @@ export class ChatXAI extends ChatOpenAI { } _llmType() { - return "xAI"; + return "xai"; } get lc_secrets(): { [key: string]: string } | undefined { diff --git a/libs/langchain-xai/src/tests/chat_models.test.ts b/libs/langchain-xai/src/tests/chat_models.test.ts index 0412b08853eb..239d3b5c9e36 100644 --- a/libs/langchain-xai/src/tests/chat_models.test.ts +++ b/libs/langchain-xai/src/tests/chat_models.test.ts @@ -2,19 +2,24 @@ import { test, expect } from "@jest/globals"; import { ChatXAI } from "../chat_models.js"; +beforeEach(() => { + process.env.XAI_API_KEY = "foo"; +}); + test("Serialization", () => { + delete process.env.XAI_API_KEY; const model = new ChatXAI({ - apiKey: "foo", + model: "grok-2-1212", + apiKey: "bar", }); expect(JSON.stringify(model)).toEqual( - `{"lc":1,"type":"constructor","id":["langchain","chat_models","xai","ChatXAI"],"kwargs":{"api_key":{"lc":1,"type":"secret","id":["XAI_API_KEY"]}}}` + `{"lc":1,"type":"constructor","id":["langchain","chat_models","xai","ChatXAI"],"kwargs":{"model":"grok-2-1212"}}` ); }); test("Serialization with no params", () => { - process.env.GROQ_API_KEY = "foo"; const model = new ChatXAI(); expect(JSON.stringify(model)).toEqual( - `{"lc":1,"type":"constructor","id":["langchain","chat_models","xai","ChatXAI"],"kwargs":{"api_key":{"lc":1,"type":"secret","id":["XAI_API_KEY"]}}}` + `{"lc":1,"type":"constructor","id":["langchain","chat_models","xai","ChatXAI"],"kwargs":{"model":"grok-beta"}}` ); }); diff --git a/yarn.lock b/yarn.lock index 6577a7d34db7..799db67842a7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13305,7 +13305,7 @@ __metadata: languageName: unknown linkType: soft -"@langchain/xai@workspace:*, @langchain/xai@workspace:libs/langchain-xai": +"@langchain/xai@*, @langchain/xai@workspace:*, @langchain/xai@workspace:libs/langchain-xai": version: 0.0.0-use.local resolution: "@langchain/xai@workspace:libs/langchain-xai" dependencies: @@ -33472,6 +33472,7 @@ __metadata: "@langchain/openai": ">=0.1.0 <0.5.0" "@langchain/scripts": ">=0.1.0 <0.2.0" "@langchain/textsplitters": ">=0.0.0 <0.2.0" + "@langchain/xai": "*" "@swc/core": ^1.3.90 "@swc/jest": ^0.2.29 "@tsconfig/recommended": ^1.0.2 @@ -33530,6 +33531,7 @@ __metadata: "@langchain/groq": "*" "@langchain/mistralai": "*" "@langchain/ollama": "*" + "@langchain/xai": "*" axios: "*" cheerio: "*" handlebars: ^4.7.8 @@ -33558,6 +33560,8 @@ __metadata: optional: true "@langchain/ollama": optional: true + "@langchain/xai": + optional: true axios: optional: true cheerio: From 39b74b973ad5843c96cc1081de91931ea7f0798a Mon Sep 17 00:00:00 2001 From: Brace Sproul Date: Tue, 18 Feb 2025 20:31:22 -0800 Subject: [PATCH 37/70] release(xai): 0.0.2 (#7723) --- libs/langchain-xai/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-xai/package.json b/libs/langchain-xai/package.json index f7e36af29018..c44b78501f8c 100644 --- a/libs/langchain-xai/package.json +++ b/libs/langchain-xai/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/xai", - "version": "0.0.1", + "version": "0.0.2", "description": "xAI integration for LangChain.js", "type": "module", "engines": { From cfd1513ffb01629626a04dffd7248fbdd1970e86 Mon Sep 17 00:00:00 2001 From: Brace Sproul Date: Tue, 18 Feb 2025 20:34:08 -0800 Subject: [PATCH 38/70] release(langchain): 0.3.19 (#7724) --- langchain/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/package.json b/langchain/package.json index da99e6f218c5..704f3dc99500 100644 --- a/langchain/package.json +++ b/langchain/package.json @@ -1,6 +1,6 @@ { "name": "langchain", - "version": "0.3.18", + "version": "0.3.19", "description": "Typescript bindings for langchain", "type": "module", "engines": { From 7684485898fac3a186cdf769dd2ef4917f8575ed Mon Sep 17 00:00:00 2001 From: Kenneth Kreindler <42113355+KDKHD@users.noreply.github.com> Date: Thu, 20 Feb 2025 03:17:13 +0000 Subject: [PATCH 39/70] feat(community,aws): Update @aws-sdk/* dependencies in langchain-aws (#7710) --- libs/langchain-aws/package.json | 10 +- libs/langchain-community/package.json | 36 +- yarn.lock | 22703 +++++++++--------------- 3 files changed, 8414 insertions(+), 14335 deletions(-) diff --git a/libs/langchain-aws/package.json b/libs/langchain-aws/package.json index 50a419fb57e2..0474988ee907 100644 --- a/libs/langchain-aws/package.json +++ b/libs/langchain-aws/package.json @@ -32,10 +32,10 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@aws-sdk/client-bedrock-agent-runtime": "^3.616.0", - "@aws-sdk/client-bedrock-runtime": "^3.602.0", - "@aws-sdk/client-kendra": "^3.352.0", - "@aws-sdk/credential-provider-node": "^3.600.0", + "@aws-sdk/client-bedrock-agent-runtime": "^3.749.0", + "@aws-sdk/client-bedrock-runtime": "^3.749.0", + "@aws-sdk/client-kendra": "^3.749.0", + "@aws-sdk/credential-provider-node": "^3.749.0", "zod": "^3.23.8", "zod-to-json-schema": "^3.22.5" }, @@ -43,7 +43,7 @@ "@langchain/core": ">=0.2.21 <0.4.0" }, "devDependencies": { - "@aws-sdk/types": "^3.609.0", + "@aws-sdk/types": "^3.734.0", "@jest/globals": "^29.5.0", "@langchain/core": "workspace:*", "@langchain/scripts": ">=0.1.0 <0.2.0", diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index abfb1772d215..c9f4dbabd580 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -49,16 +49,16 @@ "devDependencies": { "@arcjet/redact": "^v1.0.0-alpha.23", "@aws-crypto/sha256-js": "^5.0.0", - "@aws-sdk/client-bedrock-agent-runtime": "^3.583.0", - "@aws-sdk/client-bedrock-runtime": "^3.422.0", - "@aws-sdk/client-dynamodb": "^3.310.0", - "@aws-sdk/client-kendra": "^3.352.0", - "@aws-sdk/client-lambda": "^3.310.0", - "@aws-sdk/client-s3": "^3.310.0", - "@aws-sdk/client-sagemaker-runtime": "^3.414.0", - "@aws-sdk/client-sfn": "^3.362.0", - "@aws-sdk/credential-provider-node": "^3.388.0", - "@aws-sdk/types": "^3.357.0", + "@aws-sdk/client-bedrock-agent-runtime": "^3.749.0", + "@aws-sdk/client-bedrock-runtime": "^3.749.0", + "@aws-sdk/client-dynamodb": "^3.749.0", + "@aws-sdk/client-kendra": "^3.749.0", + "@aws-sdk/client-lambda": "^3.749.0", + "@aws-sdk/client-s3": "^3.749.0", + "@aws-sdk/client-sagemaker-runtime": "^3.749.0", + "@aws-sdk/client-sfn": "^3.749.0", + "@aws-sdk/credential-provider-node": "^3.749.0", + "@aws-sdk/types": "^3.734.0", "@azure/search-documents": "^12.0.0", "@azure/storage-blob": "^12.15.0", "@browserbasehq/sdk": "^1.1.5", @@ -223,14 +223,14 @@ "peerDependencies": { "@arcjet/redact": "^v1.0.0-alpha.23", "@aws-crypto/sha256-js": "^5.0.0", - "@aws-sdk/client-bedrock-agent-runtime": "^3.583.0", - "@aws-sdk/client-bedrock-runtime": "^3.422.0", - "@aws-sdk/client-dynamodb": "^3.310.0", - "@aws-sdk/client-kendra": "^3.352.0", - "@aws-sdk/client-lambda": "^3.310.0", - "@aws-sdk/client-s3": "^3.310.0", - "@aws-sdk/client-sagemaker-runtime": "^3.310.0", - "@aws-sdk/client-sfn": "^3.310.0", + "@aws-sdk/client-bedrock-agent-runtime": "^3.749.0", + "@aws-sdk/client-bedrock-runtime": "^3.749.0", + "@aws-sdk/client-dynamodb": "^3.749.0", + "@aws-sdk/client-kendra": "^3.749.0", + "@aws-sdk/client-lambda": "^3.749.0", + "@aws-sdk/client-s3": "^3.749.0", + "@aws-sdk/client-sagemaker-runtime": "^3.749.0", + "@aws-sdk/client-sfn": "^3.749.0", "@aws-sdk/credential-provider-node": "^3.388.0", "@azure/search-documents": "^12.0.0", "@azure/storage-blob": "^12.15.0", diff --git a/yarn.lock b/yarn.lock index 799db67842a7..f70df959b9fc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -321,14 +321,14 @@ __metadata: languageName: node linkType: hard -"@aws-crypto/crc32c@npm:3.0.0": - version: 3.0.0 - resolution: "@aws-crypto/crc32c@npm:3.0.0" +"@aws-crypto/crc32c@npm:5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/crc32c@npm:5.2.0" dependencies: - "@aws-crypto/util": ^3.0.0 + "@aws-crypto/util": ^5.2.0 "@aws-sdk/types": ^3.222.0 - tslib: ^1.11.1 - checksum: 0a116b5d1c5b09a3dde65aab04a07b32f543e87b68f2d175081e3f4a1a17502343f223d691dd883ace1ddce65cd40093673e7c7415dcd99062202ba87ffb4038 + tslib: ^2.6.2 + checksum: 0b399de8607c59e1e46c05d2b24a16b56d507944fdac925c611f0ba7302f5555c098139806d7da1ebef1f89bf4e4b5d4dec74d4809ce0f18238b72072065effe languageName: node linkType: hard @@ -341,18 +341,17 @@ __metadata: languageName: node linkType: hard -"@aws-crypto/sha1-browser@npm:3.0.0": - version: 3.0.0 - resolution: "@aws-crypto/sha1-browser@npm:3.0.0" +"@aws-crypto/sha1-browser@npm:5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/sha1-browser@npm:5.2.0" dependencies: - "@aws-crypto/ie11-detection": ^3.0.0 - "@aws-crypto/supports-web-crypto": ^3.0.0 - "@aws-crypto/util": ^3.0.0 + "@aws-crypto/supports-web-crypto": ^5.2.0 + "@aws-crypto/util": ^5.2.0 "@aws-sdk/types": ^3.222.0 "@aws-sdk/util-locate-window": ^3.0.0 - "@aws-sdk/util-utf8-browser": ^3.0.0 - tslib: ^1.11.1 - checksum: 78c379e105a0c4e7b2ed745dffd8f55054d7dde8b350b61de682bbc3cd081a50e2f87861954fa9cd53c7ea711ebca1ca0137b14cb36483efc971f60f573cf129 + "@smithy/util-utf8": ^2.0.0 + tslib: ^2.6.2 + checksum: 8b04af601d945c5ef0f5f733b55681edc95b81c02ce5067b57f1eb4ee718e45485cf9aeeb7a84da9131656d09e1c4bc78040ec759f557a46703422d8df098d59 languageName: node linkType: hard @@ -438,6 +437,17 @@ __metadata: languageName: node linkType: hard +"@aws-crypto/util@npm:5.2.0, @aws-crypto/util@npm:^5.2.0": + version: 5.2.0 + resolution: "@aws-crypto/util@npm:5.2.0" + dependencies: + "@aws-sdk/types": ^3.222.0 + "@smithy/util-utf8": ^2.0.0 + tslib: ^2.6.2 + checksum: f0f81d9d2771c59946cfec48b86cb23d39f78a966c4a1f89d4753abdc3cb38de06f907d1e6450059b121d48ac65d612ab88bdb70014553a077fc3dabddfbf8d6 + languageName: node + linkType: hard + "@aws-crypto/util@npm:^3.0.0": version: 3.0.0 resolution: "@aws-crypto/util@npm:3.0.0" @@ -460,258 +470,428 @@ __metadata: languageName: node linkType: hard -"@aws-crypto/util@npm:^5.2.0": - version: 5.2.0 - resolution: "@aws-crypto/util@npm:5.2.0" +"@aws-sdk/client-bedrock-agent-runtime@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-bedrock-agent-runtime@npm:3.749.0" dependencies: - "@aws-sdk/types": ^3.222.0 - "@smithy/util-utf8": ^2.0.0 + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/eventstream-serde-browser": ^4.0.1 + "@smithy/eventstream-serde-config-resolver": ^4.0.1 + "@smithy/eventstream-serde-node": ^4.0.1 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: f0f81d9d2771c59946cfec48b86cb23d39f78a966c4a1f89d4753abdc3cb38de06f907d1e6450059b121d48ac65d612ab88bdb70014553a077fc3dabddfbf8d6 - languageName: node - linkType: hard - -"@aws-sdk/abort-controller@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/abort-controller@npm:3.310.0" - dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: ca081fbec7419ff7bc03b7fddcfe7be1d5e390290c819069f42672f5a66415b55d90a81de899c384fd3368396390e3573c66345a8f91683e600c6caff64a239f + checksum: e02b2217ddc08883ac538b8c7404db71e30757525096131c6c94f51598e09155eed706c600d0eb189e32e9c767ac9e67bb7604c69b759d952a84784b738f5bbd languageName: node linkType: hard -"@aws-sdk/abort-controller@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/abort-controller@npm:3.357.0" +"@aws-sdk/client-bedrock-runtime@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-bedrock-runtime@npm:3.749.0" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: dee99ea164454db35f5a85deb0cec51b9d7065a1aa551c4ac7c0c8e2a538fd3827f9fd5812bd9576ce5dfd25a98fce1b26252d7a67d9ae864c65b5deb7f35a43 - languageName: node - linkType: hard - -"@aws-sdk/chunked-blob-reader@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/chunked-blob-reader@npm:3.310.0" - dependencies: - tslib: ^2.5.0 - checksum: 4969fe05c6cea38d0a8dc3ec8e37cbd82a0a5b6f8c32ad6c7d02f0800bc3641e96356f47981c88b645b4dc2bdcb73d03d7ec67ac38d277dde8337b61688f815b + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/eventstream-serde-browser": ^4.0.1 + "@smithy/eventstream-serde-config-resolver": ^4.0.1 + "@smithy/eventstream-serde-node": ^4.0.1 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-stream": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 + "@types/uuid": ^9.0.1 + tslib: ^2.6.2 + uuid: ^9.0.1 + checksum: 5d015a3c7364ebe0f786625737a9252621a463ebf2ff67c3c6fc848f11d0ce0c5d7696925089d65dc3cebad8871f370dddb95f87d1c0eeb2072f411ecba2339c languageName: node linkType: hard -"@aws-sdk/client-bedrock-agent-runtime@npm:^3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/client-bedrock-agent-runtime@npm:3.583.0" +"@aws-sdk/client-cognito-identity@npm:3.592.0": + version: 3.592.0 + resolution: "@aws-sdk/client-cognito-identity@npm:3.592.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sso-oidc": 3.583.0 - "@aws-sdk/client-sts": 3.583.0 - "@aws-sdk/core": 3.582.0 - "@aws-sdk/credential-provider-node": 3.583.0 + "@aws-sdk/client-sso-oidc": 3.592.0 + "@aws-sdk/client-sts": 3.592.0 + "@aws-sdk/core": 3.592.0 + "@aws-sdk/credential-provider-node": 3.592.0 "@aws-sdk/middleware-host-header": 3.577.0 "@aws-sdk/middleware-logger": 3.577.0 "@aws-sdk/middleware-recursion-detection": 3.577.0 - "@aws-sdk/middleware-user-agent": 3.583.0 - "@aws-sdk/region-config-resolver": 3.577.0 + "@aws-sdk/middleware-user-agent": 3.587.0 + "@aws-sdk/region-config-resolver": 3.587.0 "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.583.0 + "@aws-sdk/util-endpoints": 3.587.0 "@aws-sdk/util-user-agent-browser": 3.577.0 - "@aws-sdk/util-user-agent-node": 3.577.0 - "@smithy/config-resolver": ^3.0.0 - "@smithy/core": ^2.0.1 - "@smithy/eventstream-serde-browser": ^3.0.0 - "@smithy/eventstream-serde-config-resolver": ^3.0.0 - "@smithy/eventstream-serde-node": ^3.0.0 + "@aws-sdk/util-user-agent-node": 3.587.0 + "@smithy/config-resolver": ^3.0.1 + "@smithy/core": ^2.2.0 "@smithy/fetch-http-handler": ^3.0.1 "@smithy/hash-node": ^3.0.0 "@smithy/invalid-dependency": ^3.0.0 "@smithy/middleware-content-length": ^3.0.0 - "@smithy/middleware-endpoint": ^3.0.0 - "@smithy/middleware-retry": ^3.0.1 + "@smithy/middleware-endpoint": ^3.0.1 + "@smithy/middleware-retry": ^3.0.3 "@smithy/middleware-serde": ^3.0.0 "@smithy/middleware-stack": ^3.0.0 - "@smithy/node-config-provider": ^3.0.0 + "@smithy/node-config-provider": ^3.1.0 "@smithy/node-http-handler": ^3.0.0 "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.0.1 + "@smithy/smithy-client": ^3.1.1 "@smithy/types": ^3.0.0 "@smithy/url-parser": ^3.0.0 "@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.1 - "@smithy/util-defaults-mode-node": ^3.0.1 - "@smithy/util-endpoints": ^2.0.0 + "@smithy/util-defaults-mode-browser": ^3.0.3 + "@smithy/util-defaults-mode-node": ^3.0.3 + "@smithy/util-endpoints": ^2.0.1 "@smithy/util-middleware": ^3.0.0 "@smithy/util-retry": ^3.0.0 "@smithy/util-utf8": ^3.0.0 tslib: ^2.6.2 - checksum: 588792b63ecb31ba7dcce243481cd65a7035ac84f84a611dad28cc5cc5217e1d816284541f0469688e8f3f2a2f73a9fb1c9aafe6dc7d3bee3f043a701dcc21bf + checksum: 2ce5e19512a7547c461a8ce55765a91da71fbd521a07716866b4d9140ed801f39126dd2aad167672ddf3fb69702a3fa3dfd279e026d611b0a1e4211c264c85a9 languageName: node linkType: hard -"@aws-sdk/client-bedrock-agent-runtime@npm:^3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/client-bedrock-agent-runtime@npm:3.616.0" +"@aws-sdk/client-dynamodb@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-dynamodb@npm:3.749.0" dependencies: "@aws-crypto/sha256-browser": 5.2.0 "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sso-oidc": 3.616.0 - "@aws-sdk/client-sts": 3.616.0 - "@aws-sdk/core": 3.616.0 - "@aws-sdk/credential-provider-node": 3.616.0 - "@aws-sdk/middleware-host-header": 3.616.0 - "@aws-sdk/middleware-logger": 3.609.0 - "@aws-sdk/middleware-recursion-detection": 3.616.0 - "@aws-sdk/middleware-user-agent": 3.616.0 - "@aws-sdk/region-config-resolver": 3.614.0 - "@aws-sdk/types": 3.609.0 - "@aws-sdk/util-endpoints": 3.614.0 - "@aws-sdk/util-user-agent-browser": 3.609.0 - "@aws-sdk/util-user-agent-node": 3.614.0 - "@smithy/config-resolver": ^3.0.5 - "@smithy/core": ^2.2.7 - "@smithy/eventstream-serde-browser": ^3.0.4 - "@smithy/eventstream-serde-config-resolver": ^3.0.3 - "@smithy/eventstream-serde-node": ^3.0.4 - "@smithy/fetch-http-handler": ^3.2.2 - "@smithy/hash-node": ^3.0.3 - "@smithy/invalid-dependency": ^3.0.3 - "@smithy/middleware-content-length": ^3.0.4 - "@smithy/middleware-endpoint": ^3.0.5 - "@smithy/middleware-retry": ^3.0.10 - "@smithy/middleware-serde": ^3.0.3 - "@smithy/middleware-stack": ^3.0.3 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/node-http-handler": ^3.1.3 - "@smithy/protocol-http": ^4.0.4 - "@smithy/smithy-client": ^3.1.8 - "@smithy/types": ^3.3.0 - "@smithy/url-parser": ^3.0.3 - "@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.10 - "@smithy/util-defaults-mode-node": ^3.0.10 - "@smithy/util-endpoints": ^2.0.5 - "@smithy/util-middleware": ^3.0.3 - "@smithy/util-retry": ^3.0.3 - "@smithy/util-utf8": ^3.0.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-endpoint-discovery": 3.734.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + "@smithy/util-waiter": ^4.0.2 + "@types/uuid": ^9.0.1 tslib: ^2.6.2 - checksum: d25373b0ef8b8df63f2bc935bf9d2aefa9a17d68fedd70bca21122add6ea21c3a914916cf8ad69b6a0f73a6ca43d98e9c56843aea69ea76f0cefff63aaeb24bc + uuid: ^9.0.1 + checksum: 8f53805f2f5cf292d9048c0f0f51ff187c560b55c384933ad450c272f81db6a37d1ee82f3e8e289447d50fa4179dacfc3aa751b8e5328ed1be20749397ca1e14 languageName: node linkType: hard -"@aws-sdk/client-bedrock-runtime@npm:^3.422.0": - version: 3.490.0 - resolution: "@aws-sdk/client-bedrock-runtime@npm:3.490.0" +"@aws-sdk/client-kendra@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-kendra@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.490.0 - "@aws-sdk/core": 3.490.0 - "@aws-sdk/credential-provider-node": 3.490.0 - "@aws-sdk/middleware-host-header": 3.489.0 - "@aws-sdk/middleware-logger": 3.489.0 - "@aws-sdk/middleware-recursion-detection": 3.489.0 - "@aws-sdk/middleware-signing": 3.489.0 - "@aws-sdk/middleware-user-agent": 3.489.0 - "@aws-sdk/region-config-resolver": 3.489.0 - "@aws-sdk/types": 3.489.0 - "@aws-sdk/util-endpoints": 3.489.0 - "@aws-sdk/util-user-agent-browser": 3.489.0 - "@aws-sdk/util-user-agent-node": 3.489.0 - "@smithy/config-resolver": ^2.0.23 - "@smithy/core": ^1.2.2 - "@smithy/eventstream-serde-browser": ^2.0.16 - "@smithy/eventstream-serde-config-resolver": ^2.0.16 - "@smithy/eventstream-serde-node": ^2.0.16 - "@smithy/fetch-http-handler": ^2.3.2 - "@smithy/hash-node": ^2.0.18 - "@smithy/invalid-dependency": ^2.0.16 - "@smithy/middleware-content-length": ^2.0.18 - "@smithy/middleware-endpoint": ^2.3.0 - "@smithy/middleware-retry": ^2.0.26 - "@smithy/middleware-serde": ^2.0.16 - "@smithy/middleware-stack": ^2.0.10 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/node-http-handler": ^2.2.2 - "@smithy/protocol-http": ^3.0.12 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - "@smithy/url-parser": ^2.0.16 - "@smithy/util-base64": ^2.0.1 - "@smithy/util-body-length-browser": ^2.0.1 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.24 - "@smithy/util-defaults-mode-node": ^2.0.32 - "@smithy/util-endpoints": ^1.0.8 - "@smithy/util-retry": ^2.0.9 - "@smithy/util-stream": ^2.0.24 - "@smithy/util-utf8": ^2.0.2 - tslib: ^2.5.0 - checksum: 4ec5dfaf938b0ebe38c6659525976b08a0ab431613c862622e76c6ca7723baaac847e5a7f306f39348848c548580597d00441e604a867f5f4f870880c0b2ef4c + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + "@types/uuid": ^9.0.1 + tslib: ^2.6.2 + uuid: ^9.0.1 + checksum: 02016ecb68c434b7eedcd7a2fe4320ad5f58a32e984db3f8ceb67681de29115581dc06fe32800a8415090def7abaf63873fc7ab545dbb46288c7807f29b40bc8 languageName: node linkType: hard -"@aws-sdk/client-bedrock-runtime@npm:^3.602.0": - version: 3.602.0 - resolution: "@aws-sdk/client-bedrock-runtime@npm:3.602.0" +"@aws-sdk/client-lambda@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-lambda@npm:3.749.0" dependencies: "@aws-crypto/sha256-browser": 5.2.0 "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sso-oidc": 3.600.0 - "@aws-sdk/client-sts": 3.600.0 - "@aws-sdk/core": 3.598.0 - "@aws-sdk/credential-provider-node": 3.600.0 - "@aws-sdk/middleware-host-header": 3.598.0 - "@aws-sdk/middleware-logger": 3.598.0 - "@aws-sdk/middleware-recursion-detection": 3.598.0 - "@aws-sdk/middleware-user-agent": 3.598.0 - "@aws-sdk/region-config-resolver": 3.598.0 - "@aws-sdk/types": 3.598.0 - "@aws-sdk/util-endpoints": 3.598.0 - "@aws-sdk/util-user-agent-browser": 3.598.0 - "@aws-sdk/util-user-agent-node": 3.598.0 - "@smithy/config-resolver": ^3.0.2 - "@smithy/core": ^2.2.1 - "@smithy/eventstream-serde-browser": ^3.0.2 - "@smithy/eventstream-serde-config-resolver": ^3.0.1 - "@smithy/eventstream-serde-node": ^3.0.2 - "@smithy/fetch-http-handler": ^3.0.2 - "@smithy/hash-node": ^3.0.1 - "@smithy/invalid-dependency": ^3.0.1 - "@smithy/middleware-content-length": ^3.0.1 - "@smithy/middleware-endpoint": ^3.0.2 - "@smithy/middleware-retry": ^3.0.4 - "@smithy/middleware-serde": ^3.0.1 - "@smithy/middleware-stack": ^3.0.1 - "@smithy/node-config-provider": ^3.1.1 - "@smithy/node-http-handler": ^3.0.1 - "@smithy/protocol-http": ^4.0.1 - "@smithy/smithy-client": ^3.1.2 - "@smithy/types": ^3.1.0 - "@smithy/url-parser": ^3.0.1 - "@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.4 - "@smithy/util-defaults-mode-node": ^3.0.4 - "@smithy/util-endpoints": ^2.0.2 - "@smithy/util-middleware": ^3.0.1 - "@smithy/util-retry": ^3.0.1 - "@smithy/util-stream": ^3.0.2 - "@smithy/util-utf8": ^3.0.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/eventstream-serde-browser": ^4.0.1 + "@smithy/eventstream-serde-config-resolver": ^4.0.1 + "@smithy/eventstream-serde-node": ^4.0.1 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-stream": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 + "@smithy/util-waiter": ^4.0.2 tslib: ^2.6.2 - checksum: 6a0539c36fbacd5d1d49297466e3083ccd54622f5c32e4fa26579b07a8f3175072237586c69b4e43a153bba8ee33a74034587e9bbca7d05bfa312800e8977c9b + checksum: f6a8f29f09dee7607db29da4be23be9162f4a36505f7b14ac150475c6b6eef5aa489717c169db0548da6d7b8e5521fdb21befca5d6d4adb6e4c615a1997fe63f languageName: node linkType: hard -"@aws-sdk/client-cognito-identity@npm:3.592.0": - version: 3.592.0 - resolution: "@aws-sdk/client-cognito-identity@npm:3.592.0" +"@aws-sdk/client-s3@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-s3@npm:3.749.0" + dependencies: + "@aws-crypto/sha1-browser": 5.2.0 + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-bucket-endpoint": 3.734.0 + "@aws-sdk/middleware-expect-continue": 3.734.0 + "@aws-sdk/middleware-flexible-checksums": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-location-constraint": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-sdk-s3": 3.749.0 + "@aws-sdk/middleware-ssec": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/signature-v4-multi-region": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@aws-sdk/xml-builder": 3.734.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/eventstream-serde-browser": ^4.0.1 + "@smithy/eventstream-serde-config-resolver": ^4.0.1 + "@smithy/eventstream-serde-node": ^4.0.1 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-blob-browser": ^4.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/hash-stream-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/md5-js": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-stream": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 + "@smithy/util-waiter": ^4.0.2 + tslib: ^2.6.2 + checksum: a35571292c72a6705489a9210ee0aea4f19e391f16285db8fa0f920aa6367d549a10bf584da72f5974852a02c9982912f7eea94487e450edcc72ef715a5224ba + languageName: node + linkType: hard + +"@aws-sdk/client-sagemaker-runtime@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-sagemaker-runtime@npm:3.749.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/eventstream-serde-browser": ^4.0.1 + "@smithy/eventstream-serde-config-resolver": ^4.0.1 + "@smithy/eventstream-serde-node": ^4.0.1 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-stream": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 8adda70d20af3139b3a670d87b0f05c9fc19ea45b288f42bfe9d8edf4d3d2534c9f4b61be12e7877b21aac86bc2614d7573468608dea3e4cccaeac0af8cfe2e0 + languageName: node + linkType: hard + +"@aws-sdk/client-sagemaker@npm:^3.583.0": + version: 3.595.0 + resolution: "@aws-sdk/client-sagemaker@npm:3.595.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 @@ -753,267 +933,68 @@ __metadata: "@smithy/util-middleware": ^3.0.0 "@smithy/util-retry": ^3.0.0 "@smithy/util-utf8": ^3.0.0 + "@smithy/util-waiter": ^3.0.0 tslib: ^2.6.2 - checksum: 2ce5e19512a7547c461a8ce55765a91da71fbd521a07716866b4d9140ed801f39126dd2aad167672ddf3fb69702a3fa3dfd279e026d611b0a1e4211c264c85a9 - languageName: node - linkType: hard - -"@aws-sdk/client-dynamodb@npm:^3.310.0": - version: 3.327.0 - resolution: "@aws-sdk/client-dynamodb@npm:3.327.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.327.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/credential-provider-node": 3.327.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.325.0 - "@aws-sdk/middleware-endpoint": 3.325.0 - "@aws-sdk/middleware-endpoint-discovery": 3.326.0 - "@aws-sdk/middleware-host-header": 3.325.0 - "@aws-sdk/middleware-logger": 3.325.0 - "@aws-sdk/middleware-recursion-detection": 3.325.0 - "@aws-sdk/middleware-retry": 3.327.0 - "@aws-sdk/middleware-serde": 3.325.0 - "@aws-sdk/middleware-signing": 3.325.0 - "@aws-sdk/middleware-stack": 3.325.0 - "@aws-sdk/middleware-user-agent": 3.327.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.321.1 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.325.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.325.0 - "@aws-sdk/util-defaults-mode-node": 3.325.0 - "@aws-sdk/util-endpoints": 3.327.0 - "@aws-sdk/util-retry": 3.327.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - "@aws-sdk/util-waiter": 3.310.0 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: f5f733a0079a11ee5c3f81efc6e6c3d871a11b07841572757820ceb3995dd8d3657e6b973f8519d8608489ecd3352ecedfbb9ee26394fcf18ba98287a2a672ca - languageName: node - linkType: hard - -"@aws-sdk/client-kendra@npm:^3.352.0": - version: 3.359.0 - resolution: "@aws-sdk/client-kendra@npm:3.359.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.359.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/credential-provider-node": 3.358.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.357.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-signing": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.357.0 - "@aws-sdk/smithy-client": 3.358.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.358.0 - "@aws-sdk/util-defaults-mode-node": 3.358.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.357.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: 59276f0bfba2a2d7defde49a348e8ee0155753283f88dc31448748c3f8b0ab789d9d938a4c8ebe73e420fcd7e4ebf8a119da78ca73f8fc0e4fd9fb9b07826e73 - languageName: node - linkType: hard - -"@aws-sdk/client-lambda@npm:^3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/client-lambda@npm:3.310.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.310.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/credential-provider-node": 3.310.0 - "@aws-sdk/eventstream-serde-browser": 3.310.0 - "@aws-sdk/eventstream-serde-config-resolver": 3.310.0 - "@aws-sdk/eventstream-serde-node": 3.310.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.310.0 - "@aws-sdk/middleware-endpoint": 3.310.0 - "@aws-sdk/middleware-host-header": 3.310.0 - "@aws-sdk/middleware-logger": 3.310.0 - "@aws-sdk/middleware-recursion-detection": 3.310.0 - "@aws-sdk/middleware-retry": 3.310.0 - "@aws-sdk/middleware-serde": 3.310.0 - "@aws-sdk/middleware-signing": 3.310.0 - "@aws-sdk/middleware-stack": 3.310.0 - "@aws-sdk/middleware-user-agent": 3.310.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.310.0 - "@aws-sdk/util-defaults-mode-node": 3.310.0 - "@aws-sdk/util-endpoints": 3.310.0 - "@aws-sdk/util-retry": 3.310.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - "@aws-sdk/util-waiter": 3.310.0 - tslib: ^2.5.0 - checksum: e0416e32f25727f4591a1bbca534c3ccd2be6c98d0b8dd4b5954dd417428a38d74da152d34ac62cbf5ba3eb191bb97d83ad756cd04b7078ba8d64b3c13774621 - languageName: node - linkType: hard - -"@aws-sdk/client-s3@npm:^3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/client-s3@npm:3.310.0" - dependencies: - "@aws-crypto/sha1-browser": 3.0.0 - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.310.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/credential-provider-node": 3.310.0 - "@aws-sdk/eventstream-serde-browser": 3.310.0 - "@aws-sdk/eventstream-serde-config-resolver": 3.310.0 - "@aws-sdk/eventstream-serde-node": 3.310.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-blob-browser": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/hash-stream-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/md5-js": 3.310.0 - "@aws-sdk/middleware-bucket-endpoint": 3.310.0 - "@aws-sdk/middleware-content-length": 3.310.0 - "@aws-sdk/middleware-endpoint": 3.310.0 - "@aws-sdk/middleware-expect-continue": 3.310.0 - "@aws-sdk/middleware-flexible-checksums": 3.310.0 - "@aws-sdk/middleware-host-header": 3.310.0 - "@aws-sdk/middleware-location-constraint": 3.310.0 - "@aws-sdk/middleware-logger": 3.310.0 - "@aws-sdk/middleware-recursion-detection": 3.310.0 - "@aws-sdk/middleware-retry": 3.310.0 - "@aws-sdk/middleware-sdk-s3": 3.310.0 - "@aws-sdk/middleware-serde": 3.310.0 - "@aws-sdk/middleware-signing": 3.310.0 - "@aws-sdk/middleware-ssec": 3.310.0 - "@aws-sdk/middleware-stack": 3.310.0 - "@aws-sdk/middleware-user-agent": 3.310.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/signature-v4-multi-region": 3.310.0 - "@aws-sdk/smithy-client": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.310.0 - "@aws-sdk/util-defaults-mode-node": 3.310.0 - "@aws-sdk/util-endpoints": 3.310.0 - "@aws-sdk/util-retry": 3.310.0 - "@aws-sdk/util-stream-browser": 3.310.0 - "@aws-sdk/util-stream-node": 3.310.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - "@aws-sdk/util-waiter": 3.310.0 - "@aws-sdk/xml-builder": 3.310.0 - fast-xml-parser: 4.1.2 - tslib: ^2.5.0 - checksum: b39ef86ca43b6e1a19322c6b227797092c7becc3d084dd27a83e076ca2adeee750eea0a701fc2cb40c5434f5484fbeb8a0802fb908c04c9aa0d7866fead54ae5 + uuid: ^9.0.1 + checksum: d208805eecbb01dd3ee4a1fa121af0038fc370482dd3401a748ade3276a40676a1ab69713e8394484f6b7141c637fc8a44dca0abe0f74d2b5363edf86f2657f1 languageName: node linkType: hard -"@aws-sdk/client-sagemaker-runtime@npm:^3.414.0": - version: 3.427.0 - resolution: "@aws-sdk/client-sagemaker-runtime@npm:3.427.0" +"@aws-sdk/client-sfn@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-sfn@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.427.0 - "@aws-sdk/credential-provider-node": 3.427.0 - "@aws-sdk/middleware-host-header": 3.425.0 - "@aws-sdk/middleware-logger": 3.425.0 - "@aws-sdk/middleware-recursion-detection": 3.425.0 - "@aws-sdk/middleware-signing": 3.425.0 - "@aws-sdk/middleware-user-agent": 3.427.0 - "@aws-sdk/region-config-resolver": 3.425.0 - "@aws-sdk/types": 3.425.0 - "@aws-sdk/util-endpoints": 3.427.0 - "@aws-sdk/util-user-agent-browser": 3.425.0 - "@aws-sdk/util-user-agent-node": 3.425.0 - "@smithy/config-resolver": ^2.0.11 - "@smithy/eventstream-serde-browser": ^2.0.10 - "@smithy/eventstream-serde-config-resolver": ^2.0.10 - "@smithy/eventstream-serde-node": ^2.0.10 - "@smithy/fetch-http-handler": ^2.2.1 - "@smithy/hash-node": ^2.0.10 - "@smithy/invalid-dependency": ^2.0.10 - "@smithy/middleware-content-length": ^2.0.12 - "@smithy/middleware-endpoint": ^2.0.10 - "@smithy/middleware-retry": ^2.0.13 - "@smithy/middleware-serde": ^2.0.10 - "@smithy/middleware-stack": ^2.0.4 - "@smithy/node-config-provider": ^2.0.13 - "@smithy/node-http-handler": ^2.1.6 - "@smithy/protocol-http": ^3.0.6 - "@smithy/smithy-client": ^2.1.9 - "@smithy/types": ^2.3.4 - "@smithy/url-parser": ^2.0.10 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-body-length-browser": ^2.0.0 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.13 - "@smithy/util-defaults-mode-node": ^2.0.15 - "@smithy/util-retry": ^2.0.3 - "@smithy/util-stream": ^2.0.14 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 11039cac34c6ba440f2bb6250628c61f01268db82b30b69a5da3e6a9d52f752a3059cfae2deb5244ad96a8c0c3b1ee0f268930ddf1c48d868fee6dac95113d6c + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-node": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + "@types/uuid": ^9.0.1 + tslib: ^2.6.2 + uuid: ^9.0.1 + checksum: 915b410f4e2d74f3fa540b221190038b900e9314987101b3139d3c54c743472ec6b87f4c27d1ead4e5f2a3243150e8d2cbc6af348568bbbd20566b672a909e01 languageName: node linkType: hard -"@aws-sdk/client-sagemaker@npm:^3.583.0": - version: 3.595.0 - resolution: "@aws-sdk/client-sagemaker@npm:3.595.0" +"@aws-sdk/client-sso-oidc@npm:3.592.0": + version: 3.592.0 + resolution: "@aws-sdk/client-sso-oidc@npm:3.592.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sso-oidc": 3.592.0 "@aws-sdk/client-sts": 3.592.0 "@aws-sdk/core": 3.592.0 "@aws-sdk/credential-provider-node": 3.592.0 @@ -1051,274 +1032,110 @@ __metadata: "@smithy/util-middleware": ^3.0.0 "@smithy/util-retry": ^3.0.0 "@smithy/util-utf8": ^3.0.0 - "@smithy/util-waiter": ^3.0.0 tslib: ^2.6.2 - uuid: ^9.0.1 - checksum: d208805eecbb01dd3ee4a1fa121af0038fc370482dd3401a748ade3276a40676a1ab69713e8394484f6b7141c637fc8a44dca0abe0f74d2b5363edf86f2657f1 - languageName: node - linkType: hard - -"@aws-sdk/client-sfn@npm:^3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/client-sfn@npm:3.362.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.362.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/credential-provider-node": 3.362.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.362.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-signing": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.360.0 - "@aws-sdk/smithy-client": 3.360.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.360.0 - "@aws-sdk/util-defaults-mode-node": 3.360.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.362.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - checksum: 3bb0cf6fcfa36a94be08c90669b4dd1944a94cfb29dc882ac9a47fa4837982a352f985830bb9bffc96f40ba0f3fb7503dd7fa7b00d8aaaa94c11d87ea77fcd5d - languageName: node - linkType: hard - -"@aws-sdk/client-sso-oidc@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.310.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.310.0 - "@aws-sdk/middleware-endpoint": 3.310.0 - "@aws-sdk/middleware-host-header": 3.310.0 - "@aws-sdk/middleware-logger": 3.310.0 - "@aws-sdk/middleware-recursion-detection": 3.310.0 - "@aws-sdk/middleware-retry": 3.310.0 - "@aws-sdk/middleware-serde": 3.310.0 - "@aws-sdk/middleware-stack": 3.310.0 - "@aws-sdk/middleware-user-agent": 3.310.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.310.0 - "@aws-sdk/util-defaults-mode-node": 3.310.0 - "@aws-sdk/util-endpoints": 3.310.0 - "@aws-sdk/util-retry": 3.310.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 7e4a013983978a02e390b621d76716c1649eb7b8889ad239f082b737ef204182879c4ab735a702ebd9c9a5a406c1fefd16c53d7f327db2cbaea88ebbf9bc6123 - languageName: node - linkType: hard - -"@aws-sdk/client-sso-oidc@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.327.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.325.0 - "@aws-sdk/middleware-endpoint": 3.325.0 - "@aws-sdk/middleware-host-header": 3.325.0 - "@aws-sdk/middleware-logger": 3.325.0 - "@aws-sdk/middleware-recursion-detection": 3.325.0 - "@aws-sdk/middleware-retry": 3.327.0 - "@aws-sdk/middleware-serde": 3.325.0 - "@aws-sdk/middleware-stack": 3.325.0 - "@aws-sdk/middleware-user-agent": 3.327.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.321.1 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.325.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.325.0 - "@aws-sdk/util-defaults-mode-node": 3.325.0 - "@aws-sdk/util-endpoints": 3.327.0 - "@aws-sdk/util-retry": 3.327.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: b1d548f46df45423ac42abfd527081b9ca933c0bb62003981450d133a3ab86a87aaa794ededbf4ee7bcfdeff275b462e01f9960c56d24b9b64610e4cb6f1aca1 - languageName: node - linkType: hard - -"@aws-sdk/client-sso-oidc@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.358.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.357.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.357.0 - "@aws-sdk/smithy-client": 3.358.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.358.0 - "@aws-sdk/util-defaults-mode-node": 3.358.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.357.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - checksum: 0453c965fef264f0d73789dbd7288813075e13d91d0992a3871e370f1fb1016c8d8bc0e8d1adef9edc658243047782d0438eac8fabc3e99661b8281858316fa5 - languageName: node - linkType: hard - -"@aws-sdk/client-sso-oidc@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.362.0" - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.362.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.360.0 - "@aws-sdk/smithy-client": 3.360.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.360.0 - "@aws-sdk/util-defaults-mode-node": 3.360.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.362.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - checksum: ed4ab882144a8173dc7aa81ea688eb054521774c396ba496832a851e867684deca26ea64dffba5f58ecd936f85d9412e3a64397c2cb81e8df698f2505b0fd84d + checksum: 31baf5a17e1da21e6f95a2da05663dbfd9f5368dc91f7e0f80ce521cc1e3f32c98ba89b8394069bdb8cafa216929247172437494f38254cf1761c92de09fa7e6 languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.583.0" +"@aws-sdk/client-sso@npm:3.592.0": + version: 3.592.0 + resolution: "@aws-sdk/client-sso@npm:3.592.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.583.0 - "@aws-sdk/core": 3.582.0 - "@aws-sdk/credential-provider-node": 3.583.0 + "@aws-sdk/core": 3.592.0 "@aws-sdk/middleware-host-header": 3.577.0 "@aws-sdk/middleware-logger": 3.577.0 "@aws-sdk/middleware-recursion-detection": 3.577.0 - "@aws-sdk/middleware-user-agent": 3.583.0 - "@aws-sdk/region-config-resolver": 3.577.0 + "@aws-sdk/middleware-user-agent": 3.587.0 + "@aws-sdk/region-config-resolver": 3.587.0 "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.583.0 + "@aws-sdk/util-endpoints": 3.587.0 "@aws-sdk/util-user-agent-browser": 3.577.0 - "@aws-sdk/util-user-agent-node": 3.577.0 - "@smithy/config-resolver": ^3.0.0 - "@smithy/core": ^2.0.1 + "@aws-sdk/util-user-agent-node": 3.587.0 + "@smithy/config-resolver": ^3.0.1 + "@smithy/core": ^2.2.0 "@smithy/fetch-http-handler": ^3.0.1 "@smithy/hash-node": ^3.0.0 "@smithy/invalid-dependency": ^3.0.0 "@smithy/middleware-content-length": ^3.0.0 - "@smithy/middleware-endpoint": ^3.0.0 - "@smithy/middleware-retry": ^3.0.1 + "@smithy/middleware-endpoint": ^3.0.1 + "@smithy/middleware-retry": ^3.0.3 "@smithy/middleware-serde": ^3.0.0 "@smithy/middleware-stack": ^3.0.0 - "@smithy/node-config-provider": ^3.0.0 + "@smithy/node-config-provider": ^3.1.0 "@smithy/node-http-handler": ^3.0.0 "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.0.1 + "@smithy/smithy-client": ^3.1.1 "@smithy/types": ^3.0.0 "@smithy/url-parser": ^3.0.0 "@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.1 - "@smithy/util-defaults-mode-node": ^3.0.1 - "@smithy/util-endpoints": ^2.0.0 + "@smithy/util-defaults-mode-browser": ^3.0.3 + "@smithy/util-defaults-mode-node": ^3.0.3 + "@smithy/util-endpoints": ^2.0.1 "@smithy/util-middleware": ^3.0.0 "@smithy/util-retry": ^3.0.0 "@smithy/util-utf8": ^3.0.0 tslib: ^2.6.2 - checksum: 4f637e5c691560b0609ca8d1ab953379e1124529631d3e32043eb052f6ee65300245a16a8319460dc1a810854be667725be60657222f68b4833f83be03f4d6e7 + checksum: e993043e8438e1cc0445b61de485951e957f0889135b3e34f79b7080852f369b13d516dc6c027f8d3c8ad95cc41666f63f0543e04c10ec9e120b3e025a34367e languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.592.0": +"@aws-sdk/client-sso@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/client-sso@npm:3.749.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 6fbe06b500e61370cf3aa55a22278cd876a65a850adb7a3d6d913b1935cb800d9c20a79498817222ebff29452f345ed0068d39efa933de2ccb85e936a72df4f6 + languageName: node + linkType: hard + +"@aws-sdk/client-sts@npm:3.592.0": version: 3.592.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.592.0" + resolution: "@aws-sdk/client-sts@npm:3.592.0" dependencies: "@aws-crypto/sha256-browser": 3.0.0 "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.592.0 + "@aws-sdk/client-sso-oidc": 3.592.0 "@aws-sdk/core": 3.592.0 "@aws-sdk/credential-provider-node": 3.592.0 "@aws-sdk/middleware-host-header": 3.577.0 @@ -1356,15970 +1173,10789 @@ __metadata: "@smithy/util-retry": ^3.0.0 "@smithy/util-utf8": ^3.0.0 tslib: ^2.6.2 - checksum: 31baf5a17e1da21e6f95a2da05663dbfd9f5368dc91f7e0f80ce521cc1e3f32c98ba89b8394069bdb8cafa216929247172437494f38254cf1761c92de09fa7e6 + checksum: 3675ca053f840a7c3bd8b2413655d69988dd9dff9e1056aa5f3825021c1c7484baddbf1ded1f2e60f1338cecd81d326e28afed39b32b22413b3651cc7157647d languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.600.0": - version: 3.600.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.600.0" +"@aws-sdk/core@npm:3.592.0": + version: 3.592.0 + resolution: "@aws-sdk/core@npm:3.592.0" dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sts": 3.600.0 - "@aws-sdk/core": 3.598.0 - "@aws-sdk/credential-provider-node": 3.600.0 - "@aws-sdk/middleware-host-header": 3.598.0 - "@aws-sdk/middleware-logger": 3.598.0 - "@aws-sdk/middleware-recursion-detection": 3.598.0 - "@aws-sdk/middleware-user-agent": 3.598.0 - "@aws-sdk/region-config-resolver": 3.598.0 - "@aws-sdk/types": 3.598.0 - "@aws-sdk/util-endpoints": 3.598.0 - "@aws-sdk/util-user-agent-browser": 3.598.0 - "@aws-sdk/util-user-agent-node": 3.598.0 - "@smithy/config-resolver": ^3.0.2 - "@smithy/core": ^2.2.1 - "@smithy/fetch-http-handler": ^3.0.2 - "@smithy/hash-node": ^3.0.1 - "@smithy/invalid-dependency": ^3.0.1 - "@smithy/middleware-content-length": ^3.0.1 - "@smithy/middleware-endpoint": ^3.0.2 - "@smithy/middleware-retry": ^3.0.4 - "@smithy/middleware-serde": ^3.0.1 - "@smithy/middleware-stack": ^3.0.1 - "@smithy/node-config-provider": ^3.1.1 - "@smithy/node-http-handler": ^3.0.1 - "@smithy/protocol-http": ^4.0.1 - "@smithy/smithy-client": ^3.1.2 - "@smithy/types": ^3.1.0 - "@smithy/url-parser": ^3.0.1 - "@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.4 - "@smithy/util-defaults-mode-node": ^3.0.4 - "@smithy/util-endpoints": ^2.0.2 - "@smithy/util-middleware": ^3.0.1 - "@smithy/util-retry": ^3.0.1 - "@smithy/util-utf8": ^3.0.0 + "@smithy/core": ^2.2.0 + "@smithy/protocol-http": ^4.0.0 + "@smithy/signature-v4": ^3.0.0 + "@smithy/smithy-client": ^3.1.1 + "@smithy/types": ^3.0.0 + fast-xml-parser: 4.2.5 tslib: ^2.6.2 - checksum: ef7a40ce69de30b25a8a7a5ee035f17e87edc1060c128b3b50f30f19b681aaa7b99b564ffc348cd74fe0e1079bd46087a6784674266d743c45564bcd4d5221b3 + checksum: 10ebbf695358e7bc3d2a84a7add3f52f479605c1ab6d2bd6970aa5846daebff2febf5156fbc5b275e0593c32d973a9f88f528df8280377557a48b87d1b9be5a3 languageName: node linkType: hard -"@aws-sdk/client-sso-oidc@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/client-sso-oidc@npm:3.616.0" +"@aws-sdk/core@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/core@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/core": 3.616.0 - "@aws-sdk/credential-provider-node": 3.616.0 - "@aws-sdk/middleware-host-header": 3.616.0 - "@aws-sdk/middleware-logger": 3.609.0 - "@aws-sdk/middleware-recursion-detection": 3.616.0 - "@aws-sdk/middleware-user-agent": 3.616.0 - "@aws-sdk/region-config-resolver": 3.614.0 - "@aws-sdk/types": 3.609.0 - "@aws-sdk/util-endpoints": 3.614.0 - "@aws-sdk/util-user-agent-browser": 3.609.0 - "@aws-sdk/util-user-agent-node": 3.614.0 - "@smithy/config-resolver": ^3.0.5 - "@smithy/core": ^2.2.7 - "@smithy/fetch-http-handler": ^3.2.2 - "@smithy/hash-node": ^3.0.3 - "@smithy/invalid-dependency": ^3.0.3 - "@smithy/middleware-content-length": ^3.0.4 - "@smithy/middleware-endpoint": ^3.0.5 - "@smithy/middleware-retry": ^3.0.10 - "@smithy/middleware-serde": ^3.0.3 - "@smithy/middleware-stack": ^3.0.3 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/node-http-handler": ^3.1.3 - "@smithy/protocol-http": ^4.0.4 - "@smithy/smithy-client": ^3.1.8 - "@smithy/types": ^3.3.0 - "@smithy/url-parser": ^3.0.3 - "@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.10 - "@smithy/util-defaults-mode-node": ^3.0.10 - "@smithy/util-endpoints": ^2.0.5 - "@smithy/util-middleware": ^3.0.3 - "@smithy/util-retry": ^3.0.3 - "@smithy/util-utf8": ^3.0.0 + "@aws-sdk/types": 3.734.0 + "@smithy/core": ^3.1.3 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/signature-v4": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/util-middleware": ^4.0.1 + fast-xml-parser: 4.4.1 tslib: ^2.6.2 - peerDependencies: - "@aws-sdk/client-sts": ^3.616.0 - checksum: cc6fab0e7369b0dbb7d03dbfcdc4e1dedd9bf395ed468c0c22b0c141ab35fc286d27f54a075584395dd5ca8a134682e9aa119e95b52694fb061aa8c389d6fc42 + checksum: 70425f10e1e2b191f8ac8fddae58a5fc81a57670a3267771133d11b35e8c61e5bae891e7b8ca61164f698d3ce0e885e65c35ba12f1945857e8be80d8676e217c languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/client-sso@npm:3.310.0" +"@aws-sdk/credential-provider-cognito-identity@npm:3.592.0": + version: 3.592.0 + resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.592.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.310.0 - "@aws-sdk/middleware-endpoint": 3.310.0 - "@aws-sdk/middleware-host-header": 3.310.0 - "@aws-sdk/middleware-logger": 3.310.0 - "@aws-sdk/middleware-recursion-detection": 3.310.0 - "@aws-sdk/middleware-retry": 3.310.0 - "@aws-sdk/middleware-serde": 3.310.0 - "@aws-sdk/middleware-stack": 3.310.0 - "@aws-sdk/middleware-user-agent": 3.310.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.310.0 - "@aws-sdk/util-defaults-mode-node": 3.310.0 - "@aws-sdk/util-endpoints": 3.310.0 - "@aws-sdk/util-retry": 3.310.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 5d7461e2102634c336e3748f91f51e9e53c8dc2fa50441535fad8f6926f368131224935b958b05a071d9c61357adfc8db885ac2adb5be9cee94243cecc3454d3 + "@aws-sdk/client-cognito-identity": 3.592.0 + "@aws-sdk/types": 3.577.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + checksum: b18700d445c4289634c91bda9a88391e5fd731bb4b34118be8dd9e1b1216f959829ae2f703a559bf88bceb755fe9962fb7a5acd874111f7d9e6c23c393d777f7 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/client-sso@npm:3.327.0" +"@aws-sdk/credential-provider-env@npm:3.587.0": + version: 3.587.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.587.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.325.0 - "@aws-sdk/middleware-endpoint": 3.325.0 - "@aws-sdk/middleware-host-header": 3.325.0 - "@aws-sdk/middleware-logger": 3.325.0 - "@aws-sdk/middleware-recursion-detection": 3.325.0 - "@aws-sdk/middleware-retry": 3.327.0 - "@aws-sdk/middleware-serde": 3.325.0 - "@aws-sdk/middleware-stack": 3.325.0 - "@aws-sdk/middleware-user-agent": 3.327.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.321.1 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.325.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.325.0 - "@aws-sdk/util-defaults-mode-node": 3.325.0 - "@aws-sdk/util-endpoints": 3.327.0 - "@aws-sdk/util-retry": 3.327.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 90ab140704f4c50ca0ca35555929538ee068ad354d17070825d13aa3c3c6a9473e1f49363e5100a2e5f5c509778dd439c1401618bedfa37009dd7a108ab88384 + "@aws-sdk/types": 3.577.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + checksum: 3062e39c2b0e15eafea50fc2d182de41cba0c4845714b941dd7fb0b75605d7bae51d1919b2b1fdade0c3ec1e470d57ccb00d939898152ed1fbc2c2d265d400b1 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/client-sso@npm:3.358.0" +"@aws-sdk/credential-provider-env@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.357.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.357.0 - "@aws-sdk/smithy-client": 3.358.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.358.0 - "@aws-sdk/util-defaults-mode-node": 3.358.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.357.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - checksum: ee3371ad673ad69bbde5694396d7804a6e2c2a6144a095233e47eec325c17fc5f706909508fa9d7d93c2bef8a1a8849f99486f6c91b230d3fa0a9892135ff93b + "@aws-sdk/core": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 91d6a7c2ac293bb32efff32ee490462830cf7e41448848ba6010ff1853d495f13fcd4b35a19d23561fe08ddceeae081c03e2b54abe9e88c1c3f83ed3447bda24 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/client-sso@npm:3.362.0" +"@aws-sdk/credential-provider-http@npm:3.587.0": + version: 3.587.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.587.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.362.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.360.0 - "@aws-sdk/smithy-client": 3.360.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.360.0 - "@aws-sdk/util-defaults-mode-node": 3.360.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.362.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - checksum: feb0e62183fbe6967a5f75008eef5419e19ec20c445c653b99e3c0ca3c8a3b4a7eeda866061a0dfff00f52aae0c570abe9654ba6e6b55d67cf555057e1808010 + "@aws-sdk/types": 3.577.0 + "@smithy/fetch-http-handler": ^3.0.1 + "@smithy/node-http-handler": ^3.0.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/protocol-http": ^4.0.0 + "@smithy/smithy-client": ^3.1.1 + "@smithy/types": ^3.0.0 + "@smithy/util-stream": ^3.0.1 + tslib: ^2.6.2 + checksum: d662174af1a9b3484ec0e5c176e66ea82f810dc53f865eca3b789bbb14e9d35ce6cf8d298d4e4ea972a91f08195bb27c13c9ce41b624ef8baaa2fb31d9c016ed languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/client-sso@npm:3.387.0" +"@aws-sdk/credential-provider-http@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.387.0 - "@aws-sdk/middleware-logger": 3.387.0 - "@aws-sdk/middleware-recursion-detection": 3.387.0 - "@aws-sdk/middleware-user-agent": 3.387.0 - "@aws-sdk/types": 3.387.0 - "@aws-sdk/util-endpoints": 3.387.0 - "@aws-sdk/util-user-agent-browser": 3.387.0 - "@aws-sdk/util-user-agent-node": 3.387.0 - "@smithy/config-resolver": ^2.0.2 - "@smithy/fetch-http-handler": ^2.0.2 - "@smithy/hash-node": ^2.0.2 - "@smithy/invalid-dependency": ^2.0.2 - "@smithy/middleware-content-length": ^2.0.2 - "@smithy/middleware-endpoint": ^2.0.2 - "@smithy/middleware-retry": ^2.0.2 - "@smithy/middleware-serde": ^2.0.2 - "@smithy/middleware-stack": ^2.0.0 - "@smithy/node-config-provider": ^2.0.2 - "@smithy/node-http-handler": ^2.0.2 - "@smithy/protocol-http": ^2.0.2 - "@smithy/smithy-client": ^2.0.2 - "@smithy/types": ^2.1.0 - "@smithy/url-parser": ^2.0.2 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-body-length-browser": ^2.0.0 - "@smithy/util-body-length-node": ^2.0.0 - "@smithy/util-defaults-mode-browser": ^2.0.2 - "@smithy/util-defaults-mode-node": ^2.0.2 - "@smithy/util-retry": ^2.0.0 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: ca4750675bc39e7201b4b611cd642cb5f37413138a09670499c00ea637509aab0bd54a7b96e6b4a2bec810f12c9c87d0519fc6cad0a7f8a86ecad4bf8047a7ac + "@aws-sdk/core": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/property-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/util-stream": ^4.1.0 + tslib: ^2.6.2 + checksum: ef26b2695971f0628845c3549b6593ea92d0cb6d3f1f0b9b26bd0d5a6020f4892cf54d5122f465e2b0f581785f214d94e3c1194178d2ed546b4dae56c0db6dec languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/client-sso@npm:3.427.0" +"@aws-sdk/credential-provider-ini@npm:3.592.0": + version: 3.592.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.592.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.425.0 - "@aws-sdk/middleware-logger": 3.425.0 - "@aws-sdk/middleware-recursion-detection": 3.425.0 - "@aws-sdk/middleware-user-agent": 3.427.0 - "@aws-sdk/region-config-resolver": 3.425.0 - "@aws-sdk/types": 3.425.0 - "@aws-sdk/util-endpoints": 3.427.0 - "@aws-sdk/util-user-agent-browser": 3.425.0 - "@aws-sdk/util-user-agent-node": 3.425.0 - "@smithy/config-resolver": ^2.0.11 - "@smithy/fetch-http-handler": ^2.2.1 - "@smithy/hash-node": ^2.0.10 - "@smithy/invalid-dependency": ^2.0.10 - "@smithy/middleware-content-length": ^2.0.12 - "@smithy/middleware-endpoint": ^2.0.10 - "@smithy/middleware-retry": ^2.0.13 - "@smithy/middleware-serde": ^2.0.10 - "@smithy/middleware-stack": ^2.0.4 - "@smithy/node-config-provider": ^2.0.13 - "@smithy/node-http-handler": ^2.1.6 - "@smithy/protocol-http": ^3.0.6 - "@smithy/smithy-client": ^2.1.9 - "@smithy/types": ^2.3.4 - "@smithy/url-parser": ^2.0.10 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-body-length-browser": ^2.0.0 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.13 - "@smithy/util-defaults-mode-node": ^2.0.15 - "@smithy/util-retry": ^2.0.3 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 2f7764167f80b933b6acfd9d0cdceecfb6394f2701dc3bed382e1c76b632a626e2e8e4306b5058ace42346d2fc156ca59d7d4771ba22f2f83e6a6be12d01a0b8 + "@aws-sdk/credential-provider-env": 3.587.0 + "@aws-sdk/credential-provider-http": 3.587.0 + "@aws-sdk/credential-provider-process": 3.587.0 + "@aws-sdk/credential-provider-sso": 3.592.0 + "@aws-sdk/credential-provider-web-identity": 3.587.0 + "@aws-sdk/types": 3.577.0 + "@smithy/credential-provider-imds": ^3.1.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/shared-ini-file-loader": ^3.1.0 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + peerDependencies: + "@aws-sdk/client-sts": ^3.592.0 + checksum: 66b07abcfa6ead951d8d8bca9325c79438cec7737d141a978354ad07a4b646f09d71ec6adb84c8174e5045ae7f7fa4adef147bba130f4dc7806780d3d1a4df48 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/client-sso@npm:3.490.0" +"@aws-sdk/credential-provider-ini@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.490.0 - "@aws-sdk/middleware-host-header": 3.489.0 - "@aws-sdk/middleware-logger": 3.489.0 - "@aws-sdk/middleware-recursion-detection": 3.489.0 - "@aws-sdk/middleware-user-agent": 3.489.0 - "@aws-sdk/region-config-resolver": 3.489.0 - "@aws-sdk/types": 3.489.0 - "@aws-sdk/util-endpoints": 3.489.0 - "@aws-sdk/util-user-agent-browser": 3.489.0 - "@aws-sdk/util-user-agent-node": 3.489.0 - "@smithy/config-resolver": ^2.0.23 - "@smithy/core": ^1.2.2 - "@smithy/fetch-http-handler": ^2.3.2 - "@smithy/hash-node": ^2.0.18 - "@smithy/invalid-dependency": ^2.0.16 - "@smithy/middleware-content-length": ^2.0.18 - "@smithy/middleware-endpoint": ^2.3.0 - "@smithy/middleware-retry": ^2.0.26 - "@smithy/middleware-serde": ^2.0.16 - "@smithy/middleware-stack": ^2.0.10 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/node-http-handler": ^2.2.2 - "@smithy/protocol-http": ^3.0.12 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - "@smithy/url-parser": ^2.0.16 - "@smithy/util-base64": ^2.0.1 - "@smithy/util-body-length-browser": ^2.0.1 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.24 - "@smithy/util-defaults-mode-node": ^2.0.32 - "@smithy/util-endpoints": ^1.0.8 - "@smithy/util-retry": ^2.0.9 - "@smithy/util-utf8": ^2.0.2 - tslib: ^2.5.0 - checksum: f09172f7af1de8371dc4bd03ef18f2a260bd9868db9460912d392d0f2bcf4101e8f78eed440db6bd99437a3b8d1c1a107fb3bc904f20f4a99eb0a262c0644b14 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/credential-provider-env": 3.749.0 + "@aws-sdk/credential-provider-http": 3.749.0 + "@aws-sdk/credential-provider-process": 3.749.0 + "@aws-sdk/credential-provider-sso": 3.749.0 + "@aws-sdk/credential-provider-web-identity": 3.749.0 + "@aws-sdk/nested-clients": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/credential-provider-imds": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: e604ea99c2a92ff9f8e494036f0b5b7c50806755ed3f4c66255c74d1fb539bf7102db47cf9d173bb7b86b1be19f13b7f8daf35b5e3c038abdf038e25933f9b5c languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/client-sso@npm:3.583.0" +"@aws-sdk/credential-provider-node@npm:3.592.0": + version: 3.592.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.592.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.582.0 - "@aws-sdk/middleware-host-header": 3.577.0 - "@aws-sdk/middleware-logger": 3.577.0 - "@aws-sdk/middleware-recursion-detection": 3.577.0 - "@aws-sdk/middleware-user-agent": 3.583.0 - "@aws-sdk/region-config-resolver": 3.577.0 + "@aws-sdk/credential-provider-env": 3.587.0 + "@aws-sdk/credential-provider-http": 3.587.0 + "@aws-sdk/credential-provider-ini": 3.592.0 + "@aws-sdk/credential-provider-process": 3.587.0 + "@aws-sdk/credential-provider-sso": 3.592.0 + "@aws-sdk/credential-provider-web-identity": 3.587.0 "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.583.0 - "@aws-sdk/util-user-agent-browser": 3.577.0 - "@aws-sdk/util-user-agent-node": 3.577.0 - "@smithy/config-resolver": ^3.0.0 - "@smithy/core": ^2.0.1 - "@smithy/fetch-http-handler": ^3.0.1 - "@smithy/hash-node": ^3.0.0 - "@smithy/invalid-dependency": ^3.0.0 - "@smithy/middleware-content-length": ^3.0.0 - "@smithy/middleware-endpoint": ^3.0.0 - "@smithy/middleware-retry": ^3.0.1 - "@smithy/middleware-serde": ^3.0.0 - "@smithy/middleware-stack": ^3.0.0 - "@smithy/node-config-provider": ^3.0.0 - "@smithy/node-http-handler": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.0.1 + "@smithy/credential-provider-imds": ^3.1.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/shared-ini-file-loader": ^3.1.0 "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - "@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.1 - "@smithy/util-defaults-mode-node": ^3.0.1 - "@smithy/util-endpoints": ^2.0.0 - "@smithy/util-middleware": ^3.0.0 - "@smithy/util-retry": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 tslib: ^2.6.2 - checksum: b9726eca5adad1b2f90f8b21d70b8c2619257f6b61e026e54caac781c24636ae63fbbf506e6086abd3aead5960fa4c11524c39bc37889e037b13dd565e5828db + checksum: c83bd0370250091d175c4b7f622f679d7ad48a98938b80c0c99fd243acd805b4eb54d3ab199cf6373645dd52b8b4b709e0e3a765a1c061d41043831f0962908b languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.592.0": +"@aws-sdk/credential-provider-node@npm:3.749.0, @aws-sdk/credential-provider-node@npm:^3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.749.0" + dependencies: + "@aws-sdk/credential-provider-env": 3.749.0 + "@aws-sdk/credential-provider-http": 3.749.0 + "@aws-sdk/credential-provider-ini": 3.749.0 + "@aws-sdk/credential-provider-process": 3.749.0 + "@aws-sdk/credential-provider-sso": 3.749.0 + "@aws-sdk/credential-provider-web-identity": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/credential-provider-imds": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: c78252cd36a886161154bf19c1209c8fb40901fa85ec6ac0b43c733577d88ceca6e48518f83b4c9eb4b437d1a9a5f1b0dd22eb813cf662326b534d176ba85ede + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-process@npm:3.587.0": + version: 3.587.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.587.0" + dependencies: + "@aws-sdk/types": 3.577.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/shared-ini-file-loader": ^3.1.0 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + checksum: 20add2fa4ecb513a8f7c376284248bf16601af52d56f30a20b9cb6c77ed811162b2d1d0c364fe27bba50bc6ac1a395c50057351c1d2107837358ef3974d7ff9a + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-process@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.749.0" + dependencies: + "@aws-sdk/core": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 253fa5d49f7082e874be470f0736bd07d70b7de2a2c797549908c5f4085d603358e8988b398068cddf8a035ca297cd7ffe8bba38eb3ffd72b51513736ef25553 + languageName: node + linkType: hard + +"@aws-sdk/credential-provider-sso@npm:3.592.0": version: 3.592.0 - resolution: "@aws-sdk/client-sso@npm:3.592.0" + resolution: "@aws-sdk/credential-provider-sso@npm:3.592.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.592.0 - "@aws-sdk/middleware-host-header": 3.577.0 - "@aws-sdk/middleware-logger": 3.577.0 - "@aws-sdk/middleware-recursion-detection": 3.577.0 - "@aws-sdk/middleware-user-agent": 3.587.0 - "@aws-sdk/region-config-resolver": 3.587.0 + "@aws-sdk/client-sso": 3.592.0 + "@aws-sdk/token-providers": 3.587.0 "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.587.0 - "@aws-sdk/util-user-agent-browser": 3.577.0 - "@aws-sdk/util-user-agent-node": 3.587.0 - "@smithy/config-resolver": ^3.0.1 - "@smithy/core": ^2.2.0 - "@smithy/fetch-http-handler": ^3.0.1 - "@smithy/hash-node": ^3.0.0 - "@smithy/invalid-dependency": ^3.0.0 - "@smithy/middleware-content-length": ^3.0.0 - "@smithy/middleware-endpoint": ^3.0.1 - "@smithy/middleware-retry": ^3.0.3 - "@smithy/middleware-serde": ^3.0.0 - "@smithy/middleware-stack": ^3.0.0 - "@smithy/node-config-provider": ^3.1.0 - "@smithy/node-http-handler": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.1.1 + "@smithy/property-provider": ^3.1.0 + "@smithy/shared-ini-file-loader": ^3.1.0 "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - "@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.3 - "@smithy/util-defaults-mode-node": ^3.0.3 - "@smithy/util-endpoints": ^2.0.1 - "@smithy/util-middleware": ^3.0.0 - "@smithy/util-retry": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 tslib: ^2.6.2 - checksum: e993043e8438e1cc0445b61de485951e957f0889135b3e34f79b7080852f369b13d516dc6c027f8d3c8ad95cc41666f63f0543e04c10ec9e120b3e025a34367e + checksum: 5bc46040e521789a091b06d2d09931bd4254a3ece63f3370ec448cd58d0185821a39369efe47478cd6a0cd8911c4d93e52414ecca91ff72ed95b8813b619d93d languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/client-sso@npm:3.598.0" +"@aws-sdk/credential-provider-sso@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/core": 3.598.0 - "@aws-sdk/middleware-host-header": 3.598.0 - "@aws-sdk/middleware-logger": 3.598.0 - "@aws-sdk/middleware-recursion-detection": 3.598.0 - "@aws-sdk/middleware-user-agent": 3.598.0 - "@aws-sdk/region-config-resolver": 3.598.0 - "@aws-sdk/types": 3.598.0 - "@aws-sdk/util-endpoints": 3.598.0 - "@aws-sdk/util-user-agent-browser": 3.598.0 - "@aws-sdk/util-user-agent-node": 3.598.0 - "@smithy/config-resolver": ^3.0.2 - "@smithy/core": ^2.2.1 - "@smithy/fetch-http-handler": ^3.0.2 - "@smithy/hash-node": ^3.0.1 - "@smithy/invalid-dependency": ^3.0.1 - "@smithy/middleware-content-length": ^3.0.1 - "@smithy/middleware-endpoint": ^3.0.2 - "@smithy/middleware-retry": ^3.0.4 - "@smithy/middleware-serde": ^3.0.1 - "@smithy/middleware-stack": ^3.0.1 - "@smithy/node-config-provider": ^3.1.1 - "@smithy/node-http-handler": ^3.0.1 - "@smithy/protocol-http": ^4.0.1 - "@smithy/smithy-client": ^3.1.2 - "@smithy/types": ^3.1.0 - "@smithy/url-parser": ^3.0.1 - "@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.4 - "@smithy/util-defaults-mode-node": ^3.0.4 - "@smithy/util-endpoints": ^2.0.2 - "@smithy/util-middleware": ^3.0.1 - "@smithy/util-retry": ^3.0.1 - "@smithy/util-utf8": ^3.0.0 + "@aws-sdk/client-sso": 3.749.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/token-providers": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: b570f54643ac0ab0f300bf074e77c2fbba70206a11d2aed1f6ecd361027f2f6a1d62719627e905bcb44dd73d481a29ef5a70878c676386afe2a133f479a445d4 + checksum: 3a056d5782b6f71b23e07f9c5803398e9a7c137920068353674650494ad5dfdec2c53c08736036946f433a71377855c7a25cd83c14f52166c0696a8839874400 languageName: node linkType: hard -"@aws-sdk/client-sso@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/client-sso@npm:3.616.0" +"@aws-sdk/credential-provider-web-identity@npm:3.587.0": + version: 3.587.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.587.0" dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/core": 3.616.0 - "@aws-sdk/middleware-host-header": 3.616.0 - "@aws-sdk/middleware-logger": 3.609.0 - "@aws-sdk/middleware-recursion-detection": 3.616.0 - "@aws-sdk/middleware-user-agent": 3.616.0 - "@aws-sdk/region-config-resolver": 3.614.0 - "@aws-sdk/types": 3.609.0 - "@aws-sdk/util-endpoints": 3.614.0 - "@aws-sdk/util-user-agent-browser": 3.609.0 - "@aws-sdk/util-user-agent-node": 3.614.0 - "@smithy/config-resolver": ^3.0.5 - "@smithy/core": ^2.2.7 - "@smithy/fetch-http-handler": ^3.2.2 - "@smithy/hash-node": ^3.0.3 - "@smithy/invalid-dependency": ^3.0.3 - "@smithy/middleware-content-length": ^3.0.4 - "@smithy/middleware-endpoint": ^3.0.5 - "@smithy/middleware-retry": ^3.0.10 - "@smithy/middleware-serde": ^3.0.3 - "@smithy/middleware-stack": ^3.0.3 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/node-http-handler": ^3.1.3 - "@smithy/protocol-http": ^4.0.4 - "@smithy/smithy-client": ^3.1.8 - "@smithy/types": ^3.3.0 - "@smithy/url-parser": ^3.0.3 - "@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.10 - "@smithy/util-defaults-mode-node": ^3.0.10 - "@smithy/util-endpoints": ^2.0.5 - "@smithy/util-middleware": ^3.0.3 - "@smithy/util-retry": ^3.0.3 - "@smithy/util-utf8": ^3.0.0 + "@aws-sdk/types": 3.577.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: 0a0d5560a84b381caad36264cc3760a0aa2c1dfa980429dc55c582447e7e7242f0947963815f7b91c0b92fc4b3b95507fd37cf9eb155b5409a6f9303f6efaed7 + peerDependencies: + "@aws-sdk/client-sts": ^3.587.0 + checksum: bfade039dcf35041fc020832363840e8fd6d7e21afbab35945852f62bb718bc954a59cb78911ea3ce6f9aaca4184f4934ba269f713ff811d06fcef1332af8cba languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/client-sts@npm:3.310.0" +"@aws-sdk/credential-provider-web-identity@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/credential-provider-node": 3.310.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.310.0 - "@aws-sdk/middleware-endpoint": 3.310.0 - "@aws-sdk/middleware-host-header": 3.310.0 - "@aws-sdk/middleware-logger": 3.310.0 - "@aws-sdk/middleware-recursion-detection": 3.310.0 - "@aws-sdk/middleware-retry": 3.310.0 - "@aws-sdk/middleware-sdk-sts": 3.310.0 - "@aws-sdk/middleware-serde": 3.310.0 - "@aws-sdk/middleware-signing": 3.310.0 - "@aws-sdk/middleware-stack": 3.310.0 - "@aws-sdk/middleware-user-agent": 3.310.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.310.0 - "@aws-sdk/util-defaults-mode-node": 3.310.0 - "@aws-sdk/util-endpoints": 3.310.0 - "@aws-sdk/util-retry": 3.310.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - fast-xml-parser: 4.1.2 - tslib: ^2.5.0 - checksum: 45097c36e79e9fe7844321331e37181e4a448209cd5263ddb4d162da24a68dd8655a335f373ff1b121beba43b333937bec14727bc984543923f9b817f5ff7fa0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/nested-clients": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: ff478901866f59a60b9e4632b9afcc106e09070efd4499e9001329e50595a6bf5b520351a7d4c96cbfaf2febbd75a97bcbebf9b796a624ad107cad28a7292885 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/client-sts@npm:3.327.0" +"@aws-sdk/credential-providers@npm:^3.583.0": + version: 3.592.0 + resolution: "@aws-sdk/credential-providers@npm:3.592.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/credential-provider-node": 3.327.0 - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/hash-node": 3.310.0 - "@aws-sdk/invalid-dependency": 3.310.0 - "@aws-sdk/middleware-content-length": 3.325.0 - "@aws-sdk/middleware-endpoint": 3.325.0 - "@aws-sdk/middleware-host-header": 3.325.0 - "@aws-sdk/middleware-logger": 3.325.0 - "@aws-sdk/middleware-recursion-detection": 3.325.0 - "@aws-sdk/middleware-retry": 3.327.0 - "@aws-sdk/middleware-sdk-sts": 3.326.0 - "@aws-sdk/middleware-serde": 3.325.0 - "@aws-sdk/middleware-signing": 3.325.0 - "@aws-sdk/middleware-stack": 3.325.0 - "@aws-sdk/middleware-user-agent": 3.327.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/node-http-handler": 3.321.1 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/smithy-client": 3.325.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.325.0 - "@aws-sdk/util-defaults-mode-node": 3.325.0 - "@aws-sdk/util-endpoints": 3.327.0 - "@aws-sdk/util-retry": 3.327.0 - "@aws-sdk/util-user-agent-browser": 3.310.0 - "@aws-sdk/util-user-agent-node": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - fast-xml-parser: 4.1.2 - tslib: ^2.5.0 - checksum: f77a8793f4c0112400fc1df5fe4a341575fce52c824b3b6598249a6235f12b31fcd13818e42047ea464c4e7b4718d59fdf7fe84438372226cdb43756a26ed4f8 + "@aws-sdk/client-cognito-identity": 3.592.0 + "@aws-sdk/client-sso": 3.592.0 + "@aws-sdk/client-sts": 3.592.0 + "@aws-sdk/credential-provider-cognito-identity": 3.592.0 + "@aws-sdk/credential-provider-env": 3.587.0 + "@aws-sdk/credential-provider-http": 3.587.0 + "@aws-sdk/credential-provider-ini": 3.592.0 + "@aws-sdk/credential-provider-node": 3.592.0 + "@aws-sdk/credential-provider-process": 3.587.0 + "@aws-sdk/credential-provider-sso": 3.592.0 + "@aws-sdk/credential-provider-web-identity": 3.587.0 + "@aws-sdk/types": 3.577.0 + "@smithy/credential-provider-imds": ^3.1.0 + "@smithy/property-provider": ^3.1.0 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + checksum: 558122c1580eda3437b8e25f180660d1f890602930baf265059fa4d460e8928ff4fd5b7240268157ff562f2918992921336874b0ea36b06811c2b157c893bbb3 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.359.0": - version: 3.359.0 - resolution: "@aws-sdk/client-sts@npm:3.359.0" +"@aws-sdk/endpoint-cache@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/endpoint-cache@npm:3.723.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/credential-provider-node": 3.358.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.357.0 - "@aws-sdk/middleware-sdk-sts": 3.357.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-signing": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.357.0 - "@aws-sdk/smithy-client": 3.358.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.358.0 - "@aws-sdk/util-defaults-mode-node": 3.358.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.357.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - fast-xml-parser: 4.2.5 - tslib: ^2.5.0 - checksum: 12b6ac49dca0eb782802c0eb32e9af31bf0235daf9303458fc6f5f3a55cc0bda0d4f2f965389775e83cbd9ef4ba0e5573c484535faea2ff101ef4e06e1956c9e + mnemonist: 0.38.3 + tslib: ^2.6.2 + checksum: a62c9fe468424b6f000247d89337598c1472e6b05f77f2eccb9fe254c10f557d1f5674e71e0414533631fa445425934ee11a8775d1fdfbe389c58299041e9078 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/client-sts@npm:3.362.0" +"@aws-sdk/middleware-bucket-endpoint@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.734.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/credential-provider-node": 3.362.0 - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/hash-node": 3.357.0 - "@aws-sdk/invalid-dependency": 3.357.0 - "@aws-sdk/middleware-content-length": 3.357.0 - "@aws-sdk/middleware-endpoint": 3.357.0 - "@aws-sdk/middleware-host-header": 3.357.0 - "@aws-sdk/middleware-logger": 3.357.0 - "@aws-sdk/middleware-recursion-detection": 3.357.0 - "@aws-sdk/middleware-retry": 3.362.0 - "@aws-sdk/middleware-sdk-sts": 3.357.0 - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/middleware-signing": 3.357.0 - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/middleware-user-agent": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/node-http-handler": 3.360.0 - "@aws-sdk/smithy-client": 3.360.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-body-length-browser": 3.310.0 - "@aws-sdk/util-body-length-node": 3.310.0 - "@aws-sdk/util-defaults-mode-browser": 3.360.0 - "@aws-sdk/util-defaults-mode-node": 3.360.0 - "@aws-sdk/util-endpoints": 3.357.0 - "@aws-sdk/util-retry": 3.362.0 - "@aws-sdk/util-user-agent-browser": 3.357.0 - "@aws-sdk/util-user-agent-node": 3.357.0 - "@aws-sdk/util-utf8": 3.310.0 - "@smithy/protocol-http": ^1.0.1 - "@smithy/types": ^1.0.0 - fast-xml-parser: 4.2.5 - tslib: ^2.5.0 - checksum: b9a5014e7376b849197a3bad2e0f1631aa6c0d6aab9a5dd9bf76c4e689c1f411383a0e4f1dca0a6cd43f7657f7cb7314b0a34d81e0e166552feb7d85bbd689b3 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-arn-parser": 3.723.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-config-provider": ^4.0.0 + tslib: ^2.6.2 + checksum: 2c9d0979d66d16223300968c53ac44f294b275a1e3aea691d39c57c2f9a6b7fb57d826a72ac690e3664ca87c731abb7a7d99a2ab9625d96924eb65ee18fb15de languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/client-sts@npm:3.427.0" +"@aws-sdk/middleware-endpoint-discovery@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.734.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/credential-provider-node": 3.427.0 - "@aws-sdk/middleware-host-header": 3.425.0 - "@aws-sdk/middleware-logger": 3.425.0 - "@aws-sdk/middleware-recursion-detection": 3.425.0 - "@aws-sdk/middleware-sdk-sts": 3.425.0 - "@aws-sdk/middleware-signing": 3.425.0 - "@aws-sdk/middleware-user-agent": 3.427.0 - "@aws-sdk/region-config-resolver": 3.425.0 - "@aws-sdk/types": 3.425.0 - "@aws-sdk/util-endpoints": 3.427.0 - "@aws-sdk/util-user-agent-browser": 3.425.0 - "@aws-sdk/util-user-agent-node": 3.425.0 - "@smithy/config-resolver": ^2.0.11 - "@smithy/fetch-http-handler": ^2.2.1 - "@smithy/hash-node": ^2.0.10 - "@smithy/invalid-dependency": ^2.0.10 - "@smithy/middleware-content-length": ^2.0.12 - "@smithy/middleware-endpoint": ^2.0.10 - "@smithy/middleware-retry": ^2.0.13 - "@smithy/middleware-serde": ^2.0.10 - "@smithy/middleware-stack": ^2.0.4 - "@smithy/node-config-provider": ^2.0.13 - "@smithy/node-http-handler": ^2.1.6 - "@smithy/protocol-http": ^3.0.6 - "@smithy/smithy-client": ^2.1.9 - "@smithy/types": ^2.3.4 - "@smithy/url-parser": ^2.0.10 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-body-length-browser": ^2.0.0 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.13 - "@smithy/util-defaults-mode-node": ^2.0.15 - "@smithy/util-retry": ^2.0.3 - "@smithy/util-utf8": ^2.0.0 - fast-xml-parser: 4.2.5 - tslib: ^2.5.0 - checksum: 7bfa24538fd47b68847c48b39b15aae66b640db44d7689a884587f137d386d67843b5c28e1945adb8fdf007e09ca3ade70e1e5d655175950296b602a8fd90b72 + "@aws-sdk/endpoint-cache": 3.723.0 + "@aws-sdk/types": 3.734.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: d508fbf7b8f85470cd81beeec2b79b511bbd3d175cc06c0bd1226f00665c2be84c6f2c1464f004b72cffb7f4b454cd065327e6939cfc1afd3a64dc225e174b4a languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/client-sts@npm:3.490.0" +"@aws-sdk/middleware-expect-continue@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-expect-continue@npm:3.734.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.490.0 - "@aws-sdk/credential-provider-node": 3.490.0 - "@aws-sdk/middleware-host-header": 3.489.0 - "@aws-sdk/middleware-logger": 3.489.0 - "@aws-sdk/middleware-recursion-detection": 3.489.0 - "@aws-sdk/middleware-user-agent": 3.489.0 - "@aws-sdk/region-config-resolver": 3.489.0 - "@aws-sdk/types": 3.489.0 - "@aws-sdk/util-endpoints": 3.489.0 - "@aws-sdk/util-user-agent-browser": 3.489.0 - "@aws-sdk/util-user-agent-node": 3.489.0 - "@smithy/config-resolver": ^2.0.23 - "@smithy/core": ^1.2.2 - "@smithy/fetch-http-handler": ^2.3.2 - "@smithy/hash-node": ^2.0.18 - "@smithy/invalid-dependency": ^2.0.16 - "@smithy/middleware-content-length": ^2.0.18 - "@smithy/middleware-endpoint": ^2.3.0 - "@smithy/middleware-retry": ^2.0.26 - "@smithy/middleware-serde": ^2.0.16 - "@smithy/middleware-stack": ^2.0.10 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/node-http-handler": ^2.2.2 - "@smithy/protocol-http": ^3.0.12 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - "@smithy/url-parser": ^2.0.16 - "@smithy/util-base64": ^2.0.1 - "@smithy/util-body-length-browser": ^2.0.1 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.24 - "@smithy/util-defaults-mode-node": ^2.0.32 - "@smithy/util-endpoints": ^1.0.8 - "@smithy/util-middleware": ^2.0.9 - "@smithy/util-retry": ^2.0.9 - "@smithy/util-utf8": ^2.0.2 - fast-xml-parser: 4.2.5 - tslib: ^2.5.0 - checksum: 0fffd52bfae00c2e1beacf2cc58924131097efb7022a72f2d8c00e93e9c00ceb584d085b92160a2798d761726c7ca8492da5a7e8665d103a658ad96f9633e04e + "@aws-sdk/types": 3.734.0 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 424ad0fecdd903d3f5d7695bc46b246359c1808e99c2fb00427430777cc16110072c1dff35a44ff6b7f597a3ea6df2658fc0f8c972456e7e4684abd7fe83865c languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/client-sts@npm:3.583.0" +"@aws-sdk/middleware-flexible-checksums@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.749.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sso-oidc": 3.583.0 - "@aws-sdk/core": 3.582.0 - "@aws-sdk/credential-provider-node": 3.583.0 - "@aws-sdk/middleware-host-header": 3.577.0 - "@aws-sdk/middleware-logger": 3.577.0 - "@aws-sdk/middleware-recursion-detection": 3.577.0 - "@aws-sdk/middleware-user-agent": 3.583.0 - "@aws-sdk/region-config-resolver": 3.577.0 - "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.583.0 - "@aws-sdk/util-user-agent-browser": 3.577.0 - "@aws-sdk/util-user-agent-node": 3.577.0 - "@smithy/config-resolver": ^3.0.0 - "@smithy/core": ^2.0.1 - "@smithy/fetch-http-handler": ^3.0.1 - "@smithy/hash-node": ^3.0.0 - "@smithy/invalid-dependency": ^3.0.0 - "@smithy/middleware-content-length": ^3.0.0 - "@smithy/middleware-endpoint": ^3.0.0 - "@smithy/middleware-retry": ^3.0.1 - "@smithy/middleware-serde": ^3.0.0 - "@smithy/middleware-stack": ^3.0.0 - "@smithy/node-config-provider": ^3.0.0 - "@smithy/node-http-handler": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.0.1 - "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - "@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.1 - "@smithy/util-defaults-mode-node": ^3.0.1 - "@smithy/util-endpoints": ^2.0.0 - "@smithy/util-middleware": ^3.0.0 - "@smithy/util-retry": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 + "@aws-crypto/crc32": 5.2.0 + "@aws-crypto/crc32c": 5.2.0 + "@aws-crypto/util": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/is-array-buffer": ^4.0.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-stream": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: a38f6996369c16f839e9d8a6e9f70937679f267efea83854ed43e6ca79342cd7e3caf6942672935a3ea818ebec64ea4caec0b69a2d1fa5adc170dd573cc09ecd + checksum: bd5f63688ed0ef92d717ae77d7a87b91dd7c2230e581b377629b154daaee18083a4060bf8ef1b09538afacbd3c8bbe463a061aaf3bc5a4d716d6bfb74c54e2d1 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.592.0": - version: 3.592.0 - resolution: "@aws-sdk/client-sts@npm:3.592.0" +"@aws-sdk/middleware-host-header@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.577.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sso-oidc": 3.592.0 - "@aws-sdk/core": 3.592.0 - "@aws-sdk/credential-provider-node": 3.592.0 - "@aws-sdk/middleware-host-header": 3.577.0 - "@aws-sdk/middleware-logger": 3.577.0 - "@aws-sdk/middleware-recursion-detection": 3.577.0 - "@aws-sdk/middleware-user-agent": 3.587.0 - "@aws-sdk/region-config-resolver": 3.587.0 "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.587.0 - "@aws-sdk/util-user-agent-browser": 3.577.0 - "@aws-sdk/util-user-agent-node": 3.587.0 - "@smithy/config-resolver": ^3.0.1 - "@smithy/core": ^2.2.0 - "@smithy/fetch-http-handler": ^3.0.1 - "@smithy/hash-node": ^3.0.0 - "@smithy/invalid-dependency": ^3.0.0 - "@smithy/middleware-content-length": ^3.0.0 - "@smithy/middleware-endpoint": ^3.0.1 - "@smithy/middleware-retry": ^3.0.3 - "@smithy/middleware-serde": ^3.0.0 - "@smithy/middleware-stack": ^3.0.0 - "@smithy/node-config-provider": ^3.1.0 - "@smithy/node-http-handler": ^3.0.0 "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.1.1 "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - "@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.3 - "@smithy/util-defaults-mode-node": ^3.0.3 - "@smithy/util-endpoints": ^2.0.1 - "@smithy/util-middleware": ^3.0.0 - "@smithy/util-retry": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 tslib: ^2.6.2 - checksum: 3675ca053f840a7c3bd8b2413655d69988dd9dff9e1056aa5f3825021c1c7484baddbf1ded1f2e60f1338cecd81d326e28afed39b32b22413b3651cc7157647d + checksum: f325612558d8d56a13e0593a78a1807c55dac5913313ed53d0a09a1c4bc771976e74e1738bd46068adeea755c35f72b19c2f902ecad1ff1ae52290972cf9fe88 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.600.0": - version: 3.600.0 - resolution: "@aws-sdk/client-sts@npm:3.600.0" +"@aws-sdk/middleware-host-header@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-host-header@npm:3.734.0" dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sso-oidc": 3.600.0 - "@aws-sdk/core": 3.598.0 - "@aws-sdk/credential-provider-node": 3.600.0 - "@aws-sdk/middleware-host-header": 3.598.0 - "@aws-sdk/middleware-logger": 3.598.0 - "@aws-sdk/middleware-recursion-detection": 3.598.0 - "@aws-sdk/middleware-user-agent": 3.598.0 - "@aws-sdk/region-config-resolver": 3.598.0 - "@aws-sdk/types": 3.598.0 - "@aws-sdk/util-endpoints": 3.598.0 - "@aws-sdk/util-user-agent-browser": 3.598.0 - "@aws-sdk/util-user-agent-node": 3.598.0 - "@smithy/config-resolver": ^3.0.2 - "@smithy/core": ^2.2.1 - "@smithy/fetch-http-handler": ^3.0.2 - "@smithy/hash-node": ^3.0.1 - "@smithy/invalid-dependency": ^3.0.1 - "@smithy/middleware-content-length": ^3.0.1 - "@smithy/middleware-endpoint": ^3.0.2 - "@smithy/middleware-retry": ^3.0.4 - "@smithy/middleware-serde": ^3.0.1 - "@smithy/middleware-stack": ^3.0.1 - "@smithy/node-config-provider": ^3.1.1 - "@smithy/node-http-handler": ^3.0.1 - "@smithy/protocol-http": ^4.0.1 - "@smithy/smithy-client": ^3.1.2 - "@smithy/types": ^3.1.0 - "@smithy/url-parser": ^3.0.1 - "@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.4 - "@smithy/util-defaults-mode-node": ^3.0.4 - "@smithy/util-endpoints": ^2.0.2 - "@smithy/util-middleware": ^3.0.1 - "@smithy/util-retry": ^3.0.1 - "@smithy/util-utf8": ^3.0.0 + "@aws-sdk/types": 3.734.0 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 47d6d145d481c8dc285b68baccf36ab76b92ed1fbf5a58a0900bbe913a7caf3eddc84414428b013e58c91242e7ffd5a55b0620217dc295c75c2729ccb89b9ae8 + checksum: 38e313f72bb76335c53184954b46fc33c8d05abb35ac19ca177ae0194d4817e84c1c9410607b3e236329736f9b302f4d4428b6ecdbf6dacd2fd258e03fea2958 languageName: node linkType: hard -"@aws-sdk/client-sts@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/client-sts@npm:3.616.0" +"@aws-sdk/middleware-location-constraint@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-location-constraint@npm:3.734.0" dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sso-oidc": 3.616.0 - "@aws-sdk/core": 3.616.0 - "@aws-sdk/credential-provider-node": 3.616.0 - "@aws-sdk/middleware-host-header": 3.616.0 - "@aws-sdk/middleware-logger": 3.609.0 - "@aws-sdk/middleware-recursion-detection": 3.616.0 - "@aws-sdk/middleware-user-agent": 3.616.0 - "@aws-sdk/region-config-resolver": 3.614.0 - "@aws-sdk/types": 3.609.0 - "@aws-sdk/util-endpoints": 3.614.0 - "@aws-sdk/util-user-agent-browser": 3.609.0 - "@aws-sdk/util-user-agent-node": 3.614.0 - "@smithy/config-resolver": ^3.0.5 - "@smithy/core": ^2.2.7 - "@smithy/fetch-http-handler": ^3.2.2 - "@smithy/hash-node": ^3.0.3 - "@smithy/invalid-dependency": ^3.0.3 - "@smithy/middleware-content-length": ^3.0.4 - "@smithy/middleware-endpoint": ^3.0.5 - "@smithy/middleware-retry": ^3.0.10 - "@smithy/middleware-serde": ^3.0.3 - "@smithy/middleware-stack": ^3.0.3 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/node-http-handler": ^3.1.3 - "@smithy/protocol-http": ^4.0.4 - "@smithy/smithy-client": ^3.1.8 - "@smithy/types": ^3.3.0 - "@smithy/url-parser": ^3.0.3 - "@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.10 - "@smithy/util-defaults-mode-node": ^3.0.10 - "@smithy/util-endpoints": ^2.0.5 - "@smithy/util-middleware": ^3.0.3 - "@smithy/util-retry": ^3.0.3 - "@smithy/util-utf8": ^3.0.0 + "@aws-sdk/types": 3.734.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: bad2619661085259ccfa2cd95f721ed1dc479c6871a8927648d182c6fbe3d25989a904d6b9430eac762c1d2a25d370a89879b9d1f2375f2cbfa869949288643f - languageName: node - linkType: hard - -"@aws-sdk/config-resolver@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/config-resolver@npm:3.310.0" - dependencies: - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-config-provider": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - tslib: ^2.5.0 - checksum: ec80bc867304344d04b6d6bbf369234e7d296540ffb988c3f29bf96ea5e3ac959f86a699c8eecef3fea87491fd413aaed3137e4f7a89544cceedf09cce1c9a15 - languageName: node - linkType: hard - -"@aws-sdk/config-resolver@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/config-resolver@npm:3.357.0" - dependencies: - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-config-provider": 3.310.0 - "@aws-sdk/util-middleware": 3.357.0 - tslib: ^2.5.0 - checksum: ea2d608b1a4257a8c70c12fec9bdc0ddc2ea8e2d61597053f8713677426aaf9ea2a2be2fdaea430f4b95c3d1c9830d5994db7c760a40cb066b3646fb14ff5339 + checksum: 0d60660957f34ba06bcf13aeca802ddaa11952aa3279b9abb91ed6abd869bd37cede51d4308968dd25d270a7c142dc9e701ccb52149dafc0ffa78e8063ce23b0 languageName: node linkType: hard -"@aws-sdk/core@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/core@npm:3.490.0" +"@aws-sdk/middleware-logger@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-logger@npm:3.577.0" dependencies: - "@smithy/core": ^1.2.2 - "@smithy/protocol-http": ^3.0.12 - "@smithy/signature-v4": ^2.0.0 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 8d711ba4373b4ee074f5a225642cb91cd0052daf1e2880da1f5bd1b38197ea5c7888a4181710f715393f83618aacc4465262f9a80de8f4faf2644d5832e455b5 + "@aws-sdk/types": 3.577.0 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + checksum: 142e993c82997391fb9c66244f2add15ad71e626b9aacf36a81ea369d33e3a1375ece09dd6315bf8fcaf4d8dcbaae340237088f1091f12a8f56740eddb32090a languageName: node linkType: hard -"@aws-sdk/core@npm:3.582.0": - version: 3.582.0 - resolution: "@aws-sdk/core@npm:3.582.0" +"@aws-sdk/middleware-logger@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-logger@npm:3.734.0" dependencies: - "@smithy/core": ^2.0.1 - "@smithy/protocol-http": ^4.0.0 - "@smithy/signature-v4": ^3.0.0 - "@smithy/smithy-client": ^3.0.1 - "@smithy/types": ^3.0.0 - fast-xml-parser: 4.2.5 + "@aws-sdk/types": 3.734.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 78f50015a7a13588c120a9a1a4a71bba2d04541aebaebe69249a083bf7ca0bdd3fc7a2985a88c386e77aeadc861470cc5aa56eaa24ec2f10981e4530cf6a57f9 + checksum: e7f8a96c5d3d15e894c36c67ae76beb6059f840c5bfce93f13adf916830053910fe5bfc0473d5da64590a5fae24ae131600b1ddd36322171ff88cdbc6a24fb6a languageName: node linkType: hard -"@aws-sdk/core@npm:3.592.0": - version: 3.592.0 - resolution: "@aws-sdk/core@npm:3.592.0" +"@aws-sdk/middleware-recursion-detection@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.577.0" dependencies: - "@smithy/core": ^2.2.0 + "@aws-sdk/types": 3.577.0 "@smithy/protocol-http": ^4.0.0 - "@smithy/signature-v4": ^3.0.0 - "@smithy/smithy-client": ^3.1.1 "@smithy/types": ^3.0.0 - fast-xml-parser: 4.2.5 tslib: ^2.6.2 - checksum: 10ebbf695358e7bc3d2a84a7add3f52f479605c1ab6d2bd6970aa5846daebff2febf5156fbc5b275e0593c32d973a9f88f528df8280377557a48b87d1b9be5a3 + checksum: 9655fe7b9a071a9a62397871a7bc529ebfff372a2cd1997b78c22ff320b0cdf0224881c122375e0b97e7307a167d437f438f6c414db71c882afb66a0510a519e languageName: node linkType: hard -"@aws-sdk/core@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/core@npm:3.598.0" +"@aws-sdk/middleware-recursion-detection@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-recursion-detection@npm:3.734.0" dependencies: - "@smithy/core": ^2.2.1 - "@smithy/protocol-http": ^4.0.1 - "@smithy/signature-v4": ^3.1.0 - "@smithy/smithy-client": ^3.1.2 - "@smithy/types": ^3.1.0 - fast-xml-parser: 4.2.5 + "@aws-sdk/types": 3.734.0 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 96a53708582706fdd24893eb0bb0c6a04d3b4544a8888817d14a95d99170fbe5a4365d68d556474664efb53857d0621e999c1faaff686068c8c54c8a68da8ca8 + languageName: node + linkType: hard + +"@aws-sdk/middleware-sdk-s3@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/middleware-sdk-s3@npm:3.749.0" + dependencies: + "@aws-sdk/core": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-arn-parser": 3.723.0 + "@smithy/core": ^3.1.3 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/signature-v4": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/util-config-provider": ^4.0.0 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-stream": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: e58944a6571808b53d21f012b9671ffec597d2a826a9c0f1fbcbe160189a3c47f5b4671ac92b7437c349f19b8a8df7e12255c57795ab0224c318ed69a0d23229 + checksum: 6dfd690ab8b63fb903191f50680601893a8ce2c333b96ae68b72c1323d31e5f9107452c052d3cecf7022683ec43900d099dd8013f2ce951cd8bc292ef5e39490 languageName: node linkType: hard -"@aws-sdk/core@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/core@npm:3.616.0" +"@aws-sdk/middleware-ssec@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/middleware-ssec@npm:3.734.0" dependencies: - "@smithy/core": ^2.2.7 - "@smithy/protocol-http": ^4.0.4 - "@smithy/signature-v4": ^4.0.0 - "@smithy/smithy-client": ^3.1.8 - "@smithy/types": ^3.3.0 - fast-xml-parser: 4.2.5 + "@aws-sdk/types": 3.734.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: b19c43578beba8e90c1dac2a4842012e0ac2469fb0a8a72801677268447f5de2ad92ebcadc83826a7bfc360ef345c1686f2f76a04fc77f478e1c7512759789a9 + checksum: cf91cc4f418e3965e6d8323275291fa407424e81326f79127c49bcb9c02f9f172e6c1704cb9b1e03c5aee5f6f1ee6fbc0069940fc71231e458e52d88a698c41b languageName: node linkType: hard -"@aws-sdk/credential-provider-cognito-identity@npm:3.592.0": - version: 3.592.0 - resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.592.0" +"@aws-sdk/middleware-user-agent@npm:3.587.0": + version: 3.587.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.587.0" dependencies: - "@aws-sdk/client-cognito-identity": 3.592.0 "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.1.0 + "@aws-sdk/util-endpoints": 3.587.0 + "@smithy/protocol-http": ^4.0.0 "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: b18700d445c4289634c91bda9a88391e5fd731bb4b34118be8dd9e1b1216f959829ae2f703a559bf88bceb755fe9962fb7a5acd874111f7d9e6c23c393d777f7 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-env@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.310.0" - dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 646e634e6f8429c1984475100a60066dd5d0c085b3e170dc0c05c55c824edb3b04d4c40496ab4318e9586b9ca1db0b20090d26919b0273351c82372a12cd9958 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-env@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.357.0" - dependencies: - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: a998ea7661cf1650d8c69f5a910bf921e6e13b8c9c1a7f4c07a6be9f18313cd8946dc67f2d97a3433e319d47fec84becf7913a8b80d97827de7a360b5d19b7f0 + checksum: 0a01579c20dc3e574e58578cf255169b7a8fc8cb2f38cd5d0d6ed282131d953d0ccd578d137a8d39c617b7722de7e194fce9647b662490935d5c8da01354ba5e languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.387.0" +"@aws-sdk/middleware-user-agent@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.749.0" dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 7cfa4c87224a8632741d8fd1c25384a59413581b94eb79e1547a4f9b3542c2b27559c097a09f747f4b1617a3c382795f17aebc290b5e35a8a5fae1f93736449f + "@aws-sdk/core": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@smithy/core": ^3.1.3 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: e784117f0270b3101d39e39469f102626f84f110c7aac45fad241787e0d160f8a884188d1400bbe28d8f592c0e49f5841bef08bce231f2d946ad65eed26c2e6c languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.425.0" +"@aws-sdk/nested-clients@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/nested-clients@npm:3.749.0" dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 286d372686e7de3fa35f52564db616c50831ab6502fafd4156fd87bf28e0e90db3847a1b4e29499eeb9c38f6145d809c0e693096b5f1076c2a9b0fce56aa9051 + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.749.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.749.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.3 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.4 + "@smithy/middleware-retry": ^4.0.5 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.4 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.5 + "@smithy/util-defaults-mode-node": ^4.0.5 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 24a910d4bd48930e03c39599331a4569be27e73de0b825c0da38ec7817317067d18717f06ad651fabcbd915054469855e0fe68ab3c837520767bd72671aa2290 languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.489.0" +"@aws-sdk/protocol-http@npm:^3.374.0": + version: 3.374.0 + resolution: "@aws-sdk/protocol-http@npm:3.374.0" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.8.0 + "@smithy/protocol-http": ^1.1.0 tslib: ^2.5.0 - checksum: ef1c3fb9e12cb3b62be41d87ce168b704d462b6fb27d08eab58b003940e3b24b043f122efab42cdc41d0bd632074114f39b474c480705dc61ed6e879690fa93f - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-env@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.577.0" - dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 155de3eafccc3eac6b94d53b4ec89b8f7ea313866e245f04887c4b0b274bcc4d04c9a1bc0c1cb7ae238a99aa032bf9c4eab6c1b1b676a06cce0de233ca0a7884 + checksum: f8ec7ac8bb76b6efebb8b5fc37d32621d8c77b08daa137a879042c8f79e8de90521d80ae0f15350933ee637e1ea1df9ce8a12ab7870f265b5ecb1df0bfdbb8f6 languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.587.0": +"@aws-sdk/region-config-resolver@npm:3.587.0": version: 3.587.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.587.0" + resolution: "@aws-sdk/region-config-resolver@npm:3.587.0" dependencies: "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.1.0 + "@smithy/node-config-provider": ^3.1.0 "@smithy/types": ^3.0.0 + "@smithy/util-config-provider": ^3.0.0 + "@smithy/util-middleware": ^3.0.0 tslib: ^2.6.2 - checksum: 3062e39c2b0e15eafea50fc2d182de41cba0c4845714b941dd7fb0b75605d7bae51d1919b2b1fdade0c3ec1e470d57ccb00d939898152ed1fbc2c2d265d400b1 + checksum: aa9bae8d88a7d3dc45017b8a6391942f70e95b4e16c4a6907048088f5eb49c9b77b81f084f4ed6d057eb4785ac182ee99dafa9cf3072d5aba3d19c02005abd8a languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.598.0" +"@aws-sdk/region-config-resolver@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/region-config-resolver@npm:3.734.0" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/property-provider": ^3.1.1 - "@smithy/types": ^3.1.0 + "@aws-sdk/types": 3.734.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-config-provider": ^4.0.0 + "@smithy/util-middleware": ^4.0.1 tslib: ^2.6.2 - checksum: 517f06dd47b7aa4c8d5a9fe82698150237c28c46ed9f82cd1d92d1453690b9d6139b65519d92dea611d319c4418fe4540e7d52c03d3897e7e471731fb0156afb + checksum: ec95c09e6527601d3f12791f64d972fcc9218e2da123ead572e8e4b5ef56ba1e67dabeb6e4b86c68958606af50cb1d853c168bb25b226aca171ca0993604803d languageName: node linkType: hard -"@aws-sdk/credential-provider-env@npm:3.609.0": - version: 3.609.0 - resolution: "@aws-sdk/credential-provider-env@npm:3.609.0" +"@aws-sdk/signature-v4-multi-region@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/signature-v4-multi-region@npm:3.749.0" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/property-provider": ^3.1.3 - "@smithy/types": ^3.3.0 + "@aws-sdk/middleware-sdk-s3": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/protocol-http": ^5.0.1 + "@smithy/signature-v4": ^5.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: eda20122740481d04f5110fb9349df339562da1e1d5217e6c47e5f80ed0cce1b3bea01081272487bf04e402fcecc2734a352b0b57ae80b090dd8a0b3547ad185 + checksum: 150f47ecf16b0d4cf9d43a9248922e2e82a51efe43e637a41528e7a6aa1ac235e23fd1a06bb6c2968880bc5f40e722d4a87bdceda553e72a223d0fd6851526ac languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.582.0": - version: 3.582.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.582.0" +"@aws-sdk/signature-v4@npm:^3.374.0": + version: 3.374.0 + resolution: "@aws-sdk/signature-v4@npm:3.374.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/fetch-http-handler": ^3.0.1 - "@smithy/node-http-handler": ^3.0.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.0.1 - "@smithy/types": ^3.0.0 - "@smithy/util-stream": ^3.0.1 - tslib: ^2.6.2 - checksum: 19c466e2eaa0f1df4fd0bde89f5d8f5566229c852eab91e0b1b729871906fddc4fb6297278ffd2669c106e7ff991cc46864328b2cb136559a8fda119d83a1363 + "@smithy/signature-v4": ^1.0.1 + tslib: ^2.5.0 + checksum: 7d8158a377ed220ff119682b1b850ff2c6c2ff1596cc487a63163cce914b0d3e63835b3df32de3550f938d0d4bca5c4664fe462a58c6da41396660a5a01d8f59 languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.587.0": +"@aws-sdk/token-providers@npm:3.587.0": version: 3.587.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.587.0" + resolution: "@aws-sdk/token-providers@npm:3.587.0" dependencies: "@aws-sdk/types": 3.577.0 - "@smithy/fetch-http-handler": ^3.0.1 - "@smithy/node-http-handler": ^3.0.0 "@smithy/property-provider": ^3.1.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.1.1 + "@smithy/shared-ini-file-loader": ^3.1.0 "@smithy/types": ^3.0.0 - "@smithy/util-stream": ^3.0.1 tslib: ^2.6.2 - checksum: d662174af1a9b3484ec0e5c176e66ea82f810dc53f865eca3b789bbb14e9d35ce6cf8d298d4e4ea972a91f08195bb27c13c9ce41b624ef8baaa2fb31d9c016ed + peerDependencies: + "@aws-sdk/client-sso-oidc": ^3.587.0 + checksum: 7a4d44bc413b88b933b439c2b26ac7d55a0ad26ede6b774fc659e8fb7b7f4dee555c7e478aa304983c1f4cd696825b5c47171ec5b918d54bce0146849274088c languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.598.0" +"@aws-sdk/token-providers@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/token-providers@npm:3.749.0" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/fetch-http-handler": ^3.0.2 - "@smithy/node-http-handler": ^3.0.1 - "@smithy/property-provider": ^3.1.1 - "@smithy/protocol-http": ^4.0.1 - "@smithy/smithy-client": ^3.1.2 - "@smithy/types": ^3.1.0 - "@smithy/util-stream": ^3.0.2 + "@aws-sdk/nested-clients": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: e2f6208491a6e58b7ac7368c2247dee55080be740511ded01cc3454920ef29d0b7712930571651a8d0ec2aea4e0a107c7d5dd6ecd01bd4de3c264c54e32959b3 + checksum: d52bf0075776c8ab8ef88985cf8874360795c334515ab98d81af05e9bebb8d25bdc335715222658c13746359ecde1f4621899bee2939b11c7a6ad18611da4cd2 languageName: node linkType: hard -"@aws-sdk/credential-provider-http@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/credential-provider-http@npm:3.616.0" +"@aws-sdk/types@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/types@npm:3.577.0" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/fetch-http-handler": ^3.2.2 - "@smithy/node-http-handler": ^3.1.3 - "@smithy/property-provider": ^3.1.3 - "@smithy/protocol-http": ^4.0.4 - "@smithy/smithy-client": ^3.1.8 - "@smithy/types": ^3.3.0 - "@smithy/util-stream": ^3.1.0 + "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: a1afc3d78bc2496b57583a0d4e2ce080ba6f365c5b84aba39b070e51daee677256b32b8dcd93278c3c82a9c1288b2691c8f02624d23e819817fd55fa8377ddb4 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-imds@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/credential-provider-imds@npm:3.310.0" - dependencies: - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - tslib: ^2.5.0 - checksum: 24915e2f108e37bef21b9bec07f7ab38f25bf3ed55c55ad318ae8e030e042123980855b977c13714580232d2c0a514e71efd61848e68c221716c2110c160ab13 + checksum: d10fe1d720adf3d8b17d5c23787611e336509569df7526efa96e8901100b9279a68e30a207eff60dc5cfa011abd68d47b81e40f2d4d1a9ddfd2d3653c20e1734 languageName: node linkType: hard -"@aws-sdk/credential-provider-imds@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/credential-provider-imds@npm:3.357.0" +"@aws-sdk/types@npm:3.734.0, @aws-sdk/types@npm:^3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/types@npm:3.734.0" dependencies: - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - tslib: ^2.5.0 - checksum: 96c96d44471aed248a4d4f91a3b5c850fcf02a4cc2074a440ec6da7da56f85ee0a0b4f14e479d204d2228cb3737ecdf637d8b046ab8cc7d038d19a7dae57b0bc + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 7e113233f91905a8b4622715a5cc45f0a9d4eda00614845885ecb5743d0339448282ba615597e291fa64b5e41a6f53965c6d6623d617b3c280830b48fe9771ed languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.310.0": +"@aws-sdk/types@npm:^3.222.0": version: 3.310.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.310.0" - dependencies: - "@aws-sdk/credential-provider-env": 3.310.0 - "@aws-sdk/credential-provider-imds": 3.310.0 - "@aws-sdk/credential-provider-process": 3.310.0 - "@aws-sdk/credential-provider-sso": 3.310.0 - "@aws-sdk/credential-provider-web-identity": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 + resolution: "@aws-sdk/types@npm:3.310.0" + dependencies: tslib: ^2.5.0 - checksum: 9d0adc90a942680ccc1aa135b1d5b42a32a1db1aee0a1d1cfeac2f20347b28a5b8a33bb982eec9e2ff1204ffacfff3cc4b1065cdd11f035edcde4142ff3e3125 + checksum: b11a91899614e14d40081ceab39cd3702254a5658c7b5e8862ef0d66dbffaa41c9a0f0d31e415d22f31c791b507699ba3a5fc7d87a540273386eb779be3807e4 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.327.0" +"@aws-sdk/util-arn-parser@npm:3.723.0": + version: 3.723.0 + resolution: "@aws-sdk/util-arn-parser@npm:3.723.0" dependencies: - "@aws-sdk/credential-provider-env": 3.310.0 - "@aws-sdk/credential-provider-imds": 3.310.0 - "@aws-sdk/credential-provider-process": 3.310.0 - "@aws-sdk/credential-provider-sso": 3.327.0 - "@aws-sdk/credential-provider-web-identity": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 4ac7201c1720775318c3d1603451a904adeba7ce2eccd1c267fb49a1a317ede6440be5563747588c3bbd53b3226c9f870ce9c77bc83567e942f24afacf33d4a3 + tslib: ^2.6.2 + checksum: 161935d6ef215a629f5f0909c8d04b478381a9f5687e89df82d9cefa20435fe7c182d16abbbce16926f29d0a310c5acbdaf472c452639d155b08f072904a76d3 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.358.0" +"@aws-sdk/util-endpoints@npm:3.587.0": + version: 3.587.0 + resolution: "@aws-sdk/util-endpoints@npm:3.587.0" dependencies: - "@aws-sdk/credential-provider-env": 3.357.0 - "@aws-sdk/credential-provider-imds": 3.357.0 - "@aws-sdk/credential-provider-process": 3.357.0 - "@aws-sdk/credential-provider-sso": 3.358.0 - "@aws-sdk/credential-provider-web-identity": 3.357.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: f7637e518ce98654c4c06d3cf01f35d7cdc22893b8a37fc522479b7324ba63f7362ea0b60dbb142573fa1148fa0b900791ad8a8361227170055122fec72e9b78 + "@aws-sdk/types": 3.577.0 + "@smithy/types": ^3.0.0 + "@smithy/util-endpoints": ^2.0.1 + tslib: ^2.6.2 + checksum: 4b1cbfc49129b414144ad94cc947b78c6c3c061f5a39b4365d85c8a2d5e21b83ac85ab1add95b8eb64c48aed58792a486faa74887ff3a56a7a0f381bb1cbbce9 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.362.0" +"@aws-sdk/util-endpoints@npm:3.743.0": + version: 3.743.0 + resolution: "@aws-sdk/util-endpoints@npm:3.743.0" dependencies: - "@aws-sdk/credential-provider-env": 3.357.0 - "@aws-sdk/credential-provider-imds": 3.357.0 - "@aws-sdk/credential-provider-process": 3.357.0 - "@aws-sdk/credential-provider-sso": 3.362.0 - "@aws-sdk/credential-provider-web-identity": 3.357.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 6565c5d1e6d2ea5ad079889800907ed44a7ab138f5ec6ae2dd61e9ea7df5190d73fa950775047a7f0ac05ba3638897175598366358ecf3767e7e6f5a4395c1e5 + "@aws-sdk/types": 3.734.0 + "@smithy/types": ^4.1.0 + "@smithy/util-endpoints": ^3.0.1 + tslib: ^2.6.2 + checksum: 1e4639ee30b71a63d2f1bd378d31fdad682523236b7bdb28282240a104bc0ac2cf4c96b3cb19a15c0d5dab2a6eda185f7db3a475ec7d8e4db914cafdc72198c9 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.388.0": - version: 3.388.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.388.0" +"@aws-sdk/util-locate-window@npm:^3.0.0": + version: 3.310.0 + resolution: "@aws-sdk/util-locate-window@npm:3.310.0" dependencies: - "@aws-sdk/credential-provider-env": 3.387.0 - "@aws-sdk/credential-provider-process": 3.387.0 - "@aws-sdk/credential-provider-sso": 3.388.0 - "@aws-sdk/credential-provider-web-identity": 3.387.0 - "@aws-sdk/types": 3.387.0 - "@smithy/credential-provider-imds": ^2.0.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.0 - "@smithy/types": ^2.1.0 tslib: ^2.5.0 - checksum: bf6567ca4c84986b572aa887ec2fe1bd2703d96a334415d560d22f484b7d8bf768128fb8ca758da11e7ef7ec9b395ec08522669da3a3e42b3bbad1a365af77ba + checksum: d552ce5f0f836ecb13d7920ae650552c56706f26a5e8abf894ba471e18775a3791869bda95269153735bac9d211efc3ba78ea01c34428c3fed4318ac693a08bc languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.427.0" +"@aws-sdk/util-user-agent-browser@npm:3.577.0": + version: 3.577.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.577.0" dependencies: - "@aws-sdk/credential-provider-env": 3.425.0 - "@aws-sdk/credential-provider-process": 3.425.0 - "@aws-sdk/credential-provider-sso": 3.427.0 - "@aws-sdk/credential-provider-web-identity": 3.425.0 - "@aws-sdk/types": 3.425.0 - "@smithy/credential-provider-imds": ^2.0.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 3a0f92ff5ace8f803c3004fd016e853e035085b936df3b23fb4a847d28166e3fbf9447c743646df79661ec523366c16a9e46b6176526232b82574b59b2bd09a6 + "@aws-sdk/types": 3.577.0 + "@smithy/types": ^3.0.0 + bowser: ^2.11.0 + tslib: ^2.6.2 + checksum: 48b29b186f9d59c7ee272568cb0752834527aeccf122e4794313f84fb4c72dc65edf4bbf22f07aa7e2dde7da288e6d7ba20633edd9dbc853aca1b170bdfe1532 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.490.0" +"@aws-sdk/util-user-agent-browser@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/util-user-agent-browser@npm:3.734.0" dependencies: - "@aws-sdk/credential-provider-env": 3.489.0 - "@aws-sdk/credential-provider-process": 3.489.0 - "@aws-sdk/credential-provider-sso": 3.490.0 - "@aws-sdk/credential-provider-web-identity": 3.489.0 - "@aws-sdk/types": 3.489.0 - "@smithy/credential-provider-imds": ^2.0.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 5dd24af06b3a2977c1ebd47621619b18b8d9f9bed04e8ac5daae9faedabe66d6c6792a62da54513d668f0b11315cab4fd41a85637e35646cec46588742e36b1f + "@aws-sdk/types": 3.734.0 + "@smithy/types": ^4.1.0 + bowser: ^2.11.0 + tslib: ^2.6.2 + checksum: 5c75eadca3912c8ffcb2bdabc16ee24fc6e05ac1b077662d50c72575ad449ce94669a841c5da5fff9231edfd0a23b1e85258a589cbc2b0de5bbf4b9031e77c77 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.583.0" +"@aws-sdk/util-user-agent-node@npm:3.587.0": + version: 3.587.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.587.0" dependencies: - "@aws-sdk/credential-provider-env": 3.577.0 - "@aws-sdk/credential-provider-process": 3.577.0 - "@aws-sdk/credential-provider-sso": 3.583.0 - "@aws-sdk/credential-provider-web-identity": 3.577.0 "@aws-sdk/types": 3.577.0 - "@smithy/credential-provider-imds": ^3.0.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/shared-ini-file-loader": ^3.0.0 + "@smithy/node-config-provider": ^3.1.0 "@smithy/types": ^3.0.0 tslib: ^2.6.2 peerDependencies: - "@aws-sdk/client-sts": ^3.583.0 - checksum: 055116aa4f492bd972ef458026b20849e7297bd018fc77d11352e47622c416878582138c9cd23d581f8b8596dcc7918cce725a73982c7fdb11eec761fb34a19a + aws-crt: ">=1.0.0" + peerDependenciesMeta: + aws-crt: + optional: true + checksum: 6f963c5371de04144fbd2ed893d823bc7c9f9a9e6e40bde3a1bab82274213110b7e2542d7da0798ffa7d24031ff63b385b08799a07800a816f4c85b0c2e44abe languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.592.0": - version: 3.592.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.592.0" +"@aws-sdk/util-user-agent-node@npm:3.749.0": + version: 3.749.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.749.0" dependencies: - "@aws-sdk/credential-provider-env": 3.587.0 - "@aws-sdk/credential-provider-http": 3.587.0 - "@aws-sdk/credential-provider-process": 3.587.0 - "@aws-sdk/credential-provider-sso": 3.592.0 - "@aws-sdk/credential-provider-web-identity": 3.587.0 - "@aws-sdk/types": 3.577.0 - "@smithy/credential-provider-imds": ^3.1.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/shared-ini-file-loader": ^3.1.0 - "@smithy/types": ^3.0.0 + "@aws-sdk/middleware-user-agent": 3.749.0 + "@aws-sdk/types": 3.734.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 peerDependencies: - "@aws-sdk/client-sts": ^3.592.0 - checksum: 66b07abcfa6ead951d8d8bca9325c79438cec7737d141a978354ad07a4b646f09d71ec6adb84c8174e5045ae7f7fa4adef147bba130f4dc7806780d3d1a4df48 + aws-crt: ">=1.0.0" + peerDependenciesMeta: + aws-crt: + optional: true + checksum: 6a3d96d6ff1958d815186174b4982c883b84dd69ff9d4f8817a1694d5b007149bd20cc676c6ae7a36ac7de98295847eb5a7ebf528aff6be4d53062ae55a8705e languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.598.0" +"@aws-sdk/util-utf8-browser@npm:^3.0.0": + version: 3.259.0 + resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0" dependencies: - "@aws-sdk/credential-provider-env": 3.598.0 - "@aws-sdk/credential-provider-http": 3.598.0 - "@aws-sdk/credential-provider-process": 3.598.0 - "@aws-sdk/credential-provider-sso": 3.598.0 - "@aws-sdk/credential-provider-web-identity": 3.598.0 - "@aws-sdk/types": 3.598.0 - "@smithy/credential-provider-imds": ^3.1.1 - "@smithy/property-provider": ^3.1.1 - "@smithy/shared-ini-file-loader": ^3.1.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - peerDependencies: - "@aws-sdk/client-sts": ^3.598.0 - checksum: 9fab1e9c312e20150c96daf15e0347b79f0589cc44eb299c15e80c7d5380e8966805fa8893d3c906f99b7eb3c0f872f0795415f75921204580a30d869dd87f54 + tslib: ^2.3.1 + checksum: b6a1e580da1c9b62c749814182a7649a748ca4253edb4063aa521df97d25b76eae3359eb1680b86f71aac668e05cc05c514379bca39ebf4ba998ae4348412da8 languageName: node linkType: hard -"@aws-sdk/credential-provider-ini@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/credential-provider-ini@npm:3.616.0" +"@aws-sdk/xml-builder@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/xml-builder@npm:3.734.0" dependencies: - "@aws-sdk/credential-provider-env": 3.609.0 - "@aws-sdk/credential-provider-http": 3.616.0 - "@aws-sdk/credential-provider-process": 3.614.0 - "@aws-sdk/credential-provider-sso": 3.616.0 - "@aws-sdk/credential-provider-web-identity": 3.609.0 - "@aws-sdk/types": 3.609.0 - "@smithy/credential-provider-imds": ^3.1.4 - "@smithy/property-provider": ^3.1.3 - "@smithy/shared-ini-file-loader": ^3.1.4 - "@smithy/types": ^3.3.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - peerDependencies: - "@aws-sdk/client-sts": ^3.616.0 - checksum: 2de4455b8bc58ebed180954d04e4f3de35a390778156a99a5581b7ebbf9adf01df6166f3dc60129a465865f110d30352b740ee92591169a1cb56d11e5ea21d38 - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.310.0" - dependencies: - "@aws-sdk/credential-provider-env": 3.310.0 - "@aws-sdk/credential-provider-imds": 3.310.0 - "@aws-sdk/credential-provider-ini": 3.310.0 - "@aws-sdk/credential-provider-process": 3.310.0 - "@aws-sdk/credential-provider-sso": 3.310.0 - "@aws-sdk/credential-provider-web-identity": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 893aacd840a69363e11cbfb50c915aa3f515f40d6f5a93018f2fd1d7775af40d2a2fd083422aabc817f433e0f89fe5cdaaea7059b0ec59e8f38c78c97b35995a - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.327.0" - dependencies: - "@aws-sdk/credential-provider-env": 3.310.0 - "@aws-sdk/credential-provider-imds": 3.310.0 - "@aws-sdk/credential-provider-ini": 3.327.0 - "@aws-sdk/credential-provider-process": 3.310.0 - "@aws-sdk/credential-provider-sso": 3.327.0 - "@aws-sdk/credential-provider-web-identity": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 910ee138c4b5b2899df1a1a52e37ac0bcf6ba01bc480e55bdb6caafc0bf6f4f5bffd60669945ebca52bd35409ee78d76dcb7ea5d02fbfd949a6d6665ab31159c + checksum: 7d6301265cfe0f63811dfedd82e76e362da656a027ccd42b23a244666657f00ee493b74437e8a223843a007b447b3cef115095cc35daf012731f6c43bf975a17 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.358.0" +"@azure-rest/core-client@npm:^1.1.7": + version: 1.1.7 + resolution: "@azure-rest/core-client@npm:1.1.7" dependencies: - "@aws-sdk/credential-provider-env": 3.357.0 - "@aws-sdk/credential-provider-imds": 3.357.0 - "@aws-sdk/credential-provider-ini": 3.358.0 - "@aws-sdk/credential-provider-process": 3.357.0 - "@aws-sdk/credential-provider-sso": 3.358.0 - "@aws-sdk/credential-provider-web-identity": 3.357.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 5459a864680bb377a43625ce7af915bd9298251119df693a73324adcd2b3753aed20460a9c6cc146b796db00970d2bc6f3887c0ade217568d0e5dba043f7b21d + "@azure/abort-controller": ^1.1.0 + "@azure/core-auth": ^1.3.0 + "@azure/core-rest-pipeline": ^1.5.0 + "@azure/core-tracing": ^1.0.1 + "@azure/core-util": ^1.0.0 + tslib: ^2.2.0 + checksum: 62edbc81c1fa682879a56e59eb53f164d7ba232647b1ac9f0d895d9153bda7cd3b43fa324d9fab046583236f8a5d5675c732e6133e6d925f1b50911877049f27 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.362.0" +"@azure/abort-controller@npm:^1.0.0, @azure/abort-controller@npm:^1.0.4, @azure/abort-controller@npm:^1.1.0": + version: 1.1.0 + resolution: "@azure/abort-controller@npm:1.1.0" dependencies: - "@aws-sdk/credential-provider-env": 3.357.0 - "@aws-sdk/credential-provider-imds": 3.357.0 - "@aws-sdk/credential-provider-ini": 3.362.0 - "@aws-sdk/credential-provider-process": 3.357.0 - "@aws-sdk/credential-provider-sso": 3.362.0 - "@aws-sdk/credential-provider-web-identity": 3.357.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: c95a064261889c24cb8fd24f267d8186a9434b322c8444b4a2e3f87ab11e59614808542b0933b636e687285b78ff24f3e7a6e0e4caf1c91ea3fbbaf92ef87f75 + tslib: ^2.2.0 + checksum: 0f45e504d4aea799486867179afe7589255f6c111951279958e9d0aa5faebb2c96b8f88e3e3c958ce07b02bcba0b0cddb1bbec94705f573a48ecdb93eec1a92a languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.427.0" +"@azure/abort-controller@npm:^2.0.0": + version: 2.1.2 + resolution: "@azure/abort-controller@npm:2.1.2" dependencies: - "@aws-sdk/credential-provider-env": 3.425.0 - "@aws-sdk/credential-provider-ini": 3.427.0 - "@aws-sdk/credential-provider-process": 3.425.0 - "@aws-sdk/credential-provider-sso": 3.427.0 - "@aws-sdk/credential-provider-web-identity": 3.425.0 - "@aws-sdk/types": 3.425.0 - "@smithy/credential-provider-imds": ^2.0.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: acd2205d94037523967c5fea3904169d32e907a9da7dab796e413d93c665ddbce1ba4408563c3fe7b2a6726cda39d264b08ca016102e660c75cbf2875dd41ed4 + tslib: ^2.6.2 + checksum: 22176c04ea01498311c6bbd336669f6e3faffad1cbb0c9ebc6ee9c1ff2cf958fd17ce73c7354b99d8bda9fcd311325ece7bee248875279174e3fc460e8b1a63d languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.490.0" +"@azure/core-auth@npm:^1.3.0": + version: 1.4.0 + resolution: "@azure/core-auth@npm:1.4.0" dependencies: - "@aws-sdk/credential-provider-env": 3.489.0 - "@aws-sdk/credential-provider-ini": 3.490.0 - "@aws-sdk/credential-provider-process": 3.489.0 - "@aws-sdk/credential-provider-sso": 3.490.0 - "@aws-sdk/credential-provider-web-identity": 3.489.0 - "@aws-sdk/types": 3.489.0 - "@smithy/credential-provider-imds": ^2.0.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 52820573a6aff0ea8c7ca0699fb374ba9a94a9e9eb777c2b1225d3565fdde7a65c70fcbe9ec887cf555c2df73cdc341641791f1358a102e052869d0f4978d4d0 + "@azure/abort-controller": ^1.0.0 + tslib: ^2.2.0 + checksum: 1c76c296fe911ad39fc780b033c25a92c41c5a15f011b816d42c13584f627a4dd153dfb4334900ec93eb5b006e14bdda37e8412a7697c5a9636a0abaccffad39 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.583.0" +"@azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.5.0": + version: 1.5.0 + resolution: "@azure/core-auth@npm:1.5.0" dependencies: - "@aws-sdk/credential-provider-env": 3.577.0 - "@aws-sdk/credential-provider-http": 3.582.0 - "@aws-sdk/credential-provider-ini": 3.583.0 - "@aws-sdk/credential-provider-process": 3.577.0 - "@aws-sdk/credential-provider-sso": 3.583.0 - "@aws-sdk/credential-provider-web-identity": 3.577.0 - "@aws-sdk/types": 3.577.0 - "@smithy/credential-provider-imds": ^3.0.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/shared-ini-file-loader": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: e3bff754eb7d4baafffa9a5167b21314f3f7c84903d9a95ef17c29c38e82b33a5aa724119b540494dec94fab58a7b5e32782c851930f1d9e3468a644a558ad83 + "@azure/abort-controller": ^1.0.0 + "@azure/core-util": ^1.1.0 + tslib: ^2.2.0 + checksum: 11c5ba072902693435dc2930e2fdfe2ff34836f4c2d6c87c6ac0566d48dc49157ebf49f4478cd3784dc0c4d57b502d3a12d74ea29f416725204a6e1aa937ef78 languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.592.0": - version: 3.592.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.592.0" +"@azure/core-auth@npm:^1.7.1, @azure/core-auth@npm:^1.8.0, @azure/core-auth@npm:^1.9.0": + version: 1.9.0 + resolution: "@azure/core-auth@npm:1.9.0" dependencies: - "@aws-sdk/credential-provider-env": 3.587.0 - "@aws-sdk/credential-provider-http": 3.587.0 - "@aws-sdk/credential-provider-ini": 3.592.0 - "@aws-sdk/credential-provider-process": 3.587.0 - "@aws-sdk/credential-provider-sso": 3.592.0 - "@aws-sdk/credential-provider-web-identity": 3.587.0 - "@aws-sdk/types": 3.577.0 - "@smithy/credential-provider-imds": ^3.1.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/shared-ini-file-loader": ^3.1.0 - "@smithy/types": ^3.0.0 + "@azure/abort-controller": ^2.0.0 + "@azure/core-util": ^1.11.0 tslib: ^2.6.2 - checksum: c83bd0370250091d175c4b7f622f679d7ad48a98938b80c0c99fd243acd805b4eb54d3ab199cf6373645dd52b8b4b709e0e3a765a1c061d41043831f0962908b + checksum: 4050112188db093c5e01caca0175708c767054c0cea4202430ff43ee42a16430235752ccc0002caea1796c8f01b4f6369c878762bf4c1b2f61af1b7ac13182fc languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.600.0, @aws-sdk/credential-provider-node@npm:^3.600.0": - version: 3.600.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.600.0" +"@azure/core-client@npm:^1.3.0": + version: 1.7.3 + resolution: "@azure/core-client@npm:1.7.3" dependencies: - "@aws-sdk/credential-provider-env": 3.598.0 - "@aws-sdk/credential-provider-http": 3.598.0 - "@aws-sdk/credential-provider-ini": 3.598.0 - "@aws-sdk/credential-provider-process": 3.598.0 - "@aws-sdk/credential-provider-sso": 3.598.0 - "@aws-sdk/credential-provider-web-identity": 3.598.0 - "@aws-sdk/types": 3.598.0 - "@smithy/credential-provider-imds": ^3.1.1 - "@smithy/property-provider": ^3.1.1 - "@smithy/shared-ini-file-loader": ^3.1.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: 480c7c36a8558667a25617e6f7f2292b4362b0e894bc204ce62f565dc8e8cc46c713dc04621321336ce715b493590b3b854b33dc6d5123ed39a17643158d94fc + "@azure/abort-controller": ^1.0.0 + "@azure/core-auth": ^1.4.0 + "@azure/core-rest-pipeline": ^1.9.1 + "@azure/core-tracing": ^1.0.0 + "@azure/core-util": ^1.0.0 + "@azure/logger": ^1.0.0 + tslib: ^2.2.0 + checksum: 155a188b75b2d5ea783d5fde50479337c41796736f0fced1576466c8251e429195c229f2aff0bf897761f15c19d8fd0deea9a54aab514bd3584e37140e3f0cdc languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.616.0" +"@azure/core-client@npm:^1.9.2": + version: 1.9.2 + resolution: "@azure/core-client@npm:1.9.2" dependencies: - "@aws-sdk/credential-provider-env": 3.609.0 - "@aws-sdk/credential-provider-http": 3.616.0 - "@aws-sdk/credential-provider-ini": 3.616.0 - "@aws-sdk/credential-provider-process": 3.614.0 - "@aws-sdk/credential-provider-sso": 3.616.0 - "@aws-sdk/credential-provider-web-identity": 3.609.0 - "@aws-sdk/types": 3.609.0 - "@smithy/credential-provider-imds": ^3.1.4 - "@smithy/property-provider": ^3.1.3 - "@smithy/shared-ini-file-loader": ^3.1.4 - "@smithy/types": ^3.3.0 + "@azure/abort-controller": ^2.0.0 + "@azure/core-auth": ^1.4.0 + "@azure/core-rest-pipeline": ^1.9.1 + "@azure/core-tracing": ^1.0.0 + "@azure/core-util": ^1.6.1 + "@azure/logger": ^1.0.0 tslib: ^2.6.2 - checksum: 9a66c9401eb152711a69010bfe9adc55fedd445d4d9754bd26490bf7b75c6606486dde9495893f893998ba74786ff4703ba94f0bdef92e2aa4c0d5baa605757a - languageName: node - linkType: hard - -"@aws-sdk/credential-provider-node@npm:^3.388.0": - version: 3.388.0 - resolution: "@aws-sdk/credential-provider-node@npm:3.388.0" - dependencies: - "@aws-sdk/credential-provider-env": 3.387.0 - "@aws-sdk/credential-provider-ini": 3.388.0 - "@aws-sdk/credential-provider-process": 3.387.0 - "@aws-sdk/credential-provider-sso": 3.388.0 - "@aws-sdk/credential-provider-web-identity": 3.387.0 - "@aws-sdk/types": 3.387.0 - "@smithy/credential-provider-imds": ^2.0.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.0 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: b0dfc93dd2b23d030f00a756700147be698b9b690d276eaeba2046f2c2b494895e2c39dfb69ee2c1ad6e4c82c26e5f3dd228c04679c227508bdac3d575f19376 + checksum: 961b829dfda4f734a763e9480a2ea622a7031ba2da4126d0add6e351a9f73ddc5782bf2b766735d976b61da3857014e0a90223d1f85d1c68468747a7a56851c3 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.310.0" +"@azure/core-http-compat@npm:^2.0.1": + version: 2.0.1 + resolution: "@azure/core-http-compat@npm:2.0.1" dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 12c4ab1f34d5a045d56ca22bc6c834292da15d518129133babcbede056adb46f4e898489e1b54e7e5ee3472d1116882217f5a29af0a46cc40d2f3aa00ef6767f + "@azure/abort-controller": ^1.0.4 + "@azure/core-client": ^1.3.0 + "@azure/core-rest-pipeline": ^1.3.0 + checksum: 50749822a3d7cd67e3af0f030093395f9776fab16eef6245a43fb967030d5d8554b0b237376894dcda409e9f49c588035ec4868f11ac6181cbf37a26c6290b0d languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.357.0" +"@azure/core-http@npm:^3.0.0": + version: 3.0.2 + resolution: "@azure/core-http@npm:3.0.2" dependencies: - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 753f6d9ccd40cf4422aae8b5512c9f24fbded6e7e631c68673828214294c507e1322ac2e455fb43458cc97f3185681f555fdbb220ff2cf0a6b3fcfca366fddae + "@azure/abort-controller": ^1.0.0 + "@azure/core-auth": ^1.3.0 + "@azure/core-tracing": 1.0.0-preview.13 + "@azure/core-util": ^1.1.1 + "@azure/logger": ^1.0.0 + "@types/node-fetch": ^2.5.0 + "@types/tunnel": ^0.0.3 + form-data: ^4.0.0 + node-fetch: ^2.6.7 + process: ^0.11.10 + tslib: ^2.2.0 + tunnel: ^0.0.6 + uuid: ^8.3.0 + xml2js: ^0.5.0 + checksum: 01b5a75e09533476dbb69c672dcd00d48298cf81db5015cd261c510c5be377176db8e3dc4809e6952459bfbe214f52f8a1ed84a116ac31b8a7388b2025098f66 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.387.0" +"@azure/core-lro@npm:^2.2.0": + version: 2.5.3 + resolution: "@azure/core-lro@npm:2.5.3" dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.0 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 90b5c902b659dd6d39b6e81503fa4587ed5bb7c4b6a7ecb648561e8ca7a82c621b0b65496855cba3e68d63e1c432e26d40c89c0194e5952f31b52cbd20bca8ae + "@azure/abort-controller": ^1.0.0 + "@azure/core-util": ^1.2.0 + "@azure/logger": ^1.0.0 + tslib: ^2.2.0 + checksum: 443ae1884a6bc9edfeee1e62463b218a020f1be987ef755c13d5afe39803bbceb8ca9174bd516e1db9bc3f3762f71168167ea0ee9873c66e3d86a6667d5a0457 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.425.0" +"@azure/core-paging@npm:^1.1.1": + version: 1.5.0 + resolution: "@azure/core-paging@npm:1.5.0" dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 010b0d1c11d0c85e7a2ed758eefb968bfb6be96d217f0f7bf5352abb7c019ddcaaa74e15fbd2445ea701ec14a5062c36f639619c7a16a06eea8038b652335ef0 + tslib: ^2.2.0 + checksum: 156230f0fdf757a0353a2aac6d012d385ed88f8ab5bccf00eee27d8d75843e681674b2d10ed43309669f9cb93bf8d9d000232896593b6fcf399fa391442a59c5 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.489.0" +"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.13.0, @azure/core-rest-pipeline@npm:^1.3.0, @azure/core-rest-pipeline@npm:^1.5.0, @azure/core-rest-pipeline@npm:^1.9.1": + version: 1.13.0 + resolution: "@azure/core-rest-pipeline@npm:1.13.0" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 19eb75f0222176f33ad5fbeb5a02b312a37a48966b73ff5c1af9974d439dc4c6faeffe745c2a23b0abb67ab876f9e10099b4a22c2ee9d15be5290556331a7a9a + "@azure/abort-controller": ^1.1.0 + "@azure/core-auth": ^1.4.0 + "@azure/core-tracing": ^1.0.1 + "@azure/core-util": ^1.3.0 + "@azure/logger": ^1.0.0 + http-proxy-agent: ^5.0.0 + https-proxy-agent: ^5.0.0 + tslib: ^2.2.0 + checksum: 9fe889625756121ceff421805aa643fa6b29bf5fa3730111b0ec509aa08f84b04befd29532e9fa270a85435ed9d597aa777b96730968e425d1aedea256827e94 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.577.0" +"@azure/core-rest-pipeline@npm:^1.15.1, @azure/core-rest-pipeline@npm:^1.17.0": + version: 1.18.0 + resolution: "@azure/core-rest-pipeline@npm:1.18.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/shared-ini-file-loader": ^3.0.0 - "@smithy/types": ^3.0.0 + "@azure/abort-controller": ^2.0.0 + "@azure/core-auth": ^1.8.0 + "@azure/core-tracing": ^1.0.1 + "@azure/core-util": ^1.11.0 + "@azure/logger": ^1.0.0 + http-proxy-agent: ^7.0.0 + https-proxy-agent: ^7.0.0 tslib: ^2.6.2 - checksum: aa97aac3407efcd3b72dd3bbd4d38daa158423bce454f93c62fc60b5c9c2cf2077ffe5c58a90d1690559d10731c6dfcac1d9cbcb8286a84d267f2ff7c7d926f4 + checksum: 4c8e6572938fd693494ec44477b58afa7c16aed7ea8ef061fcc0cf8a8e602d7ea07676f46b8c850d38e04e5ac4ab10888f88bce8ffac6db1bd3b77bf07a07f29 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.587.0": - version: 3.587.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.587.0" +"@azure/core-sse@npm:^2.0.0": + version: 2.0.0 + resolution: "@azure/core-sse@npm:2.0.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/shared-ini-file-loader": ^3.1.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 20add2fa4ecb513a8f7c376284248bf16601af52d56f30a20b9cb6c77ed811162b2d1d0c364fe27bba50bc6ac1a395c50057351c1d2107837358ef3974d7ff9a + tslib: ^2.4.0 + checksum: e640c7e251fcf8b2cd2d8759eea71c07f8dbb9953a6deb9a28e79efab26deca7e561acddd6cd2770d7e641f4fb2479f802b03ab1deb0410c3993e1cf67ac74d0 languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.598.0" +"@azure/core-tracing@npm:1.0.0-preview.13": + version: 1.0.0-preview.13 + resolution: "@azure/core-tracing@npm:1.0.0-preview.13" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/property-provider": ^3.1.1 - "@smithy/shared-ini-file-loader": ^3.1.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: cd1f0dbbc38b137a0e9c2cfa9bb9e55eed1da5166e13576295205d276ab313e9d4a2f97a566d576abc85c6f4e9e84ad676ca5c32f90de17e027d6a1372fb00e6 + "@opentelemetry/api": ^1.0.1 + tslib: ^2.2.0 + checksum: bc3ea8dce1fc6bb6e4cb2e82ec0c361b3e6f6e18e162f352eb347e6991c6461ebc249f5d1b36402cc0d295e2a6bcbaa68014445d7f4293c0792a698c430f145e languageName: node linkType: hard -"@aws-sdk/credential-provider-process@npm:3.614.0": - version: 3.614.0 - resolution: "@aws-sdk/credential-provider-process@npm:3.614.0" +"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1": + version: 1.0.1 + resolution: "@azure/core-tracing@npm:1.0.1" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/property-provider": ^3.1.3 - "@smithy/shared-ini-file-loader": ^3.1.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 8bbbbf66911f38818e801187ae8df000e92b4e1c0dbe6d6b9afae81e08fb771302d2dc86c459653a2ed71acc10b9773885ae28d6fbce0031e082e9a6e61c85ee + tslib: ^2.2.0 + checksum: ae4309f8ab0b52c37f699594d58ee095782649f538bd6a0ee03e3fea042f55df7ad95c2e6dec22f5b8c3907e4bcf98d6ca98faaf480d446b73d41bbc1519d891 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.310.0" +"@azure/core-tracing@npm:^1.1.1": + version: 1.2.0 + resolution: "@azure/core-tracing@npm:1.2.0" dependencies: - "@aws-sdk/client-sso": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/token-providers": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 595c3f393430e1c9ddb0b276b605e87a8a6d461fe5d7bfa7e9b033fd06f3d5bcb1f4fe6b74e7eb5fa38d1d88181f8be5398bb3c1a53ae18caada9a59eed1ba21 + tslib: ^2.6.2 + checksum: 202ebf411a3076bd2c48b7a4c1b63335f53be6dd97f7d53500e3191b7ed0fdad25de219f422e777fde824031fd5c67087654de0304a5c0cd67c38cdcab96117c languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.327.0" +"@azure/core-util@npm:^1.0.0, @azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.3.0, @azure/core-util@npm:^1.4.0": + version: 1.6.1 + resolution: "@azure/core-util@npm:1.6.1" dependencies: - "@aws-sdk/client-sso": 3.327.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/token-providers": 3.327.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 7fd9abaeb501122af650a25682e10e60e9c53190f7ba775a1e48675a0cb9f2d96b9e5e364565853d708a39e0cc032161df39b8b5d274417f8a80844cbf2e8607 + "@azure/abort-controller": ^1.0.0 + tslib: ^2.2.0 + checksum: 1f8cd130993f161c98925070af863510cbcc79e0471864e4b16852afc2ee7413c9c7fabe72f20f3e521ee75c3cd7e3085661fdc8d5d0a643a6e1b1b7bf691ddd languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.358.0" +"@azure/core-util@npm:^1.1.1, @azure/core-util@npm:^1.2.0": + version: 1.3.2 + resolution: "@azure/core-util@npm:1.3.2" dependencies: - "@aws-sdk/client-sso": 3.358.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/token-providers": 3.358.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: a817f23af990765b511fb63889aa46beb624af7b95ffdef05a98e31b68eb3f8bfd8c7831c7eb92613e90d729e392cc5e6d055181785193c7fad75d65f239b72c + "@azure/abort-controller": ^1.0.0 + tslib: ^2.2.0 + checksum: c26053a209ed99c5b31ec54bd456155a7e602fda0b680ba326063ee42427efe60042124fbf22701397647e822bee252f77fec449e8f8100c406b8ca7168c8359 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.362.0" +"@azure/core-util@npm:^1.11.0, @azure/core-util@npm:^1.8.1": + version: 1.11.0 + resolution: "@azure/core-util@npm:1.11.0" dependencies: - "@aws-sdk/client-sso": 3.362.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/token-providers": 3.362.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 40d448ec89f5466fdc235da54fcbd23558bd8c1707246dfa471976dd3092cf681c658e4e71a8f34e840de88f66a12ae19eaa1c1f170dcbc738fea6de6c912f26 + "@azure/abort-controller": ^2.0.0 + tslib: ^2.6.2 + checksum: 91e3ec329d9eddaa66be5efb1785dad68dcb48dd779fca36e39db041673230510158ff5ca9ccef9f19c3e4d8e9af29f66a367cfc31a7b94d2541f80ef94ec797 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.388.0": - version: 3.388.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.388.0" +"@azure/core-util@npm:^1.6.1": + version: 1.9.2 + resolution: "@azure/core-util@npm:1.9.2" dependencies: - "@aws-sdk/client-sso": 3.387.0 - "@aws-sdk/token-providers": 3.388.0 - "@aws-sdk/types": 3.387.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.0 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 97d3226d7edc103b76ff086d166603a363bc61b4e7a6e2e239fc874c11cfa46c5862ab140129bb424ba20d9b6426cb1133d626641c44248a23d7997bbb47f6e6 + "@azure/abort-controller": ^2.0.0 + tslib: ^2.6.2 + checksum: 63c7ab2bdd6e75e38af33e37c9844515c546ed3e8f88fb98926ec88287dfabb249b9fd156658d42bfccbaeb46369254e7cf53eb6ef789b9d88880585eaabb298 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.427.0" +"@azure/cosmos@npm:^4.2.0": + version: 4.2.0 + resolution: "@azure/cosmos@npm:4.2.0" dependencies: - "@aws-sdk/client-sso": 3.427.0 - "@aws-sdk/token-providers": 3.427.0 - "@aws-sdk/types": 3.425.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 265a0000c6d184aca93aeab7740618a934ef7b31e8f5a2750c618984c0bef956b413886dc4886d38dd4595dfea6c95164ae2d6bddfb66febc33144c79fdf4441 + "@azure/abort-controller": ^2.0.0 + "@azure/core-auth": ^1.7.1 + "@azure/core-rest-pipeline": ^1.15.1 + "@azure/core-tracing": ^1.1.1 + "@azure/core-util": ^1.8.1 + fast-json-stable-stringify: ^2.1.0 + jsbi: ^4.3.0 + priorityqueuejs: ^2.0.0 + semaphore: ^1.1.0 + tslib: ^2.6.2 + checksum: b571f5a99b12520a2128b8ed0eb61cd66c432e21f533e778cd54a508e89b8bd57e8e05eedc1dcfdb4417c91a675bdb63d6c1cfcd9a21895d444e51de80288f33 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.490.0": - version: 3.490.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.490.0" +"@azure/identity@npm:^4.2.1": + version: 4.4.1 + resolution: "@azure/identity@npm:4.4.1" dependencies: - "@aws-sdk/client-sso": 3.490.0 - "@aws-sdk/token-providers": 3.489.0 - "@aws-sdk/types": 3.489.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: ea3c9d180f13f676b7717a8e0aabdca33b36f2dbf27128dfa6f8172040aa895437ef03e08802b9d6b104a783b8606b8af923193ff54f79e92118aa54babaa311 + "@azure/abort-controller": ^1.0.0 + "@azure/core-auth": ^1.5.0 + "@azure/core-client": ^1.9.2 + "@azure/core-rest-pipeline": ^1.1.0 + "@azure/core-tracing": ^1.0.0 + "@azure/core-util": ^1.3.0 + "@azure/logger": ^1.0.0 + "@azure/msal-browser": ^3.14.0 + "@azure/msal-node": ^2.9.2 + events: ^3.0.0 + jws: ^4.0.0 + open: ^8.0.0 + stoppable: ^1.1.0 + tslib: ^2.2.0 + checksum: 8dba5a1e347b349eb999e46cce190dedef02c0a81a179d4c4bf67ea4407c9f44ace5eec08f1ac8c963f8723e1074d32a9878a0ae5d4d4a880b19389b5fb6e7a1 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.583.0" +"@azure/identity@npm:^4.5.0": + version: 4.5.0 + resolution: "@azure/identity@npm:4.5.0" dependencies: - "@aws-sdk/client-sso": 3.583.0 - "@aws-sdk/token-providers": 3.577.0 - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/shared-ini-file-loader": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: cd2dd6ae4b0cddcf7fcac507158beeb878db947d37f94a53f0573079fb7d1b817525b0c6ab61e384441a2bd608f8a8a45f7e2476a233b66afc3ae6ad23f72116 + "@azure/abort-controller": ^2.0.0 + "@azure/core-auth": ^1.9.0 + "@azure/core-client": ^1.9.2 + "@azure/core-rest-pipeline": ^1.17.0 + "@azure/core-tracing": ^1.0.0 + "@azure/core-util": ^1.11.0 + "@azure/logger": ^1.0.0 + "@azure/msal-browser": ^3.26.1 + "@azure/msal-node": ^2.15.0 + events: ^3.0.0 + jws: ^4.0.0 + open: ^8.0.0 + stoppable: ^1.1.0 + tslib: ^2.2.0 + checksum: 07d15898f194a220376d8d9c0ee891c93c6da188e44e76810fb781bf3bb7424498a6c1fa5b92c5a4d31f62b7398953f8a5bcf0f0ed57ed72239ce1c4f594b355 languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.592.0": - version: 3.592.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.592.0" +"@azure/logger@npm:^1.0.0, @azure/logger@npm:^1.0.3": + version: 1.0.4 + resolution: "@azure/logger@npm:1.0.4" dependencies: - "@aws-sdk/client-sso": 3.592.0 - "@aws-sdk/token-providers": 3.587.0 - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/shared-ini-file-loader": ^3.1.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 5bc46040e521789a091b06d2d09931bd4254a3ece63f3370ec448cd58d0185821a39369efe47478cd6a0cd8911c4d93e52414ecca91ff72ed95b8813b619d93d + tslib: ^2.2.0 + checksum: 2c243d4c667bbc5cd3e60d4473d0f1169fcef2498a02138398af15547fe1b2870197bcb4c487327451488e4d71dee05244771d51328f03611e193b99fb9aa9af languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.598.0" +"@azure/msal-browser@npm:^3.14.0": + version: 3.20.0 + resolution: "@azure/msal-browser@npm:3.20.0" dependencies: - "@aws-sdk/client-sso": 3.598.0 - "@aws-sdk/token-providers": 3.598.0 - "@aws-sdk/types": 3.598.0 - "@smithy/property-provider": ^3.1.1 - "@smithy/shared-ini-file-loader": ^3.1.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: 16828609b9ac17772eecd89deb9ac9b98a1decad42ca1f8cf6a57e6873eeb3563db00bfb67684cbb08108d5ee6b8f98ec23047d7f6750cb67c1342cd8b96ac1c + "@azure/msal-common": 14.14.0 + checksum: 237a041bbe898f46676ddc0e0a0cfb26c821efecc71de19168bd70e216da14f3e83bfad064e4c5e5491828ae3e096a2d46d58b5ba227b820fe716639f9d80f5c languageName: node linkType: hard -"@aws-sdk/credential-provider-sso@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/credential-provider-sso@npm:3.616.0" +"@azure/msal-browser@npm:^3.26.1": + version: 3.27.0 + resolution: "@azure/msal-browser@npm:3.27.0" dependencies: - "@aws-sdk/client-sso": 3.616.0 - "@aws-sdk/token-providers": 3.614.0 - "@aws-sdk/types": 3.609.0 - "@smithy/property-provider": ^3.1.3 - "@smithy/shared-ini-file-loader": ^3.1.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 773fb35df0bb769964dd1da86e9a498620ba411b664e9ef968ba33d222dbc29849eb95a556f11bb23a3893141815db9be098cba3c99dd0148b34f116f5e1ef56 + "@azure/msal-common": 14.16.0 + checksum: 22c7d087380405f87139a7dfa579b8a49a17d5493e748e1e609f5733bb7549dd5b8558d709f81500f8faa3feebbc2245f8978adc96dc2ce84c54825b37301465 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.310.0" - dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 62dd9362bb48e010cb84dfcb92461478b2d1fa830e47e078a9bd074999eb231b0ef4e273e585fce5ed0135768b90bafcbe9ca5df83fc6c0bc5d227ec74271a82 +"@azure/msal-common@npm:14.14.0": + version: 14.14.0 + resolution: "@azure/msal-common@npm:14.14.0" + checksum: c77f51bdddb34da008786d7517713232dc69b7de9deec438ef463098e535ebdb8241ac04e9ddaee859d788dee71d683bf7ef0acab47781457d5c4ea561a8addf languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.357.0" - dependencies: - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 75625393c7a54169666eccc713eb7aa1c5d931680034c3785d4fadf70d281ff4e27132af0a6ae074c5d96f797bfe86e1c4bfd4a53865692c8bff1bf67d66271c +"@azure/msal-common@npm:14.16.0": + version: 14.16.0 + resolution: "@azure/msal-common@npm:14.16.0" + checksum: 01ec26e22243c5c435b97db085e96f5488733336c142b65a118ee6e523a548d3f17d013147810948cceaee7bdc339362bb9b2799fc9ea53c9d4c9aa10d8987e3 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.387.0" +"@azure/msal-node@npm:^2.15.0": + version: 2.16.2 + resolution: "@azure/msal-node@npm:2.16.2" dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 47cf13e4275ee948750c78c147fe70a64698197ed86bc38c29269e745001775cf4261e763e6dd37235ed50adc5638add08b3c04d6bb9af1cf1ef7c79f0cd336b + "@azure/msal-common": 14.16.0 + jsonwebtoken: ^9.0.0 + uuid: ^8.3.0 + checksum: 3676972cf7e1e91ea60773d7054275534239d209989da4c4c1aa790790ba309a2da58d6c593b6465feb1c7028772fce77757227e7ac9631b3a79e4f5a0a81aab languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.425.0" +"@azure/msal-node@npm:^2.9.2": + version: 2.12.0 + resolution: "@azure/msal-node@npm:2.12.0" dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 097474425b56d9d109fffcb2d8ee46289eaf7c31d0629cd8cd9a0d063bd46f0f4a60bcbfc7c7e1a39bb81a3ad6526b414219939da51a776509ca29ddfdcb30d0 + "@azure/msal-common": 14.14.0 + jsonwebtoken: ^9.0.0 + uuid: ^8.3.0 + checksum: ad02d84ff0510594165672f0a39ba78f962631046051daf4de16ad4f783e0ee4c8e372aa99d17ac461c9d52bcceb1215c0d527443d97d5028c5d738029c4e71c languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.489.0" +"@azure/openai@npm:1.0.0-beta.11": + version: 1.0.0-beta.11 + resolution: "@azure/openai@npm:1.0.0-beta.11" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 6da681688c9a61b6e100c71983a1ba19ef34bcbd8d1e4e85e3399d86e74cdc8d81f57b6da1983319596c87ef1600471e82c5243fb909f9752eff99a6ef26a8ea + "@azure-rest/core-client": ^1.1.7 + "@azure/core-auth": ^1.4.0 + "@azure/core-rest-pipeline": ^1.13.0 + "@azure/core-sse": ^2.0.0 + "@azure/core-util": ^1.4.0 + "@azure/logger": ^1.0.3 + tslib: ^2.4.0 + checksum: ce2a0f93bf952aa7b02e2f4f4e7b6a719f7d7a29a6ea1ba91b13582fc7e6fe0b9e0d07d575a273d290eb4f619aabcb599a20478055a2efc0a637c415bb945967 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.577.0" +"@azure/search-documents@npm:^12.0.0": + version: 12.0.0 + resolution: "@azure/search-documents@npm:12.0.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - peerDependencies: - "@aws-sdk/client-sts": ^3.577.0 - checksum: d3eb6c99fe2bfae457c8122b155d0608f0cb0c8fd4bc067f587ffced795b61e4709256842ea629abc0849a085b26d1a946711a646dd87394da6b4d31db7f07e6 + "@azure/core-auth": ^1.3.0 + "@azure/core-client": ^1.3.0 + "@azure/core-http-compat": ^2.0.1 + "@azure/core-paging": ^1.1.1 + "@azure/core-rest-pipeline": ^1.3.0 + "@azure/core-tracing": ^1.0.0 + "@azure/logger": ^1.0.0 + events: ^3.0.0 + tslib: ^2.2.0 + checksum: b42c54b8e128196ed0740d6b4539307d989baaeecd4614ec28fbb7dc2fa175b35db9049968698851502abb4f26b2d2c8ca0c44ddb56089fd9f4bca5cef437002 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.587.0": - version: 3.587.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.587.0" +"@azure/storage-blob@npm:^12.15.0": + version: 12.15.0 + resolution: "@azure/storage-blob@npm:12.15.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - peerDependencies: - "@aws-sdk/client-sts": ^3.587.0 - checksum: bfade039dcf35041fc020832363840e8fd6d7e21afbab35945852f62bb718bc954a59cb78911ea3ce6f9aaca4184f4934ba269f713ff811d06fcef1332af8cba + "@azure/abort-controller": ^1.0.0 + "@azure/core-http": ^3.0.0 + "@azure/core-lro": ^2.2.0 + "@azure/core-paging": ^1.1.1 + "@azure/core-tracing": 1.0.0-preview.13 + "@azure/logger": ^1.0.0 + events: ^3.0.0 + tslib: ^2.2.0 + checksum: fe5399e7107685f1e81bd782fbd10e11c6aec01141c63f24f138a985aa709da96e83fc5dd3295408b0609981b2fb71d2304935056692e4cf3833635157799769 languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.598.0" +"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/code-frame@npm:7.18.6" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/property-provider": ^3.1.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - peerDependencies: - "@aws-sdk/client-sts": ^3.598.0 - checksum: e62352ae7f408ae8969d22fd42a502ec078536952be1253f184bf96c57f3c88589fd431762b2300b494159df4eb4af975358645772ac36f2cc722c86a88ff85e + "@babel/highlight": ^7.18.6 + checksum: 195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba languageName: node linkType: hard -"@aws-sdk/credential-provider-web-identity@npm:3.609.0": - version: 3.609.0 - resolution: "@aws-sdk/credential-provider-web-identity@npm:3.609.0" +"@babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.8.3": + version: 7.22.13 + resolution: "@babel/code-frame@npm:7.22.13" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/property-provider": ^3.1.3 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - peerDependencies: - "@aws-sdk/client-sts": ^3.609.0 - checksum: 7a95a6c4792491122677fab6f01a9a46c8aa2f94d95255430bbd3fdcd514ab05ecf92c0ab169c8b30215b6b9181165f8d009774ba5a39cdd633162ef30879e56 + "@babel/highlight": ^7.22.13 + chalk: ^2.4.2 + checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058 languageName: node linkType: hard -"@aws-sdk/credential-providers@npm:^3.583.0": - version: 3.592.0 - resolution: "@aws-sdk/credential-providers@npm:3.592.0" +"@babel/code-frame@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/code-frame@npm:7.24.7" dependencies: - "@aws-sdk/client-cognito-identity": 3.592.0 - "@aws-sdk/client-sso": 3.592.0 - "@aws-sdk/client-sts": 3.592.0 - "@aws-sdk/credential-provider-cognito-identity": 3.592.0 - "@aws-sdk/credential-provider-env": 3.587.0 - "@aws-sdk/credential-provider-http": 3.587.0 - "@aws-sdk/credential-provider-ini": 3.592.0 - "@aws-sdk/credential-provider-node": 3.592.0 - "@aws-sdk/credential-provider-process": 3.587.0 - "@aws-sdk/credential-provider-sso": 3.592.0 - "@aws-sdk/credential-provider-web-identity": 3.587.0 - "@aws-sdk/types": 3.577.0 - "@smithy/credential-provider-imds": ^3.1.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 558122c1580eda3437b8e25f180660d1f890602930baf265059fa4d460e8928ff4fd5b7240268157ff562f2918992921336874b0ea36b06811c2b157c893bbb3 + "@babel/highlight": ^7.24.7 + picocolors: ^1.0.0 + checksum: 830e62cd38775fdf84d612544251ce773d544a8e63df667728cc9e0126eeef14c6ebda79be0f0bc307e8318316b7f58c27ce86702e0a1f5c321d842eb38ffda4 languageName: node linkType: hard -"@aws-sdk/endpoint-cache@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/endpoint-cache@npm:3.310.0" - dependencies: - mnemonist: 0.38.3 - tslib: ^2.5.0 - checksum: b90a5cfb66fd34b54198d4c10083bbaf8208e55ca02f7e8b14a7de0b2ad5d9dbdd3b38cc50173e5a86d34885f9cffbbe3dcef234fccc98f07920fd5a7f66b773 +"@babel/compat-data@npm:^7.20.5": + version: 7.21.0 + resolution: "@babel/compat-data@npm:7.21.0" + checksum: dbf632c532f9c75ba0be7d1dc9f6cd3582501af52f10a6b90415d634ec5878735bd46064c91673b10317af94d4cc99c4da5bd9d955978cdccb7905fc33291e4d languageName: node linkType: hard -"@aws-sdk/eventstream-codec@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/eventstream-codec@npm:3.310.0" - dependencies: - "@aws-crypto/crc32": 3.0.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-hex-encoding": 3.310.0 - tslib: ^2.5.0 - checksum: 2866186a5303bb8b9151ea69f22bace420317c4ec3b5c9aa0beb9bd007aca419a519be2d911b8119ddfd1c0a8358cc9e0f957ca3a460b3009846e0e5517a8f7a +"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9, @babel/compat-data@npm:^7.23.2": + version: 7.23.2 + resolution: "@babel/compat-data@npm:7.23.2" + checksum: d8dc27437d40907b271161d4c88ffe72ccecb034c730deb1960a417b59a14d7c5ebca8cd80dd458a01cd396a7a329eb48cddcc3791b5a84da33d7f278f7bec6a languageName: node linkType: hard -"@aws-sdk/eventstream-codec@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/eventstream-codec@npm:3.357.0" - dependencies: - "@aws-crypto/crc32": 3.0.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-hex-encoding": 3.310.0 - tslib: ^2.5.0 - checksum: df05de4c42d47f46e3808030f0f190747350218d9a3733958810de2a43e3a4be8458cde27c1f9c7467b0ea65a5d668aa3c72418b3fdf66295c4a91ba07b2ea0e +"@babel/compat-data@npm:^7.25.2": + version: 7.25.4 + resolution: "@babel/compat-data@npm:7.25.4" + checksum: b12a91d27c3731a4b0bdc9312a50b1911f41f7f728aaf0d4b32486e2257fd2cb2d3ea1a295e98449600c48f2c7883a3196ca77cda1cef7d97a10c2e83d037974 languageName: node linkType: hard -"@aws-sdk/eventstream-serde-browser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/eventstream-serde-browser@npm:3.310.0" +"@babel/core@npm:7.12.9": + version: 7.12.9 + resolution: "@babel/core@npm:7.12.9" dependencies: - "@aws-sdk/eventstream-serde-universal": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 10a8dc5999c3f8f683ef399c8866d274232e235bf526c481da2527c24e23836e362c647c92103dcabdf52107b8fd0c46ae8e9f8d2f79741f198022cd94b150f1 + "@babel/code-frame": ^7.10.4 + "@babel/generator": ^7.12.5 + "@babel/helper-module-transforms": ^7.12.1 + "@babel/helpers": ^7.12.5 + "@babel/parser": ^7.12.7 + "@babel/template": ^7.12.7 + "@babel/traverse": ^7.12.9 + "@babel/types": ^7.12.7 + convert-source-map: ^1.7.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.1 + json5: ^2.1.2 + lodash: ^4.17.19 + resolve: ^1.3.2 + semver: ^5.4.1 + source-map: ^0.5.0 + checksum: 4d34eca4688214a4eb6bd5dde906b69a7824f17b931f52cd03628a8ac94d8fbe15565aebffdde106e974c8738cd64ac62c6a6060baa7139a06db1f18c4ff872d languageName: node linkType: hard -"@aws-sdk/eventstream-serde-config-resolver@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/eventstream-serde-config-resolver@npm:3.310.0" +"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3": + version: 7.21.0 + resolution: "@babel/core@npm:7.21.0" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 9ad39115d8bd163fe441fa8128e102c1e6157890c7731d7ab797b63a636f378f30a2695adcf41b58f52b6bfd71b68c2bafe51d1cf4f984b124746341d13ced6b - languageName: node - linkType: hard - -"@aws-sdk/eventstream-serde-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/eventstream-serde-node@npm:3.310.0" - dependencies: - "@aws-sdk/eventstream-serde-universal": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 1a695e39e5bbd4088d5790c8b4389dd635b7f6300892868d35e8711ef7ea5c1f2f50886c9ac55de5eae9619c49fe864c6e530e575a06231300294211a36827b3 + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.18.6 + "@babel/generator": ^7.21.0 + "@babel/helper-compilation-targets": ^7.20.7 + "@babel/helper-module-transforms": ^7.21.0 + "@babel/helpers": ^7.21.0 + "@babel/parser": ^7.21.0 + "@babel/template": ^7.20.7 + "@babel/traverse": ^7.21.0 + "@babel/types": ^7.21.0 + convert-source-map: ^1.7.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.2 + semver: ^6.3.0 + checksum: 357f4dd3638861ceebf6d95ff49ad8b902065ee8b7b352621deed5666c2a6d702a48ca7254dba23ecae2a0afb67d20f90db7dd645c3b75e35e72ad9776c671aa languageName: node linkType: hard -"@aws-sdk/eventstream-serde-universal@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/eventstream-serde-universal@npm:3.310.0" +"@babel/core@npm:^7.18.6, @babel/core@npm:^7.19.6": + version: 7.23.2 + resolution: "@babel/core@npm:7.23.2" dependencies: - "@aws-sdk/eventstream-codec": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 10ce20184cdfd826600f610418e07add4e70073470cf23a5b3b8b4ea479ab096eb70c6eeb9e87bcd30e040270b3c0519fe187aad3363c85bc357a048014a8de4 + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.22.13 + "@babel/generator": ^7.23.0 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helpers": ^7.23.2 + "@babel/parser": ^7.23.0 + "@babel/template": ^7.22.15 + "@babel/traverse": ^7.23.2 + "@babel/types": ^7.23.0 + convert-source-map: ^2.0.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.3 + semver: ^6.3.1 + checksum: 003897718ded16f3b75632d63cd49486bf67ff206cc7ebd1a10d49e2456f8d45740910d5ec7e42e3faf0deec7a2e96b1a02e766d19a67a8309053f0d4e57c0fe languageName: node linkType: hard -"@aws-sdk/fetch-http-handler@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/fetch-http-handler@npm:3.310.0" +"@babel/core@npm:^7.23.9": + version: 7.25.2 + resolution: "@babel/core@npm:7.25.2" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/querystring-builder": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - tslib: ^2.5.0 - checksum: 5daa78ee3e2a0a6bd07c3b8bc658ebd88a063b17025ec23454c2eb433859972d60a550fdc62969754488c3f4d624fbf3e758af8ea891c994998deca0f8e3903e + "@ampproject/remapping": ^2.2.0 + "@babel/code-frame": ^7.24.7 + "@babel/generator": ^7.25.0 + "@babel/helper-compilation-targets": ^7.25.2 + "@babel/helper-module-transforms": ^7.25.2 + "@babel/helpers": ^7.25.0 + "@babel/parser": ^7.25.0 + "@babel/template": ^7.25.0 + "@babel/traverse": ^7.25.2 + "@babel/types": ^7.25.2 + convert-source-map: ^2.0.0 + debug: ^4.1.0 + gensync: ^1.0.0-beta.2 + json5: ^2.2.3 + semver: ^6.3.1 + checksum: 9a1ef604a7eb62195f70f9370cec45472a08114e3934e3eaaedee8fd754edf0730e62347c7b4b5e67d743ce57b5bb8cf3b92459482ca94d06e06246ef021390a languageName: node linkType: hard -"@aws-sdk/fetch-http-handler@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/fetch-http-handler@npm:3.357.0" +"@babel/eslint-parser@npm:^7.18.2": + version: 7.22.15 + resolution: "@babel/eslint-parser@npm:7.22.15" dependencies: - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/querystring-builder": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - tslib: ^2.5.0 - checksum: c72a5e1bca33df01d2b4f827cf45a10c22fcc8d46b2728bfb17f5d1ffc4f6157855668082848969c3bd9930e871767e123d78d4a56e4b989ead97fe544ffb327 + "@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1 + eslint-visitor-keys: ^2.1.0 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.11.0 + eslint: ^7.5.0 || ^8.0.0 + checksum: efdc749164a40de1b68e3ed395f441dfb7864c85d0a2ee3e4bc4f06dd0b7f675acb9be97cdc9025b88b3e80d38749a2b30e392ce7f6a79313c3aaf82ba8ccd68 languageName: node linkType: hard -"@aws-sdk/hash-blob-browser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/hash-blob-browser@npm:3.310.0" +"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.18.7, @babel/generator@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/generator@npm:7.23.0" dependencies: - "@aws-sdk/chunked-blob-reader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 58908f51a89f61b5c0ed036beeda58d7e54d1385ca56447c057569671b110be0dad2bec4618daa35a8170c8b3e0e193bd473f695d0be269ec2dd06915bcaa9b9 + "@babel/types": ^7.23.0 + "@jridgewell/gen-mapping": ^0.3.2 + "@jridgewell/trace-mapping": ^0.3.17 + jsesc: ^2.5.1 + checksum: 8efe24adad34300f1f8ea2add420b28171a646edc70f2a1b3e1683842f23b8b7ffa7e35ef0119294e1901f45bfea5b3dc70abe1f10a1917ccdfb41bed69be5f1 languageName: node linkType: hard -"@aws-sdk/hash-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/hash-node@npm:3.310.0" +"@babel/generator@npm:^7.21.0, @babel/generator@npm:^7.21.1, @babel/generator@npm:^7.7.2": + version: 7.21.1 + resolution: "@babel/generator@npm:7.21.1" dependencies: - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-buffer-from": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 379c04c78679d68730272b89fa397cdfcd444ae2f21d7dc51953e9885842469de40593efbb86b2399342e022b2ba17926841ef0a9fb108809296b2df416226c1 + "@babel/types": ^7.21.0 + "@jridgewell/gen-mapping": ^0.3.2 + "@jridgewell/trace-mapping": ^0.3.17 + jsesc: ^2.5.1 + checksum: 69085a211ff91a7a608ee3f86e6fcb9cf5e724b756d792a713b0c328a671cd3e423e1ef1b12533f366baba0616caffe0a7ba9d328727eab484de5961badbef00 languageName: node linkType: hard -"@aws-sdk/hash-node@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/hash-node@npm:3.357.0" +"@babel/generator@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/generator@npm:7.24.7" dependencies: - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-buffer-from": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 295fbfd2099a393537067a313619d41b2efafae690f252e501c44e75ad4149df67c5e08786cb75f4e3e34b2f16871c4d1603ff8f91dcc9975137bf868e19a2cc + "@babel/types": ^7.24.7 + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 + jsesc: ^2.5.1 + checksum: 0ff31a73b15429f1287e4d57b439bba4a266f8c673bb445fe313b82f6d110f586776997eb723a777cd7adad9d340edd162aea4973a90112c5d0cfcaf6686844b languageName: node linkType: hard -"@aws-sdk/hash-stream-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/hash-stream-node@npm:3.310.0" +"@babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.6": + version: 7.25.6 + resolution: "@babel/generator@npm:7.25.6" dependencies: - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 42fe6f8eddd67565019d935b109e9f3acf0eacfd940712859e718db8f1ca4550c305f0fc4dad9944624ea10e0ff7e15f895d13cce0cdcf5c614d3bff39263ecf + "@babel/types": ^7.25.6 + "@jridgewell/gen-mapping": ^0.3.5 + "@jridgewell/trace-mapping": ^0.3.25 + jsesc: ^2.5.1 + checksum: b55975cd664f5602304d868bb34f4ee3bed6f5c7ce8132cd92ff27a46a53a119def28a182d91992e86f75db904f63094a81247703c4dc96e4db0c03fd04bcd68 languageName: node linkType: hard -"@aws-sdk/invalid-dependency@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/invalid-dependency@npm:3.310.0" +"@babel/helper-annotate-as-pure@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: e38d09615e273617583e845b2cd3683c9d27d54234a98bec7da1cf959107329f73e62b322479415155016ed62c7d849cd6542d6e9e33572f6ed542013c15821c + "@babel/types": ^7.22.5 + checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d languageName: node linkType: hard -"@aws-sdk/invalid-dependency@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/invalid-dependency@npm:3.357.0" +"@babel/helper-annotate-as-pure@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-annotate-as-pure@npm:7.24.7" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 203148201ea0957350231cf8c1821e6e11573dfb36c5648f30bf2a89955a754500d228f93a63a08299881be151301cf9fe8417353653fe582d8f4f82d28fc4d1 + "@babel/types": ^7.24.7 + checksum: 6178566099a6a0657db7a7fa601a54fb4731ca0b8614fbdccfd8e523c210c13963649bc8fdfd53ce7dd14d05e3dda2fb22dea5b30113c488b9eb1a906d60212e languageName: node linkType: hard -"@aws-sdk/is-array-buffer@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/is-array-buffer@npm:3.310.0" +"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15" dependencies: - tslib: ^2.5.0 - checksum: ddd1536ad16e29186fb5055bc279cfe9790b7c32552e1ee21e31d4e410e1df297b06c94c6117f854ec368d29e60a231dd8cc77e5b604a6260e7602876fd047f8 + "@babel/types": ^7.22.15 + checksum: 639c697a1c729f9fafa2dd4c9af2e18568190299b5907bd4c2d0bc818fcbd1e83ffeecc2af24327a7faa7ac4c34edd9d7940510a5e66296c19bad17001cf5c7a languageName: node linkType: hard -"@aws-sdk/md5-js@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/md5-js@npm:3.310.0" +"@babel/helper-compilation-targets@npm:^7.20.7": + version: 7.20.7 + resolution: "@babel/helper-compilation-targets@npm:7.20.7" dependencies: - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 1939591f5f384e55ce9d610cbf3e8ae25e76c14489385ef73ee0c674b641351820d17e2406943e2b3ee4a3736d280256f2b79bb381e18e78440faf74d4ca04cf + "@babel/compat-data": ^7.20.5 + "@babel/helper-validator-option": ^7.18.6 + browserslist: ^4.21.3 + lru-cache: ^5.1.1 + semver: ^6.3.0 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 8c32c873ba86e2e1805b30e0807abd07188acbe00ebb97576f0b09061cc65007f1312b589eccb4349c5a8c7f8bb9f2ab199d41da7030bf103d9f347dcd3a3cf4 languageName: node linkType: hard -"@aws-sdk/middleware-bucket-endpoint@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-bucket-endpoint@npm:3.310.0" +"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.5, @babel/helper-compilation-targets@npm:^7.22.6": + version: 7.22.15 + resolution: "@babel/helper-compilation-targets@npm:7.22.15" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-arn-parser": 3.310.0 - "@aws-sdk/util-config-provider": 3.310.0 - tslib: ^2.5.0 - checksum: cf300c0226a649bdd7128c5c44ff03bac58119390c8bf82a712094e95c2df4c0b1693a74256968294d8ad397828fb2f7d5f0d9355c08d1d67a24888255d6dfd2 + "@babel/compat-data": ^7.22.9 + "@babel/helper-validator-option": ^7.22.15 + browserslist: ^4.21.9 + lru-cache: ^5.1.1 + semver: ^6.3.1 + checksum: ce85196769e091ae54dd39e4a80c2a9df1793da8588e335c383d536d54f06baf648d0a08fc873044f226398c4ded15c4ae9120ee18e7dfd7c639a68e3cdc9980 languageName: node linkType: hard -"@aws-sdk/middleware-content-length@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-content-length@npm:3.310.0" +"@babel/helper-compilation-targets@npm:^7.25.2": + version: 7.25.2 + resolution: "@babel/helper-compilation-targets@npm:7.25.2" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 66977eac6aa9ce0d7c5640e357608b79eec18919d4e94c37aacf76801ac1b24471a3483755d1ab30a416aa2aa10c9da02fb6241f11e29ea99079ff04bdf012b1 + "@babel/compat-data": ^7.25.2 + "@babel/helper-validator-option": ^7.24.8 + browserslist: ^4.23.1 + lru-cache: ^5.1.1 + semver: ^6.3.1 + checksum: aed33c5496cb9db4b5e2d44e26bf8bc474074cc7f7bb5ebe1d4a20fdeb362cb3ba9e1596ca18c7484bcd6e5c3a155ab975e420d520c0ae60df81f9de04d0fd16 languageName: node linkType: hard -"@aws-sdk/middleware-content-length@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-content-length@npm:3.325.0" +"@babel/helper-create-class-features-plugin@npm:^7.22.11, @babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-create-class-features-plugin@npm:7.22.15" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 18dc5c75c2bed6b5864d0ecbc8c12c0ab94365f4d3be52335c7ad2263bbe3490d049718df99506ba7cc22194d35622d356f42be7ef149d9c740d7f09037f9d5c + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-environment-visitor": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-member-expression-to-functions": ^7.22.15 + "@babel/helper-optimise-call-expression": ^7.22.5 + "@babel/helper-replace-supers": ^7.22.9 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 52c500d8d164abb3a360b1b7c4b8fff77bc4a5920d3a2b41ae6e1d30617b0dc0b972c1f5db35b1752007e04a748908b4a99bc872b73549ae837e87dcdde005a3 languageName: node linkType: hard -"@aws-sdk/middleware-content-length@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-content-length@npm:3.357.0" +"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15" dependencies: - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 308f5d7f1fa2e42c3bf3619d42cfa85ad47e1b219428e01ad21ad1ebc60ac1b416aabec1868f3ea30a81215cf3386c1dadb3b98e5e66280a092da3fa487774cc + "@babel/helper-annotate-as-pure": ^7.22.5 + regexpu-core: ^5.3.1 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 0243b8d4854f1dc8861b1029a46d3f6393ad72f366a5a08e36a4648aa682044f06da4c6e87a456260e1e1b33c999f898ba591a0760842c1387bcc93fbf2151a6 languageName: node linkType: hard -"@aws-sdk/middleware-endpoint-discovery@npm:3.326.0": - version: 3.326.0 - resolution: "@aws-sdk/middleware-endpoint-discovery@npm:3.326.0" +"@babel/helper-define-polyfill-provider@npm:^0.4.3": + version: 0.4.3 + resolution: "@babel/helper-define-polyfill-provider@npm:0.4.3" dependencies: - "@aws-sdk/endpoint-cache": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 105518cc6645f10b2893cca22e0abdb36bf06dba93cb22b6f717d77ccea401580f401dfe9d98a27b5f49b297de117ffe58c7c3fa2e57ea1fe164c29136216fd7 + "@babel/helper-compilation-targets": ^7.22.6 + "@babel/helper-plugin-utils": ^7.22.5 + debug: ^4.1.1 + lodash.debounce: ^4.0.8 + resolve: ^1.14.2 + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + checksum: 5d21e3f47b320e4b5b644195ec405e7ebc3739e48e65899efc808c5fa9c3bf5b06ce0d8ff5246ca99d1411e368f4557bc66730196c5781a5c4e986ee703bee79 languageName: node linkType: hard -"@aws-sdk/middleware-endpoint@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-endpoint@npm:3.310.0" - dependencies: - "@aws-sdk/middleware-serde": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - tslib: ^2.5.0 - checksum: 7d61ceaff3fb6be779f9b0597fceccbc1d5ebbc83b83d93ac184fc6451e60b4acca9eebb0c83c9e1c6b34400bd39345b498227860892ed51eda2b99f16ff0566 +"@babel/helper-environment-visitor@npm:^7.18.9": + version: 7.18.9 + resolution: "@babel/helper-environment-visitor@npm:7.18.9" + checksum: b25101f6162ddca2d12da73942c08ad203d7668e06663df685634a8fde54a98bc015f6f62938e8554457a592a024108d45b8f3e651fd6dcdb877275b73cc4420 languageName: node linkType: hard -"@aws-sdk/middleware-endpoint@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-endpoint@npm:3.325.0" - dependencies: - "@aws-sdk/middleware-serde": 3.325.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/url-parser": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - tslib: ^2.5.0 - checksum: 1cda5c7e9a2fe1e26623e8c69c221937c6b36511ca4a1d5d7a93fdbf3130e6e30c3116509684dcc58d05bfb18272ce10b863979f37af1f67388d2f6c426dcf3e +"@babel/helper-environment-visitor@npm:^7.22.20, @babel/helper-environment-visitor@npm:^7.22.5": + version: 7.22.20 + resolution: "@babel/helper-environment-visitor@npm:7.22.20" + checksum: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69 languageName: node linkType: hard -"@aws-sdk/middleware-endpoint@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-endpoint@npm:3.357.0" +"@babel/helper-environment-visitor@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-environment-visitor@npm:7.24.7" dependencies: - "@aws-sdk/middleware-serde": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/url-parser": 3.357.0 - "@aws-sdk/util-middleware": 3.357.0 - tslib: ^2.5.0 - checksum: 2085f37d237e33378ecce44703f9dca5b9f66b36b4bbbd4bb39e726ebce745d07ca948b1d6f9a2f832d75b4e67ec3254d89d26ded4596c5cf29aad827a0fa906 + "@babel/types": ^7.24.7 + checksum: 079d86e65701b29ebc10baf6ed548d17c19b808a07aa6885cc141b690a78581b180ee92b580d755361dc3b16adf975b2d2058b8ce6c86675fcaf43cf22f2f7c6 languageName: node linkType: hard -"@aws-sdk/middleware-expect-continue@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-expect-continue@npm:3.310.0" +"@babel/helper-function-name@npm:^7.21.0": + version: 7.21.0 + resolution: "@babel/helper-function-name@npm:7.21.0" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 717eb502c00bc5b32cbb210657b0cfdec837f5296f86043bce40f43535f345e689639b017c71271709bdee0a58cc4ade6324ae0bcccfcdc0789e8699b2ce9f76 + "@babel/template": ^7.20.7 + "@babel/types": ^7.21.0 + checksum: d63e63c3e0e3e8b3138fa47b0cd321148a300ef12b8ee951196994dcd2a492cc708aeda94c2c53759a5c9177fffaac0fd8778791286746f72a000976968daf4e languageName: node linkType: hard -"@aws-sdk/middleware-flexible-checksums@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-flexible-checksums@npm:3.310.0" +"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/helper-function-name@npm:7.23.0" dependencies: - "@aws-crypto/crc32": 3.0.0 - "@aws-crypto/crc32c": 3.0.0 - "@aws-sdk/is-array-buffer": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: be99290968c5e00053dd2e43683d77cd08dbe1acff64189e522d9e4aa1440c8e6ae86d784ef4d163a059f725b52fdd5812b54594d70a9773c25feef24e63c9c3 + "@babel/template": ^7.22.15 + "@babel/types": ^7.23.0 + checksum: e44542257b2d4634a1f979244eb2a4ad8e6d75eb6761b4cfceb56b562f7db150d134bc538c8e6adca3783e3bc31be949071527aa8e3aab7867d1ad2d84a26e10 languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.310.0" +"@babel/helper-function-name@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-function-name@npm:7.24.7" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 9b1bf8598f9bf44a0cd992f08820ce54fb7ce5f33366796b7328a003c2efc00754a3e0bfd56be87b221ca0f15b4c00f5caf736bf196cb9a4b3ca26dfd3e7f7db + "@babel/template": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 142ee08922074dfdc0ff358e09ef9f07adf3671ab6eef4fca74dcf7a551f1a43717e7efa358c9e28d7eea84c28d7f177b7a58c70452fc312ae3b1893c5dab2a4 languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.325.0" +"@babel/helper-hoist-variables@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/helper-hoist-variables@npm:7.18.6" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 3fec43e7a791d1a3ceed0d7f541cea98dfbb629850c96c077c16d920645e8270ba418e1030b68ff5d145609a59358f9d66ff5f6f0c012543802b1adb65ba8c4f + "@babel/types": ^7.18.6 + checksum: fd9c35bb435fda802bf9ff7b6f2df06308a21277c6dec2120a35b09f9de68f68a33972e2c15505c1a1a04b36ec64c9ace97d4a9e26d6097b76b4396b7c5fa20f languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.357.0" - dependencies: - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: e8471d0ca23ca598a042704877069a81576c2fb743c37818cc09c9383431ecb7e2f32f4bdf22094011bec3ece3e8523f2a3a99b8f8b04e4cca0c871d4d7a8194 +"@babel/helper-hoist-variables@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-hoist-variables@npm:7.22.5" + dependencies: + "@babel/types": ^7.22.5 + checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.387.0" +"@babel/helper-hoist-variables@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-hoist-variables@npm:7.24.7" dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/protocol-http": ^2.0.2 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 91fdffa0051d1c426533170b1770c174abffc822b6e8e0cf0b850536a32c9fdea3241279494e2511232a46260b2320546bb9a59b2d4ee05a72f3cedabe6fa1a1 + "@babel/types": ^7.24.7 + checksum: 6cfdcf2289cd12185dcdbdf2435fa8d3447b797ac75851166de9fc8503e2fd0021db6baf8dfbecad3753e582c08e6a3f805c8d00cbed756060a877d705bd8d8d languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.425.0" +"@babel/helper-member-expression-to-functions@npm:^7.22.15": + version: 7.23.0 + resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0" dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/protocol-http": ^3.0.6 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: d9b477b31480ccf7d15d2769411cbed28e08caf5aa7fa5e96c771998325f769154bdf9356e5354d03b77bb459971b9399fec6e3c9fc764e1591964142041bb4c + "@babel/types": ^7.23.0 + checksum: 494659361370c979ada711ca685e2efe9460683c36db1b283b446122596602c901e291e09f2f980ecedfe6e0f2bd5386cb59768285446530df10c14df1024e75 languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.489.0" +"@babel/helper-module-imports@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/helper-module-imports@npm:7.18.6" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/protocol-http": ^3.0.12 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 15072d8409066de23ae815ce84c9ab9ce509e368654a3438b398e0f1bec5e215a52a59388ede1fe4c7a40cb639759c50aab3a3562ffe17352a24e6f92f2ddd1e + "@babel/types": ^7.18.6 + checksum: f393f8a3b3304b1b7a288a38c10989de754f01d29caf62ce7c4e5835daf0a27b81f3ac687d9d2780d39685aae7b55267324b512150e7b2be967b0c493b6a1def languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.577.0" +"@babel/helper-module-imports@npm:^7.22.15, @babel/helper-module-imports@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/helper-module-imports@npm:7.22.15" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: f325612558d8d56a13e0593a78a1807c55dac5913313ed53d0a09a1c4bc771976e74e1738bd46068adeea755c35f72b19c2f902ecad1ff1ae52290972cf9fe88 + "@babel/types": ^7.22.15 + checksum: ecd7e457df0a46f889228f943ef9b4a47d485d82e030676767e6a2fdcbdaa63594d8124d4b55fd160b41c201025aec01fc27580352b1c87a37c9c6f33d116702 languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.598.0" +"@babel/helper-module-imports@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-module-imports@npm:7.24.7" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/protocol-http": ^4.0.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: c505de5bf4f39051a55011b9b2da0b673bda668def00a9b3b4696a3146bfbf0e5509d3bde28ef238648158b863816ce85fbf5829228bb97450c826b7d24d40d0 + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: 8ac15d96d262b8940bc469052a048e06430bba1296369be695fabdf6799f201dd0b00151762b56012a218464e706bc033f27c07f6cec20c6f8f5fd6543c67054 languageName: node linkType: hard -"@aws-sdk/middleware-host-header@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/middleware-host-header@npm:3.616.0" +"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.22.5, @babel/helper-module-transforms@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/helper-module-transforms@npm:7.23.0" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/protocol-http": ^4.0.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 7936068785a58e35adf96b90d6e72d9defca2d1051992bfd7bf5bbc150d000942ff587151d27d40276942d430817bac9985ab68d926333dfb581983b6236a21c + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-module-imports": ^7.22.15 + "@babel/helper-simple-access": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + "@babel/helper-validator-identifier": ^7.22.20 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 6e2afffb058cf3f8ce92f5116f710dda4341c81cfcd872f9a0197ea594f7ce0ab3cb940b0590af2fe99e60d2e5448bfba6bca8156ed70a2ed4be2adc8586c891 languageName: node linkType: hard -"@aws-sdk/middleware-location-constraint@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-location-constraint@npm:3.310.0" +"@babel/helper-module-transforms@npm:^7.21.0": + version: 7.21.2 + resolution: "@babel/helper-module-transforms@npm:7.21.2" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 2ca1a7d9ca47c29468c4286731f0a1dc15e0233f0a59bc1dad3f3ed5917b1e5d7b344c705660cc3afdecb153f2e2f203e9ae37eb018d6a56aaeba7ad05ebd466 + "@babel/helper-environment-visitor": ^7.18.9 + "@babel/helper-module-imports": ^7.18.6 + "@babel/helper-simple-access": ^7.20.2 + "@babel/helper-split-export-declaration": ^7.18.6 + "@babel/helper-validator-identifier": ^7.19.1 + "@babel/template": ^7.20.7 + "@babel/traverse": ^7.21.2 + "@babel/types": ^7.21.2 + checksum: 8a1c129a4f90bdf97d8b6e7861732c9580f48f877aaaafbc376ce2482febebcb8daaa1de8bc91676d12886487603f8c62a44f9e90ee76d6cac7f9225b26a49e1 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-logger@npm:3.310.0" +"@babel/helper-module-transforms@npm:^7.25.2": + version: 7.25.2 + resolution: "@babel/helper-module-transforms@npm:7.25.2" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 13014451afaadf11524754f959aaa4c4e7763442dedef841d693159370720e40d20a6113851b87b6cab6c709d92b1e952adede0ec9948dbaa1546dbff1e477d0 + "@babel/helper-module-imports": ^7.24.7 + "@babel/helper-simple-access": ^7.24.7 + "@babel/helper-validator-identifier": ^7.24.7 + "@babel/traverse": ^7.25.2 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 282d4e3308df6746289e46e9c39a0870819630af5f84d632559171e4fae6045684d771a65f62df3d569e88ccf81dc2def78b8338a449ae3a94bb421aa14fc367 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-logger@npm:3.325.0" +"@babel/helper-optimise-call-expression@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 7d6d166a03d4915261f44462eb179d5cfc3109280adbf13a5452816ea06944279e5319c8d1787ed49d98f8d20c34e67bedf1650d0b729d49800b6b3f78c001cc + "@babel/types": ^7.22.5 + checksum: c70ef6cc6b6ed32eeeec4482127e8be5451d0e5282d5495d5d569d39eb04d7f1d66ec99b327f45d1d5842a9ad8c22d48567e93fc502003a47de78d122e355f7c languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-logger@npm:3.357.0" - dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 0ee86f855ccebb31205b5f86e7b2baba71e2127d02d55ff630757d198ae40766458835ae247cae43a33030b6ba2b36f676ae8fc3935601d321bf6cd9515a1b2a +"@babel/helper-plugin-utils@npm:7.10.4": + version: 7.10.4 + resolution: "@babel/helper-plugin-utils@npm:7.10.4" + checksum: 639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/middleware-logger@npm:3.387.0" - dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 75812390856559eaf9e8259f3d335c97268783d2e175dbd4568271e8f321a7a34754fcfcff0f70726a751c0418f6787ddbd7f1ebb3b644530e743edb5da63c2b +"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.19.0, @babel/helper-plugin-utils@npm:^7.8.0": + version: 7.20.2 + resolution: "@babel/helper-plugin-utils@npm:7.20.2" + checksum: f6cae53b7fdb1bf3abd50fa61b10b4470985b400cc794d92635da1e7077bb19729f626adc0741b69403d9b6e411cddddb9c0157a709cc7c4eeb41e663be5d74b languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/middleware-logger@npm:3.425.0" - dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 406622466ba0ed4f531bd2cb27628da83993df1476e3375743cb2ba896e553b4211632034e6b9b290e1c9796067010192fe52c8bf3b73dceab8bbd85cc2a39c0 +"@babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.3": + version: 7.22.5 + resolution: "@babel/helper-plugin-utils@npm:7.22.5" + checksum: c0fc7227076b6041acd2f0e818145d2e8c41968cc52fb5ca70eed48e21b8fe6dd88a0a91cbddf4951e33647336eb5ae184747ca706817ca3bef5e9e905151ff5 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-logger@npm:3.489.0" - dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 10fa2538663512158f7a5889da693b0351f1f464457e45bc02199540adf6985ddfda81fe36dbdddabe1fe12709118fa106a365988e691fab834c9d93bf34329e +"@babel/helper-plugin-utils@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-plugin-utils@npm:7.24.7" + checksum: 81f2a15751d892e4a8fce25390f973363a5b27596167861d2d6eab0f61856eb2ba389b031a9f19f669c0bd4dd601185828d3cebafd25431be7a1696f2ce3ef68 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/middleware-logger@npm:3.577.0" +"@babel/helper-remap-async-to-generator@npm:^7.22.20, @babel/helper-remap-async-to-generator@npm:^7.22.5": + version: 7.22.20 + resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 142e993c82997391fb9c66244f2add15ad71e626b9aacf36a81ea369d33e3a1375ece09dd6315bf8fcaf4d8dcbaae340237088f1091f12a8f56740eddb32090a + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-wrap-function": ^7.22.20 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 2fe6300a6f1b58211dffa0aed1b45d4958506d096543663dba83bd9251fe8d670fa909143a65b45e72acb49e7e20fbdb73eae315d9ddaced467948c3329986e7 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/middleware-logger@npm:3.598.0" +"@babel/helper-replace-supers@npm:^7.22.5, @babel/helper-replace-supers@npm:^7.22.9": + version: 7.22.20 + resolution: "@babel/helper-replace-supers@npm:7.22.20" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: 8c90bf68b65fe82ae08bf0c665bfea335fef757f8be7ddac6f9059f9f149c9bebc68e034bc225d131d168a61d61a409936d4f4d260c4b2aa2251385238df765a + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-member-expression-to-functions": ^7.22.15 + "@babel/helper-optimise-call-expression": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a0008332e24daedea2e9498733e3c39b389d6d4512637e000f96f62b797e702ee24a407ccbcd7a236a551590a38f31282829a8ef35c50a3c0457d88218cae639 languageName: node linkType: hard -"@aws-sdk/middleware-logger@npm:3.609.0": - version: 3.609.0 - resolution: "@aws-sdk/middleware-logger@npm:3.609.0" +"@babel/helper-simple-access@npm:^7.20.2": + version: 7.20.2 + resolution: "@babel/helper-simple-access@npm:7.20.2" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: b6f67a2e9ba082c8aec9d45905ae45ea5a95896f1beecb0c2d7fecfe17dd8fad99513f43b11ed7fd6ca9ff7764a0fc1ce63af91b1baed92b36f7b4b5390be5c6 + "@babel/types": ^7.20.2 + checksum: ad1e96ee2e5f654ffee2369a586e5e8d2722bf2d8b028a121b4c33ebae47253f64d420157b9f0a8927aea3a9e0f18c0103e74fdd531815cf3650a0a4adca11a1 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.310.0" +"@babel/helper-simple-access@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-simple-access@npm:7.22.5" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: a5db6bec59a5232ebc28296d165d09fb94d74e9232d32f49f77bccbbae62cda58215d2f8a17979f1714b9dd07c25a989caae8bc7eee1f57c57d67328788fa401 + "@babel/types": ^7.22.5 + checksum: fe9686714caf7d70aedb46c3cce090f8b915b206e09225f1e4dbc416786c2fdbbee40b38b23c268b7ccef749dd2db35f255338fb4f2444429874d900dede5ad2 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.325.0" +"@babel/helper-simple-access@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-simple-access@npm:7.24.7" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 28449f6ce29d0ef1aeddcecf6b14584dd6a71ec50d747ae765b0002b8052e71d64e6870bea8d727fcba1ae29dc762d55925b9f3010025a9145e3edb755580b5c + "@babel/traverse": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: ddbf55f9dea1900213f2a1a8500fabfd21c5a20f44dcfa957e4b0d8638c730f88751c77f678644f754f1a1dc73f4eb8b766c300deb45a9daad000e4247957819 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.357.0" +"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" dependencies: - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 33625801a66eed9dc68ea0ccb4689b5a26ae3e5aa39d790c241f534aa8c1da9650a7fd607333e24f0aa59d9d8c9c57de16e31ff5d100298edb0238aec79b5bb1 + "@babel/types": ^7.22.5 + checksum: 1012ef2295eb12dc073f2b9edf3425661e9b8432a3387e62a8bc27c42963f1f216ab3124228015c748770b2257b4f1fda882ca8fa34c0bf485e929ae5bc45244 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.387.0" +"@babel/helper-split-export-declaration@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/helper-split-export-declaration@npm:7.18.6" dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/protocol-http": ^2.0.2 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: dd6ed9eb8969181f3adf5820f66db38ab544fda03f44bec87e6efdb194f01184094dc2d3ce150e9f045a75decb99e37a9a1dc8b37a78f8722caae8367c9db8d9 + "@babel/types": ^7.18.6 + checksum: c6d3dede53878f6be1d869e03e9ffbbb36f4897c7cc1527dc96c56d127d834ffe4520a6f7e467f5b6f3c2843ea0e81a7819d66ae02f707f6ac057f3d57943a2b languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.425.0" +"@babel/helper-split-export-declaration@npm:^7.22.6": + version: 7.22.6 + resolution: "@babel/helper-split-export-declaration@npm:7.22.6" dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/protocol-http": ^3.0.6 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: ab845ad59db5bf0048f59d990c5163feb9f5e8dd65792d4a560fd1eff88f10ba7677bb5f71135054e7f0e83f0049e749b5cc62f4e5f37a55d002b552d61c72b3 + "@babel/types": ^7.22.5 + checksum: e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.489.0" +"@babel/helper-split-export-declaration@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-split-export-declaration@npm:7.24.7" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/protocol-http": ^3.0.12 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: bf1592f0577e8a5be5857100c288c0de0895b98b00d1947403d9ff99936d366cd3e8ae4838560ee68ff0d5fb74f26c2f139f23fee8b72ce8f753a742b467bb02 + "@babel/types": ^7.24.7 + checksum: e3ddc91273e5da67c6953f4aa34154d005a00791dc7afa6f41894e768748540f6ebcac5d16e72541aea0c89bee4b89b4da6a3d65972a0ea8bfd2352eda5b7e22 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.577.0" - dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 9655fe7b9a071a9a62397871a7bc529ebfff372a2cd1997b78c22ff320b0cdf0224881c122375e0b97e7307a167d437f438f6c414db71c882afb66a0510a519e +"@babel/helper-string-parser@npm:^7.19.4": + version: 7.19.4 + resolution: "@babel/helper-string-parser@npm:7.19.4" + checksum: b2f8a3920b30dfac81ec282ac4ad9598ea170648f8254b10f475abe6d944808fb006aab325d3eb5a8ad3bea8dfa888cfa6ef471050dae5748497c110ec060943 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.598.0" - dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/protocol-http": ^4.0.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: 161247dbbc8aa31d77c8d4c9c55264c775b5f9996e58451574605435c4a0ff6b9fce28be6f133ddce9f93a24f08c7af6fde59ef93ecb2cc4cd170a4db72b4833 +"@babel/helper-string-parser@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/helper-string-parser@npm:7.22.5" + checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467 languageName: node linkType: hard -"@aws-sdk/middleware-recursion-detection@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/middleware-recursion-detection@npm:3.616.0" - dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/protocol-http": ^4.0.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 43bd173705125f07e44c0c0feb85af0edba1503fe629d9eacdcc446d45d038fca6148415a9f721d80a80a5dab390585ef122823f30bd8e06d723f523c6fc58c3 +"@babel/helper-string-parser@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-string-parser@npm:7.24.7" + checksum: 09568193044a578743dd44bf7397940c27ea693f9812d24acb700890636b376847a611cdd0393a928544e79d7ad5b8b916bd8e6e772bc8a10c48a647a96e7b1a languageName: node linkType: hard -"@aws-sdk/middleware-retry@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-retry@npm:3.310.0" - dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/service-error-classification": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - "@aws-sdk/util-retry": 3.310.0 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: 7d69c187d4cfad62df01b445596f812157e4028b377f34c40f6b272df3660a48ebbc6a0c86eba98b1b19454ade6be7b1459c62ffe8a1924725a23e330d2814b7 +"@babel/helper-string-parser@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-string-parser@npm:7.24.8" + checksum: 39b03c5119216883878655b149148dc4d2e284791e969b19467a9411fccaa33f7a713add98f4db5ed519535f70ad273cdadfd2eb54d47ebbdeac5083351328ce languageName: node linkType: hard -"@aws-sdk/middleware-retry@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/middleware-retry@npm:3.327.0" - dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/service-error-classification": 3.327.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - "@aws-sdk/util-retry": 3.327.0 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: 9b3b627712dfec8f4e6c0bd146d779df320e169e7d85e166f16c4277c598d3f94d0fe7f476c8b6596e6895848dea371c98af3ddb2d7493b0244903f0f4613d01 +"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1": + version: 7.19.1 + resolution: "@babel/helper-validator-identifier@npm:7.19.1" + checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a languageName: node linkType: hard -"@aws-sdk/middleware-retry@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-retry@npm:3.357.0" - dependencies: - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/service-error-classification": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-middleware": 3.357.0 - "@aws-sdk/util-retry": 3.357.0 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: bf9d0143af03431bb28c24d055780711774ef312c710ae4b58d846924a7d35571a7c2bd4e5a7e1ac219b791ba0af259df06ba139df478a2e7a53004e7712ca47 +"@babel/helper-validator-identifier@npm:^7.22.20": + version: 7.22.20 + resolution: "@babel/helper-validator-identifier@npm:7.22.20" + checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc languageName: node linkType: hard -"@aws-sdk/middleware-retry@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/middleware-retry@npm:3.362.0" - dependencies: - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/service-error-classification": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-middleware": 3.357.0 - "@aws-sdk/util-retry": 3.362.0 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: 8a9b2ddb326a63a6598a2d7575d841c9c04eb8c688858bb05f661a5fff6a6a2d48f0fa52563e40dc7a9eab1cc491c3741d1f4861242dd3f199706dc4053cf3b0 +"@babel/helper-validator-identifier@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-validator-identifier@npm:7.24.7" + checksum: 6799ab117cefc0ecd35cd0b40ead320c621a298ecac88686a14cffceaac89d80cdb3c178f969861bf5fa5e4f766648f9161ea0752ecfe080d8e89e3147270257 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-s3@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-sdk-s3@npm:3.310.0" - dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-arn-parser": 3.310.0 - tslib: ^2.5.0 - checksum: b546560c2fc3fcbb37d38b5d02e3f8349592d66a6a2ef4571b72d0bb6c398d0c2bb7008665d58541efc577372f2e1aae88ea1318ba0fe8613583397604dff02e +"@babel/helper-validator-option@npm:^7.18.6": + version: 7.21.0 + resolution: "@babel/helper-validator-option@npm:7.21.0" + checksum: 8ece4c78ffa5461fd8ab6b6e57cc51afad59df08192ed5d84b475af4a7193fc1cb794b59e3e7be64f3cdc4df7ac78bf3dbb20c129d7757ae078e6279ff8c2f07 languageName: node linkType: hard -"@aws-sdk/middleware-sdk-sts@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-sdk-sts@npm:3.310.0" - dependencies: - "@aws-sdk/middleware-signing": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 80debd2f2371f65f7c37f2f0101e9e8ac520ef74d6a8ba54fedfbad6d63653732f7ce6095bae7bf3adbfec61bfa4d9f816b8eb5550cdadec825b400cf74bb2ce +"@babel/helper-validator-option@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/helper-validator-option@npm:7.22.15" + checksum: 68da52b1e10002a543161494c4bc0f4d0398c8fdf361d5f7f4272e95c45d5b32d974896d44f6a0ea7378c9204988879d73613ca683e13bd1304e46d25ff67a8d languageName: node linkType: hard -"@aws-sdk/middleware-sdk-sts@npm:3.326.0": - version: 3.326.0 - resolution: "@aws-sdk/middleware-sdk-sts@npm:3.326.0" - dependencies: - "@aws-sdk/middleware-signing": 3.325.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: c80834ccdceeafa0881d8c3757a54e4aff045d136ac4cc88a1c1b0809a8e2ae73f73a4ab11c7c807985f017e21edd7c2123ce44b05ba5c75640474dfbb095c04 +"@babel/helper-validator-option@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/helper-validator-option@npm:7.24.7" + checksum: 9689166bf3f777dd424c026841c8cd651e41b21242dbfd4569a53086179a3e744c8eddd56e9d10b54142270141c91581b53af0d7c00c82d552d2540e2a919f7e languageName: node linkType: hard -"@aws-sdk/middleware-sdk-sts@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-sdk-sts@npm:3.357.0" - dependencies: - "@aws-sdk/middleware-signing": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 138a7f8a397529a05c1316bc0c39339678ed6025b9a356126129136e078cfa48b79ead194f5354cb7089cedd787b1a9927e6fb9fd01bd4f42bed78df02204c6e +"@babel/helper-validator-option@npm:^7.24.8": + version: 7.24.8 + resolution: "@babel/helper-validator-option@npm:7.24.8" + checksum: a52442dfa74be6719c0608fee3225bd0493c4057459f3014681ea1a4643cd38b68ff477fe867c4b356da7330d085f247f0724d300582fa4ab9a02efaf34d107c languageName: node linkType: hard -"@aws-sdk/middleware-sdk-sts@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/middleware-sdk-sts@npm:3.425.0" +"@babel/helper-wrap-function@npm:^7.22.20": + version: 7.22.20 + resolution: "@babel/helper-wrap-function@npm:7.22.20" dependencies: - "@aws-sdk/middleware-signing": 3.425.0 - "@aws-sdk/types": 3.425.0 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: e99e4c7b6e00f0ccfb2c23ec580a3b932dfe8daa7c6f15821714157b34393f96bd7f0576e37a17821dff458ad047820e5837035b6f7b8e0db1fc4d1527dfd76b + "@babel/helper-function-name": ^7.22.5 + "@babel/template": ^7.22.15 + "@babel/types": ^7.22.19 + checksum: 221ed9b5572612aeb571e4ce6a256f2dee85b3c9536f1dd5e611b0255e5f59a3d0ec392d8d46d4152149156a8109f92f20379b1d6d36abb613176e0e33f05fca languageName: node linkType: hard -"@aws-sdk/middleware-serde@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-serde@npm:3.310.0" +"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.23.2": + version: 7.23.2 + resolution: "@babel/helpers@npm:7.23.2" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 95c2c1b15906a93c9869be36563757f08cd53a0f385882759943e59a1fd31be777260fb075feaa1a9bb919cf1696739e7b2da89049cec0bee1a649a838f9184c + "@babel/template": ^7.22.15 + "@babel/traverse": ^7.23.2 + "@babel/types": ^7.23.0 + checksum: aaf4828df75ec460eaa70e5c9f66e6dadc28dae3728ddb7f6c13187dbf38030e142194b83d81aa8a31bbc35a5529a5d7d3f3cf59d5d0b595f5dd7f9d8f1ced8e languageName: node linkType: hard -"@aws-sdk/middleware-serde@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-serde@npm:3.325.0" +"@babel/helpers@npm:^7.21.0": + version: 7.21.0 + resolution: "@babel/helpers@npm:7.21.0" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: d1a9a7cdae6e85f242c4414f1c3d836b5fd3832d447d2e851545c280e1cbc6f50e9d4afe34c86aed44f3b2c0eec8409125044bb2995ff2c075a316179b759f8a + "@babel/template": ^7.20.7 + "@babel/traverse": ^7.21.0 + "@babel/types": ^7.21.0 + checksum: 9370dad2bb665c551869a08ac87c8bdafad53dbcdce1f5c5d498f51811456a3c005d9857562715151a0f00b2e912ac8d89f56574f837b5689f5f5072221cdf54 languageName: node linkType: hard -"@aws-sdk/middleware-serde@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-serde@npm:3.357.0" +"@babel/helpers@npm:^7.25.0": + version: 7.25.6 + resolution: "@babel/helpers@npm:7.25.6" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 259176f253efc144130494f9dcaafdf5ff0a1d60158619ef300146775ab68622289908a15d1131ee8c7f92235a6ce40df4c80fdc930a8e45eb2635a6e241ac9e + "@babel/template": ^7.25.0 + "@babel/types": ^7.25.6 + checksum: 5a548999db82049a5f7ac6de57576b4ed0d386ce07d058151698836ed411eae6230db12535487caeebb68a2ffc964491e8aead62364a5132ab0ae20e8b68e19f languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-signing@npm:3.310.0" +"@babel/highlight@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/highlight@npm:7.18.6" dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/signature-v4": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - tslib: ^2.5.0 - checksum: f1db11435250075fc563de375c8c513dbaba7b9939ae99c70074d90622f9aea0cc339cd10f0eff63251eba462b73f564389bfb9dcfe6868f36892488dea0494b + "@babel/helper-validator-identifier": ^7.18.6 + chalk: ^2.0.0 + js-tokens: ^4.0.0 + checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789 languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-signing@npm:3.325.0" +"@babel/highlight@npm:^7.22.13": + version: 7.22.20 + resolution: "@babel/highlight@npm:7.22.20" dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/signature-v4": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - tslib: ^2.5.0 - checksum: 9c952ccf93066e89eaf5898e53c55bb88d2bbc74fe22cf6c86e6b26d3d1931e60f27b68b88922988083d285ea4fb2ff3409d6d987605fc0ab4a88fffd5dc8fc5 + "@babel/helper-validator-identifier": ^7.22.20 + chalk: ^2.4.2 + js-tokens: ^4.0.0 + checksum: 84bd034dca309a5e680083cd827a766780ca63cef37308404f17653d32366ea76262bd2364b2d38776232f2d01b649f26721417d507e8b4b6da3e4e739f6d134 languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-signing@npm:3.357.0" +"@babel/highlight@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/highlight@npm:7.24.7" dependencies: - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/signature-v4": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-middleware": 3.357.0 - tslib: ^2.5.0 - checksum: 416c8472606f6139bcf548d3c45582b0cfadf0da114c63a90fc26aa0301ce1743e5ce93517dfccb1e8756f4c9925c3b2e485b7a1a7853c418061c827be01a2c0 + "@babel/helper-validator-identifier": ^7.24.7 + chalk: ^2.4.2 + js-tokens: ^4.0.0 + picocolors: ^1.0.0 + checksum: 5cd3a89f143671c4ac129960024ba678b669e6fc673ce078030f5175002d1d3d52bc10b22c5b916a6faf644b5028e9a4bd2bb264d053d9b05b6a98690f1d46f1 languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/middleware-signing@npm:3.425.0" - dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/protocol-http": ^3.0.6 - "@smithy/signature-v4": ^2.0.0 - "@smithy/types": ^2.3.4 - "@smithy/util-middleware": ^2.0.3 - tslib: ^2.5.0 - checksum: 34996415395cdbcc67051c21421e70d4648402b745278976d228500885848a7219e37b9ed22d75a94ab594477ca32f59526e763fa6a1458414ae2749f7bb8a70 +"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.21.0, @babel/parser@npm:^7.21.2": + version: 7.21.2 + resolution: "@babel/parser@npm:7.21.2" + bin: + parser: ./bin/babel-parser.js + checksum: e2b89de2c63d4cdd2cafeaea34f389bba729727eec7a8728f736bc472a59396059e3e9fe322c9bed8fd126d201fb609712949dc8783f4cae4806acd9a73da6ff languageName: node linkType: hard -"@aws-sdk/middleware-signing@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-signing@npm:3.489.0" - dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/property-provider": ^2.0.0 - "@smithy/protocol-http": ^3.0.12 - "@smithy/signature-v4": ^2.0.0 - "@smithy/types": ^2.8.0 - "@smithy/util-middleware": ^2.0.9 - tslib: ^2.5.0 - checksum: bf50942d8ca7baf2d27b0a6d8fb06219971da9863ee0fa7a2ab56c85d344b0374724f608cec371b75a2ea2a0cd4da6d7d431f8bf1f3d9fe5f1797a4d15272962 +"@babel/parser@npm:^7.12.7, @babel/parser@npm:^7.18.8, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/parser@npm:7.23.0" + bin: + parser: ./bin/babel-parser.js + checksum: 453fdf8b9e2c2b7d7b02139e0ce003d1af21947bbc03eb350fb248ee335c9b85e4ab41697ddbdd97079698de825a265e45a0846bb2ed47a2c7c1df833f42a354 languageName: node linkType: hard -"@aws-sdk/middleware-ssec@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-ssec@npm:3.310.0" +"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.6": + version: 7.25.6 + resolution: "@babel/parser@npm:7.25.6" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: a6d9cde8d826c4baae7908e82035e892f8b4706e648efa1ff5a8706285efabd17f9fe8d48b5b0fb42b17f227fba257b7d95b99baf9e152246cb95a2fe23a547f + "@babel/types": ^7.25.6 + bin: + parser: ./bin/babel-parser.js + checksum: 85b237ded09ee43cc984493c35f3b1ff8a83e8dbbb8026b8132e692db6567acc5a1659ec928e4baa25499ddd840d7dae9dee3062be7108fe23ec5f94a8066b1e languageName: node linkType: hard -"@aws-sdk/middleware-stack@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-stack@npm:3.310.0" - dependencies: - tslib: ^2.5.0 - checksum: ad90bb8cf2a8e3211869ed0c08e240e0df7097ff42a9bbfa6dd96ad79a8b741c096199082f1be40a2ae2b1fbeb56a4bc510cdaf431dd90a5db73e32fe7184ee2 +"@babel/parser@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/parser@npm:7.24.7" + bin: + parser: ./bin/babel-parser.js + checksum: fc9d2c4c8712f89672edc55c0dc5cf640dcec715b56480f111f85c2bc1d507e251596e4110d65796690a96ac37a4b60432af90b3e97bb47e69d4ef83872dbbd6 languageName: node linkType: hard -"@aws-sdk/middleware-stack@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/middleware-stack@npm:3.325.0" +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.22.15" dependencies: - tslib: ^2.5.0 - checksum: 182864eab3859bc677d7ba1ba2c76b46bfe39adb13fcc833fa0579e33ead94ecd76474ce2a12c0bae2bf434090a30a848541d320c232066dc524ebfccb9dd2f9 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: 8910ca21a7ec7c06f7b247d4b86c97c5aa15ef321518f44f6f490c5912fdf82c605aaa02b90892e375d82ccbedeadfdeadd922c1b836c9dd4c596871bf654753 languageName: node linkType: hard -"@aws-sdk/middleware-stack@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-stack@npm:3.357.0" +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.15" dependencies: - tslib: ^2.5.0 - checksum: bb5507ee38e60b8a8fbf3fc7215be710d379c54d7132c78005892563b1e3e0169c00187ec482808a7b68edcefb7a2a420a47f7813dc627f2747703cfee9b99e0 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + "@babel/plugin-transform-optional-chaining": ^7.22.15 + peerDependencies: + "@babel/core": ^7.13.0 + checksum: fbefedc0da014c37f1a50a8094ce7dbbf2181ae93243f23d6ecba2499b5b20196c2124d6a4dfe3e9e0125798e80593103e456352a4beb4e5c6f7c75efb80fdac languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.310.0" +"@babel/plugin-proposal-object-rest-spread@npm:7.12.1": + version: 7.12.1 + resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.1" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-endpoints": 3.310.0 - tslib: ^2.5.0 - checksum: 571ebfce481a2d814270248e728c68030661cb3f0de97908b73e1d446c508d5af06cb088c68c67b23ce9671873c1872ab681b9383d48797b5a1c53a7030085ff + "@babel/helper-plugin-utils": ^7.10.4 + "@babel/plugin-syntax-object-rest-spread": ^7.8.0 + "@babel/plugin-transform-parameters": ^7.12.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 221a41630c9a7162bf0416c71695b3f7f38482078a1d0d3af7abdc4f07ea1c9feed890399158d56c1d0278c971fe6f565ce822e9351e4481f7d98e9ff735dced languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.327.0" - dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-endpoints": 3.327.0 - tslib: ^2.5.0 - checksum: 5ce3018f7f052402f10649f6963cf975374ceadb245784ca833c8aae4579bf5019d5bc1abee249d58fa5e7d9426ab1e75063e2860b02adfc6e30b363a55e5dd6 +"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": + version: 7.21.0-placeholder-for-preset-env.2 + resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d97745d098b835d55033ff3a7fb2b895b9c5295b08a5759e4f20df325aa385a3e0bc9bd5ad8f2ec554a44d4e6525acfc257b8c5848a1345cb40f26a30e277e91 languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.357.0" +"@babel/plugin-syntax-async-generators@npm:^7.8.4": + version: 7.8.4 + resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" dependencies: - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-endpoints": 3.357.0 - tslib: ^2.5.0 - checksum: e80a6fce7974f79769349ee9c2fc6744a18d1998e7e66b3eb24196390a5605837cf5fd75b4e9636566353d5fb26c840628ea8e451045af66c0112469ce20debb + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367 languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.387.0" +"@babel/plugin-syntax-bigint@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" dependencies: - "@aws-sdk/types": 3.387.0 - "@aws-sdk/util-endpoints": 3.387.0 - "@smithy/protocol-http": ^2.0.2 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 54cb1ddbd743bf70a28c1eebd6d1bc0adfad79b2bff0553737d238de01a83e11c9130c38526d4236457fa124d6024fd0c09607d796808dfe43821c75387d8fba + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648 languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.427.0" +"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": + version: 7.12.13 + resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" dependencies: - "@aws-sdk/types": 3.425.0 - "@aws-sdk/util-endpoints": 3.427.0 - "@smithy/protocol-http": ^3.0.6 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: d0ae32f6b5d457931668743842ef93891f1585d467355f6cf65d1e61d987c96fdc463f52101f90231a15ece6c5787e8d62eb90f6f6b490d1ff22f756ead3ccf7 + "@babel/helper-plugin-utils": ^7.12.13 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.489.0" +"@babel/plugin-syntax-class-static-block@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" dependencies: - "@aws-sdk/types": 3.489.0 - "@aws-sdk/util-endpoints": 3.489.0 - "@smithy/protocol-http": ^3.0.12 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: b5254863f2203b598199ad65ca87a5a3b92a3ecb51cabbb910819b0f03f61b26b553364e047b9b3329463f8dd4324a650d045deaf548cb5e7de2c08ed2f5dfd6 + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948 languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.583.0" +"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" dependencies: - "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.583.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: a704418bb5ba6414345cc0d5464b2554d4ac8efdd9e0cb747a7514673bb687500119c77f9109f4b04975095b72b7be64051dbf5e627975950f37c9e53df0fe5b + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.587.0": - version: 3.587.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.587.0" +"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" dependencies: - "@aws-sdk/types": 3.577.0 - "@aws-sdk/util-endpoints": 3.587.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 0a01579c20dc3e574e58578cf255169b7a8fc8cb2f38cd5d0d6ed282131d953d0ccd578d137a8d39c617b7722de7e194fce9647b662490935d5c8da01354ba5e + "@babel/helper-plugin-utils": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.598.0" +"@babel/plugin-syntax-import-assertions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-assertions@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.598.0 - "@aws-sdk/util-endpoints": 3.598.0 - "@smithy/protocol-http": ^4.0.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: 11dcf64badadf8c6b3283b3cec4cb684467eaf57206782c68a9b758e6f7a4f1b632d5ed89bb6ffbc855bf6d3fb855f0a56858bda640a67c0812ced08cd19959f + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2b8b5572db04a7bef1e6cd20debf447e4eef7cb012616f5eceb8fa3e23ce469b8f76ee74fd6d1e158ba17a8f58b0aec579d092fb67c5a30e83ccfbc5754916c1 languageName: node linkType: hard -"@aws-sdk/middleware-user-agent@npm:3.616.0": - version: 3.616.0 - resolution: "@aws-sdk/middleware-user-agent@npm:3.616.0" +"@babel/plugin-syntax-import-attributes@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.609.0 - "@aws-sdk/util-endpoints": 3.614.0 - "@smithy/protocol-http": ^4.0.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 6525d9061e0993f338c6dbb2c55e3e094aa02801d0814824cd4a0c0d9810e0f82fc7af4f6f2010723b18a856da241c3daded3fd9bc16b991cffef5f3031f0941 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 197b3c5ea2a9649347f033342cb222ab47f4645633695205c0250c6bf2af29e643753b8bb24a2db39948bef08e7c540babfd365591eb57fc110cb30b425ffc47 languageName: node linkType: hard -"@aws-sdk/node-config-provider@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/node-config-provider@npm:3.310.0" +"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 95d017aa1bb94e323c288bc0ce5edba5c4605eeabe779249beb5faee958c26f6eebb7f1664328b83d1024e441eb4e4f9fce9c1bb764637f83f7ebf20b8359a77 + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b languageName: node linkType: hard -"@aws-sdk/node-config-provider@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/node-config-provider@npm:3.357.0" +"@babel/plugin-syntax-json-strings@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" dependencies: - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 39784541ffdabc6298c42f3e4c308c75e92636b1228f6338d9820d2a6ee6ebb77dacd92e42f739004db6299024d85e80c0191f8c49045f1f00451aedc2136786 + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a languageName: node linkType: hard -"@aws-sdk/node-http-handler@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/node-http-handler@npm:3.310.0" +"@babel/plugin-syntax-jsx@npm:7.12.1": + version: 7.12.1 + resolution: "@babel/plugin-syntax-jsx@npm:7.12.1" dependencies: - "@aws-sdk/abort-controller": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/querystring-builder": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 781cc864972bf52f884b580e43b9b659ab34a6ca7d7772d8e76107a51fe0930124c01024bc7ac1c4e99324319c594b809373ebc4752ea0a2e3a984ccf57aa535 + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d4b9b589c484b2e0856799770f060dff34c67b24d7f4526f66309a0e0e9cf388a5c1f2c0da329d1973cc87d1b2cede8f3dc8facfac59e785d6393a003bcdd0f9 languageName: node linkType: hard -"@aws-sdk/node-http-handler@npm:3.321.1": - version: 3.321.1 - resolution: "@aws-sdk/node-http-handler@npm:3.321.1" +"@babel/plugin-syntax-jsx@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-jsx@npm:7.22.5" dependencies: - "@aws-sdk/abort-controller": 3.310.0 - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/querystring-builder": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: b8546b1b20572e1ca02d3792319967712b40c925e4e06f1fb098d70ce55e32a15e514d655e8809650349567e1f46056dbbc3fb9f55df1257c8619127ca01f8fe + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8829d30c2617ab31393d99cec2978e41f014f4ac6f01a1cecf4c4dd8320c3ec12fdc3ce121126b2d8d32f6887e99ca1a0bad53dedb1e6ad165640b92b24980ce languageName: node linkType: hard -"@aws-sdk/node-http-handler@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/node-http-handler@npm:3.357.0" +"@babel/plugin-syntax-jsx@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-syntax-jsx@npm:7.24.7" dependencies: - "@aws-sdk/abort-controller": 3.357.0 - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/querystring-builder": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 535fe5699b1013f84c47fdefe99659c9eebda6bdac09a83d486438a3c4a3c2b5985a6e5f9184ba49624615d5886013c1c6bfe5e7bd4063f31b95665797c98fb6 + "@babel/helper-plugin-utils": ^7.24.7 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7a5ca629d8ca1e1ee78705a78e58c12920d07ed8006d7e7232b31296a384ff5e41d7b649bde5561196041037bbb9f9715be1d1c20975df87ca204f34ad15b965 languageName: node linkType: hard -"@aws-sdk/node-http-handler@npm:3.360.0": - version: 3.360.0 - resolution: "@aws-sdk/node-http-handler@npm:3.360.0" +"@babel/plugin-syntax-jsx@npm:^7.7.2": + version: 7.18.6 + resolution: "@babel/plugin-syntax-jsx@npm:7.18.6" dependencies: - "@aws-sdk/abort-controller": 3.357.0 - "@aws-sdk/protocol-http": 3.357.0 - "@aws-sdk/querystring-builder": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 8355f260881faf16c6548d66db201251e0552ae3cf844daec864ea8e53146eed25365b05ec1bfe698264a2dfaad6a521838b0cf81d70d4bb67fdc93290c068bc + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 6d37ea972970195f1ffe1a54745ce2ae456e0ac6145fae9aa1480f297248b262ea6ebb93010eddb86ebfacb94f57c05a1fc5d232b9a67325b09060299d515c67 languageName: node linkType: hard -"@aws-sdk/property-provider@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/property-provider@npm:3.310.0" +"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 8a906b3f4e482f4d5be0ef1277fcb22fb005e834c916919373187f8cf6b17b0d464f37a12770d152a553b7a505ed9981504a0c30f73f273d251ed93ff29616e1 + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886 languageName: node linkType: hard -"@aws-sdk/property-provider@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/property-provider@npm:3.357.0" +"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 311c00ef9c20810ea18b6772d3f37853469453fd31b1b41d841ecfd6a7f34f2ba2189df954bc094c5ff764bd75bc39ce003f208260334b40b8394f8f2665cd93 + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1 languageName: node linkType: hard -"@aws-sdk/protocol-http@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/protocol-http@npm:3.310.0" +"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": + version: 7.10.4 + resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 4bfe2b7a93d52ded21472d6347483fb52dfd2414d4ff07d8e3a2869d7676e866a9bfa29e9e7ac4fa3849c7109740a39e3d1e646a02d8bb4b7c7b402f53b18450 + "@babel/helper-plugin-utils": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1 languageName: node linkType: hard -"@aws-sdk/protocol-http@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/protocol-http@npm:3.357.0" +"@babel/plugin-syntax-object-rest-spread@npm:7.8.3, @babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 2abc03c76b729b98b37a489ee6592d8620e02c17584c304e91161194d7d4273bf9f8a7e330d52be2f8f8c787db63db99d7865494fb85f07327ffc54b99712b07 + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf languageName: node linkType: hard -"@aws-sdk/protocol-http@npm:^3.374.0": - version: 3.374.0 - resolution: "@aws-sdk/protocol-http@npm:3.374.0" +"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" dependencies: - "@smithy/protocol-http": ^1.1.0 - tslib: ^2.5.0 - checksum: f8ec7ac8bb76b6efebb8b5fc37d32621d8c77b08daa137a879042c8f79e8de90521d80ae0f15350933ee637e1ea1df9ce8a12ab7870f265b5ecb1df0bfdbb8f6 + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9 languageName: node linkType: hard -"@aws-sdk/querystring-builder@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/querystring-builder@npm:3.310.0" +"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": + version: 7.8.3 + resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" dependencies: - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-uri-escape": 3.310.0 - tslib: ^2.5.0 - checksum: c06ba9ec67d6e6a5f4c1099461b9b2d6cb12a278e6ec2fe198f68ba115ce1e05425f29cf6859f8a005ae7123036b6dadc325d18b35165c7049233f9d04670dcb + "@babel/helper-plugin-utils": ^7.8.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30 languageName: node linkType: hard -"@aws-sdk/querystring-builder@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/querystring-builder@npm:3.357.0" +"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": + version: 7.14.5 + resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" dependencies: - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-uri-escape": 3.310.0 - tslib: ^2.5.0 - checksum: f3b8b10ff997eade4ec632be937afdd6d44b7eb15b9ff64d21d31ba6c9f64f90263de2ba904660faa20dbb2b73c3a0193744b78ba2b42a757e28fd41be11d63e + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda languageName: node linkType: hard -"@aws-sdk/querystring-parser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/querystring-parser@npm:3.310.0" +"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": + version: 7.14.5 + resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 5e9d8700918db3daa89440f7c0aa9d0ee37e30bab13892f12602267259160ff73eaccd7e01521bf71f4a0f59da9cb632f75e583d927900f2acddc4913e3422f8 + "@babel/helper-plugin-utils": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e languageName: node linkType: hard -"@aws-sdk/querystring-parser@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/querystring-parser@npm:3.357.0" +"@babel/plugin-syntax-typescript@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-syntax-typescript@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 57097dda2499991efd00c3773c8ecd5d75d0e0d9a5106e3e8f4649f008d47eb87b01b067ceaee1ae73202a3cdf62458b713fa92cdf309e7d73bdcaffed54b4c7 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 8ab7718fbb026d64da93681a57797d60326097fd7cb930380c8bffd9eb101689e90142c760a14b51e8e69c88a73ba3da956cb4520a3b0c65743aee5c71ef360a languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.425.0" +"@babel/plugin-syntax-typescript@npm:^7.7.2": + version: 7.20.0 + resolution: "@babel/plugin-syntax-typescript@npm:7.20.0" dependencies: - "@smithy/node-config-provider": ^2.0.13 - "@smithy/types": ^2.3.4 - "@smithy/util-config-provider": ^2.0.0 - "@smithy/util-middleware": ^2.0.3 - tslib: ^2.5.0 - checksum: 00241c54c5ff83f82dc45443c18a67515fe99aff54e7f234b3897551cb90fc6b341afc0a7cc30267463ace6d4ed398782faec584829de23115cb9a8301b74738 + "@babel/helper-plugin-utils": ^7.19.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 6189c0b5c32ba3c9a80a42338bd50719d783b20ef29b853d4f03929e971913d3cefd80184e924ae98ad6db09080be8fe6f1ffde9a6db8972523234f0274d36f7 languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.489.0" +"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": + version: 7.18.6 + resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/types": ^2.8.0 - "@smithy/util-config-provider": ^2.1.0 - "@smithy/util-middleware": ^2.0.9 - tslib: ^2.5.0 - checksum: 2352d0b3409e6d5225fd3f6f5da81164fcb93bb528579eacefea75ef8760f8626434e377eb3c7785046ce996732209f300de70958905124acbd1eb45a192e24b + "@babel/helper-create-regexp-features-plugin": ^7.18.6 + "@babel/helper-plugin-utils": ^7.18.6 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.577.0" +"@babel/plugin-transform-arrow-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-arrow-functions@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/node-config-provider": ^3.0.0 - "@smithy/types": ^3.0.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: 66326254108ca87300bbb7aea7786da617293bb7fe093153eab123ff73a824071b1d3a155827bb9193925704e4f60d01cddfc71018d2e1a82d7609091338acfe + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 35abb6c57062802c7ce8bd96b2ef2883e3124370c688bbd67609f7d2453802fb73944df8808f893b6c67de978eb2bcf87bbfe325e46d6f39b5fcb09ece11d01a languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.587.0": - version: 3.587.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.587.0" +"@babel/plugin-transform-async-generator-functions@npm:^7.23.2": + version: 7.23.2 + resolution: "@babel/plugin-transform-async-generator-functions@npm:7.23.2" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/node-config-provider": ^3.1.0 - "@smithy/types": ^3.0.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: aa9bae8d88a7d3dc45017b8a6391942f70e95b4e16c4a6907048088f5eb49c9b77b81f084f4ed6d057eb4785ac182ee99dafa9cf3072d5aba3d19c02005abd8a + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-remap-async-to-generator": ^7.22.20 + "@babel/plugin-syntax-async-generators": ^7.8.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e1abae0edcda7304d7c17702ac25a127578791b89c4f767d60589249fa3e50ec33f8c9ff39d3d8d41f00b29947654eaddd4fd586e04c4d598122db745fab2868 languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.598.0" +"@babel/plugin-transform-async-to-generator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-async-to-generator@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/node-config-provider": ^3.1.1 - "@smithy/types": ^3.1.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.1 - tslib: ^2.6.2 - checksum: 649115771cb6b77e793088f3ee6eec346c1379f9f5d0e925f71103ad55c5f4a1132fca7e859a6b75ff46ecd1cc165a4eb260227596e4a2871118e6918602a726 + "@babel/helper-module-imports": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-remap-async-to-generator": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b95f23f99dcb379a9f0a1c2a3bbea3f8dc0e1b16dc1ac8b484fe378370169290a7a63d520959a9ba1232837cf74a80e23f6facbe14fd42a3cda6d3c2d7168e62 languageName: node linkType: hard -"@aws-sdk/region-config-resolver@npm:3.614.0": - version: 3.614.0 - resolution: "@aws-sdk/region-config-resolver@npm:3.614.0" +"@babel/plugin-transform-block-scoped-functions@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/types": ^3.3.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.3 - tslib: ^2.6.2 - checksum: dbaca50792c99685845b21dd4a53228613e0458ee517a21db941890ee521d91eff80704f08e9ee71b6f04e70fb86362c4823750bb0b3727240af68d78d8fa4be + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 416b1341858e8ca4e524dee66044735956ced5f478b2c3b9bc11ec2285b0c25d7dbb96d79887169eb938084c95d0a89338c8b2fe70d473bd9dc92e5d9db1732c languageName: node linkType: hard -"@aws-sdk/service-error-classification@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/service-error-classification@npm:3.310.0" - checksum: a600a7634fe932b52676ea33851230173ce66b45f4c8350c91616e37f9cbd43e8f6e7e3fc9761fd14ca7ecd2c7ca90ca806fc555e383d0bf0ee2bdb6a4d73888 +"@babel/plugin-transform-block-scoping@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-block-scoping@npm:7.23.0" + dependencies: + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 0cfe925cc3b5a3ad407e2253fab3ceeaa117a4b291c9cb245578880872999bca91bd83ffa0128ae9ca356330702e1ef1dcb26804f28d2cef678239caf629f73e languageName: node linkType: hard -"@aws-sdk/service-error-classification@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/service-error-classification@npm:3.327.0" - checksum: d39a7729eecd22bbf3baaa60e47b4b7a7bdf282f1c6981b85d893e5819962e0951832deb8ddd826482551f5a98bc273f0550a5a5bc68bd3fe7362b20bcd69377 +"@babel/plugin-transform-class-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-class-properties@npm:7.22.5" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b830152dfc2ff2f647f0abe76e6251babdfbef54d18c4b2c73a6bf76b1a00050a5d998dac80dc901a48514e95604324943a9dd39317073fe0928b559e0e0c579 languageName: node linkType: hard -"@aws-sdk/service-error-classification@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/service-error-classification@npm:3.357.0" - checksum: a29638c7724a94e6a8baf2c6249d647239a5ff3863f677a023a93c40e4658f00a98cd29e68bf9bcede9f4b85cd7970a9e9bfda410708695312d26d71cde6d6cf +"@babel/plugin-transform-class-static-block@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-class-static-block@npm:7.22.11" + dependencies: + "@babel/helper-create-class-features-plugin": ^7.22.11 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-class-static-block": ^7.14.5 + peerDependencies: + "@babel/core": ^7.12.0 + checksum: 69f040506fad66f1c6918d288d0e0edbc5c8a07c8b4462c1184ad2f9f08995d68b057126c213871c0853ae0c72afc60ec87492049dfacb20902e32346a448bcb languageName: node linkType: hard -"@aws-sdk/shared-ini-file-loader@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/shared-ini-file-loader@npm:3.310.0" +"@babel/plugin-transform-classes@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-classes@npm:7.22.15" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: aa3ffb5cb4320ee936102be200dbacb95be0bd85088c692de268d56c175dd4329757a83847d1c4e689b98f3810f729596a1a0b726f1ea0a8d00c78516fc10cc3 + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-environment-visitor": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-optimise-call-expression": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-replace-supers": ^7.22.9 + "@babel/helper-split-export-declaration": ^7.22.6 + globals: ^11.1.0 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d3f4d0c107dd8a3557ea3575cc777fab27efa92958b41e4a9822f7499725c1f554beae58855de16ddec0a7b694e45f59a26cea8fbde4275563f72f09c6e039a0 languageName: node linkType: hard -"@aws-sdk/shared-ini-file-loader@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/shared-ini-file-loader@npm:3.357.0" +"@babel/plugin-transform-computed-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-computed-properties@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: c0be3ef2b74e07abdc7e49a1b2997cb22965af92bd1ca45808c19a54ab4c4ac9444dc69008cdae7d4abe74f38b3c32a08bccc218274df377969ea4bf6839dca9 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/template": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c2a77a0f94ec71efbc569109ec14ea2aa925b333289272ced8b33c6108bdbb02caf01830ffc7e49486b62dec51911924d13f3a76f1149f40daace1898009e131 languageName: node linkType: hard -"@aws-sdk/signature-v4-multi-region@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/signature-v4-multi-region@npm:3.310.0" +"@babel/plugin-transform-destructuring@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-destructuring@npm:7.23.0" dependencies: - "@aws-sdk/protocol-http": 3.310.0 - "@aws-sdk/signature-v4": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 + "@babel/helper-plugin-utils": ^7.22.5 peerDependencies: - "@aws-sdk/signature-v4-crt": ^3.118.0 - peerDependenciesMeta: - "@aws-sdk/signature-v4-crt": - optional: true - checksum: ef88c3ba8dba0fda1204ec9358e46ea2bbefb0a258b21e2c83142b3ea9bb9be3eba428b38297da28bb4a5e93f9c27de8711aa6f219b3cbced4eba0c443c9b68a + "@babel/core": ^7.0.0-0 + checksum: cd6dd454ccc2766be551e4f8a04b1acc2aa539fa19e5c7501c56cc2f8cc921dd41a7ffb78455b4c4b2f954fcab8ca4561ba7c9c7bd5af9f19465243603d18cc3 languageName: node linkType: hard -"@aws-sdk/signature-v4@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/signature-v4@npm:3.310.0" - dependencies: - "@aws-sdk/is-array-buffer": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-hex-encoding": 3.310.0 - "@aws-sdk/util-middleware": 3.310.0 - "@aws-sdk/util-uri-escape": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 0adaf05a005a8a468301f24482d25de3a35554debc98ab8eeb0444c529c02a63dc7e7754d990e9464e1a17c1eb1f6ffdcc178bcd7d35c87587e4cc41574c69b3 +"@babel/plugin-transform-dotall-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5" + dependencies: + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 409b658d11e3082c8f69e9cdef2d96e4d6d11256f005772425fb230cc48fd05945edbfbcb709dab293a1a2f01f9c8a5bb7b4131e632b23264039d9f95864b453 languageName: node linkType: hard -"@aws-sdk/signature-v4@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/signature-v4@npm:3.357.0" +"@babel/plugin-transform-duplicate-keys@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-duplicate-keys@npm:7.22.5" dependencies: - "@aws-sdk/eventstream-codec": 3.357.0 - "@aws-sdk/is-array-buffer": 3.310.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-hex-encoding": 3.310.0 - "@aws-sdk/util-middleware": 3.357.0 - "@aws-sdk/util-uri-escape": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 8ef865093e6d60a1b6fcb28c4b0a06e34ed1013dedcc0f8aa35d2e300d48c6e6df00564146111b5f1b58197a4f4c68bedcb5330f4a8fc7a24db302eb21e23782 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: bb1280fbabaab6fab2ede585df34900712698210a3bd413f4df5bae6d8c24be36b496c92722ae676a7a67d060a4624f4d6c23b923485f906bfba8773c69f55b4 languageName: node linkType: hard -"@aws-sdk/signature-v4@npm:^3.374.0": - version: 3.374.0 - resolution: "@aws-sdk/signature-v4@npm:3.374.0" - dependencies: - "@smithy/signature-v4": ^1.0.1 - tslib: ^2.5.0 - checksum: 7d8158a377ed220ff119682b1b850ff2c6c2ff1596cc487a63163cce914b0d3e63835b3df32de3550f938d0d4bca5c4664fe462a58c6da41396660a5a01d8f59 - languageName: node - linkType: hard - -"@aws-sdk/smithy-client@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/smithy-client@npm:3.310.0" +"@babel/plugin-transform-dynamic-import@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.11" dependencies: - "@aws-sdk/middleware-stack": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: a97b88e6ae3066abf136fe3d59ead258d459c4f37f69e6170a902d85194cb2d798519771b945880072776bbf0e77bfc18e15768dcbafc402f0f255d80bca0ba6 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 78fc9c532210bf9e8f231747f542318568ac360ee6c27e80853962c984283c73da3f8f8aebe83c2096090a435b356b092ed85de617a156cbe0729d847632be45 languageName: node linkType: hard -"@aws-sdk/smithy-client@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/smithy-client@npm:3.325.0" +"@babel/plugin-transform-exponentiation-operator@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.22.5" dependencies: - "@aws-sdk/middleware-stack": 3.325.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: e056f0597dbb1e86d9ebcf64612eeec40a8326ecdd5d13400c2b3efd252f984bc27290cfde8b45d3062b3eed77e4958cc386c23a7bf937d0035061ebd2c0f545 + "@babel/helper-builder-binary-assignment-operator-visitor": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f2d660c1b1d51ad5fec1cd5ad426a52187204068c4158f8c4aa977b31535c61b66898d532603eef21c15756827be8277f724c869b888d560f26d7fe848bb5eae languageName: node linkType: hard -"@aws-sdk/smithy-client@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/smithy-client@npm:3.358.0" +"@babel/plugin-transform-export-namespace-from@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.11" dependencies: - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-stream": 3.358.0 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - checksum: 3db71a638ef10fb05e5e10d578014594cd77ccd0b6fba5771e7314b6f1e1d1fcee0ba61ffb9dd6f964480764ef9d0b6af091f6522cb8c44754a767c9d0629087 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-export-namespace-from": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 73af5883a321ed56a4bfd43c8a7de0164faebe619287706896fc6ee2f7a4e69042adaa1338c0b8b4bdb9f7e5fdceb016fb1d40694cb43ca3b8827429e8aac4bf languageName: node linkType: hard -"@aws-sdk/smithy-client@npm:3.360.0": - version: 3.360.0 - resolution: "@aws-sdk/smithy-client@npm:3.360.0" +"@babel/plugin-transform-for-of@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-for-of@npm:7.22.15" dependencies: - "@aws-sdk/middleware-stack": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-stream": 3.360.0 - "@smithy/types": ^1.0.0 - tslib: ^2.5.0 - checksum: cc9ca8afbef0ca07d291d26e26e4db74f0e7884da4b2b2b79e4d1f0b2e6594ace93d3a6eca37c3f3be762cb460e53fc440076a9092c8a8be11ccc18da9d6cb4e + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f395ae7bce31e14961460f56cf751b5d6e37dd27d7df5b1f4e49fec1c11b6f9cf71991c7ffbe6549878591e87df0d66af798cf26edfa4bfa6b4c3dba1fb2f73a languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/token-providers@npm:3.310.0" +"@babel/plugin-transform-function-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-function-name@npm:7.22.5" dependencies: - "@aws-sdk/client-sso-oidc": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: a38d5c562f0cc29ddcd6b52b8b4c872447824962055cdb77587fdc9e13e24e6a9acda1d7ea60e7b7e2dbfe8b27dc0ff03347e739b298099b7c1ebe67044ff8e1 + "@babel/helper-compilation-targets": ^7.22.5 + "@babel/helper-function-name": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: cff3b876357999cb8ae30e439c3ec6b0491a53b0aa6f722920a4675a6dd5b53af97a833051df4b34791fe5b3dd326ccf769d5c8e45b322aa50ee11a660b17845 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/token-providers@npm:3.327.0" +"@babel/plugin-transform-json-strings@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-json-strings@npm:7.22.11" dependencies: - "@aws-sdk/client-sso-oidc": 3.327.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/shared-ini-file-loader": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 67cc6c62df52763e9dbd3d9ee231f13c601f85d354b3ccfe582892d39fb819725c49c881c3a126e89714d77e7967e70fc023a8e275c18907a67168a2280a1787 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-json-strings": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 50665e5979e66358c50e90a26db53c55917f78175127ac2fa05c7888d156d418ffb930ec0a109353db0a7c5f57c756ce01bfc9825d24cbfd2b3ec453f2ed8cba languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/token-providers@npm:3.358.0" +"@babel/plugin-transform-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-literals@npm:7.22.5" dependencies: - "@aws-sdk/client-sso-oidc": 3.358.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 3038d2be78dade462c52761e37154231e5a5a531f732ecb7f7074ea7b7a84af91917113133539c85e08e262dc9d41257c22ca9d2233221e531709413c23b55d1 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ec37cc2ffb32667af935ab32fe28f00920ec8a1eb999aa6dc6602f2bebd8ba205a558aeedcdccdebf334381d5c57106c61f52332045730393e73410892a9735b languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/token-providers@npm:3.362.0" +"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.11" dependencies: - "@aws-sdk/client-sso-oidc": 3.362.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/shared-ini-file-loader": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 07107bfaf3f1145543afce82d5abae356fd9c7b4fe4c6bd47210d358217f053ceb42f8b9ebf57abe84c393bf1932b98fea694654e94367a0e1c9852dcb257c02 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c664e9798e85afa7f92f07b867682dee7392046181d82f5d21bae6f2ca26dfe9c8375cdc52b7483c3fc09a983c1989f60eff9fbc4f373b0c0a74090553d05739 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.388.0": - version: 3.388.0 - resolution: "@aws-sdk/token-providers@npm:3.388.0" +"@babel/plugin-transform-member-expression-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-member-expression-literals@npm:7.22.5" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.387.0 - "@aws-sdk/middleware-logger": 3.387.0 - "@aws-sdk/middleware-recursion-detection": 3.387.0 - "@aws-sdk/middleware-user-agent": 3.387.0 - "@aws-sdk/types": 3.387.0 - "@aws-sdk/util-endpoints": 3.387.0 - "@aws-sdk/util-user-agent-browser": 3.387.0 - "@aws-sdk/util-user-agent-node": 3.387.0 - "@smithy/config-resolver": ^2.0.2 - "@smithy/fetch-http-handler": ^2.0.2 - "@smithy/hash-node": ^2.0.2 - "@smithy/invalid-dependency": ^2.0.2 - "@smithy/middleware-content-length": ^2.0.2 - "@smithy/middleware-endpoint": ^2.0.2 - "@smithy/middleware-retry": ^2.0.2 - "@smithy/middleware-serde": ^2.0.2 - "@smithy/middleware-stack": ^2.0.0 - "@smithy/node-config-provider": ^2.0.2 - "@smithy/node-http-handler": ^2.0.2 - "@smithy/property-provider": ^2.0.0 - "@smithy/protocol-http": ^2.0.2 - "@smithy/shared-ini-file-loader": ^2.0.0 - "@smithy/smithy-client": ^2.0.2 - "@smithy/types": ^2.1.0 - "@smithy/url-parser": ^2.0.2 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-body-length-browser": ^2.0.0 - "@smithy/util-body-length-node": ^2.0.0 - "@smithy/util-defaults-mode-browser": ^2.0.2 - "@smithy/util-defaults-mode-node": ^2.0.2 - "@smithy/util-retry": ^2.0.0 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 084168b282100e24c14858b361f6a3b2a4911c8c6f51f3fdb7c8bf2ef676e960fcb30641beb5bbc23fb4bbddcc047a90c13170341b474a2da4208cebdb9a668e + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ec4b0e07915ddd4fda0142fd104ee61015c208608a84cfa13643a95d18760b1dc1ceb6c6e0548898b8c49e5959a994e46367260176dbabc4467f729b21868504 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/token-providers@npm:3.427.0" +"@babel/plugin-transform-modules-amd@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-modules-amd@npm:7.23.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.425.0 - "@aws-sdk/middleware-logger": 3.425.0 - "@aws-sdk/middleware-recursion-detection": 3.425.0 - "@aws-sdk/middleware-user-agent": 3.427.0 - "@aws-sdk/types": 3.425.0 - "@aws-sdk/util-endpoints": 3.427.0 - "@aws-sdk/util-user-agent-browser": 3.425.0 - "@aws-sdk/util-user-agent-node": 3.425.0 - "@smithy/config-resolver": ^2.0.11 - "@smithy/fetch-http-handler": ^2.2.1 - "@smithy/hash-node": ^2.0.10 - "@smithy/invalid-dependency": ^2.0.10 - "@smithy/middleware-content-length": ^2.0.12 - "@smithy/middleware-endpoint": ^2.0.10 - "@smithy/middleware-retry": ^2.0.13 - "@smithy/middleware-serde": ^2.0.10 - "@smithy/middleware-stack": ^2.0.4 - "@smithy/node-config-provider": ^2.0.13 - "@smithy/node-http-handler": ^2.1.6 - "@smithy/property-provider": ^2.0.0 - "@smithy/protocol-http": ^3.0.6 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/smithy-client": ^2.1.9 - "@smithy/types": ^2.3.4 - "@smithy/url-parser": ^2.0.10 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-body-length-browser": ^2.0.0 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.13 - "@smithy/util-defaults-mode-node": ^2.0.15 - "@smithy/util-retry": ^2.0.3 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: d19dabbb575ec416d60112b4c4dd360ddc77231a054d43a91778ca922fbc05d6c25392a0781147322fd463c67362c9240155acd1d9754dbd5d023cb2381fb105 + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5d92875170a37b8282d4bcd805f55829b8fab0f9c8d08b53d32a7a0bfdc62b868e489b52d329ae768ecafc0c993eed0ad7a387baa673ac33211390a9f833ab5d languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/token-providers@npm:3.489.0" +"@babel/plugin-transform-modules-commonjs@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-modules-commonjs@npm:7.23.0" dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/middleware-host-header": 3.489.0 - "@aws-sdk/middleware-logger": 3.489.0 - "@aws-sdk/middleware-recursion-detection": 3.489.0 - "@aws-sdk/middleware-user-agent": 3.489.0 - "@aws-sdk/region-config-resolver": 3.489.0 - "@aws-sdk/types": 3.489.0 - "@aws-sdk/util-endpoints": 3.489.0 - "@aws-sdk/util-user-agent-browser": 3.489.0 - "@aws-sdk/util-user-agent-node": 3.489.0 - "@smithy/config-resolver": ^2.0.23 - "@smithy/fetch-http-handler": ^2.3.2 - "@smithy/hash-node": ^2.0.18 - "@smithy/invalid-dependency": ^2.0.16 - "@smithy/middleware-content-length": ^2.0.18 - "@smithy/middleware-endpoint": ^2.3.0 - "@smithy/middleware-retry": ^2.0.26 - "@smithy/middleware-serde": ^2.0.16 - "@smithy/middleware-stack": ^2.0.10 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/node-http-handler": ^2.2.2 - "@smithy/property-provider": ^2.0.0 - "@smithy/protocol-http": ^3.0.12 - "@smithy/shared-ini-file-loader": ^2.0.6 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - "@smithy/url-parser": ^2.0.16 - "@smithy/util-base64": ^2.0.1 - "@smithy/util-body-length-browser": ^2.0.1 - "@smithy/util-body-length-node": ^2.1.0 - "@smithy/util-defaults-mode-browser": ^2.0.24 - "@smithy/util-defaults-mode-node": ^2.0.32 - "@smithy/util-endpoints": ^1.0.8 - "@smithy/util-retry": ^2.0.9 - "@smithy/util-utf8": ^2.0.2 - tslib: ^2.5.0 - checksum: cf2e14a09ead031e9ac3426fd0e5bc71656f1ce9ba470c860af26d8935dce65b28365973388175f982dd2d8fb6c470520dee426045b26174663a5adc6ac5928c + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-simple-access": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 7fb25997194053e167c4207c319ff05362392da841bd9f42ddb3caf9c8798a5d203bd926d23ddf5830fdf05eddc82c2810f40d1287e3a4f80b07eff13d1024b5 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/token-providers@npm:3.577.0" +"@babel/plugin-transform-modules-systemjs@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-modules-systemjs@npm:7.23.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/shared-ini-file-loader": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 + "@babel/helper-hoist-variables": ^7.22.5 + "@babel/helper-module-transforms": ^7.23.0 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-identifier": ^7.22.20 peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.577.0 - checksum: e0437ed4af6d1b78d457a7c8abc8367e3c9134c678e945af776d3882175b6b0e73cfd9a49493da4e689aea51dd654ea58ab22fb88a336bb0cd29310dea4c90f2 + "@babel/core": ^7.0.0-0 + checksum: 2d481458b22605046badea2317d5cc5c94ac3031c2293e34c96f02063f5b02af0979c4da6a8fbc67cc249541575dc9c6d710db6b919ede70b7337a22d9fd57a7 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.587.0": - version: 3.587.0 - resolution: "@aws-sdk/token-providers@npm:3.587.0" +"@babel/plugin-transform-modules-umd@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-modules-umd@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/shared-ini-file-loader": ^3.1.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 + "@babel/helper-module-transforms": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.587.0 - checksum: 7a4d44bc413b88b933b439c2b26ac7d55a0ad26ede6b774fc659e8fb7b7f4dee555c7e478aa304983c1f4cd696825b5c47171ec5b918d54bce0146849274088c + "@babel/core": ^7.0.0-0 + checksum: 46622834c54c551b231963b867adbc80854881b3e516ff29984a8da989bd81665bd70e8cba6710345248e97166689310f544aee1a5773e262845a8f1b3e5b8b4 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/token-providers@npm:3.598.0" +"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/property-provider": ^3.1.1 - "@smithy/shared-ini-file-loader": ^3.1.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.598.0 - checksum: 24197672226e1e953fa57ca10c6adae9c3f6b571fbf40f517609e028d8ea6ab45c3afd285bd999bc35c0690b3427be04d4af3f677ced6778b0a716e0dd4e5280 + "@babel/core": ^7.0.0 + checksum: 3ee564ddee620c035b928fdc942c5d17e9c4b98329b76f9cefac65c111135d925eb94ed324064cd7556d4f5123beec79abea1d4b97d1c8a2a5c748887a2eb623 languageName: node linkType: hard -"@aws-sdk/token-providers@npm:3.614.0": - version: 3.614.0 - resolution: "@aws-sdk/token-providers@npm:3.614.0" +"@babel/plugin-transform-new-target@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-new-target@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/property-provider": ^3.1.3 - "@smithy/shared-ini-file-loader": ^3.1.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 + "@babel/helper-plugin-utils": ^7.22.5 peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.614.0 - checksum: 2901b8428afc3b76ff1df9ac29a2698db6bf65d1d2afcd8424b9bf187313d2a3ca747c3b205afeb5c132068b5a5a94d84ce82710f775fa0cbb79499d7fea2d64 + "@babel/core": ^7.0.0-0 + checksum: 6b72112773487a881a1d6ffa680afde08bad699252020e86122180ee7a88854d5da3f15d9bca3331cf2e025df045604494a8208a2e63b486266b07c14e2ffbf3 languageName: node linkType: hard -"@aws-sdk/types@npm:3.310.0, @aws-sdk/types@npm:^3.222.0": - version: 3.310.0 - resolution: "@aws-sdk/types@npm:3.310.0" +"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.11" dependencies: - tslib: ^2.5.0 - checksum: b11a91899614e14d40081ceab39cd3702254a5658c7b5e8862ef0d66dbffaa41c9a0f0d31e415d22f31c791b507699ba3a5fc7d87a540273386eb779be3807e4 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 167babecc8b8fe70796a7b7d34af667ebbf43da166c21689502e5e8cc93180b7a85979c77c9f64b7cce431b36718bd0a6df9e5e0ffea4ae22afb22cfef886372 languageName: node linkType: hard -"@aws-sdk/types@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/types@npm:3.357.0" +"@babel/plugin-transform-numeric-separator@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.11" dependencies: - tslib: ^2.5.0 - checksum: 41001b0ea7af2e09daca87f2fedb992bddd864f27f70c70acd62f95bc949ae0637f7100f2cff7a5618291d77c2146f157a863a2d7a4d2576ba2d6882fd4a75bd + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: af064d06a4a041767ec396a5f258103f64785df290e038bba9f0ef454e6c914f2ac45d862bbdad8fac2c7ad47fa4e95356f29053c60c100a0160b02a995fe2a3 languageName: node linkType: hard -"@aws-sdk/types@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/types@npm:3.387.0" +"@babel/plugin-transform-object-rest-spread@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.15" dependencies: - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - checksum: 39c5c3eea4cd8705c0c9dafa187ac6e14585a1bb6d162bbda8dc3ea5522020302ccd3ff7c8b425225c625d2b83ae6e6f6b71f621da790830a8a55ed5643197ec + "@babel/compat-data": ^7.22.9 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-transform-parameters": ^7.22.15 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 62197a6f12289c1c1bd57f3bed9f0f765ca32390bfe91e0b5561dd94dd9770f4480c4162dec98da094bc0ba99d2c2ebba68de47c019454041b0b7a68ba2ec66d languageName: node linkType: hard -"@aws-sdk/types@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/types@npm:3.425.0" +"@babel/plugin-transform-object-super@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-object-super@npm:7.22.5" dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 82ab4741179a16cc90ff75549bf07c7174cf4d0db9b3c2e1d7283c7489eb41a1ec49607d4c7bb33975e6424dfb809783ff0e243d721d4544dc21b7b31d94acc0 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-replace-supers": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: b71887877d74cb64dbccb5c0324fa67e31171e6a5311991f626650e44a4083e5436a1eaa89da78c0474fb095d4ec322d63ee778b202d33aa2e4194e1ed8e62d7 languageName: node linkType: hard -"@aws-sdk/types@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/types@npm:3.489.0" +"@babel/plugin-transform-optional-catch-binding@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.11" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: e4692f04daee278e4fc7faeadb8fee077aee5b1210a6c237c203b4688b714d1efc96c9f4574b71e264f71d8f4aad06b5728bcba13d12242c92f93dec81e3d3da + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f17abd90e1de67c84d63afea29c8021c74abb2794d3a6eeafb0bbe7372d3db32aefca386e392116ec63884537a4a2815d090d26264d259bacc08f6e3ed05294c languageName: node linkType: hard -"@aws-sdk/types@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/types@npm:3.577.0" +"@babel/plugin-transform-optional-chaining@npm:^7.22.15, @babel/plugin-transform-optional-chaining@npm:^7.23.0": + version: 7.23.0 + resolution: "@babel/plugin-transform-optional-chaining@npm:7.23.0" dependencies: - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: d10fe1d720adf3d8b17d5c23787611e336509569df7526efa96e8901100b9279a68e30a207eff60dc5cfa011abd68d47b81e40f2d4d1a9ddfd2d3653c20e1734 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: f702634f2b97e5260dbec0d4bde05ccb6f4d96d7bfa946481aeacfa205ca846cb6e096a38312f9d51fdbdac1f258f211138c5f7075952e46a5bf8574de6a1329 languageName: node linkType: hard -"@aws-sdk/types@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/types@npm:3.598.0" +"@babel/plugin-transform-parameters@npm:^7.12.1, @babel/plugin-transform-parameters@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-parameters@npm:7.22.15" dependencies: - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - checksum: 9b2bd50d6935422dd1046e6eaa48c4c774d06aa1374bf4600a3af2c7a52432b5e25ec111cf49976b07b03d7cb5f4fa6fd44b7ce8a67dd0b3a4cee4abaf9e6fa5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 541188bb7d1876cad87687b5c7daf90f63d8208ae83df24acb1e2b05020ad1c78786b2723ca4054a83fcb74fb6509f30c4cacc5b538ee684224261ad5fb047c1 languageName: node linkType: hard -"@aws-sdk/types@npm:3.609.0, @aws-sdk/types@npm:^3.609.0": - version: 3.609.0 - resolution: "@aws-sdk/types@npm:3.609.0" +"@babel/plugin-transform-private-methods@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-private-methods@npm:7.22.5" dependencies: - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 522768d08f104065b0ff6a37eddaa7803186014acee1c0011b3dbd3ef841e47ae694e58f608aeec8a39d22d644d759ade996fe51d18b880617778dc2dbbe1ede + "@babel/helper-create-class-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 321479b4fcb6d3b3ef622ab22fd24001e43d46e680e8e41324c033d5810c84646e470f81b44cbcbef5c22e99030784f7cac92f1829974da7a47a60a7139082c3 languageName: node linkType: hard -"@aws-sdk/types@npm:^3.357.0": - version: 3.378.0 - resolution: "@aws-sdk/types@npm:3.378.0" +"@babel/plugin-transform-private-property-in-object@npm:^7.22.11": + version: 7.22.11 + resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.11" dependencies: - "@smithy/types": ^2.0.2 - tslib: ^2.5.0 - checksum: c4c7ebb48a625cb990a1288466f2dd8f0d770078cc77b60d5ee4a803b473ff41df474271dff26d3dadad151d5a016b398167738dd4926266ff1cd04585d4d8e8 + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-create-class-features-plugin": ^7.22.11 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 4d029d84901e53c46dead7a46e2990a7bc62470f4e4ca58a0d063394f86652fd58fe4eea1eb941da3669cd536b559b9d058b342b59300026346b7a2a51badac8 languageName: node linkType: hard -"@aws-sdk/url-parser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/url-parser@npm:3.310.0" - dependencies: - "@aws-sdk/querystring-parser": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: a9f5bec1cfa38cf2d244df1f6d7aad0f8e880a285d148678652ba14a3fb03fc0847defdc80a7e3ffb197d91e33d8cfb43325ee39f53c43c40ceb7fbd34f38fda - languageName: node - linkType: hard - -"@aws-sdk/url-parser@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/url-parser@npm:3.357.0" - dependencies: - "@aws-sdk/querystring-parser": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: ff57a09fb603cf2a3f14f3f45bb09fec7ccd8c4afc525ca6a0c3e25858a3afbf1adb4024ff33292d12103207663e7c8a7c0eda03e6701173d5f8ab817e2190f8 - languageName: node - linkType: hard - -"@aws-sdk/util-arn-parser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-arn-parser@npm:3.310.0" - dependencies: - tslib: ^2.5.0 - checksum: faac1e10f8bb6c2fe5fee82bcb7ce56c2b37ae9ffdb2b78b0746a7a06005eaa5ea747a0a10eaf490c1c4907ecc327e1c94a600e26a069e023e54b8d63c031e96 - languageName: node - linkType: hard - -"@aws-sdk/util-base64@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-base64@npm:3.310.0" +"@babel/plugin-transform-property-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-property-literals@npm:7.22.5" dependencies: - "@aws-sdk/util-buffer-from": 3.310.0 - tslib: ^2.5.0 - checksum: 3c9f7c818401fe8332d2ce438c0660cc9be7db9a5eef68d7fafa30ddcc44b0af3ba9ea58092f0e2b2537a18ec0942ce3c8f12090d3e3b9568b6a94a0713e9de7 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 796176a3176106f77fcb8cd04eb34a8475ce82d6d03a88db089531b8f0453a2fb8b0c6ec9a52c27948bc0ea478becec449893741fc546dfc3930ab927e3f9f2e languageName: node linkType: hard -"@aws-sdk/util-body-length-browser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-body-length-browser@npm:3.310.0" +"@babel/plugin-transform-react-constant-elements@npm:^7.18.12": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-constant-elements@npm:7.22.5" dependencies: - tslib: ^2.5.0 - checksum: c26136521ccbb59ba83ff29d6e52cb0e4b443b68e830c9dab578556539973573e6892093e5dea39101b1517c28b5d53c80ee38b9a01f9fa9fcd75f3aa5689857 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 596db90e37174dd703f4859fef3c86156a7c8564d8351168ac6fdca79c912ef8b8746ae04516ac3909d2cc750702d58d451badacb3c54ea998938ad05d99f9d2 languageName: node linkType: hard -"@aws-sdk/util-body-length-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-body-length-node@npm:3.310.0" +"@babel/plugin-transform-react-display-name@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-display-name@npm:7.22.5" dependencies: - tslib: ^2.5.0 - checksum: 202417ece7078f09f63c4119cb3ab5f321688ea893125f7d97985e8bf7fc61419d8d990f870d9ead3281dc51334975196ef98c50592eca1f9785472bd39b870d + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a12bfd1e4e93055efca3ace3c34722571bda59d9740dca364d225d9c6e3ca874f134694d21715c42cc63d79efd46db9665bd4a022998767f9245f1e29d5d204d languageName: node linkType: hard -"@aws-sdk/util-buffer-from@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-buffer-from@npm:3.310.0" +"@babel/plugin-transform-react-display-name@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-react-display-name@npm:7.24.7" dependencies: - "@aws-sdk/is-array-buffer": 3.310.0 - tslib: ^2.5.0 - checksum: 9c3bd9c0664a0cbb5270eb285a662274bb9c46ae0d79e0275a85e74659a4b1f094bab900994780fd70dd0152dc6d2d33a8bc681d87f3911fa48eae9f6c3558d6 + "@babel/helper-plugin-utils": ^7.24.7 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a05bf83bf5e7b31f7a3b56da1bf8e2eeec76ef52ae44435ceff66363a1717fcda45b7b4b931a2c115982175f481fc3f2d0fab23f0a43c44e6d983afc396858f0 languageName: node linkType: hard -"@aws-sdk/util-config-provider@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-config-provider@npm:3.310.0" +"@babel/plugin-transform-react-jsx-development@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-jsx-development@npm:7.22.5" dependencies: - tslib: ^2.5.0 - checksum: 958efc58ee492111ad746fe6224b25286da415f8aca1197c742bca063672b858d437d2d6b4df5f90ba770e1af9339b3fb1ffa9cc87f2fa993a7177057eb22caf + "@babel/plugin-transform-react-jsx": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 36bc3ff0b96bb0ef4723070a50cfdf2e72cfd903a59eba448f9fe92fea47574d6f22efd99364413719e1f3fb3c51b6c9b2990b87af088f8486a84b2a5f9e4560 languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-browser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-defaults-mode-browser@npm:3.310.0" +"@babel/plugin-transform-react-jsx-development@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-react-jsx-development@npm:7.24.7" dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: 1f1847c41c43e167dec2e6f1a128ac9a486cc2e536b65d8d0e247131105cd2a46329297adc865ec164019850cbd425648add521dbde03417cacceaaf249555c2 + "@babel/plugin-transform-react-jsx": ^7.24.7 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 653d32ea5accb12d016e324ec5a584b60a8f39e60c6a5101194b73553fdefbfa3c3f06ec2410216ec2033fddae181a2f146a1d6ed59f075c488fc4570cad2e7b languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-browser@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/util-defaults-mode-browser@npm:3.325.0" +"@babel/plugin-transform-react-jsx@npm:^7.22.15, @babel/plugin-transform-react-jsx@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/plugin-transform-react-jsx@npm:7.22.15" dependencies: - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: d35bcdefa83476b67329df936902398e2f1171a908ac943e30c221adef7ee5b305f57044be0efe3717bd6c1a43f41b26534a43433adf1692197897949cef7fba + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-module-imports": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-jsx": ^7.22.5 + "@babel/types": ^7.22.15 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3899054e89550c3a0ef041af7c47ee266e2e934f498ee80fefeda778a6aa177b48aa8b4d2a8bf5848de977fec564571699ab952d9fa089c4c19b45ddb121df09 languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-browser@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/util-defaults-mode-browser@npm:3.358.0" +"@babel/plugin-transform-react-jsx@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-react-jsx@npm:7.24.7" dependencies: - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: 39af5ddcac5411cdacbc477f0f9c61c51a73d967c376dc97c0e6b5ef0b5b6948e73d67118b3d8594d0fdbd99a47c62c0a5b3a832bcf64fd7cab8dc4e9fb52a98 + "@babel/helper-annotate-as-pure": ^7.24.7 + "@babel/helper-module-imports": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/plugin-syntax-jsx": ^7.24.7 + "@babel/types": ^7.24.7 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: ddfe494eb4b6ad567ebf0c029246df55d006512b1eb4beead73427b83af2e7e91b6d6e6954e275a92c81a5111d1e6e1fb4a62fdfc6f77c847cc7581650a7c452 languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-browser@npm:3.360.0": - version: 3.360.0 - resolution: "@aws-sdk/util-defaults-mode-browser@npm:3.360.0" +"@babel/plugin-transform-react-pure-annotations@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.22.5" dependencies: - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: 6c976621a374ad02eb49fb440a69f9dd453eb5ab834e4fb7a165e65cf9632d4f5e8d16db357c7154d32986bae5c821be7182fb0c53f52ab8e8de8fd3c6be3a63 + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 092021c4f404e267002099ec20b3f12dd730cb90b0d83c5feed3dc00dbe43b9c42c795a18e7c6c7d7bddea20c7dd56221b146aec81b37f2e7eb5137331c61120 languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-defaults-mode-node@npm:3.310.0" +"@babel/plugin-transform-react-pure-annotations@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.24.7" dependencies: - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/credential-provider-imds": 3.310.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: dca18909df6f8c72ae606c25920e2f686016de969aef2be4568cd6ce1fa0c45b3f946702d607b3279d267aaedff8b67251d4ee7bb4f76a38fca4299c81a7757d + "@babel/helper-annotate-as-pure": ^7.24.7 + "@babel/helper-plugin-utils": ^7.24.7 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: d859ada3cbeb829fa3d9978a29b2d36657fcc9dcc1e4c3c3af84ec5a044a8f8db26ada406baa309e5d4d512aca53d07c520d991b891ff943bec7d8f01aae0419 languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-node@npm:3.325.0": - version: 3.325.0 - resolution: "@aws-sdk/util-defaults-mode-node@npm:3.325.0" +"@babel/plugin-transform-regenerator@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/plugin-transform-regenerator@npm:7.22.10" dependencies: - "@aws-sdk/config-resolver": 3.310.0 - "@aws-sdk/credential-provider-imds": 3.310.0 - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/property-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 4a3a775dbfba1feede261ffe64b1caa3751375d73045eb7777eb369e5f5576bdf1c72b2a5c06d1145edebb5828a8d5705919613469653570bbb05b8b75e2d856 + "@babel/helper-plugin-utils": ^7.22.5 + regenerator-transform: ^0.15.2 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: e13678d62d6fa96f11cb8b863f00e8693491e7adc88bfca3f2820f80cbac8336e7dec3a596eee6a1c4663b7ececc3564f2cd7fb44ed6d4ce84ac2bb7f39ecc6e languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-node@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/util-defaults-mode-node@npm:3.358.0" +"@babel/plugin-transform-reserved-words@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-reserved-words@npm:7.22.5" dependencies: - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/credential-provider-imds": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 04c046290b515aec7dd27b1b6a45274922e714d96ffc21b02775e2f1053d907e12080a009d504bf6265df0c9db48b99ea3d06e2e2790c8b6131c7e426b22cb59 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 3ffd7dbc425fe8132bfec118b9817572799cab1473113a635d25ab606c1f5a2341a636c04cf6b22df3813320365ed5a965b5eeb3192320a10e4cc2c137bd8bfc languageName: node linkType: hard -"@aws-sdk/util-defaults-mode-node@npm:3.360.0": - version: 3.360.0 - resolution: "@aws-sdk/util-defaults-mode-node@npm:3.360.0" +"@babel/plugin-transform-runtime@npm:^7.18.6": + version: 7.23.2 + resolution: "@babel/plugin-transform-runtime@npm:7.23.2" dependencies: - "@aws-sdk/config-resolver": 3.357.0 - "@aws-sdk/credential-provider-imds": 3.357.0 - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/property-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: 9fa8a279b874382e9e3b6237dd8b783dc51bae9ac6dce3655fc2cc07ae7285cf14a5951330cc872ebed9059bb883d6ed2659e40304ae5377266db2d58e398df4 + "@babel/helper-module-imports": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + babel-plugin-polyfill-corejs2: ^0.4.6 + babel-plugin-polyfill-corejs3: ^0.8.5 + babel-plugin-polyfill-regenerator: ^0.5.3 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 09f4273bfe9600c67e72e26f853f11c24ee4c1cbb3935c4a28a94d388e7c0d8733479d868c333cb34e9c236f1765788c6daef7852331f5c70a3b5543fd0247a1 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-endpoints@npm:3.310.0" +"@babel/plugin-transform-shorthand-properties@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-shorthand-properties@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 3f1c76b4c7662eeaf9dcf782739aa90812ed6920dd602a4a3779c80fbf3215efb15bd1ad82a30d022b577acd6049d35fbf79b45f6ae842e895be94db360d1b03 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: a5ac902c56ea8effa99f681340ee61bac21094588f7aef0bc01dff98246651702e677552fa6d10e548c4ac22a3ffad047dd2f8c8f0540b68316c2c203e56818b languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/util-endpoints@npm:3.327.0" +"@babel/plugin-transform-spread@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-spread@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 1247a311a591ceb9093932029fa53f8afea54854f36bd4e84f3a5695dc3214ff9c437bc14a08f4e1d131a2cc7153055382e9c303b38c11b6c2116628731ab7ba + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 5587f0deb60b3dfc9b274e269031cc45ec75facccf1933ea2ea71ced9fd3ce98ed91bb36d6cd26817c14474b90ed998c5078415f0eab531caf301496ce24c95c languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/util-endpoints@npm:3.357.0" +"@babel/plugin-transform-sticky-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-sticky-regex@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - checksum: dcbe4a4ee0fe4490c64465c1dbaaf67d1da38fbc2e8d95e44f50dc4cc94c378b5d1e561c77d5d1c30bb89fb39891e24f1d3778dd8b1fda9305bc3529e3174fe5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 63b2c575e3e7f96c32d52ed45ee098fb7d354b35c2223b8c8e76840b32cc529ee0c0ceb5742fd082e56e91e3d82842a367ce177e82b05039af3d602c9627a729 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/util-endpoints@npm:3.387.0" +"@babel/plugin-transform-template-literals@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-template-literals@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.387.0 - tslib: ^2.5.0 - checksum: 15c3250f096ca4ed7a832294cc3b609e62004f8888781cbd5ee907bd325bb5b999867aa7c8fdd5b806e92424f2561f5dd8ae3ebbb876044289d36163180fa2a5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 27e9bb030654cb425381c69754be4abe6a7c75b45cd7f962cd8d604b841b2f0fb7b024f2efc1c25cc53f5b16d79d5e8cfc47cacbdaa983895b3aeefa3e7e24ff languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.427.0": - version: 3.427.0 - resolution: "@aws-sdk/util-endpoints@npm:3.427.0" +"@babel/plugin-transform-typeof-symbol@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-typeof-symbol@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/node-config-provider": ^2.0.13 - tslib: ^2.5.0 - checksum: 823a8c77f0c31a5075505c0a59b0e9086b395505073e47885358f9d00a3f2cb40576d63b260f31bebb784191cb8b374608b8942d665cd432745e11f819af202a + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 82a53a63ffc3010b689ca9a54e5f53b2718b9f4b4a9818f36f9b7dba234f38a01876680553d2716a645a61920b5e6e4aaf8d4a0064add379b27ca0b403049512 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/util-endpoints@npm:3.489.0" +"@babel/plugin-transform-typescript@npm:^7.22.15": + version: 7.22.15 + resolution: "@babel/plugin-transform-typescript@npm:7.22.15" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/types": ^2.8.0 - "@smithy/util-endpoints": ^1.0.8 - tslib: ^2.5.0 - checksum: 5c225b12ce5c18ecd64079d2e4133374244728ac7c8055efb07ca5b274266cb0e2d6c88ce5ae4385d45d67b2999fcd5bbe5e8dd4299792542683682ac05950e8 + "@babel/helper-annotate-as-pure": ^7.22.5 + "@babel/helper-create-class-features-plugin": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/plugin-syntax-typescript": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c5d96cdbf0e1512707aa1c1e3ac6b370a25fd9c545d26008ce44eb13a47bd7fd67a1eb799c98b5ccc82e33a345fda55c0055e1fe3ed97646ed405dd13020b226 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.583.0": - version: 3.583.0 - resolution: "@aws-sdk/util-endpoints@npm:3.583.0" +"@babel/plugin-transform-unicode-escapes@npm:^7.22.10": + version: 7.22.10 + resolution: "@babel/plugin-transform-unicode-escapes@npm:7.22.10" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/types": ^3.0.0 - "@smithy/util-endpoints": ^2.0.0 - tslib: ^2.6.2 - checksum: 8494b939f43f18ea286083b5a8d2c8aeba65361f922066b195400f43ea5b165438d0fe3f6064a7d5a21c980adf84d702da42ba733fc41f9374c36e3ef277c408 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 807f40ed1324c8cb107c45358f1903384ca3f0ef1d01c5a3c5c9b271c8d8eec66936a3dcc8d75ddfceea9421420368c2e77ae3adef0a50557e778dfe296bf382 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.587.0": - version: 3.587.0 - resolution: "@aws-sdk/util-endpoints@npm:3.587.0" +"@babel/plugin-transform-unicode-property-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/types": ^3.0.0 - "@smithy/util-endpoints": ^2.0.1 - tslib: ^2.6.2 - checksum: 4b1cbfc49129b414144ad94cc947b78c6c3c061f5a39b4365d85c8a2d5e21b83ac85ab1add95b8eb64c48aed58792a486faa74887ff3a56a7a0f381bb1cbbce9 + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 2495e5f663cb388e3d888b4ba3df419ac436a5012144ac170b622ddfc221f9ea9bdba839fa2bc0185cb776b578030666406452ec7791cbf0e7a3d4c88ae9574c languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/util-endpoints@npm:3.598.0" +"@babel/plugin-transform-unicode-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-regex@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/types": ^3.1.0 - "@smithy/util-endpoints": ^2.0.2 - tslib: ^2.6.2 - checksum: 6fb92e8c99b6ce96cda21c9d1744a290c683bae8d82394c1b1fe7ed7d3cb0a18d4025b8863532680db3f550ad130e54d528c64a0a32f398f3c00c5ce2e043ecd + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 6b5d1404c8c623b0ec9bd436c00d885a17d6a34f3f2597996343ddb9d94f6379705b21582dfd4cec2c47fd34068872e74ab6b9580116c0566b3f9447e2a7fa06 languageName: node linkType: hard -"@aws-sdk/util-endpoints@npm:3.614.0": - version: 3.614.0 - resolution: "@aws-sdk/util-endpoints@npm:3.614.0" +"@babel/plugin-transform-unicode-sets-regex@npm:^7.22.5": + version: 7.22.5 + resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.22.5" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/types": ^3.3.0 - "@smithy/util-endpoints": ^2.0.5 - tslib: ^2.6.2 - checksum: 9d9973ceee59bf30af85c7f4328083daea033a987ec396dcb89eb7649f470ceb19c6b96635e121f3557e726f7ec7453236c956cf43f22128883c277f17d2a13f + "@babel/helper-create-regexp-features-plugin": ^7.22.5 + "@babel/helper-plugin-utils": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0 + checksum: c042070f980b139547f8b0179efbc049ac5930abec7fc26ed7a41d89a048d8ab17d362200e204b6f71c3c20d6991a0e74415e1a412a49adc8131c2a40c04822e languageName: node linkType: hard -"@aws-sdk/util-hex-encoding@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-hex-encoding@npm:3.310.0" +"@babel/preset-env@npm:^7.18.6, @babel/preset-env@npm:^7.19.4": + version: 7.23.2 + resolution: "@babel/preset-env@npm:7.23.2" dependencies: - tslib: ^2.5.0 - checksum: 97b8d7e0e406189cdbd4fccb0a497dd247a22d54b18caf5a64a63d19d2535b95a64ee79ecf81b13f741bda1d565eb11448d4fd39617e4b86fc8626b05485d98c - languageName: node - linkType: hard - -"@aws-sdk/util-locate-window@npm:^3.0.0": - version: 3.310.0 - resolution: "@aws-sdk/util-locate-window@npm:3.310.0" - dependencies: - tslib: ^2.5.0 - checksum: d552ce5f0f836ecb13d7920ae650552c56706f26a5e8abf894ba471e18775a3791869bda95269153735bac9d211efc3ba78ea01c34428c3fed4318ac693a08bc + "@babel/compat-data": ^7.23.2 + "@babel/helper-compilation-targets": ^7.22.15 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-option": ^7.22.15 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.22.15 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.22.15 + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2 + "@babel/plugin-syntax-async-generators": ^7.8.4 + "@babel/plugin-syntax-class-properties": ^7.12.13 + "@babel/plugin-syntax-class-static-block": ^7.14.5 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/plugin-syntax-export-namespace-from": ^7.8.3 + "@babel/plugin-syntax-import-assertions": ^7.22.5 + "@babel/plugin-syntax-import-attributes": ^7.22.5 + "@babel/plugin-syntax-import-meta": ^7.10.4 + "@babel/plugin-syntax-json-strings": ^7.8.3 + "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 + "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 + "@babel/plugin-syntax-numeric-separator": ^7.10.4 + "@babel/plugin-syntax-object-rest-spread": ^7.8.3 + "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 + "@babel/plugin-syntax-optional-chaining": ^7.8.3 + "@babel/plugin-syntax-private-property-in-object": ^7.14.5 + "@babel/plugin-syntax-top-level-await": ^7.14.5 + "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6 + "@babel/plugin-transform-arrow-functions": ^7.22.5 + "@babel/plugin-transform-async-generator-functions": ^7.23.2 + "@babel/plugin-transform-async-to-generator": ^7.22.5 + "@babel/plugin-transform-block-scoped-functions": ^7.22.5 + "@babel/plugin-transform-block-scoping": ^7.23.0 + "@babel/plugin-transform-class-properties": ^7.22.5 + "@babel/plugin-transform-class-static-block": ^7.22.11 + "@babel/plugin-transform-classes": ^7.22.15 + "@babel/plugin-transform-computed-properties": ^7.22.5 + "@babel/plugin-transform-destructuring": ^7.23.0 + "@babel/plugin-transform-dotall-regex": ^7.22.5 + "@babel/plugin-transform-duplicate-keys": ^7.22.5 + "@babel/plugin-transform-dynamic-import": ^7.22.11 + "@babel/plugin-transform-exponentiation-operator": ^7.22.5 + "@babel/plugin-transform-export-namespace-from": ^7.22.11 + "@babel/plugin-transform-for-of": ^7.22.15 + "@babel/plugin-transform-function-name": ^7.22.5 + "@babel/plugin-transform-json-strings": ^7.22.11 + "@babel/plugin-transform-literals": ^7.22.5 + "@babel/plugin-transform-logical-assignment-operators": ^7.22.11 + "@babel/plugin-transform-member-expression-literals": ^7.22.5 + "@babel/plugin-transform-modules-amd": ^7.23.0 + "@babel/plugin-transform-modules-commonjs": ^7.23.0 + "@babel/plugin-transform-modules-systemjs": ^7.23.0 + "@babel/plugin-transform-modules-umd": ^7.22.5 + "@babel/plugin-transform-named-capturing-groups-regex": ^7.22.5 + "@babel/plugin-transform-new-target": ^7.22.5 + "@babel/plugin-transform-nullish-coalescing-operator": ^7.22.11 + "@babel/plugin-transform-numeric-separator": ^7.22.11 + "@babel/plugin-transform-object-rest-spread": ^7.22.15 + "@babel/plugin-transform-object-super": ^7.22.5 + "@babel/plugin-transform-optional-catch-binding": ^7.22.11 + "@babel/plugin-transform-optional-chaining": ^7.23.0 + "@babel/plugin-transform-parameters": ^7.22.15 + "@babel/plugin-transform-private-methods": ^7.22.5 + "@babel/plugin-transform-private-property-in-object": ^7.22.11 + "@babel/plugin-transform-property-literals": ^7.22.5 + "@babel/plugin-transform-regenerator": ^7.22.10 + "@babel/plugin-transform-reserved-words": ^7.22.5 + "@babel/plugin-transform-shorthand-properties": ^7.22.5 + "@babel/plugin-transform-spread": ^7.22.5 + "@babel/plugin-transform-sticky-regex": ^7.22.5 + "@babel/plugin-transform-template-literals": ^7.22.5 + "@babel/plugin-transform-typeof-symbol": ^7.22.5 + "@babel/plugin-transform-unicode-escapes": ^7.22.10 + "@babel/plugin-transform-unicode-property-regex": ^7.22.5 + "@babel/plugin-transform-unicode-regex": ^7.22.5 + "@babel/plugin-transform-unicode-sets-regex": ^7.22.5 + "@babel/preset-modules": 0.1.6-no-external-plugins + "@babel/types": ^7.23.0 + babel-plugin-polyfill-corejs2: ^0.4.6 + babel-plugin-polyfill-corejs3: ^0.8.5 + babel-plugin-polyfill-regenerator: ^0.5.3 + core-js-compat: ^3.31.0 + semver: ^6.3.1 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 49327ef584b529b56aedd6577937b80c0d89603c68b23795495a13af04b5aa008db9ad04cd280423600cdc0d3cce13ae9d0d9a977db5c8193697b20ced8a10b2 languageName: node linkType: hard -"@aws-sdk/util-middleware@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-middleware@npm:3.310.0" +"@babel/preset-modules@npm:0.1.6-no-external-plugins": + version: 0.1.6-no-external-plugins + resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" dependencies: - tslib: ^2.5.0 - checksum: 3c25a83361ce95dd3f66170d67fb39911a3f5bc21627ffaccef1880ad8c3602b6351f5c51e9c0bfef5b4037e5c66b9eadb291a9441db644811cf5640c35c587b + "@babel/helper-plugin-utils": ^7.0.0 + "@babel/types": ^7.4.4 + esutils: ^2.0.2 + peerDependencies: + "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 + checksum: 4855e799bc50f2449fb5210f78ea9e8fd46cf4f242243f1e2ed838e2bd702e25e73e822e7f8447722a5f4baa5e67a8f7a0e403f3e7ce04540ff743a9c411c375 languageName: node linkType: hard -"@aws-sdk/util-middleware@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/util-middleware@npm:3.357.0" +"@babel/preset-react@npm:^7.18.6": + version: 7.22.15 + resolution: "@babel/preset-react@npm:7.22.15" dependencies: - tslib: ^2.5.0 - checksum: 62d92b864a0b6843c83b838a5a850adfe551323ef2cf4d7510ff38f552b1483f09e8caa17f6e6eecf963c57302173e38f682016d45d87a68540b7adf3ec9a9a2 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-option": ^7.22.15 + "@babel/plugin-transform-react-display-name": ^7.22.5 + "@babel/plugin-transform-react-jsx": ^7.22.15 + "@babel/plugin-transform-react-jsx-development": ^7.22.5 + "@babel/plugin-transform-react-pure-annotations": ^7.22.5 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c3ef99dfa2e9f57d2e08603e883aa20f47630a826c8e413888a93ae6e0084b5016871e463829be125329d40a1ba0a89f7c43d77b6dab52083c225cb43e63d10e languageName: node linkType: hard -"@aws-sdk/util-retry@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-retry@npm:3.310.0" +"@babel/preset-react@npm:^7.24.6": + version: 7.24.7 + resolution: "@babel/preset-react@npm:7.24.7" dependencies: - "@aws-sdk/service-error-classification": 3.310.0 - tslib: ^2.5.0 - checksum: a91b53ca40dd7ac423b46a4916a84567de163e84e63919e77d9a0694337323812b662580f6133442eb1c17885d0a2b5663cba9cadce4dabf5517dc34089b3399 + "@babel/helper-plugin-utils": ^7.24.7 + "@babel/helper-validator-option": ^7.24.7 + "@babel/plugin-transform-react-display-name": ^7.24.7 + "@babel/plugin-transform-react-jsx": ^7.24.7 + "@babel/plugin-transform-react-jsx-development": ^7.24.7 + "@babel/plugin-transform-react-pure-annotations": ^7.24.7 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: 76d0365b6bca808be65c4ccb3f3384c0792084add15eb537f16b3e44184216b82fa37f945339b732ceee6f06e09ba1f39f75c45e69b9811ddcc479f05555ea9c languageName: node linkType: hard -"@aws-sdk/util-retry@npm:3.327.0": - version: 3.327.0 - resolution: "@aws-sdk/util-retry@npm:3.327.0" +"@babel/preset-typescript@npm:^7.18.6": + version: 7.23.2 + resolution: "@babel/preset-typescript@npm:7.23.2" dependencies: - "@aws-sdk/service-error-classification": 3.327.0 - tslib: ^2.5.0 - checksum: 6ecac86fdd24705ed3ff40d1772ea8b606ea5d5472aa90693cafc5ec53409243ce1ad8f95035d191673d41cf8b452d838dc3ef58383bc1261ad4ffbc245c7ce9 + "@babel/helper-plugin-utils": ^7.22.5 + "@babel/helper-validator-option": ^7.22.15 + "@babel/plugin-syntax-jsx": ^7.22.5 + "@babel/plugin-transform-modules-commonjs": ^7.23.0 + "@babel/plugin-transform-typescript": ^7.22.15 + peerDependencies: + "@babel/core": ^7.0.0-0 + checksum: c4b065c90e7f085dd7a0e57032983ac230c7ffd1d616e4c2b66581e765d5befc9271495f33250bf1cf9b4d436239c8ca3b19ada9f6c419c70bdab2cf6c868f9f languageName: node linkType: hard -"@aws-sdk/util-retry@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/util-retry@npm:3.357.0" - dependencies: - "@aws-sdk/service-error-classification": 3.357.0 - tslib: ^2.5.0 - checksum: f88181bfd1d03ab765467fdc8912e448d1b838f2852841f69ffd5537f62759bdfed88fbc9a8f8360957f233c6b0c3278eb2694bc742f587a91f5045cd0621c86 +"@babel/regjsgen@npm:^0.8.0": + version: 0.8.0 + resolution: "@babel/regjsgen@npm:0.8.0" + checksum: 89c338fee774770e5a487382170711014d49a68eb281e74f2b5eac88f38300a4ad545516a7786a8dd5702e9cf009c94c2f582d200f077ac5decd74c56b973730 languageName: node linkType: hard -"@aws-sdk/util-retry@npm:3.362.0": - version: 3.362.0 - resolution: "@aws-sdk/util-retry@npm:3.362.0" +"@babel/runtime-corejs3@npm:^7.18.6": + version: 7.23.2 + resolution: "@babel/runtime-corejs3@npm:7.23.2" dependencies: - "@aws-sdk/service-error-classification": 3.357.0 - tslib: ^2.5.0 - checksum: 0ce6fda243d2829b17eeb1dd2adb8e61df9e7f75f1c762656ccb858de0f7cda1bec2aea409bf03052121fccba19ce0a04f8a9de678419ea452254d911d3d4a64 + core-js-pure: ^3.30.2 + regenerator-runtime: ^0.14.0 + checksum: 922f25c47996a8af604cea82441e41be8b11910e96c662511e54120078f4c64258c045a28a311467a8f14a0c17f46a1f057f7c0501e567869a4343a6ce017962 languageName: node linkType: hard -"@aws-sdk/util-stream-browser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-stream-browser@npm:3.310.0" +"@babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.3, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.6, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.8.4": + version: 7.23.2 + resolution: "@babel/runtime@npm:7.23.2" dependencies: - "@aws-sdk/fetch-http-handler": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-hex-encoding": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 0058cdb410bd5d9365ce28c436dff17a534dfea38cc411f2bc83b34aa1be24850feae19f73b2fc7c2865df5d38d1f2502eb8ab4d061b3a90f4823bc09031f30c + regenerator-runtime: ^0.14.0 + checksum: 6c4df4839ec75ca10175f636d6362f91df8a3137f86b38f6cd3a4c90668a0fe8e9281d320958f4fbd43b394988958585a17c3aab2a4ea6bf7316b22916a371fb languageName: node linkType: hard -"@aws-sdk/util-stream-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-stream-node@npm:3.310.0" +"@babel/template@npm:^7.12.7, @babel/template@npm:^7.22.15, @babel/template@npm:^7.22.5": + version: 7.22.15 + resolution: "@babel/template@npm:7.22.15" dependencies: - "@aws-sdk/node-http-handler": 3.310.0 - "@aws-sdk/types": 3.310.0 - "@aws-sdk/util-buffer-from": 3.310.0 - tslib: ^2.5.0 - checksum: 05caf55f81dd8151adccc23bc2f3f0007e095fb554bec279ec0c8045a7d8da22ecaed238f5d12705ae77e77b7cd81119bb5da2f1a9788962f5361647cafdf9ca + "@babel/code-frame": ^7.22.13 + "@babel/parser": ^7.22.15 + "@babel/types": ^7.22.15 + checksum: 1f3e7dcd6c44f5904c184b3f7fe280394b191f2fed819919ffa1e529c259d5b197da8981b6ca491c235aee8dbad4a50b7e31304aa531271cb823a4a24a0dd8fd languageName: node linkType: hard -"@aws-sdk/util-stream@npm:3.358.0": - version: 3.358.0 - resolution: "@aws-sdk/util-stream@npm:3.358.0" +"@babel/template@npm:^7.20.7, @babel/template@npm:^7.3.3": + version: 7.20.7 + resolution: "@babel/template@npm:7.20.7" dependencies: - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/node-http-handler": 3.357.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-buffer-from": 3.310.0 - "@aws-sdk/util-hex-encoding": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: 6bb0beba2aa7f93e00b304545072529118327f136ddb9a9eafdd36c82626d71435566cb7471547dff56629cd82e501a0451254b510206d568c1ad50ba0a8b2cc + "@babel/code-frame": ^7.18.6 + "@babel/parser": ^7.20.7 + "@babel/types": ^7.20.7 + checksum: 2eb1a0ab8d415078776bceb3473d07ab746e6bb4c2f6ca46ee70efb284d75c4a32bb0cd6f4f4946dec9711f9c0780e8e5d64b743208deac6f8e9858afadc349e languageName: node linkType: hard -"@aws-sdk/util-stream@npm:3.360.0": - version: 3.360.0 - resolution: "@aws-sdk/util-stream@npm:3.360.0" +"@babel/template@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/template@npm:7.24.7" dependencies: - "@aws-sdk/fetch-http-handler": 3.357.0 - "@aws-sdk/node-http-handler": 3.360.0 - "@aws-sdk/types": 3.357.0 - "@aws-sdk/util-base64": 3.310.0 - "@aws-sdk/util-buffer-from": 3.310.0 - "@aws-sdk/util-hex-encoding": 3.310.0 - "@aws-sdk/util-utf8": 3.310.0 - tslib: ^2.5.0 - checksum: a151f5c2683feb88c30e84ae10c137019d7e7a7f9ba11ee1c01e24b257d121b9d4de4de682feb7c6552a59cd48298a5dede13a16928b55a9855d41e89f2c408f + "@babel/code-frame": ^7.24.7 + "@babel/parser": ^7.24.7 + "@babel/types": ^7.24.7 + checksum: ea90792fae708ddf1632e54c25fe1a86643d8c0132311f81265d2bdbdd42f9f4fac65457056c1b6ca87f7aa0d6a795b549566774bba064bdcea2034ab3960ee9 languageName: node linkType: hard -"@aws-sdk/util-uri-escape@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-uri-escape@npm:3.310.0" +"@babel/template@npm:^7.25.0": + version: 7.25.0 + resolution: "@babel/template@npm:7.25.0" dependencies: - tslib: ^2.5.0 - checksum: 614c0a43b238b7371b6655a5961e21c57b708de3e1ce3138bd56284bedc48888e5c7d2a6965544108c3334fcdc45e9ddba86b2470c8e6901559ad7be8e21d418 + "@babel/code-frame": ^7.24.7 + "@babel/parser": ^7.25.0 + "@babel/types": ^7.25.0 + checksum: 3f2db568718756d0daf2a16927b78f00c425046b654cd30b450006f2e84bdccaf0cbe6dc04994aa1f5f6a4398da2f11f3640a4d3ee31722e43539c4c919c817b languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.310.0" +"@babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.18.8, @babel/traverse@npm:^7.23.2": + version: 7.23.2 + resolution: "@babel/traverse@npm:7.23.2" dependencies: - "@aws-sdk/types": 3.310.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: 32fc6249e762fcba3f3111ed627b644855e8127bc354911fdcdbd0332ea1915872bb0984f19c049fbc4feaf17e3bb02ff11b13d3792103ee8902d00c7fe3ff84 + "@babel/code-frame": ^7.22.13 + "@babel/generator": ^7.23.0 + "@babel/helper-environment-visitor": ^7.22.20 + "@babel/helper-function-name": ^7.23.0 + "@babel/helper-hoist-variables": ^7.22.5 + "@babel/helper-split-export-declaration": ^7.22.6 + "@babel/parser": ^7.23.0 + "@babel/types": ^7.23.0 + debug: ^4.1.0 + globals: ^11.1.0 + checksum: 26a1eea0dde41ab99dde8b9773a013a0dc50324e5110a049f5d634e721ff08afffd54940b3974a20308d7952085ac769689369e9127dea655f868c0f6e1ab35d languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.357.0" +"@babel/traverse@npm:^7.21.0, @babel/traverse@npm:^7.21.2, @babel/traverse@npm:^7.7.2": + version: 7.21.2 + resolution: "@babel/traverse@npm:7.21.2" dependencies: - "@aws-sdk/types": 3.357.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: ff41369496116bf9c754030a9679e2eac390eeb5ab88cc49b5df06aa564e156c71eace3458b9bf8e62a8f203c7e431475f498c138276649a6f9c549a0c6e252a + "@babel/code-frame": ^7.18.6 + "@babel/generator": ^7.21.1 + "@babel/helper-environment-visitor": ^7.18.9 + "@babel/helper-function-name": ^7.21.0 + "@babel/helper-hoist-variables": ^7.18.6 + "@babel/helper-split-export-declaration": ^7.18.6 + "@babel/parser": ^7.21.2 + "@babel/types": ^7.21.2 + debug: ^4.1.0 + globals: ^11.1.0 + checksum: d851e3f5cfbdc2fac037a014eae7b0707709de50f7d2fbb82ffbf932d3eeba90a77431529371d6e544f8faaf8c6540eeb18fdd8d1c6fa2b61acea0fb47e18d4b languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.387.0" +"@babel/traverse@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/traverse@npm:7.24.7" dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/types": ^2.1.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: a7ab9c2d98c4e00f7ac8aab8f08e8f0472d026573c0790aa6036557de0dae5c6e89a3989e00937725badbefcfdfd4fa5e5a996e5e11a043a3d594b5956cfae2c + "@babel/code-frame": ^7.24.7 + "@babel/generator": ^7.24.7 + "@babel/helper-environment-visitor": ^7.24.7 + "@babel/helper-function-name": ^7.24.7 + "@babel/helper-hoist-variables": ^7.24.7 + "@babel/helper-split-export-declaration": ^7.24.7 + "@babel/parser": ^7.24.7 + "@babel/types": ^7.24.7 + debug: ^4.3.1 + globals: ^11.1.0 + checksum: 7cd366afe9e7ee77e493779fdf24f67bf5595247289364f4689e29688572505eaeb886d7a8f20ebb9c29fc2de7d0895e4ff9e203e78e39ac67239724d45aa83b languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.425.0" +"@babel/traverse@npm:^7.25.2": + version: 7.25.6 + resolution: "@babel/traverse@npm:7.25.6" dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/types": ^2.3.4 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: 2f75c2bc97d9dc07f50ffe270408aa1d3ebd9e67de8a180e26776f64f9ca397ca9c3ffc21c677dfa4a917f5399f10ae8766f7c94478eaf31e11431d8189e8734 + "@babel/code-frame": ^7.24.7 + "@babel/generator": ^7.25.6 + "@babel/parser": ^7.25.6 + "@babel/template": ^7.25.0 + "@babel/types": ^7.25.6 + debug: ^4.3.1 + globals: ^11.1.0 + checksum: 11ee47269aa4356f2d6633a05b9af73405b5ed72c09378daf644289b686ef852035a6ac9aa410f601991993c6bbf72006795b5478283b78eb1ca77874ada7737 languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.489.0" +"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.6, @babel/types@npm:^7.20.2, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.0, @babel/types@npm:^7.21.2, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.8.3": + version: 7.21.2 + resolution: "@babel/types@npm:7.21.2" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/types": ^2.8.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: b24009655bd5a7755575d6ed5c955d6fcfa3a70248e1a9c9d4a58cc7ed4bb25936a276917a0ab60b6e11e7ed915d5dcfdd5e9112e373bd23b24d24963324e516 + "@babel/helper-string-parser": ^7.19.4 + "@babel/helper-validator-identifier": ^7.19.1 + to-fast-properties: ^2.0.0 + checksum: a45a52acde139e575502c6de42c994bdbe262bafcb92ae9381fb54cdf1a3672149086843fda655c7683ce9806e998fd002bbe878fa44984498d0fdc7935ce7ff languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.577.0" +"@babel/types@npm:^7.12.7, @babel/types@npm:^7.20.0, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.4.4": + version: 7.23.0 + resolution: "@babel/types@npm:7.23.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/types": ^3.0.0 - bowser: ^2.11.0 - tslib: ^2.6.2 - checksum: 48b29b186f9d59c7ee272568cb0752834527aeccf122e4794313f84fb4c72dc65edf4bbf22f07aa7e2dde7da288e6d7ba20633edd9dbc853aca1b170bdfe1532 + "@babel/helper-string-parser": ^7.22.5 + "@babel/helper-validator-identifier": ^7.22.20 + to-fast-properties: ^2.0.0 + checksum: 215fe04bd7feef79eeb4d33374b39909ce9cad1611c4135a4f7fdf41fe3280594105af6d7094354751514625ea92d0875aba355f53e86a92600f290e77b0e604 languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.598.0" +"@babel/types@npm:^7.24.7": + version: 7.24.7 + resolution: "@babel/types@npm:7.24.7" dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/types": ^3.1.0 - bowser: ^2.11.0 - tslib: ^2.6.2 - checksum: c53afc0fe7a07838ad22ae1e9ed6834d56a69cb0ad623d4912deeaa715af479b64266965fce30e7210e576118f80ceb525f79f504dc459fe0294fd15e694752e + "@babel/helper-string-parser": ^7.24.7 + "@babel/helper-validator-identifier": ^7.24.7 + to-fast-properties: ^2.0.0 + checksum: 3e4437fced97e02982972ce5bebd318c47d42c9be2152c0fd28c6f786cc74086cc0a8fb83b602b846e41df37f22c36254338eada1a47ef9d8a1ec92332ca3ea8 languageName: node linkType: hard -"@aws-sdk/util-user-agent-browser@npm:3.609.0": - version: 3.609.0 - resolution: "@aws-sdk/util-user-agent-browser@npm:3.609.0" +"@babel/types@npm:^7.25.0, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.6": + version: 7.25.6 + resolution: "@babel/types@npm:7.25.6" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/types": ^3.3.0 - bowser: ^2.11.0 - tslib: ^2.6.2 - checksum: 75ba1ae74dd1001f47870766d92b66ac02a0a488efcf42c1a368962a7978a778d99536e880f07f7db1c2ca66cc9b1863fd3342957a22dcf78bf2f4398265a7a5 + "@babel/helper-string-parser": ^7.24.8 + "@babel/helper-validator-identifier": ^7.24.7 + to-fast-properties: ^2.0.0 + checksum: 9b2f84ff3f874ad05b0b9bf06862c56f478b65781801f82296b4cc01bee39e79c20a7c0a06959fed0ee582c8267e1cb21638318655c5e070b0287242a844d1c9 languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.310.0" +"@baiducloud/qianfan@npm:^0.1.6": + version: 0.1.6 + resolution: "@baiducloud/qianfan@npm:0.1.6" dependencies: - "@aws-sdk/node-config-provider": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 82d214f814405a538df8afb259f6a3f2d373cd87adbc2895ac93e9d1f4ed9f4f8f6dcc0ae8ba55887e99e45b5ea83c7b1e5ed3efccbcdbbcaee6a863a638d183 + "@babel/preset-react": ^7.24.6 + "@rollup/plugin-inject": ^5.0.5 + "@rollup/plugin-json": ^6.1.0 + "@types/node-fetch": ^2.6.11 + async-mutex: ^0.5.0 + bottleneck: ^2.19.5 + crypto-js: ^4.2.0 + dotenv: ^16.4.5 + express: ^4.19.2 + node-fetch: 2.7.0 + rollup: ^3.29.4 + typescript: ^5.3.3 + web-streams-polyfill: ^4.0.0 + checksum: 63e21d10f971303cb44bf4490086c5abf4603b97ef295efd399d56efaa34aaf90e00f6bbd5d07be3036318320efc71575db3d376b95468f9fef445b26e3fb21a languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.357.0": - version: 3.357.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.357.0" +"@bcherny/json-schema-ref-parser@npm:10.0.5-fork": + version: 10.0.5-fork + resolution: "@bcherny/json-schema-ref-parser@npm:10.0.5-fork" dependencies: - "@aws-sdk/node-config-provider": 3.357.0 - "@aws-sdk/types": 3.357.0 - tslib: ^2.5.0 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: ea9578e519be09a43682dc90be3feab4c4d22e027355be059dac9a0df6de75ace7288be8ef9be94fdf70e3d5d510b1118b6c8d5f8becdde14bc9d90fe05b6e90 + "@jsdevtools/ono": ^7.1.3 + "@types/json-schema": ^7.0.6 + call-me-maybe: ^1.0.1 + js-yaml: ^4.1.0 + checksum: e90eb3655c4e15f54ebc5138baac98471d159e3a253b484416c03c2d43f5c3bc80a4d6fe18acd71f77bf2f95f7fbc36730abb21cbd1f9d80a6af630c554e6d62 languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.387.0": - version: 3.387.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.387.0" - dependencies: - "@aws-sdk/types": 3.387.0 - "@smithy/node-config-provider": ^2.0.2 - "@smithy/types": ^2.1.0 - tslib: ^2.5.0 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: abe3cf2d058ff0a907780ee2100b0d5805d7878c434115cda645d2fe0a57226dd7cf86c2d795ef75d8062914d89c8d71752789b355317586417b92482e05c98f +"@bcoe/v8-coverage@npm:^0.2.3": + version: 0.2.3 + resolution: "@bcoe/v8-coverage@npm:0.2.3" + checksum: 850f9305536d0f2bd13e9e0881cb5f02e4f93fad1189f7b2d4bebf694e3206924eadee1068130d43c11b750efcc9405f88a8e42ef098b6d75239c0f047de1a27 languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.425.0": - version: 3.425.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.425.0" - dependencies: - "@aws-sdk/types": 3.425.0 - "@smithy/node-config-provider": ^2.0.13 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: ccb8cc91adda5beca5aef4ac9af2c256612d90b284609f731ac1327e31c54b5e994d9224a00e8b25c32a3753c0a34c04e39fbe4b50c3bd3a43bf6d9057917835 +"@braintree/sanitize-url@npm:^6.0.0": + version: 6.0.4 + resolution: "@braintree/sanitize-url@npm:6.0.4" + checksum: f5ec6048973722ea1c46ae555d2e9eb848d7fa258994f8ea7d6db9514ee754ea3ef344ef71b3696d486776bcb839f3124e79f67c6b5b2814ed2da220b340627c languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.489.0": - version: 3.489.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.489.0" +"@browserbasehq/sdk@npm:^1.1.5": + version: 1.1.5 + resolution: "@browserbasehq/sdk@npm:1.1.5" dependencies: - "@aws-sdk/types": 3.489.0 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 755845ce1cebdc78d3bb2bab058cf8e966658373daa7c62ae808fc0fc733248ed019042b1eed4ad3274ae08f23506cc000e1b0d41b6f01fd29cccad4275b3f8e + playwright: ^1.43.1 + zod: ^3.22.5 + checksum: 9b62d6471c4f706af881b58b8fcc0c06ea48bc4b3b2d97c71265a8294cf38afefc61609b21c7d6564a312a91359f645e90462875582c73004420ed2a2bf4e1bc languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.577.0": - version: 3.577.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.577.0" +"@browserbasehq/sdk@npm:^2.0.0": + version: 2.0.0 + resolution: "@browserbasehq/sdk@npm:2.0.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/node-config-provider": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 732fb562a02826fbe0e0ce2571c4f396b14515a57f01121e99b84088761f1cf6e47e03c9a3613e51f3ff34aae8eae3b47440e0e012a9f54096e7f2b244705ef5 + "@types/node": ^18.11.18 + "@types/node-fetch": ^2.6.4 + abort-controller: ^3.0.0 + agentkeepalive: ^4.2.1 + form-data-encoder: 1.7.2 + formdata-node: ^4.3.2 + node-fetch: ^2.6.7 + checksum: f3ef62ff6817e5095ba1d2477b3ffcbfd7accf9cc1692b8d047803d4c854ad68521724c12af7df584589b9c04eb2fe95ec6f0a20114d1515363b814aa9d8b34e languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.587.0": - version: 3.587.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.587.0" +"@browserbasehq/stagehand@npm:^1.0.0, @browserbasehq/stagehand@npm:^1.3.0": + version: 1.3.0 + resolution: "@browserbasehq/stagehand@npm:1.3.0" dependencies: - "@aws-sdk/types": 3.577.0 - "@smithy/node-config-provider": ^3.1.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 + "@anthropic-ai/sdk": ^0.27.3 + "@browserbasehq/sdk": ^2.0.0 + anthropic: ^0.0.0 + anthropic-ai: ^0.0.10 + sharp: ^0.33.5 + zod-to-json-schema: ^3.23.3 peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 6f963c5371de04144fbd2ed893d823bc7c9f9a9e6e40bde3a1bab82274213110b7e2542d7da0798ffa7d24031ff63b385b08799a07800a816f4c85b0c2e44abe + "@playwright/test": ^1.42.1 + deepmerge: ^4.3.1 + dotenv: ^16.4.5 + openai: ^4.62.1 + zod: ^3.23.8 + checksum: 16962b3a95af92f3d435b5ceca84a5f0728334c5b3ac327f862b09501a5ecc6465d305ce20856fdc5d83606c26f884b69676347e4524a38a5e20795ee3d4d30e languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.598.0": - version: 3.598.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.598.0" - dependencies: - "@aws-sdk/types": 3.598.0 - "@smithy/node-config-provider": ^3.1.1 - "@smithy/types": ^3.1.0 - tslib: ^2.6.2 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 1560fabf19b236cfbce42769e1ef7e46bdad881b8a4b0ce069401d9a6edd5e1b195f45cb2847abf9ef1453d2e69447e7a3dabc92b037d9a41fe58960538db1ae +"@bufbuild/protobuf@npm:^2.0.0": + version: 2.2.3 + resolution: "@bufbuild/protobuf@npm:2.2.3" + checksum: 567ca0497669a8944fe84a9fdfa236e4a91d5879190c0ec0c8727d5220cbc21a85d06a114ac1eb35387fc5cb1dcbb7adc583c4d4f6a2ecb34fbe61dcaa7e7e9b languageName: node linkType: hard -"@aws-sdk/util-user-agent-node@npm:3.614.0": - version: 3.614.0 - resolution: "@aws-sdk/util-user-agent-node@npm:3.614.0" +"@cerebras/cerebras_cloud_sdk@npm:^1.15.0": + version: 1.15.0 + resolution: "@cerebras/cerebras_cloud_sdk@npm:1.15.0" dependencies: - "@aws-sdk/types": 3.609.0 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - peerDependencies: - aws-crt: ">=1.0.0" - peerDependenciesMeta: - aws-crt: - optional: true - checksum: 1f010080c2301fd836908963a235ef39e597d959e27461d15d4958fa582ab20795022f8cb7429c183c386f558a5c125cb254a0c4e844dbc6422169f4884be34a + "@types/node": ^18.11.18 + "@types/node-fetch": ^2.6.4 + abort-controller: ^3.0.0 + agentkeepalive: ^4.2.1 + form-data-encoder: 1.7.2 + formdata-node: ^4.3.2 + node-fetch: ^2.6.7 + checksum: 192b6c473fa2cf7d7b77b1523e935c21f0d8084365ec795e02a0dcb608e85a4b742c1584338311cad816c46b2f50772ab7b7902a2e5d5fd12800eae085db9b06 languageName: node linkType: hard -"@aws-sdk/util-utf8-browser@npm:^3.0.0": - version: 3.259.0 - resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0" - dependencies: - tslib: ^2.3.1 - checksum: b6a1e580da1c9b62c749814182a7649a748ca4253edb4063aa521df97d25b76eae3359eb1680b86f71aac668e05cc05c514379bca39ebf4ba998ae4348412da8 +"@cfworker/json-schema@npm:^4.0.2": + version: 4.0.2 + resolution: "@cfworker/json-schema@npm:4.0.2" + checksum: afde096ef9858fba7861c59017432a1842a243dcd50af1bc5d326ea47eb96c38f60792badbadb51595b16557e8d2f4a730b9012f568c79006248bcd454164e5b languageName: node linkType: hard -"@aws-sdk/util-utf8@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-utf8@npm:3.310.0" - dependencies: - "@aws-sdk/util-buffer-from": 3.310.0 - tslib: ^2.5.0 - checksum: 4045e79b8e3593e12233b359ba77d1b4c162fd9fcb4ab3b58b711c41b725552306dd91402b8d57ce5be080c76309f046a7a0c4ff704d12f9ba71e3b25b810086 +"@chainsafe/is-ip@npm:^2.0.1": + version: 2.0.2 + resolution: "@chainsafe/is-ip@npm:2.0.2" + checksum: 2600350ba1c8fbad5d1ebee71317beeb29fbaebf43780d89e30f8c6c2d27b95ebdab0284dfbab7336b5eb6d8ffcc7081e3e4c5b221889dc366463f83bbe38adb languageName: node linkType: hard -"@aws-sdk/util-waiter@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/util-waiter@npm:3.310.0" +"@chainsafe/netmask@npm:^2.0.0": + version: 2.0.0 + resolution: "@chainsafe/netmask@npm:2.0.0" dependencies: - "@aws-sdk/abort-controller": 3.310.0 - "@aws-sdk/types": 3.310.0 - tslib: ^2.5.0 - checksum: 51eb9fbb9a21cd02c312f4639e520b934e2d6ea93eb7c0c1c71f3cf415d61b0a681e7f88209f9e49f3e84bba83480d1c14b0c0b069b610bd12753ff1c1d68f42 + "@chainsafe/is-ip": ^2.0.1 + checksum: 90d27154c11ff878130150766ebfc490c829cd5249a61f7018fa4cefe3a18d92394285bb435c38bd0dbe45261006a82572e95ac201e9b28157de80127a6a3d06 languageName: node linkType: hard -"@aws-sdk/xml-builder@npm:3.310.0": - version: 3.310.0 - resolution: "@aws-sdk/xml-builder@npm:3.310.0" - dependencies: - tslib: ^2.5.0 - checksum: fc17fd8f68470702d947948ada46097bdddecafdc68fa57bf584320e92748e8ef0372a51999d3ab7902ba4f62c2dbfbdec2dba1180fca19bb5127bad1ef0e48b +"@clickhouse/client-common@npm:0.2.5": + version: 0.2.5 + resolution: "@clickhouse/client-common@npm:0.2.5" + checksum: fb5c941d13d5532e473827ea4624bc1130840d883d206096a3982a38ace40d1926d15f2dc4169ae5d0bb3538afbf97150c144956186dd3000d98d677821b698e languageName: node linkType: hard -"@azure-rest/core-client@npm:^1.1.7": - version: 1.1.7 - resolution: "@azure-rest/core-client@npm:1.1.7" +"@clickhouse/client@npm:^0.2.5": + version: 0.2.5 + resolution: "@clickhouse/client@npm:0.2.5" dependencies: - "@azure/abort-controller": ^1.1.0 - "@azure/core-auth": ^1.3.0 - "@azure/core-rest-pipeline": ^1.5.0 - "@azure/core-tracing": ^1.0.1 - "@azure/core-util": ^1.0.0 - tslib: ^2.2.0 - checksum: 62edbc81c1fa682879a56e59eb53f164d7ba232647b1ac9f0d895d9153bda7cd3b43fa324d9fab046583236f8a5d5675c732e6133e6d925f1b50911877049f27 + "@clickhouse/client-common": 0.2.5 + checksum: e91ee1564ee9fec5754817b6e332c07b75dc13cfee08db15ebd055921b1e3cfb7ec966f69211a84c092c3a94a09a1095ed12ffb4be566cc144ddc90261eb1965 languageName: node linkType: hard -"@azure/abort-controller@npm:^1.0.0, @azure/abort-controller@npm:^1.0.4, @azure/abort-controller@npm:^1.1.0": - version: 1.1.0 - resolution: "@azure/abort-controller@npm:1.1.0" +"@cloudflare/ai@npm:1.0.12": + version: 1.0.12 + resolution: "@cloudflare/ai@npm:1.0.12" dependencies: - tslib: ^2.2.0 - checksum: 0f45e504d4aea799486867179afe7589255f6c111951279958e9d0aa5faebb2c96b8f88e3e3c958ce07b02bcba0b0cddb1bbec94705f573a48ecdb93eec1a92a + json-schema-to-typescript: ^13.1.1 + checksum: bf196acd46ec8a39973aa74346ec9404a018a6599c9c65037e252bebbd648d936dbff6b4848717f9539bfd024826803a857df88ed138fa7ab697a4fafe41d966 languageName: node linkType: hard -"@azure/abort-controller@npm:^2.0.0": - version: 2.1.2 - resolution: "@azure/abort-controller@npm:2.1.2" - dependencies: - tslib: ^2.6.2 - checksum: 22176c04ea01498311c6bbd336669f6e3faffad1cbb0c9ebc6ee9c1ff2cf958fd17ce73c7354b99d8bda9fcd311325ece7bee248875279174e3fc460e8b1a63d +"@cloudflare/workers-types@npm:^4.20230922.0": + version: 4.20230922.0 + resolution: "@cloudflare/workers-types@npm:4.20230922.0" + checksum: 629bab47cdbcb74e3c42fc9486f5186734b6dd734154cea7a0983ad83ee053b4fb1ae13ff618a7287612bc3b3d19ad72d6a34a84289a903623cb8a13af57596b languageName: node linkType: hard -"@azure/core-auth@npm:^1.3.0": - version: 1.4.0 - resolution: "@azure/core-auth@npm:1.4.0" - dependencies: - "@azure/abort-controller": ^1.0.0 - tslib: ^2.2.0 - checksum: 1c76c296fe911ad39fc780b033c25a92c41c5a15f011b816d42c13584f627a4dd153dfb4334900ec93eb5b006e14bdda37e8412a7697c5a9636a0abaccffad39 +"@cloudflare/workers-types@npm:^4.20240909.0": + version: 4.20240909.0 + resolution: "@cloudflare/workers-types@npm:4.20240909.0" + checksum: 82fe9b22510d6a23533830684018651bf8a679692cc487cf82d15816e4c91b95ca5e759a6702d6b1268cd93cda8f0b45f3bf9e6ac27e926112ed4f3c7ef65968 languageName: node linkType: hard -"@azure/core-auth@npm:^1.4.0, @azure/core-auth@npm:^1.5.0": +"@colors/colors@npm:1.5.0": version: 1.5.0 - resolution: "@azure/core-auth@npm:1.5.0" - dependencies: - "@azure/abort-controller": ^1.0.0 - "@azure/core-util": ^1.1.0 - tslib: ^2.2.0 - checksum: 11c5ba072902693435dc2930e2fdfe2ff34836f4c2d6c87c6ac0566d48dc49157ebf49f4478cd3784dc0c4d57b502d3a12d74ea29f416725204a6e1aa937ef78 - languageName: node - linkType: hard - -"@azure/core-auth@npm:^1.7.1, @azure/core-auth@npm:^1.8.0, @azure/core-auth@npm:^1.9.0": - version: 1.9.0 - resolution: "@azure/core-auth@npm:1.9.0" - dependencies: - "@azure/abort-controller": ^2.0.0 - "@azure/core-util": ^1.11.0 - tslib: ^2.6.2 - checksum: 4050112188db093c5e01caca0175708c767054c0cea4202430ff43ee42a16430235752ccc0002caea1796c8f01b4f6369c878762bf4c1b2f61af1b7ac13182fc - languageName: node - linkType: hard - -"@azure/core-client@npm:^1.3.0": - version: 1.7.3 - resolution: "@azure/core-client@npm:1.7.3" - dependencies: - "@azure/abort-controller": ^1.0.0 - "@azure/core-auth": ^1.4.0 - "@azure/core-rest-pipeline": ^1.9.1 - "@azure/core-tracing": ^1.0.0 - "@azure/core-util": ^1.0.0 - "@azure/logger": ^1.0.0 - tslib: ^2.2.0 - checksum: 155a188b75b2d5ea783d5fde50479337c41796736f0fced1576466c8251e429195c229f2aff0bf897761f15c19d8fd0deea9a54aab514bd3584e37140e3f0cdc + resolution: "@colors/colors@npm:1.5.0" + checksum: d64d5260bed1d5012ae3fc617d38d1afc0329fec05342f4e6b838f46998855ba56e0a73833f4a80fa8378c84810da254f76a8a19c39d038260dc06dc4e007425 languageName: node linkType: hard -"@azure/core-client@npm:^1.9.2": - version: 1.9.2 - resolution: "@azure/core-client@npm:1.9.2" - dependencies: - "@azure/abort-controller": ^2.0.0 - "@azure/core-auth": ^1.4.0 - "@azure/core-rest-pipeline": ^1.9.1 - "@azure/core-tracing": ^1.0.0 - "@azure/core-util": ^1.6.1 - "@azure/logger": ^1.0.0 - tslib: ^2.6.2 - checksum: 961b829dfda4f734a763e9480a2ea622a7031ba2da4126d0add6e351a9f73ddc5782bf2b766735d976b61da3857014e0a90223d1f85d1c68468747a7a56851c3 +"@couchbase/couchbase-darwin-arm64-napi@npm:4.4.2": + version: 4.4.2 + resolution: "@couchbase/couchbase-darwin-arm64-napi@npm:4.4.2" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@azure/core-http-compat@npm:^2.0.1": - version: 2.0.1 - resolution: "@azure/core-http-compat@npm:2.0.1" - dependencies: - "@azure/abort-controller": ^1.0.4 - "@azure/core-client": ^1.3.0 - "@azure/core-rest-pipeline": ^1.3.0 - checksum: 50749822a3d7cd67e3af0f030093395f9776fab16eef6245a43fb967030d5d8554b0b237376894dcda409e9f49c588035ec4868f11ac6181cbf37a26c6290b0d +"@couchbase/couchbase-darwin-x64-napi@npm:4.4.2": + version: 4.4.2 + resolution: "@couchbase/couchbase-darwin-x64-napi@npm:4.4.2" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@azure/core-http@npm:^3.0.0": - version: 3.0.2 - resolution: "@azure/core-http@npm:3.0.2" - dependencies: - "@azure/abort-controller": ^1.0.0 - "@azure/core-auth": ^1.3.0 - "@azure/core-tracing": 1.0.0-preview.13 - "@azure/core-util": ^1.1.1 - "@azure/logger": ^1.0.0 - "@types/node-fetch": ^2.5.0 - "@types/tunnel": ^0.0.3 - form-data: ^4.0.0 - node-fetch: ^2.6.7 - process: ^0.11.10 - tslib: ^2.2.0 - tunnel: ^0.0.6 - uuid: ^8.3.0 - xml2js: ^0.5.0 - checksum: 01b5a75e09533476dbb69c672dcd00d48298cf81db5015cd261c510c5be377176db8e3dc4809e6952459bfbe214f52f8a1ed84a116ac31b8a7388b2025098f66 +"@couchbase/couchbase-linux-arm64-napi@npm:4.4.2": + version: 4.4.2 + resolution: "@couchbase/couchbase-linux-arm64-napi@npm:4.4.2" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@azure/core-lro@npm:^2.2.0": - version: 2.5.3 - resolution: "@azure/core-lro@npm:2.5.3" - dependencies: - "@azure/abort-controller": ^1.0.0 - "@azure/core-util": ^1.2.0 - "@azure/logger": ^1.0.0 - tslib: ^2.2.0 - checksum: 443ae1884a6bc9edfeee1e62463b218a020f1be987ef755c13d5afe39803bbceb8ca9174bd516e1db9bc3f3762f71168167ea0ee9873c66e3d86a6667d5a0457 +"@couchbase/couchbase-linux-x64-napi@npm:4.4.2": + version: 4.4.2 + resolution: "@couchbase/couchbase-linux-x64-napi@npm:4.4.2" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@azure/core-paging@npm:^1.1.1": - version: 1.5.0 - resolution: "@azure/core-paging@npm:1.5.0" - dependencies: - tslib: ^2.2.0 - checksum: 156230f0fdf757a0353a2aac6d012d385ed88f8ab5bccf00eee27d8d75843e681674b2d10ed43309669f9cb93bf8d9d000232896593b6fcf399fa391442a59c5 +"@couchbase/couchbase-linuxmusl-arm64-napi@npm:4.4.2": + version: 4.4.2 + resolution: "@couchbase/couchbase-linuxmusl-arm64-napi@npm:4.4.2" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@azure/core-rest-pipeline@npm:^1.1.0, @azure/core-rest-pipeline@npm:^1.13.0, @azure/core-rest-pipeline@npm:^1.3.0, @azure/core-rest-pipeline@npm:^1.5.0, @azure/core-rest-pipeline@npm:^1.9.1": - version: 1.13.0 - resolution: "@azure/core-rest-pipeline@npm:1.13.0" - dependencies: - "@azure/abort-controller": ^1.1.0 - "@azure/core-auth": ^1.4.0 - "@azure/core-tracing": ^1.0.1 - "@azure/core-util": ^1.3.0 - "@azure/logger": ^1.0.0 - http-proxy-agent: ^5.0.0 - https-proxy-agent: ^5.0.0 - tslib: ^2.2.0 - checksum: 9fe889625756121ceff421805aa643fa6b29bf5fa3730111b0ec509aa08f84b04befd29532e9fa270a85435ed9d597aa777b96730968e425d1aedea256827e94 +"@couchbase/couchbase-linuxmusl-x64-napi@npm:4.4.2": + version: 4.4.2 + resolution: "@couchbase/couchbase-linuxmusl-x64-napi@npm:4.4.2" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@azure/core-rest-pipeline@npm:^1.15.1, @azure/core-rest-pipeline@npm:^1.17.0": - version: 1.18.0 - resolution: "@azure/core-rest-pipeline@npm:1.18.0" - dependencies: - "@azure/abort-controller": ^2.0.0 - "@azure/core-auth": ^1.8.0 - "@azure/core-tracing": ^1.0.1 - "@azure/core-util": ^1.11.0 - "@azure/logger": ^1.0.0 - http-proxy-agent: ^7.0.0 - https-proxy-agent: ^7.0.0 - tslib: ^2.6.2 - checksum: 4c8e6572938fd693494ec44477b58afa7c16aed7ea8ef061fcc0cf8a8e602d7ea07676f46b8c850d38e04e5ac4ab10888f88bce8ffac6db1bd3b77bf07a07f29 +"@couchbase/couchbase-win32-x64-napi@npm:4.4.2": + version: 4.4.2 + resolution: "@couchbase/couchbase-win32-x64-napi@npm:4.4.2" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@azure/core-sse@npm:^2.0.0": - version: 2.0.0 - resolution: "@azure/core-sse@npm:2.0.0" +"@crawlee/types@npm:^3.3.0": + version: 3.3.1 + resolution: "@crawlee/types@npm:3.3.1" dependencies: tslib: ^2.4.0 - checksum: e640c7e251fcf8b2cd2d8759eea71c07f8dbb9953a6deb9a28e79efab26deca7e561acddd6cd2770d7e641f4fb2479f802b03ab1deb0410c3993e1cf67ac74d0 + checksum: da8042b4876c88ad4e0b3f811851e1a861d3736f7e1de1610a745b54b752f140ed3c7ce4723339a22e4de1a9ef7ffc36ad6b82d334b7b7991394cd6934603a44 languageName: node linkType: hard -"@azure/core-tracing@npm:1.0.0-preview.13": - version: 1.0.0-preview.13 - resolution: "@azure/core-tracing@npm:1.0.0-preview.13" +"@dabh/diagnostics@npm:^2.0.2": + version: 2.0.3 + resolution: "@dabh/diagnostics@npm:2.0.3" dependencies: - "@opentelemetry/api": ^1.0.1 - tslib: ^2.2.0 - checksum: bc3ea8dce1fc6bb6e4cb2e82ec0c361b3e6f6e18e162f352eb347e6991c6461ebc249f5d1b36402cc0d295e2a6bcbaa68014445d7f4293c0792a698c430f145e + colorspace: 1.1.x + enabled: 2.0.x + kuler: ^2.0.0 + checksum: 4879600c55c8315a0fb85fbb19057bad1adc08f0a080a8cb4e2b63f723c379bfc4283b68123a2b078d367b327dd8df12fcb27464efe791addc0a48b9df6d79a1 languageName: node linkType: hard -"@azure/core-tracing@npm:^1.0.0, @azure/core-tracing@npm:^1.0.1": +"@datastax/astra-db-ts@npm:^1.0.1": version: 1.0.1 - resolution: "@azure/core-tracing@npm:1.0.1" + resolution: "@datastax/astra-db-ts@npm:1.0.1" dependencies: - tslib: ^2.2.0 - checksum: ae4309f8ab0b52c37f699594d58ee095782649f538bd6a0ee03e3fea042f55df7ad95c2e6dec22f5b8c3907e4bcf98d6ca98faaf480d446b73d41bbc1519d891 + bson-objectid: ^2.0.4 + fetch-h2: ^3.0.2 + object-hash: ^3.0.0 + typed-emitter: ^2.1.0 + uuidv7: ^0.6.3 + checksum: 23ad42dc978edc5bd473252ed690dd38e75be8451e32b1f0cd35c47003ec9b048a9cd8fcd0b6b0c58654fbdceba6c1e3e566bbf4e550342d2e76c471079b395a languageName: node linkType: hard -"@azure/core-tracing@npm:^1.1.1": - version: 1.2.0 - resolution: "@azure/core-tracing@npm:1.2.0" +"@discordjs/builders@npm:^1.7.0": + version: 1.7.0 + resolution: "@discordjs/builders@npm:1.7.0" dependencies: + "@discordjs/formatters": ^0.3.3 + "@discordjs/util": ^1.0.2 + "@sapphire/shapeshift": ^3.9.3 + discord-api-types: 0.37.61 + fast-deep-equal: ^3.1.3 + ts-mixer: ^6.0.3 tslib: ^2.6.2 - checksum: 202ebf411a3076bd2c48b7a4c1b63335f53be6dd97f7d53500e3191b7ed0fdad25de219f422e777fde824031fd5c67087654de0304a5c0cd67c38cdcab96117c + checksum: 837e7643fc8396e4914bbbfbbfa1232ab7109c931884e8df45cd7356944633590f710a18513d30a10de1b6686ed5166df702bde0c4511fb0cbcac897edd9e56a languageName: node linkType: hard -"@azure/core-util@npm:^1.0.0, @azure/core-util@npm:^1.1.0, @azure/core-util@npm:^1.3.0, @azure/core-util@npm:^1.4.0": - version: 1.6.1 - resolution: "@azure/core-util@npm:1.6.1" - dependencies: - "@azure/abort-controller": ^1.0.0 - tslib: ^2.2.0 - checksum: 1f8cd130993f161c98925070af863510cbcc79e0471864e4b16852afc2ee7413c9c7fabe72f20f3e521ee75c3cd7e3085661fdc8d5d0a643a6e1b1b7bf691ddd +"@discordjs/collection@npm:1.5.3": + version: 1.5.3 + resolution: "@discordjs/collection@npm:1.5.3" + checksum: fefed19bea0f69053d195f9d9dc8af07ca5d8c9b1064581e0aa14bda2b70e632b93c164d5ef3e4910f5442369612ff4eec8d52a700aec562510c19b223f67023 languageName: node linkType: hard -"@azure/core-util@npm:^1.1.1, @azure/core-util@npm:^1.2.0": - version: 1.3.2 - resolution: "@azure/core-util@npm:1.3.2" - dependencies: - "@azure/abort-controller": ^1.0.0 - tslib: ^2.2.0 - checksum: c26053a209ed99c5b31ec54bd456155a7e602fda0b680ba326063ee42427efe60042124fbf22701397647e822bee252f77fec449e8f8100c406b8ca7168c8359 +"@discordjs/collection@npm:^2.0.0": + version: 2.0.0 + resolution: "@discordjs/collection@npm:2.0.0" + checksum: c2d05fa2b9a27bb64e93e2836bbe44c835d21f85e28cd934f6e2a81fef423ab0415968cca9d066b83347539edc8ea9afa8075d80bd62594e39f09eb881052c49 languageName: node linkType: hard -"@azure/core-util@npm:^1.11.0, @azure/core-util@npm:^1.8.1": - version: 1.11.0 - resolution: "@azure/core-util@npm:1.11.0" +"@discordjs/formatters@npm:^0.3.3": + version: 0.3.3 + resolution: "@discordjs/formatters@npm:0.3.3" dependencies: - "@azure/abort-controller": ^2.0.0 - tslib: ^2.6.2 - checksum: 91e3ec329d9eddaa66be5efb1785dad68dcb48dd779fca36e39db041673230510158ff5ca9ccef9f19c3e4d8e9af29f66a367cfc31a7b94d2541f80ef94ec797 + discord-api-types: 0.37.61 + checksum: a844628094a6effa8ac4e4a4ea9082d5c89e6cae6bbd18e60abd410769e5ea18f64aa2db8623aa3c8c572084368f6c2e27cc2d72af640aff5e4ee7fc42132c60 languageName: node linkType: hard -"@azure/core-util@npm:^1.6.1": - version: 1.9.2 - resolution: "@azure/core-util@npm:1.9.2" +"@discordjs/rest@npm:^2.1.0": + version: 2.2.0 + resolution: "@discordjs/rest@npm:2.2.0" dependencies: - "@azure/abort-controller": ^2.0.0 + "@discordjs/collection": ^2.0.0 + "@discordjs/util": ^1.0.2 + "@sapphire/async-queue": ^1.5.0 + "@sapphire/snowflake": ^3.5.1 + "@vladfrangu/async_event_emitter": ^2.2.2 + discord-api-types: 0.37.61 + magic-bytes.js: ^1.5.0 tslib: ^2.6.2 - checksum: 63c7ab2bdd6e75e38af33e37c9844515c546ed3e8f88fb98926ec88287dfabb249b9fd156658d42bfccbaeb46369254e7cf53eb6ef789b9d88880585eaabb298 + undici: 5.27.2 + checksum: 29a14ecf3282ae3306883f1f6c870693d0ecacd080c5b66a72e31487a8070655807a80a8bf09bebea4f73e631439abc5121dfa38016ca0ccbe3f68c0f7ffc80e languageName: node linkType: hard -"@azure/cosmos@npm:^4.2.0": - version: 4.2.0 - resolution: "@azure/cosmos@npm:4.2.0" - dependencies: - "@azure/abort-controller": ^2.0.0 - "@azure/core-auth": ^1.7.1 - "@azure/core-rest-pipeline": ^1.15.1 - "@azure/core-tracing": ^1.1.1 - "@azure/core-util": ^1.8.1 - fast-json-stable-stringify: ^2.1.0 - jsbi: ^4.3.0 - priorityqueuejs: ^2.0.0 - semaphore: ^1.1.0 - tslib: ^2.6.2 - checksum: b571f5a99b12520a2128b8ed0eb61cd66c432e21f533e778cd54a508e89b8bd57e8e05eedc1dcfdb4417c91a675bdb63d6c1cfcd9a21895d444e51de80288f33 +"@discordjs/util@npm:^1.0.2": + version: 1.0.2 + resolution: "@discordjs/util@npm:1.0.2" + checksum: 320d7e125981001160d413ae56e76e60447dce102010b80e3b1b16d885be765df5ae2551aa79fdc4d435a82361ed72246b44251f0c1f7a8fef7056a4481d5609 languageName: node linkType: hard -"@azure/identity@npm:^4.2.1": - version: 4.4.1 - resolution: "@azure/identity@npm:4.4.1" +"@discordjs/ws@npm:^1.0.2": + version: 1.0.2 + resolution: "@discordjs/ws@npm:1.0.2" dependencies: - "@azure/abort-controller": ^1.0.0 - "@azure/core-auth": ^1.5.0 - "@azure/core-client": ^1.9.2 - "@azure/core-rest-pipeline": ^1.1.0 - "@azure/core-tracing": ^1.0.0 - "@azure/core-util": ^1.3.0 - "@azure/logger": ^1.0.0 - "@azure/msal-browser": ^3.14.0 - "@azure/msal-node": ^2.9.2 - events: ^3.0.0 - jws: ^4.0.0 - open: ^8.0.0 - stoppable: ^1.1.0 - tslib: ^2.2.0 - checksum: 8dba5a1e347b349eb999e46cce190dedef02c0a81a179d4c4bf67ea4407c9f44ace5eec08f1ac8c963f8723e1074d32a9878a0ae5d4d4a880b19389b5fb6e7a1 + "@discordjs/collection": ^2.0.0 + "@discordjs/rest": ^2.1.0 + "@discordjs/util": ^1.0.2 + "@sapphire/async-queue": ^1.5.0 + "@types/ws": ^8.5.9 + "@vladfrangu/async_event_emitter": ^2.2.2 + discord-api-types: 0.37.61 + tslib: ^2.6.2 + ws: ^8.14.2 + checksum: 2564d3ff00d04d7638955c8c9a9f6234c50168fbe8243140bc458dc9ffa39ad5063e7d5762cdce71bb8bcf70b6353c28b8531e40f54568706898e92bc8748590 languageName: node linkType: hard -"@azure/identity@npm:^4.5.0": - version: 4.5.0 - resolution: "@azure/identity@npm:4.5.0" - dependencies: - "@azure/abort-controller": ^2.0.0 - "@azure/core-auth": ^1.9.0 - "@azure/core-client": ^1.9.2 - "@azure/core-rest-pipeline": ^1.17.0 - "@azure/core-tracing": ^1.0.0 - "@azure/core-util": ^1.11.0 - "@azure/logger": ^1.0.0 - "@azure/msal-browser": ^3.26.1 - "@azure/msal-node": ^2.15.0 - events: ^3.0.0 - jws: ^4.0.0 - open: ^8.0.0 - stoppable: ^1.1.0 - tslib: ^2.2.0 - checksum: 07d15898f194a220376d8d9c0ee891c93c6da188e44e76810fb781bf3bb7424498a6c1fa5b92c5a4d31f62b7398953f8a5bcf0f0ed57ed72239ce1c4f594b355 +"@discoveryjs/json-ext@npm:0.5.7": + version: 0.5.7 + resolution: "@discoveryjs/json-ext@npm:0.5.7" + checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918 languageName: node linkType: hard -"@azure/logger@npm:^1.0.0, @azure/logger@npm:^1.0.3": - version: 1.0.4 - resolution: "@azure/logger@npm:1.0.4" - dependencies: - tslib: ^2.2.0 - checksum: 2c243d4c667bbc5cd3e60d4473d0f1169fcef2498a02138398af15547fe1b2870197bcb4c487327451488e4d71dee05244771d51328f03611e193b99fb9aa9af +"@docsearch/css@npm:3.5.2": + version: 3.5.2 + resolution: "@docsearch/css@npm:3.5.2" + checksum: d1d60dd230dd48f896755f21bd20b59583ba844212d7d336953ae48d389baaf868bdf83320fb734a4ed679c3f95b15d620cf3764cd538f6941cae239f8c9d35d languageName: node linkType: hard -"@azure/msal-browser@npm:^3.14.0": - version: 3.20.0 - resolution: "@azure/msal-browser@npm:3.20.0" +"@docsearch/react@npm:^3.1.1": + version: 3.5.2 + resolution: "@docsearch/react@npm:3.5.2" dependencies: - "@azure/msal-common": 14.14.0 - checksum: 237a041bbe898f46676ddc0e0a0cfb26c821efecc71de19168bd70e216da14f3e83bfad064e4c5e5491828ae3e096a2d46d58b5ba227b820fe716639f9d80f5c + "@algolia/autocomplete-core": 1.9.3 + "@algolia/autocomplete-preset-algolia": 1.9.3 + "@docsearch/css": 3.5.2 + algoliasearch: ^4.19.1 + peerDependencies: + "@types/react": ">= 16.8.0 < 19.0.0" + react: ">= 16.8.0 < 19.0.0" + react-dom: ">= 16.8.0 < 19.0.0" + search-insights: ">= 1 < 3" + peerDependenciesMeta: + "@types/react": + optional: true + react: + optional: true + react-dom: + optional: true + search-insights: + optional: true + checksum: 4b4584c2c73fc18cbd599047538896450974e134c2c74f19eb202db0ce8e6c3c49c6f65ed6ade61c796d476d3cbb55d6be58df62bc9568a0c72d88e42fca1d16 languageName: node linkType: hard -"@azure/msal-browser@npm:^3.26.1": - version: 3.27.0 - resolution: "@azure/msal-browser@npm:3.27.0" +"@docusaurus/core@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/core@npm:2.4.3" dependencies: - "@azure/msal-common": 14.16.0 - checksum: 22c7d087380405f87139a7dfa579b8a49a17d5493e748e1e609f5733bb7549dd5b8558d709f81500f8faa3feebbc2245f8978adc96dc2ce84c54825b37301465 - languageName: node - linkType: hard - -"@azure/msal-common@npm:14.14.0": - version: 14.14.0 - resolution: "@azure/msal-common@npm:14.14.0" - checksum: c77f51bdddb34da008786d7517713232dc69b7de9deec438ef463098e535ebdb8241ac04e9ddaee859d788dee71d683bf7ef0acab47781457d5c4ea561a8addf + "@babel/core": ^7.18.6 + "@babel/generator": ^7.18.7 + "@babel/plugin-syntax-dynamic-import": ^7.8.3 + "@babel/plugin-transform-runtime": ^7.18.6 + "@babel/preset-env": ^7.18.6 + "@babel/preset-react": ^7.18.6 + "@babel/preset-typescript": ^7.18.6 + "@babel/runtime": ^7.18.6 + "@babel/runtime-corejs3": ^7.18.6 + "@babel/traverse": ^7.18.8 + "@docusaurus/cssnano-preset": 2.4.3 + "@docusaurus/logger": 2.4.3 + "@docusaurus/mdx-loader": 2.4.3 + "@docusaurus/react-loadable": 5.5.2 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-common": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + "@slorber/static-site-generator-webpack-plugin": ^4.0.7 + "@svgr/webpack": ^6.2.1 + autoprefixer: ^10.4.7 + babel-loader: ^8.2.5 + babel-plugin-dynamic-import-node: ^2.3.3 + boxen: ^6.2.1 + chalk: ^4.1.2 + chokidar: ^3.5.3 + clean-css: ^5.3.0 + cli-table3: ^0.6.2 + combine-promises: ^1.1.0 + commander: ^5.1.0 + copy-webpack-plugin: ^11.0.0 + core-js: ^3.23.3 + css-loader: ^6.7.1 + css-minimizer-webpack-plugin: ^4.0.0 + cssnano: ^5.1.12 + del: ^6.1.1 + detect-port: ^1.3.0 + escape-html: ^1.0.3 + eta: ^2.0.0 + file-loader: ^6.2.0 + fs-extra: ^10.1.0 + html-minifier-terser: ^6.1.0 + html-tags: ^3.2.0 + html-webpack-plugin: ^5.5.0 + import-fresh: ^3.3.0 + leven: ^3.1.0 + lodash: ^4.17.21 + mini-css-extract-plugin: ^2.6.1 + postcss: ^8.4.14 + postcss-loader: ^7.0.0 + prompts: ^2.4.2 + react-dev-utils: ^12.0.1 + react-helmet-async: ^1.3.0 + react-loadable: "npm:@docusaurus/react-loadable@5.5.2" + react-loadable-ssr-addon-v5-slorber: ^1.0.1 + react-router: ^5.3.3 + react-router-config: ^5.1.1 + react-router-dom: ^5.3.3 + rtl-detect: ^1.0.4 + semver: ^7.3.7 + serve-handler: ^6.1.3 + shelljs: ^0.8.5 + terser-webpack-plugin: ^5.3.3 + tslib: ^2.4.0 + update-notifier: ^5.1.0 + url-loader: ^4.1.1 + wait-on: ^6.0.1 + webpack: ^5.73.0 + webpack-bundle-analyzer: ^4.5.0 + webpack-dev-server: ^4.9.3 + webpack-merge: ^5.8.0 + webpackbar: ^5.0.2 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + bin: + docusaurus: bin/docusaurus.mjs + checksum: cce7173ee131364857c16f70f94155ba0e1b044cde54045fb0cf62ad138f8d8ef093f5aba7c7617a9aa0545b3ee3930aec2e09f645daec015696968338963013 languageName: node linkType: hard -"@azure/msal-common@npm:14.16.0": - version: 14.16.0 - resolution: "@azure/msal-common@npm:14.16.0" - checksum: 01ec26e22243c5c435b97db085e96f5488733336c142b65a118ee6e523a548d3f17d013147810948cceaee7bdc339362bb9b2799fc9ea53c9d4c9aa10d8987e3 +"@docusaurus/cssnano-preset@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/cssnano-preset@npm:2.4.3" + dependencies: + cssnano-preset-advanced: ^5.3.8 + postcss: ^8.4.14 + postcss-sort-media-queries: ^4.2.1 + tslib: ^2.4.0 + checksum: f4a4c60b075c23541da90e00ae26af2e7eaadf20d783b37b9110a5e34599e4e91947425e33bad58ba71abee81c85cca99f5d7d76575f53fbaf73617b55e39c62 languageName: node linkType: hard -"@azure/msal-node@npm:^2.15.0": - version: 2.16.2 - resolution: "@azure/msal-node@npm:2.16.2" +"@docusaurus/logger@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/logger@npm:2.4.3" dependencies: - "@azure/msal-common": 14.16.0 - jsonwebtoken: ^9.0.0 - uuid: ^8.3.0 - checksum: 3676972cf7e1e91ea60773d7054275534239d209989da4c4c1aa790790ba309a2da58d6c593b6465feb1c7028772fce77757227e7ac9631b3a79e4f5a0a81aab + chalk: ^4.1.2 + tslib: ^2.4.0 + checksum: f026a8233aa317f16ce5b25c6785a431f319c52fc07a1b9e26f4b3df2197974e75830a16b6140314f8f4ef02dc19242106ec2ae1599740b26d516cc34c56102f languageName: node linkType: hard -"@azure/msal-node@npm:^2.9.2": - version: 2.12.0 - resolution: "@azure/msal-node@npm:2.12.0" +"@docusaurus/mdx-loader@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/mdx-loader@npm:2.4.3" dependencies: - "@azure/msal-common": 14.14.0 - jsonwebtoken: ^9.0.0 - uuid: ^8.3.0 - checksum: ad02d84ff0510594165672f0a39ba78f962631046051daf4de16ad4f783e0ee4c8e372aa99d17ac461c9d52bcceb1215c0d527443d97d5028c5d738029c4e71c + "@babel/parser": ^7.18.8 + "@babel/traverse": ^7.18.8 + "@docusaurus/logger": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@mdx-js/mdx": ^1.6.22 + escape-html: ^1.0.3 + file-loader: ^6.2.0 + fs-extra: ^10.1.0 + image-size: ^1.0.1 + mdast-util-to-string: ^2.0.0 + remark-emoji: ^2.2.0 + stringify-object: ^3.3.0 + tslib: ^2.4.0 + unified: ^9.2.2 + unist-util-visit: ^2.0.3 + url-loader: ^4.1.1 + webpack: ^5.73.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 5a774f7ea5f484e888b2bd1bf8b182279e3788afec779eb8920cf468b92ab8d83a1ae8be51925074241a4d1a38d989cfb366d2baf0f67ed6f063342395a7ca8e languageName: node linkType: hard -"@azure/openai@npm:1.0.0-beta.11": - version: 1.0.0-beta.11 - resolution: "@azure/openai@npm:1.0.0-beta.11" - dependencies: - "@azure-rest/core-client": ^1.1.7 - "@azure/core-auth": ^1.4.0 - "@azure/core-rest-pipeline": ^1.13.0 - "@azure/core-sse": ^2.0.0 - "@azure/core-util": ^1.4.0 - "@azure/logger": ^1.0.3 - tslib: ^2.4.0 - checksum: ce2a0f93bf952aa7b02e2f4f4e7b6a719f7d7a29a6ea1ba91b13582fc7e6fe0b9e0d07d575a273d290eb4f619aabcb599a20478055a2efc0a637c415bb945967 +"@docusaurus/module-type-aliases@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/module-type-aliases@npm:2.4.3" + dependencies: + "@docusaurus/react-loadable": 5.5.2 + "@docusaurus/types": 2.4.3 + "@types/history": ^4.7.11 + "@types/react": "*" + "@types/react-router-config": "*" + "@types/react-router-dom": "*" + react-helmet-async: "*" + react-loadable: "npm:@docusaurus/react-loadable@5.5.2" + peerDependencies: + react: "*" + react-dom: "*" + checksum: 22ce1a6a20acc35cdd2ec57e55f29e65dbe0fb3a46aaa8c033ec78bf04cd3087f0523c816c744ed311095512dd686c83e0a8619cc1a2a937c27cd54527739c38 languageName: node linkType: hard -"@azure/search-documents@npm:^12.0.0": - version: 12.0.0 - resolution: "@azure/search-documents@npm:12.0.0" +"@docusaurus/plugin-content-blog@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-content-blog@npm:2.4.3" dependencies: - "@azure/core-auth": ^1.3.0 - "@azure/core-client": ^1.3.0 - "@azure/core-http-compat": ^2.0.1 - "@azure/core-paging": ^1.1.1 - "@azure/core-rest-pipeline": ^1.3.0 - "@azure/core-tracing": ^1.0.0 - "@azure/logger": ^1.0.0 - events: ^3.0.0 - tslib: ^2.2.0 - checksum: b42c54b8e128196ed0740d6b4539307d989baaeecd4614ec28fbb7dc2fa175b35db9049968698851502abb4f26b2d2c8ca0c44ddb56089fd9f4bca5cef437002 + "@docusaurus/core": 2.4.3 + "@docusaurus/logger": 2.4.3 + "@docusaurus/mdx-loader": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-common": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + cheerio: ^1.0.0-rc.12 + feed: ^4.2.2 + fs-extra: ^10.1.0 + lodash: ^4.17.21 + reading-time: ^1.5.0 + tslib: ^2.4.0 + unist-util-visit: ^2.0.3 + utility-types: ^3.10.0 + webpack: ^5.73.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 9fd41331c609b9488eea363e617e3763a814c75f83eb1b858cef402a0f5b96f67a342e25ff8c333489e550eb4d379eae09a88b986a97c25170fe203662e2f1ae languageName: node linkType: hard -"@azure/storage-blob@npm:^12.15.0": - version: 12.15.0 - resolution: "@azure/storage-blob@npm:12.15.0" +"@docusaurus/plugin-content-docs@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-content-docs@npm:2.4.3" dependencies: - "@azure/abort-controller": ^1.0.0 - "@azure/core-http": ^3.0.0 - "@azure/core-lro": ^2.2.0 - "@azure/core-paging": ^1.1.1 - "@azure/core-tracing": 1.0.0-preview.13 - "@azure/logger": ^1.0.0 - events: ^3.0.0 - tslib: ^2.2.0 - checksum: fe5399e7107685f1e81bd782fbd10e11c6aec01141c63f24f138a985aa709da96e83fc5dd3295408b0609981b2fb71d2304935056692e4cf3833635157799769 + "@docusaurus/core": 2.4.3 + "@docusaurus/logger": 2.4.3 + "@docusaurus/mdx-loader": 2.4.3 + "@docusaurus/module-type-aliases": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + "@types/react-router-config": ^5.0.6 + combine-promises: ^1.1.0 + fs-extra: ^10.1.0 + import-fresh: ^3.3.0 + js-yaml: ^4.1.0 + lodash: ^4.17.21 + tslib: ^2.4.0 + utility-types: ^3.10.0 + webpack: ^5.73.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: bc01201f64721131eb84f264e51c7497b8034d2a3d99d762169f5dc456c3d8882acfa01fdbaa8fdc6e2e220479b36e0c9e8e17397bf887884589535bdeaeb4bb languageName: node linkType: hard -"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/code-frame@npm:7.18.6" +"@docusaurus/plugin-content-pages@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-content-pages@npm:2.4.3" dependencies: - "@babel/highlight": ^7.18.6 - checksum: 195e2be3172d7684bf95cff69ae3b7a15a9841ea9d27d3c843662d50cdd7d6470fd9c8e64be84d031117e4a4083486effba39f9aef6bbb2c89f7f21bcfba33ba + "@docusaurus/core": 2.4.3 + "@docusaurus/mdx-loader": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + fs-extra: ^10.1.0 + tslib: ^2.4.0 + webpack: ^5.73.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 00439c2e1a1f345cd549739db13a3610b6d9f7ffa6cf7507ad6ac1f3c8d24041947acc2a446be7edf1a613cf354a50d1133aa28ddf64a0eff6ed8a31bf1a542f languageName: node linkType: hard -"@babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.16.0, @babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.8.3": - version: 7.22.13 - resolution: "@babel/code-frame@npm:7.22.13" +"@docusaurus/plugin-debug@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-debug@npm:2.4.3" dependencies: - "@babel/highlight": ^7.22.13 - chalk: ^2.4.2 - checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058 + "@docusaurus/core": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils": 2.4.3 + fs-extra: ^10.1.0 + react-json-view: ^1.21.3 + tslib: ^2.4.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 88955828b72e463e04501cc6bedf802208e377ae0f4d72735625bcbb47918afc4f2588355c6914064cfdbe4945d3da6473ce76319aa1f66dd975b3b43c4c39b0 languageName: node linkType: hard -"@babel/code-frame@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/code-frame@npm:7.24.7" +"@docusaurus/plugin-google-analytics@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-google-analytics@npm:2.4.3" dependencies: - "@babel/highlight": ^7.24.7 - picocolors: ^1.0.0 - checksum: 830e62cd38775fdf84d612544251ce773d544a8e63df667728cc9e0126eeef14c6ebda79be0f0bc307e8318316b7f58c27ce86702e0a1f5c321d842eb38ffda4 + "@docusaurus/core": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + tslib: ^2.4.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 6e30de6b5c479493614a5552a295f07ffb9c83f3740a68c7d4dbac378b8288da7430f26cdc246d763855c6084ad86a6f87286e6c8b40f4817794bb1a04e109ea languageName: node linkType: hard -"@babel/compat-data@npm:^7.20.5": - version: 7.21.0 - resolution: "@babel/compat-data@npm:7.21.0" - checksum: dbf632c532f9c75ba0be7d1dc9f6cd3582501af52f10a6b90415d634ec5878735bd46064c91673b10317af94d4cc99c4da5bd9d955978cdccb7905fc33291e4d +"@docusaurus/plugin-google-gtag@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-google-gtag@npm:2.4.3" + dependencies: + "@docusaurus/core": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + tslib: ^2.4.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 4aaac4d262b3bb7fc3f16620c5329b90db92bf28361ced54f2945fc0e4669483e2f36b076332e0ee9d11b6233cd2c81ca35c953119bad42171e62571c1692d6a languageName: node linkType: hard -"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9, @babel/compat-data@npm:^7.23.2": - version: 7.23.2 - resolution: "@babel/compat-data@npm:7.23.2" - checksum: d8dc27437d40907b271161d4c88ffe72ccecb034c730deb1960a417b59a14d7c5ebca8cd80dd458a01cd396a7a329eb48cddcc3791b5a84da33d7f278f7bec6a +"@docusaurus/plugin-google-tag-manager@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-google-tag-manager@npm:2.4.3" + dependencies: + "@docusaurus/core": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + tslib: ^2.4.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: c3af89b4d41fab463d853cbfbe8f43d384f702dd09fd914fffcca01fdf94c282d1b98d762c9142fe21f6471f5dd643679e8d11344c95fdf6657aff0618c3c7a5 languageName: node linkType: hard -"@babel/compat-data@npm:^7.25.2": - version: 7.25.4 - resolution: "@babel/compat-data@npm:7.25.4" - checksum: b12a91d27c3731a4b0bdc9312a50b1911f41f7f728aaf0d4b32486e2257fd2cb2d3ea1a295e98449600c48f2c7883a3196ca77cda1cef7d97a10c2e83d037974 +"@docusaurus/plugin-sitemap@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/plugin-sitemap@npm:2.4.3" + dependencies: + "@docusaurus/core": 2.4.3 + "@docusaurus/logger": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-common": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + fs-extra: ^10.1.0 + sitemap: ^7.1.1 + tslib: ^2.4.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: cf96b9f0e32cefa58e37a4bc2f0a112ea657f06faf47b780ec2ba39d5e2daca6486a73f3b376c56ad3bb42f3f0c3f70a783f1ce1964b74e2ba273e6f439e439b languageName: node linkType: hard -"@babel/core@npm:7.12.9": - version: 7.12.9 - resolution: "@babel/core@npm:7.12.9" +"@docusaurus/preset-classic@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/preset-classic@npm:2.4.3" dependencies: - "@babel/code-frame": ^7.10.4 - "@babel/generator": ^7.12.5 - "@babel/helper-module-transforms": ^7.12.1 - "@babel/helpers": ^7.12.5 - "@babel/parser": ^7.12.7 - "@babel/template": ^7.12.7 - "@babel/traverse": ^7.12.9 - "@babel/types": ^7.12.7 - convert-source-map: ^1.7.0 - debug: ^4.1.0 - gensync: ^1.0.0-beta.1 - json5: ^2.1.2 - lodash: ^4.17.19 - resolve: ^1.3.2 - semver: ^5.4.1 - source-map: ^0.5.0 - checksum: 4d34eca4688214a4eb6bd5dde906b69a7824f17b931f52cd03628a8ac94d8fbe15565aebffdde106e974c8738cd64ac62c6a6060baa7139a06db1f18c4ff872d + "@docusaurus/core": 2.4.3 + "@docusaurus/plugin-content-blog": 2.4.3 + "@docusaurus/plugin-content-docs": 2.4.3 + "@docusaurus/plugin-content-pages": 2.4.3 + "@docusaurus/plugin-debug": 2.4.3 + "@docusaurus/plugin-google-analytics": 2.4.3 + "@docusaurus/plugin-google-gtag": 2.4.3 + "@docusaurus/plugin-google-tag-manager": 2.4.3 + "@docusaurus/plugin-sitemap": 2.4.3 + "@docusaurus/theme-classic": 2.4.3 + "@docusaurus/theme-common": 2.4.3 + "@docusaurus/theme-search-algolia": 2.4.3 + "@docusaurus/types": 2.4.3 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: a321badc44696adf4ab2d4a5d6c93f595e8c17988aec9609d325928a1d60f5e0205b23fe849b28ddaed24f7935829e86c402f6b761d6e65db4224270b9dd443c languageName: node linkType: hard -"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3": - version: 7.21.0 - resolution: "@babel/core@npm:7.21.0" +"@docusaurus/react-loadable@npm:5.5.2, react-loadable@npm:@docusaurus/react-loadable@5.5.2": + version: 5.5.2 + resolution: "@docusaurus/react-loadable@npm:5.5.2" dependencies: - "@ampproject/remapping": ^2.2.0 - "@babel/code-frame": ^7.18.6 - "@babel/generator": ^7.21.0 - "@babel/helper-compilation-targets": ^7.20.7 - "@babel/helper-module-transforms": ^7.21.0 - "@babel/helpers": ^7.21.0 - "@babel/parser": ^7.21.0 - "@babel/template": ^7.20.7 - "@babel/traverse": ^7.21.0 - "@babel/types": ^7.21.0 - convert-source-map: ^1.7.0 - debug: ^4.1.0 - gensync: ^1.0.0-beta.2 - json5: ^2.2.2 - semver: ^6.3.0 - checksum: 357f4dd3638861ceebf6d95ff49ad8b902065ee8b7b352621deed5666c2a6d702a48ca7254dba23ecae2a0afb67d20f90db7dd645c3b75e35e72ad9776c671aa + "@types/react": "*" + prop-types: ^15.6.2 + peerDependencies: + react: "*" + checksum: 930fb9e2936412a12461f210acdc154a433283921ca43ac3fc3b84cb6c12eb738b3a3719373022bf68004efeb1a928dbe36c467d7a1f86454ed6241576d936e7 languageName: node linkType: hard -"@babel/core@npm:^7.18.6, @babel/core@npm:^7.19.6": - version: 7.23.2 - resolution: "@babel/core@npm:7.23.2" +"@docusaurus/remark-plugin-npm2yarn@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/remark-plugin-npm2yarn@npm:2.4.3" dependencies: - "@ampproject/remapping": ^2.2.0 - "@babel/code-frame": ^7.22.13 - "@babel/generator": ^7.23.0 - "@babel/helper-compilation-targets": ^7.22.15 - "@babel/helper-module-transforms": ^7.23.0 - "@babel/helpers": ^7.23.2 - "@babel/parser": ^7.23.0 - "@babel/template": ^7.22.15 - "@babel/traverse": ^7.23.2 - "@babel/types": ^7.23.0 - convert-source-map: ^2.0.0 - debug: ^4.1.0 - gensync: ^1.0.0-beta.2 - json5: ^2.2.3 - semver: ^6.3.1 - checksum: 003897718ded16f3b75632d63cd49486bf67ff206cc7ebd1a10d49e2456f8d45740910d5ec7e42e3faf0deec7a2e96b1a02e766d19a67a8309053f0d4e57c0fe + npm-to-yarn: ^2.0.0 + tslib: ^2.4.1 + unist-util-visit: ^2.0.3 + checksum: 8bc17fbcfaac11ca3a8ff9ffabfb3cda0e37173e9ceee64dc8a18f87822f71a4dbef942355ed2ebf9a05e760514c60945fdd3ecf19bf579963884454faebe948 languageName: node linkType: hard -"@babel/core@npm:^7.23.9": - version: 7.25.2 - resolution: "@babel/core@npm:7.25.2" +"@docusaurus/theme-classic@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/theme-classic@npm:2.4.3" dependencies: - "@ampproject/remapping": ^2.2.0 - "@babel/code-frame": ^7.24.7 - "@babel/generator": ^7.25.0 - "@babel/helper-compilation-targets": ^7.25.2 - "@babel/helper-module-transforms": ^7.25.2 - "@babel/helpers": ^7.25.0 - "@babel/parser": ^7.25.0 - "@babel/template": ^7.25.0 - "@babel/traverse": ^7.25.2 - "@babel/types": ^7.25.2 - convert-source-map: ^2.0.0 - debug: ^4.1.0 - gensync: ^1.0.0-beta.2 - json5: ^2.2.3 - semver: ^6.3.1 - checksum: 9a1ef604a7eb62195f70f9370cec45472a08114e3934e3eaaedee8fd754edf0730e62347c7b4b5e67d743ce57b5bb8cf3b92459482ca94d06e06246ef021390a + "@docusaurus/core": 2.4.3 + "@docusaurus/mdx-loader": 2.4.3 + "@docusaurus/module-type-aliases": 2.4.3 + "@docusaurus/plugin-content-blog": 2.4.3 + "@docusaurus/plugin-content-docs": 2.4.3 + "@docusaurus/plugin-content-pages": 2.4.3 + "@docusaurus/theme-common": 2.4.3 + "@docusaurus/theme-translations": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-common": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + "@mdx-js/react": ^1.6.22 + clsx: ^1.2.1 + copy-text-to-clipboard: ^3.0.1 + infima: 0.2.0-alpha.43 + lodash: ^4.17.21 + nprogress: ^0.2.0 + postcss: ^8.4.14 + prism-react-renderer: ^1.3.5 + prismjs: ^1.28.0 + react-router-dom: ^5.3.3 + rtlcss: ^3.5.0 + tslib: ^2.4.0 + utility-types: ^3.10.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 215b7fa416f40ce68773265a168af47fa770583ebe33ec7b34c7e082dfe7c79252b589a6b26532cb0ab7dd089611a9cd0e20c94df097be320a227b98e3b3fbb8 languageName: node linkType: hard -"@babel/eslint-parser@npm:^7.18.2": - version: 7.22.15 - resolution: "@babel/eslint-parser@npm:7.22.15" +"@docusaurus/theme-common@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/theme-common@npm:2.4.3" dependencies: - "@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1 - eslint-visitor-keys: ^2.1.0 - semver: ^6.3.1 + "@docusaurus/mdx-loader": 2.4.3 + "@docusaurus/module-type-aliases": 2.4.3 + "@docusaurus/plugin-content-blog": 2.4.3 + "@docusaurus/plugin-content-docs": 2.4.3 + "@docusaurus/plugin-content-pages": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-common": 2.4.3 + "@types/history": ^4.7.11 + "@types/react": "*" + "@types/react-router-config": "*" + clsx: ^1.2.1 + parse-numeric-range: ^1.3.0 + prism-react-renderer: ^1.3.5 + tslib: ^2.4.0 + use-sync-external-store: ^1.2.0 + utility-types: ^3.10.0 peerDependencies: - "@babel/core": ^7.11.0 - eslint: ^7.5.0 || ^8.0.0 - checksum: efdc749164a40de1b68e3ed395f441dfb7864c85d0a2ee3e4bc4f06dd0b7f675acb9be97cdc9025b88b3e80d38749a2b30e392ce7f6a79313c3aaf82ba8ccd68 + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 76817f548705542124d708c804e724674ec9bf996a5cb2a5c9a2919416367567cca4a3fa6055589990c339f6e1fb9d3944e25ed30b79fabe191db00d6ef986ca languageName: node linkType: hard -"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.18.7, @babel/generator@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/generator@npm:7.23.0" +"@docusaurus/theme-mermaid@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/theme-mermaid@npm:2.4.3" dependencies: - "@babel/types": ^7.23.0 - "@jridgewell/gen-mapping": ^0.3.2 - "@jridgewell/trace-mapping": ^0.3.17 - jsesc: ^2.5.1 - checksum: 8efe24adad34300f1f8ea2add420b28171a646edc70f2a1b3e1683842f23b8b7ffa7e35ef0119294e1901f45bfea5b3dc70abe1f10a1917ccdfb41bed69be5f1 + "@docusaurus/core": 2.4.3 + "@docusaurus/module-type-aliases": 2.4.3 + "@docusaurus/theme-common": 2.4.3 + "@docusaurus/types": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + "@mdx-js/react": ^1.6.22 + mermaid: ^9.2.2 + tslib: ^2.4.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 63b2eafaf929e3266d91b8c38bfa0aa9e4a6f625576d4c3c220426aaab3118185b2ed0d74fa359273e69c9f41dea3267d8ff77646acbcd1e1c3d392d20d8f77a languageName: node linkType: hard -"@babel/generator@npm:^7.21.0, @babel/generator@npm:^7.21.1, @babel/generator@npm:^7.7.2": - version: 7.21.1 - resolution: "@babel/generator@npm:7.21.1" +"@docusaurus/theme-search-algolia@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/theme-search-algolia@npm:2.4.3" dependencies: - "@babel/types": ^7.21.0 - "@jridgewell/gen-mapping": ^0.3.2 - "@jridgewell/trace-mapping": ^0.3.17 - jsesc: ^2.5.1 - checksum: 69085a211ff91a7a608ee3f86e6fcb9cf5e724b756d792a713b0c328a671cd3e423e1ef1b12533f366baba0616caffe0a7ba9d328727eab484de5961badbef00 + "@docsearch/react": ^3.1.1 + "@docusaurus/core": 2.4.3 + "@docusaurus/logger": 2.4.3 + "@docusaurus/plugin-content-docs": 2.4.3 + "@docusaurus/theme-common": 2.4.3 + "@docusaurus/theme-translations": 2.4.3 + "@docusaurus/utils": 2.4.3 + "@docusaurus/utils-validation": 2.4.3 + algoliasearch: ^4.13.1 + algoliasearch-helper: ^3.10.0 + clsx: ^1.2.1 + eta: ^2.0.0 + fs-extra: ^10.1.0 + lodash: ^4.17.21 + tslib: ^2.4.0 + utility-types: ^3.10.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: 665d244c25bff21dd45c983c9b85f9827d2dd58945b802d645370b5e7092820532faf488c0bc0ce88e8fc0088c7f56eb9abb96589cf3857372c1b61bba6cbed7 languageName: node linkType: hard -"@babel/generator@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/generator@npm:7.24.7" +"@docusaurus/theme-translations@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/theme-translations@npm:2.4.3" dependencies: - "@babel/types": ^7.24.7 - "@jridgewell/gen-mapping": ^0.3.5 - "@jridgewell/trace-mapping": ^0.3.25 - jsesc: ^2.5.1 - checksum: 0ff31a73b15429f1287e4d57b439bba4a266f8c673bb445fe313b82f6d110f586776997eb723a777cd7adad9d340edd162aea4973a90112c5d0cfcaf6686844b + fs-extra: ^10.1.0 + tslib: ^2.4.0 + checksum: 8424583a130b0d32b6adf578dc5daeefaad199019c8a6a23fbd67577209be64923cde59d423ea9d41d6e7cfc2318e7fa6a17a665e8ae1c871ce0880525f9b8fd languageName: node linkType: hard -"@babel/generator@npm:^7.25.0, @babel/generator@npm:^7.25.6": - version: 7.25.6 - resolution: "@babel/generator@npm:7.25.6" +"@docusaurus/types@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/types@npm:2.4.3" dependencies: - "@babel/types": ^7.25.6 - "@jridgewell/gen-mapping": ^0.3.5 - "@jridgewell/trace-mapping": ^0.3.25 - jsesc: ^2.5.1 - checksum: b55975cd664f5602304d868bb34f4ee3bed6f5c7ce8132cd92ff27a46a53a119def28a182d91992e86f75db904f63094a81247703c4dc96e4db0c03fd04bcd68 + "@types/history": ^4.7.11 + "@types/react": "*" + commander: ^5.1.0 + joi: ^17.6.0 + react-helmet-async: ^1.3.0 + utility-types: ^3.10.0 + webpack: ^5.73.0 + webpack-merge: ^5.8.0 + peerDependencies: + react: ^16.8.4 || ^17.0.0 + react-dom: ^16.8.4 || ^17.0.0 + checksum: c123c45630e885b588f808baa06a97f8408a3381906f65cb92ae75732aedfca6ab2cada94f969c08e043b885b95298616440326259b789010e0986cbcd7a960b languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-annotate-as-pure@npm:7.22.5" +"@docusaurus/utils-common@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/utils-common@npm:2.4.3" dependencies: - "@babel/types": ^7.22.5 - checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d + tslib: ^2.4.0 + peerDependencies: + "@docusaurus/types": "*" + peerDependenciesMeta: + "@docusaurus/types": + optional: true + checksum: 1ae315d8d8ce7a0163a698ffdca55b734d21f336512138c128bc0fa2a8d224edbaad0c8dbd7a3de2e8ef734dc2656c505d09066dee4fc84819d153593abb8984 languageName: node linkType: hard -"@babel/helper-annotate-as-pure@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-annotate-as-pure@npm:7.24.7" +"@docusaurus/utils-validation@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/utils-validation@npm:2.4.3" dependencies: - "@babel/types": ^7.24.7 - checksum: 6178566099a6a0657db7a7fa601a54fb4731ca0b8614fbdccfd8e523c210c13963649bc8fdfd53ce7dd14d05e3dda2fb22dea5b30113c488b9eb1a906d60212e + "@docusaurus/logger": 2.4.3 + "@docusaurus/utils": 2.4.3 + joi: ^17.6.0 + js-yaml: ^4.1.0 + tslib: ^2.4.0 + checksum: d3472b3f7a0a029c2cef1f00bc9db403d5f7e74e2091eccbc45d06f5776a84fd73bd1a18cf3a8a3cc0348ce49f753a1300deac670c2a82c56070cc40ca9df06e languageName: node linkType: hard -"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15" +"@docusaurus/utils@npm:2.4.3": + version: 2.4.3 + resolution: "@docusaurus/utils@npm:2.4.3" dependencies: - "@babel/types": ^7.22.15 - checksum: 639c697a1c729f9fafa2dd4c9af2e18568190299b5907bd4c2d0bc818fcbd1e83ffeecc2af24327a7faa7ac4c34edd9d7940510a5e66296c19bad17001cf5c7a - languageName: node - linkType: hard - -"@babel/helper-compilation-targets@npm:^7.20.7": - version: 7.20.7 - resolution: "@babel/helper-compilation-targets@npm:7.20.7" - dependencies: - "@babel/compat-data": ^7.20.5 - "@babel/helper-validator-option": ^7.18.6 - browserslist: ^4.21.3 - lru-cache: ^5.1.1 - semver: ^6.3.0 + "@docusaurus/logger": 2.4.3 + "@svgr/webpack": ^6.2.1 + escape-string-regexp: ^4.0.0 + file-loader: ^6.2.0 + fs-extra: ^10.1.0 + github-slugger: ^1.4.0 + globby: ^11.1.0 + gray-matter: ^4.0.3 + js-yaml: ^4.1.0 + lodash: ^4.17.21 + micromatch: ^4.0.5 + resolve-pathname: ^3.0.0 + shelljs: ^0.8.5 + tslib: ^2.4.0 + url-loader: ^4.1.1 + webpack: ^5.73.0 peerDependencies: - "@babel/core": ^7.0.0 - checksum: 8c32c873ba86e2e1805b30e0807abd07188acbe00ebb97576f0b09061cc65007f1312b589eccb4349c5a8c7f8bb9f2ab199d41da7030bf103d9f347dcd3a3cf4 + "@docusaurus/types": "*" + peerDependenciesMeta: + "@docusaurus/types": + optional: true + checksum: dd1aa7688d1a4b2775e13a91d528608ceab33c57a921404d9a989867c31c8ef17fe3892e4f5680dfb4a783da7b9973e2077e907ff4ac172927433e606e8fa9b9 languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.5, @babel/helper-compilation-targets@npm:^7.22.6": - version: 7.22.15 - resolution: "@babel/helper-compilation-targets@npm:7.22.15" +"@elastic/elasticsearch@npm:^8.4.0": + version: 8.8.1 + resolution: "@elastic/elasticsearch@npm:8.8.1" dependencies: - "@babel/compat-data": ^7.22.9 - "@babel/helper-validator-option": ^7.22.15 - browserslist: ^4.21.9 - lru-cache: ^5.1.1 - semver: ^6.3.1 - checksum: ce85196769e091ae54dd39e4a80c2a9df1793da8588e335c383d536d54f06baf648d0a08fc873044f226398c4ded15c4ae9120ee18e7dfd7c639a68e3cdc9980 + "@elastic/transport": ^8.3.2 + tslib: ^2.4.0 + checksum: 38b0651d56f1b6b0f9bbed9fb874a337f466c4697dfb0ea37d3110bdc00fdb86b1cc58cdf03769aa2fd84076448877c33234069ed1cbd4a3906e66e18c47df5a languageName: node linkType: hard -"@babel/helper-compilation-targets@npm:^7.25.2": - version: 7.25.2 - resolution: "@babel/helper-compilation-targets@npm:7.25.2" +"@elastic/transport@npm:^8.3.2": + version: 8.3.2 + resolution: "@elastic/transport@npm:8.3.2" dependencies: - "@babel/compat-data": ^7.25.2 - "@babel/helper-validator-option": ^7.24.8 - browserslist: ^4.23.1 - lru-cache: ^5.1.1 - semver: ^6.3.1 - checksum: aed33c5496cb9db4b5e2d44e26bf8bc474074cc7f7bb5ebe1d4a20fdeb362cb3ba9e1596ca18c7484bcd6e5c3a155ab975e420d520c0ae60df81f9de04d0fd16 + debug: ^4.3.4 + hpagent: ^1.0.0 + ms: ^2.1.3 + secure-json-parse: ^2.4.0 + tslib: ^2.4.0 + undici: ^5.22.1 + checksum: 51eb19723b95b9772b90031223d1af275f1aad0611161b84da57c5e374fa1bfce1c1828870ee9b7afe9bf81de64e4a2f8ed6878875f877b71bc53d2b435fa78d languageName: node linkType: hard -"@babel/helper-create-class-features-plugin@npm:^7.22.11, @babel/helper-create-class-features-plugin@npm:^7.22.15, @babel/helper-create-class-features-plugin@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/helper-create-class-features-plugin@npm:7.22.15" +"@emnapi/runtime@npm:^1.2.0": + version: 1.3.1 + resolution: "@emnapi/runtime@npm:1.3.1" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-environment-visitor": ^7.22.5 - "@babel/helper-function-name": ^7.22.5 - "@babel/helper-member-expression-to-functions": ^7.22.15 - "@babel/helper-optimise-call-expression": ^7.22.5 - "@babel/helper-replace-supers": ^7.22.9 - "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 - "@babel/helper-split-export-declaration": ^7.22.6 - semver: ^6.3.1 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 52c500d8d164abb3a360b1b7c4b8fff77bc4a5920d3a2b41ae6e1d30617b0dc0b972c1f5db35b1752007e04a748908b4a99bc872b73549ae837e87dcdde005a3 + tslib: ^2.4.0 + checksum: 9a16ae7905a9c0e8956cf1854ef74e5087fbf36739abdba7aa6b308485aafdc993da07c19d7af104cd5f8e425121120852851bb3a0f78e2160e420a36d47f42f languageName: node linkType: hard -"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15" +"@esbuild-kit/cjs-loader@npm:^2.4.2": + version: 2.4.2 + resolution: "@esbuild-kit/cjs-loader@npm:2.4.2" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - regexpu-core: ^5.3.1 - semver: ^6.3.1 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 0243b8d4854f1dc8861b1029a46d3f6393ad72f366a5a08e36a4648aa682044f06da4c6e87a456260e1e1b33c999f898ba591a0760842c1387bcc93fbf2151a6 + "@esbuild-kit/core-utils": ^3.0.0 + get-tsconfig: ^4.4.0 + checksum: e346e339bfc7eff5c52c270fd0ec06a7f2341b624adfb69f84b7d83f119c35070420906f2761a0b4604e0a0ec90e35eaf12544585476c428ed6d6ee3b250c0fe languageName: node linkType: hard -"@babel/helper-define-polyfill-provider@npm:^0.4.3": - version: 0.4.3 - resolution: "@babel/helper-define-polyfill-provider@npm:0.4.3" +"@esbuild-kit/core-utils@npm:^3.0.0": + version: 3.1.0 + resolution: "@esbuild-kit/core-utils@npm:3.1.0" dependencies: - "@babel/helper-compilation-targets": ^7.22.6 - "@babel/helper-plugin-utils": ^7.22.5 - debug: ^4.1.1 - lodash.debounce: ^4.0.8 - resolve: ^1.14.2 - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - checksum: 5d21e3f47b320e4b5b644195ec405e7ebc3739e48e65899efc808c5fa9c3bf5b06ce0d8ff5246ca99d1411e368f4557bc66730196c5781a5c4e986ee703bee79 + esbuild: ~0.17.6 + source-map-support: ^0.5.21 + checksum: d54fd5adb3ce6784d84bb025ad54ddcfbab99267071a7f65298e547f56696f0b9d0dba96c535f9678a30d4887ec71cd445fdd277d65fbec1f3b504f6808f693e languageName: node linkType: hard -"@babel/helper-environment-visitor@npm:^7.18.9": - version: 7.18.9 - resolution: "@babel/helper-environment-visitor@npm:7.18.9" - checksum: b25101f6162ddca2d12da73942c08ad203d7668e06663df685634a8fde54a98bc015f6f62938e8554457a592a024108d45b8f3e651fd6dcdb877275b73cc4420 +"@esbuild-kit/esm-loader@npm:^2.5.5": + version: 2.5.5 + resolution: "@esbuild-kit/esm-loader@npm:2.5.5" + dependencies: + "@esbuild-kit/core-utils": ^3.0.0 + get-tsconfig: ^4.4.0 + checksum: 9d4a03ffc937fbec75a8456c3d45d7cdb1a65768416791a5720081753502bc9f485ba27942a46f564b12483b140a8a46c12433a4496430d93e4513e430484ec7 languageName: node linkType: hard -"@babel/helper-environment-visitor@npm:^7.22.20, @babel/helper-environment-visitor@npm:^7.22.5": - version: 7.22.20 - resolution: "@babel/helper-environment-visitor@npm:7.22.20" - checksum: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69 +"@esbuild/aix-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/aix-ppc64@npm:0.21.5" + conditions: os=aix & cpu=ppc64 languageName: node linkType: hard -"@babel/helper-environment-visitor@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-environment-visitor@npm:7.24.7" - dependencies: - "@babel/types": ^7.24.7 - checksum: 079d86e65701b29ebc10baf6ed548d17c19b808a07aa6885cc141b690a78581b180ee92b580d755361dc3b16adf975b2d2058b8ce6c86675fcaf43cf22f2f7c6 +"@esbuild/android-arm64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/android-arm64@npm:0.17.11" + conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.21.0": - version: 7.21.0 - resolution: "@babel/helper-function-name@npm:7.21.0" - dependencies: - "@babel/template": ^7.20.7 - "@babel/types": ^7.21.0 - checksum: d63e63c3e0e3e8b3138fa47b0cd321148a300ef12b8ee951196994dcd2a492cc708aeda94c2c53759a5c9177fffaac0fd8778791286746f72a000976968daf4e +"@esbuild/android-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/android-arm64@npm:0.17.19" + conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.22.5, @babel/helper-function-name@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/helper-function-name@npm:7.23.0" - dependencies: - "@babel/template": ^7.22.15 - "@babel/types": ^7.23.0 - checksum: e44542257b2d4634a1f979244eb2a4ad8e6d75eb6761b4cfceb56b562f7db150d134bc538c8e6adca3783e3bc31be949071527aa8e3aab7867d1ad2d84a26e10 +"@esbuild/android-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm64@npm:0.21.5" + conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@babel/helper-function-name@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-function-name@npm:7.24.7" - dependencies: - "@babel/template": ^7.24.7 - "@babel/types": ^7.24.7 - checksum: 142ee08922074dfdc0ff358e09ef9f07adf3671ab6eef4fca74dcf7a551f1a43717e7efa358c9e28d7eea84c28d7f177b7a58c70452fc312ae3b1893c5dab2a4 +"@esbuild/android-arm@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/android-arm@npm:0.17.11" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-hoist-variables@npm:7.18.6" - dependencies: - "@babel/types": ^7.18.6 - checksum: fd9c35bb435fda802bf9ff7b6f2df06308a21277c6dec2120a35b09f9de68f68a33972e2c15505c1a1a04b36ec64c9ace97d4a9e26d6097b76b4396b7c5fa20f +"@esbuild/android-arm@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/android-arm@npm:0.17.19" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-hoist-variables@npm:7.22.5" - dependencies: - "@babel/types": ^7.22.5 - checksum: 394ca191b4ac908a76e7c50ab52102669efe3a1c277033e49467913c7ed6f7c64d7eacbeabf3bed39ea1f41731e22993f763b1edce0f74ff8563fd1f380d92cc +"@esbuild/android-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-arm@npm:0.21.5" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@babel/helper-hoist-variables@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-hoist-variables@npm:7.24.7" - dependencies: - "@babel/types": ^7.24.7 - checksum: 6cfdcf2289cd12185dcdbdf2435fa8d3447b797ac75851166de9fc8503e2fd0021db6baf8dfbecad3753e582c08e6a3f805c8d00cbed756060a877d705bd8d8d +"@esbuild/android-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/android-x64@npm:0.17.11" + conditions: os=android & cpu=x64 languageName: node linkType: hard -"@babel/helper-member-expression-to-functions@npm:^7.22.15": - version: 7.23.0 - resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0" - dependencies: - "@babel/types": ^7.23.0 - checksum: 494659361370c979ada711ca685e2efe9460683c36db1b283b446122596602c901e291e09f2f980ecedfe6e0f2bd5386cb59768285446530df10c14df1024e75 +"@esbuild/android-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/android-x64@npm:0.17.19" + conditions: os=android & cpu=x64 languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-module-imports@npm:7.18.6" - dependencies: - "@babel/types": ^7.18.6 - checksum: f393f8a3b3304b1b7a288a38c10989de754f01d29caf62ce7c4e5835daf0a27b81f3ac687d9d2780d39685aae7b55267324b512150e7b2be967b0c493b6a1def +"@esbuild/android-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/android-x64@npm:0.21.5" + conditions: os=android & cpu=x64 languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.22.15, @babel/helper-module-imports@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/helper-module-imports@npm:7.22.15" - dependencies: - "@babel/types": ^7.22.15 - checksum: ecd7e457df0a46f889228f943ef9b4a47d485d82e030676767e6a2fdcbdaa63594d8124d4b55fd160b41c201025aec01fc27580352b1c87a37c9c6f33d116702 +"@esbuild/darwin-arm64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/darwin-arm64@npm:0.17.11" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@babel/helper-module-imports@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-module-imports@npm:7.24.7" - dependencies: - "@babel/traverse": ^7.24.7 - "@babel/types": ^7.24.7 - checksum: 8ac15d96d262b8940bc469052a048e06430bba1296369be695fabdf6799f201dd0b00151762b56012a218464e706bc033f27c07f6cec20c6f8f5fd6543c67054 +"@esbuild/darwin-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/darwin-arm64@npm:0.17.19" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.22.5, @babel/helper-module-transforms@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/helper-module-transforms@npm:7.23.0" - dependencies: - "@babel/helper-environment-visitor": ^7.22.20 - "@babel/helper-module-imports": ^7.22.15 - "@babel/helper-simple-access": ^7.22.5 - "@babel/helper-split-export-declaration": ^7.22.6 - "@babel/helper-validator-identifier": ^7.22.20 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 6e2afffb058cf3f8ce92f5116f710dda4341c81cfcd872f9a0197ea594f7ce0ab3cb940b0590af2fe99e60d2e5448bfba6bca8156ed70a2ed4be2adc8586c891 +"@esbuild/darwin-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-arm64@npm:0.21.5" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.21.0": - version: 7.21.2 - resolution: "@babel/helper-module-transforms@npm:7.21.2" - dependencies: - "@babel/helper-environment-visitor": ^7.18.9 - "@babel/helper-module-imports": ^7.18.6 - "@babel/helper-simple-access": ^7.20.2 - "@babel/helper-split-export-declaration": ^7.18.6 - "@babel/helper-validator-identifier": ^7.19.1 - "@babel/template": ^7.20.7 - "@babel/traverse": ^7.21.2 - "@babel/types": ^7.21.2 - checksum: 8a1c129a4f90bdf97d8b6e7861732c9580f48f877aaaafbc376ce2482febebcb8daaa1de8bc91676d12886487603f8c62a44f9e90ee76d6cac7f9225b26a49e1 +"@esbuild/darwin-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/darwin-x64@npm:0.17.11" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@babel/helper-module-transforms@npm:^7.25.2": - version: 7.25.2 - resolution: "@babel/helper-module-transforms@npm:7.25.2" - dependencies: - "@babel/helper-module-imports": ^7.24.7 - "@babel/helper-simple-access": ^7.24.7 - "@babel/helper-validator-identifier": ^7.24.7 - "@babel/traverse": ^7.25.2 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 282d4e3308df6746289e46e9c39a0870819630af5f84d632559171e4fae6045684d771a65f62df3d569e88ccf81dc2def78b8338a449ae3a94bb421aa14fc367 +"@esbuild/darwin-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/darwin-x64@npm:0.17.19" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@babel/helper-optimise-call-expression@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-optimise-call-expression@npm:7.22.5" - dependencies: - "@babel/types": ^7.22.5 - checksum: c70ef6cc6b6ed32eeeec4482127e8be5451d0e5282d5495d5d569d39eb04d7f1d66ec99b327f45d1d5842a9ad8c22d48567e93fc502003a47de78d122e355f7c +"@esbuild/darwin-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/darwin-x64@npm:0.21.5" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:7.10.4": - version: 7.10.4 - resolution: "@babel/helper-plugin-utils@npm:7.10.4" - checksum: 639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41 +"@esbuild/freebsd-arm64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/freebsd-arm64@npm:0.17.11" + conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.19.0, @babel/helper-plugin-utils@npm:^7.8.0": - version: 7.20.2 - resolution: "@babel/helper-plugin-utils@npm:7.20.2" - checksum: f6cae53b7fdb1bf3abd50fa61b10b4470985b400cc794d92635da1e7077bb19729f626adc0741b69403d9b6e411cddddb9c0157a709cc7c4eeb41e663be5d74b +"@esbuild/freebsd-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/freebsd-arm64@npm:0.17.19" + conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.22.5, @babel/helper-plugin-utils@npm:^7.8.3": - version: 7.22.5 - resolution: "@babel/helper-plugin-utils@npm:7.22.5" - checksum: c0fc7227076b6041acd2f0e818145d2e8c41968cc52fb5ca70eed48e21b8fe6dd88a0a91cbddf4951e33647336eb5ae184747ca706817ca3bef5e9e905151ff5 +"@esbuild/freebsd-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-arm64@npm:0.21.5" + conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@babel/helper-plugin-utils@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-plugin-utils@npm:7.24.7" - checksum: 81f2a15751d892e4a8fce25390f973363a5b27596167861d2d6eab0f61856eb2ba389b031a9f19f669c0bd4dd601185828d3cebafd25431be7a1696f2ce3ef68 +"@esbuild/freebsd-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/freebsd-x64@npm:0.17.11" + conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@babel/helper-remap-async-to-generator@npm:^7.22.20, @babel/helper-remap-async-to-generator@npm:^7.22.5": - version: 7.22.20 - resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20" - dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-environment-visitor": ^7.22.20 - "@babel/helper-wrap-function": ^7.22.20 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 2fe6300a6f1b58211dffa0aed1b45d4958506d096543663dba83bd9251fe8d670fa909143a65b45e72acb49e7e20fbdb73eae315d9ddaced467948c3329986e7 +"@esbuild/freebsd-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/freebsd-x64@npm:0.17.19" + conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@babel/helper-replace-supers@npm:^7.22.5, @babel/helper-replace-supers@npm:^7.22.9": - version: 7.22.20 - resolution: "@babel/helper-replace-supers@npm:7.22.20" - dependencies: - "@babel/helper-environment-visitor": ^7.22.20 - "@babel/helper-member-expression-to-functions": ^7.22.15 - "@babel/helper-optimise-call-expression": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: a0008332e24daedea2e9498733e3c39b389d6d4512637e000f96f62b797e702ee24a407ccbcd7a236a551590a38f31282829a8ef35c50a3c0457d88218cae639 +"@esbuild/freebsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/freebsd-x64@npm:0.21.5" + conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.20.2": - version: 7.20.2 - resolution: "@babel/helper-simple-access@npm:7.20.2" - dependencies: - "@babel/types": ^7.20.2 - checksum: ad1e96ee2e5f654ffee2369a586e5e8d2722bf2d8b028a121b4c33ebae47253f64d420157b9f0a8927aea3a9e0f18c0103e74fdd531815cf3650a0a4adca11a1 +"@esbuild/linux-arm64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-arm64@npm:0.17.11" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-simple-access@npm:7.22.5" - dependencies: - "@babel/types": ^7.22.5 - checksum: fe9686714caf7d70aedb46c3cce090f8b915b206e09225f1e4dbc416786c2fdbbee40b38b23c268b7ccef749dd2db35f255338fb4f2444429874d900dede5ad2 +"@esbuild/linux-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-arm64@npm:0.17.19" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@babel/helper-simple-access@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-simple-access@npm:7.24.7" - dependencies: - "@babel/traverse": ^7.24.7 - "@babel/types": ^7.24.7 - checksum: ddbf55f9dea1900213f2a1a8500fabfd21c5a20f44dcfa957e4b0d8638c730f88751c77f678644f754f1a1dc73f4eb8b766c300deb45a9daad000e4247957819 +"@esbuild/linux-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm64@npm:0.21.5" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5" - dependencies: - "@babel/types": ^7.22.5 - checksum: 1012ef2295eb12dc073f2b9edf3425661e9b8432a3387e62a8bc27c42963f1f216ab3124228015c748770b2257b4f1fda882ca8fa34c0bf485e929ae5bc45244 +"@esbuild/linux-arm@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-arm@npm:0.17.11" + conditions: os=linux & cpu=arm languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/helper-split-export-declaration@npm:7.18.6" - dependencies: - "@babel/types": ^7.18.6 - checksum: c6d3dede53878f6be1d869e03e9ffbbb36f4897c7cc1527dc96c56d127d834ffe4520a6f7e467f5b6f3c2843ea0e81a7819d66ae02f707f6ac057f3d57943a2b +"@esbuild/linux-arm@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-arm@npm:0.17.19" + conditions: os=linux & cpu=arm languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.22.6": - version: 7.22.6 - resolution: "@babel/helper-split-export-declaration@npm:7.22.6" - dependencies: - "@babel/types": ^7.22.5 - checksum: e141cace583b19d9195f9c2b8e17a3ae913b7ee9b8120246d0f9ca349ca6f03cb2c001fd5ec57488c544347c0bb584afec66c936511e447fd20a360e591ac921 +"@esbuild/linux-arm@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-arm@npm:0.21.5" + conditions: os=linux & cpu=arm languageName: node linkType: hard -"@babel/helper-split-export-declaration@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-split-export-declaration@npm:7.24.7" - dependencies: - "@babel/types": ^7.24.7 - checksum: e3ddc91273e5da67c6953f4aa34154d005a00791dc7afa6f41894e768748540f6ebcac5d16e72541aea0c89bee4b89b4da6a3d65972a0ea8bfd2352eda5b7e22 +"@esbuild/linux-ia32@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-ia32@npm:0.17.11" + conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.19.4": - version: 7.19.4 - resolution: "@babel/helper-string-parser@npm:7.19.4" - checksum: b2f8a3920b30dfac81ec282ac4ad9598ea170648f8254b10f475abe6d944808fb006aab325d3eb5a8ad3bea8dfa888cfa6ef471050dae5748497c110ec060943 +"@esbuild/linux-ia32@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-ia32@npm:0.17.19" + conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/helper-string-parser@npm:7.22.5" - checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467 +"@esbuild/linux-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ia32@npm:0.21.5" + conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-string-parser@npm:7.24.7" - checksum: 09568193044a578743dd44bf7397940c27ea693f9812d24acb700890636b376847a611cdd0393a928544e79d7ad5b8b916bd8e6e772bc8a10c48a647a96e7b1a +"@esbuild/linux-loong64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-loong64@npm:0.17.11" + conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@babel/helper-string-parser@npm:^7.24.8": - version: 7.24.8 - resolution: "@babel/helper-string-parser@npm:7.24.8" - checksum: 39b03c5119216883878655b149148dc4d2e284791e969b19467a9411fccaa33f7a713add98f4db5ed519535f70ad273cdadfd2eb54d47ebbdeac5083351328ce +"@esbuild/linux-loong64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-loong64@npm:0.17.19" + conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1": - version: 7.19.1 - resolution: "@babel/helper-validator-identifier@npm:7.19.1" - checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a +"@esbuild/linux-loong64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-loong64@npm:0.21.5" + conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-validator-identifier@npm:7.22.20" - checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc +"@esbuild/linux-mips64el@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-mips64el@npm:0.17.11" + conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@babel/helper-validator-identifier@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-validator-identifier@npm:7.24.7" - checksum: 6799ab117cefc0ecd35cd0b40ead320c621a298ecac88686a14cffceaac89d80cdb3c178f969861bf5fa5e4f766648f9161ea0752ecfe080d8e89e3147270257 +"@esbuild/linux-mips64el@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-mips64el@npm:0.17.19" + conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.18.6": - version: 7.21.0 - resolution: "@babel/helper-validator-option@npm:7.21.0" - checksum: 8ece4c78ffa5461fd8ab6b6e57cc51afad59df08192ed5d84b475af4a7193fc1cb794b59e3e7be64f3cdc4df7ac78bf3dbb20c129d7757ae078e6279ff8c2f07 +"@esbuild/linux-mips64el@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-mips64el@npm:0.21.5" + conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/helper-validator-option@npm:7.22.15" - checksum: 68da52b1e10002a543161494c4bc0f4d0398c8fdf361d5f7f4272e95c45d5b32d974896d44f6a0ea7378c9204988879d73613ca683e13bd1304e46d25ff67a8d +"@esbuild/linux-ppc64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-ppc64@npm:0.17.11" + conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/helper-validator-option@npm:7.24.7" - checksum: 9689166bf3f777dd424c026841c8cd651e41b21242dbfd4569a53086179a3e744c8eddd56e9d10b54142270141c91581b53af0d7c00c82d552d2540e2a919f7e +"@esbuild/linux-ppc64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-ppc64@npm:0.17.19" + conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@babel/helper-validator-option@npm:^7.24.8": - version: 7.24.8 - resolution: "@babel/helper-validator-option@npm:7.24.8" - checksum: a52442dfa74be6719c0608fee3225bd0493c4057459f3014681ea1a4643cd38b68ff477fe867c4b356da7330d085f247f0724d300582fa4ab9a02efaf34d107c +"@esbuild/linux-ppc64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-ppc64@npm:0.21.5" + conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@babel/helper-wrap-function@npm:^7.22.20": - version: 7.22.20 - resolution: "@babel/helper-wrap-function@npm:7.22.20" - dependencies: - "@babel/helper-function-name": ^7.22.5 - "@babel/template": ^7.22.15 - "@babel/types": ^7.22.19 - checksum: 221ed9b5572612aeb571e4ce6a256f2dee85b3c9536f1dd5e611b0255e5f59a3d0ec392d8d46d4152149156a8109f92f20379b1d6d36abb613176e0e33f05fca +"@esbuild/linux-riscv64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-riscv64@npm:0.17.11" + conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.23.2": - version: 7.23.2 - resolution: "@babel/helpers@npm:7.23.2" - dependencies: - "@babel/template": ^7.22.15 - "@babel/traverse": ^7.23.2 - "@babel/types": ^7.23.0 - checksum: aaf4828df75ec460eaa70e5c9f66e6dadc28dae3728ddb7f6c13187dbf38030e142194b83d81aa8a31bbc35a5529a5d7d3f3cf59d5d0b595f5dd7f9d8f1ced8e +"@esbuild/linux-riscv64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-riscv64@npm:0.17.19" + conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@babel/helpers@npm:^7.21.0": - version: 7.21.0 - resolution: "@babel/helpers@npm:7.21.0" - dependencies: - "@babel/template": ^7.20.7 - "@babel/traverse": ^7.21.0 - "@babel/types": ^7.21.0 - checksum: 9370dad2bb665c551869a08ac87c8bdafad53dbcdce1f5c5d498f51811456a3c005d9857562715151a0f00b2e912ac8d89f56574f837b5689f5f5072221cdf54 +"@esbuild/linux-riscv64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-riscv64@npm:0.21.5" + conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@babel/helpers@npm:^7.25.0": - version: 7.25.6 - resolution: "@babel/helpers@npm:7.25.6" - dependencies: - "@babel/template": ^7.25.0 - "@babel/types": ^7.25.6 - checksum: 5a548999db82049a5f7ac6de57576b4ed0d386ce07d058151698836ed411eae6230db12535487caeebb68a2ffc964491e8aead62364a5132ab0ae20e8b68e19f +"@esbuild/linux-s390x@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-s390x@npm:0.17.11" + conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@babel/highlight@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/highlight@npm:7.18.6" - dependencies: - "@babel/helper-validator-identifier": ^7.18.6 - chalk: ^2.0.0 - js-tokens: ^4.0.0 - checksum: 92d8ee61549de5ff5120e945e774728e5ccd57fd3b2ed6eace020ec744823d4a98e242be1453d21764a30a14769ecd62170fba28539b211799bbaf232bbb2789 +"@esbuild/linux-s390x@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-s390x@npm:0.17.19" + conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@babel/highlight@npm:^7.22.13": - version: 7.22.20 - resolution: "@babel/highlight@npm:7.22.20" - dependencies: - "@babel/helper-validator-identifier": ^7.22.20 - chalk: ^2.4.2 - js-tokens: ^4.0.0 - checksum: 84bd034dca309a5e680083cd827a766780ca63cef37308404f17653d32366ea76262bd2364b2d38776232f2d01b649f26721417d507e8b4b6da3e4e739f6d134 +"@esbuild/linux-s390x@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-s390x@npm:0.21.5" + conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@babel/highlight@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/highlight@npm:7.24.7" - dependencies: - "@babel/helper-validator-identifier": ^7.24.7 - chalk: ^2.4.2 - js-tokens: ^4.0.0 - picocolors: ^1.0.0 - checksum: 5cd3a89f143671c4ac129960024ba678b669e6fc673ce078030f5175002d1d3d52bc10b22c5b916a6faf644b5028e9a4bd2bb264d053d9b05b6a98690f1d46f1 +"@esbuild/linux-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/linux-x64@npm:0.17.11" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.21.0, @babel/parser@npm:^7.21.2": - version: 7.21.2 - resolution: "@babel/parser@npm:7.21.2" - bin: - parser: ./bin/babel-parser.js - checksum: e2b89de2c63d4cdd2cafeaea34f389bba729727eec7a8728f736bc472a59396059e3e9fe322c9bed8fd126d201fb609712949dc8783f4cae4806acd9a73da6ff +"@esbuild/linux-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/linux-x64@npm:0.17.19" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@babel/parser@npm:^7.12.7, @babel/parser@npm:^7.18.8, @babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/parser@npm:7.23.0" - bin: - parser: ./bin/babel-parser.js - checksum: 453fdf8b9e2c2b7d7b02139e0ce003d1af21947bbc03eb350fb248ee335c9b85e4ab41697ddbdd97079698de825a265e45a0846bb2ed47a2c7c1df833f42a354 +"@esbuild/linux-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/linux-x64@npm:0.21.5" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@babel/parser@npm:^7.23.9, @babel/parser@npm:^7.25.0, @babel/parser@npm:^7.25.6": - version: 7.25.6 - resolution: "@babel/parser@npm:7.25.6" - dependencies: - "@babel/types": ^7.25.6 - bin: - parser: ./bin/babel-parser.js - checksum: 85b237ded09ee43cc984493c35f3b1ff8a83e8dbbb8026b8132e692db6567acc5a1659ec928e4baa25499ddd840d7dae9dee3062be7108fe23ec5f94a8066b1e +"@esbuild/netbsd-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/netbsd-x64@npm:0.17.11" + conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@babel/parser@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/parser@npm:7.24.7" - bin: - parser: ./bin/babel-parser.js - checksum: fc9d2c4c8712f89672edc55c0dc5cf640dcec715b56480f111f85c2bc1d507e251596e4110d65796690a96ac37a4b60432af90b3e97bb47e69d4ef83872dbbd6 +"@esbuild/netbsd-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/netbsd-x64@npm:0.17.19" + conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.22.15" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 8910ca21a7ec7c06f7b247d4b86c97c5aa15ef321518f44f6f490c5912fdf82c605aaa02b90892e375d82ccbedeadfdeadd922c1b836c9dd4c596871bf654753 +"@esbuild/netbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/netbsd-x64@npm:0.21.5" + conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.22.15" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 - "@babel/plugin-transform-optional-chaining": ^7.22.15 - peerDependencies: - "@babel/core": ^7.13.0 - checksum: fbefedc0da014c37f1a50a8094ce7dbbf2181ae93243f23d6ecba2499b5b20196c2124d6a4dfe3e9e0125798e80593103e456352a4beb4e5c6f7c75efb80fdac +"@esbuild/openbsd-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/openbsd-x64@npm:0.17.11" + conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@babel/plugin-proposal-object-rest-spread@npm:7.12.1": - version: 7.12.1 - resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.1" - dependencies: - "@babel/helper-plugin-utils": ^7.10.4 - "@babel/plugin-syntax-object-rest-spread": ^7.8.0 - "@babel/plugin-transform-parameters": ^7.12.1 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 221a41630c9a7162bf0416c71695b3f7f38482078a1d0d3af7abdc4f07ea1c9feed890399158d56c1d0278c971fe6f565ce822e9351e4481f7d98e9ff735dced +"@esbuild/openbsd-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/openbsd-x64@npm:0.17.19" + conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2": - version: 7.21.0-placeholder-for-preset-env.2 - resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2" - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: d97745d098b835d55033ff3a7fb2b895b9c5295b08a5759e4f20df325aa385a3e0bc9bd5ad8f2ec554a44d4e6525acfc257b8c5848a1345cb40f26a30e277e91 +"@esbuild/openbsd-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/openbsd-x64@npm:0.21.5" + conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@babel/plugin-syntax-async-generators@npm:^7.8.4": - version: 7.8.4 - resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4" - dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367 +"@esbuild/sunos-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/sunos-x64@npm:0.17.11" + conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@babel/plugin-syntax-bigint@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-bigint@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648 +"@esbuild/sunos-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/sunos-x64@npm:0.17.19" + conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3": - version: 7.12.13 - resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13" - dependencies: - "@babel/helper-plugin-utils": ^7.12.13 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc +"@esbuild/sunos-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/sunos-x64@npm:0.21.5" + conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@babel/plugin-syntax-class-static-block@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": ^7.14.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948 +"@esbuild/win32-arm64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/win32-arm64@npm:0.17.11" + conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@babel/plugin-syntax-dynamic-import@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd +"@esbuild/win32-arm64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/win32-arm64@npm:0.17.19" + conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": ^7.8.3 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a +"@esbuild/win32-arm64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-arm64@npm:0.21.5" + conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@babel/plugin-syntax-import-assertions@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-syntax-import-assertions@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2b8b5572db04a7bef1e6cd20debf447e4eef7cb012616f5eceb8fa3e23ce469b8f76ee74fd6d1e158ba17a8f58b0aec579d092fb67c5a30e83ccfbc5754916c1 +"@esbuild/win32-ia32@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/win32-ia32@npm:0.17.11" + conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@babel/plugin-syntax-import-attributes@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-syntax-import-attributes@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 197b3c5ea2a9649347f033342cb222ab47f4645633695205c0250c6bf2af29e643753b8bb24a2db39948bef08e7c540babfd365591eb57fc110cb30b425ffc47 +"@esbuild/win32-ia32@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/win32-ia32@npm:0.17.19" + conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@babel/plugin-syntax-import-meta@npm:^7.10.4, @babel/plugin-syntax-import-meta@npm:^7.8.3": - version: 7.10.4 - resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4" - dependencies: - "@babel/helper-plugin-utils": ^7.10.4 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b +"@esbuild/win32-ia32@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-ia32@npm:0.21.5" + conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@babel/plugin-syntax-json-strings@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a +"@esbuild/win32-x64@npm:0.17.11": + version: 0.17.11 + resolution: "@esbuild/win32-x64@npm:0.17.11" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:7.12.1": - version: 7.12.1 - resolution: "@babel/plugin-syntax-jsx@npm:7.12.1" - dependencies: - "@babel/helper-plugin-utils": ^7.10.4 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: d4b9b589c484b2e0856799770f060dff34c67b24d7f4526f66309a0e0e9cf388a5c1f2c0da329d1973cc87d1b2cede8f3dc8facfac59e785d6393a003bcdd0f9 +"@esbuild/win32-x64@npm:0.17.19": + version: 0.17.19 + resolution: "@esbuild/win32-x64@npm:0.17.19" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-syntax-jsx@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 8829d30c2617ab31393d99cec2978e41f014f4ac6f01a1cecf4c4dd8320c3ec12fdc3ce121126b2d8d32f6887e99ca1a0bad53dedb1e6ad165640b92b24980ce +"@esbuild/win32-x64@npm:0.21.5": + version: 0.21.5 + resolution: "@esbuild/win32-x64@npm:0.21.5" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-syntax-jsx@npm:7.24.7" +"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": + version: 4.4.0 + resolution: "@eslint-community/eslint-utils@npm:4.4.0" dependencies: - "@babel/helper-plugin-utils": ^7.24.7 + eslint-visitor-keys: ^3.3.0 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 7a5ca629d8ca1e1ee78705a78e58c12920d07ed8006d7e7232b31296a384ff5e41d7b649bde5561196041037bbb9f9715be1d1c20975df87ca204f34ad15b965 + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22 languageName: node linkType: hard -"@babel/plugin-syntax-jsx@npm:^7.7.2": - version: 7.18.6 - resolution: "@babel/plugin-syntax-jsx@npm:7.18.6" - dependencies: - "@babel/helper-plugin-utils": ^7.18.6 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6d37ea972970195f1ffe1a54745ce2ae456e0ac6145fae9aa1480f297248b262ea6ebb93010eddb86ebfacb94f57c05a1fc5d232b9a67325b09060299d515c67 +"@eslint-community/regexpp@npm:^4.4.0": + version: 4.5.0 + resolution: "@eslint-community/regexpp@npm:4.5.0" + checksum: 99c01335947dbd7f2129e954413067e217ccaa4e219fe0917b7d2bd96135789384b8fedbfb8eb09584d5130b27a7b876a7150ab7376f51b3a0c377d5ce026a10 languageName: node linkType: hard -"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3": - version: 7.10.4 - resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4" - dependencies: - "@babel/helper-plugin-utils": ^7.10.4 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886 +"@eslint-community/regexpp@npm:^4.5.1": + version: 4.10.0 + resolution: "@eslint-community/regexpp@npm:4.10.0" + checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b languageName: node linkType: hard -"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1 +"@eslint-community/regexpp@npm:^4.6.1": + version: 4.9.1 + resolution: "@eslint-community/regexpp@npm:4.9.1" + checksum: 06fb839e9c756f6375cc545c2f2e05a0a64576bd6370e8e3c07983fd29a3d6e164ef4aa48a361f7d27e6713ab79c83053ff6a2ccb78748bc955e344279c4a3b6 languageName: node linkType: hard -"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3": - version: 7.10.4 - resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4" +"@eslint/eslintrc@npm:^2.0.0": + version: 2.0.0 + resolution: "@eslint/eslintrc@npm:2.0.0" dependencies: - "@babel/helper-plugin-utils": ^7.10.4 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1 + ajv: ^6.12.4 + debug: ^4.3.2 + espree: ^9.4.0 + globals: ^13.19.0 + ignore: ^5.2.0 + import-fresh: ^3.2.1 + js-yaml: ^4.1.0 + minimatch: ^3.1.2 + strip-json-comments: ^3.1.1 + checksum: 31119c8ca06723d80384f18f5c78e0530d8e6306ad36379868650131a8b10dd7cffd7aff79a5deb3a2e9933660823052623d268532bae9538ded53d5b19a69a6 languageName: node linkType: hard -"@babel/plugin-syntax-object-rest-spread@npm:7.8.3, @babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3" +"@eslint/eslintrc@npm:^2.1.2": + version: 2.1.2 + resolution: "@eslint/eslintrc@npm:2.1.2" dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf + ajv: ^6.12.4 + debug: ^4.3.2 + espree: ^9.6.0 + globals: ^13.19.0 + ignore: ^5.2.0 + import-fresh: ^3.2.1 + js-yaml: ^4.1.0 + minimatch: ^3.1.2 + strip-json-comments: ^3.1.1 + checksum: bc742a1e3b361f06fedb4afb6bf32cbd27171292ef7924f61c62f2aed73048367bcc7ac68f98c06d4245cd3fabc43270f844e3c1699936d4734b3ac5398814a7 languageName: node linkType: hard -"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3" +"@eslint/eslintrc@npm:^2.1.3": + version: 2.1.3 + resolution: "@eslint/eslintrc@npm:2.1.3" dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9 + ajv: ^6.12.4 + debug: ^4.3.2 + espree: ^9.6.0 + globals: ^13.19.0 + ignore: ^5.2.0 + import-fresh: ^3.2.1 + js-yaml: ^4.1.0 + minimatch: ^3.1.2 + strip-json-comments: ^3.1.1 + checksum: 5c6c3878192fe0ddffa9aff08b4e2f3bcc8f1c10d6449b7295a5f58b662019896deabfc19890455ffd7e60a5bd28d25d0eaefb2f78b2d230aae3879af92b89e5 languageName: node linkType: hard -"@babel/plugin-syntax-optional-chaining@npm:^7.8.3": - version: 7.8.3 - resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3" - dependencies: - "@babel/helper-plugin-utils": ^7.8.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30 +"@eslint/js@npm:8.35.0": + version: 8.35.0 + resolution: "@eslint/js@npm:8.35.0" + checksum: 6687ceff659a6d617e37823f809dc9c4b096535961a81acead27d26b1a51a4cf608a5e59d831ddd57f24f6f8bb99340a4a0e19f9c99b390fbb4b275f51ed5f5e languageName: node linkType: hard -"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5": - version: 7.14.5 - resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": ^7.14.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda +"@eslint/js@npm:8.51.0": + version: 8.51.0 + resolution: "@eslint/js@npm:8.51.0" + checksum: 0228bf1e1e0414843e56d9ff362a2a72d579c078f93174666f29315690e9e30a8633ad72c923297f7fd7182381b5a476805ff04dac8debe638953eb1ded3ac73 languageName: node linkType: hard -"@babel/plugin-syntax-top-level-await@npm:^7.14.5, @babel/plugin-syntax-top-level-await@npm:^7.8.3": - version: 7.14.5 - resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5" - dependencies: - "@babel/helper-plugin-utils": ^7.14.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e +"@eslint/js@npm:8.53.0": + version: 8.53.0 + resolution: "@eslint/js@npm:8.53.0" + checksum: e0d5cfb0000aaee237c8e6d6d6e366faa60b1ef7f928ce17778373aa44d3b886368f6d5e1f97f913f0f16801aad016db8b8df78418c9d18825c15590328028af languageName: node linkType: hard -"@babel/plugin-syntax-typescript@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-syntax-typescript@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 8ab7718fbb026d64da93681a57797d60326097fd7cb930380c8bffd9eb101689e90142c760a14b51e8e69c88a73ba3da956cb4520a3b0c65743aee5c71ef360a +"@faker-js/faker@npm:8.4.1, @faker-js/faker@npm:^8.4.1": + version: 8.4.1 + resolution: "@faker-js/faker@npm:8.4.1" + checksum: d802d531f8929562715adc279cfec763c9a4bc596ec67b0ce43fd0ae61b285d2b0eec6f1f4aa852452a63721a842fe7e81926dce7bd92acca94b01e2a1f55f5a languageName: node linkType: hard -"@babel/plugin-syntax-typescript@npm:^7.7.2": - version: 7.20.0 - resolution: "@babel/plugin-syntax-typescript@npm:7.20.0" - dependencies: - "@babel/helper-plugin-utils": ^7.19.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6189c0b5c32ba3c9a80a42338bd50719d783b20ef29b853d4f03929e971913d3cefd80184e924ae98ad6db09080be8fe6f1ffde9a6db8972523234f0274d36f7 +"@faker-js/faker@npm:^7.6.0": + version: 7.6.0 + resolution: "@faker-js/faker@npm:7.6.0" + checksum: 942af6221774e8c98a0eb6bc75265e05fb81a941170377666c3439aab9495dd321d6beedc5406f07e6ad44262b3e43c20961f666d116ad150b78e7437dd1bb2b languageName: node linkType: hard -"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6": - version: 7.18.6 - resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6" - dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.18.6 - "@babel/helper-plugin-utils": ^7.18.6 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c - languageName: node - linkType: hard - -"@babel/plugin-transform-arrow-functions@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-arrow-functions@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 35abb6c57062802c7ce8bd96b2ef2883e3124370c688bbd67609f7d2453802fb73944df8808f893b6c67de978eb2bcf87bbfe325e46d6f39b5fcb09ece11d01a +"@faker-js/faker@npm:^8.3.1": + version: 8.3.1 + resolution: "@faker-js/faker@npm:8.3.1" + checksum: 33efe912411fe61f43b313784a9ce041dfbfb54bc3b2f7b923a547f97beb6b3763534f9c37af25ab330982e6b36e6f7b040dfb35c115deb8c789d8ada413bd94 languageName: node linkType: hard -"@babel/plugin-transform-async-generator-functions@npm:^7.23.2": - version: 7.23.2 - resolution: "@babel/plugin-transform-async-generator-functions@npm:7.23.2" - dependencies: - "@babel/helper-environment-visitor": ^7.22.20 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-remap-async-to-generator": ^7.22.20 - "@babel/plugin-syntax-async-generators": ^7.8.4 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: e1abae0edcda7304d7c17702ac25a127578791b89c4f767d60589249fa3e50ec33f8c9ff39d3d8d41f00b29947654eaddd4fd586e04c4d598122db745fab2868 +"@faker-js/faker@npm:^8.4.0": + version: 8.4.0 + resolution: "@faker-js/faker@npm:8.4.0" + checksum: 682581f0b009b7e8b81bc0736a3f1df2fb5179706786b87ef5bed5e2e28e22dfeba10e5122942371f12d68e833be3b3726850f96940baf080500cef35a77403b languageName: node linkType: hard -"@babel/plugin-transform-async-to-generator@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-async-to-generator@npm:7.22.5" +"@fastify/busboy@npm:^1.2.1": + version: 1.2.1 + resolution: "@fastify/busboy@npm:1.2.1" dependencies: - "@babel/helper-module-imports": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-remap-async-to-generator": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b95f23f99dcb379a9f0a1c2a3bbea3f8dc0e1b16dc1ac8b484fe378370169290a7a63d520959a9ba1232837cf74a80e23f6facbe14fd42a3cda6d3c2d7168e62 + text-decoding: ^1.0.0 + checksum: 6e773a2929fd7732fd8ba8f9e1c1b9d622c6165b6e0bed9268e1785f8fd5e8b0a35d6adfe86f15a701bf7783d09c629f3437b3578d34c0246eb26f973ede20f0 languageName: node linkType: hard -"@babel/plugin-transform-block-scoped-functions@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 416b1341858e8ca4e524dee66044735956ced5f478b2c3b9bc11ec2285b0c25d7dbb96d79887169eb938084c95d0a89338c8b2fe70d473bd9dc92e5d9db1732c +"@fastify/busboy@npm:^2.0.0": + version: 2.1.0 + resolution: "@fastify/busboy@npm:2.1.0" + checksum: 3233abd10f73e50668cb4bb278a79b7b3fadd30215ac6458299b0e5a09a29c3586ec07597aae6bd93f5cbedfcef43a8aeea51829cd28fc13850cdbcd324c28d5 languageName: node linkType: hard -"@babel/plugin-transform-block-scoping@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/plugin-transform-block-scoping@npm:7.23.0" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 0cfe925cc3b5a3ad407e2253fab3ceeaa117a4b291c9cb245578880872999bca91bd83ffa0128ae9ca356330702e1ef1dcb26804f28d2cef678239caf629f73e +"@firebase/app-check-interop-types@npm:0.3.0": + version: 0.3.0 + resolution: "@firebase/app-check-interop-types@npm:0.3.0" + checksum: e8b6adfe47ea4149e7a330890ee2feca47d9c48323dd9a1a2247b63879c89fe5e8869c93ec36927639e1d7951a5b365623032f66ef8086981cf08f9504b18c2b languageName: node linkType: hard -"@babel/plugin-transform-class-properties@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-class-properties@npm:7.22.5" - dependencies: - "@babel/helper-create-class-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b830152dfc2ff2f647f0abe76e6251babdfbef54d18c4b2c73a6bf76b1a00050a5d998dac80dc901a48514e95604324943a9dd39317073fe0928b559e0e0c579 +"@firebase/app-types@npm:0.9.0": + version: 0.9.0 + resolution: "@firebase/app-types@npm:0.9.0" + checksum: e79bd3c4a8d6b911326fe83fddca8d8922ea5880fcb3ad72d3561b51e3d01f22669cdc6d61d2ec48ac9c5e763e3d44b7b6736cadf36a0827d7f62447bde4b12e languageName: node linkType: hard -"@babel/plugin-transform-class-static-block@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-class-static-block@npm:7.22.11" - dependencies: - "@babel/helper-create-class-features-plugin": ^7.22.11 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-class-static-block": ^7.14.5 - peerDependencies: - "@babel/core": ^7.12.0 - checksum: 69f040506fad66f1c6918d288d0e0edbc5c8a07c8b4462c1184ad2f9f08995d68b057126c213871c0853ae0c72afc60ec87492049dfacb20902e32346a448bcb +"@firebase/auth-interop-types@npm:0.2.1": + version: 0.2.1 + resolution: "@firebase/auth-interop-types@npm:0.2.1" + checksum: 6b02996f2455c1d6299c59a76a7d52d3eedd35d6ee444a8f2edef8c34bd766e8d20ea25a6927e08a5f4cfa9a5fff2aa67101a80a7e4d12023590871652eac288 languageName: node linkType: hard -"@babel/plugin-transform-classes@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/plugin-transform-classes@npm:7.22.15" +"@firebase/component@npm:0.6.5": + version: 0.6.5 + resolution: "@firebase/component@npm:0.6.5" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-compilation-targets": ^7.22.15 - "@babel/helper-environment-visitor": ^7.22.5 - "@babel/helper-function-name": ^7.22.5 - "@babel/helper-optimise-call-expression": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-replace-supers": ^7.22.9 - "@babel/helper-split-export-declaration": ^7.22.6 - globals: ^11.1.0 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: d3f4d0c107dd8a3557ea3575cc777fab27efa92958b41e4a9822f7499725c1f554beae58855de16ddec0a7b694e45f59a26cea8fbde4275563f72f09c6e039a0 + "@firebase/util": 1.9.4 + tslib: ^2.1.0 + checksum: d77f5b1777c8ea1366ea49a737aaae2e218878c1e2a2dc00234c1b25e5dababa41f2aa7b4d0e0d52d5274c714cb4fd6d295fc5c10e3da85bf076c7ec008339a5 languageName: node linkType: hard -"@babel/plugin-transform-computed-properties@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-computed-properties@npm:7.22.5" +"@firebase/database-compat@npm:^1.0.2": + version: 1.0.3 + resolution: "@firebase/database-compat@npm:1.0.3" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/template": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: c2a77a0f94ec71efbc569109ec14ea2aa925b333289272ced8b33c6108bdbb02caf01830ffc7e49486b62dec51911924d13f3a76f1149f40daace1898009e131 + "@firebase/component": 0.6.5 + "@firebase/database": 1.0.3 + "@firebase/database-types": 1.0.1 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.4 + tslib: ^2.1.0 + checksum: 0eea986766e3768db4f52d1856305c76c2e27dd0156eff4155846e9db044e69e81988aee1120aec9c619eac9356f86cf2cee9da3db1ef3137b9377dcb0636b5e languageName: node linkType: hard -"@babel/plugin-transform-destructuring@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/plugin-transform-destructuring@npm:7.23.0" +"@firebase/database-types@npm:1.0.1, @firebase/database-types@npm:^1.0.0": + version: 1.0.1 + resolution: "@firebase/database-types@npm:1.0.1" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: cd6dd454ccc2766be551e4f8a04b1acc2aa539fa19e5c7501c56cc2f8cc921dd41a7ffb78455b4c4b2f954fcab8ca4561ba7c9c7bd5af9f19465243603d18cc3 + "@firebase/app-types": 0.9.0 + "@firebase/util": 1.9.4 + checksum: 261726bc5f540e8f8ef3f34319de3fe87fda5a537f6f0c760e14cf84c28e046fedae0df29b7308fe48497c1c3fdac5ace3a43fcdbc754bb5eb22d381f974cc41 languageName: node linkType: hard -"@babel/plugin-transform-dotall-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-dotall-regex@npm:7.22.5" +"@firebase/database@npm:1.0.3": + version: 1.0.3 + resolution: "@firebase/database@npm:1.0.3" dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 409b658d11e3082c8f69e9cdef2d96e4d6d11256f005772425fb230cc48fd05945edbfbcb709dab293a1a2f01f9c8a5bb7b4131e632b23264039d9f95864b453 + "@firebase/app-check-interop-types": 0.3.0 + "@firebase/auth-interop-types": 0.2.1 + "@firebase/component": 0.6.5 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.4 + faye-websocket: 0.11.4 + tslib: ^2.1.0 + checksum: 8e6d199fca8f9204cb4d4b5a3e5b9472c68d610385ead1fdbe8a6e27d8dcbe89bc60ea3fcf93c4f017ec2a07e58ccd0fdedfe149fa45585de841ed6784472a99 languageName: node linkType: hard -"@babel/plugin-transform-duplicate-keys@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-duplicate-keys@npm:7.22.5" +"@firebase/logger@npm:0.4.0": + version: 0.4.0 + resolution: "@firebase/logger@npm:0.4.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: bb1280fbabaab6fab2ede585df34900712698210a3bd413f4df5bae6d8c24be36b496c92722ae676a7a67d060a4624f4d6c23b923485f906bfba8773c69f55b4 + tslib: ^2.1.0 + checksum: 4b5418f03a2e973f6d4fa8f3a27057b3cc439691b6067ecfa4755bb310d1ed7bdf53016bc2d13bdbdad7e369485d57e9fd1e4679e30a5b98aab9f87e1fa671ee languageName: node linkType: hard -"@babel/plugin-transform-dynamic-import@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-dynamic-import@npm:7.22.11" +"@firebase/util@npm:1.9.4": + version: 1.9.4 + resolution: "@firebase/util@npm:1.9.4" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-dynamic-import": ^7.8.3 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 78fc9c532210bf9e8f231747f542318568ac360ee6c27e80853962c984283c73da3f8f8aebe83c2096090a435b356b092ed85de617a156cbe0729d847632be45 + tslib: ^2.1.0 + checksum: da3cefa7a8e8509fd00b88ed0c25ea37ac26998b41c23ab1d3a56ab91b6cd3d582145ed7ec0f0770a4479ba7602424b970e505ef82a0872cb3eed32680b3b120 languageName: node linkType: hard -"@babel/plugin-transform-exponentiation-operator@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.22.5" - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: f2d660c1b1d51ad5fec1cd5ad426a52187204068c4158f8c4aa977b31535c61b66898d532603eef21c15756827be8277f724c869b888d560f26d7fe848bb5eae +"@gar/promisify@npm:^1.0.1": + version: 1.1.3 + resolution: "@gar/promisify@npm:1.1.3" + checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1 languageName: node linkType: hard -"@babel/plugin-transform-export-namespace-from@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-export-namespace-from@npm:7.22.11" +"@getmetal/metal-sdk@npm:^4.0.0": + version: 4.0.0 + resolution: "@getmetal/metal-sdk@npm:4.0.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-export-namespace-from": ^7.8.3 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 73af5883a321ed56a4bfd43c8a7de0164faebe619287706896fc6ee2f7a4e69042adaa1338c0b8b4bdb9f7e5fdceb016fb1d40694cb43ca3b8827429e8aac4bf + axios: ^1.3.2 + checksum: d7a7b79896cc58ffd5c2d071703302c62780d2aa9e89080ad6a70a5a5671ea0f5b8ed614ba4981f55d1f54ff147c8bdaa76e758910edb26df33648cd09e9335a languageName: node linkType: hard -"@babel/plugin-transform-for-of@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/plugin-transform-for-of@npm:7.22.15" +"@getzep/zep-cloud@npm:^1.0.6": + version: 1.0.6 + resolution: "@getzep/zep-cloud@npm:1.0.6" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 + form-data: 4.0.0 + node-fetch: 2.7.0 + qs: 6.11.2 + url-join: 4.0.1 + zod: ^3.23.8 peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: f395ae7bce31e14961460f56cf751b5d6e37dd27d7df5b1f4e49fec1c11b6f9cf71991c7ffbe6549878591e87df0d66af798cf26edfa4bfa6b4c3dba1fb2f73a + "@langchain/core": ~0.1.29 + langchain: ~0.1.19 + peerDependenciesMeta: + "@langchain/core": + optional: true + langchain: + optional: true + checksum: 21fd2281124fc9f10b6cd5d2a1496c69566cd56c742828ffd249f0220746e635826c1ecb894dc8e932c52f9cecdf26550df6921cfe6ab05288b3d0b58ffc3e1e languageName: node linkType: hard -"@babel/plugin-transform-function-name@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-function-name@npm:7.22.5" +"@getzep/zep-js@npm:^0.9.0": + version: 0.9.0 + resolution: "@getzep/zep-js@npm:0.9.0" dependencies: - "@babel/helper-compilation-targets": ^7.22.5 - "@babel/helper-function-name": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: cff3b876357999cb8ae30e439c3ec6b0491a53b0aa6f722920a4675a6dd5b53af97a833051df4b34791fe5b3dd326ccf769d5c8e45b322aa50ee11a660b17845 + "@supercharge/promise-pool": ^3.1.0 + semver: ^7.5.4 + typescript: ^5.1.6 + checksum: 4378b7fb1bbff5b9705f2c81b5cef1811fd2fbf1c3606c085cfc2f898f18f1a685d87f7f149e1c579a3895340fa85b42e0ad954fd11de3de3a97224e0e291c82 languageName: node linkType: hard -"@babel/plugin-transform-json-strings@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-json-strings@npm:7.22.11" +"@gomomento/generated-types@npm:0.96.0": + version: 0.96.0 + resolution: "@gomomento/generated-types@npm:0.96.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-json-strings": ^7.8.3 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 50665e5979e66358c50e90a26db53c55917f78175127ac2fa05c7888d156d418ffb930ec0a109353db0a7c5f57c756ce01bfc9825d24cbfd2b3ec453f2ed8cba + "@grpc/grpc-js": 1.9.0 + google-protobuf: 3.21.2 + grpc-tools: ^1.12.4 + protoc-gen-ts: ^0.8.6 + checksum: f50916c4e95d5c655babde018c047b8a7d43f88d61ba03f871203d1c425eb15020dc57b4fc6b2592c9698bed2b0219d84743f5cb955e9560b68f5743afa0f0af languageName: node linkType: hard -"@babel/plugin-transform-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-literals@npm:7.22.5" +"@gomomento/sdk-core@npm:1.51.1, @gomomento/sdk-core@npm:^1.51.1": + version: 1.51.1 + resolution: "@gomomento/sdk-core@npm:1.51.1" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ec37cc2ffb32667af935ab32fe28f00920ec8a1eb999aa6dc6602f2bebd8ba205a558aeedcdccdebf334381d5c57106c61f52332045730393e73410892a9735b + buffer: 6.0.3 + jwt-decode: 3.1.2 + checksum: 535bf07ffc97426af5cfae5eae93b9fde119bbda73d6c06990b7f052b8696a175ebbcf1b5e21c6c71c63bcfcc1903c34603dbe14f8763fb65f0e1392f79f63cd languageName: node linkType: hard -"@babel/plugin-transform-logical-assignment-operators@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.22.11" +"@gomomento/sdk@npm:^1.51.1": + version: 1.51.1 + resolution: "@gomomento/sdk@npm:1.51.1" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: c664e9798e85afa7f92f07b867682dee7392046181d82f5d21bae6f2ca26dfe9c8375cdc52b7483c3fc09a983c1989f60eff9fbc4f373b0c0a74090553d05739 + "@gomomento/generated-types": 0.96.0 + "@gomomento/sdk-core": 1.51.1 + "@grpc/grpc-js": 1.9.0 + "@types/google-protobuf": 3.15.10 + google-protobuf: 3.21.2 + jwt-decode: 3.1.2 + checksum: ee7e052b1e1aa2fb132664bdfe4cac801a9c30b564c80cdfff2614c2cc290e3e964101386c0493b0ca1ba1bd0c8e6b95edc7bb125b9b59f72bd714ed1c12e80b languageName: node linkType: hard -"@babel/plugin-transform-member-expression-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-member-expression-literals@npm:7.22.5" +"@google-ai/generativelanguage@npm:^2.5.0": + version: 2.5.0 + resolution: "@google-ai/generativelanguage@npm:2.5.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ec4b0e07915ddd4fda0142fd104ee61015c208608a84cfa13643a95d18760b1dc1ceb6c6e0548898b8c49e5959a994e46367260176dbabc4467f729b21868504 + google-gax: ^4.0.3 + checksum: 76218cbbc117313f2e6f4959fa770610aebafe27ddf10be9860f1176d9c4677d00609ab683926e64f48fce4321fe72c164cb23fa12f1651ba739ed2b4a507e95 languageName: node linkType: hard -"@babel/plugin-transform-modules-amd@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/plugin-transform-modules-amd@npm:7.23.0" +"@google-cloud/firestore@npm:^7.1.0": + version: 7.3.0 + resolution: "@google-cloud/firestore@npm:7.3.0" dependencies: - "@babel/helper-module-transforms": ^7.23.0 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 5d92875170a37b8282d4bcd805f55829b8fab0f9c8d08b53d32a7a0bfdc62b868e489b52d329ae768ecafc0c993eed0ad7a387baa673ac33211390a9f833ab5d + fast-deep-equal: ^3.1.1 + functional-red-black-tree: ^1.0.1 + google-gax: ^4.0.4 + protobufjs: ^7.2.5 + checksum: 6e12f011250ee6e3f8a522ab02d706af7966675b6653e77734929fce1493efc9fed90de398900228da660f4f4738ccafa2bad96f4573e8097267c67f1ab87f90 languageName: node linkType: hard -"@babel/plugin-transform-modules-commonjs@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/plugin-transform-modules-commonjs@npm:7.23.0" +"@google-cloud/paginator@npm:^5.0.0": + version: 5.0.0 + resolution: "@google-cloud/paginator@npm:5.0.0" dependencies: - "@babel/helper-module-transforms": ^7.23.0 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-simple-access": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 7fb25997194053e167c4207c319ff05362392da841bd9f42ddb3caf9c8798a5d203bd926d23ddf5830fdf05eddc82c2810f40d1287e3a4f80b07eff13d1024b5 + arrify: ^2.0.0 + extend: ^3.0.2 + checksum: 7b8236ce610bef5c5de62a0ec267b0e4368480397621a692d213c56ffe66b20a8e6d4de0fe0606fd165672c873467ea313493f035a582e674df72c29dd20b7ef languageName: node linkType: hard -"@babel/plugin-transform-modules-systemjs@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/plugin-transform-modules-systemjs@npm:7.23.0" - dependencies: - "@babel/helper-hoist-variables": ^7.22.5 - "@babel/helper-module-transforms": ^7.23.0 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-validator-identifier": ^7.22.20 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2d481458b22605046badea2317d5cc5c94ac3031c2293e34c96f02063f5b02af0979c4da6a8fbc67cc249541575dc9c6d710db6b919ede70b7337a22d9fd57a7 +"@google-cloud/projectify@npm:^4.0.0": + version: 4.0.0 + resolution: "@google-cloud/projectify@npm:4.0.0" + checksum: 973d28414ae200433333a3c315aebb881ced42ea4afe6f3f8520d2fecded75e76c913f5189fea8fb29ce6ca36117c4f44001b3c503eecdd3ac7f02597a98354a languageName: node linkType: hard -"@babel/plugin-transform-modules-umd@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-modules-umd@npm:7.22.5" - dependencies: - "@babel/helper-module-transforms": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 46622834c54c551b231963b867adbc80854881b3e516ff29984a8da989bd81665bd70e8cba6710345248e97166689310f544aee1a5773e262845a8f1b3e5b8b4 +"@google-cloud/promisify@npm:^4.0.0": + version: 4.0.0 + resolution: "@google-cloud/promisify@npm:4.0.0" + checksum: edd189398c5ed5b7b64a373177d77c87d076a248c31b8ae878bb91e2411d89860108bcb948c349f32628973a823bd131beb53ec008fd613a8cb466ef1d89de49 languageName: node linkType: hard -"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5" +"@google-cloud/storage@npm:^7.7.0": + version: 7.7.0 + resolution: "@google-cloud/storage@npm:7.7.0" dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: 3ee564ddee620c035b928fdc942c5d17e9c4b98329b76f9cefac65c111135d925eb94ed324064cd7556d4f5123beec79abea1d4b97d1c8a2a5c748887a2eb623 + "@google-cloud/paginator": ^5.0.0 + "@google-cloud/projectify": ^4.0.0 + "@google-cloud/promisify": ^4.0.0 + abort-controller: ^3.0.0 + async-retry: ^1.3.3 + compressible: ^2.0.12 + duplexify: ^4.0.0 + ent: ^2.2.0 + fast-xml-parser: ^4.3.0 + gaxios: ^6.0.2 + google-auth-library: ^9.0.0 + mime: ^3.0.0 + mime-types: ^2.0.8 + p-limit: ^3.0.1 + retry-request: ^7.0.0 + teeny-request: ^9.0.0 + uuid: ^8.0.0 + checksum: b63069b7e591e55f9132aab9e8f9cd03b72a5b6e531c1f37fc44c4cd34eb02dd50e8007739dad6f0ac2ddb216eb5a80bc3b062d1d8c42aad7351e6cc6008d27f languageName: node linkType: hard -"@babel/plugin-transform-new-target@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-new-target@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6b72112773487a881a1d6ffa680afde08bad699252020e86122180ee7a88854d5da3f15d9bca3331cf2e025df045604494a8208a2e63b486266b07c14e2ffbf3 +"@google/generative-ai@npm:^0.21.0": + version: 0.21.0 + resolution: "@google/generative-ai@npm:0.21.0" + checksum: 91345a8399b5e71382193d0eac47a4b264613a9d7e48a431290b523e3fbb44a207a33bdead304f181987e5a0127a84168c4e21cf461c1087cd3b0ebc5125d13d languageName: node linkType: hard -"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.22.11" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 167babecc8b8fe70796a7b7d34af667ebbf43da166c21689502e5e8cc93180b7a85979c77c9f64b7cce431b36718bd0a6df9e5e0ffea4ae22afb22cfef886372 +"@google/generative-ai@npm:^0.7.0": + version: 0.7.1 + resolution: "@google/generative-ai@npm:0.7.1" + checksum: 536c7c75545c93731f0ab1fa9be6c88c64ead6ab6b24e70763e592e163041444f9ae78e2095019cd0e27fc18cbdc1ecaf1fdfd3561ca0a61577f720ddbaba1f2 languageName: node linkType: hard -"@babel/plugin-transform-numeric-separator@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-numeric-separator@npm:7.22.11" +"@gradientai/nodejs-sdk@npm:^1.2.0": + version: 1.2.0 + resolution: "@gradientai/nodejs-sdk@npm:1.2.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-numeric-separator": ^7.10.4 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: af064d06a4a041767ec396a5f258103f64785df290e038bba9f0ef454e6c914f2ac45d862bbdad8fac2c7ad47fa4e95356f29053c60c100a0160b02a995fe2a3 + axios: 0.21.4 + checksum: c921d914a6570536b6f1f00b3dc615cd70e103ad14ea40d7b9fe88020810b5fd9c8c8695bdfb3d9263190a3c69a82b17505b5579d744cc79596d037958e2cfd7 languageName: node linkType: hard -"@babel/plugin-transform-object-rest-spread@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/plugin-transform-object-rest-spread@npm:7.22.15" - dependencies: - "@babel/compat-data": ^7.22.9 - "@babel/helper-compilation-targets": ^7.22.15 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-object-rest-spread": ^7.8.3 - "@babel/plugin-transform-parameters": ^7.22.15 +"@graphql-typed-document-node/core@npm:^3.1.1": + version: 3.2.0 + resolution: "@graphql-typed-document-node/core@npm:3.2.0" peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 62197a6f12289c1c1bd57f3bed9f0f765ca32390bfe91e0b5561dd94dd9770f4480c4162dec98da094bc0ba99d2c2ebba68de47c019454041b0b7a68ba2ec66d + graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 + checksum: fa44443accd28c8cf4cb96aaaf39d144a22e8b091b13366843f4e97d19c7bfeaf609ce3c7603a4aeffe385081eaf8ea245d078633a7324c11c5ec4b2011bb76d languageName: node linkType: hard -"@babel/plugin-transform-object-super@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-object-super@npm:7.22.5" +"@grpc/grpc-js@npm:1.9.0": + version: 1.9.0 + resolution: "@grpc/grpc-js@npm:1.9.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-replace-supers": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: b71887877d74cb64dbccb5c0324fa67e31171e6a5311991f626650e44a4083e5436a1eaa89da78c0474fb095d4ec322d63ee778b202d33aa2e4194e1ed8e62d7 + "@grpc/proto-loader": ^0.7.0 + "@types/node": ">=12.12.47" + checksum: 32817c84e4b0eedc523b123cbfce935cafedbf33f94f7609931a878dd6945c4d83b4a781a9d7dedbd4fd273a95e8bd3b0de5f6ca920112331e1c3279fa104b3e languageName: node linkType: hard -"@babel/plugin-transform-optional-catch-binding@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.22.11" +"@grpc/grpc-js@npm:^1.10.1, @grpc/grpc-js@npm:~1.10.3": + version: 1.10.8 + resolution: "@grpc/grpc-js@npm:1.10.8" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: f17abd90e1de67c84d63afea29c8021c74abb2794d3a6eeafb0bbe7372d3db32aefca386e392116ec63884537a4a2815d090d26264d259bacc08f6e3ed05294c + "@grpc/proto-loader": ^0.7.13 + "@js-sdsl/ordered-map": ^4.4.2 + checksum: 498d144016eac26fc069bc57d649bf4776ae6bd1a24e62823a8b07b7d39a4414caa72a799f8287278b79e11ec4ecf989dbac01518c3981d8f947db15916c6727 languageName: node linkType: hard -"@babel/plugin-transform-optional-chaining@npm:^7.22.15, @babel/plugin-transform-optional-chaining@npm:^7.23.0": - version: 7.23.0 - resolution: "@babel/plugin-transform-optional-chaining@npm:7.23.0" +"@grpc/grpc-js@npm:~1.9.6": + version: 1.9.14 + resolution: "@grpc/grpc-js@npm:1.9.14" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 - "@babel/plugin-syntax-optional-chaining": ^7.8.3 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: f702634f2b97e5260dbec0d4bde05ccb6f4d96d7bfa946481aeacfa205ca846cb6e096a38312f9d51fdbdac1f258f211138c5f7075952e46a5bf8574de6a1329 + "@grpc/proto-loader": ^0.7.8 + "@types/node": ">=12.12.47" + checksum: 1e0821876fc55fa1d71a674e65db6227ca398f6ff77735bd44d8d4a554fa97dcddd06e7844c3d7da37350feafd824ec88af04f0ab0e0c2e0bc8f753939935240 languageName: node linkType: hard -"@babel/plugin-transform-parameters@npm:^7.12.1, @babel/plugin-transform-parameters@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/plugin-transform-parameters@npm:7.22.15" +"@grpc/proto-loader@npm:^0.7.0": + version: 0.7.6 + resolution: "@grpc/proto-loader@npm:0.7.6" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 541188bb7d1876cad87687b5c7daf90f63d8208ae83df24acb1e2b05020ad1c78786b2723ca4054a83fcb74fb6509f30c4cacc5b538ee684224261ad5fb047c1 - languageName: node - linkType: hard - -"@babel/plugin-transform-private-methods@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-private-methods@npm:7.22.5" - dependencies: - "@babel/helper-create-class-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 321479b4fcb6d3b3ef622ab22fd24001e43d46e680e8e41324c033d5810c84646e470f81b44cbcbef5c22e99030784f7cac92f1829974da7a47a60a7139082c3 + "@types/long": ^4.0.1 + lodash.camelcase: ^4.3.0 + long: ^4.0.0 + protobufjs: ^7.0.0 + yargs: ^16.2.0 + bin: + proto-loader-gen-types: build/bin/proto-loader-gen-types.js + checksum: cc42649cf65c74f627ac80b1f3ed275c4cf96dbc27728cc887e91e217c69a3bd6b94dfa7571725a94538d84735af53d35e9583cc77eb65f3c035106216cc4a1b languageName: node linkType: hard -"@babel/plugin-transform-private-property-in-object@npm:^7.22.11": - version: 7.22.11 - resolution: "@babel/plugin-transform-private-property-in-object@npm:7.22.11" +"@grpc/proto-loader@npm:^0.7.10, @grpc/proto-loader@npm:^0.7.13": + version: 0.7.13 + resolution: "@grpc/proto-loader@npm:0.7.13" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-create-class-features-plugin": ^7.22.11 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-private-property-in-object": ^7.14.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 4d029d84901e53c46dead7a46e2990a7bc62470f4e4ca58a0d063394f86652fd58fe4eea1eb941da3669cd536b559b9d058b342b59300026346b7a2a51badac8 + lodash.camelcase: ^4.3.0 + long: ^5.0.0 + protobufjs: ^7.2.5 + yargs: ^17.7.2 + bin: + proto-loader-gen-types: build/bin/proto-loader-gen-types.js + checksum: 399c1b8a4627f93dc31660d9636ea6bf58be5675cc7581e3df56a249369e5be02c6cd0d642c5332b0d5673bc8621619bc06fb045aa3e8f57383737b5d35930dc languageName: node linkType: hard -"@babel/plugin-transform-property-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-property-literals@npm:7.22.5" +"@grpc/proto-loader@npm:^0.7.8": + version: 0.7.10 + resolution: "@grpc/proto-loader@npm:0.7.10" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 796176a3176106f77fcb8cd04eb34a8475ce82d6d03a88db089531b8f0453a2fb8b0c6ec9a52c27948bc0ea478becec449893741fc546dfc3930ab927e3f9f2e + lodash.camelcase: ^4.3.0 + long: ^5.0.0 + protobufjs: ^7.2.4 + yargs: ^17.7.2 + bin: + proto-loader-gen-types: build/bin/proto-loader-gen-types.js + checksum: 4987e23b57942c2363b6a6a106e63efae636666cefa348778dfafef2ff72da7343c8587667521cb1d52482827bcd001dd535bdc27065110af56d9c7c176334c9 languageName: node linkType: hard -"@babel/plugin-transform-react-constant-elements@npm:^7.18.12": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-constant-elements@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 596db90e37174dd703f4859fef3c86156a7c8564d8351168ac6fdca79c912ef8b8746ae04516ac3909d2cc750702d58d451badacb3c54ea998938ad05d99f9d2 +"@hapi/hoek@npm:^9.0.0": + version: 9.3.0 + resolution: "@hapi/hoek@npm:9.3.0" + checksum: 4771c7a776242c3c022b168046af4e324d116a9d2e1d60631ee64f474c6e38d1bb07092d898bf95c7bc5d334c5582798a1456321b2e53ca817d4e7c88bc25b43 languageName: node linkType: hard -"@babel/plugin-transform-react-display-name@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-display-name@npm:7.22.5" +"@hapi/topo@npm:^5.0.0": + version: 5.1.0 + resolution: "@hapi/topo@npm:5.1.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: a12bfd1e4e93055efca3ace3c34722571bda59d9740dca364d225d9c6e3ca874f134694d21715c42cc63d79efd46db9665bd4a022998767f9245f1e29d5d204d + "@hapi/hoek": ^9.0.0 + checksum: 604dfd5dde76d5c334bd03f9001fce69c7ce529883acf92da96f4fe7e51221bf5e5110e964caca287a6a616ba027c071748ab636ff178ad750547fba611d6014 languageName: node linkType: hard -"@babel/plugin-transform-react-display-name@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-react-display-name@npm:7.24.7" - dependencies: - "@babel/helper-plugin-utils": ^7.24.7 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: a05bf83bf5e7b31f7a3b56da1bf8e2eeec76ef52ae44435ceff66363a1717fcda45b7b4b931a2c115982175f481fc3f2d0fab23f0a43c44e6d983afc396858f0 +"@huggingface/inference@npm:^2.6.4": + version: 2.6.4 + resolution: "@huggingface/inference@npm:2.6.4" + checksum: 7d48960a62d0621d4c3f1edd183aa5d7829d297110b5720c78291aac17ed58b6a9af8eaf8a3f2cbb9dabfda3cf48931f59cf491cdedefd624f90d93fa3927981 languageName: node linkType: hard -"@babel/plugin-transform-react-jsx-development@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-jsx-development@npm:7.22.5" - dependencies: - "@babel/plugin-transform-react-jsx": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 36bc3ff0b96bb0ef4723070a50cfdf2e72cfd903a59eba448f9fe92fea47574d6f22efd99364413719e1f3fb3c51b6c9b2990b87af088f8486a84b2a5f9e4560 +"@huggingface/jinja@npm:^0.3.1": + version: 0.3.1 + resolution: "@huggingface/jinja@npm:0.3.1" + checksum: cd5dcc81b3690f9e4de7a6e4a236c4112b3a0e9e86e59d9b1fe49f634c459854f23492f7b66537978fd62fc125f5f3f8c8e56e299e61c633f5b3b429bb45494d languageName: node linkType: hard -"@babel/plugin-transform-react-jsx-development@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-react-jsx-development@npm:7.24.7" - dependencies: - "@babel/plugin-transform-react-jsx": ^7.24.7 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 653d32ea5accb12d016e324ec5a584b60a8f39e60c6a5101194b73553fdefbfa3c3f06ec2410216ec2033fddae181a2f146a1d6ed59f075c488fc4570cad2e7b +"@huggingface/jinja@npm:^0.3.2": + version: 0.3.2 + resolution: "@huggingface/jinja@npm:0.3.2" + checksum: 4bc7d00b6f8655a0032c2d89e38a095d0a87ef81a1c12fb6fd0404e1319e1ef6eef87734502689c1df39db4e77a7bb5996e7b6c1b4d6a768ecfa5a48f2a939a7 languageName: node linkType: hard -"@babel/plugin-transform-react-jsx@npm:^7.22.15, @babel/plugin-transform-react-jsx@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/plugin-transform-react-jsx@npm:7.22.15" +"@huggingface/transformers@npm:^3.2.3": + version: 3.2.4 + resolution: "@huggingface/transformers@npm:3.2.4" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-module-imports": ^7.22.15 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-jsx": ^7.22.5 - "@babel/types": ^7.22.15 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3899054e89550c3a0ef041af7c47ee266e2e934f498ee80fefeda778a6aa177b48aa8b4d2a8bf5848de977fec564571699ab952d9fa089c4c19b45ddb121df09 + "@huggingface/jinja": ^0.3.2 + onnxruntime-node: 1.20.1 + onnxruntime-web: 1.21.0-dev.20241205-d27fecd3d3 + sharp: ^0.33.5 + checksum: fdff5cec1336fdb4ad923592d77348730f58263928a8c90d0f79aed7863e74a5521b9e99903c906a6e1c056fe0f81f811e4d403b62d3edb66da9389cff025acf languageName: node linkType: hard -"@babel/plugin-transform-react-jsx@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-react-jsx@npm:7.24.7" +"@humanwhocodes/config-array@npm:^0.11.11": + version: 0.11.11 + resolution: "@humanwhocodes/config-array@npm:0.11.11" dependencies: - "@babel/helper-annotate-as-pure": ^7.24.7 - "@babel/helper-module-imports": ^7.24.7 - "@babel/helper-plugin-utils": ^7.24.7 - "@babel/plugin-syntax-jsx": ^7.24.7 - "@babel/types": ^7.24.7 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: ddfe494eb4b6ad567ebf0c029246df55d006512b1eb4beead73427b83af2e7e91b6d6e6954e275a92c81a5111d1e6e1fb4a62fdfc6f77c847cc7581650a7c452 + "@humanwhocodes/object-schema": ^1.2.1 + debug: ^4.1.1 + minimatch: ^3.0.5 + checksum: db84507375ab77b8ffdd24f498a5b49ad6b64391d30dd2ac56885501d03964d29637e05b1ed5aefa09d57ac667e28028bc22d2da872bfcd619652fbdb5f4ca19 languageName: node linkType: hard -"@babel/plugin-transform-react-pure-annotations@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.22.5" +"@humanwhocodes/config-array@npm:^0.11.13": + version: 0.11.13 + resolution: "@humanwhocodes/config-array@npm:0.11.13" dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 092021c4f404e267002099ec20b3f12dd730cb90b0d83c5feed3dc00dbe43b9c42c795a18e7c6c7d7bddea20c7dd56221b146aec81b37f2e7eb5137331c61120 + "@humanwhocodes/object-schema": ^2.0.1 + debug: ^4.1.1 + minimatch: ^3.0.5 + checksum: f8ea57b0d7ed7f2d64cd3944654976829d9da91c04d9c860e18804729a33f7681f78166ef4c761850b8c324d362f7d53f14c5c44907a6b38b32c703ff85e4805 languageName: node linkType: hard -"@babel/plugin-transform-react-pure-annotations@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.24.7" +"@humanwhocodes/config-array@npm:^0.11.8": + version: 0.11.8 + resolution: "@humanwhocodes/config-array@npm:0.11.8" dependencies: - "@babel/helper-annotate-as-pure": ^7.24.7 - "@babel/helper-plugin-utils": ^7.24.7 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: d859ada3cbeb829fa3d9978a29b2d36657fcc9dcc1e4c3c3af84ec5a044a8f8db26ada406baa309e5d4d512aca53d07c520d991b891ff943bec7d8f01aae0419 + "@humanwhocodes/object-schema": ^1.2.1 + debug: ^4.1.1 + minimatch: ^3.0.5 + checksum: 0fd6b3c54f1674ce0a224df09b9c2f9846d20b9e54fabae1281ecfc04f2e6ad69bf19e1d6af6a28f88e8aa3990168b6cb9e1ef755868c3256a630605ec2cb1d3 languageName: node linkType: hard -"@babel/plugin-transform-regenerator@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/plugin-transform-regenerator@npm:7.22.10" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - regenerator-transform: ^0.15.2 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: e13678d62d6fa96f11cb8b863f00e8693491e7adc88bfca3f2820f80cbac8336e7dec3a596eee6a1c4663b7ececc3564f2cd7fb44ed6d4ce84ac2bb7f39ecc6e +"@humanwhocodes/module-importer@npm:^1.0.1": + version: 1.0.1 + resolution: "@humanwhocodes/module-importer@npm:1.0.1" + checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61 languageName: node linkType: hard -"@babel/plugin-transform-reserved-words@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-reserved-words@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 3ffd7dbc425fe8132bfec118b9817572799cab1473113a635d25ab606c1f5a2341a636c04cf6b22df3813320365ed5a965b5eeb3192320a10e4cc2c137bd8bfc +"@humanwhocodes/object-schema@npm:^1.2.1": + version: 1.2.1 + resolution: "@humanwhocodes/object-schema@npm:1.2.1" + checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1 languageName: node linkType: hard -"@babel/plugin-transform-runtime@npm:^7.18.6": - version: 7.23.2 - resolution: "@babel/plugin-transform-runtime@npm:7.23.2" - dependencies: - "@babel/helper-module-imports": ^7.22.15 - "@babel/helper-plugin-utils": ^7.22.5 - babel-plugin-polyfill-corejs2: ^0.4.6 - babel-plugin-polyfill-corejs3: ^0.8.5 - babel-plugin-polyfill-regenerator: ^0.5.3 - semver: ^6.3.1 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 09f4273bfe9600c67e72e26f853f11c24ee4c1cbb3935c4a28a94d388e7c0d8733479d868c333cb34e9c236f1765788c6daef7852331f5c70a3b5543fd0247a1 +"@humanwhocodes/object-schema@npm:^2.0.1": + version: 2.0.1 + resolution: "@humanwhocodes/object-schema@npm:2.0.1" + checksum: 24929487b1ed48795d2f08346a0116cc5ee4634848bce64161fb947109352c562310fd159fc64dda0e8b853307f5794605191a9547f7341158559ca3c8262a45 languageName: node linkType: hard -"@babel/plugin-transform-shorthand-properties@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-shorthand-properties@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: a5ac902c56ea8effa99f681340ee61bac21094588f7aef0bc01dff98246651702e677552fa6d10e548c4ac22a3ffad047dd2f8c8f0540b68316c2c203e56818b +"@iarna/toml@npm:2.2.5": + version: 2.2.5 + resolution: "@iarna/toml@npm:2.2.5" + checksum: b63b2b2c4fd67969a6291543ada0303d45593801ee744b60f5390f183c03d9192bc67a217abb24be945158f1935f02840d9ffff40c0142aa171b5d3b6b6a3ea5 languageName: node linkType: hard -"@babel/plugin-transform-spread@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-spread@npm:7.22.5" +"@ibm-cloud/watsonx-ai@npm:^1.4.0": + version: 1.4.0 + resolution: "@ibm-cloud/watsonx-ai@npm:1.4.0" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 5587f0deb60b3dfc9b274e269031cc45ec75facccf1933ea2ea71ced9fd3ce98ed91bb36d6cd26817c14474b90ed998c5078415f0eab531caf301496ce24c95c + "@langchain/textsplitters": ^0.1.0 + "@types/node": ^18.0.0 + extend: 3.0.2 + ibm-cloud-sdk-core: ^5.0.2 + checksum: 5250816f9ad93839cf26e3788eeace8155721765c39c65547eff8ebbd5fc8a0dfa107f6e799593f1209f4b3489be24aa674aa92b7ecbc5fc2bd29390a28e84ff languageName: node linkType: hard -"@babel/plugin-transform-sticky-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-sticky-regex@npm:7.22.5" +"@img/sharp-darwin-arm64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-darwin-arm64@npm:0.33.5" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 63b2c575e3e7f96c32d52ed45ee098fb7d354b35c2223b8c8e76840b32cc529ee0c0ceb5742fd082e56e91e3d82842a367ce177e82b05039af3d602c9627a729 + "@img/sharp-libvips-darwin-arm64": 1.0.4 + dependenciesMeta: + "@img/sharp-libvips-darwin-arm64": + optional: true + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@babel/plugin-transform-template-literals@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-template-literals@npm:7.22.5" +"@img/sharp-darwin-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-darwin-x64@npm:0.33.5" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 27e9bb030654cb425381c69754be4abe6a7c75b45cd7f962cd8d604b841b2f0fb7b024f2efc1c25cc53f5b16d79d5e8cfc47cacbdaa983895b3aeefa3e7e24ff + "@img/sharp-libvips-darwin-x64": 1.0.4 + dependenciesMeta: + "@img/sharp-libvips-darwin-x64": + optional: true + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@babel/plugin-transform-typeof-symbol@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-typeof-symbol@npm:7.22.5" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 82a53a63ffc3010b689ca9a54e5f53b2718b9f4b4a9818f36f9b7dba234f38a01876680553d2716a645a61920b5e6e4aaf8d4a0064add379b27ca0b403049512 +"@img/sharp-libvips-darwin-arm64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@babel/plugin-transform-typescript@npm:^7.22.15": - version: 7.22.15 - resolution: "@babel/plugin-transform-typescript@npm:7.22.15" - dependencies: - "@babel/helper-annotate-as-pure": ^7.22.5 - "@babel/helper-create-class-features-plugin": ^7.22.15 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/plugin-syntax-typescript": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: c5d96cdbf0e1512707aa1c1e3ac6b370a25fd9c545d26008ce44eb13a47bd7fd67a1eb799c98b5ccc82e33a345fda55c0055e1fe3ed97646ed405dd13020b226 +"@img/sharp-libvips-darwin-x64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@babel/plugin-transform-unicode-escapes@npm:^7.22.10": - version: 7.22.10 - resolution: "@babel/plugin-transform-unicode-escapes@npm:7.22.10" - dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 807f40ed1324c8cb107c45358f1903384ca3f0ef1d01c5a3c5c9b271c8d8eec66936a3dcc8d75ddfceea9421420368c2e77ae3adef0a50557e778dfe296bf382 +"@img/sharp-libvips-linux-arm64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4" + conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@babel/plugin-transform-unicode-property-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.22.5" - dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 2495e5f663cb388e3d888b4ba3df419ac436a5012144ac170b622ddfc221f9ea9bdba839fa2bc0185cb776b578030666406452ec7791cbf0e7a3d4c88ae9574c +"@img/sharp-libvips-linux-arm@npm:1.0.5": + version: 1.0.5 + resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5" + conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@babel/plugin-transform-unicode-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-unicode-regex@npm:7.22.5" - dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 6b5d1404c8c623b0ec9bd436c00d885a17d6a34f3f2597996343ddb9d94f6379705b21582dfd4cec2c47fd34068872e74ab6b9580116c0566b3f9447e2a7fa06 +"@img/sharp-libvips-linux-s390x@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4" + conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@babel/plugin-transform-unicode-sets-regex@npm:^7.22.5": - version: 7.22.5 - resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.22.5" - dependencies: - "@babel/helper-create-regexp-features-plugin": ^7.22.5 - "@babel/helper-plugin-utils": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0 - checksum: c042070f980b139547f8b0179efbc049ac5930abec7fc26ed7a41d89a048d8ab17d362200e204b6f71c3c20d6991a0e74415e1a412a49adc8131c2a40c04822e +"@img/sharp-libvips-linux-x64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@babel/preset-env@npm:^7.18.6, @babel/preset-env@npm:^7.19.4": - version: 7.23.2 - resolution: "@babel/preset-env@npm:7.23.2" - dependencies: - "@babel/compat-data": ^7.23.2 - "@babel/helper-compilation-targets": ^7.22.15 - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-validator-option": ^7.22.15 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.22.15 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.22.15 - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2 - "@babel/plugin-syntax-async-generators": ^7.8.4 - "@babel/plugin-syntax-class-properties": ^7.12.13 - "@babel/plugin-syntax-class-static-block": ^7.14.5 - "@babel/plugin-syntax-dynamic-import": ^7.8.3 - "@babel/plugin-syntax-export-namespace-from": ^7.8.3 - "@babel/plugin-syntax-import-assertions": ^7.22.5 - "@babel/plugin-syntax-import-attributes": ^7.22.5 - "@babel/plugin-syntax-import-meta": ^7.10.4 - "@babel/plugin-syntax-json-strings": ^7.8.3 - "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4 - "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3 - "@babel/plugin-syntax-numeric-separator": ^7.10.4 - "@babel/plugin-syntax-object-rest-spread": ^7.8.3 - "@babel/plugin-syntax-optional-catch-binding": ^7.8.3 - "@babel/plugin-syntax-optional-chaining": ^7.8.3 - "@babel/plugin-syntax-private-property-in-object": ^7.14.5 - "@babel/plugin-syntax-top-level-await": ^7.14.5 - "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6 - "@babel/plugin-transform-arrow-functions": ^7.22.5 - "@babel/plugin-transform-async-generator-functions": ^7.23.2 - "@babel/plugin-transform-async-to-generator": ^7.22.5 - "@babel/plugin-transform-block-scoped-functions": ^7.22.5 - "@babel/plugin-transform-block-scoping": ^7.23.0 - "@babel/plugin-transform-class-properties": ^7.22.5 - "@babel/plugin-transform-class-static-block": ^7.22.11 - "@babel/plugin-transform-classes": ^7.22.15 - "@babel/plugin-transform-computed-properties": ^7.22.5 - "@babel/plugin-transform-destructuring": ^7.23.0 - "@babel/plugin-transform-dotall-regex": ^7.22.5 - "@babel/plugin-transform-duplicate-keys": ^7.22.5 - "@babel/plugin-transform-dynamic-import": ^7.22.11 - "@babel/plugin-transform-exponentiation-operator": ^7.22.5 - "@babel/plugin-transform-export-namespace-from": ^7.22.11 - "@babel/plugin-transform-for-of": ^7.22.15 - "@babel/plugin-transform-function-name": ^7.22.5 - "@babel/plugin-transform-json-strings": ^7.22.11 - "@babel/plugin-transform-literals": ^7.22.5 - "@babel/plugin-transform-logical-assignment-operators": ^7.22.11 - "@babel/plugin-transform-member-expression-literals": ^7.22.5 - "@babel/plugin-transform-modules-amd": ^7.23.0 - "@babel/plugin-transform-modules-commonjs": ^7.23.0 - "@babel/plugin-transform-modules-systemjs": ^7.23.0 - "@babel/plugin-transform-modules-umd": ^7.22.5 - "@babel/plugin-transform-named-capturing-groups-regex": ^7.22.5 - "@babel/plugin-transform-new-target": ^7.22.5 - "@babel/plugin-transform-nullish-coalescing-operator": ^7.22.11 - "@babel/plugin-transform-numeric-separator": ^7.22.11 - "@babel/plugin-transform-object-rest-spread": ^7.22.15 - "@babel/plugin-transform-object-super": ^7.22.5 - "@babel/plugin-transform-optional-catch-binding": ^7.22.11 - "@babel/plugin-transform-optional-chaining": ^7.23.0 - "@babel/plugin-transform-parameters": ^7.22.15 - "@babel/plugin-transform-private-methods": ^7.22.5 - "@babel/plugin-transform-private-property-in-object": ^7.22.11 - "@babel/plugin-transform-property-literals": ^7.22.5 - "@babel/plugin-transform-regenerator": ^7.22.10 - "@babel/plugin-transform-reserved-words": ^7.22.5 - "@babel/plugin-transform-shorthand-properties": ^7.22.5 - "@babel/plugin-transform-spread": ^7.22.5 - "@babel/plugin-transform-sticky-regex": ^7.22.5 - "@babel/plugin-transform-template-literals": ^7.22.5 - "@babel/plugin-transform-typeof-symbol": ^7.22.5 - "@babel/plugin-transform-unicode-escapes": ^7.22.10 - "@babel/plugin-transform-unicode-property-regex": ^7.22.5 - "@babel/plugin-transform-unicode-regex": ^7.22.5 - "@babel/plugin-transform-unicode-sets-regex": ^7.22.5 - "@babel/preset-modules": 0.1.6-no-external-plugins - "@babel/types": ^7.23.0 - babel-plugin-polyfill-corejs2: ^0.4.6 - babel-plugin-polyfill-corejs3: ^0.8.5 - babel-plugin-polyfill-regenerator: ^0.5.3 - core-js-compat: ^3.31.0 - semver: ^6.3.1 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 49327ef584b529b56aedd6577937b80c0d89603c68b23795495a13af04b5aa008db9ad04cd280423600cdc0d3cce13ae9d0d9a977db5c8193697b20ced8a10b2 +"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4" + conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@babel/preset-modules@npm:0.1.6-no-external-plugins": - version: 0.1.6-no-external-plugins - resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins" - dependencies: - "@babel/helper-plugin-utils": ^7.0.0 - "@babel/types": ^7.4.4 - esutils: ^2.0.2 - peerDependencies: - "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 - checksum: 4855e799bc50f2449fb5210f78ea9e8fd46cf4f242243f1e2ed838e2bd702e25e73e822e7f8447722a5f4baa5e67a8f7a0e403f3e7ce04540ff743a9c411c375 +"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4": + version: 1.0.4 + resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4" + conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@babel/preset-react@npm:^7.18.6": - version: 7.22.15 - resolution: "@babel/preset-react@npm:7.22.15" +"@img/sharp-linux-arm64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-arm64@npm:0.33.5" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-validator-option": ^7.22.15 - "@babel/plugin-transform-react-display-name": ^7.22.5 - "@babel/plugin-transform-react-jsx": ^7.22.15 - "@babel/plugin-transform-react-jsx-development": ^7.22.5 - "@babel/plugin-transform-react-pure-annotations": ^7.22.5 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: c3ef99dfa2e9f57d2e08603e883aa20f47630a826c8e413888a93ae6e0084b5016871e463829be125329d40a1ba0a89f7c43d77b6dab52083c225cb43e63d10e + "@img/sharp-libvips-linux-arm64": 1.0.4 + dependenciesMeta: + "@img/sharp-libvips-linux-arm64": + optional: true + conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@babel/preset-react@npm:^7.24.6": - version: 7.24.7 - resolution: "@babel/preset-react@npm:7.24.7" +"@img/sharp-linux-arm@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-arm@npm:0.33.5" dependencies: - "@babel/helper-plugin-utils": ^7.24.7 - "@babel/helper-validator-option": ^7.24.7 - "@babel/plugin-transform-react-display-name": ^7.24.7 - "@babel/plugin-transform-react-jsx": ^7.24.7 - "@babel/plugin-transform-react-jsx-development": ^7.24.7 - "@babel/plugin-transform-react-pure-annotations": ^7.24.7 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: 76d0365b6bca808be65c4ccb3f3384c0792084add15eb537f16b3e44184216b82fa37f945339b732ceee6f06e09ba1f39f75c45e69b9811ddcc479f05555ea9c + "@img/sharp-libvips-linux-arm": 1.0.5 + dependenciesMeta: + "@img/sharp-libvips-linux-arm": + optional: true + conditions: os=linux & cpu=arm & libc=glibc languageName: node linkType: hard -"@babel/preset-typescript@npm:^7.18.6": - version: 7.23.2 - resolution: "@babel/preset-typescript@npm:7.23.2" +"@img/sharp-linux-s390x@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-s390x@npm:0.33.5" dependencies: - "@babel/helper-plugin-utils": ^7.22.5 - "@babel/helper-validator-option": ^7.22.15 - "@babel/plugin-syntax-jsx": ^7.22.5 - "@babel/plugin-transform-modules-commonjs": ^7.23.0 - "@babel/plugin-transform-typescript": ^7.22.15 - peerDependencies: - "@babel/core": ^7.0.0-0 - checksum: c4b065c90e7f085dd7a0e57032983ac230c7ffd1d616e4c2b66581e765d5befc9271495f33250bf1cf9b4d436239c8ca3b19ada9f6c419c70bdab2cf6c868f9f + "@img/sharp-libvips-linux-s390x": 1.0.4 + dependenciesMeta: + "@img/sharp-libvips-linux-s390x": + optional: true + conditions: os=linux & cpu=s390x & libc=glibc languageName: node linkType: hard -"@babel/regjsgen@npm:^0.8.0": - version: 0.8.0 - resolution: "@babel/regjsgen@npm:0.8.0" - checksum: 89c338fee774770e5a487382170711014d49a68eb281e74f2b5eac88f38300a4ad545516a7786a8dd5702e9cf009c94c2f582d200f077ac5decd74c56b973730 +"@img/sharp-linux-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linux-x64@npm:0.33.5" + dependencies: + "@img/sharp-libvips-linux-x64": 1.0.4 + dependenciesMeta: + "@img/sharp-libvips-linux-x64": + optional: true + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@babel/runtime-corejs3@npm:^7.18.6": - version: 7.23.2 - resolution: "@babel/runtime-corejs3@npm:7.23.2" +"@img/sharp-linuxmusl-arm64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5" dependencies: - core-js-pure: ^3.30.2 - regenerator-runtime: ^0.14.0 - checksum: 922f25c47996a8af604cea82441e41be8b11910e96c662511e54120078f4c64258c045a28a311467a8f14a0c17f46a1f057f7c0501e567869a4343a6ce017962 + "@img/sharp-libvips-linuxmusl-arm64": 1.0.4 + dependenciesMeta: + "@img/sharp-libvips-linuxmusl-arm64": + optional: true + conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.3, @babel/runtime@npm:^7.12.13, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.6, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.20.7, @babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.8.4": - version: 7.23.2 - resolution: "@babel/runtime@npm:7.23.2" +"@img/sharp-linuxmusl-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5" dependencies: - regenerator-runtime: ^0.14.0 - checksum: 6c4df4839ec75ca10175f636d6362f91df8a3137f86b38f6cd3a4c90668a0fe8e9281d320958f4fbd43b394988958585a17c3aab2a4ea6bf7316b22916a371fb + "@img/sharp-libvips-linuxmusl-x64": 1.0.4 + dependenciesMeta: + "@img/sharp-libvips-linuxmusl-x64": + optional: true + conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@babel/template@npm:^7.12.7, @babel/template@npm:^7.22.15, @babel/template@npm:^7.22.5": - version: 7.22.15 - resolution: "@babel/template@npm:7.22.15" +"@img/sharp-wasm32@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-wasm32@npm:0.33.5" dependencies: - "@babel/code-frame": ^7.22.13 - "@babel/parser": ^7.22.15 - "@babel/types": ^7.22.15 - checksum: 1f3e7dcd6c44f5904c184b3f7fe280394b191f2fed819919ffa1e529c259d5b197da8981b6ca491c235aee8dbad4a50b7e31304aa531271cb823a4a24a0dd8fd + "@emnapi/runtime": ^1.2.0 + conditions: cpu=wasm32 languageName: node linkType: hard -"@babel/template@npm:^7.20.7, @babel/template@npm:^7.3.3": - version: 7.20.7 - resolution: "@babel/template@npm:7.20.7" - dependencies: - "@babel/code-frame": ^7.18.6 - "@babel/parser": ^7.20.7 - "@babel/types": ^7.20.7 - checksum: 2eb1a0ab8d415078776bceb3473d07ab746e6bb4c2f6ca46ee70efb284d75c4a32bb0cd6f4f4946dec9711f9c0780e8e5d64b743208deac6f8e9858afadc349e +"@img/sharp-win32-ia32@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-win32-ia32@npm:0.33.5" + conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@babel/template@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/template@npm:7.24.7" - dependencies: - "@babel/code-frame": ^7.24.7 - "@babel/parser": ^7.24.7 - "@babel/types": ^7.24.7 - checksum: ea90792fae708ddf1632e54c25fe1a86643d8c0132311f81265d2bdbdd42f9f4fac65457056c1b6ca87f7aa0d6a795b549566774bba064bdcea2034ab3960ee9 +"@img/sharp-win32-x64@npm:0.33.5": + version: 0.33.5 + resolution: "@img/sharp-win32-x64@npm:0.33.5" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@babel/template@npm:^7.25.0": - version: 7.25.0 - resolution: "@babel/template@npm:7.25.0" - dependencies: - "@babel/code-frame": ^7.24.7 - "@babel/parser": ^7.25.0 - "@babel/types": ^7.25.0 - checksum: 3f2db568718756d0daf2a16927b78f00c425046b654cd30b450006f2e84bdccaf0cbe6dc04994aa1f5f6a4398da2f11f3640a4d3ee31722e43539c4c919c817b +"@inquirer/figures@npm:^1.0.3": + version: 1.0.5 + resolution: "@inquirer/figures@npm:1.0.5" + checksum: 01dc7b95fe7b030b0577d59f45c4fa5c002dccb43ac75ff106d7142825e09dee63a6f9c42b044da2bc964bf38c40229a112a26505a68f3912b15dc8304106bbc languageName: node linkType: hard -"@babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.18.8, @babel/traverse@npm:^7.23.2": - version: 7.23.2 - resolution: "@babel/traverse@npm:7.23.2" - dependencies: - "@babel/code-frame": ^7.22.13 - "@babel/generator": ^7.23.0 - "@babel/helper-environment-visitor": ^7.22.20 - "@babel/helper-function-name": ^7.23.0 - "@babel/helper-hoist-variables": ^7.22.5 - "@babel/helper-split-export-declaration": ^7.22.6 - "@babel/parser": ^7.23.0 - "@babel/types": ^7.23.0 - debug: ^4.1.0 - globals: ^11.1.0 - checksum: 26a1eea0dde41ab99dde8b9773a013a0dc50324e5110a049f5d634e721ff08afffd54940b3974a20308d7952085ac769689369e9127dea655f868c0f6e1ab35d +"@ioredis/commands@npm:^1.1.1": + version: 1.2.0 + resolution: "@ioredis/commands@npm:1.2.0" + checksum: 9b20225ba36ef3e5caf69b3c0720597c3016cc9b1e157f519ea388f621dd9037177f84cfe7e25c4c32dad7dd90c70ff9123cd411f747e053cf292193c9c461e2 languageName: node linkType: hard -"@babel/traverse@npm:^7.21.0, @babel/traverse@npm:^7.21.2, @babel/traverse@npm:^7.7.2": - version: 7.21.2 - resolution: "@babel/traverse@npm:7.21.2" +"@isaacs/cliui@npm:^8.0.2": + version: 8.0.2 + resolution: "@isaacs/cliui@npm:8.0.2" dependencies: - "@babel/code-frame": ^7.18.6 - "@babel/generator": ^7.21.1 - "@babel/helper-environment-visitor": ^7.18.9 - "@babel/helper-function-name": ^7.21.0 - "@babel/helper-hoist-variables": ^7.18.6 - "@babel/helper-split-export-declaration": ^7.18.6 - "@babel/parser": ^7.21.2 - "@babel/types": ^7.21.2 - debug: ^4.1.0 - globals: ^11.1.0 - checksum: d851e3f5cfbdc2fac037a014eae7b0707709de50f7d2fbb82ffbf932d3eeba90a77431529371d6e544f8faaf8c6540eeb18fdd8d1c6fa2b61acea0fb47e18d4b + string-width: ^5.1.2 + string-width-cjs: "npm:string-width@^4.2.0" + strip-ansi: ^7.0.1 + strip-ansi-cjs: "npm:strip-ansi@^6.0.1" + wrap-ansi: ^8.1.0 + wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" + checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb languageName: node linkType: hard -"@babel/traverse@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/traverse@npm:7.24.7" +"@isaacs/fs-minipass@npm:^4.0.0": + version: 4.0.1 + resolution: "@isaacs/fs-minipass@npm:4.0.1" dependencies: - "@babel/code-frame": ^7.24.7 - "@babel/generator": ^7.24.7 - "@babel/helper-environment-visitor": ^7.24.7 - "@babel/helper-function-name": ^7.24.7 - "@babel/helper-hoist-variables": ^7.24.7 - "@babel/helper-split-export-declaration": ^7.24.7 - "@babel/parser": ^7.24.7 - "@babel/types": ^7.24.7 - debug: ^4.3.1 - globals: ^11.1.0 - checksum: 7cd366afe9e7ee77e493779fdf24f67bf5595247289364f4689e29688572505eaeb886d7a8f20ebb9c29fc2de7d0895e4ff9e203e78e39ac67239724d45aa83b + minipass: ^7.0.4 + checksum: 5d36d289960e886484362d9eb6a51d1ea28baed5f5d0140bbe62b99bac52eaf06cc01c2bc0d3575977962f84f6b2c4387b043ee632216643d4787b0999465bf2 languageName: node linkType: hard -"@babel/traverse@npm:^7.25.2": - version: 7.25.6 - resolution: "@babel/traverse@npm:7.25.6" +"@istanbuljs/load-nyc-config@npm:^1.0.0": + version: 1.1.0 + resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" dependencies: - "@babel/code-frame": ^7.24.7 - "@babel/generator": ^7.25.6 - "@babel/parser": ^7.25.6 - "@babel/template": ^7.25.0 - "@babel/types": ^7.25.6 - debug: ^4.3.1 - globals: ^11.1.0 - checksum: 11ee47269aa4356f2d6633a05b9af73405b5ed72c09378daf644289b686ef852035a6ac9aa410f601991993c6bbf72006795b5478283b78eb1ca77874ada7737 + camelcase: ^5.3.1 + find-up: ^4.1.0 + get-package-type: ^0.1.0 + js-yaml: ^3.13.1 + resolve-from: ^5.0.0 + checksum: d578da5e2e804d5c93228450a1380e1a3c691de4953acc162f387b717258512a3e07b83510a936d9fab03eac90817473917e24f5d16297af3867f59328d58568 languageName: node linkType: hard -"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.6, @babel/types@npm:^7.20.2, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.0, @babel/types@npm:^7.21.2, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.8.3": - version: 7.21.2 - resolution: "@babel/types@npm:7.21.2" - dependencies: - "@babel/helper-string-parser": ^7.19.4 - "@babel/helper-validator-identifier": ^7.19.1 - to-fast-properties: ^2.0.0 - checksum: a45a52acde139e575502c6de42c994bdbe262bafcb92ae9381fb54cdf1a3672149086843fda655c7683ce9806e998fd002bbe878fa44984498d0fdc7935ce7ff +"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": + version: 0.1.3 + resolution: "@istanbuljs/schema@npm:0.1.3" + checksum: 5282759d961d61350f33d9118d16bcaed914ebf8061a52f4fa474b2cb08720c9c81d165e13b82f2e5a8a212cc5af482f0c6fc1ac27b9e067e5394c9a6ed186c9 languageName: node linkType: hard -"@babel/types@npm:^7.12.7, @babel/types@npm:^7.20.0, @babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.22.5, @babel/types@npm:^7.23.0, @babel/types@npm:^7.4.4": - version: 7.23.0 - resolution: "@babel/types@npm:7.23.0" +"@jest/console@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/console@npm:29.7.0" dependencies: - "@babel/helper-string-parser": ^7.22.5 - "@babel/helper-validator-identifier": ^7.22.20 - to-fast-properties: ^2.0.0 - checksum: 215fe04bd7feef79eeb4d33374b39909ce9cad1611c4135a4f7fdf41fe3280594105af6d7094354751514625ea92d0875aba355f53e86a92600f290e77b0e604 + "@jest/types": ^29.6.3 + "@types/node": "*" + chalk: ^4.0.0 + jest-message-util: ^29.7.0 + jest-util: ^29.7.0 + slash: ^3.0.0 + checksum: 0e3624e32c5a8e7361e889db70b170876401b7d70f509a2538c31d5cd50deb0c1ae4b92dc63fe18a0902e0a48c590c21d53787a0df41a52b34fa7cab96c384d6 languageName: node linkType: hard -"@babel/types@npm:^7.24.7": - version: 7.24.7 - resolution: "@babel/types@npm:7.24.7" +"@jest/core@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/core@npm:29.7.0" dependencies: - "@babel/helper-string-parser": ^7.24.7 - "@babel/helper-validator-identifier": ^7.24.7 - to-fast-properties: ^2.0.0 - checksum: 3e4437fced97e02982972ce5bebd318c47d42c9be2152c0fd28c6f786cc74086cc0a8fb83b602b846e41df37f22c36254338eada1a47ef9d8a1ec92332ca3ea8 + "@jest/console": ^29.7.0 + "@jest/reporters": ^29.7.0 + "@jest/test-result": ^29.7.0 + "@jest/transform": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + ansi-escapes: ^4.2.1 + chalk: ^4.0.0 + ci-info: ^3.2.0 + exit: ^0.1.2 + graceful-fs: ^4.2.9 + jest-changed-files: ^29.7.0 + jest-config: ^29.7.0 + jest-haste-map: ^29.7.0 + jest-message-util: ^29.7.0 + jest-regex-util: ^29.6.3 + jest-resolve: ^29.7.0 + jest-resolve-dependencies: ^29.7.0 + jest-runner: ^29.7.0 + jest-runtime: ^29.7.0 + jest-snapshot: ^29.7.0 + jest-util: ^29.7.0 + jest-validate: ^29.7.0 + jest-watcher: ^29.7.0 + micromatch: ^4.0.4 + pretty-format: ^29.7.0 + slash: ^3.0.0 + strip-ansi: ^6.0.0 + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: af759c9781cfc914553320446ce4e47775ae42779e73621c438feb1e4231a5d4862f84b1d8565926f2d1aab29b3ec3dcfdc84db28608bdf5f29867124ebcfc0d languageName: node linkType: hard -"@babel/types@npm:^7.25.0, @babel/types@npm:^7.25.2, @babel/types@npm:^7.25.6": - version: 7.25.6 - resolution: "@babel/types@npm:7.25.6" +"@jest/create-cache-key-function@npm:^27.4.2": + version: 27.5.1 + resolution: "@jest/create-cache-key-function@npm:27.5.1" dependencies: - "@babel/helper-string-parser": ^7.24.8 - "@babel/helper-validator-identifier": ^7.24.7 - to-fast-properties: ^2.0.0 - checksum: 9b2f84ff3f874ad05b0b9bf06862c56f478b65781801f82296b4cc01bee39e79c20a7c0a06959fed0ee582c8267e1cb21638318655c5e070b0287242a844d1c9 + "@jest/types": ^27.5.1 + checksum: a6c3a8c769aca6f66f5dc80f1c77e66980b4f213a6b2a15a92ba3595f032848a1261c06c9c798dcf2b672b1ffbefad5085af89d130548741c85ddbe0cf4284e7 languageName: node linkType: hard -"@baiducloud/qianfan@npm:^0.1.6": - version: 0.1.6 - resolution: "@baiducloud/qianfan@npm:0.1.6" +"@jest/environment@npm:^29.5.0": + version: 29.5.0 + resolution: "@jest/environment@npm:29.5.0" dependencies: - "@babel/preset-react": ^7.24.6 - "@rollup/plugin-inject": ^5.0.5 - "@rollup/plugin-json": ^6.1.0 - "@types/node-fetch": ^2.6.11 - async-mutex: ^0.5.0 - bottleneck: ^2.19.5 - crypto-js: ^4.2.0 - dotenv: ^16.4.5 - express: ^4.19.2 - node-fetch: 2.7.0 - rollup: ^3.29.4 - typescript: ^5.3.3 - web-streams-polyfill: ^4.0.0 - checksum: 63e21d10f971303cb44bf4490086c5abf4603b97ef295efd399d56efaa34aaf90e00f6bbd5d07be3036318320efc71575db3d376b95468f9fef445b26e3fb21a + "@jest/fake-timers": ^29.5.0 + "@jest/types": ^29.5.0 + "@types/node": "*" + jest-mock: ^29.5.0 + checksum: 921de6325cd4817dec6685e5ff299b499b6379f3f9cf489b4b13588ee1f3820a0c77b49e6a087996b6de8f629f6f5251e636cba08d1bdb97d8071cc7d033c88a languageName: node linkType: hard -"@bcherny/json-schema-ref-parser@npm:10.0.5-fork": - version: 10.0.5-fork - resolution: "@bcherny/json-schema-ref-parser@npm:10.0.5-fork" +"@jest/environment@npm:^29.6.4": + version: 29.6.4 + resolution: "@jest/environment@npm:29.6.4" dependencies: - "@jsdevtools/ono": ^7.1.3 - "@types/json-schema": ^7.0.6 - call-me-maybe: ^1.0.1 - js-yaml: ^4.1.0 - checksum: e90eb3655c4e15f54ebc5138baac98471d159e3a253b484416c03c2d43f5c3bc80a4d6fe18acd71f77bf2f95f7fbc36730abb21cbd1f9d80a6af630c554e6d62 - languageName: node - linkType: hard - -"@bcoe/v8-coverage@npm:^0.2.3": - version: 0.2.3 - resolution: "@bcoe/v8-coverage@npm:0.2.3" - checksum: 850f9305536d0f2bd13e9e0881cb5f02e4f93fad1189f7b2d4bebf694e3206924eadee1068130d43c11b750efcc9405f88a8e42ef098b6d75239c0f047de1a27 + "@jest/fake-timers": ^29.6.4 + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-mock: ^29.6.3 + checksum: 810d8f1fc26d293acfc44927bcb78adc58ed4ea580a64c8d94aa6c67239dcb149186bf25b94ff28b79de15253e0c877ad8d330feac205f185f3517593168510c languageName: node linkType: hard -"@braintree/sanitize-url@npm:^6.0.0": - version: 6.0.4 - resolution: "@braintree/sanitize-url@npm:6.0.4" - checksum: f5ec6048973722ea1c46ae555d2e9eb848d7fa258994f8ea7d6db9514ee754ea3ef344ef71b3696d486776bcb839f3124e79f67c6b5b2814ed2da220b340627c +"@jest/environment@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/environment@npm:29.7.0" + dependencies: + "@jest/fake-timers": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/node": "*" + jest-mock: ^29.7.0 + checksum: 6fb398143b2543d4b9b8d1c6dbce83fa5247f84f550330604be744e24c2bd2178bb893657d62d1b97cf2f24baf85c450223f8237cccb71192c36a38ea2272934 languageName: node linkType: hard -"@browserbasehq/sdk@npm:^1.1.5": - version: 1.1.5 - resolution: "@browserbasehq/sdk@npm:1.1.5" +"@jest/expect-utils@npm:^29.5.0": + version: 29.5.0 + resolution: "@jest/expect-utils@npm:29.5.0" dependencies: - playwright: ^1.43.1 - zod: ^3.22.5 - checksum: 9b62d6471c4f706af881b58b8fcc0c06ea48bc4b3b2d97c71265a8294cf38afefc61609b21c7d6564a312a91359f645e90462875582c73004420ed2a2bf4e1bc + jest-get-type: ^29.4.3 + checksum: c46fb677c88535cf83cf29f0a5b1f376c6a1109ddda266ad7da1a9cbc53cb441fa402dd61fc7b111ffc99603c11a9b3357ee41a1c0e035a58830bcb360871476 languageName: node linkType: hard -"@browserbasehq/sdk@npm:^2.0.0": - version: 2.0.0 - resolution: "@browserbasehq/sdk@npm:2.0.0" +"@jest/expect-utils@npm:^29.6.1": + version: 29.6.1 + resolution: "@jest/expect-utils@npm:29.6.1" dependencies: - "@types/node": ^18.11.18 - "@types/node-fetch": ^2.6.4 - abort-controller: ^3.0.0 - agentkeepalive: ^4.2.1 - form-data-encoder: 1.7.2 - formdata-node: ^4.3.2 - node-fetch: ^2.6.7 - checksum: f3ef62ff6817e5095ba1d2477b3ffcbfd7accf9cc1692b8d047803d4c854ad68521724c12af7df584589b9c04eb2fe95ec6f0a20114d1515363b814aa9d8b34e + jest-get-type: ^29.4.3 + checksum: 037ee017eca62f7b45e1465fb5c6f9e92d5709a9ac716b8bff0bd294240a54de734e8f968fb69309cc4aef6c83b9552d5a821f3b18371af394bf04783859d706 languageName: node linkType: hard -"@browserbasehq/stagehand@npm:^1.0.0, @browserbasehq/stagehand@npm:^1.3.0": - version: 1.3.0 - resolution: "@browserbasehq/stagehand@npm:1.3.0" +"@jest/expect-utils@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/expect-utils@npm:29.7.0" dependencies: - "@anthropic-ai/sdk": ^0.27.3 - "@browserbasehq/sdk": ^2.0.0 - anthropic: ^0.0.0 - anthropic-ai: ^0.0.10 - sharp: ^0.33.5 - zod-to-json-schema: ^3.23.3 - peerDependencies: - "@playwright/test": ^1.42.1 - deepmerge: ^4.3.1 - dotenv: ^16.4.5 - openai: ^4.62.1 - zod: ^3.23.8 - checksum: 16962b3a95af92f3d435b5ceca84a5f0728334c5b3ac327f862b09501a5ecc6465d305ce20856fdc5d83606c26f884b69676347e4524a38a5e20795ee3d4d30e + jest-get-type: ^29.6.3 + checksum: 75eb177f3d00b6331bcaa057e07c0ccb0733a1d0a1943e1d8db346779039cb7f103789f16e502f888a3096fb58c2300c38d1f3748b36a7fa762eb6f6d1b160ed languageName: node linkType: hard -"@bufbuild/protobuf@npm:^2.0.0": - version: 2.2.3 - resolution: "@bufbuild/protobuf@npm:2.2.3" - checksum: 567ca0497669a8944fe84a9fdfa236e4a91d5879190c0ec0c8727d5220cbc21a85d06a114ac1eb35387fc5cb1dcbb7adc583c4d4f6a2ecb34fbe61dcaa7e7e9b +"@jest/expect@npm:^29.5.0": + version: 29.5.0 + resolution: "@jest/expect@npm:29.5.0" + dependencies: + expect: ^29.5.0 + jest-snapshot: ^29.5.0 + checksum: bd10e295111547e6339137107d83986ab48d46561525393834d7d2d8b2ae9d5626653f3f5e48e5c3fa742ac982e97bdf1f541b53b9e1d117a247b08e938527f6 languageName: node linkType: hard -"@cerebras/cerebras_cloud_sdk@npm:^1.15.0": - version: 1.15.0 - resolution: "@cerebras/cerebras_cloud_sdk@npm:1.15.0" +"@jest/expect@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/expect@npm:29.7.0" dependencies: - "@types/node": ^18.11.18 - "@types/node-fetch": ^2.6.4 - abort-controller: ^3.0.0 - agentkeepalive: ^4.2.1 - form-data-encoder: 1.7.2 - formdata-node: ^4.3.2 - node-fetch: ^2.6.7 - checksum: 192b6c473fa2cf7d7b77b1523e935c21f0d8084365ec795e02a0dcb608e85a4b742c1584338311cad816c46b2f50772ab7b7902a2e5d5fd12800eae085db9b06 + expect: ^29.7.0 + jest-snapshot: ^29.7.0 + checksum: a01cb85fd9401bab3370618f4b9013b90c93536562222d920e702a0b575d239d74cecfe98010aaec7ad464f67cf534a353d92d181646a4b792acaa7e912ae55e languageName: node linkType: hard -"@cfworker/json-schema@npm:^4.0.2": - version: 4.0.2 - resolution: "@cfworker/json-schema@npm:4.0.2" - checksum: afde096ef9858fba7861c59017432a1842a243dcd50af1bc5d326ea47eb96c38f60792badbadb51595b16557e8d2f4a730b9012f568c79006248bcd454164e5b +"@jest/fake-timers@npm:^29.5.0": + version: 29.5.0 + resolution: "@jest/fake-timers@npm:29.5.0" + dependencies: + "@jest/types": ^29.5.0 + "@sinonjs/fake-timers": ^10.0.2 + "@types/node": "*" + jest-message-util: ^29.5.0 + jest-mock: ^29.5.0 + jest-util: ^29.5.0 + checksum: 69930c6922341f244151ec0d27640852ec96237f730fc024da1f53143d31b43cde75d92f9d8e5937981cdce3b31416abc3a7090a0d22c2377512c4a6613244ee languageName: node linkType: hard -"@chainsafe/is-ip@npm:^2.0.1": - version: 2.0.2 - resolution: "@chainsafe/is-ip@npm:2.0.2" - checksum: 2600350ba1c8fbad5d1ebee71317beeb29fbaebf43780d89e30f8c6c2d27b95ebdab0284dfbab7336b5eb6d8ffcc7081e3e4c5b221889dc366463f83bbe38adb +"@jest/fake-timers@npm:^29.6.4": + version: 29.6.4 + resolution: "@jest/fake-timers@npm:29.6.4" + dependencies: + "@jest/types": ^29.6.3 + "@sinonjs/fake-timers": ^10.0.2 + "@types/node": "*" + jest-message-util: ^29.6.3 + jest-mock: ^29.6.3 + jest-util: ^29.6.3 + checksum: 3f06d1090cbaaf781920fe59b10509ad86b587c401818a066ee1550101c6203e0718f0f83bbd2afa8bdf7b43eb280f89fb9f8c98886094e53ccabe5e64de9be1 languageName: node linkType: hard -"@chainsafe/netmask@npm:^2.0.0": - version: 2.0.0 - resolution: "@chainsafe/netmask@npm:2.0.0" +"@jest/fake-timers@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/fake-timers@npm:29.7.0" dependencies: - "@chainsafe/is-ip": ^2.0.1 - checksum: 90d27154c11ff878130150766ebfc490c829cd5249a61f7018fa4cefe3a18d92394285bb435c38bd0dbe45261006a82572e95ac201e9b28157de80127a6a3d06 + "@jest/types": ^29.6.3 + "@sinonjs/fake-timers": ^10.0.2 + "@types/node": "*" + jest-message-util: ^29.7.0 + jest-mock: ^29.7.0 + jest-util: ^29.7.0 + checksum: caf2bbd11f71c9241b458d1b5a66cbe95debc5a15d96442444b5d5c7ba774f523c76627c6931cca5e10e76f0d08761f6f1f01a608898f4751a0eee54fc3d8d00 languageName: node linkType: hard -"@clickhouse/client-common@npm:0.2.5": - version: 0.2.5 - resolution: "@clickhouse/client-common@npm:0.2.5" - checksum: fb5c941d13d5532e473827ea4624bc1130840d883d206096a3982a38ace40d1926d15f2dc4169ae5d0bb3538afbf97150c144956186dd3000d98d677821b698e +"@jest/globals@npm:^29.5.0": + version: 29.5.0 + resolution: "@jest/globals@npm:29.5.0" + dependencies: + "@jest/environment": ^29.5.0 + "@jest/expect": ^29.5.0 + "@jest/types": ^29.5.0 + jest-mock: ^29.5.0 + checksum: b309ab8f21b571a7c672608682e84bbdd3d2b554ddf81e4e32617fec0a69094a290ab42e3c8b2c66ba891882bfb1b8b2736720ea1285b3ad646d55c2abefedd9 languageName: node linkType: hard -"@clickhouse/client@npm:^0.2.5": - version: 0.2.5 - resolution: "@clickhouse/client@npm:0.2.5" +"@jest/globals@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/globals@npm:29.7.0" dependencies: - "@clickhouse/client-common": 0.2.5 - checksum: e91ee1564ee9fec5754817b6e332c07b75dc13cfee08db15ebd055921b1e3cfb7ec966f69211a84c092c3a94a09a1095ed12ffb4be566cc144ddc90261eb1965 + "@jest/environment": ^29.7.0 + "@jest/expect": ^29.7.0 + "@jest/types": ^29.6.3 + jest-mock: ^29.7.0 + checksum: 97dbb9459135693ad3a422e65ca1c250f03d82b2a77f6207e7fa0edd2c9d2015fbe4346f3dc9ebff1678b9d8da74754d4d440b7837497f8927059c0642a22123 languageName: node linkType: hard -"@cloudflare/ai@npm:1.0.12": - version: 1.0.12 - resolution: "@cloudflare/ai@npm:1.0.12" +"@jest/reporters@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/reporters@npm:29.7.0" dependencies: - json-schema-to-typescript: ^13.1.1 - checksum: bf196acd46ec8a39973aa74346ec9404a018a6599c9c65037e252bebbd648d936dbff6b4848717f9539bfd024826803a857df88ed138fa7ab697a4fafe41d966 + "@bcoe/v8-coverage": ^0.2.3 + "@jest/console": ^29.7.0 + "@jest/test-result": ^29.7.0 + "@jest/transform": ^29.7.0 + "@jest/types": ^29.6.3 + "@jridgewell/trace-mapping": ^0.3.18 + "@types/node": "*" + chalk: ^4.0.0 + collect-v8-coverage: ^1.0.0 + exit: ^0.1.2 + glob: ^7.1.3 + graceful-fs: ^4.2.9 + istanbul-lib-coverage: ^3.0.0 + istanbul-lib-instrument: ^6.0.0 + istanbul-lib-report: ^3.0.0 + istanbul-lib-source-maps: ^4.0.0 + istanbul-reports: ^3.1.3 + jest-message-util: ^29.7.0 + jest-util: ^29.7.0 + jest-worker: ^29.7.0 + slash: ^3.0.0 + string-length: ^4.0.1 + strip-ansi: ^6.0.0 + v8-to-istanbul: ^9.0.1 + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + checksum: 7eadabd62cc344f629024b8a268ecc8367dba756152b761bdcb7b7e570a3864fc51b2a9810cd310d85e0a0173ef002ba4528d5ea0329fbf66ee2a3ada9c40455 languageName: node linkType: hard -"@cloudflare/workers-types@npm:^4.20230922.0": - version: 4.20230922.0 - resolution: "@cloudflare/workers-types@npm:4.20230922.0" - checksum: 629bab47cdbcb74e3c42fc9486f5186734b6dd734154cea7a0983ad83ee053b4fb1ae13ff618a7287612bc3b3d19ad72d6a34a84289a903623cb8a13af57596b +"@jest/schemas@npm:^29.4.3": + version: 29.4.3 + resolution: "@jest/schemas@npm:29.4.3" + dependencies: + "@sinclair/typebox": ^0.25.16 + checksum: ac754e245c19dc39e10ebd41dce09040214c96a4cd8efa143b82148e383e45128f24599195ab4f01433adae4ccfbe2db6574c90db2862ccd8551a86704b5bebd languageName: node linkType: hard -"@cloudflare/workers-types@npm:^4.20240909.0": - version: 4.20240909.0 - resolution: "@cloudflare/workers-types@npm:4.20240909.0" - checksum: 82fe9b22510d6a23533830684018651bf8a679692cc487cf82d15816e4c91b95ca5e759a6702d6b1268cd93cda8f0b45f3bf9e6ac27e926112ed4f3c7ef65968 +"@jest/schemas@npm:^29.6.0": + version: 29.6.0 + resolution: "@jest/schemas@npm:29.6.0" + dependencies: + "@sinclair/typebox": ^0.27.8 + checksum: c00511c69cf89138a7d974404d3a5060af375b5a52b9c87215d91873129b382ca11c1ff25bd6d605951404bb381ddce5f8091004a61e76457da35db1f5c51365 languageName: node linkType: hard -"@colors/colors@npm:1.5.0": - version: 1.5.0 - resolution: "@colors/colors@npm:1.5.0" - checksum: d64d5260bed1d5012ae3fc617d38d1afc0329fec05342f4e6b838f46998855ba56e0a73833f4a80fa8378c84810da254f76a8a19c39d038260dc06dc4e007425 +"@jest/schemas@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/schemas@npm:29.6.3" + dependencies: + "@sinclair/typebox": ^0.27.8 + checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93 languageName: node linkType: hard -"@couchbase/couchbase-darwin-arm64-napi@npm:4.4.2": - version: 4.4.2 - resolution: "@couchbase/couchbase-darwin-arm64-napi@npm:4.4.2" - conditions: os=darwin & cpu=arm64 +"@jest/source-map@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/source-map@npm:29.6.3" + dependencies: + "@jridgewell/trace-mapping": ^0.3.18 + callsites: ^3.0.0 + graceful-fs: ^4.2.9 + checksum: bcc5a8697d471396c0003b0bfa09722c3cd879ad697eb9c431e6164e2ea7008238a01a07193dfe3cbb48b1d258eb7251f6efcea36f64e1ebc464ea3c03ae2deb languageName: node linkType: hard -"@couchbase/couchbase-darwin-x64-napi@npm:4.4.2": - version: 4.4.2 - resolution: "@couchbase/couchbase-darwin-x64-napi@npm:4.4.2" - conditions: os=darwin & cpu=x64 +"@jest/test-result@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/test-result@npm:29.7.0" + dependencies: + "@jest/console": ^29.7.0 + "@jest/types": ^29.6.3 + "@types/istanbul-lib-coverage": ^2.0.0 + collect-v8-coverage: ^1.0.0 + checksum: 67b6317d526e335212e5da0e768e3b8ab8a53df110361b80761353ad23b6aea4432b7c5665bdeb87658ea373b90fb1afe02ed3611ef6c858c7fba377505057fa languageName: node linkType: hard -"@couchbase/couchbase-linux-arm64-napi@npm:4.4.2": - version: 4.4.2 - resolution: "@couchbase/couchbase-linux-arm64-napi@npm:4.4.2" - conditions: os=linux & cpu=arm64 +"@jest/test-sequencer@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/test-sequencer@npm:29.7.0" + dependencies: + "@jest/test-result": ^29.7.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.7.0 + slash: ^3.0.0 + checksum: 73f43599017946be85c0b6357993b038f875b796e2f0950487a82f4ebcb115fa12131932dd9904026b4ad8be131fe6e28bd8d0aa93b1563705185f9804bff8bd languageName: node linkType: hard -"@couchbase/couchbase-linux-x64-napi@npm:4.4.2": - version: 4.4.2 - resolution: "@couchbase/couchbase-linux-x64-napi@npm:4.4.2" - conditions: os=linux & cpu=x64 +"@jest/transform@npm:^29.5.0": + version: 29.5.0 + resolution: "@jest/transform@npm:29.5.0" + dependencies: + "@babel/core": ^7.11.6 + "@jest/types": ^29.5.0 + "@jridgewell/trace-mapping": ^0.3.15 + babel-plugin-istanbul: ^6.1.1 + chalk: ^4.0.0 + convert-source-map: ^2.0.0 + fast-json-stable-stringify: ^2.1.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.5.0 + jest-regex-util: ^29.4.3 + jest-util: ^29.5.0 + micromatch: ^4.0.4 + pirates: ^4.0.4 + slash: ^3.0.0 + write-file-atomic: ^4.0.2 + checksum: d55d604085c157cf5112e165ff5ac1fa788873b3b31265fb4734ca59892ee24e44119964cc47eb6d178dd9512bbb6c576d1e20e51a201ff4e24d31e818a1c92d languageName: node linkType: hard -"@couchbase/couchbase-linuxmusl-arm64-napi@npm:4.4.2": - version: 4.4.2 - resolution: "@couchbase/couchbase-linuxmusl-arm64-napi@npm:4.4.2" - conditions: os=linux & cpu=arm64 +"@jest/transform@npm:^29.7.0": + version: 29.7.0 + resolution: "@jest/transform@npm:29.7.0" + dependencies: + "@babel/core": ^7.11.6 + "@jest/types": ^29.6.3 + "@jridgewell/trace-mapping": ^0.3.18 + babel-plugin-istanbul: ^6.1.1 + chalk: ^4.0.0 + convert-source-map: ^2.0.0 + fast-json-stable-stringify: ^2.1.0 + graceful-fs: ^4.2.9 + jest-haste-map: ^29.7.0 + jest-regex-util: ^29.6.3 + jest-util: ^29.7.0 + micromatch: ^4.0.4 + pirates: ^4.0.4 + slash: ^3.0.0 + write-file-atomic: ^4.0.2 + checksum: 0f8ac9f413903b3cb6d240102db848f2a354f63971ab885833799a9964999dd51c388162106a807f810071f864302cdd8e3f0c241c29ce02d85a36f18f3f40ab languageName: node linkType: hard -"@couchbase/couchbase-linuxmusl-x64-napi@npm:4.4.2": - version: 4.4.2 - resolution: "@couchbase/couchbase-linuxmusl-x64-napi@npm:4.4.2" - conditions: os=linux & cpu=x64 +"@jest/types@npm:^27.5.1": + version: 27.5.1 + resolution: "@jest/types@npm:27.5.1" + dependencies: + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^16.0.0 + chalk: ^4.0.0 + checksum: d1f43cc946d87543ddd79d49547aab2399481d34025d5c5f2025d3d99c573e1d9832fa83cef25e9d9b07a8583500229d15bbb07b8e233d127d911d133e2f14b1 languageName: node linkType: hard -"@couchbase/couchbase-win32-x64-napi@npm:4.4.2": - version: 4.4.2 - resolution: "@couchbase/couchbase-win32-x64-napi@npm:4.4.2" - conditions: os=win32 & cpu=x64 +"@jest/types@npm:^29.5.0": + version: 29.5.0 + resolution: "@jest/types@npm:29.5.0" + dependencies: + "@jest/schemas": ^29.4.3 + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^17.0.8 + chalk: ^4.0.0 + checksum: 1811f94b19cf8a9460a289c4f056796cfc373480e0492692a6125a553cd1a63824bd846d7bb78820b7b6f758f6dd3c2d4558293bb676d541b2fa59c70fdf9d39 languageName: node linkType: hard -"@crawlee/types@npm:^3.3.0": - version: 3.3.1 - resolution: "@crawlee/types@npm:3.3.1" +"@jest/types@npm:^29.6.1": + version: 29.6.1 + resolution: "@jest/types@npm:29.6.1" dependencies: - tslib: ^2.4.0 - checksum: da8042b4876c88ad4e0b3f811851e1a861d3736f7e1de1610a745b54b752f140ed3c7ce4723339a22e4de1a9ef7ffc36ad6b82d334b7b7991394cd6934603a44 + "@jest/schemas": ^29.6.0 + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^17.0.8 + chalk: ^4.0.0 + checksum: 89fc1ccf71a84fe0da643e0675b1cfe6a6f19ea72e935b2ab1dbdb56ec547e94433fb59b3536d3832a6e156c077865b7176fe9dae707dab9c3d2f9405ba6233c languageName: node linkType: hard -"@dabh/diagnostics@npm:^2.0.2": - version: 2.0.3 - resolution: "@dabh/diagnostics@npm:2.0.3" +"@jest/types@npm:^29.6.3": + version: 29.6.3 + resolution: "@jest/types@npm:29.6.3" dependencies: - colorspace: 1.1.x - enabled: 2.0.x - kuler: ^2.0.0 - checksum: 4879600c55c8315a0fb85fbb19057bad1adc08f0a080a8cb4e2b63f723c379bfc4283b68123a2b078d367b327dd8df12fcb27464efe791addc0a48b9df6d79a1 + "@jest/schemas": ^29.6.3 + "@types/istanbul-lib-coverage": ^2.0.0 + "@types/istanbul-reports": ^3.0.0 + "@types/node": "*" + "@types/yargs": ^17.0.8 + chalk: ^4.0.0 + checksum: a0bcf15dbb0eca6bdd8ce61a3fb055349d40268622a7670a3b2eb3c3dbafe9eb26af59938366d520b86907b9505b0f9b29b85cec11579a9e580694b87cd90fcc languageName: node linkType: hard -"@datastax/astra-db-ts@npm:^1.0.1": - version: 1.0.1 - resolution: "@datastax/astra-db-ts@npm:1.0.1" +"@jridgewell/gen-mapping@npm:^0.1.0": + version: 0.1.1 + resolution: "@jridgewell/gen-mapping@npm:0.1.1" dependencies: - bson-objectid: ^2.0.4 - fetch-h2: ^3.0.2 - object-hash: ^3.0.0 - typed-emitter: ^2.1.0 - uuidv7: ^0.6.3 - checksum: 23ad42dc978edc5bd473252ed690dd38e75be8451e32b1f0cd35c47003ec9b048a9cd8fcd0b6b0c58654fbdceba6c1e3e566bbf4e550342d2e76c471079b395a + "@jridgewell/set-array": ^1.0.0 + "@jridgewell/sourcemap-codec": ^1.4.10 + checksum: 3bcc21fe786de6ffbf35c399a174faab05eb23ce6a03e8769569de28abbf4facc2db36a9ddb0150545ae23a8d35a7cf7237b2aa9e9356a7c626fb4698287d5cc languageName: node linkType: hard -"@discordjs/builders@npm:^1.7.0": - version: 1.7.0 - resolution: "@discordjs/builders@npm:1.7.0" +"@jridgewell/gen-mapping@npm:^0.3.0": + version: 0.3.3 + resolution: "@jridgewell/gen-mapping@npm:0.3.3" dependencies: - "@discordjs/formatters": ^0.3.3 - "@discordjs/util": ^1.0.2 - "@sapphire/shapeshift": ^3.9.3 - discord-api-types: 0.37.61 - fast-deep-equal: ^3.1.3 - ts-mixer: ^6.0.3 - tslib: ^2.6.2 - checksum: 837e7643fc8396e4914bbbfbbfa1232ab7109c931884e8df45cd7356944633590f710a18513d30a10de1b6686ed5166df702bde0c4511fb0cbcac897edd9e56a + "@jridgewell/set-array": ^1.0.1 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab languageName: node linkType: hard -"@discordjs/collection@npm:1.5.3": - version: 1.5.3 - resolution: "@discordjs/collection@npm:1.5.3" - checksum: fefed19bea0f69053d195f9d9dc8af07ca5d8c9b1064581e0aa14bda2b70e632b93c164d5ef3e4910f5442369612ff4eec8d52a700aec562510c19b223f67023 +"@jridgewell/gen-mapping@npm:^0.3.2": + version: 0.3.2 + resolution: "@jridgewell/gen-mapping@npm:0.3.2" + dependencies: + "@jridgewell/set-array": ^1.0.1 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: 1832707a1c476afebe4d0fbbd4b9434fdb51a4c3e009ab1e9938648e21b7a97049fa6009393bdf05cab7504108413441df26d8a3c12193996e65493a4efb6882 languageName: node linkType: hard -"@discordjs/collection@npm:^2.0.0": - version: 2.0.0 - resolution: "@discordjs/collection@npm:2.0.0" - checksum: c2d05fa2b9a27bb64e93e2836bbe44c835d21f85e28cd934f6e2a81fef423ab0415968cca9d066b83347539edc8ea9afa8075d80bd62594e39f09eb881052c49 +"@jridgewell/gen-mapping@npm:^0.3.5": + version: 0.3.5 + resolution: "@jridgewell/gen-mapping@npm:0.3.5" + dependencies: + "@jridgewell/set-array": ^1.2.1 + "@jridgewell/sourcemap-codec": ^1.4.10 + "@jridgewell/trace-mapping": ^0.3.24 + checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52 languageName: node linkType: hard -"@discordjs/formatters@npm:^0.3.3": - version: 0.3.3 - resolution: "@discordjs/formatters@npm:0.3.3" - dependencies: - discord-api-types: 0.37.61 - checksum: a844628094a6effa8ac4e4a4ea9082d5c89e6cae6bbd18e60abd410769e5ea18f64aa2db8623aa3c8c572084368f6c2e27cc2d72af640aff5e4ee7fc42132c60 +"@jridgewell/resolve-uri@npm:3.1.0": + version: 3.1.0 + resolution: "@jridgewell/resolve-uri@npm:3.1.0" + checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267 languageName: node linkType: hard -"@discordjs/rest@npm:^2.1.0": - version: 2.2.0 - resolution: "@discordjs/rest@npm:2.2.0" - dependencies: - "@discordjs/collection": ^2.0.0 - "@discordjs/util": ^1.0.2 - "@sapphire/async-queue": ^1.5.0 - "@sapphire/snowflake": ^3.5.1 - "@vladfrangu/async_event_emitter": ^2.2.2 - discord-api-types: 0.37.61 - magic-bytes.js: ^1.5.0 - tslib: ^2.6.2 - undici: 5.27.2 - checksum: 29a14ecf3282ae3306883f1f6c870693d0ecacd080c5b66a72e31487a8070655807a80a8bf09bebea4f73e631439abc5121dfa38016ca0ccbe3f68c0f7ffc80e +"@jridgewell/resolve-uri@npm:^3.1.0": + version: 3.1.2 + resolution: "@jridgewell/resolve-uri@npm:3.1.2" + checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870 languageName: node linkType: hard -"@discordjs/util@npm:^1.0.2": - version: 1.0.2 - resolution: "@discordjs/util@npm:1.0.2" - checksum: 320d7e125981001160d413ae56e76e60447dce102010b80e3b1b16d885be765df5ae2551aa79fdc4d435a82361ed72246b44251f0c1f7a8fef7056a4481d5609 +"@jridgewell/set-array@npm:^1.0.0, @jridgewell/set-array@npm:^1.0.1": + version: 1.1.2 + resolution: "@jridgewell/set-array@npm:1.1.2" + checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e languageName: node linkType: hard -"@discordjs/ws@npm:^1.0.2": - version: 1.0.2 - resolution: "@discordjs/ws@npm:1.0.2" +"@jridgewell/set-array@npm:^1.2.1": + version: 1.2.1 + resolution: "@jridgewell/set-array@npm:1.2.1" + checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10 + languageName: node + linkType: hard + +"@jridgewell/source-map@npm:^0.3.3": + version: 0.3.5 + resolution: "@jridgewell/source-map@npm:0.3.5" dependencies: - "@discordjs/collection": ^2.0.0 - "@discordjs/rest": ^2.1.0 - "@discordjs/util": ^1.0.2 - "@sapphire/async-queue": ^1.5.0 - "@types/ws": ^8.5.9 - "@vladfrangu/async_event_emitter": ^2.2.2 - discord-api-types: 0.37.61 - tslib: ^2.6.2 - ws: ^8.14.2 - checksum: 2564d3ff00d04d7638955c8c9a9f6234c50168fbe8243140bc458dc9ffa39ad5063e7d5762cdce71bb8bcf70b6353c28b8531e40f54568706898e92bc8748590 + "@jridgewell/gen-mapping": ^0.3.0 + "@jridgewell/trace-mapping": ^0.3.9 + checksum: 1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f languageName: node linkType: hard -"@discoveryjs/json-ext@npm:0.5.7": - version: 0.5.7 - resolution: "@discoveryjs/json-ext@npm:0.5.7" - checksum: 2176d301cc258ea5c2324402997cf8134ebb212469c0d397591636cea8d3c02f2b3cf9fd58dcb748c7a0dade77ebdc1b10284fa63e608c033a1db52fddc69918 +"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10": + version: 1.4.14 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.14" + checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97 languageName: node linkType: hard -"@docsearch/css@npm:3.5.2": - version: 3.5.2 - resolution: "@docsearch/css@npm:3.5.2" - checksum: d1d60dd230dd48f896755f21bd20b59583ba844212d7d336953ae48d389baaf868bdf83320fb734a4ed679c3f95b15d620cf3764cd538f6941cae239f8c9d35d +"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15": + version: 1.4.15 + resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" + checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 languageName: node linkType: hard -"@docsearch/react@npm:^3.1.1": - version: 3.5.2 - resolution: "@docsearch/react@npm:3.5.2" +"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.15, @jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9": + version: 0.3.17 + resolution: "@jridgewell/trace-mapping@npm:0.3.17" dependencies: - "@algolia/autocomplete-core": 1.9.3 - "@algolia/autocomplete-preset-algolia": 1.9.3 - "@docsearch/css": 3.5.2 - algoliasearch: ^4.19.1 - peerDependencies: - "@types/react": ">= 16.8.0 < 19.0.0" - react: ">= 16.8.0 < 19.0.0" - react-dom: ">= 16.8.0 < 19.0.0" - search-insights: ">= 1 < 3" - peerDependenciesMeta: - "@types/react": - optional: true - react: - optional: true - react-dom: - optional: true - search-insights: - optional: true - checksum: 4b4584c2c73fc18cbd599047538896450974e134c2c74f19eb202db0ce8e6c3c49c6f65ed6ade61c796d476d3cbb55d6be58df62bc9568a0c72d88e42fca1d16 + "@jridgewell/resolve-uri": 3.1.0 + "@jridgewell/sourcemap-codec": 1.4.14 + checksum: 9d703b859cff5cd83b7308fd457a431387db5db96bd781a63bf48e183418dd9d3d44e76b9e4ae13237f6abeeb25d739ec9215c1d5bfdd08f66f750a50074a339 languageName: node linkType: hard -"@docusaurus/core@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/core@npm:2.4.3" +"@jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": + version: 0.3.25 + resolution: "@jridgewell/trace-mapping@npm:0.3.25" dependencies: - "@babel/core": ^7.18.6 - "@babel/generator": ^7.18.7 - "@babel/plugin-syntax-dynamic-import": ^7.8.3 - "@babel/plugin-transform-runtime": ^7.18.6 - "@babel/preset-env": ^7.18.6 - "@babel/preset-react": ^7.18.6 - "@babel/preset-typescript": ^7.18.6 - "@babel/runtime": ^7.18.6 - "@babel/runtime-corejs3": ^7.18.6 - "@babel/traverse": ^7.18.8 - "@docusaurus/cssnano-preset": 2.4.3 - "@docusaurus/logger": 2.4.3 - "@docusaurus/mdx-loader": 2.4.3 - "@docusaurus/react-loadable": 5.5.2 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-common": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - "@slorber/static-site-generator-webpack-plugin": ^4.0.7 - "@svgr/webpack": ^6.2.1 - autoprefixer: ^10.4.7 - babel-loader: ^8.2.5 - babel-plugin-dynamic-import-node: ^2.3.3 - boxen: ^6.2.1 - chalk: ^4.1.2 - chokidar: ^3.5.3 - clean-css: ^5.3.0 - cli-table3: ^0.6.2 - combine-promises: ^1.1.0 - commander: ^5.1.0 - copy-webpack-plugin: ^11.0.0 - core-js: ^3.23.3 - css-loader: ^6.7.1 - css-minimizer-webpack-plugin: ^4.0.0 - cssnano: ^5.1.12 - del: ^6.1.1 - detect-port: ^1.3.0 - escape-html: ^1.0.3 - eta: ^2.0.0 - file-loader: ^6.2.0 - fs-extra: ^10.1.0 - html-minifier-terser: ^6.1.0 - html-tags: ^3.2.0 - html-webpack-plugin: ^5.5.0 - import-fresh: ^3.3.0 - leven: ^3.1.0 - lodash: ^4.17.21 - mini-css-extract-plugin: ^2.6.1 - postcss: ^8.4.14 - postcss-loader: ^7.0.0 - prompts: ^2.4.2 - react-dev-utils: ^12.0.1 - react-helmet-async: ^1.3.0 - react-loadable: "npm:@docusaurus/react-loadable@5.5.2" - react-loadable-ssr-addon-v5-slorber: ^1.0.1 - react-router: ^5.3.3 - react-router-config: ^5.1.1 - react-router-dom: ^5.3.3 - rtl-detect: ^1.0.4 - semver: ^7.3.7 - serve-handler: ^6.1.3 - shelljs: ^0.8.5 - terser-webpack-plugin: ^5.3.3 - tslib: ^2.4.0 - update-notifier: ^5.1.0 - url-loader: ^4.1.1 - wait-on: ^6.0.1 - webpack: ^5.73.0 - webpack-bundle-analyzer: ^4.5.0 - webpack-dev-server: ^4.9.3 - webpack-merge: ^5.8.0 - webpackbar: ^5.0.2 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - bin: - docusaurus: bin/docusaurus.mjs - checksum: cce7173ee131364857c16f70f94155ba0e1b044cde54045fb0cf62ad138f8d8ef093f5aba7c7617a9aa0545b3ee3930aec2e09f645daec015696968338963013 + "@jridgewell/resolve-uri": ^3.1.0 + "@jridgewell/sourcemap-codec": ^1.4.14 + checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34 languageName: node linkType: hard -"@docusaurus/cssnano-preset@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/cssnano-preset@npm:2.4.3" - dependencies: - cssnano-preset-advanced: ^5.3.8 - postcss: ^8.4.14 - postcss-sort-media-queries: ^4.2.1 - tslib: ^2.4.0 - checksum: f4a4c60b075c23541da90e00ae26af2e7eaadf20d783b37b9110a5e34599e4e91947425e33bad58ba71abee81c85cca99f5d7d76575f53fbaf73617b55e39c62 +"@js-sdsl/ordered-map@npm:^4.4.2": + version: 4.4.2 + resolution: "@js-sdsl/ordered-map@npm:4.4.2" + checksum: a927ae4ff8565ecb75355cc6886a4f8fadbf2af1268143c96c0cce3ba01261d241c3f4ba77f21f3f017a00f91dfe9e0673e95f830255945c80a0e96c6d30508a languageName: node linkType: hard -"@docusaurus/logger@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/logger@npm:2.4.3" - dependencies: - chalk: ^4.1.2 - tslib: ^2.4.0 - checksum: f026a8233aa317f16ce5b25c6785a431f319c52fc07a1b9e26f4b3df2197974e75830a16b6140314f8f4ef02dc19242106ec2ae1599740b26d516cc34c56102f +"@jsdevtools/ono@npm:^7.1.3": + version: 7.1.3 + resolution: "@jsdevtools/ono@npm:7.1.3" + checksum: 2297fcd472ba810bffe8519d2249171132844c7174f3a16634f9260761c8c78bc0428a4190b5b6d72d45673c13918ab9844d706c3ed4ef8f62ab11a2627a08ad languageName: node linkType: hard -"@docusaurus/mdx-loader@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/mdx-loader@npm:2.4.3" +"@kwsites/file-exists@npm:^1.1.1": + version: 1.1.1 + resolution: "@kwsites/file-exists@npm:1.1.1" dependencies: - "@babel/parser": ^7.18.8 - "@babel/traverse": ^7.18.8 - "@docusaurus/logger": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@mdx-js/mdx": ^1.6.22 - escape-html: ^1.0.3 - file-loader: ^6.2.0 - fs-extra: ^10.1.0 - image-size: ^1.0.1 - mdast-util-to-string: ^2.0.0 - remark-emoji: ^2.2.0 - stringify-object: ^3.3.0 - tslib: ^2.4.0 - unified: ^9.2.2 - unist-util-visit: ^2.0.3 - url-loader: ^4.1.1 - webpack: ^5.73.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 5a774f7ea5f484e888b2bd1bf8b182279e3788afec779eb8920cf468b92ab8d83a1ae8be51925074241a4d1a38d989cfb366d2baf0f67ed6f063342395a7ca8e + debug: ^4.1.1 + checksum: 4ff945de7293285133aeae759caddc71e73c4a44a12fac710fdd4f574cce2671a3f89d8165fdb03d383cfc97f3f96f677d8de3c95133da3d0e12a123a23109fe languageName: node linkType: hard -"@docusaurus/module-type-aliases@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/module-type-aliases@npm:2.4.3" - dependencies: - "@docusaurus/react-loadable": 5.5.2 - "@docusaurus/types": 2.4.3 - "@types/history": ^4.7.11 - "@types/react": "*" - "@types/react-router-config": "*" - "@types/react-router-dom": "*" - react-helmet-async: "*" - react-loadable: "npm:@docusaurus/react-loadable@5.5.2" - peerDependencies: - react: "*" - react-dom: "*" - checksum: 22ce1a6a20acc35cdd2ec57e55f29e65dbe0fb3a46aaa8c033ec78bf04cd3087f0523c816c744ed311095512dd686c83e0a8619cc1a2a937c27cd54527739c38 +"@kwsites/promise-deferred@npm:^1.1.1": + version: 1.1.1 + resolution: "@kwsites/promise-deferred@npm:1.1.1" + checksum: 07455477a0123d9a38afb503739eeff2c5424afa8d3dbdcc7f9502f13604488a4b1d9742fc7288832a52a6422cf1e1c0a1d51f69a39052f14d27c9a0420b6629 languageName: node linkType: hard -"@docusaurus/plugin-content-blog@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-content-blog@npm:2.4.3" - dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/logger": 2.4.3 - "@docusaurus/mdx-loader": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-common": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - cheerio: ^1.0.0-rc.12 - feed: ^4.2.2 - fs-extra: ^10.1.0 - lodash: ^4.17.21 - reading-time: ^1.5.0 - tslib: ^2.4.0 - unist-util-visit: ^2.0.3 - utility-types: ^3.10.0 - webpack: ^5.73.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 9fd41331c609b9488eea363e617e3763a814c75f83eb1b858cef402a0f5b96f67a342e25ff8c333489e550eb4d379eae09a88b986a97c25170fe203662e2f1ae - languageName: node - linkType: hard - -"@docusaurus/plugin-content-docs@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-content-docs@npm:2.4.3" - dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/logger": 2.4.3 - "@docusaurus/mdx-loader": 2.4.3 - "@docusaurus/module-type-aliases": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - "@types/react-router-config": ^5.0.6 - combine-promises: ^1.1.0 - fs-extra: ^10.1.0 - import-fresh: ^3.3.0 - js-yaml: ^4.1.0 - lodash: ^4.17.21 - tslib: ^2.4.0 - utility-types: ^3.10.0 - webpack: ^5.73.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: bc01201f64721131eb84f264e51c7497b8034d2a3d99d762169f5dc456c3d8882acfa01fdbaa8fdc6e2e220479b36e0c9e8e17397bf887884589535bdeaeb4bb +"@lancedb/lancedb-darwin-arm64@npm:0.13.0": + version: 0.13.0 + resolution: "@lancedb/lancedb-darwin-arm64@npm:0.13.0" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@docusaurus/plugin-content-pages@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-content-pages@npm:2.4.3" - dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/mdx-loader": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - fs-extra: ^10.1.0 - tslib: ^2.4.0 - webpack: ^5.73.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 00439c2e1a1f345cd549739db13a3610b6d9f7ffa6cf7507ad6ac1f3c8d24041947acc2a446be7edf1a613cf354a50d1133aa28ddf64a0eff6ed8a31bf1a542f +"@lancedb/lancedb-darwin-x64@npm:0.13.0": + version: 0.13.0 + resolution: "@lancedb/lancedb-darwin-x64@npm:0.13.0" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@docusaurus/plugin-debug@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-debug@npm:2.4.3" - dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils": 2.4.3 - fs-extra: ^10.1.0 - react-json-view: ^1.21.3 - tslib: ^2.4.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 88955828b72e463e04501cc6bedf802208e377ae0f4d72735625bcbb47918afc4f2588355c6914064cfdbe4945d3da6473ce76319aa1f66dd975b3b43c4c39b0 +"@lancedb/lancedb-linux-arm64-gnu@npm:0.13.0": + version: 0.13.0 + resolution: "@lancedb/lancedb-linux-arm64-gnu@npm:0.13.0" + conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@docusaurus/plugin-google-analytics@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-google-analytics@npm:2.4.3" - dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - tslib: ^2.4.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 6e30de6b5c479493614a5552a295f07ffb9c83f3740a68c7d4dbac378b8288da7430f26cdc246d763855c6084ad86a6f87286e6c8b40f4817794bb1a04e109ea +"@lancedb/lancedb-linux-x64-gnu@npm:0.13.0": + version: 0.13.0 + resolution: "@lancedb/lancedb-linux-x64-gnu@npm:0.13.0" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@docusaurus/plugin-google-gtag@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-google-gtag@npm:2.4.3" - dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - tslib: ^2.4.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 4aaac4d262b3bb7fc3f16620c5329b90db92bf28361ced54f2945fc0e4669483e2f36b076332e0ee9d11b6233cd2c81ca35c953119bad42171e62571c1692d6a +"@lancedb/lancedb-win32-x64-msvc@npm:0.13.0": + version: 0.13.0 + resolution: "@lancedb/lancedb-win32-x64-msvc@npm:0.13.0" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@docusaurus/plugin-google-tag-manager@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-google-tag-manager@npm:2.4.3" +"@lancedb/lancedb@npm:^0.13.0": + version: 0.13.0 + resolution: "@lancedb/lancedb@npm:0.13.0" dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - tslib: ^2.4.0 + "@lancedb/lancedb-darwin-arm64": 0.13.0 + "@lancedb/lancedb-darwin-x64": 0.13.0 + "@lancedb/lancedb-linux-arm64-gnu": 0.13.0 + "@lancedb/lancedb-linux-x64-gnu": 0.13.0 + "@lancedb/lancedb-win32-x64-msvc": 0.13.0 + reflect-metadata: ^0.2.2 peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: c3af89b4d41fab463d853cbfbe8f43d384f702dd09fd914fffcca01fdf94c282d1b98d762c9142fe21f6471f5dd643679e8d11344c95fdf6657aff0618c3c7a5 + apache-arrow: ">=13.0.0 <=17.0.0" + dependenciesMeta: + "@lancedb/lancedb-darwin-arm64": + optional: true + "@lancedb/lancedb-darwin-x64": + optional: true + "@lancedb/lancedb-linux-arm64-gnu": + optional: true + "@lancedb/lancedb-linux-x64-gnu": + optional: true + "@lancedb/lancedb-win32-x64-msvc": + optional: true + conditions: (os=darwin | os=linux | os=win32) & (cpu=x64 | cpu=arm64) languageName: node linkType: hard -"@docusaurus/plugin-sitemap@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/plugin-sitemap@npm:2.4.3" +"@langchain/anthropic@*, @langchain/anthropic@workspace:*, @langchain/anthropic@workspace:libs/langchain-anthropic": + version: 0.0.0-use.local + resolution: "@langchain/anthropic@workspace:libs/langchain-anthropic" dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/logger": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-common": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - fs-extra: ^10.1.0 - sitemap: ^7.1.1 - tslib: ^2.4.0 + "@anthropic-ai/sdk": ^0.36.3 + "@anthropic-ai/vertex-sdk": ^0.4.1 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-jest: ^27.6.0 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + fast-xml-parser: ^4.4.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rimraf: ^5.0.1 + ts-jest: ^29.1.0 + typescript: ~5.1.6 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.4 peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: cf96b9f0e32cefa58e37a4bc2f0a112ea657f06faf47b780ec2ba39d5e2daca6486a73f3b376c56ad3bb42f3f0c3f70a783f1ce1964b74e2ba273e6f439e439b - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/preset-classic@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/preset-classic@npm:2.4.3" +"@langchain/aws@*, @langchain/aws@workspace:*, @langchain/aws@workspace:libs/langchain-aws": + version: 0.0.0-use.local + resolution: "@langchain/aws@workspace:libs/langchain-aws" dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/plugin-content-blog": 2.4.3 - "@docusaurus/plugin-content-docs": 2.4.3 - "@docusaurus/plugin-content-pages": 2.4.3 - "@docusaurus/plugin-debug": 2.4.3 - "@docusaurus/plugin-google-analytics": 2.4.3 - "@docusaurus/plugin-google-gtag": 2.4.3 - "@docusaurus/plugin-google-tag-manager": 2.4.3 - "@docusaurus/plugin-sitemap": 2.4.3 - "@docusaurus/theme-classic": 2.4.3 - "@docusaurus/theme-common": 2.4.3 - "@docusaurus/theme-search-algolia": 2.4.3 - "@docusaurus/types": 2.4.3 + "@aws-sdk/client-bedrock-agent-runtime": ^3.749.0 + "@aws-sdk/client-bedrock-runtime": ^3.749.0 + "@aws-sdk/client-kendra": ^3.749.0 + "@aws-sdk/credential-provider-node": ^3.749.0 + "@aws-sdk/types": ^3.734.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@smithy/types": ^3.2.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.5 peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: a321badc44696adf4ab2d4a5d6c93f595e8c17988aec9609d325928a1d60f5e0205b23fe849b28ddaed24f7935829e86c402f6b761d6e65db4224270b9dd443c - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/react-loadable@npm:5.5.2, react-loadable@npm:@docusaurus/react-loadable@5.5.2": - version: 5.5.2 - resolution: "@docusaurus/react-loadable@npm:5.5.2" +"@langchain/azure-cosmosdb@workspace:*, @langchain/azure-cosmosdb@workspace:libs/langchain-azure-cosmosdb": + version: 0.0.0-use.local + resolution: "@langchain/azure-cosmosdb@workspace:libs/langchain-azure-cosmosdb" dependencies: - "@types/react": "*" - prop-types: ^15.6.2 - peerDependencies: - react: "*" - checksum: 930fb9e2936412a12461f210acdc154a433283921ca43ac3fc3b84cb6c12eb738b3a3719373022bf68004efeb1a928dbe36c467d7a1f86454ed6241576d936e7 - languageName: node - linkType: hard + "@azure/cosmos": ^4.2.0 + "@azure/identity": ^4.5.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": "workspace:^" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.4.5 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + mongodb: ^6.10.0 + prettier: ^2.8.3 + release-it: ^15.10.1 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/remark-plugin-npm2yarn@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/remark-plugin-npm2yarn@npm:2.4.3" +"@langchain/azure-dynamic-sessions@workspace:^, @langchain/azure-dynamic-sessions@workspace:libs/langchain-azure-dynamic-sessions": + version: 0.0.0-use.local + resolution: "@langchain/azure-dynamic-sessions@workspace:libs/langchain-azure-dynamic-sessions" dependencies: - npm-to-yarn: ^2.0.0 - tslib: ^2.4.1 - unist-util-visit: ^2.0.3 - checksum: 8bc17fbcfaac11ca3a8ff9ffabfb3cda0e37173e9ceee64dc8a18f87822f71a4dbef942355ed2ebf9a05e760514c60945fdd3ecf19bf579963884454faebe948 - languageName: node - linkType: hard + "@azure/identity": ^4.2.1 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.4.5 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/theme-classic@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/theme-classic@npm:2.4.3" +"@langchain/azure-openai@workspace:*, @langchain/azure-openai@workspace:libs/langchain-azure-openai": + version: 0.0.0-use.local + resolution: "@langchain/azure-openai@workspace:libs/langchain-azure-openai" dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/mdx-loader": 2.4.3 - "@docusaurus/module-type-aliases": 2.4.3 - "@docusaurus/plugin-content-blog": 2.4.3 - "@docusaurus/plugin-content-docs": 2.4.3 - "@docusaurus/plugin-content-pages": 2.4.3 - "@docusaurus/theme-common": 2.4.3 - "@docusaurus/theme-translations": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-common": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - "@mdx-js/react": ^1.6.22 - clsx: ^1.2.1 - copy-text-to-clipboard: ^3.0.1 - infima: 0.2.0-alpha.43 - lodash: ^4.17.21 - nprogress: ^0.2.0 - postcss: ^8.4.14 - prism-react-renderer: ^1.3.5 - prismjs: ^1.28.0 - react-router-dom: ^5.3.3 - rtlcss: ^3.5.0 - tslib: ^2.4.0 - utility-types: ^3.10.0 + "@azure/core-auth": ^1.5.0 + "@azure/identity": ^4.2.1 + "@azure/openai": 1.0.0-beta.11 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-jest: ^27.6.0 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + js-tiktoken: ^1.0.12 + prettier: ^2.8.3 + release-it: ^17.6.0 + rimraf: ^5.0.1 + typescript: ~5.1.6 + zod: ^3.22.3 + zod-to-json-schema: 3.20.3 peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 215b7fa416f40ce68773265a168af47fa770583ebe33ec7b34c7e082dfe7c79252b589a6b26532cb0ab7dd089611a9cd0e20c94df097be320a227b98e3b3fbb8 - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/theme-common@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/theme-common@npm:2.4.3" +"@langchain/baidu-qianfan@workspace:*, @langchain/baidu-qianfan@workspace:libs/langchain-baidu-qianfan": + version: 0.0.0-use.local + resolution: "@langchain/baidu-qianfan@workspace:libs/langchain-baidu-qianfan" dependencies: - "@docusaurus/mdx-loader": 2.4.3 - "@docusaurus/module-type-aliases": 2.4.3 - "@docusaurus/plugin-content-blog": 2.4.3 - "@docusaurus/plugin-content-docs": 2.4.3 - "@docusaurus/plugin-content-pages": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-common": 2.4.3 - "@types/history": ^4.7.11 - "@types/react": "*" - "@types/react-router-config": "*" - clsx: ^1.2.1 - parse-numeric-range: ^1.3.0 - prism-react-renderer: ^1.3.5 - tslib: ^2.4.0 - use-sync-external-store: ^1.2.0 - utility-types: ^3.10.0 + "@baiducloud/qianfan": ^0.1.6 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": ~0.3.0 + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.5 peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 76817f548705542124d708c804e724674ec9bf996a5cb2a5c9a2919416367567cca4a3fa6055589990c339f6e1fb9d3944e25ed30b79fabe191db00d6ef986ca - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/theme-mermaid@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/theme-mermaid@npm:2.4.3" +"@langchain/cerebras@*, @langchain/cerebras@workspace:libs/langchain-cerebras": + version: 0.0.0-use.local + resolution: "@langchain/cerebras@workspace:libs/langchain-cerebras" dependencies: - "@docusaurus/core": 2.4.3 - "@docusaurus/module-type-aliases": 2.4.3 - "@docusaurus/theme-common": 2.4.3 - "@docusaurus/types": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - "@mdx-js/react": ^1.6.22 - mermaid: ^9.2.2 - tslib: ^2.4.0 + "@cerebras/cerebras_cloud_sdk": ^1.15.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^10 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^15.10.1 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.3 peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 63b2eafaf929e3266d91b8c38bfa0aa9e4a6f625576d4c3c220426aaab3118185b2ed0d74fa359273e69c9f41dea3267d8ff77646acbcd1e1c3d392d20d8f77a - languageName: node - linkType: hard + "@langchain/core": ">=0.3.0 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/theme-search-algolia@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/theme-search-algolia@npm:2.4.3" +"@langchain/cloudflare@workspace:*, @langchain/cloudflare@workspace:libs/langchain-cloudflare": + version: 0.0.0-use.local + resolution: "@langchain/cloudflare@workspace:libs/langchain-cloudflare" dependencies: - "@docsearch/react": ^3.1.1 - "@docusaurus/core": 2.4.3 - "@docusaurus/logger": 2.4.3 - "@docusaurus/plugin-content-docs": 2.4.3 - "@docusaurus/theme-common": 2.4.3 - "@docusaurus/theme-translations": 2.4.3 - "@docusaurus/utils": 2.4.3 - "@docusaurus/utils-validation": 2.4.3 - algoliasearch: ^4.13.1 - algoliasearch-helper: ^3.10.0 - clsx: ^1.2.1 - eta: ^2.0.0 - fs-extra: ^10.1.0 - lodash: ^4.17.21 - tslib: ^2.4.0 - utility-types: ^3.10.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: 665d244c25bff21dd45c983c9b85f9827d2dd58945b802d645370b5e7092820532faf488c0bc0ce88e8fc0088c7f56eb9abb96589cf3857372c1b61bba6cbed7 - languageName: node - linkType: hard - -"@docusaurus/theme-translations@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/theme-translations@npm:2.4.3" - dependencies: - fs-extra: ^10.1.0 - tslib: ^2.4.0 - checksum: 8424583a130b0d32b6adf578dc5daeefaad199019c8a6a23fbd67577209be64923cde59d423ea9d41d6e7cfc2318e7fa6a17a665e8ae1c871ce0880525f9b8fd - languageName: node - linkType: hard - -"@docusaurus/types@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/types@npm:2.4.3" - dependencies: - "@types/history": ^4.7.11 - "@types/react": "*" - commander: ^5.1.0 - joi: ^17.6.0 - react-helmet-async: ^1.3.0 - utility-types: ^3.10.0 - webpack: ^5.73.0 - webpack-merge: ^5.8.0 - peerDependencies: - react: ^16.8.4 || ^17.0.0 - react-dom: ^16.8.4 || ^17.0.0 - checksum: c123c45630e885b588f808baa06a97f8408a3381906f65cb92ae75732aedfca6ab2cada94f969c08e043b885b95298616440326259b789010e0986cbcd7a960b - languageName: node - linkType: hard - -"@docusaurus/utils-common@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/utils-common@npm:2.4.3" - dependencies: - tslib: ^2.4.0 + "@cloudflare/workers-types": ^4.20240909.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 peerDependencies: - "@docusaurus/types": "*" - peerDependenciesMeta: - "@docusaurus/types": - optional: true - checksum: 1ae315d8d8ce7a0163a698ffdca55b734d21f336512138c128bc0fa2a8d224edbaad0c8dbd7a3de2e8ef734dc2656c505d09066dee4fc84819d153593abb8984 - languageName: node - linkType: hard - -"@docusaurus/utils-validation@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/utils-validation@npm:2.4.3" - dependencies: - "@docusaurus/logger": 2.4.3 - "@docusaurus/utils": 2.4.3 - joi: ^17.6.0 - js-yaml: ^4.1.0 - tslib: ^2.4.0 - checksum: d3472b3f7a0a029c2cef1f00bc9db403d5f7e74e2091eccbc45d06f5776a84fd73bd1a18cf3a8a3cc0348ce49f753a1300deac670c2a82c56070cc40ca9df06e - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@docusaurus/utils@npm:2.4.3": - version: 2.4.3 - resolution: "@docusaurus/utils@npm:2.4.3" +"@langchain/cohere@*, @langchain/cohere@workspace:*, @langchain/cohere@workspace:libs/langchain-cohere": + version: 0.0.0-use.local + resolution: "@langchain/cohere@workspace:libs/langchain-cohere" dependencies: - "@docusaurus/logger": 2.4.3 - "@svgr/webpack": ^6.2.1 - escape-string-regexp: ^4.0.0 - file-loader: ^6.2.0 - fs-extra: ^10.1.0 - github-slugger: ^1.4.0 - globby: ^11.1.0 - gray-matter: ^4.0.3 - js-yaml: ^4.1.0 - lodash: ^4.17.21 - micromatch: ^4.0.5 - resolve-pathname: ^3.0.0 - shelljs: ^0.8.5 - tslib: ^2.4.0 - url-loader: ^4.1.1 - webpack: ^5.73.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + cohere-ai: ^7.14.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-jest: ^27.6.0 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + zod: ^3.23.8 + zod-to-json-schema: ^3.23.1 peerDependencies: - "@docusaurus/types": "*" - peerDependenciesMeta: - "@docusaurus/types": - optional: true - checksum: dd1aa7688d1a4b2775e13a91d528608ceab33c57a921404d9a989867c31c8ef17fe3892e4f5680dfb4a783da7b9973e2077e907ff4ac172927433e606e8fa9b9 - languageName: node - linkType: hard - -"@elastic/elasticsearch@npm:^8.4.0": - version: 8.8.1 - resolution: "@elastic/elasticsearch@npm:8.8.1" - dependencies: - "@elastic/transport": ^8.3.2 - tslib: ^2.4.0 - checksum: 38b0651d56f1b6b0f9bbed9fb874a337f466c4697dfb0ea37d3110bdc00fdb86b1cc58cdf03769aa2fd84076448877c33234069ed1cbd4a3906e66e18c47df5a - languageName: node - linkType: hard - -"@elastic/transport@npm:^8.3.2": - version: 8.3.2 - resolution: "@elastic/transport@npm:8.3.2" - dependencies: - debug: ^4.3.4 - hpagent: ^1.0.0 - ms: ^2.1.3 - secure-json-parse: ^2.4.0 - tslib: ^2.4.0 - undici: ^5.22.1 - checksum: 51eb19723b95b9772b90031223d1af275f1aad0611161b84da57c5e374fa1bfce1c1828870ee9b7afe9bf81de64e4a2f8ed6878875f877b71bc53d2b435fa78d - languageName: node - linkType: hard - -"@emnapi/runtime@npm:^1.2.0": - version: 1.3.1 - resolution: "@emnapi/runtime@npm:1.3.1" - dependencies: - tslib: ^2.4.0 - checksum: 9a16ae7905a9c0e8956cf1854ef74e5087fbf36739abdba7aa6b308485aafdc993da07c19d7af104cd5f8e425121120852851bb3a0f78e2160e420a36d47f42f - languageName: node - linkType: hard - -"@esbuild-kit/cjs-loader@npm:^2.4.2": - version: 2.4.2 - resolution: "@esbuild-kit/cjs-loader@npm:2.4.2" - dependencies: - "@esbuild-kit/core-utils": ^3.0.0 - get-tsconfig: ^4.4.0 - checksum: e346e339bfc7eff5c52c270fd0ec06a7f2341b624adfb69f84b7d83f119c35070420906f2761a0b4604e0a0ec90e35eaf12544585476c428ed6d6ee3b250c0fe - languageName: node - linkType: hard - -"@esbuild-kit/core-utils@npm:^3.0.0": - version: 3.1.0 - resolution: "@esbuild-kit/core-utils@npm:3.1.0" - dependencies: - esbuild: ~0.17.6 - source-map-support: ^0.5.21 - checksum: d54fd5adb3ce6784d84bb025ad54ddcfbab99267071a7f65298e547f56696f0b9d0dba96c535f9678a30d4887ec71cd445fdd277d65fbec1f3b504f6808f693e - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@esbuild-kit/esm-loader@npm:^2.5.5": - version: 2.5.5 - resolution: "@esbuild-kit/esm-loader@npm:2.5.5" +"@langchain/community@workspace:*, @langchain/community@workspace:libs/langchain-community": + version: 0.0.0-use.local + resolution: "@langchain/community@workspace:libs/langchain-community" dependencies: - "@esbuild-kit/core-utils": ^3.0.0 - get-tsconfig: ^4.4.0 - checksum: 9d4a03ffc937fbec75a8456c3d45d7cdb1a65768416791a5720081753502bc9f485ba27942a46f564b12483b140a8a46c12433a4496430d93e4513e430484ec7 - languageName: node - linkType: hard - -"@esbuild/aix-ppc64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/aix-ppc64@npm:0.21.5" - conditions: os=aix & cpu=ppc64 - languageName: node - linkType: hard - -"@esbuild/android-arm64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/android-arm64@npm:0.17.11" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/android-arm64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/android-arm64@npm:0.17.19" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/android-arm64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/android-arm64@npm:0.21.5" - conditions: os=android & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/android-arm@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/android-arm@npm:0.17.11" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - -"@esbuild/android-arm@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/android-arm@npm:0.17.19" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - -"@esbuild/android-arm@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/android-arm@npm:0.21.5" - conditions: os=android & cpu=arm - languageName: node - linkType: hard - -"@esbuild/android-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/android-x64@npm:0.17.11" - conditions: os=android & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/android-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/android-x64@npm:0.17.19" - conditions: os=android & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/android-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/android-x64@npm:0.21.5" - conditions: os=android & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/darwin-arm64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/darwin-arm64@npm:0.17.11" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/darwin-arm64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/darwin-arm64@npm:0.17.19" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/darwin-arm64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/darwin-arm64@npm:0.21.5" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/darwin-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/darwin-x64@npm:0.17.11" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/darwin-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/darwin-x64@npm:0.17.19" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/darwin-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/darwin-x64@npm:0.21.5" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/freebsd-arm64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/freebsd-arm64@npm:0.17.11" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/freebsd-arm64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/freebsd-arm64@npm:0.17.19" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/freebsd-arm64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/freebsd-arm64@npm:0.21.5" - conditions: os=freebsd & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/freebsd-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/freebsd-x64@npm:0.17.11" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/freebsd-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/freebsd-x64@npm:0.17.19" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/freebsd-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/freebsd-x64@npm:0.21.5" - conditions: os=freebsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/linux-arm64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-arm64@npm:0.17.11" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/linux-arm64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-arm64@npm:0.17.19" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/linux-arm64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-arm64@npm:0.21.5" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/linux-arm@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-arm@npm:0.17.11" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@esbuild/linux-arm@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-arm@npm:0.17.19" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@esbuild/linux-arm@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-arm@npm:0.21.5" - conditions: os=linux & cpu=arm - languageName: node - linkType: hard - -"@esbuild/linux-ia32@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-ia32@npm:0.17.11" - conditions: os=linux & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/linux-ia32@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-ia32@npm:0.17.19" - conditions: os=linux & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/linux-ia32@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-ia32@npm:0.21.5" - conditions: os=linux & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/linux-loong64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-loong64@npm:0.17.11" - conditions: os=linux & cpu=loong64 - languageName: node - linkType: hard - -"@esbuild/linux-loong64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-loong64@npm:0.17.19" - conditions: os=linux & cpu=loong64 - languageName: node - linkType: hard - -"@esbuild/linux-loong64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-loong64@npm:0.21.5" - conditions: os=linux & cpu=loong64 - languageName: node - linkType: hard - -"@esbuild/linux-mips64el@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-mips64el@npm:0.17.11" - conditions: os=linux & cpu=mips64el - languageName: node - linkType: hard - -"@esbuild/linux-mips64el@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-mips64el@npm:0.17.19" - conditions: os=linux & cpu=mips64el - languageName: node - linkType: hard - -"@esbuild/linux-mips64el@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-mips64el@npm:0.21.5" - conditions: os=linux & cpu=mips64el - languageName: node - linkType: hard - -"@esbuild/linux-ppc64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-ppc64@npm:0.17.11" - conditions: os=linux & cpu=ppc64 - languageName: node - linkType: hard - -"@esbuild/linux-ppc64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-ppc64@npm:0.17.19" - conditions: os=linux & cpu=ppc64 - languageName: node - linkType: hard - -"@esbuild/linux-ppc64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-ppc64@npm:0.21.5" - conditions: os=linux & cpu=ppc64 - languageName: node - linkType: hard - -"@esbuild/linux-riscv64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-riscv64@npm:0.17.11" - conditions: os=linux & cpu=riscv64 - languageName: node - linkType: hard - -"@esbuild/linux-riscv64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-riscv64@npm:0.17.19" - conditions: os=linux & cpu=riscv64 - languageName: node - linkType: hard - -"@esbuild/linux-riscv64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-riscv64@npm:0.21.5" - conditions: os=linux & cpu=riscv64 - languageName: node - linkType: hard - -"@esbuild/linux-s390x@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-s390x@npm:0.17.11" - conditions: os=linux & cpu=s390x - languageName: node - linkType: hard - -"@esbuild/linux-s390x@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-s390x@npm:0.17.19" - conditions: os=linux & cpu=s390x - languageName: node - linkType: hard - -"@esbuild/linux-s390x@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-s390x@npm:0.21.5" - conditions: os=linux & cpu=s390x - languageName: node - linkType: hard - -"@esbuild/linux-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/linux-x64@npm:0.17.11" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/linux-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/linux-x64@npm:0.17.19" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/linux-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/linux-x64@npm:0.21.5" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/netbsd-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/netbsd-x64@npm:0.17.11" - conditions: os=netbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/netbsd-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/netbsd-x64@npm:0.17.19" - conditions: os=netbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/netbsd-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/netbsd-x64@npm:0.21.5" - conditions: os=netbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/openbsd-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/openbsd-x64@npm:0.17.11" - conditions: os=openbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/openbsd-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/openbsd-x64@npm:0.17.19" - conditions: os=openbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/openbsd-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/openbsd-x64@npm:0.21.5" - conditions: os=openbsd & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/sunos-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/sunos-x64@npm:0.17.11" - conditions: os=sunos & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/sunos-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/sunos-x64@npm:0.17.19" - conditions: os=sunos & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/sunos-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/sunos-x64@npm:0.21.5" - conditions: os=sunos & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/win32-arm64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/win32-arm64@npm:0.17.11" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/win32-arm64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/win32-arm64@npm:0.17.19" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/win32-arm64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/win32-arm64@npm:0.21.5" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@esbuild/win32-ia32@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/win32-ia32@npm:0.17.11" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/win32-ia32@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/win32-ia32@npm:0.17.19" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/win32-ia32@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/win32-ia32@npm:0.21.5" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@esbuild/win32-x64@npm:0.17.11": - version: 0.17.11 - resolution: "@esbuild/win32-x64@npm:0.17.11" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/win32-x64@npm:0.17.19": - version: 0.17.19 - resolution: "@esbuild/win32-x64@npm:0.17.19" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@esbuild/win32-x64@npm:0.21.5": - version: 0.21.5 - resolution: "@esbuild/win32-x64@npm:0.21.5" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": - version: 4.4.0 - resolution: "@eslint-community/eslint-utils@npm:4.4.0" - dependencies: - eslint-visitor-keys: ^3.3.0 - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22 - languageName: node - linkType: hard - -"@eslint-community/regexpp@npm:^4.4.0": - version: 4.5.0 - resolution: "@eslint-community/regexpp@npm:4.5.0" - checksum: 99c01335947dbd7f2129e954413067e217ccaa4e219fe0917b7d2bd96135789384b8fedbfb8eb09584d5130b27a7b876a7150ab7376f51b3a0c377d5ce026a10 - languageName: node - linkType: hard - -"@eslint-community/regexpp@npm:^4.5.1": - version: 4.10.0 - resolution: "@eslint-community/regexpp@npm:4.10.0" - checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b - languageName: node - linkType: hard - -"@eslint-community/regexpp@npm:^4.6.1": - version: 4.9.1 - resolution: "@eslint-community/regexpp@npm:4.9.1" - checksum: 06fb839e9c756f6375cc545c2f2e05a0a64576bd6370e8e3c07983fd29a3d6e164ef4aa48a361f7d27e6713ab79c83053ff6a2ccb78748bc955e344279c4a3b6 - languageName: node - linkType: hard - -"@eslint/eslintrc@npm:^2.0.0": - version: 2.0.0 - resolution: "@eslint/eslintrc@npm:2.0.0" - dependencies: - ajv: ^6.12.4 - debug: ^4.3.2 - espree: ^9.4.0 - globals: ^13.19.0 - ignore: ^5.2.0 - import-fresh: ^3.2.1 - js-yaml: ^4.1.0 - minimatch: ^3.1.2 - strip-json-comments: ^3.1.1 - checksum: 31119c8ca06723d80384f18f5c78e0530d8e6306ad36379868650131a8b10dd7cffd7aff79a5deb3a2e9933660823052623d268532bae9538ded53d5b19a69a6 - languageName: node - linkType: hard - -"@eslint/eslintrc@npm:^2.1.2": - version: 2.1.2 - resolution: "@eslint/eslintrc@npm:2.1.2" - dependencies: - ajv: ^6.12.4 - debug: ^4.3.2 - espree: ^9.6.0 - globals: ^13.19.0 - ignore: ^5.2.0 - import-fresh: ^3.2.1 - js-yaml: ^4.1.0 - minimatch: ^3.1.2 - strip-json-comments: ^3.1.1 - checksum: bc742a1e3b361f06fedb4afb6bf32cbd27171292ef7924f61c62f2aed73048367bcc7ac68f98c06d4245cd3fabc43270f844e3c1699936d4734b3ac5398814a7 - languageName: node - linkType: hard - -"@eslint/eslintrc@npm:^2.1.3": - version: 2.1.3 - resolution: "@eslint/eslintrc@npm:2.1.3" - dependencies: - ajv: ^6.12.4 - debug: ^4.3.2 - espree: ^9.6.0 - globals: ^13.19.0 - ignore: ^5.2.0 - import-fresh: ^3.2.1 - js-yaml: ^4.1.0 - minimatch: ^3.1.2 - strip-json-comments: ^3.1.1 - checksum: 5c6c3878192fe0ddffa9aff08b4e2f3bcc8f1c10d6449b7295a5f58b662019896deabfc19890455ffd7e60a5bd28d25d0eaefb2f78b2d230aae3879af92b89e5 - languageName: node - linkType: hard - -"@eslint/js@npm:8.35.0": - version: 8.35.0 - resolution: "@eslint/js@npm:8.35.0" - checksum: 6687ceff659a6d617e37823f809dc9c4b096535961a81acead27d26b1a51a4cf608a5e59d831ddd57f24f6f8bb99340a4a0e19f9c99b390fbb4b275f51ed5f5e - languageName: node - linkType: hard - -"@eslint/js@npm:8.51.0": - version: 8.51.0 - resolution: "@eslint/js@npm:8.51.0" - checksum: 0228bf1e1e0414843e56d9ff362a2a72d579c078f93174666f29315690e9e30a8633ad72c923297f7fd7182381b5a476805ff04dac8debe638953eb1ded3ac73 - languageName: node - linkType: hard - -"@eslint/js@npm:8.53.0": - version: 8.53.0 - resolution: "@eslint/js@npm:8.53.0" - checksum: e0d5cfb0000aaee237c8e6d6d6e366faa60b1ef7f928ce17778373aa44d3b886368f6d5e1f97f913f0f16801aad016db8b8df78418c9d18825c15590328028af - languageName: node - linkType: hard - -"@faker-js/faker@npm:8.4.1, @faker-js/faker@npm:^8.4.1": - version: 8.4.1 - resolution: "@faker-js/faker@npm:8.4.1" - checksum: d802d531f8929562715adc279cfec763c9a4bc596ec67b0ce43fd0ae61b285d2b0eec6f1f4aa852452a63721a842fe7e81926dce7bd92acca94b01e2a1f55f5a - languageName: node - linkType: hard - -"@faker-js/faker@npm:^7.6.0": - version: 7.6.0 - resolution: "@faker-js/faker@npm:7.6.0" - checksum: 942af6221774e8c98a0eb6bc75265e05fb81a941170377666c3439aab9495dd321d6beedc5406f07e6ad44262b3e43c20961f666d116ad150b78e7437dd1bb2b - languageName: node - linkType: hard - -"@faker-js/faker@npm:^8.3.1": - version: 8.3.1 - resolution: "@faker-js/faker@npm:8.3.1" - checksum: 33efe912411fe61f43b313784a9ce041dfbfb54bc3b2f7b923a547f97beb6b3763534f9c37af25ab330982e6b36e6f7b040dfb35c115deb8c789d8ada413bd94 - languageName: node - linkType: hard - -"@faker-js/faker@npm:^8.4.0": - version: 8.4.0 - resolution: "@faker-js/faker@npm:8.4.0" - checksum: 682581f0b009b7e8b81bc0736a3f1df2fb5179706786b87ef5bed5e2e28e22dfeba10e5122942371f12d68e833be3b3726850f96940baf080500cef35a77403b - languageName: node - linkType: hard - -"@fastify/busboy@npm:^1.2.1": - version: 1.2.1 - resolution: "@fastify/busboy@npm:1.2.1" - dependencies: - text-decoding: ^1.0.0 - checksum: 6e773a2929fd7732fd8ba8f9e1c1b9d622c6165b6e0bed9268e1785f8fd5e8b0a35d6adfe86f15a701bf7783d09c629f3437b3578d34c0246eb26f973ede20f0 - languageName: node - linkType: hard - -"@fastify/busboy@npm:^2.0.0": - version: 2.1.0 - resolution: "@fastify/busboy@npm:2.1.0" - checksum: 3233abd10f73e50668cb4bb278a79b7b3fadd30215ac6458299b0e5a09a29c3586ec07597aae6bd93f5cbedfcef43a8aeea51829cd28fc13850cdbcd324c28d5 - languageName: node - linkType: hard - -"@firebase/app-check-interop-types@npm:0.3.0": - version: 0.3.0 - resolution: "@firebase/app-check-interop-types@npm:0.3.0" - checksum: e8b6adfe47ea4149e7a330890ee2feca47d9c48323dd9a1a2247b63879c89fe5e8869c93ec36927639e1d7951a5b365623032f66ef8086981cf08f9504b18c2b - languageName: node - linkType: hard - -"@firebase/app-types@npm:0.9.0": - version: 0.9.0 - resolution: "@firebase/app-types@npm:0.9.0" - checksum: e79bd3c4a8d6b911326fe83fddca8d8922ea5880fcb3ad72d3561b51e3d01f22669cdc6d61d2ec48ac9c5e763e3d44b7b6736cadf36a0827d7f62447bde4b12e - languageName: node - linkType: hard - -"@firebase/auth-interop-types@npm:0.2.1": - version: 0.2.1 - resolution: "@firebase/auth-interop-types@npm:0.2.1" - checksum: 6b02996f2455c1d6299c59a76a7d52d3eedd35d6ee444a8f2edef8c34bd766e8d20ea25a6927e08a5f4cfa9a5fff2aa67101a80a7e4d12023590871652eac288 - languageName: node - linkType: hard - -"@firebase/component@npm:0.6.5": - version: 0.6.5 - resolution: "@firebase/component@npm:0.6.5" - dependencies: - "@firebase/util": 1.9.4 - tslib: ^2.1.0 - checksum: d77f5b1777c8ea1366ea49a737aaae2e218878c1e2a2dc00234c1b25e5dababa41f2aa7b4d0e0d52d5274c714cb4fd6d295fc5c10e3da85bf076c7ec008339a5 - languageName: node - linkType: hard - -"@firebase/database-compat@npm:^1.0.2": - version: 1.0.3 - resolution: "@firebase/database-compat@npm:1.0.3" - dependencies: - "@firebase/component": 0.6.5 - "@firebase/database": 1.0.3 - "@firebase/database-types": 1.0.1 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.4 - tslib: ^2.1.0 - checksum: 0eea986766e3768db4f52d1856305c76c2e27dd0156eff4155846e9db044e69e81988aee1120aec9c619eac9356f86cf2cee9da3db1ef3137b9377dcb0636b5e - languageName: node - linkType: hard - -"@firebase/database-types@npm:1.0.1, @firebase/database-types@npm:^1.0.0": - version: 1.0.1 - resolution: "@firebase/database-types@npm:1.0.1" - dependencies: - "@firebase/app-types": 0.9.0 - "@firebase/util": 1.9.4 - checksum: 261726bc5f540e8f8ef3f34319de3fe87fda5a537f6f0c760e14cf84c28e046fedae0df29b7308fe48497c1c3fdac5ace3a43fcdbc754bb5eb22d381f974cc41 - languageName: node - linkType: hard - -"@firebase/database@npm:1.0.3": - version: 1.0.3 - resolution: "@firebase/database@npm:1.0.3" - dependencies: - "@firebase/app-check-interop-types": 0.3.0 - "@firebase/auth-interop-types": 0.2.1 - "@firebase/component": 0.6.5 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.4 - faye-websocket: 0.11.4 - tslib: ^2.1.0 - checksum: 8e6d199fca8f9204cb4d4b5a3e5b9472c68d610385ead1fdbe8a6e27d8dcbe89bc60ea3fcf93c4f017ec2a07e58ccd0fdedfe149fa45585de841ed6784472a99 - languageName: node - linkType: hard - -"@firebase/logger@npm:0.4.0": - version: 0.4.0 - resolution: "@firebase/logger@npm:0.4.0" - dependencies: - tslib: ^2.1.0 - checksum: 4b5418f03a2e973f6d4fa8f3a27057b3cc439691b6067ecfa4755bb310d1ed7bdf53016bc2d13bdbdad7e369485d57e9fd1e4679e30a5b98aab9f87e1fa671ee - languageName: node - linkType: hard - -"@firebase/util@npm:1.9.4": - version: 1.9.4 - resolution: "@firebase/util@npm:1.9.4" - dependencies: - tslib: ^2.1.0 - checksum: da3cefa7a8e8509fd00b88ed0c25ea37ac26998b41c23ab1d3a56ab91b6cd3d582145ed7ec0f0770a4479ba7602424b970e505ef82a0872cb3eed32680b3b120 - languageName: node - linkType: hard - -"@gar/promisify@npm:^1.0.1": - version: 1.1.3 - resolution: "@gar/promisify@npm:1.1.3" - checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1 - languageName: node - linkType: hard - -"@getmetal/metal-sdk@npm:^4.0.0": - version: 4.0.0 - resolution: "@getmetal/metal-sdk@npm:4.0.0" - dependencies: - axios: ^1.3.2 - checksum: d7a7b79896cc58ffd5c2d071703302c62780d2aa9e89080ad6a70a5a5671ea0f5b8ed614ba4981f55d1f54ff147c8bdaa76e758910edb26df33648cd09e9335a - languageName: node - linkType: hard - -"@getzep/zep-cloud@npm:^1.0.6": - version: 1.0.6 - resolution: "@getzep/zep-cloud@npm:1.0.6" - dependencies: - form-data: 4.0.0 - node-fetch: 2.7.0 - qs: 6.11.2 - url-join: 4.0.1 - zod: ^3.23.8 - peerDependencies: - "@langchain/core": ~0.1.29 - langchain: ~0.1.19 - peerDependenciesMeta: - "@langchain/core": - optional: true - langchain: - optional: true - checksum: 21fd2281124fc9f10b6cd5d2a1496c69566cd56c742828ffd249f0220746e635826c1ecb894dc8e932c52f9cecdf26550df6921cfe6ab05288b3d0b58ffc3e1e - languageName: node - linkType: hard - -"@getzep/zep-js@npm:^0.9.0": - version: 0.9.0 - resolution: "@getzep/zep-js@npm:0.9.0" - dependencies: - "@supercharge/promise-pool": ^3.1.0 - semver: ^7.5.4 - typescript: ^5.1.6 - checksum: 4378b7fb1bbff5b9705f2c81b5cef1811fd2fbf1c3606c085cfc2f898f18f1a685d87f7f149e1c579a3895340fa85b42e0ad954fd11de3de3a97224e0e291c82 - languageName: node - linkType: hard - -"@gomomento/generated-types@npm:0.96.0": - version: 0.96.0 - resolution: "@gomomento/generated-types@npm:0.96.0" - dependencies: - "@grpc/grpc-js": 1.9.0 - google-protobuf: 3.21.2 - grpc-tools: ^1.12.4 - protoc-gen-ts: ^0.8.6 - checksum: f50916c4e95d5c655babde018c047b8a7d43f88d61ba03f871203d1c425eb15020dc57b4fc6b2592c9698bed2b0219d84743f5cb955e9560b68f5743afa0f0af - languageName: node - linkType: hard - -"@gomomento/sdk-core@npm:1.51.1, @gomomento/sdk-core@npm:^1.51.1": - version: 1.51.1 - resolution: "@gomomento/sdk-core@npm:1.51.1" - dependencies: - buffer: 6.0.3 - jwt-decode: 3.1.2 - checksum: 535bf07ffc97426af5cfae5eae93b9fde119bbda73d6c06990b7f052b8696a175ebbcf1b5e21c6c71c63bcfcc1903c34603dbe14f8763fb65f0e1392f79f63cd - languageName: node - linkType: hard - -"@gomomento/sdk@npm:^1.51.1": - version: 1.51.1 - resolution: "@gomomento/sdk@npm:1.51.1" - dependencies: - "@gomomento/generated-types": 0.96.0 - "@gomomento/sdk-core": 1.51.1 - "@grpc/grpc-js": 1.9.0 - "@types/google-protobuf": 3.15.10 - google-protobuf: 3.21.2 - jwt-decode: 3.1.2 - checksum: ee7e052b1e1aa2fb132664bdfe4cac801a9c30b564c80cdfff2614c2cc290e3e964101386c0493b0ca1ba1bd0c8e6b95edc7bb125b9b59f72bd714ed1c12e80b - languageName: node - linkType: hard - -"@google-ai/generativelanguage@npm:^2.5.0": - version: 2.5.0 - resolution: "@google-ai/generativelanguage@npm:2.5.0" - dependencies: - google-gax: ^4.0.3 - checksum: 76218cbbc117313f2e6f4959fa770610aebafe27ddf10be9860f1176d9c4677d00609ab683926e64f48fce4321fe72c164cb23fa12f1651ba739ed2b4a507e95 - languageName: node - linkType: hard - -"@google-cloud/firestore@npm:^7.1.0": - version: 7.3.0 - resolution: "@google-cloud/firestore@npm:7.3.0" - dependencies: - fast-deep-equal: ^3.1.1 - functional-red-black-tree: ^1.0.1 - google-gax: ^4.0.4 - protobufjs: ^7.2.5 - checksum: 6e12f011250ee6e3f8a522ab02d706af7966675b6653e77734929fce1493efc9fed90de398900228da660f4f4738ccafa2bad96f4573e8097267c67f1ab87f90 - languageName: node - linkType: hard - -"@google-cloud/paginator@npm:^5.0.0": - version: 5.0.0 - resolution: "@google-cloud/paginator@npm:5.0.0" - dependencies: - arrify: ^2.0.0 - extend: ^3.0.2 - checksum: 7b8236ce610bef5c5de62a0ec267b0e4368480397621a692d213c56ffe66b20a8e6d4de0fe0606fd165672c873467ea313493f035a582e674df72c29dd20b7ef - languageName: node - linkType: hard - -"@google-cloud/projectify@npm:^4.0.0": - version: 4.0.0 - resolution: "@google-cloud/projectify@npm:4.0.0" - checksum: 973d28414ae200433333a3c315aebb881ced42ea4afe6f3f8520d2fecded75e76c913f5189fea8fb29ce6ca36117c4f44001b3c503eecdd3ac7f02597a98354a - languageName: node - linkType: hard - -"@google-cloud/promisify@npm:^4.0.0": - version: 4.0.0 - resolution: "@google-cloud/promisify@npm:4.0.0" - checksum: edd189398c5ed5b7b64a373177d77c87d076a248c31b8ae878bb91e2411d89860108bcb948c349f32628973a823bd131beb53ec008fd613a8cb466ef1d89de49 - languageName: node - linkType: hard - -"@google-cloud/storage@npm:^7.7.0": - version: 7.7.0 - resolution: "@google-cloud/storage@npm:7.7.0" - dependencies: - "@google-cloud/paginator": ^5.0.0 - "@google-cloud/projectify": ^4.0.0 - "@google-cloud/promisify": ^4.0.0 - abort-controller: ^3.0.0 - async-retry: ^1.3.3 - compressible: ^2.0.12 - duplexify: ^4.0.0 - ent: ^2.2.0 - fast-xml-parser: ^4.3.0 - gaxios: ^6.0.2 - google-auth-library: ^9.0.0 - mime: ^3.0.0 - mime-types: ^2.0.8 - p-limit: ^3.0.1 - retry-request: ^7.0.0 - teeny-request: ^9.0.0 - uuid: ^8.0.0 - checksum: b63069b7e591e55f9132aab9e8f9cd03b72a5b6e531c1f37fc44c4cd34eb02dd50e8007739dad6f0ac2ddb216eb5a80bc3b062d1d8c42aad7351e6cc6008d27f - languageName: node - linkType: hard - -"@google/generative-ai@npm:^0.21.0": - version: 0.21.0 - resolution: "@google/generative-ai@npm:0.21.0" - checksum: 91345a8399b5e71382193d0eac47a4b264613a9d7e48a431290b523e3fbb44a207a33bdead304f181987e5a0127a84168c4e21cf461c1087cd3b0ebc5125d13d - languageName: node - linkType: hard - -"@google/generative-ai@npm:^0.7.0": - version: 0.7.1 - resolution: "@google/generative-ai@npm:0.7.1" - checksum: 536c7c75545c93731f0ab1fa9be6c88c64ead6ab6b24e70763e592e163041444f9ae78e2095019cd0e27fc18cbdc1ecaf1fdfd3561ca0a61577f720ddbaba1f2 - languageName: node - linkType: hard - -"@gradientai/nodejs-sdk@npm:^1.2.0": - version: 1.2.0 - resolution: "@gradientai/nodejs-sdk@npm:1.2.0" - dependencies: - axios: 0.21.4 - checksum: c921d914a6570536b6f1f00b3dc615cd70e103ad14ea40d7b9fe88020810b5fd9c8c8695bdfb3d9263190a3c69a82b17505b5579d744cc79596d037958e2cfd7 - languageName: node - linkType: hard - -"@graphql-typed-document-node/core@npm:^3.1.1": - version: 3.2.0 - resolution: "@graphql-typed-document-node/core@npm:3.2.0" - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: fa44443accd28c8cf4cb96aaaf39d144a22e8b091b13366843f4e97d19c7bfeaf609ce3c7603a4aeffe385081eaf8ea245d078633a7324c11c5ec4b2011bb76d - languageName: node - linkType: hard - -"@grpc/grpc-js@npm:1.9.0": - version: 1.9.0 - resolution: "@grpc/grpc-js@npm:1.9.0" - dependencies: - "@grpc/proto-loader": ^0.7.0 - "@types/node": ">=12.12.47" - checksum: 32817c84e4b0eedc523b123cbfce935cafedbf33f94f7609931a878dd6945c4d83b4a781a9d7dedbd4fd273a95e8bd3b0de5f6ca920112331e1c3279fa104b3e - languageName: node - linkType: hard - -"@grpc/grpc-js@npm:^1.10.1, @grpc/grpc-js@npm:~1.10.3": - version: 1.10.8 - resolution: "@grpc/grpc-js@npm:1.10.8" - dependencies: - "@grpc/proto-loader": ^0.7.13 - "@js-sdsl/ordered-map": ^4.4.2 - checksum: 498d144016eac26fc069bc57d649bf4776ae6bd1a24e62823a8b07b7d39a4414caa72a799f8287278b79e11ec4ecf989dbac01518c3981d8f947db15916c6727 - languageName: node - linkType: hard - -"@grpc/grpc-js@npm:~1.9.6": - version: 1.9.14 - resolution: "@grpc/grpc-js@npm:1.9.14" - dependencies: - "@grpc/proto-loader": ^0.7.8 - "@types/node": ">=12.12.47" - checksum: 1e0821876fc55fa1d71a674e65db6227ca398f6ff77735bd44d8d4a554fa97dcddd06e7844c3d7da37350feafd824ec88af04f0ab0e0c2e0bc8f753939935240 - languageName: node - linkType: hard - -"@grpc/proto-loader@npm:^0.7.0": - version: 0.7.6 - resolution: "@grpc/proto-loader@npm:0.7.6" - dependencies: - "@types/long": ^4.0.1 - lodash.camelcase: ^4.3.0 - long: ^4.0.0 - protobufjs: ^7.0.0 - yargs: ^16.2.0 - bin: - proto-loader-gen-types: build/bin/proto-loader-gen-types.js - checksum: cc42649cf65c74f627ac80b1f3ed275c4cf96dbc27728cc887e91e217c69a3bd6b94dfa7571725a94538d84735af53d35e9583cc77eb65f3c035106216cc4a1b - languageName: node - linkType: hard - -"@grpc/proto-loader@npm:^0.7.10, @grpc/proto-loader@npm:^0.7.13": - version: 0.7.13 - resolution: "@grpc/proto-loader@npm:0.7.13" - dependencies: - lodash.camelcase: ^4.3.0 - long: ^5.0.0 - protobufjs: ^7.2.5 - yargs: ^17.7.2 - bin: - proto-loader-gen-types: build/bin/proto-loader-gen-types.js - checksum: 399c1b8a4627f93dc31660d9636ea6bf58be5675cc7581e3df56a249369e5be02c6cd0d642c5332b0d5673bc8621619bc06fb045aa3e8f57383737b5d35930dc - languageName: node - linkType: hard - -"@grpc/proto-loader@npm:^0.7.8": - version: 0.7.10 - resolution: "@grpc/proto-loader@npm:0.7.10" - dependencies: - lodash.camelcase: ^4.3.0 - long: ^5.0.0 - protobufjs: ^7.2.4 - yargs: ^17.7.2 - bin: - proto-loader-gen-types: build/bin/proto-loader-gen-types.js - checksum: 4987e23b57942c2363b6a6a106e63efae636666cefa348778dfafef2ff72da7343c8587667521cb1d52482827bcd001dd535bdc27065110af56d9c7c176334c9 - languageName: node - linkType: hard - -"@hapi/hoek@npm:^9.0.0": - version: 9.3.0 - resolution: "@hapi/hoek@npm:9.3.0" - checksum: 4771c7a776242c3c022b168046af4e324d116a9d2e1d60631ee64f474c6e38d1bb07092d898bf95c7bc5d334c5582798a1456321b2e53ca817d4e7c88bc25b43 - languageName: node - linkType: hard - -"@hapi/topo@npm:^5.0.0": - version: 5.1.0 - resolution: "@hapi/topo@npm:5.1.0" - dependencies: - "@hapi/hoek": ^9.0.0 - checksum: 604dfd5dde76d5c334bd03f9001fce69c7ce529883acf92da96f4fe7e51221bf5e5110e964caca287a6a616ba027c071748ab636ff178ad750547fba611d6014 - languageName: node - linkType: hard - -"@huggingface/inference@npm:^2.6.4": - version: 2.6.4 - resolution: "@huggingface/inference@npm:2.6.4" - checksum: 7d48960a62d0621d4c3f1edd183aa5d7829d297110b5720c78291aac17ed58b6a9af8eaf8a3f2cbb9dabfda3cf48931f59cf491cdedefd624f90d93fa3927981 - languageName: node - linkType: hard - -"@huggingface/jinja@npm:^0.3.1": - version: 0.3.1 - resolution: "@huggingface/jinja@npm:0.3.1" - checksum: cd5dcc81b3690f9e4de7a6e4a236c4112b3a0e9e86e59d9b1fe49f634c459854f23492f7b66537978fd62fc125f5f3f8c8e56e299e61c633f5b3b429bb45494d - languageName: node - linkType: hard - -"@huggingface/jinja@npm:^0.3.2": - version: 0.3.2 - resolution: "@huggingface/jinja@npm:0.3.2" - checksum: 4bc7d00b6f8655a0032c2d89e38a095d0a87ef81a1c12fb6fd0404e1319e1ef6eef87734502689c1df39db4e77a7bb5996e7b6c1b4d6a768ecfa5a48f2a939a7 - languageName: node - linkType: hard - -"@huggingface/transformers@npm:^3.2.3": - version: 3.2.4 - resolution: "@huggingface/transformers@npm:3.2.4" - dependencies: - "@huggingface/jinja": ^0.3.2 - onnxruntime-node: 1.20.1 - onnxruntime-web: 1.21.0-dev.20241205-d27fecd3d3 - sharp: ^0.33.5 - checksum: fdff5cec1336fdb4ad923592d77348730f58263928a8c90d0f79aed7863e74a5521b9e99903c906a6e1c056fe0f81f811e4d403b62d3edb66da9389cff025acf - languageName: node - linkType: hard - -"@humanwhocodes/config-array@npm:^0.11.11": - version: 0.11.11 - resolution: "@humanwhocodes/config-array@npm:0.11.11" - dependencies: - "@humanwhocodes/object-schema": ^1.2.1 - debug: ^4.1.1 - minimatch: ^3.0.5 - checksum: db84507375ab77b8ffdd24f498a5b49ad6b64391d30dd2ac56885501d03964d29637e05b1ed5aefa09d57ac667e28028bc22d2da872bfcd619652fbdb5f4ca19 - languageName: node - linkType: hard - -"@humanwhocodes/config-array@npm:^0.11.13": - version: 0.11.13 - resolution: "@humanwhocodes/config-array@npm:0.11.13" - dependencies: - "@humanwhocodes/object-schema": ^2.0.1 - debug: ^4.1.1 - minimatch: ^3.0.5 - checksum: f8ea57b0d7ed7f2d64cd3944654976829d9da91c04d9c860e18804729a33f7681f78166ef4c761850b8c324d362f7d53f14c5c44907a6b38b32c703ff85e4805 - languageName: node - linkType: hard - -"@humanwhocodes/config-array@npm:^0.11.8": - version: 0.11.8 - resolution: "@humanwhocodes/config-array@npm:0.11.8" - dependencies: - "@humanwhocodes/object-schema": ^1.2.1 - debug: ^4.1.1 - minimatch: ^3.0.5 - checksum: 0fd6b3c54f1674ce0a224df09b9c2f9846d20b9e54fabae1281ecfc04f2e6ad69bf19e1d6af6a28f88e8aa3990168b6cb9e1ef755868c3256a630605ec2cb1d3 - languageName: node - linkType: hard - -"@humanwhocodes/module-importer@npm:^1.0.1": - version: 1.0.1 - resolution: "@humanwhocodes/module-importer@npm:1.0.1" - checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61 - languageName: node - linkType: hard - -"@humanwhocodes/object-schema@npm:^1.2.1": - version: 1.2.1 - resolution: "@humanwhocodes/object-schema@npm:1.2.1" - checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1 - languageName: node - linkType: hard - -"@humanwhocodes/object-schema@npm:^2.0.1": - version: 2.0.1 - resolution: "@humanwhocodes/object-schema@npm:2.0.1" - checksum: 24929487b1ed48795d2f08346a0116cc5ee4634848bce64161fb947109352c562310fd159fc64dda0e8b853307f5794605191a9547f7341158559ca3c8262a45 - languageName: node - linkType: hard - -"@iarna/toml@npm:2.2.5": - version: 2.2.5 - resolution: "@iarna/toml@npm:2.2.5" - checksum: b63b2b2c4fd67969a6291543ada0303d45593801ee744b60f5390f183c03d9192bc67a217abb24be945158f1935f02840d9ffff40c0142aa171b5d3b6b6a3ea5 - languageName: node - linkType: hard - -"@ibm-cloud/watsonx-ai@npm:^1.4.0": - version: 1.4.0 - resolution: "@ibm-cloud/watsonx-ai@npm:1.4.0" - dependencies: - "@langchain/textsplitters": ^0.1.0 - "@types/node": ^18.0.0 - extend: 3.0.2 - ibm-cloud-sdk-core: ^5.0.2 - checksum: 5250816f9ad93839cf26e3788eeace8155721765c39c65547eff8ebbd5fc8a0dfa107f6e799593f1209f4b3489be24aa674aa92b7ecbc5fc2bd29390a28e84ff - languageName: node - linkType: hard - -"@img/sharp-darwin-arm64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-darwin-arm64@npm:0.33.5" - dependencies: - "@img/sharp-libvips-darwin-arm64": 1.0.4 - dependenciesMeta: - "@img/sharp-libvips-darwin-arm64": - optional: true - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@img/sharp-darwin-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-darwin-x64@npm:0.33.5" - dependencies: - "@img/sharp-libvips-darwin-x64": 1.0.4 - dependenciesMeta: - "@img/sharp-libvips-darwin-x64": - optional: true - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@img/sharp-libvips-darwin-arm64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@img/sharp-libvips-darwin-x64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@img/sharp-libvips-linux-arm64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-libvips-linux-arm@npm:1.0.5": - version: 1.0.5 - resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5" - conditions: os=linux & cpu=arm & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-libvips-linux-s390x@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4" - conditions: os=linux & cpu=s390x & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-libvips-linux-x64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4": - version: 1.0.4 - resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@img/sharp-linux-arm64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-arm64@npm:0.33.5" - dependencies: - "@img/sharp-libvips-linux-arm64": 1.0.4 - dependenciesMeta: - "@img/sharp-libvips-linux-arm64": - optional: true - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-linux-arm@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-arm@npm:0.33.5" - dependencies: - "@img/sharp-libvips-linux-arm": 1.0.5 - dependenciesMeta: - "@img/sharp-libvips-linux-arm": - optional: true - conditions: os=linux & cpu=arm & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-linux-s390x@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-s390x@npm:0.33.5" - dependencies: - "@img/sharp-libvips-linux-s390x": 1.0.4 - dependenciesMeta: - "@img/sharp-libvips-linux-s390x": - optional: true - conditions: os=linux & cpu=s390x & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-linux-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linux-x64@npm:0.33.5" - dependencies: - "@img/sharp-libvips-linux-x64": 1.0.4 - dependenciesMeta: - "@img/sharp-libvips-linux-x64": - optional: true - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@img/sharp-linuxmusl-arm64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5" - dependencies: - "@img/sharp-libvips-linuxmusl-arm64": 1.0.4 - dependenciesMeta: - "@img/sharp-libvips-linuxmusl-arm64": - optional: true - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@img/sharp-linuxmusl-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5" - dependencies: - "@img/sharp-libvips-linuxmusl-x64": 1.0.4 - dependenciesMeta: - "@img/sharp-libvips-linuxmusl-x64": - optional: true - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@img/sharp-wasm32@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-wasm32@npm:0.33.5" - dependencies: - "@emnapi/runtime": ^1.2.0 - conditions: cpu=wasm32 - languageName: node - linkType: hard - -"@img/sharp-win32-ia32@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-win32-ia32@npm:0.33.5" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@img/sharp-win32-x64@npm:0.33.5": - version: 0.33.5 - resolution: "@img/sharp-win32-x64@npm:0.33.5" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@inquirer/figures@npm:^1.0.3": - version: 1.0.5 - resolution: "@inquirer/figures@npm:1.0.5" - checksum: 01dc7b95fe7b030b0577d59f45c4fa5c002dccb43ac75ff106d7142825e09dee63a6f9c42b044da2bc964bf38c40229a112a26505a68f3912b15dc8304106bbc - languageName: node - linkType: hard - -"@ioredis/commands@npm:^1.1.1": - version: 1.2.0 - resolution: "@ioredis/commands@npm:1.2.0" - checksum: 9b20225ba36ef3e5caf69b3c0720597c3016cc9b1e157f519ea388f621dd9037177f84cfe7e25c4c32dad7dd90c70ff9123cd411f747e053cf292193c9c461e2 - languageName: node - linkType: hard - -"@isaacs/cliui@npm:^8.0.2": - version: 8.0.2 - resolution: "@isaacs/cliui@npm:8.0.2" - dependencies: - string-width: ^5.1.2 - string-width-cjs: "npm:string-width@^4.2.0" - strip-ansi: ^7.0.1 - strip-ansi-cjs: "npm:strip-ansi@^6.0.1" - wrap-ansi: ^8.1.0 - wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0" - checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb - languageName: node - linkType: hard - -"@isaacs/fs-minipass@npm:^4.0.0": - version: 4.0.1 - resolution: "@isaacs/fs-minipass@npm:4.0.1" - dependencies: - minipass: ^7.0.4 - checksum: 5d36d289960e886484362d9eb6a51d1ea28baed5f5d0140bbe62b99bac52eaf06cc01c2bc0d3575977962f84f6b2c4387b043ee632216643d4787b0999465bf2 - languageName: node - linkType: hard - -"@istanbuljs/load-nyc-config@npm:^1.0.0": - version: 1.1.0 - resolution: "@istanbuljs/load-nyc-config@npm:1.1.0" - dependencies: - camelcase: ^5.3.1 - find-up: ^4.1.0 - get-package-type: ^0.1.0 - js-yaml: ^3.13.1 - resolve-from: ^5.0.0 - checksum: d578da5e2e804d5c93228450a1380e1a3c691de4953acc162f387b717258512a3e07b83510a936d9fab03eac90817473917e24f5d16297af3867f59328d58568 - languageName: node - linkType: hard - -"@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": - version: 0.1.3 - resolution: "@istanbuljs/schema@npm:0.1.3" - checksum: 5282759d961d61350f33d9118d16bcaed914ebf8061a52f4fa474b2cb08720c9c81d165e13b82f2e5a8a212cc5af482f0c6fc1ac27b9e067e5394c9a6ed186c9 - languageName: node - linkType: hard - -"@jest/console@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/console@npm:29.7.0" - dependencies: - "@jest/types": ^29.6.3 - "@types/node": "*" - chalk: ^4.0.0 - jest-message-util: ^29.7.0 - jest-util: ^29.7.0 - slash: ^3.0.0 - checksum: 0e3624e32c5a8e7361e889db70b170876401b7d70f509a2538c31d5cd50deb0c1ae4b92dc63fe18a0902e0a48c590c21d53787a0df41a52b34fa7cab96c384d6 - languageName: node - linkType: hard - -"@jest/core@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/core@npm:29.7.0" - dependencies: - "@jest/console": ^29.7.0 - "@jest/reporters": ^29.7.0 - "@jest/test-result": ^29.7.0 - "@jest/transform": ^29.7.0 - "@jest/types": ^29.6.3 - "@types/node": "*" - ansi-escapes: ^4.2.1 - chalk: ^4.0.0 - ci-info: ^3.2.0 - exit: ^0.1.2 - graceful-fs: ^4.2.9 - jest-changed-files: ^29.7.0 - jest-config: ^29.7.0 - jest-haste-map: ^29.7.0 - jest-message-util: ^29.7.0 - jest-regex-util: ^29.6.3 - jest-resolve: ^29.7.0 - jest-resolve-dependencies: ^29.7.0 - jest-runner: ^29.7.0 - jest-runtime: ^29.7.0 - jest-snapshot: ^29.7.0 - jest-util: ^29.7.0 - jest-validate: ^29.7.0 - jest-watcher: ^29.7.0 - micromatch: ^4.0.4 - pretty-format: ^29.7.0 - slash: ^3.0.0 - strip-ansi: ^6.0.0 - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - checksum: af759c9781cfc914553320446ce4e47775ae42779e73621c438feb1e4231a5d4862f84b1d8565926f2d1aab29b3ec3dcfdc84db28608bdf5f29867124ebcfc0d - languageName: node - linkType: hard - -"@jest/create-cache-key-function@npm:^27.4.2": - version: 27.5.1 - resolution: "@jest/create-cache-key-function@npm:27.5.1" - dependencies: - "@jest/types": ^27.5.1 - checksum: a6c3a8c769aca6f66f5dc80f1c77e66980b4f213a6b2a15a92ba3595f032848a1261c06c9c798dcf2b672b1ffbefad5085af89d130548741c85ddbe0cf4284e7 - languageName: node - linkType: hard - -"@jest/environment@npm:^29.5.0": - version: 29.5.0 - resolution: "@jest/environment@npm:29.5.0" - dependencies: - "@jest/fake-timers": ^29.5.0 - "@jest/types": ^29.5.0 - "@types/node": "*" - jest-mock: ^29.5.0 - checksum: 921de6325cd4817dec6685e5ff299b499b6379f3f9cf489b4b13588ee1f3820a0c77b49e6a087996b6de8f629f6f5251e636cba08d1bdb97d8071cc7d033c88a - languageName: node - linkType: hard - -"@jest/environment@npm:^29.6.4": - version: 29.6.4 - resolution: "@jest/environment@npm:29.6.4" - dependencies: - "@jest/fake-timers": ^29.6.4 - "@jest/types": ^29.6.3 - "@types/node": "*" - jest-mock: ^29.6.3 - checksum: 810d8f1fc26d293acfc44927bcb78adc58ed4ea580a64c8d94aa6c67239dcb149186bf25b94ff28b79de15253e0c877ad8d330feac205f185f3517593168510c - languageName: node - linkType: hard - -"@jest/environment@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/environment@npm:29.7.0" - dependencies: - "@jest/fake-timers": ^29.7.0 - "@jest/types": ^29.6.3 - "@types/node": "*" - jest-mock: ^29.7.0 - checksum: 6fb398143b2543d4b9b8d1c6dbce83fa5247f84f550330604be744e24c2bd2178bb893657d62d1b97cf2f24baf85c450223f8237cccb71192c36a38ea2272934 - languageName: node - linkType: hard - -"@jest/expect-utils@npm:^29.5.0": - version: 29.5.0 - resolution: "@jest/expect-utils@npm:29.5.0" - dependencies: - jest-get-type: ^29.4.3 - checksum: c46fb677c88535cf83cf29f0a5b1f376c6a1109ddda266ad7da1a9cbc53cb441fa402dd61fc7b111ffc99603c11a9b3357ee41a1c0e035a58830bcb360871476 - languageName: node - linkType: hard - -"@jest/expect-utils@npm:^29.6.1": - version: 29.6.1 - resolution: "@jest/expect-utils@npm:29.6.1" - dependencies: - jest-get-type: ^29.4.3 - checksum: 037ee017eca62f7b45e1465fb5c6f9e92d5709a9ac716b8bff0bd294240a54de734e8f968fb69309cc4aef6c83b9552d5a821f3b18371af394bf04783859d706 - languageName: node - linkType: hard - -"@jest/expect-utils@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/expect-utils@npm:29.7.0" - dependencies: - jest-get-type: ^29.6.3 - checksum: 75eb177f3d00b6331bcaa057e07c0ccb0733a1d0a1943e1d8db346779039cb7f103789f16e502f888a3096fb58c2300c38d1f3748b36a7fa762eb6f6d1b160ed - languageName: node - linkType: hard - -"@jest/expect@npm:^29.5.0": - version: 29.5.0 - resolution: "@jest/expect@npm:29.5.0" - dependencies: - expect: ^29.5.0 - jest-snapshot: ^29.5.0 - checksum: bd10e295111547e6339137107d83986ab48d46561525393834d7d2d8b2ae9d5626653f3f5e48e5c3fa742ac982e97bdf1f541b53b9e1d117a247b08e938527f6 - languageName: node - linkType: hard - -"@jest/expect@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/expect@npm:29.7.0" - dependencies: - expect: ^29.7.0 - jest-snapshot: ^29.7.0 - checksum: a01cb85fd9401bab3370618f4b9013b90c93536562222d920e702a0b575d239d74cecfe98010aaec7ad464f67cf534a353d92d181646a4b792acaa7e912ae55e - languageName: node - linkType: hard - -"@jest/fake-timers@npm:^29.5.0": - version: 29.5.0 - resolution: "@jest/fake-timers@npm:29.5.0" - dependencies: - "@jest/types": ^29.5.0 - "@sinonjs/fake-timers": ^10.0.2 - "@types/node": "*" - jest-message-util: ^29.5.0 - jest-mock: ^29.5.0 - jest-util: ^29.5.0 - checksum: 69930c6922341f244151ec0d27640852ec96237f730fc024da1f53143d31b43cde75d92f9d8e5937981cdce3b31416abc3a7090a0d22c2377512c4a6613244ee - languageName: node - linkType: hard - -"@jest/fake-timers@npm:^29.6.4": - version: 29.6.4 - resolution: "@jest/fake-timers@npm:29.6.4" - dependencies: - "@jest/types": ^29.6.3 - "@sinonjs/fake-timers": ^10.0.2 - "@types/node": "*" - jest-message-util: ^29.6.3 - jest-mock: ^29.6.3 - jest-util: ^29.6.3 - checksum: 3f06d1090cbaaf781920fe59b10509ad86b587c401818a066ee1550101c6203e0718f0f83bbd2afa8bdf7b43eb280f89fb9f8c98886094e53ccabe5e64de9be1 - languageName: node - linkType: hard - -"@jest/fake-timers@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/fake-timers@npm:29.7.0" - dependencies: - "@jest/types": ^29.6.3 - "@sinonjs/fake-timers": ^10.0.2 - "@types/node": "*" - jest-message-util: ^29.7.0 - jest-mock: ^29.7.0 - jest-util: ^29.7.0 - checksum: caf2bbd11f71c9241b458d1b5a66cbe95debc5a15d96442444b5d5c7ba774f523c76627c6931cca5e10e76f0d08761f6f1f01a608898f4751a0eee54fc3d8d00 - languageName: node - linkType: hard - -"@jest/globals@npm:^29.5.0": - version: 29.5.0 - resolution: "@jest/globals@npm:29.5.0" - dependencies: - "@jest/environment": ^29.5.0 - "@jest/expect": ^29.5.0 - "@jest/types": ^29.5.0 - jest-mock: ^29.5.0 - checksum: b309ab8f21b571a7c672608682e84bbdd3d2b554ddf81e4e32617fec0a69094a290ab42e3c8b2c66ba891882bfb1b8b2736720ea1285b3ad646d55c2abefedd9 - languageName: node - linkType: hard - -"@jest/globals@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/globals@npm:29.7.0" - dependencies: - "@jest/environment": ^29.7.0 - "@jest/expect": ^29.7.0 - "@jest/types": ^29.6.3 - jest-mock: ^29.7.0 - checksum: 97dbb9459135693ad3a422e65ca1c250f03d82b2a77f6207e7fa0edd2c9d2015fbe4346f3dc9ebff1678b9d8da74754d4d440b7837497f8927059c0642a22123 - languageName: node - linkType: hard - -"@jest/reporters@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/reporters@npm:29.7.0" - dependencies: - "@bcoe/v8-coverage": ^0.2.3 - "@jest/console": ^29.7.0 - "@jest/test-result": ^29.7.0 - "@jest/transform": ^29.7.0 - "@jest/types": ^29.6.3 - "@jridgewell/trace-mapping": ^0.3.18 - "@types/node": "*" - chalk: ^4.0.0 - collect-v8-coverage: ^1.0.0 - exit: ^0.1.2 - glob: ^7.1.3 - graceful-fs: ^4.2.9 - istanbul-lib-coverage: ^3.0.0 - istanbul-lib-instrument: ^6.0.0 - istanbul-lib-report: ^3.0.0 - istanbul-lib-source-maps: ^4.0.0 - istanbul-reports: ^3.1.3 - jest-message-util: ^29.7.0 - jest-util: ^29.7.0 - jest-worker: ^29.7.0 - slash: ^3.0.0 - string-length: ^4.0.1 - strip-ansi: ^6.0.0 - v8-to-istanbul: ^9.0.1 - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - checksum: 7eadabd62cc344f629024b8a268ecc8367dba756152b761bdcb7b7e570a3864fc51b2a9810cd310d85e0a0173ef002ba4528d5ea0329fbf66ee2a3ada9c40455 - languageName: node - linkType: hard - -"@jest/schemas@npm:^29.4.3": - version: 29.4.3 - resolution: "@jest/schemas@npm:29.4.3" - dependencies: - "@sinclair/typebox": ^0.25.16 - checksum: ac754e245c19dc39e10ebd41dce09040214c96a4cd8efa143b82148e383e45128f24599195ab4f01433adae4ccfbe2db6574c90db2862ccd8551a86704b5bebd - languageName: node - linkType: hard - -"@jest/schemas@npm:^29.6.0": - version: 29.6.0 - resolution: "@jest/schemas@npm:29.6.0" - dependencies: - "@sinclair/typebox": ^0.27.8 - checksum: c00511c69cf89138a7d974404d3a5060af375b5a52b9c87215d91873129b382ca11c1ff25bd6d605951404bb381ddce5f8091004a61e76457da35db1f5c51365 - languageName: node - linkType: hard - -"@jest/schemas@npm:^29.6.3": - version: 29.6.3 - resolution: "@jest/schemas@npm:29.6.3" - dependencies: - "@sinclair/typebox": ^0.27.8 - checksum: 910040425f0fc93cd13e68c750b7885590b8839066dfa0cd78e7def07bbb708ad869381f725945d66f2284de5663bbecf63e8fdd856e2ae6e261ba30b1687e93 - languageName: node - linkType: hard - -"@jest/source-map@npm:^29.6.3": - version: 29.6.3 - resolution: "@jest/source-map@npm:29.6.3" - dependencies: - "@jridgewell/trace-mapping": ^0.3.18 - callsites: ^3.0.0 - graceful-fs: ^4.2.9 - checksum: bcc5a8697d471396c0003b0bfa09722c3cd879ad697eb9c431e6164e2ea7008238a01a07193dfe3cbb48b1d258eb7251f6efcea36f64e1ebc464ea3c03ae2deb - languageName: node - linkType: hard - -"@jest/test-result@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/test-result@npm:29.7.0" - dependencies: - "@jest/console": ^29.7.0 - "@jest/types": ^29.6.3 - "@types/istanbul-lib-coverage": ^2.0.0 - collect-v8-coverage: ^1.0.0 - checksum: 67b6317d526e335212e5da0e768e3b8ab8a53df110361b80761353ad23b6aea4432b7c5665bdeb87658ea373b90fb1afe02ed3611ef6c858c7fba377505057fa - languageName: node - linkType: hard - -"@jest/test-sequencer@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/test-sequencer@npm:29.7.0" - dependencies: - "@jest/test-result": ^29.7.0 - graceful-fs: ^4.2.9 - jest-haste-map: ^29.7.0 - slash: ^3.0.0 - checksum: 73f43599017946be85c0b6357993b038f875b796e2f0950487a82f4ebcb115fa12131932dd9904026b4ad8be131fe6e28bd8d0aa93b1563705185f9804bff8bd - languageName: node - linkType: hard - -"@jest/transform@npm:^29.5.0": - version: 29.5.0 - resolution: "@jest/transform@npm:29.5.0" - dependencies: - "@babel/core": ^7.11.6 - "@jest/types": ^29.5.0 - "@jridgewell/trace-mapping": ^0.3.15 - babel-plugin-istanbul: ^6.1.1 - chalk: ^4.0.0 - convert-source-map: ^2.0.0 - fast-json-stable-stringify: ^2.1.0 - graceful-fs: ^4.2.9 - jest-haste-map: ^29.5.0 - jest-regex-util: ^29.4.3 - jest-util: ^29.5.0 - micromatch: ^4.0.4 - pirates: ^4.0.4 - slash: ^3.0.0 - write-file-atomic: ^4.0.2 - checksum: d55d604085c157cf5112e165ff5ac1fa788873b3b31265fb4734ca59892ee24e44119964cc47eb6d178dd9512bbb6c576d1e20e51a201ff4e24d31e818a1c92d - languageName: node - linkType: hard - -"@jest/transform@npm:^29.7.0": - version: 29.7.0 - resolution: "@jest/transform@npm:29.7.0" - dependencies: - "@babel/core": ^7.11.6 - "@jest/types": ^29.6.3 - "@jridgewell/trace-mapping": ^0.3.18 - babel-plugin-istanbul: ^6.1.1 - chalk: ^4.0.0 - convert-source-map: ^2.0.0 - fast-json-stable-stringify: ^2.1.0 - graceful-fs: ^4.2.9 - jest-haste-map: ^29.7.0 - jest-regex-util: ^29.6.3 - jest-util: ^29.7.0 - micromatch: ^4.0.4 - pirates: ^4.0.4 - slash: ^3.0.0 - write-file-atomic: ^4.0.2 - checksum: 0f8ac9f413903b3cb6d240102db848f2a354f63971ab885833799a9964999dd51c388162106a807f810071f864302cdd8e3f0c241c29ce02d85a36f18f3f40ab - languageName: node - linkType: hard - -"@jest/types@npm:^27.5.1": - version: 27.5.1 - resolution: "@jest/types@npm:27.5.1" - dependencies: - "@types/istanbul-lib-coverage": ^2.0.0 - "@types/istanbul-reports": ^3.0.0 - "@types/node": "*" - "@types/yargs": ^16.0.0 - chalk: ^4.0.0 - checksum: d1f43cc946d87543ddd79d49547aab2399481d34025d5c5f2025d3d99c573e1d9832fa83cef25e9d9b07a8583500229d15bbb07b8e233d127d911d133e2f14b1 - languageName: node - linkType: hard - -"@jest/types@npm:^29.5.0": - version: 29.5.0 - resolution: "@jest/types@npm:29.5.0" - dependencies: - "@jest/schemas": ^29.4.3 - "@types/istanbul-lib-coverage": ^2.0.0 - "@types/istanbul-reports": ^3.0.0 - "@types/node": "*" - "@types/yargs": ^17.0.8 - chalk: ^4.0.0 - checksum: 1811f94b19cf8a9460a289c4f056796cfc373480e0492692a6125a553cd1a63824bd846d7bb78820b7b6f758f6dd3c2d4558293bb676d541b2fa59c70fdf9d39 - languageName: node - linkType: hard - -"@jest/types@npm:^29.6.1": - version: 29.6.1 - resolution: "@jest/types@npm:29.6.1" - dependencies: - "@jest/schemas": ^29.6.0 - "@types/istanbul-lib-coverage": ^2.0.0 - "@types/istanbul-reports": ^3.0.0 - "@types/node": "*" - "@types/yargs": ^17.0.8 - chalk: ^4.0.0 - checksum: 89fc1ccf71a84fe0da643e0675b1cfe6a6f19ea72e935b2ab1dbdb56ec547e94433fb59b3536d3832a6e156c077865b7176fe9dae707dab9c3d2f9405ba6233c - languageName: node - linkType: hard - -"@jest/types@npm:^29.6.3": - version: 29.6.3 - resolution: "@jest/types@npm:29.6.3" - dependencies: - "@jest/schemas": ^29.6.3 - "@types/istanbul-lib-coverage": ^2.0.0 - "@types/istanbul-reports": ^3.0.0 - "@types/node": "*" - "@types/yargs": ^17.0.8 - chalk: ^4.0.0 - checksum: a0bcf15dbb0eca6bdd8ce61a3fb055349d40268622a7670a3b2eb3c3dbafe9eb26af59938366d520b86907b9505b0f9b29b85cec11579a9e580694b87cd90fcc - languageName: node - linkType: hard - -"@jridgewell/gen-mapping@npm:^0.1.0": - version: 0.1.1 - resolution: "@jridgewell/gen-mapping@npm:0.1.1" - dependencies: - "@jridgewell/set-array": ^1.0.0 - "@jridgewell/sourcemap-codec": ^1.4.10 - checksum: 3bcc21fe786de6ffbf35c399a174faab05eb23ce6a03e8769569de28abbf4facc2db36a9ddb0150545ae23a8d35a7cf7237b2aa9e9356a7c626fb4698287d5cc - languageName: node - linkType: hard - -"@jridgewell/gen-mapping@npm:^0.3.0": - version: 0.3.3 - resolution: "@jridgewell/gen-mapping@npm:0.3.3" - dependencies: - "@jridgewell/set-array": ^1.0.1 - "@jridgewell/sourcemap-codec": ^1.4.10 - "@jridgewell/trace-mapping": ^0.3.9 - checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab - languageName: node - linkType: hard - -"@jridgewell/gen-mapping@npm:^0.3.2": - version: 0.3.2 - resolution: "@jridgewell/gen-mapping@npm:0.3.2" - dependencies: - "@jridgewell/set-array": ^1.0.1 - "@jridgewell/sourcemap-codec": ^1.4.10 - "@jridgewell/trace-mapping": ^0.3.9 - checksum: 1832707a1c476afebe4d0fbbd4b9434fdb51a4c3e009ab1e9938648e21b7a97049fa6009393bdf05cab7504108413441df26d8a3c12193996e65493a4efb6882 - languageName: node - linkType: hard - -"@jridgewell/gen-mapping@npm:^0.3.5": - version: 0.3.5 - resolution: "@jridgewell/gen-mapping@npm:0.3.5" - dependencies: - "@jridgewell/set-array": ^1.2.1 - "@jridgewell/sourcemap-codec": ^1.4.10 - "@jridgewell/trace-mapping": ^0.3.24 - checksum: ff7a1764ebd76a5e129c8890aa3e2f46045109dabde62b0b6c6a250152227647178ff2069ea234753a690d8f3c4ac8b5e7b267bbee272bffb7f3b0a370ab6e52 - languageName: node - linkType: hard - -"@jridgewell/resolve-uri@npm:3.1.0": - version: 3.1.0 - resolution: "@jridgewell/resolve-uri@npm:3.1.0" - checksum: b5ceaaf9a110fcb2780d1d8f8d4a0bfd216702f31c988d8042e5f8fbe353c55d9b0f55a1733afdc64806f8e79c485d2464680ac48a0d9fcadb9548ee6b81d267 - languageName: node - linkType: hard - -"@jridgewell/resolve-uri@npm:^3.1.0": - version: 3.1.2 - resolution: "@jridgewell/resolve-uri@npm:3.1.2" - checksum: 83b85f72c59d1c080b4cbec0fef84528963a1b5db34e4370fa4bd1e3ff64a0d80e0cee7369d11d73c704e0286fb2865b530acac7a871088fbe92b5edf1000870 - languageName: node - linkType: hard - -"@jridgewell/set-array@npm:^1.0.0, @jridgewell/set-array@npm:^1.0.1": - version: 1.1.2 - resolution: "@jridgewell/set-array@npm:1.1.2" - checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e - languageName: node - linkType: hard - -"@jridgewell/set-array@npm:^1.2.1": - version: 1.2.1 - resolution: "@jridgewell/set-array@npm:1.2.1" - checksum: 832e513a85a588f8ed4f27d1279420d8547743cc37fcad5a5a76fc74bb895b013dfe614d0eed9cb860048e6546b798f8f2652020b4b2ba0561b05caa8c654b10 - languageName: node - linkType: hard - -"@jridgewell/source-map@npm:^0.3.3": - version: 0.3.5 - resolution: "@jridgewell/source-map@npm:0.3.5" - dependencies: - "@jridgewell/gen-mapping": ^0.3.0 - "@jridgewell/trace-mapping": ^0.3.9 - checksum: 1ad4dec0bdafbade57920a50acec6634f88a0eb735851e0dda906fa9894e7f0549c492678aad1a10f8e144bfe87f238307bf2a914a1bc85b7781d345417e9f6f - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.10": - version: 1.4.14 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.14" - checksum: 61100637b6d173d3ba786a5dff019e1a74b1f394f323c1fee337ff390239f053b87266c7a948777f4b1ee68c01a8ad0ab61e5ff4abb5a012a0b091bec391ab97 - languageName: node - linkType: hard - -"@jridgewell/sourcemap-codec@npm:^1.4.14, @jridgewell/sourcemap-codec@npm:^1.4.15": - version: 1.4.15 - resolution: "@jridgewell/sourcemap-codec@npm:1.4.15" - checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8 - languageName: node - linkType: hard - -"@jridgewell/trace-mapping@npm:^0.3.12, @jridgewell/trace-mapping@npm:^0.3.15, @jridgewell/trace-mapping@npm:^0.3.17, @jridgewell/trace-mapping@npm:^0.3.9": - version: 0.3.17 - resolution: "@jridgewell/trace-mapping@npm:0.3.17" - dependencies: - "@jridgewell/resolve-uri": 3.1.0 - "@jridgewell/sourcemap-codec": 1.4.14 - checksum: 9d703b859cff5cd83b7308fd457a431387db5db96bd781a63bf48e183418dd9d3d44e76b9e4ae13237f6abeeb25d739ec9215c1d5bfdd08f66f750a50074a339 - languageName: node - linkType: hard - -"@jridgewell/trace-mapping@npm:^0.3.18, @jridgewell/trace-mapping@npm:^0.3.24, @jridgewell/trace-mapping@npm:^0.3.25": - version: 0.3.25 - resolution: "@jridgewell/trace-mapping@npm:0.3.25" - dependencies: - "@jridgewell/resolve-uri": ^3.1.0 - "@jridgewell/sourcemap-codec": ^1.4.14 - checksum: 9d3c40d225e139987b50c48988f8717a54a8c994d8a948ee42e1412e08988761d0754d7d10b803061cc3aebf35f92a5dbbab493bd0e1a9ef9e89a2130e83ba34 - languageName: node - linkType: hard - -"@js-sdsl/ordered-map@npm:^4.4.2": - version: 4.4.2 - resolution: "@js-sdsl/ordered-map@npm:4.4.2" - checksum: a927ae4ff8565ecb75355cc6886a4f8fadbf2af1268143c96c0cce3ba01261d241c3f4ba77f21f3f017a00f91dfe9e0673e95f830255945c80a0e96c6d30508a - languageName: node - linkType: hard - -"@jsdevtools/ono@npm:^7.1.3": - version: 7.1.3 - resolution: "@jsdevtools/ono@npm:7.1.3" - checksum: 2297fcd472ba810bffe8519d2249171132844c7174f3a16634f9260761c8c78bc0428a4190b5b6d72d45673c13918ab9844d706c3ed4ef8f62ab11a2627a08ad - languageName: node - linkType: hard - -"@kwsites/file-exists@npm:^1.1.1": - version: 1.1.1 - resolution: "@kwsites/file-exists@npm:1.1.1" - dependencies: - debug: ^4.1.1 - checksum: 4ff945de7293285133aeae759caddc71e73c4a44a12fac710fdd4f574cce2671a3f89d8165fdb03d383cfc97f3f96f677d8de3c95133da3d0e12a123a23109fe - languageName: node - linkType: hard - -"@kwsites/promise-deferred@npm:^1.1.1": - version: 1.1.1 - resolution: "@kwsites/promise-deferred@npm:1.1.1" - checksum: 07455477a0123d9a38afb503739eeff2c5424afa8d3dbdcc7f9502f13604488a4b1d9742fc7288832a52a6422cf1e1c0a1d51f69a39052f14d27c9a0420b6629 - languageName: node - linkType: hard - -"@lancedb/lancedb-darwin-arm64@npm:0.13.0": - version: 0.13.0 - resolution: "@lancedb/lancedb-darwin-arm64@npm:0.13.0" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@lancedb/lancedb-darwin-x64@npm:0.13.0": - version: 0.13.0 - resolution: "@lancedb/lancedb-darwin-x64@npm:0.13.0" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@lancedb/lancedb-linux-arm64-gnu@npm:0.13.0": - version: 0.13.0 - resolution: "@lancedb/lancedb-linux-arm64-gnu@npm:0.13.0" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@lancedb/lancedb-linux-x64-gnu@npm:0.13.0": - version: 0.13.0 - resolution: "@lancedb/lancedb-linux-x64-gnu@npm:0.13.0" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@lancedb/lancedb-win32-x64-msvc@npm:0.13.0": - version: 0.13.0 - resolution: "@lancedb/lancedb-win32-x64-msvc@npm:0.13.0" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@lancedb/lancedb@npm:^0.13.0": - version: 0.13.0 - resolution: "@lancedb/lancedb@npm:0.13.0" - dependencies: - "@lancedb/lancedb-darwin-arm64": 0.13.0 - "@lancedb/lancedb-darwin-x64": 0.13.0 - "@lancedb/lancedb-linux-arm64-gnu": 0.13.0 - "@lancedb/lancedb-linux-x64-gnu": 0.13.0 - "@lancedb/lancedb-win32-x64-msvc": 0.13.0 - reflect-metadata: ^0.2.2 - peerDependencies: - apache-arrow: ">=13.0.0 <=17.0.0" - dependenciesMeta: - "@lancedb/lancedb-darwin-arm64": - optional: true - "@lancedb/lancedb-darwin-x64": - optional: true - "@lancedb/lancedb-linux-arm64-gnu": - optional: true - "@lancedb/lancedb-linux-x64-gnu": - optional: true - "@lancedb/lancedb-win32-x64-msvc": - optional: true - conditions: (os=darwin | os=linux | os=win32) & (cpu=x64 | cpu=arm64) - languageName: node - linkType: hard - -"@langchain/anthropic@*, @langchain/anthropic@workspace:*, @langchain/anthropic@workspace:libs/langchain-anthropic": - version: 0.0.0-use.local - resolution: "@langchain/anthropic@workspace:libs/langchain-anthropic" - dependencies: - "@anthropic-ai/sdk": ^0.36.3 - "@anthropic-ai/vertex-sdk": ^0.4.1 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-jest: ^27.6.0 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - fast-xml-parser: ^4.4.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rimraf: ^5.0.1 - ts-jest: ^29.1.0 - typescript: ~5.1.6 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.4 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/aws@*, @langchain/aws@workspace:*, @langchain/aws@workspace:libs/langchain-aws": - version: 0.0.0-use.local - resolution: "@langchain/aws@workspace:libs/langchain-aws" - dependencies: - "@aws-sdk/client-bedrock-agent-runtime": ^3.616.0 - "@aws-sdk/client-bedrock-runtime": ^3.602.0 - "@aws-sdk/client-kendra": ^3.352.0 - "@aws-sdk/credential-provider-node": ^3.600.0 - "@aws-sdk/types": ^3.609.0 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@smithy/types": ^3.2.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.5 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/azure-cosmosdb@workspace:*, @langchain/azure-cosmosdb@workspace:libs/langchain-azure-cosmosdb": - version: 0.0.0-use.local - resolution: "@langchain/azure-cosmosdb@workspace:libs/langchain-azure-cosmosdb" - dependencies: - "@azure/cosmos": ^4.2.0 - "@azure/identity": ^4.5.0 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": "workspace:^" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.4.5 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - mongodb: ^6.10.0 - prettier: ^2.8.3 - release-it: ^15.10.1 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/azure-dynamic-sessions@workspace:^, @langchain/azure-dynamic-sessions@workspace:libs/langchain-azure-dynamic-sessions": - version: 0.0.0-use.local - resolution: "@langchain/azure-dynamic-sessions@workspace:libs/langchain-azure-dynamic-sessions" - dependencies: - "@azure/identity": ^4.2.1 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.4.5 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/azure-openai@workspace:*, @langchain/azure-openai@workspace:libs/langchain-azure-openai": - version: 0.0.0-use.local - resolution: "@langchain/azure-openai@workspace:libs/langchain-azure-openai" - dependencies: - "@azure/core-auth": ^1.5.0 - "@azure/identity": ^4.2.1 - "@azure/openai": 1.0.0-beta.11 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-jest: ^27.6.0 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - js-tiktoken: ^1.0.12 - prettier: ^2.8.3 - release-it: ^17.6.0 - rimraf: ^5.0.1 - typescript: ~5.1.6 - zod: ^3.22.3 - zod-to-json-schema: 3.20.3 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/baidu-qianfan@workspace:*, @langchain/baidu-qianfan@workspace:libs/langchain-baidu-qianfan": - version: 0.0.0-use.local - resolution: "@langchain/baidu-qianfan@workspace:libs/langchain-baidu-qianfan" - dependencies: - "@baiducloud/qianfan": ^0.1.6 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": ~0.3.0 - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.5 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/cerebras@*, @langchain/cerebras@workspace:libs/langchain-cerebras": - version: 0.0.0-use.local - resolution: "@langchain/cerebras@workspace:libs/langchain-cerebras" - dependencies: - "@cerebras/cerebras_cloud_sdk": ^1.15.0 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^10 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^15.10.1 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.3 - peerDependencies: - "@langchain/core": ">=0.3.0 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/cloudflare@workspace:*, @langchain/cloudflare@workspace:libs/langchain-cloudflare": - version: 0.0.0-use.local - resolution: "@langchain/cloudflare@workspace:libs/langchain-cloudflare" - dependencies: - "@cloudflare/workers-types": ^4.20240909.0 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/cohere@*, @langchain/cohere@workspace:*, @langchain/cohere@workspace:libs/langchain-cohere": - version: 0.0.0-use.local - resolution: "@langchain/cohere@workspace:libs/langchain-cohere" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - cohere-ai: ^7.14.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-jest: ^27.6.0 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - zod: ^3.23.8 - zod-to-json-schema: ^3.23.1 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/community@workspace:*, @langchain/community@workspace:libs/langchain-community": - version: 0.0.0-use.local - resolution: "@langchain/community@workspace:libs/langchain-community" - dependencies: - "@arcjet/redact": ^v1.0.0-alpha.23 - "@aws-crypto/sha256-js": ^5.0.0 - "@aws-sdk/client-bedrock-agent-runtime": ^3.583.0 - "@aws-sdk/client-bedrock-runtime": ^3.422.0 - "@aws-sdk/client-dynamodb": ^3.310.0 - "@aws-sdk/client-kendra": ^3.352.0 - "@aws-sdk/client-lambda": ^3.310.0 - "@aws-sdk/client-s3": ^3.310.0 - "@aws-sdk/client-sagemaker-runtime": ^3.414.0 - "@aws-sdk/client-sfn": ^3.362.0 - "@aws-sdk/credential-provider-node": ^3.388.0 - "@aws-sdk/types": ^3.357.0 - "@azure/search-documents": ^12.0.0 - "@azure/storage-blob": ^12.15.0 - "@browserbasehq/sdk": ^1.1.5 - "@browserbasehq/stagehand": ^1.0.0 - "@clickhouse/client": ^0.2.5 - "@cloudflare/ai": 1.0.12 - "@cloudflare/workers-types": ^4.20230922.0 - "@datastax/astra-db-ts": ^1.0.1 - "@elastic/elasticsearch": ^8.4.0 - "@faker-js/faker": 8.4.1 - "@getmetal/metal-sdk": ^4.0.0 - "@getzep/zep-cloud": ^1.0.6 - "@getzep/zep-js": ^0.9.0 - "@gomomento/sdk": ^1.51.1 - "@gomomento/sdk-core": ^1.51.1 - "@google-ai/generativelanguage": ^2.5.0 - "@google-cloud/storage": ^7.7.0 - "@gradientai/nodejs-sdk": ^1.2.0 - "@huggingface/inference": ^2.6.4 - "@huggingface/transformers": ^3.2.3 - "@ibm-cloud/watsonx-ai": ^1.4.0 - "@jest/globals": ^29.5.0 - "@lancedb/lancedb": ^0.13.0 - "@langchain/core": "workspace:*" - "@langchain/openai": ">=0.2.0 <0.5.0" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@layerup/layerup-security": ^1.5.12 - "@libsql/client": ^0.14.0 - "@mendable/firecrawl-js": ^1.4.3 - "@mlc-ai/web-llm": ">=0.2.62 <0.3.0" - "@mozilla/readability": ^0.4.4 - "@neondatabase/serverless": ^0.9.1 - "@notionhq/client": ^2.2.10 - "@opensearch-project/opensearch": ^2.2.0 - "@planetscale/database": ^1.8.0 - "@playwright/test": ^1.48.2 - "@premai/prem-sdk": ^0.3.25 - "@qdrant/js-client-rest": ^1.8.2 - "@raycast/api": ^1.83.1 - "@rockset/client": ^0.9.1 - "@smithy/eventstream-codec": ^2.0.5 - "@smithy/protocol-http": ^3.0.6 - "@smithy/signature-v4": ^2.0.10 - "@smithy/util-utf8": ^2.0.0 - "@spider-cloud/spider-client": ^0.0.21 - "@supabase/supabase-js": ^2.45.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tensorflow-models/universal-sentence-encoder": ^1.3.3 - "@tensorflow/tfjs-backend-cpu": ^3 - "@tensorflow/tfjs-converter": ^3.6.0 - "@tensorflow/tfjs-core": ^3.6.0 - "@tsconfig/recommended": ^1.0.2 - "@types/better-sqlite3": ^7.6.10 - "@types/crypto-js": ^4.2.2 - "@types/d3-dsv": ^3.0.7 - "@types/flat": ^5.0.2 - "@types/html-to-text": ^9 - "@types/jsdom": ^21.1.1 - "@types/jsonwebtoken": ^9 - "@types/lodash": ^4 - "@types/mozilla-readability": ^0.2.1 - "@types/pdf-parse": ^1.1.1 - "@types/pg": ^8.11.0 - "@types/pg-copy-streams": ^1.2.2 - "@types/uuid": ^9 - "@types/word-extractor": ^1 - "@types/ws": ^8 - "@typescript-eslint/eslint-plugin": ^5.58.0 - "@typescript-eslint/parser": ^5.58.0 - "@upstash/ratelimit": ^2.0.3 - "@upstash/redis": ^1.32.0 - "@upstash/vector": ^1.1.1 - "@vercel/kv": ^3.0.0 - "@vercel/postgres": ^0.10.0 - "@writerai/writer-sdk": ^0.40.2 - "@xata.io/client": ^0.28.0 - "@zilliz/milvus2-sdk-node": ">=2.3.5" - apify-client: ^2.7.1 - assemblyai: ^4.6.0 - better-sqlite3: 9.5.0 - binary-extensions: ^2.2.0 - cassandra-driver: ^4.7.2 - cborg: ^4.1.1 - cheerio: ^1.0.0-rc.12 - chromadb: ^1.9.1 - closevector-common: 0.1.3 - closevector-node: 0.1.6 - closevector-web: 0.1.6 - cohere-ai: ">=6.0.0" - convex: ^1.3.1 - couchbase: ^4.3.0 - crypto-js: ^4.2.0 - d3-dsv: ^2.0.0 - datastore-core: ^9.2.9 - discord.js: ^14.14.1 - dotenv: ^16.0.3 - dpdm: ^3.12.0 - dria: ^0.0.3 - duck-duck-scrape: ^2.2.5 - epub2: ^3.0.1 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-jest: ^27.6.0 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - expr-eval: ^2.0.2 - fast-xml-parser: ^4.5.1 - firebase-admin: ^11.9.0 || ^12.0.0 - flat: ^5.0.2 - google-auth-library: ^9.10.0 - googleapis: ^126.0.1 - graphql: ^16.6.0 - hdb: 0.19.8 - hnswlib-node: ^3.0.0 - html-to-text: ^9.0.5 - ibm-cloud-sdk-core: ^5.0.2 - ignore: ^5.2.0 - interface-datastore: ^8.2.11 - ioredis: ^5.3.2 - it-all: ^3.0.4 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - js-yaml: ^4.1.0 - jsdom: ^22.1.0 - jsonwebtoken: ^9.0.2 - langchain: ">=0.2.3 <0.3.0 || >=0.3.4 <0.4.0" - langsmith: ">=0.2.8 <0.4.0" - llmonitor: ^0.5.9 - lodash: ^4.17.21 - lunary: ^0.7.10 - mammoth: ^1.6.0 - mongodb: ^5.2.0 - mysql2: ^3.9.8 - neo4j-driver: ^5.17.0 - node-llama-cpp: 3.1.1 - notion-to-md: ^3.1.0 - officeparser: ^4.0.4 - openai: "*" - pdf-parse: 1.1.1 - pg: ^8.11.0 - pg-copy-streams: ^6.0.5 - pickleparser: ^0.2.1 - playwright: ^1.32.1 - portkey-ai: ^0.1.11 - prettier: ^2.8.3 - puppeteer: ^22.0.0 - pyodide: ^0.26.2 - redis: ^4.6.6 - release-it: ^17.6.0 - replicate: ^1.0.1 - rollup: ^3.19.1 - sonix-speech-recognition: ^2.1.1 - srt-parser-2: ^1.2.3 - ts-jest: ^29.1.0 - typeorm: ^0.3.20 - typescript: ~5.1.6 - typesense: ^1.5.3 - usearch: ^1.1.1 - uuid: ^10.0.0 - voy-search: 0.6.2 - weaviate-ts-client: ^1.4.0 - web-auth-library: ^1.0.3 - word-extractor: ^1.0.4 - youtubei.js: ^12.2.0 - zod: ^3.22.3 - zod-to-json-schema: ^3.22.5 - peerDependencies: - "@arcjet/redact": ^v1.0.0-alpha.23 - "@aws-crypto/sha256-js": ^5.0.0 - "@aws-sdk/client-bedrock-agent-runtime": ^3.583.0 - "@aws-sdk/client-bedrock-runtime": ^3.422.0 - "@aws-sdk/client-dynamodb": ^3.310.0 - "@aws-sdk/client-kendra": ^3.352.0 - "@aws-sdk/client-lambda": ^3.310.0 - "@aws-sdk/client-s3": ^3.310.0 - "@aws-sdk/client-sagemaker-runtime": ^3.310.0 - "@aws-sdk/client-sfn": ^3.310.0 - "@aws-sdk/credential-provider-node": ^3.388.0 - "@azure/search-documents": ^12.0.0 - "@azure/storage-blob": ^12.15.0 - "@browserbasehq/sdk": "*" - "@browserbasehq/stagehand": ^1.0.0 - "@clickhouse/client": ^0.2.5 - "@cloudflare/ai": "*" - "@datastax/astra-db-ts": ^1.0.0 - "@elastic/elasticsearch": ^8.4.0 - "@getmetal/metal-sdk": "*" - "@getzep/zep-cloud": ^1.0.6 - "@getzep/zep-js": ^0.9.0 - "@gomomento/sdk": ^1.51.1 - "@gomomento/sdk-core": ^1.51.1 - "@google-ai/generativelanguage": "*" - "@google-cloud/storage": ^6.10.1 || ^7.7.0 - "@gradientai/nodejs-sdk": ^1.2.0 - "@huggingface/inference": ^2.6.4 - "@huggingface/transformers": ^3.2.3 - "@ibm-cloud/watsonx-ai": "*" - "@lancedb/lancedb": ^0.12.0 - "@langchain/core": ">=0.2.21 <0.4.0" - "@layerup/layerup-security": ^1.5.12 - "@libsql/client": ^0.14.0 - "@mendable/firecrawl-js": ^1.4.3 - "@mlc-ai/web-llm": "*" - "@mozilla/readability": "*" - "@neondatabase/serverless": "*" - "@notionhq/client": ^2.2.10 - "@opensearch-project/opensearch": "*" - "@pinecone-database/pinecone": "*" - "@planetscale/database": ^1.8.0 - "@premai/prem-sdk": ^0.3.25 - "@qdrant/js-client-rest": ^1.8.2 - "@raycast/api": ^1.55.2 - "@rockset/client": ^0.9.1 - "@smithy/eventstream-codec": ^2.0.5 - "@smithy/protocol-http": ^3.0.6 - "@smithy/signature-v4": ^2.0.10 - "@smithy/util-utf8": ^2.0.0 - "@spider-cloud/spider-client": ^0.0.21 - "@supabase/supabase-js": ^2.45.0 - "@tensorflow-models/universal-sentence-encoder": "*" - "@tensorflow/tfjs-converter": "*" - "@tensorflow/tfjs-core": "*" - "@upstash/ratelimit": ^1.1.3 || ^2.0.3 - "@upstash/redis": ^1.20.6 - "@upstash/vector": ^1.1.1 - "@vercel/kv": "*" - "@vercel/postgres": "*" - "@writerai/writer-sdk": ^0.40.2 - "@xata.io/client": ^0.28.0 - "@zilliz/milvus2-sdk-node": ">=2.3.5" - apify-client: ^2.7.1 - assemblyai: ^4.6.0 - better-sqlite3: ">=9.4.0 <12.0.0" - cassandra-driver: ^4.7.2 - cborg: ^4.1.1 - cheerio: ^1.0.0-rc.12 - chromadb: "*" - closevector-common: 0.1.3 - closevector-node: 0.1.6 - closevector-web: 0.1.6 - cohere-ai: "*" - convex: ^1.3.1 - crypto-js: ^4.2.0 - d3-dsv: ^2.0.0 - discord.js: ^14.14.1 - dria: ^0.0.3 - duck-duck-scrape: ^2.2.5 - epub2: ^3.0.1 - fast-xml-parser: "*" - firebase-admin: ^11.9.0 || ^12.0.0 - google-auth-library: "*" - googleapis: "*" - hnswlib-node: ^3.0.0 - html-to-text: ^9.0.5 - ibm-cloud-sdk-core: "*" - ignore: ^5.2.0 - interface-datastore: ^8.2.11 - ioredis: ^5.3.2 - it-all: ^3.0.4 - jsdom: "*" - jsonwebtoken: ^9.0.2 - llmonitor: ^0.5.9 - lodash: ^4.17.21 - lunary: ^0.7.10 - mammoth: ^1.6.0 - mongodb: ">=5.2.0" - mysql2: ^3.9.8 - neo4j-driver: "*" - notion-to-md: ^3.1.0 - officeparser: ^4.0.4 - openai: "*" - pdf-parse: 1.1.1 - pg: ^8.11.0 - pg-copy-streams: ^6.0.5 - pickleparser: ^0.2.1 - playwright: ^1.32.1 - portkey-ai: ^0.1.11 - puppeteer: "*" - pyodide: ">=0.24.1 <0.27.0" - redis: "*" - replicate: "*" - sonix-speech-recognition: ^2.1.1 - srt-parser-2: ^1.2.3 - typeorm: ^0.3.20 - typesense: ^1.5.3 - usearch: ^1.1.1 - voy-search: 0.6.2 - weaviate-ts-client: "*" - web-auth-library: ^1.0.3 - word-extractor: "*" - ws: ^8.14.2 - youtubei.js: "*" - peerDependenciesMeta: - "@arcjet/redact": - optional: true - "@aws-crypto/sha256-js": - optional: true - "@aws-sdk/client-bedrock-agent-runtime": - optional: true - "@aws-sdk/client-bedrock-runtime": - optional: true - "@aws-sdk/client-dynamodb": - optional: true - "@aws-sdk/client-kendra": - optional: true - "@aws-sdk/client-lambda": - optional: true - "@aws-sdk/client-s3": - optional: true - "@aws-sdk/client-sagemaker-runtime": - optional: true - "@aws-sdk/client-sfn": - optional: true - "@aws-sdk/credential-provider-node": - optional: true - "@azure/search-documents": - optional: true - "@azure/storage-blob": - optional: true - "@browserbasehq/sdk": - optional: true - "@clickhouse/client": - optional: true - "@cloudflare/ai": - optional: true - "@datastax/astra-db-ts": - optional: true - "@elastic/elasticsearch": - optional: true - "@getmetal/metal-sdk": - optional: true - "@getzep/zep-cloud": - optional: true - "@getzep/zep-js": - optional: true - "@gomomento/sdk": - optional: true - "@gomomento/sdk-core": - optional: true - "@google-ai/generativelanguage": - optional: true - "@google-cloud/storage": - optional: true - "@gradientai/nodejs-sdk": - optional: true - "@huggingface/inference": - optional: true - "@huggingface/transformers": - optional: true - "@lancedb/lancedb": - optional: true - "@layerup/layerup-security": - optional: true - "@libsql/client": - optional: true - "@mendable/firecrawl-js": - optional: true - "@mlc-ai/web-llm": - optional: true - "@mozilla/readability": - optional: true - "@neondatabase/serverless": - optional: true - "@notionhq/client": - optional: true - "@opensearch-project/opensearch": - optional: true - "@pinecone-database/pinecone": - optional: true - "@planetscale/database": - optional: true - "@premai/prem-sdk": - optional: true - "@qdrant/js-client-rest": - optional: true - "@raycast/api": - optional: true - "@rockset/client": - optional: true - "@smithy/eventstream-codec": - optional: true - "@smithy/protocol-http": - optional: true - "@smithy/signature-v4": - optional: true - "@smithy/util-utf8": - optional: true - "@spider-cloud/spider-client": - optional: true - "@supabase/supabase-js": - optional: true - "@tensorflow-models/universal-sentence-encoder": - optional: true - "@tensorflow/tfjs-converter": - optional: true - "@tensorflow/tfjs-core": - optional: true - "@upstash/ratelimit": - optional: true - "@upstash/redis": - optional: true - "@upstash/vector": - optional: true - "@vercel/kv": - optional: true - "@vercel/postgres": - optional: true - "@writerai/writer-sdk": - optional: true - "@xata.io/client": - optional: true - "@zilliz/milvus2-sdk-node": - optional: true - apify-client: - optional: true - assemblyai: - optional: true - better-sqlite3: - optional: true - cassandra-driver: - optional: true - cborg: - optional: true - cheerio: - optional: true - chromadb: - optional: true - closevector-common: - optional: true - closevector-node: - optional: true - closevector-web: - optional: true - cohere-ai: - optional: true - convex: - optional: true - crypto-js: - optional: true - d3-dsv: - optional: true - discord.js: - optional: true - dria: - optional: true - duck-duck-scrape: - optional: true - epub2: - optional: true - fast-xml-parser: - optional: true - firebase-admin: - optional: true - google-auth-library: - optional: true - googleapis: - optional: true - hnswlib-node: - optional: true - html-to-text: - optional: true - ignore: - optional: true - interface-datastore: - optional: true - ioredis: - optional: true - it-all: - optional: true - jsdom: - optional: true - jsonwebtoken: - optional: true - llmonitor: - optional: true - lodash: - optional: true - lunary: - optional: true - mammoth: - optional: true - mongodb: - optional: true - mysql2: - optional: true - neo4j-driver: - optional: true - notion-to-md: - optional: true - officeparser: - optional: true - pdf-parse: - optional: true - pg: - optional: true - pg-copy-streams: - optional: true - pickleparser: - optional: true - playwright: - optional: true - portkey-ai: - optional: true - puppeteer: - optional: true - pyodide: - optional: true - redis: - optional: true - replicate: - optional: true - sonix-speech-recognition: - optional: true - srt-parser-2: - optional: true - typeorm: - optional: true - typesense: - optional: true - usearch: - optional: true - voy-search: - optional: true - weaviate-ts-client: - optional: true - web-auth-library: - optional: true - word-extractor: - optional: true - ws: - optional: true - youtubei.js: - optional: true - languageName: unknown - linkType: soft - -"@langchain/core@workspace:*, @langchain/core@workspace:langchain-core": - version: 0.0.0-use.local - resolution: "@langchain/core@workspace:langchain-core" - dependencies: - "@cfworker/json-schema": ^4.0.2 - "@jest/globals": ^29.5.0 - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@types/decamelize": ^1.2.0 - "@types/mustache": ^4 - ansi-styles: ^5.0.0 - camelcase: 6 - decamelize: 1.2.0 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-jest: ^27.6.0 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - js-tiktoken: ^1.0.12 - langsmith: ">=0.2.8 <0.4.0" - ml-matrix: ^6.10.4 - mustache: ^4.2.0 - p-queue: ^6.6.2 - p-retry: 4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rimraf: ^5.0.1 - ts-jest: ^29.1.0 - typescript: ~5.1.6 - uuid: ^10.0.0 - web-streams-polyfill: ^4.0.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.3 - languageName: unknown - linkType: soft - -"@langchain/deepseek@*, @langchain/deepseek@workspace:*, @langchain/deepseek@workspace:libs/langchain-deepseek": - version: 0.0.0-use.local - resolution: "@langchain/deepseek@workspace:libs/langchain-deepseek" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": ^0.4.2 - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": "workspace:*" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^15.10.1 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.24.1 - peerDependencies: - "@langchain/core": ">=0.3.0 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/exa@workspace:*, @langchain/exa@workspace:libs/langchain-exa": - version: 0.0.0-use.local - resolution: "@langchain/exa@workspace:libs/langchain-exa" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - exa-js: ^1.0.12 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/google-common@^0.1.0, @langchain/google-common@workspace:*, @langchain/google-common@workspace:libs/langchain-google-common, @langchain/google-common@~0.1.8": - version: 0.0.0-use.local - resolution: "@langchain/google-common@workspace:libs/langchain-google-common" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.4 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/google-gauth@workspace:libs/langchain-google-gauth, @langchain/google-gauth@~0.1.8": - version: 0.0.0-use.local - resolution: "@langchain/google-gauth@workspace:libs/langchain-google-gauth" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/google-common": ~0.1.8 - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - google-auth-library: ^8.9.0 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.22.4 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/google-genai@*, @langchain/google-genai@workspace:*, @langchain/google-genai@workspace:libs/langchain-google-genai": - version: 0.0.0-use.local - resolution: "@langchain/google-genai@workspace:libs/langchain-google-genai" - dependencies: - "@google/generative-ai": ^0.21.0 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - hnswlib-node: ^3.0.0 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.4 - peerDependencies: - "@langchain/core": ">=0.3.17 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/google-vertexai-web@*, @langchain/google-vertexai-web@workspace:*, @langchain/google-vertexai-web@workspace:libs/langchain-google-vertexai-web": - version: 0.0.0-use.local - resolution: "@langchain/google-vertexai-web@workspace:libs/langchain-google-vertexai-web" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/google-common": ^0.1.0 - "@langchain/google-webauth": ~0.1.8 - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.22.4 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/google-vertexai@*, @langchain/google-vertexai@workspace:*, @langchain/google-vertexai@workspace:libs/langchain-google-vertexai": - version: 0.0.0-use.local - resolution: "@langchain/google-vertexai@workspace:libs/langchain-google-vertexai" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/google-common": ^0.1.0 - "@langchain/google-gauth": ~0.1.8 - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.22.4 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/google-webauth@workspace:libs/langchain-google-webauth, @langchain/google-webauth@~0.1.8": - version: 0.0.0-use.local - resolution: "@langchain/google-webauth@workspace:libs/langchain-google-webauth" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/google-common": ~0.1.8 - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - web-auth-library: ^1.0.3 - zod: ^3.23.8 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/groq@*, @langchain/groq@workspace:*, @langchain/groq@workspace:libs/langchain-groq": - version: 0.0.0-use.local - resolution: "@langchain/groq@workspace:libs/langchain-groq" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": "workspace:^" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - groq-sdk: ^0.5.0 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.5 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/langgraph-checkpoint@npm:~0.0.13": - version: 0.0.13 - resolution: "@langchain/langgraph-checkpoint@npm:0.0.13" - dependencies: - uuid: ^10.0.0 - peerDependencies: - "@langchain/core": ">=0.2.31 <0.4.0" - checksum: 721f6a99119e4445504d34d311f0c38c025ca65be04731c49915c08d6e7a2b5c9917b16e8c2f7b1ff9dd9f23ae56a4aa0918d902e0044ebdc8bf80704671163b - languageName: node - linkType: hard - -"@langchain/langgraph-sdk@npm:~0.0.21": - version: 0.0.32 - resolution: "@langchain/langgraph-sdk@npm:0.0.32" - dependencies: - "@types/json-schema": ^7.0.15 - p-queue: ^6.6.2 - p-retry: 4 - uuid: ^9.0.0 - checksum: dd0e3fd1f3880e1ddff65108f338e75365bdff60f8ca5dc4e1b1e1be79fa216f1e599fa5d7f62ab9b44778787426f20b82db4e97463d6f3f4eda43f81666bfe9 - languageName: node - linkType: hard - -"@langchain/langgraph@npm:^0.2.34": - version: 0.2.34 - resolution: "@langchain/langgraph@npm:0.2.34" - dependencies: - "@langchain/langgraph-checkpoint": ~0.0.13 - "@langchain/langgraph-sdk": ~0.0.21 - uuid: ^10.0.0 - zod: ^3.23.8 - peerDependencies: - "@langchain/core": ">=0.2.36 <0.3.0 || >=0.3.9 < 0.4.0" - checksum: b60a639ef0b368637c8663f2ca89ea95192408d4117c1ea7d93cfa8cb4edb016c684bb7f8ace5ba1cbbb7279c99e5dfa0929dcdf2a284a0c85ae4b5a73baa23e - languageName: node - linkType: hard - -"@langchain/mistralai@*, @langchain/mistralai@workspace:*, @langchain/mistralai@workspace:libs/langchain-mistralai": - version: 0.0.0-use.local - resolution: "@langchain/mistralai@workspace:libs/langchain-mistralai" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@mistralai/mistralai": ^1.3.1 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - zod: ^3.23.8 - zod-to-json-schema: ^3.22.4 - peerDependencies: - "@langchain/core": ">=0.3.7 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/mixedbread-ai@workspace:libs/langchain-mixedbread-ai": - version: 0.0.0-use.local - resolution: "@langchain/mixedbread-ai@workspace:libs/langchain-mixedbread-ai" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@mixedbread-ai/sdk": ^2.2.3 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-jest: ^27.6.0 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - peerDependencies: - "@langchain/core": ">=0.2.5 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/mongodb@workspace:*, @langchain/mongodb@workspace:libs/langchain-mongodb": - version: 0.0.0-use.local - resolution: "@langchain/mongodb@workspace:libs/langchain-mongodb" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - mongodb: ^6.3.0 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/nomic@workspace:*, @langchain/nomic@workspace:libs/langchain-nomic": - version: 0.0.0-use.local - resolution: "@langchain/nomic@workspace:libs/langchain-nomic" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": "workspace:^" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@nomic-ai/atlas": ^0.8.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - peerDependencies: - "@langchain/core": ">=0.3.0 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/ollama@*, @langchain/ollama@workspace:*, @langchain/ollama@workspace:libs/langchain-ollama": - version: 0.0.0-use.local - resolution: "@langchain/ollama@workspace:libs/langchain-ollama" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - ollama: ^0.5.12 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - zod: ^3.24.1 - zod-to-json-schema: ^3.24.1 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/openai@>=0.1.0 <0.5.0, @langchain/openai@>=0.2.0 <0.5.0, @langchain/openai@^0.4.2, @langchain/openai@workspace:*, @langchain/openai@workspace:^, @langchain/openai@workspace:libs/langchain-openai": - version: 0.0.0-use.local - resolution: "@langchain/openai@workspace:libs/langchain-openai" - dependencies: - "@azure/identity": ^4.2.1 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-jest: ^27.6.0 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - js-tiktoken: ^1.0.12 - openai: ^4.77.0 - prettier: ^2.8.3 - release-it: ^17.6.0 - rimraf: ^5.0.1 - ts-jest: ^29.1.0 - typescript: ~5.1.6 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.3 - peerDependencies: - "@langchain/core": ">=0.3.39 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/openai@npm:~0.3.0": - version: 0.3.17 - resolution: "@langchain/openai@npm:0.3.17" - dependencies: - js-tiktoken: ^1.0.12 - openai: ^4.77.0 - zod: ^3.22.4 - zod-to-json-schema: ^3.22.3 - peerDependencies: - "@langchain/core": ">=0.3.29 <0.4.0" - checksum: af88894dcfa8381c0b0df924e085796995f5d5ba2a2657ea72b4181b35c5d92b0040c5cf305378c1f48a8f1f04d4a3b0b29ba1d84f80cedf5dab8bc46d7d5c6c - languageName: node - linkType: hard - -"@langchain/pinecone@workspace:*, @langchain/pinecone@workspace:libs/langchain-pinecone": - version: 0.0.0-use.local - resolution: "@langchain/pinecone@workspace:libs/langchain-pinecone" - dependencies: - "@faker-js/faker": ^8.3.1 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@pinecone-database/pinecone": ^4.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - flat: ^5.0.2 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - langchain: "workspace:*" - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/qdrant@workspace:*, @langchain/qdrant@workspace:libs/langchain-qdrant": - version: 0.0.0-use.local - resolution: "@langchain/qdrant@workspace:libs/langchain-qdrant" - dependencies: - "@faker-js/faker": ^8.4.1 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@qdrant/js-client-rest": ^1.9.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/redis@workspace:*, @langchain/redis@workspace:libs/langchain-redis": - version: 0.0.0-use.local - resolution: "@langchain/redis@workspace:libs/langchain-redis" - dependencies: - "@faker-js/faker": ^8.4.0 - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - redis: ^4.6.13 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/scripts@>=0.1.0 <0.2.0, @langchain/scripts@workspace:*, @langchain/scripts@workspace:libs/langchain-scripts": - version: 0.0.0-use.local - resolution: "@langchain/scripts@workspace:libs/langchain-scripts" - dependencies: - "@jest/globals": ^29.5.0 - "@octokit/rest": ^21.0.2 - "@rollup/wasm-node": ^4.19.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/lodash": ^4 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - axios: ^1.6.7 - commander: ^11.1.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - glob: ^10.3.10 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - lodash: ^4.17.21 - prettier: ^2.8.3 - readline: ^1.3.0 - release-it: ^17.6.0 - rimraf: ^5.0.1 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - ts-morph: ^21.0.1 - tsx: ^4.16.2 - typescript: ^5.4.5 - bin: - extract_serializable_fields: bin/extract_serializable_fields.js - filter_spam_comment: bin/filter_spam_comment.js - lc_build: bin/build.js - notebook_validate: bin/validate_notebook.js - languageName: unknown - linkType: soft - -"@langchain/standard-tests@0.0.0, @langchain/standard-tests@workspace:*, @langchain/standard-tests@workspace:libs/langchain-standard-tests": - version: 0.0.0-use.local - resolution: "@langchain/standard-tests@workspace:libs/langchain-standard-tests" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": "workspace:*" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: ^5.4.5 - zod: ^3.22.4 - zod-to-json-schema: ^3.23.0 - languageName: unknown - linkType: soft - -"@langchain/textsplitters@>=0.0.0 <0.2.0, @langchain/textsplitters@^0.1.0, @langchain/textsplitters@workspace:*, @langchain/textsplitters@workspace:libs/langchain-textsplitters": - version: 0.0.0-use.local - resolution: "@langchain/textsplitters@workspace:libs/langchain-textsplitters" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - js-tiktoken: ^1.0.12 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/weaviate@workspace:*, @langchain/weaviate@workspace:libs/langchain-weaviate": - version: 0.0.0-use.local - resolution: "@langchain/weaviate@workspace:libs/langchain-weaviate" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": "workspace:^" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - langchain: "workspace:*" - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - uuid: ^10.0.0 - weaviate-ts-client: ^2.0.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/xai@*, @langchain/xai@workspace:*, @langchain/xai@workspace:libs/langchain-xai": - version: 0.0.0-use.local - resolution: "@langchain/xai@workspace:libs/langchain-xai" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/openai": "workspace:^" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@langchain/standard-tests": 0.0.0 - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@types/uuid": ^9 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - release-it: ^17.6.0 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - zod: ^3.24.2 - zod-to-json-schema: ^3.23.1 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@langchain/yandex@workspace:*, @langchain/yandex@workspace:libs/langchain-yandex": - version: 0.0.0-use.local - resolution: "@langchain/yandex@workspace:libs/langchain-yandex" - dependencies: - "@jest/globals": ^29.5.0 - "@langchain/core": "workspace:*" - "@langchain/scripts": ">=0.1.0 <0.2.0" - "@swc/core": ^1.3.90 - "@swc/jest": ^0.2.29 - "@tsconfig/recommended": ^1.0.3 - "@typescript-eslint/eslint-plugin": ^6.12.0 - "@typescript-eslint/parser": ^6.12.0 - dotenv: ^16.3.1 - dpdm: ^3.12.0 - eslint: ^8.33.0 - eslint-config-airbnb-base: ^15.0.0 - eslint-config-prettier: ^8.6.0 - eslint-plugin-import: ^2.27.5 - eslint-plugin-no-instanceof: ^1.0.1 - eslint-plugin-prettier: ^4.2.1 - jest: ^29.5.0 - jest-environment-node: ^29.6.4 - prettier: ^2.8.3 - rollup: ^4.5.2 - ts-jest: ^29.1.0 - typescript: <5.2.0 - peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" - languageName: unknown - linkType: soft - -"@layerup/layerup-security@npm:^1.5.12": - version: 1.5.12 - resolution: "@layerup/layerup-security@npm:1.5.12" - dependencies: - axios: ^1.6.8 - openai: ^4.32.1 - checksum: f506b7aa266dcf7e062e3eebdba99468363f45f4d87419f108538f13d5cae70b6ac96f1c263d614de4ff7d742cf0ee3bd67b44124de717680bf02c69a458b5e2 - languageName: node - linkType: hard - -"@leichtgewicht/ip-codec@npm:^2.0.1": - version: 2.0.4 - resolution: "@leichtgewicht/ip-codec@npm:2.0.4" - checksum: 468de1f04d33de6d300892683d7c8aecbf96d1e2c5fe084f95f816e50a054d45b7c1ebfb141a1447d844b86a948733f6eebd92234da8581c84a1ad4de2946a2d - languageName: node - linkType: hard - -"@libp2p/interface@npm:^1.0.0, @libp2p/interface@npm:^1.1.4": - version: 1.1.4 - resolution: "@libp2p/interface@npm:1.1.4" - dependencies: - "@multiformats/multiaddr": ^12.1.14 - it-pushable: ^3.2.3 - it-stream-types: ^2.0.1 - multiformats: ^13.1.0 - progress-events: ^1.0.0 - uint8arraylist: ^2.4.8 - checksum: 5891fc01b30bebf56ced068f39af7bfef5a64d01eb06e12ef6b284e7b00f0ff03d03273a49019adb8929b79af92341eef121fb7e8f8f5a73a320e236ed793bb8 - languageName: node - linkType: hard - -"@libp2p/logger@npm:^4.0.6": - version: 4.0.7 - resolution: "@libp2p/logger@npm:4.0.7" - dependencies: - "@libp2p/interface": ^1.1.4 - "@multiformats/multiaddr": ^12.1.14 - debug: ^4.3.4 - interface-datastore: ^8.2.11 - multiformats: ^13.1.0 - checksum: c3e51d282db4deed2a099cfa6c18a3f8bd280b561cecf7cea829cd6fe230646b911898cd286594b01907a96bc5d2900e7f481c7954affd892296581326a4c172 - languageName: node - linkType: hard - -"@libsql/client@npm:^0.14.0": - version: 0.14.0 - resolution: "@libsql/client@npm:0.14.0" - dependencies: - "@libsql/core": ^0.14.0 - "@libsql/hrana-client": ^0.7.0 - js-base64: ^3.7.5 - libsql: ^0.4.4 - promise-limit: ^2.7.0 - checksum: 7eeaf95d76da8870544c27fcf1206c377a0fc3df72b174393a1fb17fc92ca568d9a42d24d65e771ca77edc5108e853a7ac18540ad0242da759f2ec1191103d99 - languageName: node - linkType: hard - -"@libsql/core@npm:^0.14.0": - version: 0.14.0 - resolution: "@libsql/core@npm:0.14.0" - dependencies: - js-base64: ^3.7.5 - checksum: dae12491a277e03c3729de069bee9af9689f0c178b0fd1ef342f03aab94e4ccba8801e11d0393e0e3a77596e34f101b69b7f07f16f6b34a09eca698e340bed36 - languageName: node - linkType: hard - -"@libsql/darwin-arm64@npm:0.4.6": - version: 0.4.6 - resolution: "@libsql/darwin-arm64@npm:0.4.6" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@libsql/darwin-x64@npm:0.4.6": - version: 0.4.6 - resolution: "@libsql/darwin-x64@npm:0.4.6" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@libsql/hrana-client@npm:^0.7.0": - version: 0.7.0 - resolution: "@libsql/hrana-client@npm:0.7.0" - dependencies: - "@libsql/isomorphic-fetch": ^0.3.1 - "@libsql/isomorphic-ws": ^0.1.5 - js-base64: ^3.7.5 - node-fetch: ^3.3.2 - checksum: 0d36931ca3a01144dc14294d1d9666ee64724c6ab4889890ff0bc45564369503f6abccbc448518485af107bd69f49d35878059c46d98dacb34db4757b52c406a - languageName: node - linkType: hard - -"@libsql/isomorphic-fetch@npm:^0.3.1": - version: 0.3.1 - resolution: "@libsql/isomorphic-fetch@npm:0.3.1" - checksum: 9f131cae3b14c39712f1140e21b2ab1ccc81b5f6ad2aa90d739dc8df0602109a5c4c0ea820dcd39632ace7a4b247bc31e2a5e79cd6efaf5f1777650aac9ac694 - languageName: node - linkType: hard - -"@libsql/isomorphic-ws@npm:^0.1.5": - version: 0.1.5 - resolution: "@libsql/isomorphic-ws@npm:0.1.5" - dependencies: - "@types/ws": ^8.5.4 - ws: ^8.13.0 - checksum: 8255a0f4cae8ea66c94d6ab02ca57ddc7d6472c43700fd089e615e2df56028bf3723f694c91fbd76db403772f43f49cf2545e29e7ac18f77aa482fcfed71c940 - languageName: node - linkType: hard - -"@libsql/linux-arm64-gnu@npm:0.4.6": - version: 0.4.6 - resolution: "@libsql/linux-arm64-gnu@npm:0.4.6" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@libsql/linux-arm64-musl@npm:0.4.6": - version: 0.4.6 - resolution: "@libsql/linux-arm64-musl@npm:0.4.6" - conditions: os=linux & cpu=arm64 - languageName: node - linkType: hard - -"@libsql/linux-x64-gnu@npm:0.4.6": - version: 0.4.6 - resolution: "@libsql/linux-x64-gnu@npm:0.4.6" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@libsql/linux-x64-musl@npm:0.4.6": - version: 0.4.6 - resolution: "@libsql/linux-x64-musl@npm:0.4.6" - conditions: os=linux & cpu=x64 - languageName: node - linkType: hard - -"@libsql/win32-x64-msvc@npm:0.4.6": - version: 0.4.6 - resolution: "@libsql/win32-x64-msvc@npm:0.4.6" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@mapbox/node-pre-gyp@npm:^1.0.0": - version: 1.0.10 - resolution: "@mapbox/node-pre-gyp@npm:1.0.10" - dependencies: - detect-libc: ^2.0.0 - https-proxy-agent: ^5.0.0 - make-dir: ^3.1.0 - node-fetch: ^2.6.7 - nopt: ^5.0.0 - npmlog: ^5.0.1 - rimraf: ^3.0.2 - semver: ^7.3.5 - tar: ^6.1.11 - bin: - node-pre-gyp: bin/node-pre-gyp - checksum: 1a98db05d955b74dad3814679593df293b9194853698f3f5f1ed00ecd93128cdd4b14fb8767fe44ac6981ef05c23effcfdc88710e7c1de99ccb6f647890597c8 - languageName: node - linkType: hard - -"@mapbox/node-pre-gyp@npm:^1.0.5": - version: 1.0.11 - resolution: "@mapbox/node-pre-gyp@npm:1.0.11" - dependencies: - detect-libc: ^2.0.0 - https-proxy-agent: ^5.0.0 - make-dir: ^3.1.0 - node-fetch: ^2.6.7 - nopt: ^5.0.0 - npmlog: ^5.0.1 - rimraf: ^3.0.2 - semver: ^7.3.5 - tar: ^6.1.11 - bin: - node-pre-gyp: bin/node-pre-gyp - checksum: b848f6abc531a11961d780db813cc510ca5a5b6bf3184d72134089c6875a91c44d571ba6c1879470020803f7803609e7b2e6e429651c026fe202facd11d444b8 - languageName: node - linkType: hard - -"@mdx-js/mdx@npm:^1.6.22": - version: 1.6.22 - resolution: "@mdx-js/mdx@npm:1.6.22" - dependencies: - "@babel/core": 7.12.9 - "@babel/plugin-syntax-jsx": 7.12.1 - "@babel/plugin-syntax-object-rest-spread": 7.8.3 - "@mdx-js/util": 1.6.22 - babel-plugin-apply-mdx-type-prop: 1.6.22 - babel-plugin-extract-import-names: 1.6.22 - camelcase-css: 2.0.1 - detab: 2.0.4 - hast-util-raw: 6.0.1 - lodash.uniq: 4.5.0 - mdast-util-to-hast: 10.0.1 - remark-footnotes: 2.0.0 - remark-mdx: 1.6.22 - remark-parse: 8.0.3 - remark-squeeze-paragraphs: 4.0.0 - style-to-object: 0.3.0 - unified: 9.2.0 - unist-builder: 2.0.3 - unist-util-visit: 2.0.3 - checksum: 0839b4a3899416326ea6578fe9e470af319da559bc6d3669c60942e456b49a98eebeb3358c623007b4786a2175a450d2c51cd59df64639013c5a3d22366931a6 - languageName: node - linkType: hard - -"@mdx-js/react@npm:^1.6.22": - version: 1.6.22 - resolution: "@mdx-js/react@npm:1.6.22" - peerDependencies: - react: ^16.13.1 || ^17.0.0 - checksum: bc84bd514bc127f898819a0c6f1a6915d9541011bd8aefa1fcc1c9bea8939f31051409e546bdec92babfa5b56092a16d05ef6d318304ac029299df5181dc94c8 - languageName: node - linkType: hard - -"@mdx-js/util@npm:1.6.22": - version: 1.6.22 - resolution: "@mdx-js/util@npm:1.6.22" - checksum: 4b393907e39a1a75214f0314bf72a0adfa5e5adffd050dd5efe9c055b8549481a3cfc9f308c16dfb33311daf3ff63added7d5fd1fe52db614c004f886e0e559a - languageName: node - linkType: hard - -"@mendable/firecrawl-js@npm:^1.4.3": - version: 1.4.3 - resolution: "@mendable/firecrawl-js@npm:1.4.3" - dependencies: - axios: ^1.6.8 - isows: ^1.0.4 - typescript-event-target: ^1.1.1 - zod: ^3.23.8 - zod-to-json-schema: ^3.23.0 - checksum: ee36a4ceaca326d1ae86a714500dd0698060a63e84e0d5c83fb14967ac36755cd4b0b42a260c5e7b63914551a94ead2f4c712a76b9e58a6580dd5ca8628e851a - languageName: node - linkType: hard - -"@microsoft/fetch-event-source@npm:^2.0.1": - version: 2.0.1 - resolution: "@microsoft/fetch-event-source@npm:2.0.1" - checksum: a50e1c0f33220206967266d0a4bbba0703e2793b079d9f6e6bfd48f71b2115964a803e14cf6e902c6fab321edc084f26022334f5eaacc2cec87f174715d41852 - languageName: node - linkType: hard - -"@mistralai/mistralai@npm:^1.3.1": - version: 1.3.1 - resolution: "@mistralai/mistralai@npm:1.3.1" - peerDependencies: - zod: ">= 3" - checksum: 9e31a2f760706a9f54347ba2cb2b7784d4f93eb4ff5d87cc7cfac9b7a1a1816f21da2328f5f5e13c11ed8953f1d71f2a2e09d12123ac17d171c189d21b87a977 - languageName: node - linkType: hard - -"@mixedbread-ai/sdk@npm:^2.2.3": - version: 2.2.6 - resolution: "@mixedbread-ai/sdk@npm:2.2.6" - dependencies: - form-data: 4.0.0 - formdata-node: ^6.0.3 - js-base64: 3.7.7 - node-fetch: 3.3.2 - qs: 6.12.1 - url-join: 5.0.0 - checksum: 081e8351f38d7ad774ab9e928494a7b11c569cc246941182c3e85b063e4fb4abf81ae71522ad63af759fbd56c51f342b38dd64b80b7bd72fff67bd27297b6f37 - languageName: node - linkType: hard - -"@mlc-ai/web-llm@npm:>=0.2.62 <0.3.0": - version: 0.2.62 - resolution: "@mlc-ai/web-llm@npm:0.2.62" - dependencies: - loglevel: ^1.9.1 - checksum: 7ccb0842e3fe83156406e61e0172f2f07115c77669b37729499f52c120cc33acd000fc4619b30fb67ca7712246c9722af65e4fe208c2f4546e2882297d53293c - languageName: node - linkType: hard - -"@mongodb-js/saslprep@npm:^1.1.0": - version: 1.1.4 - resolution: "@mongodb-js/saslprep@npm:1.1.4" - dependencies: - sparse-bitfield: ^3.0.3 - checksum: 208fd6f82136fd4332d0a6c667f8090b08f365dd7aa5880b8c485501caed7b058a99c231085c51ad7fa25f4a590d96c87af9a5b3fc0aea4de8c527657e33e548 - languageName: node - linkType: hard - -"@mongodb-js/saslprep@npm:^1.1.9": - version: 1.1.9 - resolution: "@mongodb-js/saslprep@npm:1.1.9" - dependencies: - sparse-bitfield: ^3.0.3 - checksum: 6f13983e41c9fbd5273eeae9135e47e5b7a19125a63287bea69e33a618f8e034cfcf2258c77d0f5d6dcf386dfe2bb520bc01613afd1528c52f82c71172629242 - languageName: node - linkType: hard - -"@mozilla/readability@npm:^0.4.4": - version: 0.4.4 - resolution: "@mozilla/readability@npm:0.4.4" - checksum: 24af169a7cf388c3b300d0beb2c4dc90e075730b926b0fde985dd07dc6940ec4ed754cdd80f76b843fa45141470db43080c5f97e60abed81b1e66cf68751672b - languageName: node - linkType: hard - -"@multiformats/dns@npm:^1.0.3": - version: 1.0.5 - resolution: "@multiformats/dns@npm:1.0.5" - dependencies: - "@types/dns-packet": ^5.6.5 - buffer: ^6.0.3 - dns-packet: ^5.6.1 - hashlru: ^2.3.0 - p-queue: ^8.0.1 - progress-events: ^1.0.0 - uint8arrays: ^5.0.2 - checksum: 59edb41fa9ed340ddf6b7cbcb2288543bf0e7089e6a15ad9409dcf11829d8c84a241ae0cb3f3291ff2f74d79a69719db5abf4370cc2aa1cc30f93e3171406ca4 - languageName: node - linkType: hard - -"@multiformats/multiaddr@npm:^12.1.14": - version: 12.2.1 - resolution: "@multiformats/multiaddr@npm:12.2.1" - dependencies: - "@chainsafe/is-ip": ^2.0.1 - "@chainsafe/netmask": ^2.0.0 - "@libp2p/interface": ^1.0.0 - "@multiformats/dns": ^1.0.3 - multiformats: ^13.0.0 - uint8-varint: ^2.0.1 - uint8arrays: ^5.0.0 - checksum: 8d0e1e50c80f4baeb088001a37864987e1a0447783a3411c6f7bd678bd3818d1183563a36076a98f3ebbb8d3c81d4203a609dac510a2370c77e450430b44e5ec - languageName: node - linkType: hard - -"@neon-rs/load@npm:^0.0.4": - version: 0.0.4 - resolution: "@neon-rs/load@npm:0.0.4" - checksum: ceed42a681980f4c96152857f6846434e3a89e25cac14228604a55e7992e96af01f30629026a498341984b405a2687099e56256a9eded9fee5393facca1ef762 - languageName: node - linkType: hard - -"@neondatabase/serverless@npm:^0.9.1": - version: 0.9.1 - resolution: "@neondatabase/serverless@npm:0.9.1" - dependencies: - "@types/pg": 8.6.6 - checksum: b74b30386006d80d02d9d70bbfd7b25be4265ca731e6d716b7ee7801524489b10411969ef2ece03cc858e558c24ae32ecb11fa151bded1218f3dec0ffdd0e26d - languageName: node - linkType: hard - -"@neondatabase/serverless@npm:^0.9.3": - version: 0.9.5 - resolution: "@neondatabase/serverless@npm:0.9.5" - dependencies: - "@types/pg": 8.11.6 - checksum: b53c4b21c6eaf995a12bd84adf2c839022b7eb8b216cb07319a784a6f60965cf9ae497560a2aa767f5f8a407f1a45783f13b9f9e8f5c2078118a6a5ae174fdb2 - languageName: node - linkType: hard - -"@next/env@npm:14.0.1": - version: 14.0.1 - resolution: "@next/env@npm:14.0.1" - checksum: 1fab6732f877c3702fce12396f16046f9b7a59c70b0d0b3db713995eed431706d12175530709d21c613682865ce82ef965a5719a43d6bc84142462a8ed558cda - languageName: node - linkType: hard - -"@next/eslint-plugin-next@npm:14.0.1": - version: 14.0.1 - resolution: "@next/eslint-plugin-next@npm:14.0.1" - dependencies: - glob: 7.1.7 - checksum: 2bb3cd1035414a1cf645772297224bf50cb81947c2aae8a8c0caee20f2b8f1931dab0f16c0dabfb08eb61a247a0006b57d98dd81ae02558470808f1e22fa7665 - languageName: node - linkType: hard - -"@next/swc-darwin-arm64@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-darwin-arm64@npm:14.0.1" - conditions: os=darwin & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-darwin-x64@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-darwin-x64@npm:14.0.1" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@next/swc-linux-arm64-gnu@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-linux-arm64-gnu@npm:14.0.1" - conditions: os=linux & cpu=arm64 & libc=glibc - languageName: node - linkType: hard - -"@next/swc-linux-arm64-musl@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-linux-arm64-musl@npm:14.0.1" - conditions: os=linux & cpu=arm64 & libc=musl - languageName: node - linkType: hard - -"@next/swc-linux-x64-gnu@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-linux-x64-gnu@npm:14.0.1" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@next/swc-linux-x64-musl@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-linux-x64-musl@npm:14.0.1" - conditions: os=linux & cpu=x64 & libc=musl - languageName: node - linkType: hard - -"@next/swc-win32-arm64-msvc@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-win32-arm64-msvc@npm:14.0.1" - conditions: os=win32 & cpu=arm64 - languageName: node - linkType: hard - -"@next/swc-win32-ia32-msvc@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-win32-ia32-msvc@npm:14.0.1" - conditions: os=win32 & cpu=ia32 - languageName: node - linkType: hard - -"@next/swc-win32-x64-msvc@npm:14.0.1": - version: 14.0.1 - resolution: "@next/swc-win32-x64-msvc@npm:14.0.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1": - version: 5.1.1-v1 - resolution: "@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1" - dependencies: - eslint-scope: 5.1.1 - checksum: f2e3b2d6a6e2d9f163ca22105910c9f850dc4897af0aea3ef0a5886b63d8e1ba6505b71c99cb78a3bba24a09557d601eb21c8dede3f3213753fcfef364eb0e57 - languageName: node - linkType: hard - -"@node-llama-cpp/linux-arm64@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/linux-arm64@npm:3.1.1" - conditions: os=linux & (cpu=arm64 | cpu=x64) & libc=glibc - languageName: node - linkType: hard - -"@node-llama-cpp/linux-armv7l@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/linux-armv7l@npm:3.1.1" - conditions: os=linux & (cpu=arm | cpu=x64) & libc=glibc - languageName: node - linkType: hard - -"@node-llama-cpp/linux-x64-cuda@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/linux-x64-cuda@npm:3.1.1" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@node-llama-cpp/linux-x64-vulkan@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/linux-x64-vulkan@npm:3.1.1" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@node-llama-cpp/linux-x64@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/linux-x64@npm:3.1.1" - conditions: os=linux & cpu=x64 & libc=glibc - languageName: node - linkType: hard - -"@node-llama-cpp/mac-arm64-metal@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/mac-arm64-metal@npm:3.1.1" - conditions: os=darwin & (cpu=arm64 | cpu=x64) - languageName: node - linkType: hard - -"@node-llama-cpp/mac-x64@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/mac-x64@npm:3.1.1" - conditions: os=darwin & cpu=x64 - languageName: node - linkType: hard - -"@node-llama-cpp/win-arm64@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/win-arm64@npm:3.1.1" - conditions: os=win32 & (cpu=arm64 | cpu=x64) - languageName: node - linkType: hard - -"@node-llama-cpp/win-x64-cuda@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/win-x64-cuda@npm:3.1.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@node-llama-cpp/win-x64-vulkan@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/win-x64-vulkan@npm:3.1.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@node-llama-cpp/win-x64@npm:3.1.1": - version: 3.1.1 - resolution: "@node-llama-cpp/win-x64@npm:3.1.1" - conditions: os=win32 & cpu=x64 - languageName: node - linkType: hard - -"@nodelib/fs.scandir@npm:2.1.5": - version: 2.1.5 - resolution: "@nodelib/fs.scandir@npm:2.1.5" - dependencies: - "@nodelib/fs.stat": 2.0.5 - run-parallel: ^1.1.9 - checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 - languageName: node - linkType: hard - -"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": - version: 2.0.5 - resolution: "@nodelib/fs.stat@npm:2.0.5" - checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 - languageName: node - linkType: hard - -"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": - version: 1.2.8 - resolution: "@nodelib/fs.walk@npm:1.2.8" - dependencies: - "@nodelib/fs.scandir": 2.1.5 - fastq: ^1.6.0 - checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 - languageName: node - linkType: hard - -"@nomic-ai/atlas@npm:^0.8.0": - version: 0.8.0 - resolution: "@nomic-ai/atlas@npm:0.8.0" - dependencies: - apache-arrow: ^12.0.1 - dotenv: ^16.0.3 - js-yaml: ^4.1.0 - ts-md5: ^1.3.1 - checksum: 19538f84a5dd9021870125879772e37925c730b75cb1716d619b8c014542503e93f843c04a32c1cab84dedd2ba797c108258453bb949b4bef0d7586290fb1337 - languageName: node - linkType: hard - -"@notionhq/client@npm:^2.2.10": - version: 2.2.10 - resolution: "@notionhq/client@npm:2.2.10" - dependencies: - "@types/node-fetch": ^2.5.10 - node-fetch: ^2.6.1 - checksum: ce723de8d13898318af1fa375628b5c48904b2c3eaa5483d8995bd18c6c592f033014546b45e7bb54190ea31dc2b3fbd73ffce20917778a62d6e41a7b9fcc91f - languageName: node - linkType: hard - -"@npmcli/agent@npm:^2.0.0": - version: 2.2.2 - resolution: "@npmcli/agent@npm:2.2.2" - dependencies: - agent-base: ^7.1.0 - http-proxy-agent: ^7.0.0 - https-proxy-agent: ^7.0.1 - lru-cache: ^10.0.1 - socks-proxy-agent: ^8.0.3 - checksum: 67de7b88cc627a79743c88bab35e023e23daf13831a8aa4e15f998b92f5507b644d8ffc3788afc8e64423c612e0785a6a92b74782ce368f49a6746084b50d874 - languageName: node - linkType: hard - -"@npmcli/fs@npm:^1.0.0": - version: 1.1.1 - resolution: "@npmcli/fs@npm:1.1.1" - dependencies: - "@gar/promisify": ^1.0.1 - semver: ^7.3.5 - checksum: f5ad92f157ed222e4e31c352333d0901df02c7c04311e42a81d8eb555d4ec4276ea9c635011757de20cc476755af33e91622838de573b17e52e2e7703f0a9965 - languageName: node - linkType: hard - -"@npmcli/fs@npm:^3.1.0": - version: 3.1.0 - resolution: "@npmcli/fs@npm:3.1.0" - dependencies: - semver: ^7.3.5 - checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e - languageName: node - linkType: hard - -"@npmcli/move-file@npm:^1.0.1": - version: 1.1.2 - resolution: "@npmcli/move-file@npm:1.1.2" - dependencies: - mkdirp: ^1.0.4 - rimraf: ^3.0.2 - checksum: c96381d4a37448ea280951e46233f7e541058cf57a57d4094dd4bdcaae43fa5872b5f2eb6bfb004591a68e29c5877abe3cdc210cb3588cbf20ab2877f31a7de7 - languageName: node - linkType: hard - -"@octokit/app@npm:^15.0.0": - version: 15.1.0 - resolution: "@octokit/app@npm:15.1.0" - dependencies: - "@octokit/auth-app": ^7.0.0 - "@octokit/auth-unauthenticated": ^6.0.0 - "@octokit/core": ^6.1.2 - "@octokit/oauth-app": ^7.0.0 - "@octokit/plugin-paginate-rest": ^11.0.0 - "@octokit/types": ^13.0.0 - "@octokit/webhooks": ^13.0.0 - checksum: 133c1b55646c85161f5fe09266aecdb877da298fe88daa0cc0b517dd45233f07462cfd4df2dc4a77452cdf4a7551bed9e8a36f2e172928519a9a2575e77aa7ad - languageName: node - linkType: hard - -"@octokit/auth-app@npm:^7.0.0": - version: 7.1.1 - resolution: "@octokit/auth-app@npm:7.1.1" - dependencies: - "@octokit/auth-oauth-app": ^8.1.0 - "@octokit/auth-oauth-user": ^5.1.0 - "@octokit/request": ^9.1.1 - "@octokit/request-error": ^6.1.1 - "@octokit/types": ^13.4.1 - lru-cache: ^10.0.0 - universal-github-app-jwt: ^2.2.0 - universal-user-agent: ^7.0.0 - checksum: 2cad1a5eef4e458caacb16271284743c7c1d9b34a2617f6b17135b3910ddb33efe16e6a6b5b36407f1b0065324f7b7b1bfa7c2f7d338f6c59f312762e0c57a5c - languageName: node - linkType: hard - -"@octokit/auth-oauth-app@npm:^8.0.0, @octokit/auth-oauth-app@npm:^8.1.0": - version: 8.1.1 - resolution: "@octokit/auth-oauth-app@npm:8.1.1" - dependencies: - "@octokit/auth-oauth-device": ^7.0.0 - "@octokit/auth-oauth-user": ^5.0.1 - "@octokit/request": ^9.0.0 - "@octokit/types": ^13.0.0 - universal-user-agent: ^7.0.0 - checksum: e61160a6cc6aefff7b8cb3c73c2fc26e327308800b85bf6bfcfb39009ee2cb813bc2034ce3ea29b240aca920515b2199466cf842bbef4905c5da7796aa813eb4 - languageName: node - linkType: hard - -"@octokit/auth-oauth-device@npm:^7.0.0, @octokit/auth-oauth-device@npm:^7.0.1": - version: 7.1.1 - resolution: "@octokit/auth-oauth-device@npm:7.1.1" - dependencies: - "@octokit/oauth-methods": ^5.0.0 - "@octokit/request": ^9.0.0 - "@octokit/types": ^13.0.0 - universal-user-agent: ^7.0.0 - checksum: 5338ae5a5ca1d03c03c3ceba21635b6e2d8d8fe9c1f9f746651ebea5a130e65388e418e730eefb394bbceba092b712181ce9a603eec761f4c8fd6f8790d7cd45 - languageName: node - linkType: hard - -"@octokit/auth-oauth-user@npm:^5.0.1, @octokit/auth-oauth-user@npm:^5.1.0": - version: 5.1.1 - resolution: "@octokit/auth-oauth-user@npm:5.1.1" - dependencies: - "@octokit/auth-oauth-device": ^7.0.1 - "@octokit/oauth-methods": ^5.0.0 - "@octokit/request": ^9.0.1 - "@octokit/types": ^13.0.0 - universal-user-agent: ^7.0.0 - checksum: fe2b2ec3f50a565efb37254c78be499d8fc1cf4d565f869b957037103296589c48c69cab26a0549311ed50b698dc9ae1fef5cc9a0cda2a11a519b053c30cb7fc - languageName: node - linkType: hard - -"@octokit/auth-token@npm:^3.0.0": - version: 3.0.4 - resolution: "@octokit/auth-token@npm:3.0.4" - checksum: 42f533a873d4192e6df406b3176141c1f95287423ebdc4cf23a38bb77ee00ccbc0e60e3fbd5874234fc2ed2e67bbc6035e3b0561dacc1d078adb5c4ced3579e3 - languageName: node - linkType: hard - -"@octokit/auth-token@npm:^4.0.0": - version: 4.0.0 - resolution: "@octokit/auth-token@npm:4.0.0" - checksum: d78f4dc48b214d374aeb39caec4fdbf5c1e4fd8b9fcb18f630b1fe2cbd5a880fca05445f32b4561f41262cb551746aeb0b49e89c95c6dd99299706684d0cae2f - languageName: node - linkType: hard - -"@octokit/auth-token@npm:^5.0.0": - version: 5.1.1 - resolution: "@octokit/auth-token@npm:5.1.1" - checksum: b39516dda44aeced0326227c53aade621effe1d59c4b0f48ebe2b9fd32b5156e02705bcb2fb1bf48b11f26cc6aff1a0683c32c3d5424e0118dae6596e431d489 - languageName: node - linkType: hard - -"@octokit/auth-unauthenticated@npm:^6.0.0, @octokit/auth-unauthenticated@npm:^6.0.0-beta.1": - version: 6.1.0 - resolution: "@octokit/auth-unauthenticated@npm:6.1.0" - dependencies: - "@octokit/request-error": ^6.0.1 - "@octokit/types": ^13.0.0 - checksum: 0f8929cbca7fa34f2a4ebcdf92da7a0b5a4a2de7a5dd695b4308a827018db6cfa311e84fe326c19a0b8e66080aa152fa066ae434190e5a63eadbb1449b1d7105 - languageName: node - linkType: hard - -"@octokit/core@npm:^4.2.1": - version: 4.2.4 - resolution: "@octokit/core@npm:4.2.4" - dependencies: - "@octokit/auth-token": ^3.0.0 - "@octokit/graphql": ^5.0.0 - "@octokit/request": ^6.0.0 - "@octokit/request-error": ^3.0.0 - "@octokit/types": ^9.0.0 - before-after-hook: ^2.2.0 - universal-user-agent: ^6.0.0 - checksum: ac8ab47440a31b0228a034aacac6994b64d6b073ad5b688b4c5157fc5ee0d1af1c926e6087bf17fd7244ee9c5998839da89065a90819bde4a97cb77d4edf58a6 - languageName: node - linkType: hard + "@arcjet/redact": ^v1.0.0-alpha.23 + "@aws-crypto/sha256-js": ^5.0.0 + "@aws-sdk/client-bedrock-agent-runtime": ^3.749.0 + "@aws-sdk/client-bedrock-runtime": ^3.749.0 + "@aws-sdk/client-dynamodb": ^3.749.0 + "@aws-sdk/client-kendra": ^3.749.0 + "@aws-sdk/client-lambda": ^3.749.0 + "@aws-sdk/client-s3": ^3.749.0 + "@aws-sdk/client-sagemaker-runtime": ^3.749.0 + "@aws-sdk/client-sfn": ^3.749.0 + "@aws-sdk/credential-provider-node": ^3.749.0 + "@aws-sdk/types": ^3.734.0 + "@azure/search-documents": ^12.0.0 + "@azure/storage-blob": ^12.15.0 + "@browserbasehq/sdk": ^1.1.5 + "@browserbasehq/stagehand": ^1.0.0 + "@clickhouse/client": ^0.2.5 + "@cloudflare/ai": 1.0.12 + "@cloudflare/workers-types": ^4.20230922.0 + "@datastax/astra-db-ts": ^1.0.1 + "@elastic/elasticsearch": ^8.4.0 + "@faker-js/faker": 8.4.1 + "@getmetal/metal-sdk": ^4.0.0 + "@getzep/zep-cloud": ^1.0.6 + "@getzep/zep-js": ^0.9.0 + "@gomomento/sdk": ^1.51.1 + "@gomomento/sdk-core": ^1.51.1 + "@google-ai/generativelanguage": ^2.5.0 + "@google-cloud/storage": ^7.7.0 + "@gradientai/nodejs-sdk": ^1.2.0 + "@huggingface/inference": ^2.6.4 + "@huggingface/transformers": ^3.2.3 + "@ibm-cloud/watsonx-ai": ^1.4.0 + "@jest/globals": ^29.5.0 + "@lancedb/lancedb": ^0.13.0 + "@langchain/core": "workspace:*" + "@langchain/openai": ">=0.2.0 <0.5.0" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@layerup/layerup-security": ^1.5.12 + "@libsql/client": ^0.14.0 + "@mendable/firecrawl-js": ^1.4.3 + "@mlc-ai/web-llm": ">=0.2.62 <0.3.0" + "@mozilla/readability": ^0.4.4 + "@neondatabase/serverless": ^0.9.1 + "@notionhq/client": ^2.2.10 + "@opensearch-project/opensearch": ^2.2.0 + "@planetscale/database": ^1.8.0 + "@playwright/test": ^1.48.2 + "@premai/prem-sdk": ^0.3.25 + "@qdrant/js-client-rest": ^1.8.2 + "@raycast/api": ^1.83.1 + "@rockset/client": ^0.9.1 + "@smithy/eventstream-codec": ^2.0.5 + "@smithy/protocol-http": ^3.0.6 + "@smithy/signature-v4": ^2.0.10 + "@smithy/util-utf8": ^2.0.0 + "@spider-cloud/spider-client": ^0.0.21 + "@supabase/supabase-js": ^2.45.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tensorflow-models/universal-sentence-encoder": ^1.3.3 + "@tensorflow/tfjs-backend-cpu": ^3 + "@tensorflow/tfjs-converter": ^3.6.0 + "@tensorflow/tfjs-core": ^3.6.0 + "@tsconfig/recommended": ^1.0.2 + "@types/better-sqlite3": ^7.6.10 + "@types/crypto-js": ^4.2.2 + "@types/d3-dsv": ^3.0.7 + "@types/flat": ^5.0.2 + "@types/html-to-text": ^9 + "@types/jsdom": ^21.1.1 + "@types/jsonwebtoken": ^9 + "@types/lodash": ^4 + "@types/mozilla-readability": ^0.2.1 + "@types/pdf-parse": ^1.1.1 + "@types/pg": ^8.11.0 + "@types/pg-copy-streams": ^1.2.2 + "@types/uuid": ^9 + "@types/word-extractor": ^1 + "@types/ws": ^8 + "@typescript-eslint/eslint-plugin": ^5.58.0 + "@typescript-eslint/parser": ^5.58.0 + "@upstash/ratelimit": ^2.0.3 + "@upstash/redis": ^1.32.0 + "@upstash/vector": ^1.1.1 + "@vercel/kv": ^3.0.0 + "@vercel/postgres": ^0.10.0 + "@writerai/writer-sdk": ^0.40.2 + "@xata.io/client": ^0.28.0 + "@zilliz/milvus2-sdk-node": ">=2.3.5" + apify-client: ^2.7.1 + assemblyai: ^4.6.0 + better-sqlite3: 9.5.0 + binary-extensions: ^2.2.0 + cassandra-driver: ^4.7.2 + cborg: ^4.1.1 + cheerio: ^1.0.0-rc.12 + chromadb: ^1.9.1 + closevector-common: 0.1.3 + closevector-node: 0.1.6 + closevector-web: 0.1.6 + cohere-ai: ">=6.0.0" + convex: ^1.3.1 + couchbase: ^4.3.0 + crypto-js: ^4.2.0 + d3-dsv: ^2.0.0 + datastore-core: ^9.2.9 + discord.js: ^14.14.1 + dotenv: ^16.0.3 + dpdm: ^3.12.0 + dria: ^0.0.3 + duck-duck-scrape: ^2.2.5 + epub2: ^3.0.1 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-jest: ^27.6.0 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + expr-eval: ^2.0.2 + fast-xml-parser: ^4.5.1 + firebase-admin: ^11.9.0 || ^12.0.0 + flat: ^5.0.2 + google-auth-library: ^9.10.0 + googleapis: ^126.0.1 + graphql: ^16.6.0 + hdb: 0.19.8 + hnswlib-node: ^3.0.0 + html-to-text: ^9.0.5 + ibm-cloud-sdk-core: ^5.0.2 + ignore: ^5.2.0 + interface-datastore: ^8.2.11 + ioredis: ^5.3.2 + it-all: ^3.0.4 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + js-yaml: ^4.1.0 + jsdom: ^22.1.0 + jsonwebtoken: ^9.0.2 + langchain: ">=0.2.3 <0.3.0 || >=0.3.4 <0.4.0" + langsmith: ">=0.2.8 <0.4.0" + llmonitor: ^0.5.9 + lodash: ^4.17.21 + lunary: ^0.7.10 + mammoth: ^1.6.0 + mongodb: ^5.2.0 + mysql2: ^3.9.8 + neo4j-driver: ^5.17.0 + node-llama-cpp: 3.1.1 + notion-to-md: ^3.1.0 + officeparser: ^4.0.4 + openai: "*" + pdf-parse: 1.1.1 + pg: ^8.11.0 + pg-copy-streams: ^6.0.5 + pickleparser: ^0.2.1 + playwright: ^1.32.1 + portkey-ai: ^0.1.11 + prettier: ^2.8.3 + puppeteer: ^22.0.0 + pyodide: ^0.26.2 + redis: ^4.6.6 + release-it: ^17.6.0 + replicate: ^1.0.1 + rollup: ^3.19.1 + sonix-speech-recognition: ^2.1.1 + srt-parser-2: ^1.2.3 + ts-jest: ^29.1.0 + typeorm: ^0.3.20 + typescript: ~5.1.6 + typesense: ^1.5.3 + usearch: ^1.1.1 + uuid: ^10.0.0 + voy-search: 0.6.2 + weaviate-ts-client: ^1.4.0 + web-auth-library: ^1.0.3 + word-extractor: ^1.0.4 + youtubei.js: ^12.2.0 + zod: ^3.22.3 + zod-to-json-schema: ^3.22.5 + peerDependencies: + "@arcjet/redact": ^v1.0.0-alpha.23 + "@aws-crypto/sha256-js": ^5.0.0 + "@aws-sdk/client-bedrock-agent-runtime": ^3.749.0 + "@aws-sdk/client-bedrock-runtime": ^3.749.0 + "@aws-sdk/client-dynamodb": ^3.749.0 + "@aws-sdk/client-kendra": ^3.749.0 + "@aws-sdk/client-lambda": ^3.749.0 + "@aws-sdk/client-s3": ^3.749.0 + "@aws-sdk/client-sagemaker-runtime": ^3.749.0 + "@aws-sdk/client-sfn": ^3.749.0 + "@aws-sdk/credential-provider-node": ^3.388.0 + "@azure/search-documents": ^12.0.0 + "@azure/storage-blob": ^12.15.0 + "@browserbasehq/sdk": "*" + "@browserbasehq/stagehand": ^1.0.0 + "@clickhouse/client": ^0.2.5 + "@cloudflare/ai": "*" + "@datastax/astra-db-ts": ^1.0.0 + "@elastic/elasticsearch": ^8.4.0 + "@getmetal/metal-sdk": "*" + "@getzep/zep-cloud": ^1.0.6 + "@getzep/zep-js": ^0.9.0 + "@gomomento/sdk": ^1.51.1 + "@gomomento/sdk-core": ^1.51.1 + "@google-ai/generativelanguage": "*" + "@google-cloud/storage": ^6.10.1 || ^7.7.0 + "@gradientai/nodejs-sdk": ^1.2.0 + "@huggingface/inference": ^2.6.4 + "@huggingface/transformers": ^3.2.3 + "@ibm-cloud/watsonx-ai": "*" + "@lancedb/lancedb": ^0.12.0 + "@langchain/core": ">=0.2.21 <0.4.0" + "@layerup/layerup-security": ^1.5.12 + "@libsql/client": ^0.14.0 + "@mendable/firecrawl-js": ^1.4.3 + "@mlc-ai/web-llm": "*" + "@mozilla/readability": "*" + "@neondatabase/serverless": "*" + "@notionhq/client": ^2.2.10 + "@opensearch-project/opensearch": "*" + "@pinecone-database/pinecone": "*" + "@planetscale/database": ^1.8.0 + "@premai/prem-sdk": ^0.3.25 + "@qdrant/js-client-rest": ^1.8.2 + "@raycast/api": ^1.55.2 + "@rockset/client": ^0.9.1 + "@smithy/eventstream-codec": ^2.0.5 + "@smithy/protocol-http": ^3.0.6 + "@smithy/signature-v4": ^2.0.10 + "@smithy/util-utf8": ^2.0.0 + "@spider-cloud/spider-client": ^0.0.21 + "@supabase/supabase-js": ^2.45.0 + "@tensorflow-models/universal-sentence-encoder": "*" + "@tensorflow/tfjs-converter": "*" + "@tensorflow/tfjs-core": "*" + "@upstash/ratelimit": ^1.1.3 || ^2.0.3 + "@upstash/redis": ^1.20.6 + "@upstash/vector": ^1.1.1 + "@vercel/kv": "*" + "@vercel/postgres": "*" + "@writerai/writer-sdk": ^0.40.2 + "@xata.io/client": ^0.28.0 + "@zilliz/milvus2-sdk-node": ">=2.3.5" + apify-client: ^2.7.1 + assemblyai: ^4.6.0 + better-sqlite3: ">=9.4.0 <12.0.0" + cassandra-driver: ^4.7.2 + cborg: ^4.1.1 + cheerio: ^1.0.0-rc.12 + chromadb: "*" + closevector-common: 0.1.3 + closevector-node: 0.1.6 + closevector-web: 0.1.6 + cohere-ai: "*" + convex: ^1.3.1 + crypto-js: ^4.2.0 + d3-dsv: ^2.0.0 + discord.js: ^14.14.1 + dria: ^0.0.3 + duck-duck-scrape: ^2.2.5 + epub2: ^3.0.1 + fast-xml-parser: "*" + firebase-admin: ^11.9.0 || ^12.0.0 + google-auth-library: "*" + googleapis: "*" + hnswlib-node: ^3.0.0 + html-to-text: ^9.0.5 + ibm-cloud-sdk-core: "*" + ignore: ^5.2.0 + interface-datastore: ^8.2.11 + ioredis: ^5.3.2 + it-all: ^3.0.4 + jsdom: "*" + jsonwebtoken: ^9.0.2 + llmonitor: ^0.5.9 + lodash: ^4.17.21 + lunary: ^0.7.10 + mammoth: ^1.6.0 + mongodb: ">=5.2.0" + mysql2: ^3.9.8 + neo4j-driver: "*" + notion-to-md: ^3.1.0 + officeparser: ^4.0.4 + openai: "*" + pdf-parse: 1.1.1 + pg: ^8.11.0 + pg-copy-streams: ^6.0.5 + pickleparser: ^0.2.1 + playwright: ^1.32.1 + portkey-ai: ^0.1.11 + puppeteer: "*" + pyodide: ">=0.24.1 <0.27.0" + redis: "*" + replicate: "*" + sonix-speech-recognition: ^2.1.1 + srt-parser-2: ^1.2.3 + typeorm: ^0.3.20 + typesense: ^1.5.3 + usearch: ^1.1.1 + voy-search: 0.6.2 + weaviate-ts-client: "*" + web-auth-library: ^1.0.3 + word-extractor: "*" + ws: ^8.14.2 + youtubei.js: "*" + peerDependenciesMeta: + "@arcjet/redact": + optional: true + "@aws-crypto/sha256-js": + optional: true + "@aws-sdk/client-bedrock-agent-runtime": + optional: true + "@aws-sdk/client-bedrock-runtime": + optional: true + "@aws-sdk/client-dynamodb": + optional: true + "@aws-sdk/client-kendra": + optional: true + "@aws-sdk/client-lambda": + optional: true + "@aws-sdk/client-s3": + optional: true + "@aws-sdk/client-sagemaker-runtime": + optional: true + "@aws-sdk/client-sfn": + optional: true + "@aws-sdk/credential-provider-node": + optional: true + "@azure/search-documents": + optional: true + "@azure/storage-blob": + optional: true + "@browserbasehq/sdk": + optional: true + "@clickhouse/client": + optional: true + "@cloudflare/ai": + optional: true + "@datastax/astra-db-ts": + optional: true + "@elastic/elasticsearch": + optional: true + "@getmetal/metal-sdk": + optional: true + "@getzep/zep-cloud": + optional: true + "@getzep/zep-js": + optional: true + "@gomomento/sdk": + optional: true + "@gomomento/sdk-core": + optional: true + "@google-ai/generativelanguage": + optional: true + "@google-cloud/storage": + optional: true + "@gradientai/nodejs-sdk": + optional: true + "@huggingface/inference": + optional: true + "@huggingface/transformers": + optional: true + "@lancedb/lancedb": + optional: true + "@layerup/layerup-security": + optional: true + "@libsql/client": + optional: true + "@mendable/firecrawl-js": + optional: true + "@mlc-ai/web-llm": + optional: true + "@mozilla/readability": + optional: true + "@neondatabase/serverless": + optional: true + "@notionhq/client": + optional: true + "@opensearch-project/opensearch": + optional: true + "@pinecone-database/pinecone": + optional: true + "@planetscale/database": + optional: true + "@premai/prem-sdk": + optional: true + "@qdrant/js-client-rest": + optional: true + "@raycast/api": + optional: true + "@rockset/client": + optional: true + "@smithy/eventstream-codec": + optional: true + "@smithy/protocol-http": + optional: true + "@smithy/signature-v4": + optional: true + "@smithy/util-utf8": + optional: true + "@spider-cloud/spider-client": + optional: true + "@supabase/supabase-js": + optional: true + "@tensorflow-models/universal-sentence-encoder": + optional: true + "@tensorflow/tfjs-converter": + optional: true + "@tensorflow/tfjs-core": + optional: true + "@upstash/ratelimit": + optional: true + "@upstash/redis": + optional: true + "@upstash/vector": + optional: true + "@vercel/kv": + optional: true + "@vercel/postgres": + optional: true + "@writerai/writer-sdk": + optional: true + "@xata.io/client": + optional: true + "@zilliz/milvus2-sdk-node": + optional: true + apify-client: + optional: true + assemblyai: + optional: true + better-sqlite3: + optional: true + cassandra-driver: + optional: true + cborg: + optional: true + cheerio: + optional: true + chromadb: + optional: true + closevector-common: + optional: true + closevector-node: + optional: true + closevector-web: + optional: true + cohere-ai: + optional: true + convex: + optional: true + crypto-js: + optional: true + d3-dsv: + optional: true + discord.js: + optional: true + dria: + optional: true + duck-duck-scrape: + optional: true + epub2: + optional: true + fast-xml-parser: + optional: true + firebase-admin: + optional: true + google-auth-library: + optional: true + googleapis: + optional: true + hnswlib-node: + optional: true + html-to-text: + optional: true + ignore: + optional: true + interface-datastore: + optional: true + ioredis: + optional: true + it-all: + optional: true + jsdom: + optional: true + jsonwebtoken: + optional: true + llmonitor: + optional: true + lodash: + optional: true + lunary: + optional: true + mammoth: + optional: true + mongodb: + optional: true + mysql2: + optional: true + neo4j-driver: + optional: true + notion-to-md: + optional: true + officeparser: + optional: true + pdf-parse: + optional: true + pg: + optional: true + pg-copy-streams: + optional: true + pickleparser: + optional: true + playwright: + optional: true + portkey-ai: + optional: true + puppeteer: + optional: true + pyodide: + optional: true + redis: + optional: true + replicate: + optional: true + sonix-speech-recognition: + optional: true + srt-parser-2: + optional: true + typeorm: + optional: true + typesense: + optional: true + usearch: + optional: true + voy-search: + optional: true + weaviate-ts-client: + optional: true + web-auth-library: + optional: true + word-extractor: + optional: true + ws: + optional: true + youtubei.js: + optional: true + languageName: unknown + linkType: soft -"@octokit/core@npm:^5.0.2": - version: 5.2.0 - resolution: "@octokit/core@npm:5.2.0" +"@langchain/core@workspace:*, @langchain/core@workspace:langchain-core": + version: 0.0.0-use.local + resolution: "@langchain/core@workspace:langchain-core" dependencies: - "@octokit/auth-token": ^4.0.0 - "@octokit/graphql": ^7.1.0 - "@octokit/request": ^8.3.1 - "@octokit/request-error": ^5.1.0 - "@octokit/types": ^13.0.0 - before-after-hook: ^2.2.0 - universal-user-agent: ^6.0.0 - checksum: 57d5f02b759b569323dcb76cc72bf94ea7d0de58638c118ee14ec3e37d303c505893137dd72918328794844f35c74b3cd16999319c4b40d410a310d44a9b7566 - languageName: node - linkType: hard + "@cfworker/json-schema": ^4.0.2 + "@jest/globals": ^29.5.0 + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@types/decamelize": ^1.2.0 + "@types/mustache": ^4 + ansi-styles: ^5.0.0 + camelcase: 6 + decamelize: 1.2.0 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-jest: ^27.6.0 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + js-tiktoken: ^1.0.12 + langsmith: ">=0.2.8 <0.4.0" + ml-matrix: ^6.10.4 + mustache: ^4.2.0 + p-queue: ^6.6.2 + p-retry: 4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rimraf: ^5.0.1 + ts-jest: ^29.1.0 + typescript: ~5.1.6 + uuid: ^10.0.0 + web-streams-polyfill: ^4.0.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.3 + languageName: unknown + linkType: soft -"@octokit/core@npm:^6.0.0, @octokit/core@npm:^6.1.2": - version: 6.1.2 - resolution: "@octokit/core@npm:6.1.2" +"@langchain/deepseek@*, @langchain/deepseek@workspace:*, @langchain/deepseek@workspace:libs/langchain-deepseek": + version: 0.0.0-use.local + resolution: "@langchain/deepseek@workspace:libs/langchain-deepseek" dependencies: - "@octokit/auth-token": ^5.0.0 - "@octokit/graphql": ^8.0.0 - "@octokit/request": ^9.0.0 - "@octokit/request-error": ^6.0.1 - "@octokit/types": ^13.0.0 - before-after-hook: ^3.0.2 - universal-user-agent: ^7.0.0 - checksum: e794fb11b3942f55033f4cf6c0914953fd974587309498e8709c428660fa5c098334d83af5e41457dbe67d92d70a8b559c6cc00457d6c95290fa6c9e1d4bfc42 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": ^0.4.2 + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": "workspace:*" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^15.10.1 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.24.1 + peerDependencies: + "@langchain/core": ">=0.3.0 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/endpoint@npm:^10.0.0": - version: 10.1.1 - resolution: "@octokit/endpoint@npm:10.1.1" +"@langchain/exa@workspace:*, @langchain/exa@workspace:libs/langchain-exa": + version: 0.0.0-use.local + resolution: "@langchain/exa@workspace:libs/langchain-exa" dependencies: - "@octokit/types": ^13.0.0 - universal-user-agent: ^7.0.2 - checksum: fde158f40dc9a88e92a8ac1d347a54599aa5715ec24045be9cb8ff8decb3c17b63c91eca1bab12dfe0e0cd37433127dd05cd05db14a719dca749bc56093aa915 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + exa-js: ^1.0.12 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/endpoint@npm:^7.0.0": - version: 7.0.6 - resolution: "@octokit/endpoint@npm:7.0.6" +"@langchain/google-common@^0.1.0, @langchain/google-common@workspace:*, @langchain/google-common@workspace:libs/langchain-google-common, @langchain/google-common@~0.1.8": + version: 0.0.0-use.local + resolution: "@langchain/google-common@workspace:libs/langchain-google-common" dependencies: - "@octokit/types": ^9.0.0 - is-plain-object: ^5.0.0 - universal-user-agent: ^6.0.0 - checksum: 7caebf30ceec50eb7f253341ed419df355232f03d4638a95c178ee96620400db7e4a5e15d89773fe14db19b8653d4ab4cc81b2e93ca0c760b4e0f7eb7ad80301 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.4 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/endpoint@npm:^9.0.1": - version: 9.0.5 - resolution: "@octokit/endpoint@npm:9.0.5" +"@langchain/google-gauth@workspace:libs/langchain-google-gauth, @langchain/google-gauth@~0.1.8": + version: 0.0.0-use.local + resolution: "@langchain/google-gauth@workspace:libs/langchain-google-gauth" dependencies: - "@octokit/types": ^13.1.0 - universal-user-agent: ^6.0.0 - checksum: d5cc2df9bd4603844c163eea05eec89c677cfe699c6f065fe86b83123e34554ec16d429e8142dec1e2b4cf56591ef0ce5b1763f250c87bc8e7bf6c74ba59ae82 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/google-common": ~0.1.8 + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + google-auth-library: ^8.9.0 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.22.4 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/graphql@npm:^5.0.0": - version: 5.0.6 - resolution: "@octokit/graphql@npm:5.0.6" +"@langchain/google-genai@*, @langchain/google-genai@workspace:*, @langchain/google-genai@workspace:libs/langchain-google-genai": + version: 0.0.0-use.local + resolution: "@langchain/google-genai@workspace:libs/langchain-google-genai" dependencies: - "@octokit/request": ^6.0.0 - "@octokit/types": ^9.0.0 - universal-user-agent: ^6.0.0 - checksum: 7be545d348ef31dcab0a2478dd64d5746419a2f82f61459c774602bcf8a9b577989c18001f50b03f5f61a3d9e34203bdc021a4e4d75ff2d981e8c9c09cf8a65c - languageName: node - linkType: hard + "@google/generative-ai": ^0.21.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + hnswlib-node: ^3.0.0 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.4 + peerDependencies: + "@langchain/core": ">=0.3.17 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/graphql@npm:^7.1.0": - version: 7.1.0 - resolution: "@octokit/graphql@npm:7.1.0" +"@langchain/google-vertexai-web@*, @langchain/google-vertexai-web@workspace:*, @langchain/google-vertexai-web@workspace:libs/langchain-google-vertexai-web": + version: 0.0.0-use.local + resolution: "@langchain/google-vertexai-web@workspace:libs/langchain-google-vertexai-web" dependencies: - "@octokit/request": ^8.3.0 - "@octokit/types": ^13.0.0 - universal-user-agent: ^6.0.0 - checksum: 7b2706796e0269fc033ed149ea211117bcacf53115fd142c1eeafc06ebc5b6290e4e48c03d6276c210d72e3695e8598f83caac556cd00714fc1f8e4707d77448 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/google-common": ^0.1.0 + "@langchain/google-webauth": ~0.1.8 + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.22.4 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/graphql@npm:^8.0.0": - version: 8.1.1 - resolution: "@octokit/graphql@npm:8.1.1" +"@langchain/google-vertexai@*, @langchain/google-vertexai@workspace:*, @langchain/google-vertexai@workspace:libs/langchain-google-vertexai": + version: 0.0.0-use.local + resolution: "@langchain/google-vertexai@workspace:libs/langchain-google-vertexai" dependencies: - "@octokit/request": ^9.0.0 - "@octokit/types": ^13.0.0 - universal-user-agent: ^7.0.0 - checksum: 07239666b0ca38a7d8c581570b544ee9fd1a2616c8dd436af31879662b3345c44ed52e3d7b311840a1c5772a23f02caf7585aca56f36e50f38f0207a87577a9c - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/google-common": ^0.1.0 + "@langchain/google-gauth": ~0.1.8 + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.22.4 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/oauth-app@npm:^7.0.0": - version: 7.1.3 - resolution: "@octokit/oauth-app@npm:7.1.3" +"@langchain/google-webauth@workspace:libs/langchain-google-webauth, @langchain/google-webauth@~0.1.8": + version: 0.0.0-use.local + resolution: "@langchain/google-webauth@workspace:libs/langchain-google-webauth" dependencies: - "@octokit/auth-oauth-app": ^8.0.0 - "@octokit/auth-oauth-user": ^5.0.1 - "@octokit/auth-unauthenticated": ^6.0.0-beta.1 - "@octokit/core": ^6.0.0 - "@octokit/oauth-authorization-url": ^7.0.0 - "@octokit/oauth-methods": ^5.0.0 - "@types/aws-lambda": ^8.10.83 - universal-user-agent: ^7.0.0 - checksum: 13582d8d6e2ec1be144b5ec2c559d93de2cafcdfebde5e17c2d87906148c66edf00e8fb99c06852c8f4e51c6bbccd4a053b60796eadd848703389c0418eaa7fd - languageName: node - linkType: hard - -"@octokit/oauth-authorization-url@npm:^7.0.0": - version: 7.1.1 - resolution: "@octokit/oauth-authorization-url@npm:7.1.1" - checksum: 02ad29fa4540c6b4b3a1e9f6936d40057174be91e9c7cad1afcd09d027fa2a50598dad5857699d1be25568bf70d86123dc9cd3874afe044ce6791e6805e97542 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/google-common": ~0.1.8 + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + web-auth-library: ^1.0.3 + zod: ^3.23.8 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/oauth-methods@npm:^5.0.0": - version: 5.1.2 - resolution: "@octokit/oauth-methods@npm:5.1.2" +"@langchain/groq@*, @langchain/groq@workspace:*, @langchain/groq@workspace:libs/langchain-groq": + version: 0.0.0-use.local + resolution: "@langchain/groq@workspace:libs/langchain-groq" dependencies: - "@octokit/oauth-authorization-url": ^7.0.0 - "@octokit/request": ^9.1.0 - "@octokit/request-error": ^6.1.0 - "@octokit/types": ^13.0.0 - checksum: 64317d0fae0f2383ef0194bab7ed6521a1e2d698f2f0730b22dd4ffa2f103541be6e5ef4380e073d8086008ad5d311a66901e0cc6bc0f57b66dc64db6ed79922 - languageName: node - linkType: hard - -"@octokit/openapi-types@npm:^18.0.0": - version: 18.0.0 - resolution: "@octokit/openapi-types@npm:18.0.0" - checksum: d487d6c6c1965e583eee417d567e4fe3357a98953fc49bce1a88487e7908e9b5dbb3e98f60dfa340e23b1792725fbc006295aea071c5667a813b9c098185b56f - languageName: node - linkType: hard - -"@octokit/openapi-types@npm:^22.2.0": - version: 22.2.0 - resolution: "@octokit/openapi-types@npm:22.2.0" - checksum: eca41feac2b83298e0d95e253ac1c5b6d65155ac57f65c5fd8d4a485d9728922d85ff4bee0e815a1f3a5421311db092bdb6da9d6104a1b1843d8b274bcad9630 - languageName: node - linkType: hard - -"@octokit/openapi-webhooks-types@npm:8.3.0": - version: 8.3.0 - resolution: "@octokit/openapi-webhooks-types@npm:8.3.0" - checksum: bc97f53a93ed11a65ccf06cc67d4fcd9987112fbedd62335bf55debe475fedffe45c100e9fd2df98833c5da7b5a2391c75e22d70354f3f6790f8c87213325b42 - languageName: node - linkType: hard - -"@octokit/plugin-paginate-graphql@npm:^5.0.0": - version: 5.2.4 - resolution: "@octokit/plugin-paginate-graphql@npm:5.2.4" + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": "workspace:^" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + groq-sdk: ^0.5.0 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.5 peerDependencies: - "@octokit/core": ">=6" - checksum: f119999c8872f8c24eff653c3af53dea9d06b6863491ea52b888c1a9489019fcaa47423321b857073c609baaaf43fecf97ef335d780042334217abfe24b68bed - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/plugin-paginate-rest@npm:11.3.1": - version: 11.3.1 - resolution: "@octokit/plugin-paginate-rest@npm:11.3.1" +"@langchain/langgraph-checkpoint@npm:~0.0.13": + version: 0.0.13 + resolution: "@langchain/langgraph-checkpoint@npm:0.0.13" dependencies: - "@octokit/types": ^13.5.0 + uuid: ^10.0.0 peerDependencies: - "@octokit/core": 5 - checksum: 42c7c08e7287b4b85d2ae47852d2ffeb238c134ad6bcff18bddc154b15f6bec31778816c0763181401c370198390db7f6b0c3c44750fdfeec459594f7f4b5933 + "@langchain/core": ">=0.2.31 <0.4.0" + checksum: 721f6a99119e4445504d34d311f0c38c025ca65be04731c49915c08d6e7a2b5c9917b16e8c2f7b1ff9dd9f23ae56a4aa0918d902e0044ebdc8bf80704671163b languageName: node linkType: hard -"@octokit/plugin-paginate-rest@npm:^11.0.0": - version: 11.3.3 - resolution: "@octokit/plugin-paginate-rest@npm:11.3.3" +"@langchain/langgraph-sdk@npm:~0.0.21": + version: 0.0.32 + resolution: "@langchain/langgraph-sdk@npm:0.0.32" dependencies: - "@octokit/types": ^13.5.0 - peerDependencies: - "@octokit/core": ">=6" - checksum: 93c7993562caed67b67f75aa77ffb10d032c242a70e9380e2fb9ab67dd2fb84d420231d09cd8a64f1553ffd325f3ef8c640c62e4267b7f3b352b16d4d5e11ef6 + "@types/json-schema": ^7.0.15 + p-queue: ^6.6.2 + p-retry: 4 + uuid: ^9.0.0 + checksum: dd0e3fd1f3880e1ddff65108f338e75365bdff60f8ca5dc4e1b1e1be79fa216f1e599fa5d7f62ab9b44778787426f20b82db4e97463d6f3f4eda43f81666bfe9 languageName: node linkType: hard -"@octokit/plugin-paginate-rest@npm:^6.1.2": - version: 6.1.2 - resolution: "@octokit/plugin-paginate-rest@npm:6.1.2" +"@langchain/langgraph@npm:^0.2.34": + version: 0.2.34 + resolution: "@langchain/langgraph@npm:0.2.34" dependencies: - "@octokit/tsconfig": ^1.0.2 - "@octokit/types": ^9.2.3 + "@langchain/langgraph-checkpoint": ~0.0.13 + "@langchain/langgraph-sdk": ~0.0.21 + uuid: ^10.0.0 + zod: ^3.23.8 peerDependencies: - "@octokit/core": ">=4" - checksum: a7b3e686c7cbd27ec07871cde6e0b1dc96337afbcef426bbe3067152a17b535abd480db1861ca28c88d93db5f7bfdbcadd0919ead19818c28a69d0e194038065 + "@langchain/core": ">=0.2.36 <0.3.0 || >=0.3.9 < 0.4.0" + checksum: b60a639ef0b368637c8663f2ca89ea95192408d4117c1ea7d93cfa8cb4edb016c684bb7f8ace5ba1cbbb7279c99e5dfa0929dcdf2a284a0c85ae4b5a73baa23e languageName: node linkType: hard -"@octokit/plugin-request-log@npm:^1.0.4": - version: 1.0.4 - resolution: "@octokit/plugin-request-log@npm:1.0.4" +"@langchain/mistralai@*, @langchain/mistralai@workspace:*, @langchain/mistralai@workspace:libs/langchain-mistralai": + version: 0.0.0-use.local + resolution: "@langchain/mistralai@workspace:libs/langchain-mistralai" + dependencies: + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@mistralai/mistralai": ^1.3.1 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + zod: ^3.23.8 + zod-to-json-schema: ^3.22.4 peerDependencies: - "@octokit/core": ">=3" - checksum: 2086db00056aee0f8ebd79797b5b57149ae1014e757ea08985b71eec8c3d85dbb54533f4fd34b6b9ecaa760904ae6a7536be27d71e50a3782ab47809094bfc0c - languageName: node - linkType: hard + "@langchain/core": ">=0.3.7 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/plugin-request-log@npm:^4.0.0": - version: 4.0.1 - resolution: "@octokit/plugin-request-log@npm:4.0.1" +"@langchain/mixedbread-ai@workspace:libs/langchain-mixedbread-ai": + version: 0.0.0-use.local + resolution: "@langchain/mixedbread-ai@workspace:libs/langchain-mixedbread-ai" + dependencies: + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@mixedbread-ai/sdk": ^2.2.3 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-jest: ^27.6.0 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 peerDependencies: - "@octokit/core": 5 - checksum: fd8c0a201490cba00084689a0d1d54fc7b5ab5b6bdb7e447056b947b1754f78526e9685400eab10d3522bfa7b5bc49c555f41ec412c788610b96500b168f3789 - languageName: node - linkType: hard + "@langchain/core": ">=0.2.5 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/plugin-request-log@npm:^5.3.1": - version: 5.3.1 - resolution: "@octokit/plugin-request-log@npm:5.3.1" +"@langchain/mongodb@workspace:*, @langchain/mongodb@workspace:libs/langchain-mongodb": + version: 0.0.0-use.local + resolution: "@langchain/mongodb@workspace:libs/langchain-mongodb" + dependencies: + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + mongodb: ^6.3.0 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 peerDependencies: - "@octokit/core": ">=6" - checksum: a27e163282c8d0ba8feee4d3cbbd1b62e1aa89a892877f7a9876fc17ddde3e1e1af922e6664221a0cabae99b8a7a2a5215b9ec2ee5222edb50e06298e99022b0 - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/plugin-rest-endpoint-methods@npm:13.2.2": - version: 13.2.2 - resolution: "@octokit/plugin-rest-endpoint-methods@npm:13.2.2" +"@langchain/nomic@workspace:*, @langchain/nomic@workspace:libs/langchain-nomic": + version: 0.0.0-use.local + resolution: "@langchain/nomic@workspace:libs/langchain-nomic" dependencies: - "@octokit/types": ^13.5.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": "workspace:^" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@nomic-ai/atlas": ^0.8.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 peerDependencies: - "@octokit/core": ^5 - checksum: 347b3a891a561ed1dcc307a2dce42ca48c318c465ad91a26225d3d6493aef1b7ff868e6c56a0d7aa4170d028c7429ca1ec52aed6be34615a6ed701c3bcafdb17 - languageName: node - linkType: hard + "@langchain/core": ">=0.3.0 <0.4.0" + languageName: unknown + linkType: soft + +"@langchain/ollama@*, @langchain/ollama@workspace:*, @langchain/ollama@workspace:libs/langchain-ollama": + version: 0.0.0-use.local + resolution: "@langchain/ollama@workspace:libs/langchain-ollama" + dependencies: + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + ollama: ^0.5.12 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + zod: ^3.24.1 + zod-to-json-schema: ^3.24.1 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/plugin-rest-endpoint-methods@npm:^13.0.0": - version: 13.2.4 - resolution: "@octokit/plugin-rest-endpoint-methods@npm:13.2.4" +"@langchain/openai@>=0.1.0 <0.5.0, @langchain/openai@>=0.2.0 <0.5.0, @langchain/openai@^0.4.2, @langchain/openai@workspace:*, @langchain/openai@workspace:^, @langchain/openai@workspace:libs/langchain-openai": + version: 0.0.0-use.local + resolution: "@langchain/openai@workspace:libs/langchain-openai" dependencies: - "@octokit/types": ^13.5.0 + "@azure/identity": ^4.2.1 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-jest: ^27.6.0 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + js-tiktoken: ^1.0.12 + openai: ^4.77.0 + prettier: ^2.8.3 + release-it: ^17.6.0 + rimraf: ^5.0.1 + ts-jest: ^29.1.0 + typescript: ~5.1.6 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.3 peerDependencies: - "@octokit/core": ">=6" - checksum: 149643bf98933af92003c55ad7f1e87c239941e843708cfc7389d378e85069e88b7cccaf8227469ee037d54da93cbdb881a34ce9888f5a60f89c689305eb5730 - languageName: node - linkType: hard + "@langchain/core": ">=0.3.39 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/plugin-rest-endpoint-methods@npm:^7.1.2": - version: 7.2.3 - resolution: "@octokit/plugin-rest-endpoint-methods@npm:7.2.3" +"@langchain/openai@npm:~0.3.0": + version: 0.3.17 + resolution: "@langchain/openai@npm:0.3.17" dependencies: - "@octokit/types": ^10.0.0 + js-tiktoken: ^1.0.12 + openai: ^4.77.0 + zod: ^3.22.4 + zod-to-json-schema: ^3.22.3 peerDependencies: - "@octokit/core": ">=3" - checksum: 21dfb98514dbe900c29cddb13b335bbce43d613800c6b17eba3c1fd31d17e69c1960f3067f7bf864bb38fdd5043391f4a23edee42729d8c7fbabd00569a80336 + "@langchain/core": ">=0.3.29 <0.4.0" + checksum: af88894dcfa8381c0b0df924e085796995f5d5ba2a2657ea72b4181b35c5d92b0040c5cf305378c1f48a8f1f04d4a3b0b29ba1d84f80cedf5dab8bc46d7d5c6c languageName: node linkType: hard -"@octokit/plugin-retry@npm:^7.0.0": - version: 7.1.2 - resolution: "@octokit/plugin-retry@npm:7.1.2" +"@langchain/pinecone@workspace:*, @langchain/pinecone@workspace:libs/langchain-pinecone": + version: 0.0.0-use.local + resolution: "@langchain/pinecone@workspace:libs/langchain-pinecone" dependencies: - "@octokit/request-error": ^6.0.0 - "@octokit/types": ^13.0.0 - bottleneck: ^2.15.3 + "@faker-js/faker": ^8.3.1 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@pinecone-database/pinecone": ^4.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + flat: ^5.0.2 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + langchain: "workspace:*" + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 peerDependencies: - "@octokit/core": ">=6" - checksum: 484da4d0deffb5612d9ad918e82158c7c0e98e0be76ffe9046fe48c3f11ed4b7ff2d6807d9704c470dbc7d017bfa6e89cd89346ccdad788ac4fa5d02ccc99f94 - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/plugin-throttling@npm:^9.0.0": - version: 9.3.2 - resolution: "@octokit/plugin-throttling@npm:9.3.2" +"@langchain/qdrant@workspace:*, @langchain/qdrant@workspace:libs/langchain-qdrant": + version: 0.0.0-use.local + resolution: "@langchain/qdrant@workspace:libs/langchain-qdrant" dependencies: - "@octokit/types": ^13.0.0 - bottleneck: ^2.15.3 + "@faker-js/faker": ^8.4.1 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@qdrant/js-client-rest": ^1.9.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 peerDependencies: - "@octokit/core": ^6.0.0 - checksum: d3e11bd4bbee7df0885789c018f9e0cc48b2226fa4c23f9f68b53acd670eb30303762fb56034650620dbf4e72497e27620140bc9cad5355207b4b5f0e1129e90 - languageName: node - linkType: hard + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/request-error@npm:^3.0.0": - version: 3.0.3 - resolution: "@octokit/request-error@npm:3.0.3" +"@langchain/redis@workspace:*, @langchain/redis@workspace:libs/langchain-redis": + version: 0.0.0-use.local + resolution: "@langchain/redis@workspace:libs/langchain-redis" dependencies: - "@octokit/types": ^9.0.0 - deprecation: ^2.0.0 - once: ^1.4.0 - checksum: 5db0b514732686b627e6ed9ef1ccdbc10501f1b271a9b31f784783f01beee70083d7edcfeb35fbd7e569fa31fdd6762b1ff6b46101700d2d97e7e48e749520d0 - languageName: node - linkType: hard + "@faker-js/faker": ^8.4.0 + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + redis: ^4.6.13 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/request-error@npm:^5.1.0": - version: 5.1.0 - resolution: "@octokit/request-error@npm:5.1.0" +"@langchain/scripts@>=0.1.0 <0.2.0, @langchain/scripts@workspace:*, @langchain/scripts@workspace:libs/langchain-scripts": + version: 0.0.0-use.local + resolution: "@langchain/scripts@workspace:libs/langchain-scripts" dependencies: - "@octokit/types": ^13.1.0 - deprecation: ^2.0.0 - once: ^1.4.0 - checksum: 2cdbb8e44072323b5e1c8c385727af6700e3e492d55bc1e8d0549c4a3d9026914f915866323d371b1f1772326d6e902341c872679cc05c417ffc15cadf5f4a4e - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@octokit/rest": ^21.0.2 + "@rollup/wasm-node": ^4.19.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/lodash": ^4 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + axios: ^1.6.7 + commander: ^11.1.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + glob: ^10.3.10 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + lodash: ^4.17.21 + prettier: ^2.8.3 + readline: ^1.3.0 + release-it: ^17.6.0 + rimraf: ^5.0.1 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + ts-morph: ^21.0.1 + tsx: ^4.16.2 + typescript: ^5.4.5 + bin: + extract_serializable_fields: bin/extract_serializable_fields.js + filter_spam_comment: bin/filter_spam_comment.js + lc_build: bin/build.js + notebook_validate: bin/validate_notebook.js + languageName: unknown + linkType: soft -"@octokit/request-error@npm:^6.0.0, @octokit/request-error@npm:^6.1.0, @octokit/request-error@npm:^6.1.1": - version: 6.1.5 - resolution: "@octokit/request-error@npm:6.1.5" +"@langchain/standard-tests@0.0.0, @langchain/standard-tests@workspace:*, @langchain/standard-tests@workspace:libs/langchain-standard-tests": + version: 0.0.0-use.local + resolution: "@langchain/standard-tests@workspace:libs/langchain-standard-tests" dependencies: - "@octokit/types": ^13.0.0 - checksum: a0891df29957d9911ef34281fefffac4a98baa96ffffeb1a2b8f0c8e229911ca3da2be42e5bbe6a4b994a12fd100f4d0d86be095fada60384cd6728705eae859 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": "workspace:*" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: ^5.4.5 + zod: ^3.22.4 + zod-to-json-schema: ^3.23.0 + languageName: unknown + linkType: soft -"@octokit/request-error@npm:^6.0.1": - version: 6.1.4 - resolution: "@octokit/request-error@npm:6.1.4" +"@langchain/textsplitters@>=0.0.0 <0.2.0, @langchain/textsplitters@^0.1.0, @langchain/textsplitters@workspace:*, @langchain/textsplitters@workspace:libs/langchain-textsplitters": + version: 0.0.0-use.local + resolution: "@langchain/textsplitters@workspace:libs/langchain-textsplitters" dependencies: - "@octokit/types": ^13.0.0 - checksum: e4e475ec50cef8e271f39e69667d0f8eaccb2367aa56b81638c629b5bbfa2b697b40207301e5c797a63051a82d8698e7c792b4050b84e383c54300a49a01304a - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + js-tiktoken: ^1.0.12 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/request@npm:^6.0.0": - version: 6.2.8 - resolution: "@octokit/request@npm:6.2.8" +"@langchain/weaviate@workspace:*, @langchain/weaviate@workspace:libs/langchain-weaviate": + version: 0.0.0-use.local + resolution: "@langchain/weaviate@workspace:libs/langchain-weaviate" dependencies: - "@octokit/endpoint": ^7.0.0 - "@octokit/request-error": ^3.0.0 - "@octokit/types": ^9.0.0 - is-plain-object: ^5.0.0 - node-fetch: ^2.6.7 - universal-user-agent: ^6.0.0 - checksum: 3747106f50d7c462131ff995b13defdd78024b7becc40283f4ac9ea0af2391ff33a0bb476a05aa710346fe766d20254979079a1d6f626112015ba271fe38f3e2 - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": "workspace:^" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + langchain: "workspace:*" + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + uuid: ^10.0.0 + weaviate-ts-client: ^2.0.0 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/request@npm:^8.3.0, @octokit/request@npm:^8.3.1": - version: 8.4.0 - resolution: "@octokit/request@npm:8.4.0" +"@langchain/xai@*, @langchain/xai@workspace:*, @langchain/xai@workspace:libs/langchain-xai": + version: 0.0.0-use.local + resolution: "@langchain/xai@workspace:libs/langchain-xai" dependencies: - "@octokit/endpoint": ^9.0.1 - "@octokit/request-error": ^5.1.0 - "@octokit/types": ^13.1.0 - universal-user-agent: ^6.0.0 - checksum: 3d937e817a85c0adf447ab46b428ccd702c31b2091e47adec90583ec2242bd64666306fe8188628fb139aa4752e19400eb7652b0f5ca33cd9e77bbb2c60b202a - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/openai": "workspace:^" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@langchain/standard-tests": 0.0.0 + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@types/uuid": ^9 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + release-it: ^17.6.0 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + zod: ^3.24.2 + zod-to-json-schema: ^3.23.1 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/request@npm:^9.0.0, @octokit/request@npm:^9.0.1, @octokit/request@npm:^9.1.0, @octokit/request@npm:^9.1.1": - version: 9.1.3 - resolution: "@octokit/request@npm:9.1.3" +"@langchain/yandex@workspace:*, @langchain/yandex@workspace:libs/langchain-yandex": + version: 0.0.0-use.local + resolution: "@langchain/yandex@workspace:libs/langchain-yandex" dependencies: - "@octokit/endpoint": ^10.0.0 - "@octokit/request-error": ^6.0.1 - "@octokit/types": ^13.1.0 - universal-user-agent: ^7.0.2 - checksum: 0a1c1a4f9ba67954402ef6d1e3d8e78518487750f3a31c100133840fff393ed9cc29533282914adf0731f7cc880a2778b8a6ac81527b376a278360a86e79597d - languageName: node - linkType: hard + "@jest/globals": ^29.5.0 + "@langchain/core": "workspace:*" + "@langchain/scripts": ">=0.1.0 <0.2.0" + "@swc/core": ^1.3.90 + "@swc/jest": ^0.2.29 + "@tsconfig/recommended": ^1.0.3 + "@typescript-eslint/eslint-plugin": ^6.12.0 + "@typescript-eslint/parser": ^6.12.0 + dotenv: ^16.3.1 + dpdm: ^3.12.0 + eslint: ^8.33.0 + eslint-config-airbnb-base: ^15.0.0 + eslint-config-prettier: ^8.6.0 + eslint-plugin-import: ^2.27.5 + eslint-plugin-no-instanceof: ^1.0.1 + eslint-plugin-prettier: ^4.2.1 + jest: ^29.5.0 + jest-environment-node: ^29.6.4 + prettier: ^2.8.3 + rollup: ^4.5.2 + ts-jest: ^29.1.0 + typescript: <5.2.0 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + languageName: unknown + linkType: soft -"@octokit/rest@npm:19.0.11": - version: 19.0.11 - resolution: "@octokit/rest@npm:19.0.11" +"@layerup/layerup-security@npm:^1.5.12": + version: 1.5.12 + resolution: "@layerup/layerup-security@npm:1.5.12" dependencies: - "@octokit/core": ^4.2.1 - "@octokit/plugin-paginate-rest": ^6.1.2 - "@octokit/plugin-request-log": ^1.0.4 - "@octokit/plugin-rest-endpoint-methods": ^7.1.2 - checksum: 147518ad51d214ead88adc717b5fdc4f33317949d58c124f4069bdf07d2e6b49fa66861036b9e233aed71fcb88ff367a6da0357653484e466175ab4fb7183b3b + axios: ^1.6.8 + openai: ^4.32.1 + checksum: f506b7aa266dcf7e062e3eebdba99468363f45f4d87419f108538f13d5cae70b6ac96f1c263d614de4ff7d742cf0ee3bd67b44124de717680bf02c69a458b5e2 languageName: node linkType: hard -"@octokit/rest@npm:20.1.1": - version: 20.1.1 - resolution: "@octokit/rest@npm:20.1.1" - dependencies: - "@octokit/core": ^5.0.2 - "@octokit/plugin-paginate-rest": 11.3.1 - "@octokit/plugin-request-log": ^4.0.0 - "@octokit/plugin-rest-endpoint-methods": 13.2.2 - checksum: c15a801c62a2e2104a4b443b3b43f73366d1220b43995d4ffe1358c4162021708e6625a64ea56bf7d85b870924b862b0d680e191160ceca11e6531b8b92299ca +"@leichtgewicht/ip-codec@npm:^2.0.1": + version: 2.0.4 + resolution: "@leichtgewicht/ip-codec@npm:2.0.4" + checksum: 468de1f04d33de6d300892683d7c8aecbf96d1e2c5fe084f95f816e50a054d45b7c1ebfb141a1447d844b86a948733f6eebd92234da8581c84a1ad4de2946a2d languageName: node linkType: hard -"@octokit/rest@npm:^21.0.2": - version: 21.0.2 - resolution: "@octokit/rest@npm:21.0.2" +"@libp2p/interface@npm:^1.0.0, @libp2p/interface@npm:^1.1.4": + version: 1.1.4 + resolution: "@libp2p/interface@npm:1.1.4" dependencies: - "@octokit/core": ^6.1.2 - "@octokit/plugin-paginate-rest": ^11.0.0 - "@octokit/plugin-request-log": ^5.3.1 - "@octokit/plugin-rest-endpoint-methods": ^13.0.0 - checksum: 81dc98bbc27d4891a211628ea49ba40f087f986ee85d7e2f0579b66e4046dd6b6d63ffeb0eb011c9240dd61906798795e4b9e309af230f31df0a42db79ae20bc - languageName: node - linkType: hard - -"@octokit/tsconfig@npm:^1.0.2": - version: 1.0.2 - resolution: "@octokit/tsconfig@npm:1.0.2" - checksum: 74d56f3e9f326a8dd63700e9a51a7c75487180629c7a68bbafee97c612fbf57af8347369bfa6610b9268a3e8b833c19c1e4beb03f26db9a9dce31f6f7a19b5b1 + "@multiformats/multiaddr": ^12.1.14 + it-pushable: ^3.2.3 + it-stream-types: ^2.0.1 + multiformats: ^13.1.0 + progress-events: ^1.0.0 + uint8arraylist: ^2.4.8 + checksum: 5891fc01b30bebf56ced068f39af7bfef5a64d01eb06e12ef6b284e7b00f0ff03d03273a49019adb8929b79af92341eef121fb7e8f8f5a73a320e236ed793bb8 languageName: node linkType: hard -"@octokit/types@npm:^10.0.0": - version: 10.0.0 - resolution: "@octokit/types@npm:10.0.0" +"@libp2p/logger@npm:^4.0.6": + version: 4.0.7 + resolution: "@libp2p/logger@npm:4.0.7" dependencies: - "@octokit/openapi-types": ^18.0.0 - checksum: 8aafba2ff0cd2435fb70c291bf75ed071c0fa8a865cf6169648732068a35dec7b85a345851f18920ec5f3e94ee0e954988485caac0da09ec3f6781cc44fe153a + "@libp2p/interface": ^1.1.4 + "@multiformats/multiaddr": ^12.1.14 + debug: ^4.3.4 + interface-datastore: ^8.2.11 + multiformats: ^13.1.0 + checksum: c3e51d282db4deed2a099cfa6c18a3f8bd280b561cecf7cea829cd6fe230646b911898cd286594b01907a96bc5d2900e7f481c7954affd892296581326a4c172 languageName: node linkType: hard -"@octokit/types@npm:^13.0.0, @octokit/types@npm:^13.1.0, @octokit/types@npm:^13.5.0": - version: 13.5.0 - resolution: "@octokit/types@npm:13.5.0" +"@libsql/client@npm:^0.14.0": + version: 0.14.0 + resolution: "@libsql/client@npm:0.14.0" dependencies: - "@octokit/openapi-types": ^22.2.0 - checksum: 8e92f2b145b3c28a35312f93714245824a7b6b7353caa88edfdc85fc2ed4108321ed0c3988001ea53449fbb212febe0e8e9582744e85c3574dabe9d0441af5a0 + "@libsql/core": ^0.14.0 + "@libsql/hrana-client": ^0.7.0 + js-base64: ^3.7.5 + libsql: ^0.4.4 + promise-limit: ^2.7.0 + checksum: 7eeaf95d76da8870544c27fcf1206c377a0fc3df72b174393a1fb17fc92ca568d9a42d24d65e771ca77edc5108e853a7ac18540ad0242da759f2ec1191103d99 languageName: node linkType: hard -"@octokit/types@npm:^13.4.1": - version: 13.6.1 - resolution: "@octokit/types@npm:13.6.1" +"@libsql/core@npm:^0.14.0": + version: 0.14.0 + resolution: "@libsql/core@npm:0.14.0" dependencies: - "@octokit/openapi-types": ^22.2.0 - checksum: 05bb427bc3c84088e2367b8d1b7a9834732116bb3d35ef51d1aae34b3919027159dd496b9362dab1cb047918da15be1dc1cafc512c97f9b77458bd273b5a2ba9 + js-base64: ^3.7.5 + checksum: dae12491a277e03c3729de069bee9af9689f0c178b0fd1ef342f03aab94e4ccba8801e11d0393e0e3a77596e34f101b69b7f07f16f6b34a09eca698e340bed36 languageName: node linkType: hard -"@octokit/types@npm:^9.0.0, @octokit/types@npm:^9.2.3": - version: 9.3.2 - resolution: "@octokit/types@npm:9.3.2" - dependencies: - "@octokit/openapi-types": ^18.0.0 - checksum: f55d096aaed3e04b8308d4422104fb888f355988056ba7b7ef0a4c397b8a3e54290d7827b06774dbe0c9ce55280b00db486286954f9c265aa6b03091026d9da8 +"@libsql/darwin-arm64@npm:0.4.6": + version: 0.4.6 + resolution: "@libsql/darwin-arm64@npm:0.4.6" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@octokit/webhooks-methods@npm:^5.0.0": - version: 5.1.0 - resolution: "@octokit/webhooks-methods@npm:5.1.0" - checksum: 6b0185f62b30b1d267456c449732d1c381e22533bcfeea3002bb88bc9f50a6ec5e4863be092473e7c47bee8c01b863ebd93980dd378495860dfd8d762044a212 +"@libsql/darwin-x64@npm:0.4.6": + version: 0.4.6 + resolution: "@libsql/darwin-x64@npm:0.4.6" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@octokit/webhooks@npm:^13.0.0": - version: 13.3.0 - resolution: "@octokit/webhooks@npm:13.3.0" +"@libsql/hrana-client@npm:^0.7.0": + version: 0.7.0 + resolution: "@libsql/hrana-client@npm:0.7.0" dependencies: - "@octokit/openapi-webhooks-types": 8.3.0 - "@octokit/request-error": ^6.0.1 - "@octokit/webhooks-methods": ^5.0.0 - checksum: 4a790e7a0551f057a14cf3b5df8e20cec43c10a8f331e19db7b0e5f6bfbc7577e817ad8543c7a99fb6dd7c713d93f0bbaf2fedc3c88f858693da084e9ef1463d + "@libsql/isomorphic-fetch": ^0.3.1 + "@libsql/isomorphic-ws": ^0.1.5 + js-base64: ^3.7.5 + node-fetch: ^3.3.2 + checksum: 0d36931ca3a01144dc14294d1d9666ee64724c6ab4889890ff0bc45564369503f6abccbc448518485af107bd69f49d35878059c46d98dacb34db4757b52c406a languageName: node linkType: hard -"@opensearch-project/opensearch@npm:^2.2.0": - version: 2.2.0 - resolution: "@opensearch-project/opensearch@npm:2.2.0" +"@libsql/isomorphic-fetch@npm:^0.3.1": + version: 0.3.1 + resolution: "@libsql/isomorphic-fetch@npm:0.3.1" + checksum: 9f131cae3b14c39712f1140e21b2ab1ccc81b5f6ad2aa90d739dc8df0602109a5c4c0ea820dcd39632ace7a4b247bc31e2a5e79cd6efaf5f1777650aac9ac694 + languageName: node + linkType: hard + +"@libsql/isomorphic-ws@npm:^0.1.5": + version: 0.1.5 + resolution: "@libsql/isomorphic-ws@npm:0.1.5" dependencies: - aws4: ^1.11.0 - debug: ^4.3.1 - hpagent: ^1.2.0 - ms: ^2.1.3 - secure-json-parse: ^2.4.0 - checksum: cceb5bb2c194a7d4bfab3c1b4a3230ea1457ae8976f39bb9e0c5e0067dc450a418a4649536988f0d48a746d7d3ed2002c32d9fde48dfc3112158e964bafa6e76 + "@types/ws": ^8.5.4 + ws: ^8.13.0 + checksum: 8255a0f4cae8ea66c94d6ab02ca57ddc7d6472c43700fd089e615e2df56028bf3723f694c91fbd76db403772f43f49cf2545e29e7ac18f77aa482fcfed71c940 languageName: node linkType: hard -"@opentelemetry/api@npm:^1.0.1": - version: 1.4.1 - resolution: "@opentelemetry/api@npm:1.4.1" - checksum: e783c40d1a518abf9c4c5d65223237c1392cd9a6c53ac6e2c3ef0c05ff7266e3dfc4fd9874316dae0dcb7a97950878deb513bcbadfaad653d48f0215f2a0911b +"@libsql/linux-arm64-gnu@npm:0.4.6": + version: 0.4.6 + resolution: "@libsql/linux-arm64-gnu@npm:0.4.6" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@petamoriken/float16@npm:^3.8.6": - version: 3.8.7 - resolution: "@petamoriken/float16@npm:3.8.7" - checksum: 0e4c12e9d88aac08f125a2e804a28207bafd1ea0cdc2ddbde95cc9a3b19c155747f5001a5d5b42f9dca18f697df553d42680067817ce5dc4e3456f9c605a6d88 +"@libsql/linux-arm64-musl@npm:0.4.6": + version: 0.4.6 + resolution: "@libsql/linux-arm64-musl@npm:0.4.6" + conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@pinecone-database/pinecone@npm:^4.0.0": - version: 4.0.0 - resolution: "@pinecone-database/pinecone@npm:4.0.0" - dependencies: - encoding: ^0.1.13 - checksum: 7523d7b8dc6a5d7b5d5cf37c97f6070112473f26d82aec23ca198554634e6bc0883866fcc9a8b2978e287daad8665085cef1d4f16d86a7ba0f8b623d88bdda54 +"@libsql/linux-x64-gnu@npm:0.4.6": + version: 0.4.6 + resolution: "@libsql/linux-x64-gnu@npm:0.4.6" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@pkgjs/parseargs@npm:^0.11.0": - version: 0.11.0 - resolution: "@pkgjs/parseargs@npm:0.11.0" - checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f +"@libsql/linux-x64-musl@npm:0.4.6": + version: 0.4.6 + resolution: "@libsql/linux-x64-musl@npm:0.4.6" + conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@planetscale/database@npm:^1.8.0": - version: 1.8.0 - resolution: "@planetscale/database@npm:1.8.0" - checksum: f1ad8068da139208b428a5245aca6fe21c987dc922589483d7cc21453273a7462dab391e15794c0ba012d185ad59459160f14cf4ca2fd42bd3053e7474952a0b +"@libsql/win32-x64-msvc@npm:0.4.6": + version: 0.4.6 + resolution: "@libsql/win32-x64-msvc@npm:0.4.6" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@playwright/test@npm:^1.48.2": - version: 1.49.0 - resolution: "@playwright/test@npm:1.49.0" +"@mapbox/node-pre-gyp@npm:^1.0.0": + version: 1.0.10 + resolution: "@mapbox/node-pre-gyp@npm:1.0.10" dependencies: - playwright: 1.49.0 + detect-libc: ^2.0.0 + https-proxy-agent: ^5.0.0 + make-dir: ^3.1.0 + node-fetch: ^2.6.7 + nopt: ^5.0.0 + npmlog: ^5.0.1 + rimraf: ^3.0.2 + semver: ^7.3.5 + tar: ^6.1.11 bin: - playwright: cli.js - checksum: f8477aa61d59fd22c6161c48221ab246340dc37bbe2804e1a7d1be8cbd0fd861747fcb7ca559f4bc7328226ff2c90ccb7efa588a7d7d7829f3e57902b28fe39a + node-pre-gyp: bin/node-pre-gyp + checksum: 1a98db05d955b74dad3814679593df293b9194853698f3f5f1ed00ecd93128cdd4b14fb8767fe44ac6981ef05c23effcfdc88710e7c1de99ccb6f647890597c8 languageName: node linkType: hard -"@pnpm/config.env-replace@npm:^1.0.0": - version: 1.0.0 - resolution: "@pnpm/config.env-replace@npm:1.0.0" - checksum: 0142dca1c4838af833ac1babeb293236047cb3199f509b5dbcb68ea4d21ffc3ab8f7d3fe8653e4caef11771c56ab2410d6b930c162ed8eb6714a8cab51a95ceb +"@mapbox/node-pre-gyp@npm:^1.0.5": + version: 1.0.11 + resolution: "@mapbox/node-pre-gyp@npm:1.0.11" + dependencies: + detect-libc: ^2.0.0 + https-proxy-agent: ^5.0.0 + make-dir: ^3.1.0 + node-fetch: ^2.6.7 + nopt: ^5.0.0 + npmlog: ^5.0.1 + rimraf: ^3.0.2 + semver: ^7.3.5 + tar: ^6.1.11 + bin: + node-pre-gyp: bin/node-pre-gyp + checksum: b848f6abc531a11961d780db813cc510ca5a5b6bf3184d72134089c6875a91c44d571ba6c1879470020803f7803609e7b2e6e429651c026fe202facd11d444b8 languageName: node linkType: hard -"@pnpm/network.ca-file@npm:^1.0.1": - version: 1.0.2 - resolution: "@pnpm/network.ca-file@npm:1.0.2" +"@mdx-js/mdx@npm:^1.6.22": + version: 1.6.22 + resolution: "@mdx-js/mdx@npm:1.6.22" dependencies: - graceful-fs: 4.2.10 - checksum: d8d0884646500576bd5390464d13db1bb9a62e32a1069293e5bddb2ad8354b354b7e2d2a35e12850025651e795e6a80ce9e601c66312504667b7e3ee7b52becc + "@babel/core": 7.12.9 + "@babel/plugin-syntax-jsx": 7.12.1 + "@babel/plugin-syntax-object-rest-spread": 7.8.3 + "@mdx-js/util": 1.6.22 + babel-plugin-apply-mdx-type-prop: 1.6.22 + babel-plugin-extract-import-names: 1.6.22 + camelcase-css: 2.0.1 + detab: 2.0.4 + hast-util-raw: 6.0.1 + lodash.uniq: 4.5.0 + mdast-util-to-hast: 10.0.1 + remark-footnotes: 2.0.0 + remark-mdx: 1.6.22 + remark-parse: 8.0.3 + remark-squeeze-paragraphs: 4.0.0 + style-to-object: 0.3.0 + unified: 9.2.0 + unist-builder: 2.0.3 + unist-util-visit: 2.0.3 + checksum: 0839b4a3899416326ea6578fe9e470af319da559bc6d3669c60942e456b49a98eebeb3358c623007b4786a2175a450d2c51cd59df64639013c5a3d22366931a6 languageName: node linkType: hard -"@pnpm/npm-conf@npm:^2.1.0": - version: 2.1.0 - resolution: "@pnpm/npm-conf@npm:2.1.0" - dependencies: - "@pnpm/config.env-replace": ^1.0.0 - "@pnpm/network.ca-file": ^1.0.1 - config-chain: ^1.1.11 - checksum: b4b19d2d2b22d6ee9d41c6499ac1c55277cdaddc150fb3a549e7460bcf7a377adbd70788c2c8c4167081b76b343d4869505c852cea2ad46060f4de632611eb30 +"@mdx-js/react@npm:^1.6.22": + version: 1.6.22 + resolution: "@mdx-js/react@npm:1.6.22" + peerDependencies: + react: ^16.13.1 || ^17.0.0 + checksum: bc84bd514bc127f898819a0c6f1a6915d9541011bd8aefa1fcc1c9bea8939f31051409e546bdec92babfa5b56092a16d05ef6d318304ac029299df5181dc94c8 languageName: node linkType: hard -"@polka/url@npm:^1.0.0-next.20": - version: 1.0.0-next.23 - resolution: "@polka/url@npm:1.0.0-next.23" - checksum: 4b0330de1ceecd1002c7e7449094d0c41f2ed0e21765f4835ccc7b003f2f024ac557d503b9ffdf0918cf50b80d5b8c99dfc5a91927e7b3c468b09c6bb42a3c41 +"@mdx-js/util@npm:1.6.22": + version: 1.6.22 + resolution: "@mdx-js/util@npm:1.6.22" + checksum: 4b393907e39a1a75214f0314bf72a0adfa5e5adffd050dd5efe9c055b8549481a3cfc9f308c16dfb33311daf3ff63added7d5fd1fe52db614c004f886e0e559a languageName: node linkType: hard -"@premai/prem-sdk@npm:^0.3.25": - version: 0.3.25 - resolution: "@premai/prem-sdk@npm:0.3.25" +"@mendable/firecrawl-js@npm:^1.4.3": + version: 1.4.3 + resolution: "@mendable/firecrawl-js@npm:1.4.3" dependencies: - axios: ^1.6.2 - checksum: e52bd2a1d44df773ca76c6267ef23dbbd94af4ad4f8cd3eb123772179c62358115c4e53bbc1373772529c08bc888df1fdcb994bfd9b57b8ee8206cd4808aa77d + axios: ^1.6.8 + isows: ^1.0.4 + typescript-event-target: ^1.1.1 + zod: ^3.23.8 + zod-to-json-schema: ^3.23.0 + checksum: ee36a4ceaca326d1ae86a714500dd0698060a63e84e0d5c83fb14967ac36755cd4b0b42a260c5e7b63914551a94ead2f4c712a76b9e58a6580dd5ca8628e851a languageName: node linkType: hard -"@prisma/client@npm:^4.11.0": - version: 4.11.0 - resolution: "@prisma/client@npm:4.11.0" - dependencies: - "@prisma/engines-version": 4.11.0-57.8fde8fef4033376662cad983758335009d522acb - peerDependencies: - prisma: "*" - peerDependenciesMeta: - prisma: - optional: true - checksum: ca8d8f820caaf4a76b94674f88207d5bb14f57a9682d37d2f79c56378f259cd3b14b30a110ab59a97647fcf3c46f896e7a2d20ded2777e09b835d7accd70cf1d +"@microsoft/fetch-event-source@npm:^2.0.1": + version: 2.0.1 + resolution: "@microsoft/fetch-event-source@npm:2.0.1" + checksum: a50e1c0f33220206967266d0a4bbba0703e2793b079d9f6e6bfd48f71b2115964a803e14cf6e902c6fab321edc084f26022334f5eaacc2cec87f174715d41852 languageName: node linkType: hard -"@prisma/engines-version@npm:4.11.0-57.8fde8fef4033376662cad983758335009d522acb": - version: 4.11.0-57.8fde8fef4033376662cad983758335009d522acb - resolution: "@prisma/engines-version@npm:4.11.0-57.8fde8fef4033376662cad983758335009d522acb" - checksum: f040b93d09b21feaef193080eed22142fa26b3cf86d089ebb4286f5f45ed17a98e030a8bb55c0bec2892e15880a697f6754c6966b7795cf7ba4553f59fb387e7 +"@mistralai/mistralai@npm:^1.3.1": + version: 1.3.1 + resolution: "@mistralai/mistralai@npm:1.3.1" + peerDependencies: + zod: ">= 3" + checksum: 9e31a2f760706a9f54347ba2cb2b7784d4f93eb4ff5d87cc7cfac9b7a1a1816f21da2328f5f5e13c11ed8953f1d71f2a2e09d12123ac17d171c189d21b87a977 languageName: node linkType: hard -"@prisma/engines@npm:4.11.0": - version: 4.11.0 - resolution: "@prisma/engines@npm:4.11.0" - checksum: 98030cead39e5009b7a91fd2463433ccdb16cbeb6c7345ed7950c25dbe0731a425fc888458a1423b594d659972e081ca3d63d301ef647f05a634209c75769db2 +"@mixedbread-ai/sdk@npm:^2.2.3": + version: 2.2.6 + resolution: "@mixedbread-ai/sdk@npm:2.2.6" + dependencies: + form-data: 4.0.0 + formdata-node: ^6.0.3 + js-base64: 3.7.7 + node-fetch: 3.3.2 + qs: 6.12.1 + url-join: 5.0.0 + checksum: 081e8351f38d7ad774ab9e928494a7b11c569cc246941182c3e85b063e4fb4abf81ae71522ad63af759fbd56c51f342b38dd64b80b7bd72fff67bd27297b6f37 languageName: node linkType: hard -"@protobufjs/aspromise@npm:^1.1.1, @protobufjs/aspromise@npm:^1.1.2": - version: 1.1.2 - resolution: "@protobufjs/aspromise@npm:1.1.2" - checksum: 011fe7ef0826b0fd1a95935a033a3c0fd08483903e1aa8f8b4e0704e3233406abb9ee25350ec0c20bbecb2aad8da0dcea58b392bbd77d6690736f02c143865d2 +"@mlc-ai/web-llm@npm:>=0.2.62 <0.3.0": + version: 0.2.62 + resolution: "@mlc-ai/web-llm@npm:0.2.62" + dependencies: + loglevel: ^1.9.1 + checksum: 7ccb0842e3fe83156406e61e0172f2f07115c77669b37729499f52c120cc33acd000fc4619b30fb67ca7712246c9722af65e4fe208c2f4546e2882297d53293c languageName: node linkType: hard -"@protobufjs/base64@npm:^1.1.2": - version: 1.1.2 - resolution: "@protobufjs/base64@npm:1.1.2" - checksum: 67173ac34de1e242c55da52c2f5bdc65505d82453893f9b51dc74af9fe4c065cf4a657a4538e91b0d4a1a1e0a0642215e31894c31650ff6e3831471061e1ee9e +"@mongodb-js/saslprep@npm:^1.1.0": + version: 1.1.4 + resolution: "@mongodb-js/saslprep@npm:1.1.4" + dependencies: + sparse-bitfield: ^3.0.3 + checksum: 208fd6f82136fd4332d0a6c667f8090b08f365dd7aa5880b8c485501caed7b058a99c231085c51ad7fa25f4a590d96c87af9a5b3fc0aea4de8c527657e33e548 languageName: node linkType: hard -"@protobufjs/codegen@npm:^2.0.4": - version: 2.0.4 - resolution: "@protobufjs/codegen@npm:2.0.4" - checksum: 59240c850b1d3d0b56d8f8098dd04787dcaec5c5bd8de186fa548de86b86076e1c50e80144b90335e705a044edf5bc8b0998548474c2a10a98c7e004a1547e4b +"@mongodb-js/saslprep@npm:^1.1.9": + version: 1.1.9 + resolution: "@mongodb-js/saslprep@npm:1.1.9" + dependencies: + sparse-bitfield: ^3.0.3 + checksum: 6f13983e41c9fbd5273eeae9135e47e5b7a19125a63287bea69e33a618f8e034cfcf2258c77d0f5d6dcf386dfe2bb520bc01613afd1528c52f82c71172629242 languageName: node linkType: hard -"@protobufjs/eventemitter@npm:^1.1.0": - version: 1.1.0 - resolution: "@protobufjs/eventemitter@npm:1.1.0" - checksum: 0369163a3d226851682f855f81413cbf166cd98f131edb94a0f67f79e75342d86e89df9d7a1df08ac28be2bc77e0a7f0200526bb6c2a407abbfee1f0262d5fd7 +"@mozilla/readability@npm:^0.4.4": + version: 0.4.4 + resolution: "@mozilla/readability@npm:0.4.4" + checksum: 24af169a7cf388c3b300d0beb2c4dc90e075730b926b0fde985dd07dc6940ec4ed754cdd80f76b843fa45141470db43080c5f97e60abed81b1e66cf68751672b languageName: node linkType: hard -"@protobufjs/fetch@npm:^1.1.0": - version: 1.1.0 - resolution: "@protobufjs/fetch@npm:1.1.0" +"@multiformats/dns@npm:^1.0.3": + version: 1.0.5 + resolution: "@multiformats/dns@npm:1.0.5" dependencies: - "@protobufjs/aspromise": ^1.1.1 - "@protobufjs/inquire": ^1.1.0 - checksum: 3fce7e09eb3f1171dd55a192066450f65324fd5f7cc01a431df01bb00d0a895e6bfb5b0c5561ce157ee1d886349c90703d10a4e11a1a256418ff591b969b3477 + "@types/dns-packet": ^5.6.5 + buffer: ^6.0.3 + dns-packet: ^5.6.1 + hashlru: ^2.3.0 + p-queue: ^8.0.1 + progress-events: ^1.0.0 + uint8arrays: ^5.0.2 + checksum: 59edb41fa9ed340ddf6b7cbcb2288543bf0e7089e6a15ad9409dcf11829d8c84a241ae0cb3f3291ff2f74d79a69719db5abf4370cc2aa1cc30f93e3171406ca4 languageName: node linkType: hard -"@protobufjs/float@npm:^1.0.2": - version: 1.0.2 - resolution: "@protobufjs/float@npm:1.0.2" - checksum: 5781e1241270b8bd1591d324ca9e3a3128d2f768077a446187a049e36505e91bc4156ed5ac3159c3ce3d2ba3743dbc757b051b2d723eea9cd367bfd54ab29b2f +"@multiformats/multiaddr@npm:^12.1.14": + version: 12.2.1 + resolution: "@multiformats/multiaddr@npm:12.2.1" + dependencies: + "@chainsafe/is-ip": ^2.0.1 + "@chainsafe/netmask": ^2.0.0 + "@libp2p/interface": ^1.0.0 + "@multiformats/dns": ^1.0.3 + multiformats: ^13.0.0 + uint8-varint: ^2.0.1 + uint8arrays: ^5.0.0 + checksum: 8d0e1e50c80f4baeb088001a37864987e1a0447783a3411c6f7bd678bd3818d1183563a36076a98f3ebbb8d3c81d4203a609dac510a2370c77e450430b44e5ec languageName: node linkType: hard -"@protobufjs/inquire@npm:^1.1.0": - version: 1.1.0 - resolution: "@protobufjs/inquire@npm:1.1.0" - checksum: ca06f02eaf65ca36fb7498fc3492b7fc087bfcc85c702bac5b86fad34b692bdce4990e0ef444c1e2aea8c034227bd1f0484be02810d5d7e931c55445555646f4 +"@neon-rs/load@npm:^0.0.4": + version: 0.0.4 + resolution: "@neon-rs/load@npm:0.0.4" + checksum: ceed42a681980f4c96152857f6846434e3a89e25cac14228604a55e7992e96af01f30629026a498341984b405a2687099e56256a9eded9fee5393facca1ef762 languageName: node linkType: hard -"@protobufjs/path@npm:^1.1.2": - version: 1.1.2 - resolution: "@protobufjs/path@npm:1.1.2" - checksum: 856eeb532b16a7aac071cacde5c5620df800db4c80cee6dbc56380524736205aae21e5ae47739114bf669ab5e8ba0e767a282ad894f3b5e124197cb9224445ee +"@neondatabase/serverless@npm:^0.9.1": + version: 0.9.1 + resolution: "@neondatabase/serverless@npm:0.9.1" + dependencies: + "@types/pg": 8.6.6 + checksum: b74b30386006d80d02d9d70bbfd7b25be4265ca731e6d716b7ee7801524489b10411969ef2ece03cc858e558c24ae32ecb11fa151bded1218f3dec0ffdd0e26d languageName: node linkType: hard -"@protobufjs/pool@npm:^1.1.0": - version: 1.1.0 - resolution: "@protobufjs/pool@npm:1.1.0" - checksum: d6a34fbbd24f729e2a10ee915b74e1d77d52214de626b921b2d77288bd8f2386808da2315080f2905761527cceffe7ec34c7647bd21a5ae41a25e8212ff79451 +"@neondatabase/serverless@npm:^0.9.3": + version: 0.9.5 + resolution: "@neondatabase/serverless@npm:0.9.5" + dependencies: + "@types/pg": 8.11.6 + checksum: b53c4b21c6eaf995a12bd84adf2c839022b7eb8b216cb07319a784a6f60965cf9ae497560a2aa767f5f8a407f1a45783f13b9f9e8f5c2078118a6a5ae174fdb2 languageName: node linkType: hard -"@protobufjs/utf8@npm:^1.1.0": - version: 1.1.0 - resolution: "@protobufjs/utf8@npm:1.1.0" - checksum: f9bf3163d13aaa3b6f5e6fbf37a116e094ea021c0e1f2a7ccd0e12a29e2ce08dafba4e8b36e13f8ed7397e1591610ce880ed1289af4d66cf4ace8a36a9557278 +"@next/env@npm:14.0.1": + version: 14.0.1 + resolution: "@next/env@npm:14.0.1" + checksum: 1fab6732f877c3702fce12396f16046f9b7a59c70b0d0b3db713995eed431706d12175530709d21c613682865ce82ef965a5719a43d6bc84142462a8ed558cda languageName: node linkType: hard -"@puppeteer/browsers@npm:2.3.0": - version: 2.3.0 - resolution: "@puppeteer/browsers@npm:2.3.0" +"@next/eslint-plugin-next@npm:14.0.1": + version: 14.0.1 + resolution: "@next/eslint-plugin-next@npm:14.0.1" dependencies: - debug: ^4.3.5 - extract-zip: ^2.0.1 - progress: ^2.0.3 - proxy-agent: ^6.4.0 - semver: ^7.6.3 - tar-fs: ^3.0.6 - unbzip2-stream: ^1.4.3 - yargs: ^17.7.2 - bin: - browsers: lib/cjs/main-cli.js - checksum: dbfae1f0a3cb5ee07711eb0247d5f61039989094858989cede3f86bfef59224c72df17a1b898266e5ba7c6a7032ab647c59ad3df8f76771ef65d8974a3f93f19 + glob: 7.1.7 + checksum: 2bb3cd1035414a1cf645772297224bf50cb81947c2aae8a8c0caee20f2b8f1931dab0f16c0dabfb08eb61a247a0006b57d98dd81ae02558470808f1e22fa7665 languageName: node linkType: hard -"@qdrant/js-client-rest@npm:^1.8.2, @qdrant/js-client-rest@npm:^1.9.0": - version: 1.9.0 - resolution: "@qdrant/js-client-rest@npm:1.9.0" - dependencies: - "@qdrant/openapi-typescript-fetch": 1.2.6 - "@sevinf/maybe": 0.5.0 - undici: ~5.28.4 - peerDependencies: - typescript: ">=4.7" - checksum: 3ac6526a961f85e96eaa0cd17059cafcca208c7aaa6df96fa99caab75c53c79903eafa611be99b52732970f4bef65d93922537916194fe0b9edf0f256e42fa9a +"@next/swc-darwin-arm64@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-darwin-arm64@npm:14.0.1" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@qdrant/openapi-typescript-fetch@npm:1.2.6": - version: 1.2.6 - resolution: "@qdrant/openapi-typescript-fetch@npm:1.2.6" - checksum: 038c26b64da656ec6c16a92c2d90ad13bb154312ea0442f49c476d31ba66e7ac43344dcc3e580980c0bfba9ad37266f4341c254fb648197f92872e694b9205d7 +"@next/swc-darwin-x64@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-darwin-x64@npm:14.0.1" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@raycast/api@npm:^1.83.1": - version: 1.83.1 - resolution: "@raycast/api@npm:1.83.1" - dependencies: - "@types/node": ^20.8.10 - "@types/react": ^18.3.3 - react: 18.3.1 - peerDependencies: - "@types/node": 20.8.10 - "@types/react": 18.3.3 - react-devtools: 5.2.0 - peerDependenciesMeta: - "@types/node": - optional: true - "@types/react": - optional: true - react-devtools: - optional: true - bin: - ray: bin/ray - checksum: 166ee04610ea90c327da9ea898fec474cd14b9b83e2205447b979edd4d6e36682e6b0121c238a8380439a932e5d6654b63e2afb17ea408c85fe8066f1a8e3070 +"@next/swc-linux-arm64-gnu@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-linux-arm64-gnu@npm:14.0.1" + conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@redis/bloom@npm:1.2.0": - version: 1.2.0 - resolution: "@redis/bloom@npm:1.2.0" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: 8c214227287d6b278109098bca00afc601cf84f7da9c6c24f4fa7d3854b946170e5893aa86ed607ba017a4198231d570541c79931b98b6d50b262971022d1d6c +"@next/swc-linux-arm64-musl@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-linux-arm64-musl@npm:14.0.1" + conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@redis/client@npm:1.5.14": - version: 1.5.14 - resolution: "@redis/client@npm:1.5.14" - dependencies: - cluster-key-slot: 1.1.2 - generic-pool: 3.9.0 - yallist: 4.0.0 - checksum: f401997c6df92055c1a59385ed2fed7ee9295860f39935821107ea2570f76168dd1b25b71a3b37b9bbfaba26a9d18080d6bcd101a4bfc3852f72cc20576c6e7d +"@next/swc-linux-x64-gnu@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-linux-x64-gnu@npm:14.0.1" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@redis/client@npm:1.5.7": - version: 1.5.7 - resolution: "@redis/client@npm:1.5.7" - dependencies: - cluster-key-slot: 1.1.2 - generic-pool: 3.9.0 - yallist: 4.0.0 - checksum: 3ded14d947b1aba9121fb2608c99960d89716b1ef9baf48ef68384a30fc8e2fe2f1be7a959247d81e7ce15a38ea9e3fce512f3fdce5a400da88dc96496b09e89 +"@next/swc-linux-x64-musl@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-linux-x64-musl@npm:14.0.1" + conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@redis/graph@npm:1.1.0": - version: 1.1.0 - resolution: "@redis/graph@npm:1.1.0" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: d3df807108a42929ed65269c691fe6ab7eda55de91318f02a22b2d637c1bfef8817fccd17025904f5a0be8cf1cea5941334ec9f10719336da5d8f1c54cd4997e +"@next/swc-win32-arm64-msvc@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-win32-arm64-msvc@npm:14.0.1" + conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@redis/graph@npm:1.1.1": - version: 1.1.1 - resolution: "@redis/graph@npm:1.1.1" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: caf9b9a3ff82a08ae543c356a3fed548399ae79aba5ed08ce6cf1b522b955eb5cee4406b0ed0c6899345f8fbc06dfd6cd51304ae8422c3ebbc468f53294dc509 +"@next/swc-win32-ia32-msvc@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-win32-ia32-msvc@npm:14.0.1" + conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@redis/json@npm:1.0.4": - version: 1.0.4 - resolution: "@redis/json@npm:1.0.4" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: de07f9c37abed603dec352593eb69fc8a94475e7f86b4f65b9805394492d448a1e4181db74269d80eb9dba6f3ae8a41804204821db36bb801cd7c1e30ac7ec80 +"@next/swc-win32-x64-msvc@npm:14.0.1": + version: 14.0.1 + resolution: "@next/swc-win32-x64-msvc@npm:14.0.1" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@redis/json@npm:1.0.6": - version: 1.0.6 - resolution: "@redis/json@npm:1.0.6" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: 9fda29abc339c72593f34a23f8023b715c1f8f3d73f7c59889af02f25589bac2ad57073ad08d0b8da42cd8c258665a7b38d39e761e92945cc27aca651c8a93a5 +"@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1": + version: 5.1.1-v1 + resolution: "@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1" + dependencies: + eslint-scope: 5.1.1 + checksum: f2e3b2d6a6e2d9f163ca22105910c9f850dc4897af0aea3ef0a5886b63d8e1ba6505b71c99cb78a3bba24a09557d601eb21c8dede3f3213753fcfef364eb0e57 languageName: node linkType: hard -"@redis/search@npm:1.1.2": - version: 1.1.2 - resolution: "@redis/search@npm:1.1.2" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: fc3c0bd62c150ea7f8b3f08b0e67893b4e8df71b4820d750de6ba00ccff3720fdc5d4f50618e385c9e183c784635185e2e98a3e6c3d20ac30f2c60996f38b992 +"@node-llama-cpp/linux-arm64@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/linux-arm64@npm:3.1.1" + conditions: os=linux & (cpu=arm64 | cpu=x64) & libc=glibc languageName: node linkType: hard -"@redis/search@npm:1.1.6": - version: 1.1.6 - resolution: "@redis/search@npm:1.1.6" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: 0d87e6a9e40e62e46064ccfccca9a5ba7ce608890740415008acb1e83a02690edf37ac1ee878bcc0702d30a2eeba7776e7b467b71f87d8e7b278f38637161e16 +"@node-llama-cpp/linux-armv7l@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/linux-armv7l@npm:3.1.1" + conditions: os=linux & (cpu=arm | cpu=x64) & libc=glibc languageName: node linkType: hard -"@redis/time-series@npm:1.0.4": - version: 1.0.4 - resolution: "@redis/time-series@npm:1.0.4" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: a5fca079deb04a2f204a7f9a375a6ff698a119d5dd53f7581fa8fd9e3bacacf1ecb0253b97fada484a012fea7a98014bc0f4f79707d4e92ff61c00318f2bfe04 +"@node-llama-cpp/linux-x64-cuda@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/linux-x64-cuda@npm:3.1.1" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@redis/time-series@npm:1.0.5": - version: 1.0.5 - resolution: "@redis/time-series@npm:1.0.5" - peerDependencies: - "@redis/client": ^1.0.0 - checksum: 6bbdb0b793dcbd13518aa60a09a980f953554e4c745bfacc1611baa8098f360e0378e8ee6b7faf600a67f1de83f4b68bbec6f95a0740faee6164c14be3a30752 +"@node-llama-cpp/linux-x64-vulkan@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/linux-x64-vulkan@npm:3.1.1" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@reflink/reflink-darwin-arm64@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-darwin-arm64@npm:0.1.16" - conditions: os=darwin & cpu=arm64 +"@node-llama-cpp/linux-x64@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/linux-x64@npm:3.1.1" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@reflink/reflink-darwin-x64@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-darwin-x64@npm:0.1.16" - conditions: os=darwin & cpu=x64 +"@node-llama-cpp/mac-arm64-metal@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/mac-arm64-metal@npm:3.1.1" + conditions: os=darwin & (cpu=arm64 | cpu=x64) languageName: node linkType: hard -"@reflink/reflink-linux-arm64-gnu@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-linux-arm64-gnu@npm:0.1.16" - conditions: os=linux & cpu=arm64 & libc=glibc +"@node-llama-cpp/mac-x64@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/mac-x64@npm:3.1.1" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@reflink/reflink-linux-arm64-musl@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-linux-arm64-musl@npm:0.1.16" - conditions: os=linux & cpu=arm64 & libc=musl +"@node-llama-cpp/win-arm64@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/win-arm64@npm:3.1.1" + conditions: os=win32 & (cpu=arm64 | cpu=x64) languageName: node linkType: hard -"@reflink/reflink-linux-x64-gnu@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-linux-x64-gnu@npm:0.1.16" - conditions: os=linux & cpu=x64 & libc=glibc +"@node-llama-cpp/win-x64-cuda@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/win-x64-cuda@npm:3.1.1" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@reflink/reflink-linux-x64-musl@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-linux-x64-musl@npm:0.1.16" - conditions: os=linux & cpu=x64 & libc=musl +"@node-llama-cpp/win-x64-vulkan@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/win-x64-vulkan@npm:3.1.1" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@reflink/reflink-win32-arm64-msvc@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-win32-arm64-msvc@npm:0.1.16" - conditions: os=win32 & cpu=arm64 +"@node-llama-cpp/win-x64@npm:3.1.1": + version: 3.1.1 + resolution: "@node-llama-cpp/win-x64@npm:3.1.1" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@reflink/reflink-win32-x64-msvc@npm:0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink-win32-x64-msvc@npm:0.1.16" - conditions: os=win32 & cpu=x64 +"@nodelib/fs.scandir@npm:2.1.5": + version: 2.1.5 + resolution: "@nodelib/fs.scandir@npm:2.1.5" + dependencies: + "@nodelib/fs.stat": 2.0.5 + run-parallel: ^1.1.9 + checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59 languageName: node linkType: hard -"@reflink/reflink@npm:^0.1.16": - version: 0.1.16 - resolution: "@reflink/reflink@npm:0.1.16" - dependencies: - "@reflink/reflink-darwin-arm64": 0.1.16 - "@reflink/reflink-darwin-x64": 0.1.16 - "@reflink/reflink-linux-arm64-gnu": 0.1.16 - "@reflink/reflink-linux-arm64-musl": 0.1.16 - "@reflink/reflink-linux-x64-gnu": 0.1.16 - "@reflink/reflink-linux-x64-musl": 0.1.16 - "@reflink/reflink-win32-arm64-msvc": 0.1.16 - "@reflink/reflink-win32-x64-msvc": 0.1.16 - dependenciesMeta: - "@reflink/reflink-darwin-arm64": - optional: true - "@reflink/reflink-darwin-x64": - optional: true - "@reflink/reflink-linux-arm64-gnu": - optional: true - "@reflink/reflink-linux-arm64-musl": - optional: true - "@reflink/reflink-linux-x64-gnu": - optional: true - "@reflink/reflink-linux-x64-musl": - optional: true - "@reflink/reflink-win32-arm64-msvc": - optional: true - "@reflink/reflink-win32-x64-msvc": - optional: true - checksum: dcc35c4a63d79a5126c5405d6e034e022c6639372486ed98ab93c1d5dd5620660adedf8f075356f9f7fbb15719b646765404d859cc188b5d124fa16b90bcf750 +"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2": + version: 2.0.5 + resolution: "@nodelib/fs.stat@npm:2.0.5" + checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0 languageName: node linkType: hard -"@rockset/client@npm:^0.9.1": - version: 0.9.1 - resolution: "@rockset/client@npm:0.9.1" +"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8": + version: 1.2.8 + resolution: "@nodelib/fs.walk@npm:1.2.8" dependencies: - "@types/node-fetch": ^2.5.3 - fetch-ponyfill: ^7.1.0 - node-fetch: ^2.6.7 - url: ^0.11.0 - checksum: eed056b229d47ba0de4e092c1157061c0602ae62f9a650a8a089a1977a86f40a9465d8286ca5fc7075d315f0444d60ea13d39e39934373472e7dc9c72f6375fc + "@nodelib/fs.scandir": 2.1.5 + fastq: ^1.6.0 + checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53 languageName: node linkType: hard -"@rollup/plugin-inject@npm:^5.0.5": - version: 5.0.5 - resolution: "@rollup/plugin-inject@npm:5.0.5" +"@nomic-ai/atlas@npm:^0.8.0": + version: 0.8.0 + resolution: "@nomic-ai/atlas@npm:0.8.0" dependencies: - "@rollup/pluginutils": ^5.0.1 - estree-walker: ^2.0.2 - magic-string: ^0.30.3 - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - checksum: 22cb772fd6f7178308b2ece95cdde5f8615f6257197832166294552a7e4c0d3976dc996cbfa6470af3151d8b86c00091aa93da5f4db6ec563f11b6db29fd1b63 + apache-arrow: ^12.0.1 + dotenv: ^16.0.3 + js-yaml: ^4.1.0 + ts-md5: ^1.3.1 + checksum: 19538f84a5dd9021870125879772e37925c730b75cb1716d619b8c014542503e93f843c04a32c1cab84dedd2ba797c108258453bb949b4bef0d7586290fb1337 languageName: node linkType: hard -"@rollup/plugin-json@npm:^6.1.0": - version: 6.1.0 - resolution: "@rollup/plugin-json@npm:6.1.0" +"@notionhq/client@npm:^2.2.10": + version: 2.2.10 + resolution: "@notionhq/client@npm:2.2.10" dependencies: - "@rollup/pluginutils": ^5.1.0 - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - checksum: cc018d20c80242a2b8b44fae61a968049cf31bb8406218187cc7cda35747616594e79452dd65722e7da6dd825b392e90d4599d43cd4461a02fefa2865945164e + "@types/node-fetch": ^2.5.10 + node-fetch: ^2.6.1 + checksum: ce723de8d13898318af1fa375628b5c48904b2c3eaa5483d8995bd18c6c592f033014546b45e7bb54190ea31dc2b3fbd73ffce20917778a62d6e41a7b9fcc91f languageName: node linkType: hard -"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.1.0": - version: 5.1.0 - resolution: "@rollup/pluginutils@npm:5.1.0" +"@npmcli/agent@npm:^2.0.0": + version: 2.2.2 + resolution: "@npmcli/agent@npm:2.2.2" dependencies: - "@types/estree": ^1.0.0 - estree-walker: ^2.0.2 - picomatch: ^2.3.1 - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - checksum: 3cc5a6d91452a6eabbfd1ae79b4dd1f1e809d2eecda6e175deb784e75b0911f47e9ecce73f8dd315d6a8b3f362582c91d3c0f66908b6ced69345b3cbe28f8ce8 + agent-base: ^7.1.0 + http-proxy-agent: ^7.0.0 + https-proxy-agent: ^7.0.1 + lru-cache: ^10.0.1 + socks-proxy-agent: ^8.0.3 + checksum: 67de7b88cc627a79743c88bab35e023e23daf13831a8aa4e15f998b92f5507b644d8ffc3788afc8e64423c612e0785a6a92b74782ce368f49a6746084b50d874 languageName: node linkType: hard -"@rollup/rollup-android-arm-eabi@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-android-arm-eabi@npm:4.8.0" - conditions: os=android & cpu=arm +"@npmcli/fs@npm:^1.0.0": + version: 1.1.1 + resolution: "@npmcli/fs@npm:1.1.1" + dependencies: + "@gar/promisify": ^1.0.1 + semver: ^7.3.5 + checksum: f5ad92f157ed222e4e31c352333d0901df02c7c04311e42a81d8eb555d4ec4276ea9c635011757de20cc476755af33e91622838de573b17e52e2e7703f0a9965 languageName: node linkType: hard -"@rollup/rollup-android-arm64@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-android-arm64@npm:4.8.0" - conditions: os=android & cpu=arm64 +"@npmcli/fs@npm:^3.1.0": + version: 3.1.0 + resolution: "@npmcli/fs@npm:3.1.0" + dependencies: + semver: ^7.3.5 + checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e languageName: node linkType: hard -"@rollup/rollup-darwin-arm64@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-darwin-arm64@npm:4.8.0" - conditions: os=darwin & cpu=arm64 +"@npmcli/move-file@npm:^1.0.1": + version: 1.1.2 + resolution: "@npmcli/move-file@npm:1.1.2" + dependencies: + mkdirp: ^1.0.4 + rimraf: ^3.0.2 + checksum: c96381d4a37448ea280951e46233f7e541058cf57a57d4094dd4bdcaae43fa5872b5f2eb6bfb004591a68e29c5877abe3cdc210cb3588cbf20ab2877f31a7de7 languageName: node linkType: hard -"@rollup/rollup-darwin-x64@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-darwin-x64@npm:4.8.0" - conditions: os=darwin & cpu=x64 +"@octokit/app@npm:^15.0.0": + version: 15.1.0 + resolution: "@octokit/app@npm:15.1.0" + dependencies: + "@octokit/auth-app": ^7.0.0 + "@octokit/auth-unauthenticated": ^6.0.0 + "@octokit/core": ^6.1.2 + "@octokit/oauth-app": ^7.0.0 + "@octokit/plugin-paginate-rest": ^11.0.0 + "@octokit/types": ^13.0.0 + "@octokit/webhooks": ^13.0.0 + checksum: 133c1b55646c85161f5fe09266aecdb877da298fe88daa0cc0b517dd45233f07462cfd4df2dc4a77452cdf4a7551bed9e8a36f2e172928519a9a2575e77aa7ad languageName: node linkType: hard -"@rollup/rollup-linux-arm-gnueabihf@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.8.0" - conditions: os=linux & cpu=arm +"@octokit/auth-app@npm:^7.0.0": + version: 7.1.1 + resolution: "@octokit/auth-app@npm:7.1.1" + dependencies: + "@octokit/auth-oauth-app": ^8.1.0 + "@octokit/auth-oauth-user": ^5.1.0 + "@octokit/request": ^9.1.1 + "@octokit/request-error": ^6.1.1 + "@octokit/types": ^13.4.1 + lru-cache: ^10.0.0 + universal-github-app-jwt: ^2.2.0 + universal-user-agent: ^7.0.0 + checksum: 2cad1a5eef4e458caacb16271284743c7c1d9b34a2617f6b17135b3910ddb33efe16e6a6b5b36407f1b0065324f7b7b1bfa7c2f7d338f6c59f312762e0c57a5c languageName: node linkType: hard -"@rollup/rollup-linux-arm64-gnu@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.8.0" - conditions: os=linux & cpu=arm64 & libc=glibc +"@octokit/auth-oauth-app@npm:^8.0.0, @octokit/auth-oauth-app@npm:^8.1.0": + version: 8.1.1 + resolution: "@octokit/auth-oauth-app@npm:8.1.1" + dependencies: + "@octokit/auth-oauth-device": ^7.0.0 + "@octokit/auth-oauth-user": ^5.0.1 + "@octokit/request": ^9.0.0 + "@octokit/types": ^13.0.0 + universal-user-agent: ^7.0.0 + checksum: e61160a6cc6aefff7b8cb3c73c2fc26e327308800b85bf6bfcfb39009ee2cb813bc2034ce3ea29b240aca920515b2199466cf842bbef4905c5da7796aa813eb4 languageName: node linkType: hard -"@rollup/rollup-linux-arm64-musl@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-linux-arm64-musl@npm:4.8.0" - conditions: os=linux & cpu=arm64 & libc=musl +"@octokit/auth-oauth-device@npm:^7.0.0, @octokit/auth-oauth-device@npm:^7.0.1": + version: 7.1.1 + resolution: "@octokit/auth-oauth-device@npm:7.1.1" + dependencies: + "@octokit/oauth-methods": ^5.0.0 + "@octokit/request": ^9.0.0 + "@octokit/types": ^13.0.0 + universal-user-agent: ^7.0.0 + checksum: 5338ae5a5ca1d03c03c3ceba21635b6e2d8d8fe9c1f9f746651ebea5a130e65388e418e730eefb394bbceba092b712181ce9a603eec761f4c8fd6f8790d7cd45 languageName: node linkType: hard -"@rollup/rollup-linux-riscv64-gnu@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.8.0" - conditions: os=linux & cpu=riscv64 & libc=glibc +"@octokit/auth-oauth-user@npm:^5.0.1, @octokit/auth-oauth-user@npm:^5.1.0": + version: 5.1.1 + resolution: "@octokit/auth-oauth-user@npm:5.1.1" + dependencies: + "@octokit/auth-oauth-device": ^7.0.1 + "@octokit/oauth-methods": ^5.0.0 + "@octokit/request": ^9.0.1 + "@octokit/types": ^13.0.0 + universal-user-agent: ^7.0.0 + checksum: fe2b2ec3f50a565efb37254c78be499d8fc1cf4d565f869b957037103296589c48c69cab26a0549311ed50b698dc9ae1fef5cc9a0cda2a11a519b053c30cb7fc languageName: node linkType: hard -"@rollup/rollup-linux-x64-gnu@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-linux-x64-gnu@npm:4.8.0" - conditions: os=linux & cpu=x64 & libc=glibc +"@octokit/auth-token@npm:^3.0.0": + version: 3.0.4 + resolution: "@octokit/auth-token@npm:3.0.4" + checksum: 42f533a873d4192e6df406b3176141c1f95287423ebdc4cf23a38bb77ee00ccbc0e60e3fbd5874234fc2ed2e67bbc6035e3b0561dacc1d078adb5c4ced3579e3 languageName: node linkType: hard -"@rollup/rollup-linux-x64-musl@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-linux-x64-musl@npm:4.8.0" - conditions: os=linux & cpu=x64 & libc=musl +"@octokit/auth-token@npm:^4.0.0": + version: 4.0.0 + resolution: "@octokit/auth-token@npm:4.0.0" + checksum: d78f4dc48b214d374aeb39caec4fdbf5c1e4fd8b9fcb18f630b1fe2cbd5a880fca05445f32b4561f41262cb551746aeb0b49e89c95c6dd99299706684d0cae2f languageName: node linkType: hard -"@rollup/rollup-win32-arm64-msvc@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.8.0" - conditions: os=win32 & cpu=arm64 +"@octokit/auth-token@npm:^5.0.0": + version: 5.1.1 + resolution: "@octokit/auth-token@npm:5.1.1" + checksum: b39516dda44aeced0326227c53aade621effe1d59c4b0f48ebe2b9fd32b5156e02705bcb2fb1bf48b11f26cc6aff1a0683c32c3d5424e0118dae6596e431d489 languageName: node linkType: hard -"@rollup/rollup-win32-ia32-msvc@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.8.0" - conditions: os=win32 & cpu=ia32 +"@octokit/auth-unauthenticated@npm:^6.0.0, @octokit/auth-unauthenticated@npm:^6.0.0-beta.1": + version: 6.1.0 + resolution: "@octokit/auth-unauthenticated@npm:6.1.0" + dependencies: + "@octokit/request-error": ^6.0.1 + "@octokit/types": ^13.0.0 + checksum: 0f8929cbca7fa34f2a4ebcdf92da7a0b5a4a2de7a5dd695b4308a827018db6cfa311e84fe326c19a0b8e66080aa152fa066ae434190e5a63eadbb1449b1d7105 languageName: node linkType: hard -"@rollup/rollup-win32-x64-msvc@npm:4.8.0": - version: 4.8.0 - resolution: "@rollup/rollup-win32-x64-msvc@npm:4.8.0" - conditions: os=win32 & cpu=x64 +"@octokit/core@npm:^4.2.1": + version: 4.2.4 + resolution: "@octokit/core@npm:4.2.4" + dependencies: + "@octokit/auth-token": ^3.0.0 + "@octokit/graphql": ^5.0.0 + "@octokit/request": ^6.0.0 + "@octokit/request-error": ^3.0.0 + "@octokit/types": ^9.0.0 + before-after-hook: ^2.2.0 + universal-user-agent: ^6.0.0 + checksum: ac8ab47440a31b0228a034aacac6994b64d6b073ad5b688b4c5157fc5ee0d1af1c926e6087bf17fd7244ee9c5998839da89065a90819bde4a97cb77d4edf58a6 languageName: node linkType: hard -"@rollup/wasm-node@npm:^4.19.0": - version: 4.19.0 - resolution: "@rollup/wasm-node@npm:4.19.0" +"@octokit/core@npm:^5.0.2": + version: 5.2.0 + resolution: "@octokit/core@npm:5.2.0" dependencies: - "@types/estree": 1.0.5 - fsevents: ~2.3.2 - dependenciesMeta: - fsevents: - optional: true - bin: - rollup: dist/bin/rollup - checksum: c84a1e35296b95a80d9b587d8632ddb518083213548caf1292a782794a7439921d224deaa99a7f14cede99ce15a60d03ab6c7b2e4f41c5746002c521dbcba555 + "@octokit/auth-token": ^4.0.0 + "@octokit/graphql": ^7.1.0 + "@octokit/request": ^8.3.1 + "@octokit/request-error": ^5.1.0 + "@octokit/types": ^13.0.0 + before-after-hook: ^2.2.0 + universal-user-agent: ^6.0.0 + checksum: 57d5f02b759b569323dcb76cc72bf94ea7d0de58638c118ee14ec3e37d303c505893137dd72918328794844f35c74b3cd16999319c4b40d410a310d44a9b7566 languageName: node linkType: hard -"@rushstack/eslint-patch@npm:^1.3.3": - version: 1.5.1 - resolution: "@rushstack/eslint-patch@npm:1.5.1" - checksum: e4c25322312dbaa29e835a7ab4fbac53c8731dd0da65e46646e38945e296429e7fb91c2ef3da5af5d5938d44b0cde1d5290438ebb3dcb015e02b80b5e2530d24 +"@octokit/core@npm:^6.0.0, @octokit/core@npm:^6.1.2": + version: 6.1.2 + resolution: "@octokit/core@npm:6.1.2" + dependencies: + "@octokit/auth-token": ^5.0.0 + "@octokit/graphql": ^8.0.0 + "@octokit/request": ^9.0.0 + "@octokit/request-error": ^6.0.1 + "@octokit/types": ^13.0.0 + before-after-hook: ^3.0.2 + universal-user-agent: ^7.0.0 + checksum: e794fb11b3942f55033f4cf6c0914953fd974587309498e8709c428660fa5c098334d83af5e41457dbe67d92d70a8b559c6cc00457d6c95290fa6c9e1d4bfc42 languageName: node linkType: hard -"@sapphire/async-queue@npm:^1.5.0": - version: 1.5.0 - resolution: "@sapphire/async-queue@npm:1.5.0" - checksum: 983dbd1fd1b1798496e5edb6a0db7e4d90015160e1028f20475eab0a92625513f1e8d938bc0305811a9cec461c94e01b1e4191615ff03ba49356f568f3255250 +"@octokit/endpoint@npm:^10.0.0": + version: 10.1.1 + resolution: "@octokit/endpoint@npm:10.1.1" + dependencies: + "@octokit/types": ^13.0.0 + universal-user-agent: ^7.0.2 + checksum: fde158f40dc9a88e92a8ac1d347a54599aa5715ec24045be9cb8ff8decb3c17b63c91eca1bab12dfe0e0cd37433127dd05cd05db14a719dca749bc56093aa915 languageName: node linkType: hard -"@sapphire/shapeshift@npm:^3.9.3": - version: 3.9.3 - resolution: "@sapphire/shapeshift@npm:3.9.3" +"@octokit/endpoint@npm:^7.0.0": + version: 7.0.6 + resolution: "@octokit/endpoint@npm:7.0.6" dependencies: - fast-deep-equal: ^3.1.3 - lodash: ^4.17.21 - checksum: f93ab924566dc20a066776128eeb3693b97a1576a359b61d396835541f2bf8ecb3f482ff406cc038a3a4bc266d5f9b9f9e1c733ddbf1cce2c97c729ce047b5e6 + "@octokit/types": ^9.0.0 + is-plain-object: ^5.0.0 + universal-user-agent: ^6.0.0 + checksum: 7caebf30ceec50eb7f253341ed419df355232f03d4638a95c178ee96620400db7e4a5e15d89773fe14db19b8653d4ab4cc81b2e93ca0c760b4e0f7eb7ad80301 languageName: node linkType: hard -"@sapphire/snowflake@npm:3.5.1, @sapphire/snowflake@npm:^3.5.1": - version: 3.5.1 - resolution: "@sapphire/snowflake@npm:3.5.1" - checksum: 8fc025020adab1a7a1a5d2cf07704d598cc1977b50e5fcd3a5dd239f00934dc936d3a4d5ae336e71d8bf1d88ec27aa814b34de79e38ff097b7b9ba5a7977a683 +"@octokit/endpoint@npm:^9.0.1": + version: 9.0.5 + resolution: "@octokit/endpoint@npm:9.0.5" + dependencies: + "@octokit/types": ^13.1.0 + universal-user-agent: ^6.0.0 + checksum: d5cc2df9bd4603844c163eea05eec89c677cfe699c6f065fe86b83123e34554ec16d429e8142dec1e2b4cf56591ef0ce5b1763f250c87bc8e7bf6c74ba59ae82 languageName: node linkType: hard -"@selderee/plugin-htmlparser2@npm:^0.11.0": - version: 0.11.0 - resolution: "@selderee/plugin-htmlparser2@npm:0.11.0" +"@octokit/graphql@npm:^5.0.0": + version: 5.0.6 + resolution: "@octokit/graphql@npm:5.0.6" dependencies: - domhandler: ^5.0.3 - selderee: ^0.11.0 - checksum: 6deafedd153e492359f8f0407d20903d82f2ef4950e420f4b2ee6ffbb955753524631aac7d6a5fe61dc7c7893e6928b4d8409e886157ad64a60ab37bc08b17c4 + "@octokit/request": ^6.0.0 + "@octokit/types": ^9.0.0 + universal-user-agent: ^6.0.0 + checksum: 7be545d348ef31dcab0a2478dd64d5746419a2f82f61459c774602bcf8a9b577989c18001f50b03f5f61a3d9e34203bdc021a4e4d75ff2d981e8c9c09cf8a65c languageName: node linkType: hard -"@sevinf/maybe@npm:0.5.0": - version: 0.5.0 - resolution: "@sevinf/maybe@npm:0.5.0" - checksum: 406151dde7af0e05c51f2650eb0ccff429afe776f88e7c3cecb72197f28eb96f906eacace17d780052ce5aa6d2cd4b04a045a5ffabe3364ad6cdb9dfe42af3eb +"@octokit/graphql@npm:^7.1.0": + version: 7.1.0 + resolution: "@octokit/graphql@npm:7.1.0" + dependencies: + "@octokit/request": ^8.3.0 + "@octokit/types": ^13.0.0 + universal-user-agent: ^6.0.0 + checksum: 7b2706796e0269fc033ed149ea211117bcacf53115fd142c1eeafc06ebc5b6290e4e48c03d6276c210d72e3695e8598f83caac556cd00714fc1f8e4707d77448 languageName: node linkType: hard -"@shikijs/core@npm:1.10.1": - version: 1.10.1 - resolution: "@shikijs/core@npm:1.10.1" - checksum: b2aa039c05b46347d169118c6fe6ec3390ad70f1dc74e1ec46210c1caf4540976ca0d23a7d5c2a0114dff862b3bae5f6c215f95c052f4395d4cc6f96d194b8e9 +"@octokit/graphql@npm:^8.0.0": + version: 8.1.1 + resolution: "@octokit/graphql@npm:8.1.1" + dependencies: + "@octokit/request": ^9.0.0 + "@octokit/types": ^13.0.0 + universal-user-agent: ^7.0.0 + checksum: 07239666b0ca38a7d8c581570b544ee9fd1a2616c8dd436af31879662b3345c44ed52e3d7b311840a1c5772a23f02caf7585aca56f36e50f38f0207a87577a9c languageName: node linkType: hard -"@sideway/address@npm:^4.1.3": - version: 4.1.4 - resolution: "@sideway/address@npm:4.1.4" +"@octokit/oauth-app@npm:^7.0.0": + version: 7.1.3 + resolution: "@octokit/oauth-app@npm:7.1.3" dependencies: - "@hapi/hoek": ^9.0.0 - checksum: b9fca2a93ac2c975ba12e0a6d97853832fb1f4fb02393015e012b47fa916a75ca95102d77214b2a29a2784740df2407951af8c5dde054824c65577fd293c4cdb + "@octokit/auth-oauth-app": ^8.0.0 + "@octokit/auth-oauth-user": ^5.0.1 + "@octokit/auth-unauthenticated": ^6.0.0-beta.1 + "@octokit/core": ^6.0.0 + "@octokit/oauth-authorization-url": ^7.0.0 + "@octokit/oauth-methods": ^5.0.0 + "@types/aws-lambda": ^8.10.83 + universal-user-agent: ^7.0.0 + checksum: 13582d8d6e2ec1be144b5ec2c559d93de2cafcdfebde5e17c2d87906148c66edf00e8fb99c06852c8f4e51c6bbccd4a053b60796eadd848703389c0418eaa7fd languageName: node linkType: hard -"@sideway/formula@npm:^3.0.1": - version: 3.0.1 - resolution: "@sideway/formula@npm:3.0.1" - checksum: e4beeebc9dbe2ff4ef0def15cec0165e00d1612e3d7cea0bc9ce5175c3263fc2c818b679bd558957f49400ee7be9d4e5ac90487e1625b4932e15c4aa7919c57a +"@octokit/oauth-authorization-url@npm:^7.0.0": + version: 7.1.1 + resolution: "@octokit/oauth-authorization-url@npm:7.1.1" + checksum: 02ad29fa4540c6b4b3a1e9f6936d40057174be91e9c7cad1afcd09d027fa2a50598dad5857699d1be25568bf70d86123dc9cd3874afe044ce6791e6805e97542 languageName: node linkType: hard -"@sideway/pinpoint@npm:^2.0.0": - version: 2.0.0 - resolution: "@sideway/pinpoint@npm:2.0.0" - checksum: 0f4491e5897fcf5bf02c46f5c359c56a314e90ba243f42f0c100437935daa2488f20482f0f77186bd6bf43345095a95d8143ecf8b1f4d876a7bc0806aba9c3d2 +"@octokit/oauth-methods@npm:^5.0.0": + version: 5.1.2 + resolution: "@octokit/oauth-methods@npm:5.1.2" + dependencies: + "@octokit/oauth-authorization-url": ^7.0.0 + "@octokit/request": ^9.1.0 + "@octokit/request-error": ^6.1.0 + "@octokit/types": ^13.0.0 + checksum: 64317d0fae0f2383ef0194bab7ed6521a1e2d698f2f0730b22dd4ffa2f103541be6e5ef4380e073d8086008ad5d311a66901e0cc6bc0f57b66dc64db6ed79922 languageName: node linkType: hard -"@sinclair/typebox@npm:^0.25.16": - version: 0.25.24 - resolution: "@sinclair/typebox@npm:0.25.24" - checksum: 10219c58f40b8414c50b483b0550445e9710d4fe7b2c4dccb9b66533dd90ba8e024acc776026cebe81e87f06fa24b07fdd7bc30dd277eb9cc386ec50151a3026 +"@octokit/openapi-types@npm:^18.0.0": + version: 18.0.0 + resolution: "@octokit/openapi-types@npm:18.0.0" + checksum: d487d6c6c1965e583eee417d567e4fe3357a98953fc49bce1a88487e7908e9b5dbb3e98f60dfa340e23b1792725fbc006295aea071c5667a813b9c098185b56f languageName: node linkType: hard -"@sinclair/typebox@npm:^0.27.8": - version: 0.27.8 - resolution: "@sinclair/typebox@npm:0.27.8" - checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 +"@octokit/openapi-types@npm:^22.2.0": + version: 22.2.0 + resolution: "@octokit/openapi-types@npm:22.2.0" + checksum: eca41feac2b83298e0d95e253ac1c5b6d65155ac57f65c5fd8d4a485d9728922d85ff4bee0e815a1f3a5421311db092bdb6da9d6104a1b1843d8b274bcad9630 languageName: node linkType: hard -"@sindresorhus/is@npm:^0.14.0": - version: 0.14.0 - resolution: "@sindresorhus/is@npm:0.14.0" - checksum: 971e0441dd44ba3909b467219a5e242da0fc584048db5324cfb8048148fa8dcc9d44d71e3948972c4f6121d24e5da402ef191420d1266a95f713bb6d6e59c98a +"@octokit/openapi-webhooks-types@npm:8.3.0": + version: 8.3.0 + resolution: "@octokit/openapi-webhooks-types@npm:8.3.0" + checksum: bc97f53a93ed11a65ccf06cc67d4fcd9987112fbedd62335bf55debe475fedffe45c100e9fd2df98833c5da7b5a2391c75e22d70354f3f6790f8c87213325b42 languageName: node linkType: hard -"@sindresorhus/is@npm:^4.2.0": - version: 4.6.0 - resolution: "@sindresorhus/is@npm:4.6.0" - checksum: 83839f13da2c29d55c97abc3bc2c55b250d33a0447554997a85c539e058e57b8da092da396e252b11ec24a0279a0bed1f537fa26302209327060643e327f81d2 +"@octokit/plugin-paginate-graphql@npm:^5.0.0": + version: 5.2.4 + resolution: "@octokit/plugin-paginate-graphql@npm:5.2.4" + peerDependencies: + "@octokit/core": ">=6" + checksum: f119999c8872f8c24eff653c3af53dea9d06b6863491ea52b888c1a9489019fcaa47423321b857073c609baaaf43fecf97ef335d780042334217abfe24b68bed languageName: node linkType: hard -"@sindresorhus/is@npm:^5.2.0": - version: 5.3.0 - resolution: "@sindresorhus/is@npm:5.3.0" - checksum: b31cebabcdece3d5322de2a4dbc8c0f004e04147a00f2606787bcaf5655ad4b1954f6727fc6914c524009b2b9a2cc01c42835b55f651ce69fd2a0083b60bb852 +"@octokit/plugin-paginate-rest@npm:11.3.1": + version: 11.3.1 + resolution: "@octokit/plugin-paginate-rest@npm:11.3.1" + dependencies: + "@octokit/types": ^13.5.0 + peerDependencies: + "@octokit/core": 5 + checksum: 42c7c08e7287b4b85d2ae47852d2ffeb238c134ad6bcff18bddc154b15f6bec31778816c0763181401c370198390db7f6b0c3c44750fdfeec459594f7f4b5933 languageName: node linkType: hard -"@sindresorhus/merge-streams@npm:^2.1.0": - version: 2.3.0 - resolution: "@sindresorhus/merge-streams@npm:2.3.0" - checksum: e989d53dee68d7e49b4ac02ae49178d561c461144cea83f66fa91ff012d981ad0ad2340cbd13f2fdb57989197f5c987ca22a74eb56478626f04e79df84291159 +"@octokit/plugin-paginate-rest@npm:^11.0.0": + version: 11.3.3 + resolution: "@octokit/plugin-paginate-rest@npm:11.3.3" + dependencies: + "@octokit/types": ^13.5.0 + peerDependencies: + "@octokit/core": ">=6" + checksum: 93c7993562caed67b67f75aa77ffb10d032c242a70e9380e2fb9ab67dd2fb84d420231d09cd8a64f1553ffd325f3ef8c640c62e4267b7f3b352b16d4d5e11ef6 languageName: node linkType: hard -"@sinonjs/commons@npm:^2.0.0": - version: 2.0.0 - resolution: "@sinonjs/commons@npm:2.0.0" +"@octokit/plugin-paginate-rest@npm:^6.1.2": + version: 6.1.2 + resolution: "@octokit/plugin-paginate-rest@npm:6.1.2" dependencies: - type-detect: 4.0.8 - checksum: 5023ba17edf2b85ed58262313b8e9b59e23c6860681a9af0200f239fe939e2b79736d04a260e8270ddd57196851dde3ba754d7230be5c5234e777ae2ca8af137 + "@octokit/tsconfig": ^1.0.2 + "@octokit/types": ^9.2.3 + peerDependencies: + "@octokit/core": ">=4" + checksum: a7b3e686c7cbd27ec07871cde6e0b1dc96337afbcef426bbe3067152a17b535abd480db1861ca28c88d93db5f7bfdbcadd0919ead19818c28a69d0e194038065 languageName: node linkType: hard -"@sinonjs/fake-timers@npm:^10.0.2": - version: 10.0.2 - resolution: "@sinonjs/fake-timers@npm:10.0.2" - dependencies: - "@sinonjs/commons": ^2.0.0 - checksum: c62aa98e7cefda8dedc101ce227abc888dc46b8ff9706c5f0a8dfd9c3ada97d0a5611384738d9ba0b26b59f99c2ba24efece8e779bb08329e9e87358fa309824 +"@octokit/plugin-request-log@npm:^1.0.4": + version: 1.0.4 + resolution: "@octokit/plugin-request-log@npm:1.0.4" + peerDependencies: + "@octokit/core": ">=3" + checksum: 2086db00056aee0f8ebd79797b5b57149ae1014e757ea08985b71eec8c3d85dbb54533f4fd34b6b9ecaa760904ae6a7536be27d71e50a3782ab47809094bfc0c languageName: node linkType: hard -"@slorber/static-site-generator-webpack-plugin@npm:^4.0.7": - version: 4.0.7 - resolution: "@slorber/static-site-generator-webpack-plugin@npm:4.0.7" - dependencies: - eval: ^0.1.8 - p-map: ^4.0.0 - webpack-sources: ^3.2.2 - checksum: a1e1d8b22dd51059524993f3fdd6861db10eb950debc389e5dd650702287fa2004eace03e6bc8f25b977bd7bc01d76a50aa271cbb73c58a8ec558945d728f307 +"@octokit/plugin-request-log@npm:^4.0.0": + version: 4.0.1 + resolution: "@octokit/plugin-request-log@npm:4.0.1" + peerDependencies: + "@octokit/core": 5 + checksum: fd8c0a201490cba00084689a0d1d54fc7b5ab5b6bdb7e447056b947b1754f78526e9685400eab10d3522bfa7b5bc49c555f41ec412c788610b96500b168f3789 languageName: node linkType: hard -"@smithy/abort-controller@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/abort-controller@npm:2.0.10" - dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: e0b3a5573c8a7b7ef2bd30dfa4ea50968a7d5c4046b5b9190ad885e33bbe4a08d3c023c4b8bee10bf01dcad85421d7ff35658223c605fd994de3d14835f24279 +"@octokit/plugin-request-log@npm:^5.3.1": + version: 5.3.1 + resolution: "@octokit/plugin-request-log@npm:5.3.1" + peerDependencies: + "@octokit/core": ">=6" + checksum: a27e163282c8d0ba8feee4d3cbbd1b62e1aa89a892877f7a9876fc17ddde3e1e1af922e6664221a0cabae99b8a7a2a5215b9ec2ee5222edb50e06298e99022b0 languageName: node linkType: hard -"@smithy/abort-controller@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/abort-controller@npm:2.0.11" +"@octokit/plugin-rest-endpoint-methods@npm:13.2.2": + version: 13.2.2 + resolution: "@octokit/plugin-rest-endpoint-methods@npm:13.2.2" dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 33a639bb1dd57a4495ef70f3d7ffa6f7eb40256121412e2d1e1d353524d140e483160871653bd9af67a0ec751ffbcae60a3972f85c996569f0c7a88064447dab + "@octokit/types": ^13.5.0 + peerDependencies: + "@octokit/core": ^5 + checksum: 347b3a891a561ed1dcc307a2dce42ca48c318c465ad91a26225d3d6493aef1b7ff868e6c56a0d7aa4170d028c7429ca1ec52aed6be34615a6ed701c3bcafdb17 languageName: node linkType: hard -"@smithy/abort-controller@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/abort-controller@npm:2.0.16" +"@octokit/plugin-rest-endpoint-methods@npm:^13.0.0": + version: 13.2.4 + resolution: "@octokit/plugin-rest-endpoint-methods@npm:13.2.4" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: f91824aa8c8c39223b2d52c88fe123b36e5823acf8ce9316ce3b38245202cc6d31e1c172ebfec9fda47466d0b31f1df1add7e64d7161695fd27f96992037b18f + "@octokit/types": ^13.5.0 + peerDependencies: + "@octokit/core": ">=6" + checksum: 149643bf98933af92003c55ad7f1e87c239941e843708cfc7389d378e85069e88b7cccaf8227469ee037d54da93cbdb881a34ce9888f5a60f89c689305eb5730 languageName: node linkType: hard -"@smithy/abort-controller@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/abort-controller@npm:2.0.3" +"@octokit/plugin-rest-endpoint-methods@npm:^7.1.2": + version: 7.2.3 + resolution: "@octokit/plugin-rest-endpoint-methods@npm:7.2.3" dependencies: - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: 69f8d0e2543eb636dd6b02a04379bab22472db09511d384e7481e9d435efe406b8e9a04a646016bdd7d3a35f068dbbd8316cca892e534de80766950799167d1e + "@octokit/types": ^10.0.0 + peerDependencies: + "@octokit/core": ">=3" + checksum: 21dfb98514dbe900c29cddb13b335bbce43d613800c6b17eba3c1fd31d17e69c1960f3067f7bf864bb38fdd5043391f4a23edee42729d8c7fbabd00569a80336 languageName: node linkType: hard -"@smithy/abort-controller@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/abort-controller@npm:3.0.0" +"@octokit/plugin-retry@npm:^7.0.0": + version: 7.1.2 + resolution: "@octokit/plugin-retry@npm:7.1.2" dependencies: - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 8ad1551b558d5cb14e60fdaf07663d37828d11e9bb0faccfa3622ee0b0ddd7c7eab97ae36f501fd3d5bdcb9c570ed4e9ed84cb7b4490053900d20399297f95b5 + "@octokit/request-error": ^6.0.0 + "@octokit/types": ^13.0.0 + bottleneck: ^2.15.3 + peerDependencies: + "@octokit/core": ">=6" + checksum: 484da4d0deffb5612d9ad918e82158c7c0e98e0be76ffe9046fe48c3f11ed4b7ff2d6807d9704c470dbc7d017bfa6e89cd89346ccdad788ac4fa5d02ccc99f94 languageName: node linkType: hard -"@smithy/abort-controller@npm:^3.1.0": - version: 3.1.0 - resolution: "@smithy/abort-controller@npm:3.1.0" +"@octokit/plugin-throttling@npm:^9.0.0": + version: 9.3.2 + resolution: "@octokit/plugin-throttling@npm:9.3.2" dependencies: - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 78643bddda2bcb68e00bb95ae866741407236b92b1834796c0855710950386ae1e5e67d72fb42ec444e8a4dc4357a1527c4f331324a2fad156468f5a0cccf128 + "@octokit/types": ^13.0.0 + bottleneck: ^2.15.3 + peerDependencies: + "@octokit/core": ^6.0.0 + checksum: d3e11bd4bbee7df0885789c018f9e0cc48b2226fa4c23f9f68b53acd670eb30303762fb56034650620dbf4e72497e27620140bc9cad5355207b4b5f0e1129e90 languageName: node linkType: hard -"@smithy/abort-controller@npm:^3.1.1": - version: 3.1.1 - resolution: "@smithy/abort-controller@npm:3.1.1" +"@octokit/request-error@npm:^3.0.0": + version: 3.0.3 + resolution: "@octokit/request-error@npm:3.0.3" dependencies: - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 7b7497f49d58787cad858f8c5ea9931ccd44d39536db4abdd531a5abf37784469522e41d9ad1d541892caa0ed3bea750447809a0a18f4689a9543d672aa61d48 + "@octokit/types": ^9.0.0 + deprecation: ^2.0.0 + once: ^1.4.0 + checksum: 5db0b514732686b627e6ed9ef1ccdbc10501f1b271a9b31f784783f01beee70083d7edcfeb35fbd7e569fa31fdd6762b1ff6b46101700d2d97e7e48e749520d0 languageName: node linkType: hard -"@smithy/config-resolver@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/config-resolver@npm:2.0.11" +"@octokit/request-error@npm:^5.1.0": + version: 5.1.0 + resolution: "@octokit/request-error@npm:5.1.0" dependencies: - "@smithy/node-config-provider": ^2.0.13 - "@smithy/types": ^2.3.4 - "@smithy/util-config-provider": ^2.0.0 - "@smithy/util-middleware": ^2.0.3 - tslib: ^2.5.0 - checksum: 57a14ccf65a472881b1d30589a81637157b52824b20f69a54c5bda291791c7585a07879e8d50524eb710f46064d2258064496bf7f0b66d675410447218f9c7b6 + "@octokit/types": ^13.1.0 + deprecation: ^2.0.0 + once: ^1.4.0 + checksum: 2cdbb8e44072323b5e1c8c385727af6700e3e492d55bc1e8d0549c4a3d9026914f915866323d371b1f1772326d6e902341c872679cc05c417ffc15cadf5f4a4e languageName: node linkType: hard -"@smithy/config-resolver@npm:^2.0.14": - version: 2.0.14 - resolution: "@smithy/config-resolver@npm:2.0.14" +"@octokit/request-error@npm:^6.0.0, @octokit/request-error@npm:^6.1.0, @octokit/request-error@npm:^6.1.1": + version: 6.1.5 + resolution: "@octokit/request-error@npm:6.1.5" dependencies: - "@smithy/node-config-provider": ^2.1.1 - "@smithy/types": ^2.3.5 - "@smithy/util-config-provider": ^2.0.0 - "@smithy/util-middleware": ^2.0.4 - tslib: ^2.5.0 - checksum: 5fa08a715e20b49db178b22806d79cb43756b7f720007abb018ccf975270529869153ea25b98b99da3ffc80607c19a65ceb147fe908e80301eb51288802ea7b7 + "@octokit/types": ^13.0.0 + checksum: a0891df29957d9911ef34281fefffac4a98baa96ffffeb1a2b8f0c8e229911ca3da2be42e5bbe6a4b994a12fd100f4d0d86be095fada60384cd6728705eae859 languageName: node linkType: hard -"@smithy/config-resolver@npm:^2.0.2, @smithy/config-resolver@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/config-resolver@npm:2.0.3" +"@octokit/request-error@npm:^6.0.1": + version: 6.1.4 + resolution: "@octokit/request-error@npm:6.1.4" dependencies: - "@smithy/types": ^2.2.0 - "@smithy/util-config-provider": ^2.0.0 - "@smithy/util-middleware": ^2.0.0 - tslib: ^2.5.0 - checksum: 882787c3764829ebca0ba255e8245d2267c26c1d8ebfa273ba40f3264f888f4494419fd692e602df28cecf9f7431dde37711f6d950ac41ed8e5727de8d2150cf + "@octokit/types": ^13.0.0 + checksum: e4e475ec50cef8e271f39e69667d0f8eaccb2367aa56b81638c629b5bbfa2b697b40207301e5c797a63051a82d8698e7c792b4050b84e383c54300a49a01304a languageName: node linkType: hard -"@smithy/config-resolver@npm:^2.0.23": - version: 2.0.23 - resolution: "@smithy/config-resolver@npm:2.0.23" +"@octokit/request@npm:^6.0.0": + version: 6.2.8 + resolution: "@octokit/request@npm:6.2.8" dependencies: - "@smithy/node-config-provider": ^2.1.9 - "@smithy/types": ^2.8.0 - "@smithy/util-config-provider": ^2.1.0 - "@smithy/util-middleware": ^2.0.9 - tslib: ^2.5.0 - checksum: 16f6c9a492aca44acc3f2dbb9c92e9212daad741143b444333926befb373ebe355edb62e74cf4af6b54cea54e4b54614a985c5dcb51e127be02e59e35c8d8815 + "@octokit/endpoint": ^7.0.0 + "@octokit/request-error": ^3.0.0 + "@octokit/types": ^9.0.0 + is-plain-object: ^5.0.0 + node-fetch: ^2.6.7 + universal-user-agent: ^6.0.0 + checksum: 3747106f50d7c462131ff995b13defdd78024b7becc40283f4ac9ea0af2391ff33a0bb476a05aa710346fe766d20254979079a1d6f626112015ba271fe38f3e2 languageName: node linkType: hard -"@smithy/config-resolver@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/config-resolver@npm:3.0.0" +"@octokit/request@npm:^8.3.0, @octokit/request@npm:^8.3.1": + version: 8.4.0 + resolution: "@octokit/request@npm:8.4.0" dependencies: - "@smithy/node-config-provider": ^3.0.0 - "@smithy/types": ^3.0.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: 66d66e0c054e90e8dec61d1f8f774709f0e3d5227cec30221c27cc21fb51bbd691c0281f8f01bc4cc0a3472cb7776db3544260a45f8104b0ba1493c27ff2794b + "@octokit/endpoint": ^9.0.1 + "@octokit/request-error": ^5.1.0 + "@octokit/types": ^13.1.0 + universal-user-agent: ^6.0.0 + checksum: 3d937e817a85c0adf447ab46b428ccd702c31b2091e47adec90583ec2242bd64666306fe8188628fb139aa4752e19400eb7652b0f5ca33cd9e77bbb2c60b202a languageName: node linkType: hard -"@smithy/config-resolver@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/config-resolver@npm:3.0.1" +"@octokit/request@npm:^9.0.0, @octokit/request@npm:^9.0.1, @octokit/request@npm:^9.1.0, @octokit/request@npm:^9.1.1": + version: 9.1.3 + resolution: "@octokit/request@npm:9.1.3" dependencies: - "@smithy/node-config-provider": ^3.1.0 - "@smithy/types": ^3.0.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: b57650c31e230b9f9b961027d4c3b5b6d5728cbae3361df91f4da06389bbbecfe5a4483737d3d91abb6b3dd53cab9ead66be2f6386b558b6db1e247549363ba5 + "@octokit/endpoint": ^10.0.0 + "@octokit/request-error": ^6.0.1 + "@octokit/types": ^13.1.0 + universal-user-agent: ^7.0.2 + checksum: 0a1c1a4f9ba67954402ef6d1e3d8e78518487750f3a31c100133840fff393ed9cc29533282914adf0731f7cc880a2778b8a6ac81527b376a278360a86e79597d languageName: node linkType: hard -"@smithy/config-resolver@npm:^3.0.2, @smithy/config-resolver@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/config-resolver@npm:3.0.3" +"@octokit/rest@npm:19.0.11": + version: 19.0.11 + resolution: "@octokit/rest@npm:19.0.11" dependencies: - "@smithy/node-config-provider": ^3.1.2 - "@smithy/types": ^3.2.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.2 - tslib: ^2.6.2 - checksum: 7a7baf23e64ed85d4229bfd320a3ea96087c57ce1b94638a89bab5f92dcc24ec22c11740d90f2fab38eb39eeb860463ae98b24598555c2b55a01bd79c20ef99b + "@octokit/core": ^4.2.1 + "@octokit/plugin-paginate-rest": ^6.1.2 + "@octokit/plugin-request-log": ^1.0.4 + "@octokit/plugin-rest-endpoint-methods": ^7.1.2 + checksum: 147518ad51d214ead88adc717b5fdc4f33317949d58c124f4069bdf07d2e6b49fa66861036b9e233aed71fcb88ff367a6da0357653484e466175ab4fb7183b3b languageName: node linkType: hard -"@smithy/config-resolver@npm:^3.0.5": - version: 3.0.5 - resolution: "@smithy/config-resolver@npm:3.0.5" +"@octokit/rest@npm:20.1.1": + version: 20.1.1 + resolution: "@octokit/rest@npm:20.1.1" dependencies: - "@smithy/node-config-provider": ^3.1.4 - "@smithy/types": ^3.3.0 - "@smithy/util-config-provider": ^3.0.0 - "@smithy/util-middleware": ^3.0.3 - tslib: ^2.6.2 - checksum: 96895ae0622a229655fa08f009d29a20157043020125014e84cb5ca33a10171c9724c309491214c2422d9c4c6681e7f5ec5f7faa8f45e11250449cf07f3552ec + "@octokit/core": ^5.0.2 + "@octokit/plugin-paginate-rest": 11.3.1 + "@octokit/plugin-request-log": ^4.0.0 + "@octokit/plugin-rest-endpoint-methods": 13.2.2 + checksum: c15a801c62a2e2104a4b443b3b43f73366d1220b43995d4ffe1358c4162021708e6625a64ea56bf7d85b870924b862b0d680e191160ceca11e6531b8b92299ca languageName: node linkType: hard -"@smithy/core@npm:^1.2.2": - version: 1.2.2 - resolution: "@smithy/core@npm:1.2.2" - dependencies: - "@smithy/middleware-endpoint": ^2.3.0 - "@smithy/middleware-retry": ^2.0.26 - "@smithy/middleware-serde": ^2.0.16 - "@smithy/protocol-http": ^3.0.12 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - "@smithy/util-middleware": ^2.0.9 - tslib: ^2.5.0 - checksum: 5688b08bf935f429ada15c1238b0e6046069418cfb1810981e04d4dc00a9552189cfe566e23f8a51579894e2de44dc3d8548aca4ff6a3e16f385a478e3fb2b18 +"@octokit/rest@npm:^21.0.2": + version: 21.0.2 + resolution: "@octokit/rest@npm:21.0.2" + dependencies: + "@octokit/core": ^6.1.2 + "@octokit/plugin-paginate-rest": ^11.0.0 + "@octokit/plugin-request-log": ^5.3.1 + "@octokit/plugin-rest-endpoint-methods": ^13.0.0 + checksum: 81dc98bbc27d4891a211628ea49ba40f087f986ee85d7e2f0579b66e4046dd6b6d63ffeb0eb011c9240dd61906798795e4b9e309af230f31df0a42db79ae20bc languageName: node linkType: hard -"@smithy/core@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/core@npm:2.0.1" - dependencies: - "@smithy/middleware-endpoint": ^3.0.0 - "@smithy/middleware-retry": ^3.0.1 - "@smithy/middleware-serde": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.0.1 - "@smithy/types": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: 6a02cfc67ea6f7eac367c41c7200c604bbd087a02c418aa69e1cc833b4f0693b1e28205eb62f516ca62ad4cac851a06f435ceaa4505f73b44f89790c11a1e889 +"@octokit/tsconfig@npm:^1.0.2": + version: 1.0.2 + resolution: "@octokit/tsconfig@npm:1.0.2" + checksum: 74d56f3e9f326a8dd63700e9a51a7c75487180629c7a68bbafee97c612fbf57af8347369bfa6610b9268a3e8b833c19c1e4beb03f26db9a9dce31f6f7a19b5b1 languageName: node linkType: hard -"@smithy/core@npm:^2.2.0": - version: 2.2.0 - resolution: "@smithy/core@npm:2.2.0" +"@octokit/types@npm:^10.0.0": + version: 10.0.0 + resolution: "@octokit/types@npm:10.0.0" dependencies: - "@smithy/middleware-endpoint": ^3.0.1 - "@smithy/middleware-retry": ^3.0.3 - "@smithy/middleware-serde": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/smithy-client": ^3.1.1 - "@smithy/types": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: 4b14ebbc6f9bcc54872bb19c42c3b7281c5e38af012e1278e4084433d720c310789219c1de4a1ea86398bfc080378faf1f95c506bf77df6cd109475658cb3f26 + "@octokit/openapi-types": ^18.0.0 + checksum: 8aafba2ff0cd2435fb70c291bf75ed071c0fa8a865cf6169648732068a35dec7b85a345851f18920ec5f3e94ee0e954988485caac0da09ec3f6781cc44fe153a languageName: node linkType: hard -"@smithy/core@npm:^2.2.1": - version: 2.2.3 - resolution: "@smithy/core@npm:2.2.3" +"@octokit/types@npm:^13.0.0, @octokit/types@npm:^13.1.0, @octokit/types@npm:^13.5.0": + version: 13.5.0 + resolution: "@octokit/types@npm:13.5.0" dependencies: - "@smithy/middleware-endpoint": ^3.0.3 - "@smithy/middleware-retry": ^3.0.6 - "@smithy/middleware-serde": ^3.0.2 - "@smithy/protocol-http": ^4.0.2 - "@smithy/smithy-client": ^3.1.4 - "@smithy/types": ^3.2.0 - "@smithy/util-middleware": ^3.0.2 - tslib: ^2.6.2 - checksum: 6addaede7f4699c48d690872647bbc86efc5bf9adb088557cfd4263e629e6bd7d45a1de983824a7c5ff608ec2cd42d7c6f61854d3d33b8ded352df550789b34b + "@octokit/openapi-types": ^22.2.0 + checksum: 8e92f2b145b3c28a35312f93714245824a7b6b7353caa88edfdc85fc2ed4108321ed0c3988001ea53449fbb212febe0e8e9582744e85c3574dabe9d0441af5a0 languageName: node linkType: hard -"@smithy/core@npm:^2.2.7": - version: 2.2.8 - resolution: "@smithy/core@npm:2.2.8" +"@octokit/types@npm:^13.4.1": + version: 13.6.1 + resolution: "@octokit/types@npm:13.6.1" dependencies: - "@smithy/middleware-endpoint": ^3.0.5 - "@smithy/middleware-retry": ^3.0.11 - "@smithy/middleware-serde": ^3.0.3 - "@smithy/protocol-http": ^4.0.4 - "@smithy/smithy-client": ^3.1.9 - "@smithy/types": ^3.3.0 - "@smithy/util-middleware": ^3.0.3 - tslib: ^2.6.2 - checksum: c6dbf5e7ce509779e57889a67036e67f7c9ba39ce93eac087162997105d4afd14b34a5b145ffdcf2c56d1afa65661fc0b42705705c140a79cf0cea78f7739919 + "@octokit/openapi-types": ^22.2.0 + checksum: 05bb427bc3c84088e2367b8d1b7a9834732116bb3d35ef51d1aae34b3919027159dd496b9362dab1cb047918da15be1dc1cafc512c97f9b77458bd273b5a2ba9 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^2.0.0": - version: 2.0.1 - resolution: "@smithy/credential-provider-imds@npm:2.0.1" +"@octokit/types@npm:^9.0.0, @octokit/types@npm:^9.2.3": + version: 9.3.2 + resolution: "@octokit/types@npm:9.3.2" dependencies: - "@smithy/node-config-provider": ^2.0.1 - "@smithy/property-provider": ^2.0.1 - "@smithy/types": ^2.0.2 - "@smithy/url-parser": ^2.0.1 - tslib: ^2.5.0 - checksum: cf0ee4b50da5584685afc9019af1a8e8c910890dc3128a574b606b7845d898cd65429263682ef27da79dc358286f48b4452617a2fe9fcb98e5483908ac05ce8b + "@octokit/openapi-types": ^18.0.0 + checksum: f55d096aaed3e04b8308d4422104fb888f355988056ba7b7ef0a4c397b8a3e54290d7827b06774dbe0c9ce55280b00db486286954f9c265aa6b03091026d9da8 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/credential-provider-imds@npm:2.0.16" - dependencies: - "@smithy/node-config-provider": ^2.1.1 - "@smithy/property-provider": ^2.0.12 - "@smithy/types": ^2.3.5 - "@smithy/url-parser": ^2.0.11 - tslib: ^2.5.0 - checksum: 1079f9b59d60f460bfbc95c722a740664733b5d6c219ff8ac04d85d8af78eccabc71ed08d39cf11ec1e80203e3b65e08eb06a99524c358b2a959e2baa4787fd4 +"@octokit/webhooks-methods@npm:^5.0.0": + version: 5.1.0 + resolution: "@octokit/webhooks-methods@npm:5.1.0" + checksum: 6b0185f62b30b1d267456c449732d1c381e22533bcfeea3002bb88bc9f50a6ec5e4863be092473e7c47bee8c01b863ebd93980dd378495860dfd8d762044a212 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/credential-provider-imds@npm:2.0.3" +"@octokit/webhooks@npm:^13.0.0": + version: 13.3.0 + resolution: "@octokit/webhooks@npm:13.3.0" dependencies: - "@smithy/node-config-provider": ^2.0.3 - "@smithy/property-provider": ^2.0.3 - "@smithy/types": ^2.2.0 - "@smithy/url-parser": ^2.0.3 - tslib: ^2.5.0 - checksum: 15d73bbff2fd91919cab424246a25e84e7d97011f8990c38c52baf3dd865a64a1b9826f4049d24057c5115b757cdd0f0b51dd04a02003acd39ec2826c3b4d877 + "@octokit/openapi-webhooks-types": 8.3.0 + "@octokit/request-error": ^6.0.1 + "@octokit/webhooks-methods": ^5.0.0 + checksum: 4a790e7a0551f057a14cf3b5df8e20cec43c10a8f331e19db7b0e5f6bfbc7577e817ad8543c7a99fb6dd7c713d93f0bbaf2fedc3c88f858693da084e9ef1463d languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^2.1.5": - version: 2.1.5 - resolution: "@smithy/credential-provider-imds@npm:2.1.5" +"@opensearch-project/opensearch@npm:^2.2.0": + version: 2.2.0 + resolution: "@opensearch-project/opensearch@npm:2.2.0" dependencies: - "@smithy/node-config-provider": ^2.1.9 - "@smithy/property-provider": ^2.0.17 - "@smithy/types": ^2.8.0 - "@smithy/url-parser": ^2.0.16 - tslib: ^2.5.0 - checksum: 1df3be00235960bc3d6a1703c4d3446d2338ee3684e0f17d2cbefc115ca38e6c1015d0e17116551e59e5adfd02a5923a8dddb83a956e197fd5aa4308ab20acdd + aws4: ^1.11.0 + debug: ^4.3.1 + hpagent: ^1.2.0 + ms: ^2.1.3 + secure-json-parse: ^2.4.0 + checksum: cceb5bb2c194a7d4bfab3c1b4a3230ea1457ae8976f39bb9e0c5e0067dc450a418a4649536988f0d48a746d7d3ed2002c32d9fde48dfc3112158e964bafa6e76 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/credential-provider-imds@npm:3.0.0" - dependencies: - "@smithy/node-config-provider": ^3.0.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - tslib: ^2.6.2 - checksum: f592303f6247ae3f404cc6dce108c69f88ffcc56d11fc219e16d101ec58b00141d6253c3f0bedb4a6cf4de5df9cea29514851647aa1a9d0ebe5865fdce37a7ca +"@opentelemetry/api@npm:^1.0.1": + version: 1.4.1 + resolution: "@opentelemetry/api@npm:1.4.1" + checksum: e783c40d1a518abf9c4c5d65223237c1392cd9a6c53ac6e2c3ef0c05ff7266e3dfc4fd9874316dae0dcb7a97950878deb513bcbadfaad653d48f0215f2a0911b languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^3.1.0": - version: 3.1.0 - resolution: "@smithy/credential-provider-imds@npm:3.1.0" - dependencies: - "@smithy/node-config-provider": ^3.1.0 - "@smithy/property-provider": ^3.1.0 - "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - tslib: ^2.6.2 - checksum: d13b08a15e7565efb848b30cda37dd9211c626bb6a7d9f4ec36da77732879a9708c90670a66185ed903c76e6b36665d429f01112bc46768fd272e3bf88ecd7d8 +"@petamoriken/float16@npm:^3.8.6": + version: 3.8.7 + resolution: "@petamoriken/float16@npm:3.8.7" + checksum: 0e4c12e9d88aac08f125a2e804a28207bafd1ea0cdc2ddbde95cc9a3b19c155747f5001a5d5b42f9dca18f697df553d42680067817ce5dc4e3456f9c605a6d88 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^3.1.1, @smithy/credential-provider-imds@npm:^3.1.2": - version: 3.1.2 - resolution: "@smithy/credential-provider-imds@npm:3.1.2" +"@pinecone-database/pinecone@npm:^4.0.0": + version: 4.0.0 + resolution: "@pinecone-database/pinecone@npm:4.0.0" dependencies: - "@smithy/node-config-provider": ^3.1.2 - "@smithy/property-provider": ^3.1.2 - "@smithy/types": ^3.2.0 - "@smithy/url-parser": ^3.0.2 - tslib: ^2.6.2 - checksum: bf0ce9f7c510f5f7e05d08c2b1d861f133016457e3872bfc5e4ac9b22f26123adcf773a562189971e2ce97bdad2f576a4eefb764808df2ae1833e77be86358f2 + encoding: ^0.1.13 + checksum: 7523d7b8dc6a5d7b5d5cf37c97f6070112473f26d82aec23ca198554634e6bc0883866fcc9a8b2978e287daad8665085cef1d4f16d86a7ba0f8b623d88bdda54 languageName: node linkType: hard -"@smithy/credential-provider-imds@npm:^3.1.4": - version: 3.1.4 - resolution: "@smithy/credential-provider-imds@npm:3.1.4" - dependencies: - "@smithy/node-config-provider": ^3.1.4 - "@smithy/property-provider": ^3.1.3 - "@smithy/types": ^3.3.0 - "@smithy/url-parser": ^3.0.3 - tslib: ^2.6.2 - checksum: c75a653970f5e7b888dddbcb916fadd2c45fe59b1a776de9b44f39771b3941fb536684d2407aef88ce376afa6024f38759290db966b07e9213c49a9427ea4a7c +"@pkgjs/parseargs@npm:^0.11.0": + version: 0.11.0 + resolution: "@pkgjs/parseargs@npm:0.11.0" + checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^1.1.0": - version: 1.1.0 - resolution: "@smithy/eventstream-codec@npm:1.1.0" - dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": ^1.2.0 - "@smithy/util-hex-encoding": ^1.1.0 - tslib: ^2.5.0 - checksum: 88e414d9a758b88f28ddb669f1dc26f8d3e3a36d398adace3919a699ff289dbf0e0c59bed69dc85741a2bcf9cbe66ce803986ede548328a7117a711534e51c6b +"@planetscale/database@npm:^1.8.0": + version: 1.8.0 + resolution: "@planetscale/database@npm:1.8.0" + checksum: f1ad8068da139208b428a5245aca6fe21c987dc922589483d7cc21453273a7462dab391e15794c0ba012d185ad59459160f14cf4ca2fd42bd3053e7474952a0b languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/eventstream-codec@npm:2.0.10" +"@playwright/test@npm:^1.48.2": + version: 1.49.0 + resolution: "@playwright/test@npm:1.49.0" dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": ^2.3.4 - "@smithy/util-hex-encoding": ^2.0.0 - tslib: ^2.5.0 - checksum: a488882308001fc898370bfe26ed17eed7cdac497648dfe6949b332af7f381cf65436b6b9619a7b6fee16217eda4e9c0ed9c1567e2ff24e6eddf5e6696eb0812 + playwright: 1.49.0 + bin: + playwright: cli.js + checksum: f8477aa61d59fd22c6161c48221ab246340dc37bbe2804e1a7d1be8cbd0fd861747fcb7ca559f4bc7328226ff2c90ccb7efa588a7d7d7829f3e57902b28fe39a languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/eventstream-codec@npm:2.0.11" - dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": ^2.3.5 - "@smithy/util-hex-encoding": ^2.0.0 - tslib: ^2.5.0 - checksum: beaa818c300986e2d085ab132c835957b674d62df43ece4dd74266d4ba4fcc2d3bf43c474ae724104337da4a1349a710dda49d2975c659ee30e28c7058e31817 +"@pnpm/config.env-replace@npm:^1.0.0": + version: 1.0.0 + resolution: "@pnpm/config.env-replace@npm:1.0.0" + checksum: 0142dca1c4838af833ac1babeb293236047cb3199f509b5dbcb68ea4d21ffc3ab8f7d3fe8653e4caef11771c56ab2410d6b930c162ed8eb6714a8cab51a95ceb languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-codec@npm:2.0.16" +"@pnpm/network.ca-file@npm:^1.0.1": + version: 1.0.2 + resolution: "@pnpm/network.ca-file@npm:1.0.2" dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": ^2.8.0 - "@smithy/util-hex-encoding": ^2.0.0 - tslib: ^2.5.0 - checksum: 247b7ab35a49f27527124b5927bc04f7f9974e87a8533fe9b2909ab80fe71cebcd61f21835b16a3f4cbd1550f39d2290e90d5b0fa2a9a05eac11b0ec1c21e2b5 + graceful-fs: 4.2.10 + checksum: d8d0884646500576bd5390464d13db1bb9a62e32a1069293e5bddb2ad8354b354b7e2d2a35e12850025651e795e6a80ce9e601c66312504667b7e3ee7b52becc languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^2.0.5": - version: 2.0.5 - resolution: "@smithy/eventstream-codec@npm:2.0.5" +"@pnpm/npm-conf@npm:^2.1.0": + version: 2.1.0 + resolution: "@pnpm/npm-conf@npm:2.1.0" dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": ^2.2.2 - "@smithy/util-hex-encoding": ^2.0.0 - tslib: ^2.5.0 - checksum: 472c0b1652e2afcf9dd9a8f122255d8b3b46019ead3c12ce8ceb3242d2dca525c5dcf6fd2fe57e03621283c8762b44d553a10eb0ce35eecaf2f4366c45bbf683 + "@pnpm/config.env-replace": ^1.0.0 + "@pnpm/network.ca-file": ^1.0.1 + config-chain: ^1.1.11 + checksum: b4b19d2d2b22d6ee9d41c6499ac1c55277cdaddc150fb3a549e7460bcf7a377adbd70788c2c8c4167081b76b343d4869505c852cea2ad46060f4de632611eb30 languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/eventstream-codec@npm:3.0.0" - dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": ^3.0.0 - "@smithy/util-hex-encoding": ^3.0.0 - tslib: ^2.6.2 - checksum: 4cd51bb8451a7df0c6de76284869bf966848f57b7f66be941c00bd141293f535632dd34d55f0bd8994254bfedffa535a4ea90e8b2debd2618e8dd3646b68f8ca +"@polka/url@npm:^1.0.0-next.20": + version: 1.0.0-next.23 + resolution: "@polka/url@npm:1.0.0-next.23" + checksum: 4b0330de1ceecd1002c7e7449094d0c41f2ed0e21765f4835ccc7b003f2f024ac557d503b9ffdf0918cf50b80d5b8c99dfc5a91927e7b3c468b09c6bb42a3c41 languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^3.1.1": - version: 3.1.1 - resolution: "@smithy/eventstream-codec@npm:3.1.1" +"@premai/prem-sdk@npm:^0.3.25": + version: 0.3.25 + resolution: "@premai/prem-sdk@npm:0.3.25" dependencies: - "@aws-crypto/crc32": 5.2.0 - "@smithy/types": ^3.2.0 - "@smithy/util-hex-encoding": ^3.0.0 - tslib: ^2.6.2 - checksum: fdc7a2bcf99f7c830ba24b5745877ec26556613423a025c6b122b167ef92a76a860f7dffe21f25667f12c2736a121f4e2064050dcf768406a60ce3ebc029e402 + axios: ^1.6.2 + checksum: e52bd2a1d44df773ca76c6267ef23dbbd94af4ad4f8cd3eb123772179c62358115c4e53bbc1373772529c08bc888df1fdcb994bfd9b57b8ee8206cd4808aa77d languageName: node linkType: hard -"@smithy/eventstream-codec@npm:^3.1.2": - version: 3.1.2 - resolution: "@smithy/eventstream-codec@npm:3.1.2" +"@prisma/client@npm:^4.11.0": + version: 4.11.0 + resolution: "@prisma/client@npm:4.11.0" dependencies: - "@aws-crypto/crc32": 5.2.0 - "@smithy/types": ^3.3.0 - "@smithy/util-hex-encoding": ^3.0.0 - tslib: ^2.6.2 - checksum: b0c836acbf59b57a7e2ef948a54bd441d11b75d70f1c334723c27fce1ab0ff93ea9f936976b754272b5e90413b5a169c60b1df7ecfd7d061ebaae8d5cc067d94 + "@prisma/engines-version": 4.11.0-57.8fde8fef4033376662cad983758335009d522acb + peerDependencies: + prisma: "*" + peerDependenciesMeta: + prisma: + optional: true + checksum: ca8d8f820caaf4a76b94674f88207d5bb14f57a9682d37d2f79c56378f259cd3b14b30a110ab59a97647fcf3c46f896e7a2d20ded2777e09b835d7accd70cf1d languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^2.0.10": - version: 2.0.11 - resolution: "@smithy/eventstream-serde-browser@npm:2.0.11" - dependencies: - "@smithy/eventstream-serde-universal": ^2.0.11 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 40c37d3bdb48e883f459b709bdbdc01cfcf3c3b4b2ddd7b9d02c61feb788fa8a62b76b3a6450c3c84810dc8abb58e3b56db914bb10fa65620ecb44ca5aae81d2 +"@prisma/engines-version@npm:4.11.0-57.8fde8fef4033376662cad983758335009d522acb": + version: 4.11.0-57.8fde8fef4033376662cad983758335009d522acb + resolution: "@prisma/engines-version@npm:4.11.0-57.8fde8fef4033376662cad983758335009d522acb" + checksum: f040b93d09b21feaef193080eed22142fa26b3cf86d089ebb4286f5f45ed17a98e030a8bb55c0bec2892e15880a697f6754c6966b7795cf7ba4553f59fb387e7 languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-browser@npm:2.0.16" - dependencies: - "@smithy/eventstream-serde-universal": ^2.0.16 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: d5517ccc486361f0a5f2b3fc1a68a8667c00fa29e1152390f1ca1fccc4c5c2d4bd7621a2bee642ae2375873bd51a2c0e4830540b074c7e754c260ff8ed898060 +"@prisma/engines@npm:4.11.0": + version: 4.11.0 + resolution: "@prisma/engines@npm:4.11.0" + checksum: 98030cead39e5009b7a91fd2463433ccdb16cbeb6c7345ed7950c25dbe0731a425fc888458a1423b594d659972e081ca3d63d301ef647f05a634209c75769db2 languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/eventstream-serde-browser@npm:3.0.0" - dependencies: - "@smithy/eventstream-serde-universal": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: b2d235085e19a0ada96ed27fd52a4d33ab34a8c029bfb839a9a406935ffed72a6e970ba020c1129493b54ebd336344234fa4bac90af25975963ec74a2034f5c2 +"@protobufjs/aspromise@npm:^1.1.1, @protobufjs/aspromise@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/aspromise@npm:1.1.2" + checksum: 011fe7ef0826b0fd1a95935a033a3c0fd08483903e1aa8f8b4e0704e3233406abb9ee25350ec0c20bbecb2aad8da0dcea58b392bbd77d6690736f02c143865d2 languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^3.0.2": - version: 3.0.3 - resolution: "@smithy/eventstream-serde-browser@npm:3.0.3" - dependencies: - "@smithy/eventstream-serde-universal": ^3.0.3 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 3e41fb32f06dc266ab41185482e441068c1e84ac5637462fc107511a495a7338972f10568bb57970e22eef2d14e024f93e0991b30b54545bca5b5189add5d41e +"@protobufjs/base64@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/base64@npm:1.1.2" + checksum: 67173ac34de1e242c55da52c2f5bdc65505d82453893f9b51dc74af9fe4c065cf4a657a4538e91b0d4a1a1e0a0642215e31894c31650ff6e3831471061e1ee9e languageName: node linkType: hard -"@smithy/eventstream-serde-browser@npm:^3.0.4": - version: 3.0.5 - resolution: "@smithy/eventstream-serde-browser@npm:3.0.5" - dependencies: - "@smithy/eventstream-serde-universal": ^3.0.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 14e8a2027745e7a1ad261068e792e4a660043ce53fefc5f564b38b841ba02d40992b38fbd2357e762f0a1ecb658df3bbf23cf5ef33c3ec2488d316be95b61b9e +"@protobufjs/codegen@npm:^2.0.4": + version: 2.0.4 + resolution: "@protobufjs/codegen@npm:2.0.4" + checksum: 59240c850b1d3d0b56d8f8098dd04787dcaec5c5bd8de186fa548de86b86076e1c50e80144b90335e705a044edf5bc8b0998548474c2a10a98c7e004a1547e4b languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^2.0.10": - version: 2.0.11 - resolution: "@smithy/eventstream-serde-config-resolver@npm:2.0.11" - dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 7d842ab83182a64fa24f5f1c58dd209119ab5f954fc38223b599d5040e66f4d407d36d03fb955378db380120ba2745671ec722f8c1b887c843b24659158ed029 +"@protobufjs/eventemitter@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/eventemitter@npm:1.1.0" + checksum: 0369163a3d226851682f855f81413cbf166cd98f131edb94a0f67f79e75342d86e89df9d7a1df08ac28be2bc77e0a7f0200526bb6c2a407abbfee1f0262d5fd7 languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-config-resolver@npm:2.0.16" +"@protobufjs/fetch@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/fetch@npm:1.1.0" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 90f0d30c1a0c46261102c6be6884c70cccc6bbdc44267877884fc96c23f1ee1068e8dea5c8862ecab6bda7d1a889a9d886328b0f25551971ee87a9201409f405 + "@protobufjs/aspromise": ^1.1.1 + "@protobufjs/inquire": ^1.1.0 + checksum: 3fce7e09eb3f1171dd55a192066450f65324fd5f7cc01a431df01bb00d0a895e6bfb5b0c5561ce157ee1d886349c90703d10a4e11a1a256418ff591b969b3477 languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.0" - dependencies: - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: cc9e21af4a42a008897e4e34c40792021c105cc7a2c164719f27ed5cfadf3997bf529e12df9e3c980e62f756ecbdb5aa9a31c8d5b162d622825447b1984cf6e4 +"@protobufjs/float@npm:^1.0.2": + version: 1.0.2 + resolution: "@protobufjs/float@npm:1.0.2" + checksum: 5781e1241270b8bd1591d324ca9e3a3128d2f768077a446187a049e36505e91bc4156ed5ac3159c3ce3d2ba3743dbc757b051b2d723eea9cd367bfd54ab29b2f languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^3.0.1": - version: 3.0.2 - resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.2" - dependencies: - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 5c2113b6acc65df61f6fc844054c5a85825305e1d9f47987a5f350b603e304c8d90ad2c62cb7a098f10b7243c4f466fa413264821d261a3b69dc12c33fa976d4 +"@protobufjs/inquire@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/inquire@npm:1.1.0" + checksum: ca06f02eaf65ca36fb7498fc3492b7fc087bfcc85c702bac5b86fad34b692bdce4990e0ef444c1e2aea8c034227bd1f0484be02810d5d7e931c55445555646f4 languageName: node linkType: hard -"@smithy/eventstream-serde-config-resolver@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/eventstream-serde-config-resolver@npm:3.0.3" - dependencies: - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: c61780aa0ad8c479618d0b3fcb2b42f1f9a74dcf814dba08305107ed1f088f56aa1c346db9c72439ff18617f31b9c59c6895060e4c9765c81d759150a22674af +"@protobufjs/path@npm:^1.1.2": + version: 1.1.2 + resolution: "@protobufjs/path@npm:1.1.2" + checksum: 856eeb532b16a7aac071cacde5c5620df800db4c80cee6dbc56380524736205aae21e5ae47739114bf669ab5e8ba0e767a282ad894f3b5e124197cb9224445ee languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^2.0.10": - version: 2.0.11 - resolution: "@smithy/eventstream-serde-node@npm:2.0.11" - dependencies: - "@smithy/eventstream-serde-universal": ^2.0.11 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 67dd0fb8dbf411a531cf6a914a73e2ac5c7f13842531b22132c2d1bf2ab1f575e704a33889ed6ef487c2ebd0f58abcff9b319a313cccceefce0e306f1aa961d8 +"@protobufjs/pool@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/pool@npm:1.1.0" + checksum: d6a34fbbd24f729e2a10ee915b74e1d77d52214de626b921b2d77288bd8f2386808da2315080f2905761527cceffe7ec34c7647bd21a5ae41a25e8212ff79451 languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-node@npm:2.0.16" - dependencies: - "@smithy/eventstream-serde-universal": ^2.0.16 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 00f5eb3d4e66e0ad3986cd7e90cbf8f0bd965349073eda7fedd058fe6a638e34a107906308fa891fcf56cec45d0c369f07a7eb167dd055214f389c9f463c7747 +"@protobufjs/utf8@npm:^1.1.0": + version: 1.1.0 + resolution: "@protobufjs/utf8@npm:1.1.0" + checksum: f9bf3163d13aaa3b6f5e6fbf37a116e094ea021c0e1f2a7ccd0e12a29e2ce08dafba4e8b36e13f8ed7397e1591610ce880ed1289af4d66cf4ace8a36a9557278 languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/eventstream-serde-node@npm:3.0.0" +"@puppeteer/browsers@npm:2.3.0": + version: 2.3.0 + resolution: "@puppeteer/browsers@npm:2.3.0" dependencies: - "@smithy/eventstream-serde-universal": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: b9d0f24454ee1e459587cbc3e1fe9aa6fac31cf2175da022c2cb3a84587dfa838f980c6a58d63216bd1c8ad77f2b03733b16f3a597c8e068a6b1847d46ba77f6 + debug: ^4.3.5 + extract-zip: ^2.0.1 + progress: ^2.0.3 + proxy-agent: ^6.4.0 + semver: ^7.6.3 + tar-fs: ^3.0.6 + unbzip2-stream: ^1.4.3 + yargs: ^17.7.2 + bin: + browsers: lib/cjs/main-cli.js + checksum: dbfae1f0a3cb5ee07711eb0247d5f61039989094858989cede3f86bfef59224c72df17a1b898266e5ba7c6a7032ab647c59ad3df8f76771ef65d8974a3f93f19 languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^3.0.2": - version: 3.0.3 - resolution: "@smithy/eventstream-serde-node@npm:3.0.3" +"@qdrant/js-client-rest@npm:^1.8.2, @qdrant/js-client-rest@npm:^1.9.0": + version: 1.9.0 + resolution: "@qdrant/js-client-rest@npm:1.9.0" dependencies: - "@smithy/eventstream-serde-universal": ^3.0.3 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 29e2323b92a87302518ecfd75096e856c77a3d39ffa2680ff56e11c2c01b4434f56f86940e13c636e207af7cadf867f824f5c60249c53e1c27faa1cf932b6eb9 + "@qdrant/openapi-typescript-fetch": 1.2.6 + "@sevinf/maybe": 0.5.0 + undici: ~5.28.4 + peerDependencies: + typescript: ">=4.7" + checksum: 3ac6526a961f85e96eaa0cd17059cafcca208c7aaa6df96fa99caab75c53c79903eafa611be99b52732970f4bef65d93922537916194fe0b9edf0f256e42fa9a languageName: node linkType: hard -"@smithy/eventstream-serde-node@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/eventstream-serde-node@npm:3.0.4" - dependencies: - "@smithy/eventstream-serde-universal": ^3.0.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 0a75b184d95ab8c08efd93bf32c5fd9d735b5879df556599bd2ab78f23e3f77452e597bbdd42586c9bbedcc2b0b7683de4c816db739c19a2ebd62a34096ca86d +"@qdrant/openapi-typescript-fetch@npm:1.2.6": + version: 1.2.6 + resolution: "@qdrant/openapi-typescript-fetch@npm:1.2.6" + checksum: 038c26b64da656ec6c16a92c2d90ad13bb154312ea0442f49c476d31ba66e7ac43344dcc3e580980c0bfba9ad37266f4341c254fb648197f92872e694b9205d7 languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/eventstream-serde-universal@npm:2.0.11" +"@raycast/api@npm:^1.83.1": + version: 1.83.1 + resolution: "@raycast/api@npm:1.83.1" dependencies: - "@smithy/eventstream-codec": ^2.0.11 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: da9f26a4b6a9cbeed4f017776b6d7455f4cb591ca6a85693a8b1e4de3be25b66d44c93284372ad6f709442a01c9940264da431ad0d998b5c21b7b135ccbd938f + "@types/node": ^20.8.10 + "@types/react": ^18.3.3 + react: 18.3.1 + peerDependencies: + "@types/node": 20.8.10 + "@types/react": 18.3.3 + react-devtools: 5.2.0 + peerDependenciesMeta: + "@types/node": + optional: true + "@types/react": + optional: true + react-devtools: + optional: true + bin: + ray: bin/ray + checksum: 166ee04610ea90c327da9ea898fec474cd14b9b83e2205447b979edd4d6e36682e6b0121c238a8380439a932e5d6654b63e2afb17ea408c85fe8066f1a8e3070 languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/eventstream-serde-universal@npm:2.0.16" - dependencies: - "@smithy/eventstream-codec": ^2.0.16 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 89bac869391816b77746801b4acea4b4184d922c6bbfe6c24b5ac640c6769b7a2634193be940e9d651d4be9ceb88d28a40dc25a4b61b81461055b99c8856e336 +"@redis/bloom@npm:1.2.0": + version: 1.2.0 + resolution: "@redis/bloom@npm:1.2.0" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: 8c214227287d6b278109098bca00afc601cf84f7da9c6c24f4fa7d3854b946170e5893aa86ed607ba017a4198231d570541c79931b98b6d50b262971022d1d6c languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/eventstream-serde-universal@npm:3.0.0" +"@redis/client@npm:1.5.14": + version: 1.5.14 + resolution: "@redis/client@npm:1.5.14" dependencies: - "@smithy/eventstream-codec": ^3.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: f833757a8c11d2d23365f15a0f47bd8d6d20f947bbbb80595dd88c63d5dbc62463d2189e23931e7730e73ad3f7b4eb960dd6f84648b52e5d0217854e4bf5afa7 + cluster-key-slot: 1.1.2 + generic-pool: 3.9.0 + yallist: 4.0.0 + checksum: f401997c6df92055c1a59385ed2fed7ee9295860f39935821107ea2570f76168dd1b25b71a3b37b9bbfaba26a9d18080d6bcd101a4bfc3852f72cc20576c6e7d languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/eventstream-serde-universal@npm:3.0.3" +"@redis/client@npm:1.5.7": + version: 1.5.7 + resolution: "@redis/client@npm:1.5.7" dependencies: - "@smithy/eventstream-codec": ^3.1.1 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 6c0c3602e3e79bb0abe47f1d7b8c277f58879ab613cda99d80cf0e825653055f892daee313e6d40e5096932e004838e3c9f674e440b97921520257f80337bed8 + cluster-key-slot: 1.1.2 + generic-pool: 3.9.0 + yallist: 4.0.0 + checksum: 3ded14d947b1aba9121fb2608c99960d89716b1ef9baf48ef68384a30fc8e2fe2f1be7a959247d81e7ce15a38ea9e3fce512f3fdce5a400da88dc96496b09e89 languageName: node linkType: hard -"@smithy/eventstream-serde-universal@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/eventstream-serde-universal@npm:3.0.4" - dependencies: - "@smithy/eventstream-codec": ^3.1.2 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 8463403ca4caf4ad48dba89b126f394439a289c9095ce6361c1f186c6021c1cd8ea402d1ce06b7284069c3415091ae4d802f66ded1b89e9da9d4c255b8402668 +"@redis/graph@npm:1.1.0": + version: 1.1.0 + resolution: "@redis/graph@npm:1.1.0" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: d3df807108a42929ed65269c691fe6ab7eda55de91318f02a22b2d637c1bfef8817fccd17025904f5a0be8cf1cea5941334ec9f10719336da5d8f1c54cd4997e languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^2.0.2, @smithy/fetch-http-handler@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/fetch-http-handler@npm:2.0.3" - dependencies: - "@smithy/protocol-http": ^2.0.3 - "@smithy/querystring-builder": ^2.0.3 - "@smithy/types": ^2.2.0 - "@smithy/util-base64": ^2.0.0 - tslib: ^2.5.0 - checksum: df86d549f510a2499b49976f3c5d9487c4f95c1ade60b99d417dcc294d331be0bcf9ef2a4340f9f6ea2689610af411e3905edd4d329a4fff7baf4f6b8d3bcae3 +"@redis/graph@npm:1.1.1": + version: 1.1.1 + resolution: "@redis/graph@npm:1.1.1" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: caf9b9a3ff82a08ae543c356a3fed548399ae79aba5ed08ce6cf1b522b955eb5cee4406b0ed0c6899345f8fbc06dfd6cd51304ae8422c3ebbc468f53294dc509 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^2.2.1": - version: 2.2.1 - resolution: "@smithy/fetch-http-handler@npm:2.2.1" - dependencies: - "@smithy/protocol-http": ^3.0.6 - "@smithy/querystring-builder": ^2.0.10 - "@smithy/types": ^2.3.4 - "@smithy/util-base64": ^2.0.0 - tslib: ^2.5.0 - checksum: f4c59138e0b274778a827872633794ddcaec8022d341789fd8ff50075d24c3ab077bff0b1ad7a562bdd183a67826e3619731468e4e30c688c1db9e411ddbe046 +"@redis/json@npm:1.0.4": + version: 1.0.4 + resolution: "@redis/json@npm:1.0.4" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: de07f9c37abed603dec352593eb69fc8a94475e7f86b4f65b9805394492d448a1e4181db74269d80eb9dba6f3ae8a41804204821db36bb801cd7c1e30ac7ec80 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^2.2.2": - version: 2.2.2 - resolution: "@smithy/fetch-http-handler@npm:2.2.2" - dependencies: - "@smithy/protocol-http": ^3.0.7 - "@smithy/querystring-builder": ^2.0.11 - "@smithy/types": ^2.3.5 - "@smithy/util-base64": ^2.0.0 - tslib: ^2.5.0 - checksum: 598d6869e680d8b8ca827c5a985eb4a0886cc0dca8e3a939f1d0be5c6c386e651d79f5f4ffe0ea3b9ebf871856a5930dcf4c8b01a9ed018046e5e92902c09621 +"@redis/json@npm:1.0.6": + version: 1.0.6 + resolution: "@redis/json@npm:1.0.6" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: 9fda29abc339c72593f34a23f8023b715c1f8f3d73f7c59889af02f25589bac2ad57073ad08d0b8da42cd8c258665a7b38d39e761e92945cc27aca651c8a93a5 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^2.3.2": - version: 2.3.2 - resolution: "@smithy/fetch-http-handler@npm:2.3.2" - dependencies: - "@smithy/protocol-http": ^3.0.12 - "@smithy/querystring-builder": ^2.0.16 - "@smithy/types": ^2.8.0 - "@smithy/util-base64": ^2.0.1 - tslib: ^2.5.0 - checksum: 883fcfae5ffcc616229dc982a48bf6c44984f652f2ef4ca9d233bfb3c4726fbb54e6a39d78fc410fda718c22a0a0e72a5207a4a4e202755c1ccd8760a0d1d821 +"@redis/search@npm:1.1.2": + version: 1.1.2 + resolution: "@redis/search@npm:1.1.2" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: fc3c0bd62c150ea7f8b3f08b0e67893b4e8df71b4820d750de6ba00ccff3720fdc5d4f50618e385c9e183c784635185e2e98a3e6c3d20ac30f2c60996f38b992 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/fetch-http-handler@npm:3.0.1" - dependencies: - "@smithy/protocol-http": ^4.0.0 - "@smithy/querystring-builder": ^3.0.0 - "@smithy/types": ^3.0.0 - "@smithy/util-base64": ^3.0.0 - tslib: ^2.6.2 - checksum: ddb6e1ad989f5f02e7af7ea17a2f8e742f99e53358d64c57803a4fa9dd12e2a4a1c5c5ff69e912937bed661a6a4c583eb184c5e159be720170b686d66647dd01 +"@redis/search@npm:1.1.6": + version: 1.1.6 + resolution: "@redis/search@npm:1.1.6" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: 0d87e6a9e40e62e46064ccfccca9a5ba7ce608890740415008acb1e83a02690edf37ac1ee878bcc0702d30a2eeba7776e7b467b71f87d8e7b278f38637161e16 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^3.0.2, @smithy/fetch-http-handler@npm:^3.1.0": - version: 3.1.0 - resolution: "@smithy/fetch-http-handler@npm:3.1.0" - dependencies: - "@smithy/protocol-http": ^4.0.2 - "@smithy/querystring-builder": ^3.0.2 - "@smithy/types": ^3.2.0 - "@smithy/util-base64": ^3.0.0 - tslib: ^2.6.2 - checksum: 7b9b928e8a094e41a9c7516aa2fcfd3bb88b0271737e1d4fa301973a49f577094fa967ba481a0cf6e5c977be6bb8b2898d868b3269a476cae2aaaed582277733 +"@redis/time-series@npm:1.0.4": + version: 1.0.4 + resolution: "@redis/time-series@npm:1.0.4" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: a5fca079deb04a2f204a7f9a375a6ff698a119d5dd53f7581fa8fd9e3bacacf1ecb0253b97fada484a012fea7a98014bc0f4f79707d4e92ff61c00318f2bfe04 languageName: node linkType: hard -"@smithy/fetch-http-handler@npm:^3.2.2": - version: 3.2.2 - resolution: "@smithy/fetch-http-handler@npm:3.2.2" - dependencies: - "@smithy/protocol-http": ^4.0.4 - "@smithy/querystring-builder": ^3.0.3 - "@smithy/types": ^3.3.0 - "@smithy/util-base64": ^3.0.0 - tslib: ^2.6.2 - checksum: ec7f0d648d0bb2e674ca6fda040357c462833825bba6d2b1549de4b6a8d0ffdd17d6effb2dbd56241b58e76f3e7c1afba5f321f3d592c39bf5007b89e9197875 +"@redis/time-series@npm:1.0.5": + version: 1.0.5 + resolution: "@redis/time-series@npm:1.0.5" + peerDependencies: + "@redis/client": ^1.0.0 + checksum: 6bbdb0b793dcbd13518aa60a09a980f953554e4c745bfacc1611baa8098f360e0378e8ee6b7faf600a67f1de83f4b68bbec6f95a0740faee6164c14be3a30752 languageName: node linkType: hard -"@smithy/hash-node@npm:^2.0.10": - version: 2.0.11 - resolution: "@smithy/hash-node@npm:2.0.11" - dependencies: - "@smithy/types": ^2.3.5 - "@smithy/util-buffer-from": ^2.0.0 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 004e3e55ed9397cd551f6ab5fb3164359e5f7ce8c0299993237fe573b47c490ba6cb10da01d006b59c6adb5e972311d7837acd16921772f0b534136c741a2938 +"@reflink/reflink-darwin-arm64@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-darwin-arm64@npm:0.1.16" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@smithy/hash-node@npm:^2.0.18": - version: 2.0.18 - resolution: "@smithy/hash-node@npm:2.0.18" - dependencies: - "@smithy/types": ^2.8.0 - "@smithy/util-buffer-from": ^2.0.0 - "@smithy/util-utf8": ^2.0.2 - tslib: ^2.5.0 - checksum: 1f40ae7b38808b1836c8e166f5182fcbc09423a833728943ab1edbc019dbd83323c9a08a29a2d73cd4ed5b3483e87158f8d4cc8ee5c6c88909c1dcde9a1b9826 +"@reflink/reflink-darwin-x64@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-darwin-x64@npm:0.1.16" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@smithy/hash-node@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/hash-node@npm:2.0.3" - dependencies: - "@smithy/types": ^2.2.0 - "@smithy/util-buffer-from": ^2.0.0 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 58c122b6a749fe839449c48c643560168d50ee5e08b9d7bdf8d133aa69fbb4f9cb7fbaa80a676ebcf2be14557ac947b1ab317bc75bffc4b9447ad541dc541b9d +"@reflink/reflink-linux-arm64-gnu@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-linux-arm64-gnu@npm:0.1.16" + conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@smithy/hash-node@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/hash-node@npm:3.0.0" - dependencies: - "@smithy/types": ^3.0.0 - "@smithy/util-buffer-from": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 - tslib: ^2.6.2 - checksum: ef2520c1e5c7dc7669a2870881edaa9fac07e2bffa300d2434d599453dbce1b0c5239de6fb6d55f121a467e144a1f5c6d7f8d1ddf4547ce86d3e81827289752d +"@reflink/reflink-linux-arm64-musl@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-linux-arm64-musl@npm:0.1.16" + conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@smithy/hash-node@npm:^3.0.1": - version: 3.0.2 - resolution: "@smithy/hash-node@npm:3.0.2" - dependencies: - "@smithy/types": ^3.2.0 - "@smithy/util-buffer-from": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 - tslib: ^2.6.2 - checksum: 2b7b678d429b9806a28f18472f8beec45f5a2e1d004b084cc4b591c1239565c46435b278c7f76be09790d6d6eabc617e7d0f3aef11c375721b78600506d62856 +"@reflink/reflink-linux-x64-gnu@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-linux-x64-gnu@npm:0.1.16" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@smithy/hash-node@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/hash-node@npm:3.0.3" - dependencies: - "@smithy/types": ^3.3.0 - "@smithy/util-buffer-from": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 - tslib: ^2.6.2 - checksum: 203a3581bec5373e63d42e03f62129022f03d17390e9358a4e25fc1d44c43962ea80ab5bcbb91605e3025e22136bed059665a3b16835f66316f43ed391df9548 +"@reflink/reflink-linux-x64-musl@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-linux-x64-musl@npm:0.1.16" + conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^2.0.10": - version: 2.0.11 - resolution: "@smithy/invalid-dependency@npm:2.0.11" - dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 672c8aa38f406afb6c8574eab80b619f9444739abadf166c822a1337db6ddccdb0deb5095d5c42eaa3881f37fc689f537888ea188ffc3a090c45be7206990d26 +"@reflink/reflink-win32-arm64-msvc@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-win32-arm64-msvc@npm:0.1.16" + conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/invalid-dependency@npm:2.0.16" - dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 1ddc4dfb3740fb6229d20d3074e0c59a6ebafd1f3b31f01eb630fc5ee360e60f495773cae6fc5d357873b6b34ab2d89d58b0887fea4e57f1e1f26d02ab234e5c +"@reflink/reflink-win32-x64-msvc@npm:0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink-win32-x64-msvc@npm:0.1.16" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/invalid-dependency@npm:2.0.3" +"@reflink/reflink@npm:^0.1.16": + version: 0.1.16 + resolution: "@reflink/reflink@npm:0.1.16" dependencies: - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: 3f65f9807f1e5220cb3d7fff069fa61908e84319f160de7fd5c7868386e78dbb7b9bba030ff2c0d6898be7594ef796cb79f6826c210576acc3793df1e2777150 + "@reflink/reflink-darwin-arm64": 0.1.16 + "@reflink/reflink-darwin-x64": 0.1.16 + "@reflink/reflink-linux-arm64-gnu": 0.1.16 + "@reflink/reflink-linux-arm64-musl": 0.1.16 + "@reflink/reflink-linux-x64-gnu": 0.1.16 + "@reflink/reflink-linux-x64-musl": 0.1.16 + "@reflink/reflink-win32-arm64-msvc": 0.1.16 + "@reflink/reflink-win32-x64-msvc": 0.1.16 + dependenciesMeta: + "@reflink/reflink-darwin-arm64": + optional: true + "@reflink/reflink-darwin-x64": + optional: true + "@reflink/reflink-linux-arm64-gnu": + optional: true + "@reflink/reflink-linux-arm64-musl": + optional: true + "@reflink/reflink-linux-x64-gnu": + optional: true + "@reflink/reflink-linux-x64-musl": + optional: true + "@reflink/reflink-win32-arm64-msvc": + optional: true + "@reflink/reflink-win32-x64-msvc": + optional: true + checksum: dcc35c4a63d79a5126c5405d6e034e022c6639372486ed98ab93c1d5dd5620660adedf8f075356f9f7fbb15719b646765404d859cc188b5d124fa16b90bcf750 languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/invalid-dependency@npm:3.0.0" +"@rockset/client@npm:^0.9.1": + version: 0.9.1 + resolution: "@rockset/client@npm:0.9.1" dependencies: - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 3227d5d8ba49d6ca09f95215614d41b75a717985ac2f5c4caa5c082dc87e1a510e1d1af738fe27cdb93c8425a189b2ec74a7d57d949cefa8cbcd62ed83ceb798 + "@types/node-fetch": ^2.5.3 + fetch-ponyfill: ^7.1.0 + node-fetch: ^2.6.7 + url: ^0.11.0 + checksum: eed056b229d47ba0de4e092c1157061c0602ae62f9a650a8a089a1977a86f40a9465d8286ca5fc7075d315f0444d60ea13d39e39934373472e7dc9c72f6375fc languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^3.0.1": - version: 3.0.2 - resolution: "@smithy/invalid-dependency@npm:3.0.2" +"@rollup/plugin-inject@npm:^5.0.5": + version: 5.0.5 + resolution: "@rollup/plugin-inject@npm:5.0.5" dependencies: - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 21f0f2669989d9b8ffdc86e80fa8d0a39b5ada187a21c61bc4405936a31fa054a59577fa8fde4de707de559cc3e08c80aaac0205aaacf0eaf3a2ff620fa12830 + "@rollup/pluginutils": ^5.0.1 + estree-walker: ^2.0.2 + magic-string: ^0.30.3 + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + checksum: 22cb772fd6f7178308b2ece95cdde5f8615f6257197832166294552a7e4c0d3976dc996cbfa6470af3151d8b86c00091aa93da5f4db6ec563f11b6db29fd1b63 languageName: node linkType: hard -"@smithy/invalid-dependency@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/invalid-dependency@npm:3.0.3" +"@rollup/plugin-json@npm:^6.1.0": + version: 6.1.0 + resolution: "@rollup/plugin-json@npm:6.1.0" dependencies: - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 459b4ae4e47595e8a675ff2e8bfea7f58a41f77138416ea310c89e29312e08963a701cdc354324da9dd578a7995158b4421695365070d74b0276ddff7f701bba + "@rollup/pluginutils": ^5.1.0 + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + checksum: cc018d20c80242a2b8b44fae61a968049cf31bb8406218187cc7cda35747616594e79452dd65722e7da6dd825b392e90d4599d43cd4461a02fefa2865945164e languageName: node linkType: hard -"@smithy/is-array-buffer@npm:^1.1.0": - version: 1.1.0 - resolution: "@smithy/is-array-buffer@npm:1.1.0" +"@rollup/pluginutils@npm:^5.0.1, @rollup/pluginutils@npm:^5.1.0": + version: 5.1.0 + resolution: "@rollup/pluginutils@npm:5.1.0" dependencies: - tslib: ^2.5.0 - checksum: 39b2a177b5d98f1adb2e44c363be2f4f335b698e9803f5ffb4c6d32e5d51543f29daf90b9ee99d8833446561dfe1b8dc3464852970b90bb6c00655a425fc3ac2 + "@types/estree": ^1.0.0 + estree-walker: ^2.0.2 + picomatch: ^2.3.1 + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + checksum: 3cc5a6d91452a6eabbfd1ae79b4dd1f1e809d2eecda6e175deb784e75b0911f47e9ecce73f8dd315d6a8b3f362582c91d3c0f66908b6ced69345b3cbe28f8ce8 languageName: node linkType: hard -"@smithy/is-array-buffer@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/is-array-buffer@npm:2.0.0" - dependencies: - tslib: ^2.5.0 - checksum: 6d101cf509a7818667f42d297894f88f86ef41d3cc9d02eae38bbe5e69b16edf83b8e67eb691964d859a16a4e39db1aad323d83f6ae55ae4512a14ff6406c02d +"@rollup/rollup-android-arm-eabi@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-android-arm-eabi@npm:4.8.0" + conditions: os=android & cpu=arm languageName: node linkType: hard -"@smithy/is-array-buffer@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/is-array-buffer@npm:3.0.0" - dependencies: - tslib: ^2.6.2 - checksum: ce7440fcb1ce3c46722cff11c33e2f62a9df86d74fa2054a8e6b540302a91211cf6e4e3b1b7aac7030c6c8909158c1b6867c394201fa8afc6b631979956610e5 +"@rollup/rollup-android-arm64@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-android-arm64@npm:4.8.0" + conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^2.0.12": - version: 2.0.13 - resolution: "@smithy/middleware-content-length@npm:2.0.13" - dependencies: - "@smithy/protocol-http": ^3.0.7 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 153123236c1278fee1857bbc36c92f4fb4c7e35beb755ea13d1acdcdd697c3707eee069fc4999c67c6e009df48165986d778d62bac4251d8f126617c3e3f68f6 +"@rollup/rollup-darwin-arm64@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-darwin-arm64@npm:4.8.0" + conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^2.0.18": - version: 2.0.18 - resolution: "@smithy/middleware-content-length@npm:2.0.18" - dependencies: - "@smithy/protocol-http": ^3.0.12 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: bbbd3e69e065c1677150a61af2303c3fda35c7fce527fd594f63be00421daecb7fedfd135945b3ef8104cd5305367f7d8e235e704d6743c5fa5d6c0178a35de3 +"@rollup/rollup-darwin-x64@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-darwin-x64@npm:4.8.0" + conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/middleware-content-length@npm:2.0.3" - dependencies: - "@smithy/protocol-http": ^2.0.3 - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: 0d001a72b400ca114b7d1ca3f8481cd399dae8d5ecc7c8411ae8405365780d2d0a20b74af2963b784138d34c4edab71438a8ccb863650aca0e8fe1399e53debe +"@rollup/rollup-linux-arm-gnueabihf@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.8.0" + conditions: os=linux & cpu=arm languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/middleware-content-length@npm:3.0.0" - dependencies: - "@smithy/protocol-http": ^4.0.0 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 658474b9c10696f701ae32a741c357192d4e8e1f409855093a3660fa21d4785972f2ec1c6973d159a875437a414c4f6e64b2fd0e12a7242cb5d73679b3283667 +"@rollup/rollup-linux-arm64-gnu@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.8.0" + conditions: os=linux & cpu=arm64 & libc=glibc languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^3.0.1": - version: 3.0.2 - resolution: "@smithy/middleware-content-length@npm:3.0.2" - dependencies: - "@smithy/protocol-http": ^4.0.2 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 67758207c3a26eb6d44fd922d178299418fc42a07937813364a17a76547bf736df75d279cb493fca9ac5c3897c0c8d24c6e124f3edc143c991a26b44521eb423 +"@rollup/rollup-linux-arm64-musl@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-linux-arm64-musl@npm:4.8.0" + conditions: os=linux & cpu=arm64 & libc=musl languageName: node linkType: hard -"@smithy/middleware-content-length@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/middleware-content-length@npm:3.0.4" - dependencies: - "@smithy/protocol-http": ^4.0.4 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 462ed3511b5cf849d272c4a6e1a1b72f6f676252e208ebd652528e3d45f132859cbcbcf9e8cb127680fbbc587ab35965225fd7421a3711f4d125738b3e7f528e +"@rollup/rollup-linux-riscv64-gnu@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.8.0" + conditions: os=linux & cpu=riscv64 & libc=glibc languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^2.0.10": - version: 2.0.11 - resolution: "@smithy/middleware-endpoint@npm:2.0.11" - dependencies: - "@smithy/middleware-serde": ^2.0.11 - "@smithy/types": ^2.3.5 - "@smithy/url-parser": ^2.0.11 - "@smithy/util-middleware": ^2.0.4 - tslib: ^2.5.0 - checksum: 71f30981733e96a3c5b8e2afea1b2f969c4ff72def41225570420ed43aeafa1e90c85b08811a6f66e43ac7ab5f54441148bce6bb50f6b929705602569ff026c0 +"@rollup/rollup-linux-x64-gnu@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-linux-x64-gnu@npm:4.8.0" + conditions: os=linux & cpu=x64 & libc=glibc languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/middleware-endpoint@npm:2.0.3" - dependencies: - "@smithy/middleware-serde": ^2.0.3 - "@smithy/types": ^2.2.0 - "@smithy/url-parser": ^2.0.3 - "@smithy/util-middleware": ^2.0.0 - tslib: ^2.5.0 - checksum: ed0faa6284d60d81331ea3b8beb469e142ca9f5ac836f3366061cb58cba7822c33d9670b7f6f32442bcc5b6ce1f6da0913750b68d4db6e5c5b173f59892e0150 +"@rollup/rollup-linux-x64-musl@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-linux-x64-musl@npm:4.8.0" + conditions: os=linux & cpu=x64 & libc=musl languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^2.3.0": - version: 2.3.0 - resolution: "@smithy/middleware-endpoint@npm:2.3.0" - dependencies: - "@smithy/middleware-serde": ^2.0.16 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/shared-ini-file-loader": ^2.2.8 - "@smithy/types": ^2.8.0 - "@smithy/url-parser": ^2.0.16 - "@smithy/util-middleware": ^2.0.9 - tslib: ^2.5.0 - checksum: 07512e57190dd9a063359934d6c688bfdc3849657a3d7b91a4194d4b19ca94ad67a5344f0418462147b105ce6d7d8adc895a1ac9d6aefc80937643cdea70e14e +"@rollup/rollup-win32-arm64-msvc@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.8.0" + conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/middleware-endpoint@npm:3.0.0" - dependencies: - "@smithy/middleware-serde": ^3.0.0 - "@smithy/node-config-provider": ^3.0.0 - "@smithy/shared-ini-file-loader": ^3.0.0 - "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: a1be07b91f4ddcd6b5358bb8b43529756a80aefb451bd95b2d69e5743229ad7c8d55eed0ad73225301b833dd05173760fa0453891640d4407b4d8f4006c566f5 +"@rollup/rollup-win32-ia32-msvc@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.8.0" + conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/middleware-endpoint@npm:3.0.1" - dependencies: - "@smithy/middleware-serde": ^3.0.0 - "@smithy/node-config-provider": ^3.1.0 - "@smithy/shared-ini-file-loader": ^3.1.0 - "@smithy/types": ^3.0.0 - "@smithy/url-parser": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - tslib: ^2.6.2 - checksum: e50858a46168368e8286e91f813ab77117aba16f4d778858bc43b2f42890e4566630858bc4dbb1a15c6c12e7706a806e0e8576db6b27c3ff8c3509fc495aa95f +"@rollup/rollup-win32-x64-msvc@npm:4.8.0": + version: 4.8.0 + resolution: "@rollup/rollup-win32-x64-msvc@npm:4.8.0" + conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^3.0.2, @smithy/middleware-endpoint@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/middleware-endpoint@npm:3.0.3" +"@rollup/wasm-node@npm:^4.19.0": + version: 4.19.0 + resolution: "@rollup/wasm-node@npm:4.19.0" dependencies: - "@smithy/middleware-serde": ^3.0.2 - "@smithy/node-config-provider": ^3.1.2 - "@smithy/shared-ini-file-loader": ^3.1.2 - "@smithy/types": ^3.2.0 - "@smithy/url-parser": ^3.0.2 - "@smithy/util-middleware": ^3.0.2 - tslib: ^2.6.2 - checksum: 15a37293aa590bd0c8ab59430e967f786500603bca92dbde655480c3b7c1812a8cbcd267ff31691c2d8ea596f7917769ef91fa4033e07ec9971bf252fc12ebcd + "@types/estree": 1.0.5 + fsevents: ~2.3.2 + dependenciesMeta: + fsevents: + optional: true + bin: + rollup: dist/bin/rollup + checksum: c84a1e35296b95a80d9b587d8632ddb518083213548caf1292a782794a7439921d224deaa99a7f14cede99ce15a60d03ab6c7b2e4f41c5746002c521dbcba555 languageName: node linkType: hard -"@smithy/middleware-endpoint@npm:^3.0.5": - version: 3.0.5 - resolution: "@smithy/middleware-endpoint@npm:3.0.5" - dependencies: - "@smithy/middleware-serde": ^3.0.3 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/shared-ini-file-loader": ^3.1.4 - "@smithy/types": ^3.3.0 - "@smithy/url-parser": ^3.0.3 - "@smithy/util-middleware": ^3.0.3 - tslib: ^2.6.2 - checksum: 4ab0272efd47baa528a04c5413fb224e41be144902680239fffc83cf1fb7e9b5342e8b627a4149136efa2b29baacc84baa4dbcef5fd2fa55c70e169c7f4ba750 +"@rushstack/eslint-patch@npm:^1.3.3": + version: 1.5.1 + resolution: "@rushstack/eslint-patch@npm:1.5.1" + checksum: e4c25322312dbaa29e835a7ab4fbac53c8731dd0da65e46646e38945e296429e7fb91c2ef3da5af5d5938d44b0cde1d5290438ebb3dcb015e02b80b5e2530d24 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^2.0.13": - version: 2.0.16 - resolution: "@smithy/middleware-retry@npm:2.0.16" - dependencies: - "@smithy/node-config-provider": ^2.1.1 - "@smithy/protocol-http": ^3.0.7 - "@smithy/service-error-classification": ^2.0.4 - "@smithy/types": ^2.3.5 - "@smithy/util-middleware": ^2.0.4 - "@smithy/util-retry": ^2.0.4 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: 9348bf7663ad85469614bda8a672bc8a5a104137caf1f3eb77553462f52044d27b933be177f850abe202fb9b4e060f39982e85565d8caf164de6377ffba82272 +"@sapphire/async-queue@npm:^1.5.0": + version: 1.5.0 + resolution: "@sapphire/async-queue@npm:1.5.0" + checksum: 983dbd1fd1b1798496e5edb6a0db7e4d90015160e1028f20475eab0a92625513f1e8d938bc0305811a9cec461c94e01b1e4191615ff03ba49356f568f3255250 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/middleware-retry@npm:2.0.3" +"@sapphire/shapeshift@npm:^3.9.3": + version: 3.9.3 + resolution: "@sapphire/shapeshift@npm:3.9.3" dependencies: - "@smithy/protocol-http": ^2.0.3 - "@smithy/service-error-classification": ^2.0.0 - "@smithy/types": ^2.2.0 - "@smithy/util-middleware": ^2.0.0 - "@smithy/util-retry": ^2.0.0 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: 2675dcf8aa91c085dc97b467eac8438ce023c5e274ea15b6e6ee73b53c4ee6a328a6901ff464835dbd9379c8e5ef00d7df390571e9e8974dcb436f8f03efef33 + fast-deep-equal: ^3.1.3 + lodash: ^4.17.21 + checksum: f93ab924566dc20a066776128eeb3693b97a1576a359b61d396835541f2bf8ecb3f482ff406cc038a3a4bc266d5f9b9f9e1c733ddbf1cce2c97c729ce047b5e6 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^2.0.26": - version: 2.0.26 - resolution: "@smithy/middleware-retry@npm:2.0.26" - dependencies: - "@smithy/node-config-provider": ^2.1.9 - "@smithy/protocol-http": ^3.0.12 - "@smithy/service-error-classification": ^2.0.9 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - "@smithy/util-middleware": ^2.0.9 - "@smithy/util-retry": ^2.0.9 - tslib: ^2.5.0 - uuid: ^8.3.2 - checksum: e33d87b539776398e1b5af99e0a0659534194f691c16aaafc22c8ef0ee6fcc2568e3e8bbcb79ad9f114c164f956530b96393f3b25ee15773a23c3f8a5df00e62 +"@sapphire/snowflake@npm:3.5.1, @sapphire/snowflake@npm:^3.5.1": + version: 3.5.1 + resolution: "@sapphire/snowflake@npm:3.5.1" + checksum: 8fc025020adab1a7a1a5d2cf07704d598cc1977b50e5fcd3a5dd239f00934dc936d3a4d5ae336e71d8bf1d88ec27aa814b34de79e38ff097b7b9ba5a7977a683 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/middleware-retry@npm:3.0.1" +"@selderee/plugin-htmlparser2@npm:^0.11.0": + version: 0.11.0 + resolution: "@selderee/plugin-htmlparser2@npm:0.11.0" dependencies: - "@smithy/node-config-provider": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/service-error-classification": ^3.0.0 - "@smithy/smithy-client": ^3.0.1 - "@smithy/types": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - "@smithy/util-retry": ^3.0.0 - tslib: ^2.6.2 - uuid: ^9.0.1 - checksum: 33b1c5173ccbcbfd8127ef6009ec167d80fbd539cad35372b25a05b75b1a3b999bba39a3327a46916f41512d8ee4d3d6cfd56bbfdc36867118bee9cac4d94ab3 + domhandler: ^5.0.3 + selderee: ^0.11.0 + checksum: 6deafedd153e492359f8f0407d20903d82f2ef4950e420f4b2ee6ffbb955753524631aac7d6a5fe61dc7c7893e6928b4d8409e886157ad64a60ab37bc08b17c4 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.10, @smithy/middleware-retry@npm:^3.0.11": - version: 3.0.11 - resolution: "@smithy/middleware-retry@npm:3.0.11" - dependencies: - "@smithy/node-config-provider": ^3.1.4 - "@smithy/protocol-http": ^4.0.4 - "@smithy/service-error-classification": ^3.0.3 - "@smithy/smithy-client": ^3.1.9 - "@smithy/types": ^3.3.0 - "@smithy/util-middleware": ^3.0.3 - "@smithy/util-retry": ^3.0.3 - tslib: ^2.6.2 - uuid: ^9.0.1 - checksum: 4061f4823c949f5e9920b4840cfbc1472f38bac05cefc511a7731afa9372dab0fb238f48b6ce7a8d4d24fa966fa80f9eb7165d29fd90fd3854d72006f612d662 +"@sevinf/maybe@npm:0.5.0": + version: 0.5.0 + resolution: "@sevinf/maybe@npm:0.5.0" + checksum: 406151dde7af0e05c51f2650eb0ccff429afe776f88e7c3cecb72197f28eb96f906eacace17d780052ce5aa6d2cd4b04a045a5ffabe3364ad6cdb9dfe42af3eb languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/middleware-retry@npm:3.0.3" - dependencies: - "@smithy/node-config-provider": ^3.1.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/service-error-classification": ^3.0.0 - "@smithy/smithy-client": ^3.1.1 - "@smithy/types": ^3.0.0 - "@smithy/util-middleware": ^3.0.0 - "@smithy/util-retry": ^3.0.0 - tslib: ^2.6.2 - uuid: ^9.0.1 - checksum: ab499a129c901740f4c8372435029b466496bfba7b6f03e6e4b24a7bdad5fc82f0dce0401f1e425802e0fa6f90387a4303091c9a13d36e20c6e431d5fd7c63bc +"@shikijs/core@npm:1.10.1": + version: 1.10.1 + resolution: "@shikijs/core@npm:1.10.1" + checksum: b2aa039c05b46347d169118c6fe6ec3390ad70f1dc74e1ec46210c1caf4540976ca0d23a7d5c2a0114dff862b3bae5f6c215f95c052f4395d4cc6f96d194b8e9 languageName: node linkType: hard -"@smithy/middleware-retry@npm:^3.0.4, @smithy/middleware-retry@npm:^3.0.6": - version: 3.0.6 - resolution: "@smithy/middleware-retry@npm:3.0.6" +"@sideway/address@npm:^4.1.3": + version: 4.1.4 + resolution: "@sideway/address@npm:4.1.4" dependencies: - "@smithy/node-config-provider": ^3.1.2 - "@smithy/protocol-http": ^4.0.2 - "@smithy/service-error-classification": ^3.0.2 - "@smithy/smithy-client": ^3.1.4 - "@smithy/types": ^3.2.0 - "@smithy/util-middleware": ^3.0.2 - "@smithy/util-retry": ^3.0.2 - tslib: ^2.6.2 - uuid: ^9.0.1 - checksum: c17ac5665e0dd2315e996c219b5aa2327c9270a49ca7dc64b8d81c80261f9d0098d3725641f2e4c87aac293c283d709fb062b5c7be6912e72f9042492a3e91d9 + "@hapi/hoek": ^9.0.0 + checksum: b9fca2a93ac2c975ba12e0a6d97853832fb1f4fb02393015e012b47fa916a75ca95102d77214b2a29a2784740df2407951af8c5dde054824c65577fd293c4cdb languageName: node linkType: hard -"@smithy/middleware-serde@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/middleware-serde@npm:2.0.10" - dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 457c913057227a0da004a78b0ddb9c9eba3af9097597c87123a362cf092a818198f77de4e17011f39ec7f7c749a98af5b2671a1e9124230f7052a91086084c98 +"@sideway/formula@npm:^3.0.1": + version: 3.0.1 + resolution: "@sideway/formula@npm:3.0.1" + checksum: e4beeebc9dbe2ff4ef0def15cec0165e00d1612e3d7cea0bc9ce5175c3263fc2c818b679bd558957f49400ee7be9d4e5ac90487e1625b4932e15c4aa7919c57a languageName: node linkType: hard -"@smithy/middleware-serde@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/middleware-serde@npm:2.0.11" - dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 103e90731968036b2f5bc0bd9882d60de8831edafdb0229775c703b0713531829b06664ecf8e3090b915e52298f59415760c2446c3514e878f25acf9fe4008f7 +"@sideway/pinpoint@npm:^2.0.0": + version: 2.0.0 + resolution: "@sideway/pinpoint@npm:2.0.0" + checksum: 0f4491e5897fcf5bf02c46f5c359c56a314e90ba243f42f0c100437935daa2488f20482f0f77186bd6bf43345095a95d8143ecf8b1f4d876a7bc0806aba9c3d2 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/middleware-serde@npm:2.0.16" - dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 64cad569c02bfb53fda13189cb24db72e35e25de058a6d4b51d9e9c89bc97f7aba7373787fb48ad32226b3d3d012d1554378c7c22a3f162f61e8e3fc1d069f5e +"@sinclair/typebox@npm:^0.25.16": + version: 0.25.24 + resolution: "@sinclair/typebox@npm:0.25.24" + checksum: 10219c58f40b8414c50b483b0550445e9710d4fe7b2c4dccb9b66533dd90ba8e024acc776026cebe81e87f06fa24b07fdd7bc30dd277eb9cc386ec50151a3026 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^2.0.2, @smithy/middleware-serde@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/middleware-serde@npm:2.0.3" - dependencies: - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: d0bd591544dea6e5373be304aa3fc8ff2204a41c34f68acc63d160ccca15b14775d9b3e0bcbec8ad5853b7ed4345c1d549d6d8a31f15c7857472dbd2725e8ad8 +"@sinclair/typebox@npm:^0.27.8": + version: 0.27.8 + resolution: "@sinclair/typebox@npm:0.27.8" + checksum: 00bd7362a3439021aa1ea51b0e0d0a0e8ca1351a3d54c606b115fdcc49b51b16db6e5f43b4fe7a28c38688523e22a94d49dd31168868b655f0d4d50f032d07a1 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/middleware-serde@npm:3.0.0" - dependencies: - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 9520948ab8fbe50f17eb4fdc2065a068cc9b954c876c354c355cd729ad29790815c4acd4fdafe32456e81308ec2266d35e82aa69fedbcb0cad1981785fc87c25 +"@sindresorhus/is@npm:^0.14.0": + version: 0.14.0 + resolution: "@sindresorhus/is@npm:0.14.0" + checksum: 971e0441dd44ba3909b467219a5e242da0fc584048db5324cfb8048148fa8dcc9d44d71e3948972c4f6121d24e5da402ef191420d1266a95f713bb6d6e59c98a languageName: node linkType: hard -"@smithy/middleware-serde@npm:^3.0.1, @smithy/middleware-serde@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/middleware-serde@npm:3.0.2" - dependencies: - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 16c933ecb8061ff9fcf49ecabcc54b6d56de0e02464e5dd995ac729ad06e70be7a341c329b0b7cc1b33c8dbaa31372e337130e9eb6aac4c2df63ce37cb36d54f +"@sindresorhus/is@npm:^4.2.0": + version: 4.6.0 + resolution: "@sindresorhus/is@npm:4.6.0" + checksum: 83839f13da2c29d55c97abc3bc2c55b250d33a0447554997a85c539e058e57b8da092da396e252b11ec24a0279a0bed1f537fa26302209327060643e327f81d2 languageName: node linkType: hard -"@smithy/middleware-serde@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/middleware-serde@npm:3.0.3" - dependencies: - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 6c633bb8957e078d480888bd33d5a8c269a483a1358c2b28c62daecfd442c711c509d9e69302e6b19fc298139ee67cdda63a604e7da0e4ef9005117d8e0897cc +"@sindresorhus/is@npm:^5.2.0": + version: 5.3.0 + resolution: "@sindresorhus/is@npm:5.3.0" + checksum: b31cebabcdece3d5322de2a4dbc8c0f004e04147a00f2606787bcaf5655ad4b1954f6727fc6914c524009b2b9a2cc01c42835b55f651ce69fd2a0083b60bb852 languageName: node linkType: hard -"@smithy/middleware-stack@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/middleware-stack@npm:2.0.0" - dependencies: - tslib: ^2.5.0 - checksum: dd23dff4da44964e936c5ae465de9416bb8dd67da2ae72ffe450156ad52e82475836ed5c18d82cef7edeca421b33d363889549e34482008eeb9ca0bb97f061f2 +"@sindresorhus/merge-streams@npm:^2.1.0": + version: 2.3.0 + resolution: "@sindresorhus/merge-streams@npm:2.3.0" + checksum: e989d53dee68d7e49b4ac02ae49178d561c461144cea83f66fa91ff012d981ad0ad2340cbd13f2fdb57989197f5c987ca22a74eb56478626f04e79df84291159 languageName: node linkType: hard -"@smithy/middleware-stack@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/middleware-stack@npm:2.0.10" +"@sinonjs/commons@npm:^2.0.0": + version: 2.0.0 + resolution: "@sinonjs/commons@npm:2.0.0" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: f2e491a10bf20d0605dfa0fd6e629b0fdcc821a863fb5b1f9ab7c02f2a3180869334da15739c4ad66fe8022c3f5ffb6868dec51023bff9b07977989db8164ebb + type-detect: 4.0.8 + checksum: 5023ba17edf2b85ed58262313b8e9b59e23c6860681a9af0200f239fe939e2b79736d04a260e8270ddd57196851dde3ba754d7230be5c5234e777ae2ca8af137 languageName: node linkType: hard -"@smithy/middleware-stack@npm:^2.0.4": - version: 2.0.4 - resolution: "@smithy/middleware-stack@npm:2.0.4" +"@sinonjs/fake-timers@npm:^10.0.2": + version: 10.0.2 + resolution: "@sinonjs/fake-timers@npm:10.0.2" dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 81ccb16eb0d05ec1b8ca2f3905e8d540f4b7cf0b438c00e367315daa57e52ffea80aec2e4c245f43efa302a17b3d86e1acc9efd1e831fd382c9a8bed03665459 + "@sinonjs/commons": ^2.0.0 + checksum: c62aa98e7cefda8dedc101ce227abc888dc46b8ff9706c5f0a8dfd9c3ada97d0a5611384738d9ba0b26b59f99c2ba24efece8e779bb08329e9e87358fa309824 languageName: node linkType: hard -"@smithy/middleware-stack@npm:^2.0.5": - version: 2.0.5 - resolution: "@smithy/middleware-stack@npm:2.0.5" +"@slorber/static-site-generator-webpack-plugin@npm:^4.0.7": + version: 4.0.7 + resolution: "@slorber/static-site-generator-webpack-plugin@npm:4.0.7" dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: d4bd57206084b01a94306f02b93699d9aeab4753cb6c48bc85824a881a154d1eeeb89e3455568956c2cd82d9742ad2841522ff3d2a45ac70a99ea6d911570057 + eval: ^0.1.8 + p-map: ^4.0.0 + webpack-sources: ^3.2.2 + checksum: a1e1d8b22dd51059524993f3fdd6861db10eb950debc389e5dd650702287fa2004eace03e6bc8f25b977bd7bc01d76a50aa271cbb73c58a8ec558945d728f307 languageName: node linkType: hard -"@smithy/middleware-stack@npm:^3.0.0": +"@smithy/abort-controller@npm:^3.0.0": version: 3.0.0 - resolution: "@smithy/middleware-stack@npm:3.0.0" + resolution: "@smithy/abort-controller@npm:3.0.0" dependencies: "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: ca2e9e41aa78dc0e50b51cf94ff3d85ee86a0e241dde5f41640bf4401b862519ba52824c2ad04d861f6e9325749bacfd5ff4be0fef67c8b6f084c9935cce57ca + checksum: 8ad1551b558d5cb14e60fdaf07663d37828d11e9bb0faccfa3622ee0b0ddd7c7eab97ae36f501fd3d5bdcb9c570ed4e9ed84cb7b4490053900d20399297f95b5 languageName: node linkType: hard -"@smithy/middleware-stack@npm:^3.0.1, @smithy/middleware-stack@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/middleware-stack@npm:3.0.2" +"@smithy/abort-controller@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/abort-controller@npm:4.0.1" dependencies: - "@smithy/types": ^3.2.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 70ec59d020ae6d8c53aefecb039fb511cfa67a57ce00ba1e41d2c3da346265cc18bdf1e0724b0df10f1ef838807e151e93f6da6e886fafbac51d2ed962b795d1 + checksum: 9f6ac65639ae5823e7ea83fcd05282fca105adecda8a40bd4280cacb87ef2af935cf18e649897369db53c1b82c81fcdea75240260ca0ce9795ee22d6afa4f067 languageName: node linkType: hard -"@smithy/middleware-stack@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/middleware-stack@npm:3.0.3" +"@smithy/chunked-blob-reader-native@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/chunked-blob-reader-native@npm:4.0.0" dependencies: - "@smithy/types": ^3.3.0 + "@smithy/util-base64": ^4.0.0 tslib: ^2.6.2 - checksum: f4a450e2ebca0a8a3b4e1bbfad7d7e9c45edccbe1c984a22f2228092a526120748365e8964b478357249675d8bbc28fdaa8a4a19643a3c1d86bd74e1499327c5 - languageName: node - linkType: hard - -"@smithy/node-config-provider@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/node-config-provider@npm:2.0.1" - dependencies: - "@smithy/property-provider": ^2.0.1 - "@smithy/shared-ini-file-loader": ^2.0.1 - "@smithy/types": ^2.0.2 - tslib: ^2.5.0 - checksum: 9752c8e7c01fc991b93bb080e8486b82d55d592a2c7573004c2e296c192c153b967c79c03be0924c59e14ffc3de04ca861e99370d2ae9a0d8c54f25ea3f99be8 + checksum: 66151ee380feac66687885f7ae0053dcc4dce85bcdf4c16fc44524c0fc038af3370fca007f0a0075610d1f49b07180bf845a3185fe36b15584be04fa9a635e98 languageName: node linkType: hard -"@smithy/node-config-provider@npm:^2.0.13": - version: 2.0.13 - resolution: "@smithy/node-config-provider@npm:2.0.13" +"@smithy/chunked-blob-reader@npm:^5.0.0": + version: 5.0.0 + resolution: "@smithy/chunked-blob-reader@npm:5.0.0" dependencies: - "@smithy/property-provider": ^2.0.11 - "@smithy/shared-ini-file-loader": ^2.0.12 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 663bfbc586362fd3f552788ef2d4548090996dbd411c7f56fb6321a59826f710c34bf2f57d14901cf189dba56d7621438e6c26bdbce679c325fa32b1196cc280 + tslib: ^2.6.2 + checksum: ee4c1a33a422f684391d5d4cb290f46e2f8e024f31dbba5e31e3def71fd1fa79a357c83ee2ccaea555face2024b0f43ed27569608489bfa9ecfdd4681705b7ae languageName: node linkType: hard -"@smithy/node-config-provider@npm:^2.0.2, @smithy/node-config-provider@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/node-config-provider@npm:2.0.3" +"@smithy/config-resolver@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/config-resolver@npm:3.0.1" dependencies: - "@smithy/property-provider": ^2.0.3 - "@smithy/shared-ini-file-loader": ^2.0.3 - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: 01563b48fb013bd16676b8c07eaea2301334f892e9d1b26ad593be3fe2d0507267dfe5d5f198e7da1200884055cb2c9125b338c346eed7e5584776550a6e06ae + "@smithy/node-config-provider": ^3.1.0 + "@smithy/types": ^3.0.0 + "@smithy/util-config-provider": ^3.0.0 + "@smithy/util-middleware": ^3.0.0 + tslib: ^2.6.2 + checksum: b57650c31e230b9f9b961027d4c3b5b6d5728cbae3361df91f4da06389bbbecfe5a4483737d3d91abb6b3dd53cab9ead66be2f6386b558b6db1e247549363ba5 languageName: node linkType: hard -"@smithy/node-config-provider@npm:^2.1.1": - version: 2.1.1 - resolution: "@smithy/node-config-provider@npm:2.1.1" +"@smithy/config-resolver@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/config-resolver@npm:4.0.1" dependencies: - "@smithy/property-provider": ^2.0.12 - "@smithy/shared-ini-file-loader": ^2.2.0 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: b9bca5ba2b1ef60221f7bf24e876dabba46652ead428ec31a528ef57ee14af559752736317f870d55f1b90c6bb6c52886194475190a05339235ffe123217a9bd + "@smithy/node-config-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-config-provider": ^4.0.0 + "@smithy/util-middleware": ^4.0.1 + tslib: ^2.6.2 + checksum: 24035ea6766693668f0776f8eed3d0a81aecbabf925e48c20ef759e6a95b39cd3e1b04efd819860d46727fe094382803fe3f625a0fbfcd652196753b44b7864f languageName: node linkType: hard -"@smithy/node-config-provider@npm:^2.1.9": - version: 2.1.9 - resolution: "@smithy/node-config-provider@npm:2.1.9" +"@smithy/core@npm:^2.2.0": + version: 2.2.0 + resolution: "@smithy/core@npm:2.2.0" dependencies: - "@smithy/property-provider": ^2.0.17 - "@smithy/shared-ini-file-loader": ^2.2.8 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 993c87c85b88671e8dab3d9443f7f832b585e34c5578f655168162e968b14f4f7f5dd04515364a9c7155aedd6dd175f7fb6a14c2318c81b01dd3245086b8e5f1 + "@smithy/middleware-endpoint": ^3.0.1 + "@smithy/middleware-retry": ^3.0.3 + "@smithy/middleware-serde": ^3.0.0 + "@smithy/protocol-http": ^4.0.0 + "@smithy/smithy-client": ^3.1.1 + "@smithy/types": ^3.0.0 + "@smithy/util-middleware": ^3.0.0 + tslib: ^2.6.2 + checksum: 4b14ebbc6f9bcc54872bb19c42c3b7281c5e38af012e1278e4084433d720c310789219c1de4a1ea86398bfc080378faf1f95c506bf77df6cd109475658cb3f26 languageName: node linkType: hard -"@smithy/node-config-provider@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/node-config-provider@npm:3.0.0" - dependencies: - "@smithy/property-provider": ^3.0.0 - "@smithy/shared-ini-file-loader": ^3.0.0 - "@smithy/types": ^3.0.0 +"@smithy/core@npm:^3.1.3, @smithy/core@npm:^3.1.4": + version: 3.1.4 + resolution: "@smithy/core@npm:3.1.4" + dependencies: + "@smithy/middleware-serde": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-stream": ^4.1.1 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: 2c2de21e40bcaf85faa27fe856d0c61257fd05c6b205eb7799a26cf1bea7c25023f7951b0b48730c8b77569a3a762ddaa462c5eca193ae051431ebd553c1e637 + checksum: d0d99250213005473d167c25a434555aa094308721eb522617b1a0b01dddf65d73eb4c1a4f330ec67ee22f432fbb791861d49a2d0854bf061c0b3c937630c0f4 languageName: node linkType: hard -"@smithy/node-config-provider@npm:^3.1.0": +"@smithy/credential-provider-imds@npm:^3.1.0": version: 3.1.0 - resolution: "@smithy/node-config-provider@npm:3.1.0" + resolution: "@smithy/credential-provider-imds@npm:3.1.0" dependencies: + "@smithy/node-config-provider": ^3.1.0 "@smithy/property-provider": ^3.1.0 - "@smithy/shared-ini-file-loader": ^3.1.0 "@smithy/types": ^3.0.0 + "@smithy/url-parser": ^3.0.0 tslib: ^2.6.2 - checksum: b17afe28ec698faa8980e0bb9fd3bc44fd23c6b3b6f715bc0c9da2e2013249086d0ac7e6bedd61e90bd1ffc640591bf0439fd0fe65e9acf79464490e4ac3d074 - languageName: node - linkType: hard - -"@smithy/node-config-provider@npm:^3.1.1, @smithy/node-config-provider@npm:^3.1.2": - version: 3.1.2 - resolution: "@smithy/node-config-provider@npm:3.1.2" - dependencies: - "@smithy/property-provider": ^3.1.2 - "@smithy/shared-ini-file-loader": ^3.1.2 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 596e7a6b92fa68f6c172969bde6a04aadf35634f78a601351642b44bc271f3ad5444588a8c3dea8f7cdbe65a2d69e1c1d93291bf8d240736a035ac8db4e96ce3 + checksum: d13b08a15e7565efb848b30cda37dd9211c626bb6a7d9f4ec36da77732879a9708c90670a66185ed903c76e6b36665d429f01112bc46768fd272e3bf88ecd7d8 languageName: node linkType: hard -"@smithy/node-config-provider@npm:^3.1.4": - version: 3.1.4 - resolution: "@smithy/node-config-provider@npm:3.1.4" +"@smithy/credential-provider-imds@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/credential-provider-imds@npm:4.0.1" dependencies: - "@smithy/property-provider": ^3.1.3 - "@smithy/shared-ini-file-loader": ^3.1.4 - "@smithy/types": ^3.3.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 tslib: ^2.6.2 - checksum: 7ea4e7cea93ab154ab89a9d6b2453c8f96b96db18883070d287bc5fa9cfd10091bb00006a15bb7e6ed25810fd1a133d458e45310a8eaa1727a55d4ce2be3ba09 + checksum: ec03248abf9b2e89f5a49539d2a069c3d034af35dc49a09d260dd58662ac0b639c6463d1eaa7d80253b8168c67ecb00de8c79376ed65433fc20f8e934a9017d9 languageName: node linkType: hard -"@smithy/node-http-handler@npm:^2.0.2, @smithy/node-http-handler@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/node-http-handler@npm:2.0.3" +"@smithy/eventstream-codec@npm:^1.1.0": + version: 1.1.0 + resolution: "@smithy/eventstream-codec@npm:1.1.0" dependencies: - "@smithy/abort-controller": ^2.0.3 - "@smithy/protocol-http": ^2.0.3 - "@smithy/querystring-builder": ^2.0.3 - "@smithy/types": ^2.2.0 + "@aws-crypto/crc32": 3.0.0 + "@smithy/types": ^1.2.0 + "@smithy/util-hex-encoding": ^1.1.0 tslib: ^2.5.0 - checksum: db4305c2214c245664a49e10dc0567cb404d1fe8070f7adb3b907a3a22f7ad9f52c85ec2d338f27c21d11ea947e6fb25fac41eb61f0f803719bd11c14072e930 + checksum: 88e414d9a758b88f28ddb669f1dc26f8d3e3a36d398adace3919a699ff289dbf0e0c59bed69dc85741a2bcf9cbe66ce803986ede548328a7117a711534e51c6b languageName: node linkType: hard -"@smithy/node-http-handler@npm:^2.1.6": - version: 2.1.6 - resolution: "@smithy/node-http-handler@npm:2.1.6" +"@smithy/eventstream-codec@npm:^2.0.10": + version: 2.0.10 + resolution: "@smithy/eventstream-codec@npm:2.0.10" dependencies: - "@smithy/abort-controller": ^2.0.10 - "@smithy/protocol-http": ^3.0.6 - "@smithy/querystring-builder": ^2.0.10 + "@aws-crypto/crc32": 3.0.0 "@smithy/types": ^2.3.4 + "@smithy/util-hex-encoding": ^2.0.0 tslib: ^2.5.0 - checksum: 851cede7625281e96044ed70d8cc3b83886c06743e30df477f66ec3e6700261649cafcee753c87da9b648462407e9732adf59bdaae51ad9f8bd30c80b2d05656 - languageName: node - linkType: hard - -"@smithy/node-http-handler@npm:^2.1.7": - version: 2.1.7 - resolution: "@smithy/node-http-handler@npm:2.1.7" - dependencies: - "@smithy/abort-controller": ^2.0.11 - "@smithy/protocol-http": ^3.0.7 - "@smithy/querystring-builder": ^2.0.11 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 2a40f8bcb75eddb682691137a4134f33e97daba775945a45513fdfe2bf1dfafc9d74843f3f698eacf64569baf952d19361b2bb28dd19030a6f3cbe9ee5fdecc3 + checksum: a488882308001fc898370bfe26ed17eed7cdac497648dfe6949b332af7f381cf65436b6b9619a7b6fee16217eda4e9c0ed9c1567e2ff24e6eddf5e6696eb0812 languageName: node linkType: hard -"@smithy/node-http-handler@npm:^2.2.2": - version: 2.2.2 - resolution: "@smithy/node-http-handler@npm:2.2.2" +"@smithy/eventstream-codec@npm:^2.0.5": + version: 2.0.5 + resolution: "@smithy/eventstream-codec@npm:2.0.5" dependencies: - "@smithy/abort-controller": ^2.0.16 - "@smithy/protocol-http": ^3.0.12 - "@smithy/querystring-builder": ^2.0.16 - "@smithy/types": ^2.8.0 + "@aws-crypto/crc32": 3.0.0 + "@smithy/types": ^2.2.2 + "@smithy/util-hex-encoding": ^2.0.0 tslib: ^2.5.0 - checksum: 891532bfb6c1d3f3aed710bf8ed922706270effc8d8d00d4133e6271f58525ed9ccf7d03e16c0baf7a4e8b2768d5e38b92beca23f9b6aac8e02e8bc7c6769a81 + checksum: 472c0b1652e2afcf9dd9a8f122255d8b3b46019ead3c12ce8ceb3242d2dca525c5dcf6fd2fe57e03621283c8762b44d553a10eb0ce35eecaf2f4366c45bbf683 languageName: node linkType: hard -"@smithy/node-http-handler@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/node-http-handler@npm:3.0.0" +"@smithy/eventstream-codec@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/eventstream-codec@npm:4.0.1" dependencies: - "@smithy/abort-controller": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/querystring-builder": ^3.0.0 - "@smithy/types": ^3.0.0 + "@aws-crypto/crc32": 5.2.0 + "@smithy/types": ^4.1.0 + "@smithy/util-hex-encoding": ^4.0.0 tslib: ^2.6.2 - checksum: 194542f2abbc1f1ccd9655eb4d06b2fead212e71954d20ca429904dfd7c49f2ea13c06604c31cd7700af53971d86534ec9e0b53c16479dc1491569a99aee67d7 + checksum: a99733e446b7f4054ba62e0f06a6d88fc0b70324518e2d21f128c1a2c4b3c3a2bf18398ca7e4b2a59e54a62d7bedf451d65e8c9945ba4aa3db10c5df18c00fed languageName: node linkType: hard -"@smithy/node-http-handler@npm:^3.0.1, @smithy/node-http-handler@npm:^3.1.0": - version: 3.1.0 - resolution: "@smithy/node-http-handler@npm:3.1.0" +"@smithy/eventstream-serde-browser@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/eventstream-serde-browser@npm:4.0.1" dependencies: - "@smithy/abort-controller": ^3.1.0 - "@smithy/protocol-http": ^4.0.2 - "@smithy/querystring-builder": ^3.0.2 - "@smithy/types": ^3.2.0 + "@smithy/eventstream-serde-universal": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 915cc2876cfe5b2330e868aa512930d4c126192d7695354dc2a88aab1c6639968ace36c1e8778c8a647a8b6f3f3faac2a14870607043cba972e05ee94491738a + checksum: cfa141c76002be5e3fc0ff80826b793f052b5dac4e5806e8548f29d18b77523d37cf597724f070a53227337f77e7da9cde505ba7f44297561d681b96e4ab762b languageName: node linkType: hard -"@smithy/node-http-handler@npm:^3.1.3": - version: 3.1.3 - resolution: "@smithy/node-http-handler@npm:3.1.3" +"@smithy/eventstream-serde-config-resolver@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/eventstream-serde-config-resolver@npm:4.0.1" dependencies: - "@smithy/abort-controller": ^3.1.1 - "@smithy/protocol-http": ^4.0.4 - "@smithy/querystring-builder": ^3.0.3 - "@smithy/types": ^3.3.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 2e07687544dc77714912467268db820cb76bffcb0f4cdb5d5f12b05561d8baedb98cb478ceb4e247151e2d7d30af7de88095f9b96037e56f58a371b2a7bab85e + checksum: 37c49d5ffa6b9c2f1f5b83b9c7f1de431ecef92a710e3dc4d91af5b978c662153d86ed558504424363c0c53682137ffa077ada9103f72eadc5d40ef4613f0241 languageName: node linkType: hard -"@smithy/property-provider@npm:^2.0.0, @smithy/property-provider@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/property-provider@npm:2.0.1" +"@smithy/eventstream-serde-node@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/eventstream-serde-node@npm:4.0.1" dependencies: - "@smithy/types": ^2.0.2 - tslib: ^2.5.0 - checksum: 56ea840032911b37a2e602144cf4cf08401a79a3ab06e226a4cf65a14b77e70e4d0bd8f762d172e322a0cf75f45bd1886a265687e090a2848798225e276f2882 + "@smithy/eventstream-serde-universal": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: c24de78ac6bd3f4609a7e652301ff44fa0e5a499e2c10505068f17a8fa7387a5b6717601053c9c3804b94760df1da4799e5cd68900f97bab60160c075d93506a languageName: node linkType: hard -"@smithy/property-provider@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/property-provider@npm:2.0.11" +"@smithy/eventstream-serde-universal@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/eventstream-serde-universal@npm:4.0.1" dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 943d77232c346c154632fa54329f68d6e1d90b62fb6ddcec991a3808eda5400ff8a1f727224d6b72f62360c464fb474e982704fb571cc99ad3dd1979aa36c0ca + "@smithy/eventstream-codec": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 1fc609a5d341a43c427f233a64afa722b458f9b1dc7db9bab898f62d6805edcbe4fba866620a8b83001240e90254d9057636a6cf4eca80ada58f9dd2e0ca864b languageName: node linkType: hard -"@smithy/property-provider@npm:^2.0.12": - version: 2.0.12 - resolution: "@smithy/property-provider@npm:2.0.12" +"@smithy/fetch-http-handler@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/fetch-http-handler@npm:3.0.1" dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 5d7afa158d66f4cd7f9561fbbb9adef987abfc490dfd5f0e5dcae5596611618f83a856273308f70e56347115a0f07ecc2f0eb434b4186725f8dc461b3be3cd5c + "@smithy/protocol-http": ^4.0.0 + "@smithy/querystring-builder": ^3.0.0 + "@smithy/types": ^3.0.0 + "@smithy/util-base64": ^3.0.0 + tslib: ^2.6.2 + checksum: ddb6e1ad989f5f02e7af7ea17a2f8e742f99e53358d64c57803a4fa9dd12e2a4a1c5c5ff69e912937bed661a6a4c583eb184c5e159be720170b686d66647dd01 languageName: node linkType: hard -"@smithy/property-provider@npm:^2.0.17": - version: 2.0.17 - resolution: "@smithy/property-provider@npm:2.0.17" +"@smithy/fetch-http-handler@npm:^5.0.1": + version: 5.0.1 + resolution: "@smithy/fetch-http-handler@npm:5.0.1" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: ecf2c909fd365cfe59bece32538131ffb2bcdc55a2a287722b1eefcac4c83de7f7f7dc92e4829cdbb74cc3c15f6fad8617eb97ec97ed1fc7ca9180ba7f758229 + "@smithy/protocol-http": ^5.0.1 + "@smithy/querystring-builder": ^4.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-base64": ^4.0.0 + tslib: ^2.6.2 + checksum: d8e160e4a57e1fb7b7805fcafda81fb7d7511904b48d2e25229d18bd15598c64cdd12bd39c0dee9fc9cc31a76952fae1d400c6a80e9015cfd6e22c2f930a6212 languageName: node linkType: hard -"@smithy/property-provider@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/property-provider@npm:2.0.3" +"@smithy/hash-blob-browser@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/hash-blob-browser@npm:4.0.1" dependencies: - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: 8b567a43c42f145c8585f4574174cc7a7b045c2d93085ba85abf8559a94787a68536b18c0ce689efc2c3894e7b9ce937cc567085429d3e1275e7e5a57af1f45b + "@smithy/chunked-blob-reader": ^5.0.0 + "@smithy/chunked-blob-reader-native": ^4.0.0 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: e4fa37d16818aaed955747b19de702ad3844e4beb0034ce56f236d7a3147ccefd15cc5b8236c99866c534a46bf716b8bdeaa13996c92409588bffb4e3e94b891 languageName: node linkType: hard -"@smithy/property-provider@npm:^3.0.0": +"@smithy/hash-node@npm:^3.0.0": version: 3.0.0 - resolution: "@smithy/property-provider@npm:3.0.0" + resolution: "@smithy/hash-node@npm:3.0.0" dependencies: "@smithy/types": ^3.0.0 + "@smithy/util-buffer-from": ^3.0.0 + "@smithy/util-utf8": ^3.0.0 tslib: ^2.6.2 - checksum: 741cb59b7eab30910a2e38bee1c489120d6b6ef4b3682d556abcf9ddf545a9249902281d72f4a0282953e6f2ec9b6aa0bac8e5003cb0ff389475b4c793ac83e1 + checksum: ef2520c1e5c7dc7669a2870881edaa9fac07e2bffa300d2434d599453dbce1b0c5239de6fb6d55f121a467e144a1f5c6d7f8d1ddf4547ce86d3e81827289752d languageName: node linkType: hard -"@smithy/property-provider@npm:^3.1.0": - version: 3.1.0 - resolution: "@smithy/property-provider@npm:3.1.0" +"@smithy/hash-node@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/hash-node@npm:4.0.1" dependencies: - "@smithy/types": ^3.0.0 + "@smithy/types": ^4.1.0 + "@smithy/util-buffer-from": ^4.0.0 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: 28e9a705731ba93ca0f427a3932423b2539c7a48e7196c0f8cca1b8cfe7d3b7a02338d4eb007847a9b103fb54b5e8d9a4b76b5d29bcf852528144c6b2ebe8636 + checksum: c68d222d4c39e97e90965cc669b6d30628b07ae136f49981ff551bccd5c104161fd2a322ebea85514c925e1d3525e413c05513e303a76e7af6c3e0cdb55960d0 languageName: node linkType: hard -"@smithy/property-provider@npm:^3.1.1, @smithy/property-provider@npm:^3.1.2": - version: 3.1.2 - resolution: "@smithy/property-provider@npm:3.1.2" +"@smithy/hash-stream-node@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/hash-stream-node@npm:4.0.1" dependencies: - "@smithy/types": ^3.2.0 + "@smithy/types": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: 9ec0cce2728dd4a0d327fef523ca5bddcba9a7750e6e5a614293d6ba4c12d6b86c32020689481a529b4797d07315fd84647f13ea0dbe91f1da7932c954b08421 + checksum: 0c43cb8720e99001e7d5d6916e8827d9b98edb39861a95b58dcc5f5684c0327aee1ab743f5236abe7b69785cd1958912292600b62d2ca9725bda8db9877e03d2 languageName: node linkType: hard -"@smithy/property-provider@npm:^3.1.3": - version: 3.1.3 - resolution: "@smithy/property-provider@npm:3.1.3" +"@smithy/invalid-dependency@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/invalid-dependency@npm:3.0.0" dependencies: - "@smithy/types": ^3.3.0 + "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: 37a3d92267a2a32c2cc17fd1f0ab2b336f75fb7807db88f6194efede9d6a66068658a7effb7773451404fca990924393dbbf3d57e2aca67ef2e489a85666e225 + checksum: 3227d5d8ba49d6ca09f95215614d41b75a717985ac2f5c4caa5c082dc87e1a510e1d1af738fe27cdb93c8425a189b2ec74a7d57d949cefa8cbcd62ed83ceb798 languageName: node linkType: hard -"@smithy/protocol-http@npm:^1.0.1": - version: 1.1.0 - resolution: "@smithy/protocol-http@npm:1.1.0" +"@smithy/invalid-dependency@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/invalid-dependency@npm:4.0.1" dependencies: - "@smithy/types": ^1.1.0 - tslib: ^2.5.0 - checksum: f912e085a477664abf38ff4cd0c2ac064ef068afc6cc0a09ce9c2849f07bac8be622edf60f19a91e2701184b63daa85cb2898e243d7a2c6fd1613de705b3152c + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 541e89a18cb5ce8db063ea74ea8831a11bdf42ac58412ae6aad350d4a128b6e9d3b0b5b31cac2597e5e52a0da4a2a3cf202946bb6649d398a84876a89c332bd1 languageName: node linkType: hard -"@smithy/protocol-http@npm:^1.1.0": - version: 1.2.0 - resolution: "@smithy/protocol-http@npm:1.2.0" +"@smithy/is-array-buffer@npm:^1.1.0": + version: 1.1.0 + resolution: "@smithy/is-array-buffer@npm:1.1.0" dependencies: - "@smithy/types": ^1.2.0 tslib: ^2.5.0 - checksum: 39548762da6dbd301d36ef67709ef73ef6f9a4c9bdcc3fafa5d5625eec7dfa71db72898d3eb219a368a79ea5e368a08189519a7512d48e0cdc9db7089c8e9618 + checksum: 39b2a177b5d98f1adb2e44c363be2f4f335b698e9803f5ffb4c6d32e5d51543f29daf90b9ee99d8833446561dfe1b8dc3464852970b90bb6c00655a425fc3ac2 languageName: node linkType: hard -"@smithy/protocol-http@npm:^2.0.2, @smithy/protocol-http@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/protocol-http@npm:2.0.3" +"@smithy/is-array-buffer@npm:^2.0.0": + version: 2.0.0 + resolution: "@smithy/is-array-buffer@npm:2.0.0" dependencies: - "@smithy/types": ^2.2.0 tslib: ^2.5.0 - checksum: 0fbfe5f63da53eac3c4fdb830591e5a1f400c6c1103a7494f19c59c27e2cd533a33b687cd7c70902429d58f84d6e6a186205043cd896824d802f21f23cb7a50c + checksum: 6d101cf509a7818667f42d297894f88f86ef41d3cc9d02eae38bbe5e69b16edf83b8e67eb691964d859a16a4e39db1aad323d83f6ae55ae4512a14ff6406c02d languageName: node linkType: hard -"@smithy/protocol-http@npm:^3.0.12": - version: 3.0.12 - resolution: "@smithy/protocol-http@npm:3.0.12" +"@smithy/is-array-buffer@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/is-array-buffer@npm:3.0.0" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 38899820a59ebcdf4784b16d6a02fa630441a76857f204e479bd8c59ec7c578e5107e995fc0b1b9dee444b9610bd9bdf00ccf7e1c806ff463c7e9402660748e1 + tslib: ^2.6.2 + checksum: ce7440fcb1ce3c46722cff11c33e2f62a9df86d74fa2054a8e6b540302a91211cf6e4e3b1b7aac7030c6c8909158c1b6867c394201fa8afc6b631979956610e5 languageName: node linkType: hard -"@smithy/protocol-http@npm:^3.0.6": - version: 3.0.6 - resolution: "@smithy/protocol-http@npm:3.0.6" +"@smithy/is-array-buffer@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/is-array-buffer@npm:4.0.0" dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 1b137ec54c7dc952e1677a702ab12e1d9b5ac6603ef97926ae1cfd6d394fe1fe26c15f9b9f01efde647f9892c48d28309f83c4b37e531763317928857854e6bb + tslib: ^2.6.2 + checksum: 8226fc1eca7aacd7f887f3a5ec2f15a3cafa72aa1c42d3fc759c66600481381d18ec7285a8195f24b9c4fe0ce9a565c133b2021d86a8077aebce3f86b3716802 languageName: node linkType: hard -"@smithy/protocol-http@npm:^3.0.7": - version: 3.0.7 - resolution: "@smithy/protocol-http@npm:3.0.7" +"@smithy/md5-js@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/md5-js@npm:4.0.1" dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: bbc13fdddf1891daaa086849c19731e6ca825229b9c90324e50641390f84e957af796464f642f74426038a4d6a0f8d4b05364e0729cf7f8a828328e921ba72cd + "@smithy/types": ^4.1.0 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 97b756c0fad862dda8d8e1aa7939a0b5896f2773c418168cd47ca51585a3e49f71a5122487d28d407359c44938bb97ec75a07decd51a8363dfb941788e396fbc languageName: node linkType: hard -"@smithy/protocol-http@npm:^4.0.0": - version: 4.0.0 - resolution: "@smithy/protocol-http@npm:4.0.0" +"@smithy/middleware-content-length@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/middleware-content-length@npm:3.0.0" dependencies: + "@smithy/protocol-http": ^4.0.0 "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: 0cea8e4933b1ca888f755495ac10cec9191678eb3425b755443479a1653223eede0d031a3b4cc04a34b80c4ed7b06d7e0a576f577988d876b81982aa84e31bfc + checksum: 658474b9c10696f701ae32a741c357192d4e8e1f409855093a3660fa21d4785972f2ec1c6973d159a875437a414c4f6e64b2fd0e12a7242cb5d73679b3283667 languageName: node linkType: hard -"@smithy/protocol-http@npm:^4.0.1, @smithy/protocol-http@npm:^4.0.2": - version: 4.0.2 - resolution: "@smithy/protocol-http@npm:4.0.2" +"@smithy/middleware-content-length@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/middleware-content-length@npm:4.0.1" dependencies: - "@smithy/types": ^3.2.0 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: e1b419e0324f20300c490491cbc32b9d151579a6ce11f708b76ed265ef3499d404d9c0e3443692984514a0f8042b456f5c7e1a62694d42c7dc9bc64bfcff0301 + checksum: 61109cfee368b8b20d39efcc050c0a30c4a4355dc4fb1c8521b1ec258c35c454bda9a6489571b01eb14c48e030642fd674d28e6c8083e6e4272b2b24cee0e61e languageName: node linkType: hard -"@smithy/protocol-http@npm:^4.0.4": - version: 4.0.4 - resolution: "@smithy/protocol-http@npm:4.0.4" +"@smithy/middleware-endpoint@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/middleware-endpoint@npm:3.0.1" dependencies: - "@smithy/types": ^3.3.0 + "@smithy/middleware-serde": ^3.0.0 + "@smithy/node-config-provider": ^3.1.0 + "@smithy/shared-ini-file-loader": ^3.1.0 + "@smithy/types": ^3.0.0 + "@smithy/url-parser": ^3.0.0 + "@smithy/util-middleware": ^3.0.0 tslib: ^2.6.2 - checksum: a0155381d24f02d279f0b895c179e98af0a6dd1c8a1765666c856f0bca41aa7d4a245a228bc17ddde5f68c631ffe8684440051416757169074dfa5c7a7087e94 - languageName: node - linkType: hard - -"@smithy/querystring-builder@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/querystring-builder@npm:2.0.10" - dependencies: - "@smithy/types": ^2.3.4 - "@smithy/util-uri-escape": ^2.0.0 - tslib: ^2.5.0 - checksum: bac04753ae658eab26a5433aba659e534a91bcd655d33657f88c38ebb7307db013558d7815f5c04dd0030aa6b6e089d26f3ed9430f5b6d6ea5de4a393dd66798 + checksum: e50858a46168368e8286e91f813ab77117aba16f4d778858bc43b2f42890e4566630858bc4dbb1a15c6c12e7706a806e0e8576db6b27c3ff8c3509fc495aa95f languageName: node linkType: hard -"@smithy/querystring-builder@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/querystring-builder@npm:2.0.11" - dependencies: - "@smithy/types": ^2.3.5 - "@smithy/util-uri-escape": ^2.0.0 - tslib: ^2.5.0 - checksum: a9ad6389051b24170c178ae0bbac73d224f2ba2c005eca7dfa3c5631e2e7522ffdd17fc1779f80d2480c444e01ba8da9d0553b0b7d68967c1fa283c737dec886 +"@smithy/middleware-endpoint@npm:^4.0.4, @smithy/middleware-endpoint@npm:^4.0.5": + version: 4.0.5 + resolution: "@smithy/middleware-endpoint@npm:4.0.5" + dependencies: + "@smithy/core": ^3.1.4 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-middleware": ^4.0.1 + tslib: ^2.6.2 + checksum: aecb06200ab50b3ef95defe1a471ae248178289341431e089df87e54b1824c011b3c488eb19534140712360ee0677462a883658d1e6dbac58cbe8cd7fa2faa19 languageName: node linkType: hard -"@smithy/querystring-builder@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/querystring-builder@npm:2.0.16" +"@smithy/middleware-retry@npm:^3.0.3": + version: 3.0.3 + resolution: "@smithy/middleware-retry@npm:3.0.3" dependencies: - "@smithy/types": ^2.8.0 - "@smithy/util-uri-escape": ^2.0.0 - tslib: ^2.5.0 - checksum: d88983a2088dd2d00dced8e122ee20c278edf00f80ff79485187efb178d3c1a00e679f5059c605d914d646dac37e35fd458bbc20a56da0e2ac6e168dc2a8f91b + "@smithy/node-config-provider": ^3.1.0 + "@smithy/protocol-http": ^4.0.0 + "@smithy/service-error-classification": ^3.0.0 + "@smithy/smithy-client": ^3.1.1 + "@smithy/types": ^3.0.0 + "@smithy/util-middleware": ^3.0.0 + "@smithy/util-retry": ^3.0.0 + tslib: ^2.6.2 + uuid: ^9.0.1 + checksum: ab499a129c901740f4c8372435029b466496bfba7b6f03e6e4b24a7bdad5fc82f0dce0401f1e425802e0fa6f90387a4303091c9a13d36e20c6e431d5fd7c63bc languageName: node linkType: hard -"@smithy/querystring-builder@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/querystring-builder@npm:2.0.3" - dependencies: - "@smithy/types": ^2.2.0 - "@smithy/util-uri-escape": ^2.0.0 - tslib: ^2.5.0 - checksum: 32a6cefacee95ecd51c8969adb4b244f55017c080f05cbe1d05fa427b09375b29b1db6d1f5fa43b77a2e7a06c105661c0e54eabe0174cbb43aef94c841e39755 +"@smithy/middleware-retry@npm:^4.0.5": + version: 4.0.6 + resolution: "@smithy/middleware-retry@npm:4.0.6" + dependencies: + "@smithy/node-config-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/service-error-classification": ^4.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + tslib: ^2.6.2 + uuid: ^9.0.1 + checksum: 01e399eceeae707799332bcce12ca3e8b1b26bc2d0da0fbe7952f9d89059cb7bd034d908086673f5c820e61008a15c8209d4cac4a96bae9e2497a717745f4738 languageName: node linkType: hard -"@smithy/querystring-builder@npm:^3.0.0": +"@smithy/middleware-serde@npm:^3.0.0": version: 3.0.0 - resolution: "@smithy/querystring-builder@npm:3.0.0" + resolution: "@smithy/middleware-serde@npm:3.0.0" dependencies: "@smithy/types": ^3.0.0 - "@smithy/util-uri-escape": ^3.0.0 tslib: ^2.6.2 - checksum: 28a8a243002560f0928bf73b4686a0f81ed867957a033c2fc9fb249fb7006f076e78fcb506c96956e9d1d5e34a4c6228d0aeb7fcdc9418cdfe3377084e0654f4 + checksum: 9520948ab8fbe50f17eb4fdc2065a068cc9b954c876c354c355cd729ad29790815c4acd4fdafe32456e81308ec2266d35e82aa69fedbcb0cad1981785fc87c25 languageName: node linkType: hard -"@smithy/querystring-builder@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/querystring-builder@npm:3.0.2" +"@smithy/middleware-serde@npm:^4.0.2": + version: 4.0.2 + resolution: "@smithy/middleware-serde@npm:4.0.2" dependencies: - "@smithy/types": ^3.2.0 - "@smithy/util-uri-escape": ^3.0.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: c6f6fc8681879daed9c85b3fd2d81cbbf553addbdc1d6ab2660687d967af40eba0112e40cf1157bdd4c42784bc22977a3da9ed9dde674b7ede5e70720a0b38af + checksum: 51f33cf1f34bb7034a49025664b1575d7dd9450a3c12655b49d5804b5eeeec6e024991715d217f661eddc506ad91abc23a8f3c8f0cfeb7e2b45aa079ed61cd85 languageName: node linkType: hard -"@smithy/querystring-builder@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/querystring-builder@npm:3.0.3" +"@smithy/middleware-stack@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/middleware-stack@npm:3.0.0" dependencies: - "@smithy/types": ^3.3.0 - "@smithy/util-uri-escape": ^3.0.0 + "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: 5c46c620d87f9b4e67b8eb543667b0160fb05bbec01d62d45adb94305369dca9e82daba47d81e840fdc399fa47f9b5930ce668d65fe83ee278a1b27d59d0b5d3 - languageName: node - linkType: hard - -"@smithy/querystring-parser@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/querystring-parser@npm:2.0.1" - dependencies: - "@smithy/types": ^2.0.2 - tslib: ^2.5.0 - checksum: a6107281ae33beb5518b85de82fea7692cfcb6c15155719c6ba6ee44cc75b20f07ce28214c635ee38b0474995c0a23b4872feef8bd9f98a7811b7ccf59bac819 - languageName: node - linkType: hard - -"@smithy/querystring-parser@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/querystring-parser@npm:2.0.10" - dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 11e7a65b94f89207199f29623a23a2e56cd00ddcb1afa3f767b2395dfefbad6e0f1e7ef4387d07cddbe1c59569698d2574c8d82b525c7a37fd07abddffb46dcc + checksum: ca2e9e41aa78dc0e50b51cf94ff3d85ee86a0e241dde5f41640bf4401b862519ba52824c2ad04d861f6e9325749bacfd5ff4be0fef67c8b6f084c9935cce57ca languageName: node linkType: hard -"@smithy/querystring-parser@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/querystring-parser@npm:2.0.11" +"@smithy/middleware-stack@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/middleware-stack@npm:4.0.1" dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: fc0b384210d06dbe02dc9eb6418d7aba8247cc3cb9eb38bbbdb29470ddc4e9a26a3e7b5eb511382bde62c3be3008771dfe9dcf68f83ec5f4fa99e466684dd224 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 21f61adf5071c6c32356c9f6b2423fffc0ba0cfdedae37b5162659e156bec122e03f67a5dac5fbd224f9bbb15a6793fd332cf1a02ea17eda0c4fb7e4ca22ce95 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/querystring-parser@npm:2.0.16" +"@smithy/node-config-provider@npm:^3.1.0": + version: 3.1.0 + resolution: "@smithy/node-config-provider@npm:3.1.0" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: f00fcfa102838a32afa43b3e4e9dd706f1d79e09778767f089f97ee47809d47e9dd6681618dac0903913aa7ae64479ee7be9269c5e7e7e0b29527ea63cde3e26 + "@smithy/property-provider": ^3.1.0 + "@smithy/shared-ini-file-loader": ^3.1.0 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + checksum: b17afe28ec698faa8980e0bb9fd3bc44fd23c6b3b6f715bc0c9da2e2013249086d0ac7e6bedd61e90bd1ffc640591bf0439fd0fe65e9acf79464490e4ac3d074 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/querystring-parser@npm:2.0.3" +"@smithy/node-config-provider@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/node-config-provider@npm:4.0.1" dependencies: - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: b48dcbc0fa402f85fc0d91b41fe1bcaaee2ae03862b8b66697ff14634751e854d136276307370c92ab702ad20b0e596914362e41f12f3242dc63d82cbac77221 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: e997b3732a686e1dd9c5544a97fb18519acb45d522700045301391eee4a7b305a31ed68dd3a407fe754bebdfd4b759d8128a4bc80cdcd490113934ef8c3aaaa7 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^3.0.0": +"@smithy/node-http-handler@npm:^3.0.0": version: 3.0.0 - resolution: "@smithy/querystring-parser@npm:3.0.0" + resolution: "@smithy/node-http-handler@npm:3.0.0" dependencies: + "@smithy/abort-controller": ^3.0.0 + "@smithy/protocol-http": ^4.0.0 + "@smithy/querystring-builder": ^3.0.0 "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: 5b76846e1ef0e19d4cd249089184597476b2f82ff491952b7f61d0dc8705b8596f9d8579fe3c2ce6b61dff61271990c35c85c89aba3724e781b4993afc816a2a + checksum: 194542f2abbc1f1ccd9655eb4d06b2fead212e71954d20ca429904dfd7c49f2ea13c06604c31cd7700af53971d86534ec9e0b53c16479dc1491569a99aee67d7 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/querystring-parser@npm:3.0.2" +"@smithy/node-http-handler@npm:^4.0.2": + version: 4.0.2 + resolution: "@smithy/node-http-handler@npm:4.0.2" dependencies: - "@smithy/types": ^3.2.0 + "@smithy/abort-controller": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/querystring-builder": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 7f18281e8d73c70dc020e1a8719a8322d88130c24e8c8cffa39ffe83e9f18d28bb9d420e6026ddb17d60ac950b0fb5b9465a4ba8493086e6186f60a9573b2ad8 + checksum: a1b9b724c61a5272d8eb6d8bafad7cc4d0bafcffb14c738e1fbff469bfea84a374b9724df2bf7c6161720671fa5521319a196fb9731b5c139e9df12a38ff25c7 languageName: node linkType: hard -"@smithy/querystring-parser@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/querystring-parser@npm:3.0.3" +"@smithy/property-provider@npm:^3.1.0": + version: 3.1.0 + resolution: "@smithy/property-provider@npm:3.1.0" dependencies: - "@smithy/types": ^3.3.0 + "@smithy/types": ^3.0.0 tslib: ^2.6.2 - checksum: 1de11cbc4325578b243a0e3e89b46371f4705d3df41ea51b37e8efa655d3b75253180b0fca9ceed8b3955a2d458689f551cd24fd904d0f65647c62c6b08795bf - languageName: node - linkType: hard - -"@smithy/service-error-classification@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/service-error-classification@npm:2.0.0" - checksum: f6f9b869dca8e74871c428e1277dd3700f67b0ca61de69fc838ac55187bbc602193a7d1073113ea6916892babf3f8fe4938b182fc902ce0a415928799a7e3f9a + checksum: 28e9a705731ba93ca0f427a3932423b2539c7a48e7196c0f8cca1b8cfe7d3b7a02338d4eb007847a9b103fb54b5e8d9a4b76b5d29bcf852528144c6b2ebe8636 languageName: node linkType: hard -"@smithy/service-error-classification@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/service-error-classification@npm:2.0.3" +"@smithy/property-provider@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/property-provider@npm:4.0.1" dependencies: - "@smithy/types": ^2.3.4 - checksum: 9d06d2c9d0f113543728d02858bc5e9be613975efa78d68bbb2d1853716175421cd9f7366a398ead37d2b8edd178fffa4e2643f4ac5a0cb937483f7960672998 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: c03bd23a9e707af6201e49d1d7c67d370b630eb39ab60eaebd628bda725105d3ed67392078d6ae73a22be35f7dcec9771fafd2a88c48b532ca717b68fc3c9a33 languageName: node linkType: hard -"@smithy/service-error-classification@npm:^2.0.4": - version: 2.0.4 - resolution: "@smithy/service-error-classification@npm:2.0.4" +"@smithy/protocol-http@npm:^1.1.0": + version: 1.2.0 + resolution: "@smithy/protocol-http@npm:1.2.0" dependencies: - "@smithy/types": ^2.3.5 - checksum: e0d90a5daf6af375963ac5521938158124a4df2ae431a08b4cbd40c68d68ca62a5e6f12b17e378ceec9e0023c49114f561e747c9396a513323c987cdcaff68eb + "@smithy/types": ^1.2.0 + tslib: ^2.5.0 + checksum: 39548762da6dbd301d36ef67709ef73ef6f9a4c9bdcc3fafa5d5625eec7dfa71db72898d3eb219a368a79ea5e368a08189519a7512d48e0cdc9db7089c8e9618 languageName: node linkType: hard -"@smithy/service-error-classification@npm:^2.0.9": - version: 2.0.9 - resolution: "@smithy/service-error-classification@npm:2.0.9" +"@smithy/protocol-http@npm:^3.0.6": + version: 3.0.6 + resolution: "@smithy/protocol-http@npm:3.0.6" dependencies: - "@smithy/types": ^2.8.0 - checksum: 76f4fcae188e6d318d09e9974d6b563cb1329d66788d6ada882974cf3c59046b174164b35d2a9239a8cc8747a07a81831e44b4032752ad220819cd8495962c90 + "@smithy/types": ^2.3.4 + tslib: ^2.5.0 + checksum: 1b137ec54c7dc952e1677a702ab12e1d9b5ac6603ef97926ae1cfd6d394fe1fe26c15f9b9f01efde647f9892c48d28309f83c4b37e531763317928857854e6bb languageName: node linkType: hard -"@smithy/service-error-classification@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/service-error-classification@npm:3.0.0" +"@smithy/protocol-http@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/protocol-http@npm:4.0.0" dependencies: "@smithy/types": ^3.0.0 - checksum: 44ad8cd553896c8608d411763d962f5a758bc86fc49f58ef70b2d2a26f5a9189d1bfa0eed13cfe457cf7bfbedcb2c3e4b6e77bd93bb534f6bef6da74ab776807 - languageName: node - linkType: hard - -"@smithy/service-error-classification@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/service-error-classification@npm:3.0.2" - dependencies: - "@smithy/types": ^3.2.0 - checksum: f7cfd6438286942ec1f7f059c4bdac517c64833fcbea27198880106c7e55d0c2083f0c8e22c8fe5a68f0d86e5bd33a78f644898b48008b2f14c0c13d46f0923c + tslib: ^2.6.2 + checksum: 0cea8e4933b1ca888f755495ac10cec9191678eb3425b755443479a1653223eede0d031a3b4cc04a34b80c4ed7b06d7e0a576f577988d876b81982aa84e31bfc languageName: node linkType: hard -"@smithy/service-error-classification@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/service-error-classification@npm:3.0.3" +"@smithy/protocol-http@npm:^5.0.1": + version: 5.0.1 + resolution: "@smithy/protocol-http@npm:5.0.1" dependencies: - "@smithy/types": ^3.3.0 - checksum: 5bef710f5698c929c97865cba41f36b0c59100b9a1c4478a2d47caeb5e3a1a18077b870b365efaa45c94666f2075bc8978f7a6e8b964afbba3a4e490eb6c13eb + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 3978f544aa4bf36bcf2484126f5208f7035b210ca0088f2721edd11dbe7bbddeacb6b9e7ca493437dc7b5fdd0d9d85992f2c6e31846744690f205f852a981a3b languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^2.0.0, @smithy/shared-ini-file-loader@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/shared-ini-file-loader@npm:2.0.1" +"@smithy/querystring-builder@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/querystring-builder@npm:3.0.0" dependencies: - "@smithy/types": ^2.0.2 - tslib: ^2.5.0 - checksum: 0f67d0ba9e44286a444301e603260a2ae5973324d43bc89f6ca15d2a830b32c1232474ff452cf3d607ee08d4fa6d17517fd901a4e6fd4dddbc571aa6b1ae3b6d + "@smithy/types": ^3.0.0 + "@smithy/util-uri-escape": ^3.0.0 + tslib: ^2.6.2 + checksum: 28a8a243002560f0928bf73b4686a0f81ed867957a033c2fc9fb249fb7006f076e78fcb506c96956e9d1d5e34a4c6228d0aeb7fcdc9418cdfe3377084e0654f4 languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^2.0.12, @smithy/shared-ini-file-loader@npm:^2.0.6": - version: 2.0.12 - resolution: "@smithy/shared-ini-file-loader@npm:2.0.12" +"@smithy/querystring-builder@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/querystring-builder@npm:4.0.1" dependencies: - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 06cb341c30fb3ad7bf16c6ee65baf350d56bd2545122b8334e6e82f609c67792de3462c5e7a78240e0c77abfb941eb244d1fc81b3e7dbc57b1d292555225eedf + "@smithy/types": ^4.1.0 + "@smithy/util-uri-escape": ^4.0.0 + tslib: ^2.6.2 + checksum: 8c8486a1c5a8f7cb05db4fdbe213bd02a9b323121da885ff234763d63730aa269ce779adc4dea74715fbf53a7ff4f487d9d51dda33ddb14533ad42166f10b0cb languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/shared-ini-file-loader@npm:2.0.3" +"@smithy/querystring-parser@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/querystring-parser@npm:3.0.0" dependencies: - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: 7b07f3dbdd6d3e665b0fd8c0a1c55be0148b1c1cdbf8e9cb95675af90163c59e2cc06e8761d5319ed818f23b760dac37be41e0b1e0691ed3773dc2749a1f4f81 + "@smithy/types": ^3.0.0 + tslib: ^2.6.2 + checksum: 5b76846e1ef0e19d4cd249089184597476b2f82ff491952b7f61d0dc8705b8596f9d8579fe3c2ce6b61dff61271990c35c85c89aba3724e781b4993afc816a2a languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^2.2.0": - version: 2.2.0 - resolution: "@smithy/shared-ini-file-loader@npm:2.2.0" +"@smithy/querystring-parser@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/querystring-parser@npm:4.0.1" dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 77563b09f961c12d1afe3c5006074be3590fd3b44b096b5b7d5244b6924a5988731c4903d13f13cef4f6139e10735fb04d63e8c78bece1f6594dc3158033a7e2 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 0ce6963937aa44882aeaf44b6aff68ca08faa927bd93da7adf354dd83b48beaef4246672504d8fc10d91be07e2f78c2b670bb82a46638da573183a69fa393278 languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^2.2.8": - version: 2.2.8 - resolution: "@smithy/shared-ini-file-loader@npm:2.2.8" +"@smithy/service-error-classification@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/service-error-classification@npm:3.0.0" dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 768b57b0f783e7ce9df08e23de0cbfb85e686dcd7f0014cf78747696247941ded20a79df84ab30fe96a927ab51c937264b7e70d90a94d4ac32a44972569cb4f7 + "@smithy/types": ^3.0.0 + checksum: 44ad8cd553896c8608d411763d962f5a758bc86fc49f58ef70b2d2a26f5a9189d1bfa0eed13cfe457cf7bfbedcb2c3e4b6e77bd93bb534f6bef6da74ab776807 languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/shared-ini-file-loader@npm:3.0.0" +"@smithy/service-error-classification@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/service-error-classification@npm:4.0.1" dependencies: - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: d8f0d6e8f30293adc7ad0f3877d37c827e04abbcee70750b6f25be0f6fc2b80b659beadb35562f6d2312d5b437cb801241c3c5610986228b83ca3a5c2c1071dd + "@smithy/types": ^4.1.0 + checksum: 331c06d7a07cd2f9303cc396e1f9b1d44c785ccb27f4f8f02177b9f496667ffa4df40ae38d2ed1b557cd9c75b5cacb9b00106462dc62094253f8619a7d370343 languageName: node linkType: hard @@ -17333,23 +11969,13 @@ __metadata: languageName: node linkType: hard -"@smithy/shared-ini-file-loader@npm:^3.1.1, @smithy/shared-ini-file-loader@npm:^3.1.2": - version: 3.1.2 - resolution: "@smithy/shared-ini-file-loader@npm:3.1.2" - dependencies: - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: bbb7ceaefdcbe4e43e5a65cf424e41f6a70e44fc9b05b7f8c968bd6134253e04af4455ad0fa91fda18f55695b7992c8bfc5281aa201be2a69f7733014fd84042 - languageName: node - linkType: hard - -"@smithy/shared-ini-file-loader@npm:^3.1.4": - version: 3.1.4 - resolution: "@smithy/shared-ini-file-loader@npm:3.1.4" +"@smithy/shared-ini-file-loader@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/shared-ini-file-loader@npm:4.0.1" dependencies: - "@smithy/types": ^3.3.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: c5321635f3be34e424009fc9045454a9ceec543ec20b3b9719bf3a48bbfc03b794f4545546e9c2dcb0a987de2ca5ff8999df9bf7c166c6fc7685c1fa1f068bc1 + checksum: 54a399800dc32368ad99c5da4fd5eae62de4f9ddd249144b6516493bc42625e83c21ccd7c61d667c88d6000a3f5b42db452c10b870740cc9bec9e6c776607a9e languageName: node linkType: hard @@ -17369,7 +11995,7 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^2.0.0, @smithy/signature-v4@npm:^2.0.10": +"@smithy/signature-v4@npm:^2.0.10": version: 2.0.10 resolution: "@smithy/signature-v4@npm:2.0.10" dependencies: @@ -17400,97 +12026,19 @@ __metadata: languageName: node linkType: hard -"@smithy/signature-v4@npm:^3.1.0": - version: 3.1.1 - resolution: "@smithy/signature-v4@npm:3.1.1" - dependencies: - "@smithy/is-array-buffer": ^3.0.0 - "@smithy/types": ^3.2.0 - "@smithy/util-hex-encoding": ^3.0.0 - "@smithy/util-middleware": ^3.0.2 - "@smithy/util-uri-escape": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 - tslib: ^2.6.2 - checksum: f7eca9889ac4252e8fff76bf31a75bbc8afebc7ac690e3fddffadaccde64fd05305b6e22ad00f8d8da3bb3ca8739d310d6abe70350a4c12c996fb0335a8bd975 - languageName: node - linkType: hard - -"@smithy/signature-v4@npm:^4.0.0": - version: 4.0.0 - resolution: "@smithy/signature-v4@npm:4.0.0" - dependencies: - "@smithy/is-array-buffer": ^3.0.0 - "@smithy/types": ^3.3.0 - "@smithy/util-hex-encoding": ^3.0.0 - "@smithy/util-middleware": ^3.0.3 - "@smithy/util-uri-escape": ^3.0.0 - "@smithy/util-utf8": ^3.0.0 - tslib: ^2.6.2 - checksum: 9cebd322cbfbc8794f4a21af1152d343c4ec431d0732985e6067d3d0038d2ae970e5f12cd4862b1380a3cd1d86230bdf90a171a93d3cd82b8cbe140a4d3685b0 - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/smithy-client@npm:2.0.3" - dependencies: - "@smithy/middleware-stack": ^2.0.0 - "@smithy/types": ^2.2.0 - "@smithy/util-stream": ^2.0.3 - tslib: ^2.5.0 - checksum: 65af55af184e8accfbd3463b49237e51799de7d2135fc76867842556e9a740df97d086ea888035dfb218001cf22c65020cbb407d878f17538bc0554d99ac2913 - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^2.1.10": - version: 2.1.10 - resolution: "@smithy/smithy-client@npm:2.1.10" - dependencies: - "@smithy/middleware-stack": ^2.0.5 - "@smithy/types": ^2.3.5 - "@smithy/util-stream": ^2.0.15 - tslib: ^2.5.0 - checksum: 9d608b4a4ea4c2be5d42335ca696302f10ddc261e63479f6cc896426a826446396fd0aaf1f58473fb3c9ca7521d0662887da463c5a0964d85743fb9cbdbfd56b - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^2.1.9": - version: 2.1.9 - resolution: "@smithy/smithy-client@npm:2.1.9" - dependencies: - "@smithy/middleware-stack": ^2.0.4 - "@smithy/types": ^2.3.4 - "@smithy/util-stream": ^2.0.14 - tslib: ^2.5.0 - checksum: f1cbf40c5473b17cd79d4e454d34c4a805bf69d95bba026082b5ad3d4030e5dacf98e9a8a818af38ebe9f489d6f1ffa33328a53e0f65b24c2f1e2523716c1356 - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^2.2.1": - version: 2.2.1 - resolution: "@smithy/smithy-client@npm:2.2.1" - dependencies: - "@smithy/middleware-endpoint": ^2.3.0 - "@smithy/middleware-stack": ^2.0.10 - "@smithy/protocol-http": ^3.0.12 - "@smithy/types": ^2.8.0 - "@smithy/util-stream": ^2.0.24 - tslib: ^2.5.0 - checksum: dda90afce6f3260217967c184065a3b07be699102a36e64357124394c7a075496e40d18e7b0d23f1204748777fcc08b7d51d8f0170e877a32dd306a4ff757748 - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/smithy-client@npm:3.0.1" - dependencies: - "@smithy/middleware-endpoint": ^3.0.0 - "@smithy/middleware-stack": ^3.0.0 - "@smithy/protocol-http": ^4.0.0 - "@smithy/types": ^3.0.0 - "@smithy/util-stream": ^3.0.1 +"@smithy/signature-v4@npm:^5.0.1": + version: 5.0.1 + resolution: "@smithy/signature-v4@npm:5.0.1" + dependencies: + "@smithy/is-array-buffer": ^4.0.0 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-hex-encoding": ^4.0.0 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-uri-escape": ^4.0.0 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: 901107c8bc7b80e0e1798210f996a30a9af441a48d399bbc89ed94790a3d2d93263896f71d2139c9ab4d2f40e5e752d233abad45621e33ba2eed8e390f38c364 + checksum: fb6613ce08e2008e3da447eeaafdfdcbd8a428c9d4aaf3220eab77cb33832596885f77966acbee3f753e113ce728f440ca31747908d81d0ecbcf1822c5c7bd28 languageName: node linkType: hard @@ -17508,40 +12056,18 @@ __metadata: languageName: node linkType: hard -"@smithy/smithy-client@npm:^3.1.2, @smithy/smithy-client@npm:^3.1.4": - version: 3.1.4 - resolution: "@smithy/smithy-client@npm:3.1.4" - dependencies: - "@smithy/middleware-endpoint": ^3.0.3 - "@smithy/middleware-stack": ^3.0.2 - "@smithy/protocol-http": ^4.0.2 - "@smithy/types": ^3.2.0 - "@smithy/util-stream": ^3.0.4 - tslib: ^2.6.2 - checksum: be1ce3523d5b49d1c2fb75695201dcc3748583050675efc7910b0a8bc9444c781daf435bec711166e6d2f0238ed301187283362c33aa31aefd2c21b09fb305a5 - languageName: node - linkType: hard - -"@smithy/smithy-client@npm:^3.1.8, @smithy/smithy-client@npm:^3.1.9": - version: 3.1.9 - resolution: "@smithy/smithy-client@npm:3.1.9" - dependencies: - "@smithy/middleware-endpoint": ^3.0.5 - "@smithy/middleware-stack": ^3.0.3 - "@smithy/protocol-http": ^4.0.4 - "@smithy/types": ^3.3.0 - "@smithy/util-stream": ^3.1.1 +"@smithy/smithy-client@npm:^4.1.4, @smithy/smithy-client@npm:^4.1.5": + version: 4.1.5 + resolution: "@smithy/smithy-client@npm:4.1.5" + dependencies: + "@smithy/core": ^3.1.4 + "@smithy/middleware-endpoint": ^4.0.5 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + "@smithy/util-stream": ^4.1.1 tslib: ^2.6.2 - checksum: 2d030ca4dd3e0767e30d3bd78d7eaea19ec96f8b03a8e15b61494ea4719f63d6f25290d2d4269fdbcc2df1912ece1aa8a4b92b5f2c2f3d3c75628002ce0b5b6a - languageName: node - linkType: hard - -"@smithy/types@npm:^1.0.0, @smithy/types@npm:^1.1.0": - version: 1.1.0 - resolution: "@smithy/types@npm:1.1.0" - dependencies: - tslib: ^2.5.0 - checksum: 8c0589fa973e5c71cf776c28c43aba04ee07139578fd0174aac0d74c3688e3ffa7075cecd65b223b2a155ad711808b1e4ad58a084ba9f24fcb49679272018387 + checksum: 49d39e98609c179e04fe635fb01f7be4e6e90d1365c38f6135c564ee36485c808873c82e523ebe16be03989d2cf8b87323aa9a198831980819fa378b671822d7 languageName: node linkType: hard @@ -17554,24 +12080,6 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^2.0.2": - version: 2.0.2 - resolution: "@smithy/types@npm:2.0.2" - dependencies: - tslib: ^2.5.0 - checksum: 4afdd7c77b212abd9e0770a1489057aa0470f8a59061c4fb2175b1f12e02180db3d85e16f2cd870a95c17bd28a5a4b8ef1dff1ade6852f85eafea12872d9588e - languageName: node - linkType: hard - -"@smithy/types@npm:^2.1.0, @smithy/types@npm:^2.2.0": - version: 2.2.0 - resolution: "@smithy/types@npm:2.2.0" - dependencies: - tslib: ^2.5.0 - checksum: b9bbb35a3d20d4cb26966830d25251f671253aa8f886d23abde71a879486fc5b049a66c44ebd3e724d495772336f13c3034fb35bc62a6db058daaf310e4a013d - languageName: node - linkType: hard - "@smithy/types@npm:^2.2.2": version: 2.2.2 resolution: "@smithy/types@npm:2.2.2" @@ -17590,24 +12098,6 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^2.3.5": - version: 2.3.5 - resolution: "@smithy/types@npm:2.3.5" - dependencies: - tslib: ^2.5.0 - checksum: b758ba1e21132cccc8b612fe56e9c0eb27fe6b00dcc002965a13dae40c172ae3bff2d994dae61e9c8bdadb844fd370a4c4cb031af6d954e4e1fb897ce5d6b54e - languageName: node - linkType: hard - -"@smithy/types@npm:^2.8.0": - version: 2.8.0 - resolution: "@smithy/types@npm:2.8.0" - dependencies: - tslib: ^2.5.0 - checksum: c0c85b1422f982635c8b5c6477f5d2b28a5afeaf21f6e877dc1f96e401673632b5abaf3b49f800f1859119c498151e5a59e0361c8f56945f79642c486ac68af8 - languageName: node - linkType: hard - "@smithy/types@npm:^3.0.0": version: 3.0.0 resolution: "@smithy/types@npm:3.0.0" @@ -17617,7 +12107,7 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^3.1.0, @smithy/types@npm:^3.2.0": +"@smithy/types@npm:^3.2.0": version: 3.2.0 resolution: "@smithy/types@npm:3.2.0" dependencies: @@ -17626,67 +12116,12 @@ __metadata: languageName: node linkType: hard -"@smithy/types@npm:^3.3.0": - version: 3.3.0 - resolution: "@smithy/types@npm:3.3.0" +"@smithy/types@npm:^4.1.0": + version: 4.1.0 + resolution: "@smithy/types@npm:4.1.0" dependencies: tslib: ^2.6.2 - checksum: 29bb5f83c41e32f8d4094a2aba2d3dfbd763ab5943784a700f3fa22df0dcf0ccac1b1907f7a87fbb9f6f2269fcd4750524bcb48f892249e200ffe397c0981309 - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/url-parser@npm:2.0.1" - dependencies: - "@smithy/querystring-parser": ^2.0.1 - "@smithy/types": ^2.0.2 - tslib: ^2.5.0 - checksum: 653bdeff812b972fa88a4e2d795c38df1aca68055818d150727b8b7d2b7b6bb00aed003b113febe371ed2e38e8dd4715b31af6afce7e883d937aed75e7ff48fb - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^2.0.10": - version: 2.0.10 - resolution: "@smithy/url-parser@npm:2.0.10" - dependencies: - "@smithy/querystring-parser": ^2.0.10 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 50ef87dc6714d80add7b793d76d271f8891f9f70bc924610ca98f1a48ca8be7ccadcdf48d22881191190ca26bdffddb2a08607f22e71f0f0c50dcbd54baee1fe - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^2.0.11": - version: 2.0.11 - resolution: "@smithy/url-parser@npm:2.0.11" - dependencies: - "@smithy/querystring-parser": ^2.0.11 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 43702644802c08f493dd0b717af286d584d80b43da2ef033498e94f890dd3d6bc5f80b7e0546ce9d5757eba9c10edf9711c019b7e3aaa6457bfd43661b865c6c - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^2.0.16": - version: 2.0.16 - resolution: "@smithy/url-parser@npm:2.0.16" - dependencies: - "@smithy/querystring-parser": ^2.0.16 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 05d9cca95307f3acd53e3a31af96b83e2351e3f64b68672afdda32b5aa6d902c05f2567b2a683ed32132c152e0b8d38200c803f63f9e8c983b976ccf999fcdc4 - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^2.0.2, @smithy/url-parser@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/url-parser@npm:2.0.3" - dependencies: - "@smithy/querystring-parser": ^2.0.3 - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: c9fb26804a7662107653de5882ce99a52017643c1ff87e1038a6a220db265c47a820a1ec934cf20ea96e7fa259081914c17449cb8b04311610885f2c01745738 + checksum: ff7dcb7a72a2f5e984df95342ec7276cc3249e57de76d5013bf69314a4dbd081e193c5f849e8e5c3f54be222d861272a90ab15b437678e31958eb2c76f55c689 languageName: node linkType: hard @@ -17701,45 +12136,14 @@ __metadata: languageName: node linkType: hard -"@smithy/url-parser@npm:^3.0.1, @smithy/url-parser@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/url-parser@npm:3.0.2" - dependencies: - "@smithy/querystring-parser": ^3.0.2 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: a0dac1ff3eac440d3dba7f2ad80eb3cfb46cf912ceb4a533b0bd87ad5b5f1e9b641ca9a247844129c33dc2901cbe753c89185b70c6d323b781b83451a738702e - languageName: node - linkType: hard - -"@smithy/url-parser@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/url-parser@npm:3.0.3" +"@smithy/url-parser@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/url-parser@npm:4.0.1" dependencies: - "@smithy/querystring-parser": ^3.0.3 - "@smithy/types": ^3.3.0 + "@smithy/querystring-parser": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 86b4bc8e6c176b56076c30233ca4cfeb98d162fe27a348ddfda5f163ce7d173b8e684aa26202bbf4e0b5695b0ad43c0cb40170ca6793652d0ea6edb00443c036 - languageName: node - linkType: hard - -"@smithy/util-base64@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-base64@npm:2.0.0" - dependencies: - "@smithy/util-buffer-from": ^2.0.0 - tslib: ^2.5.0 - checksum: 52124a684dfac853288acd2a0ffff02559c21bf7faaa3db58a914e4acb4b1f7925fd48593e7545db87f8f962250824d1249dc8be645ecbd2c1dd1728cfe1069b - languageName: node - linkType: hard - -"@smithy/util-base64@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/util-base64@npm:2.0.1" - dependencies: - "@smithy/util-buffer-from": ^2.0.0 - tslib: ^2.5.0 - checksum: 6320916b50a0f4048462564cbc413e619ee02747e188463721670ce554d0b1652517068a1aa066209101a2185b4f3d13afd0c173aac99c461ca685a1fa15f934 + checksum: 3ec0ebf024a333d20cfe463c246196a188abcd3460014cf535979540e873c5b9f7a13214e221aed31b50dd1f28b24b5eafbb6ef5ae1998987f81622c4ccd156b languageName: node linkType: hard @@ -17754,21 +12158,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-browser@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-body-length-browser@npm:2.0.0" - dependencies: - tslib: ^2.5.0 - checksum: 4bccdd857bd24c9dcb6e9f2d5be03d59415f9a94d660ec7b3efb45e9aa04017f34c387368f176f24233a071af3b7a2b5f8236a2f5a83bfc884d24dfcc341e836 - languageName: node - linkType: hard - -"@smithy/util-body-length-browser@npm:^2.0.1": - version: 2.0.1 - resolution: "@smithy/util-body-length-browser@npm:2.0.1" +"@smithy/util-base64@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-base64@npm:4.0.0" dependencies: - tslib: ^2.5.0 - checksum: 1d342acdba493047400a1aae9922e7274a2d4ba68f2980290ac4d44bd1a33a2a0a9d75b99c773924a7381d88c7b8cc612947e3adb442f7f67ac2edd4a4d3cf58 + "@smithy/util-buffer-from": ^4.0.0 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 7fb3430d6e1cbb4bcc61458587bb0746458f0ec8e8cd008224ca984ff65c3c3307b3a528d040cef4c1fc7d1bd4111f6de8f4f1595845422f14ac7d100b3871b1 languageName: node linkType: hard @@ -17781,21 +12178,12 @@ __metadata: languageName: node linkType: hard -"@smithy/util-body-length-node@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-body-length-node@npm:2.0.0" - dependencies: - tslib: ^2.5.0 - checksum: 47ded0cc99f880eda353700e10d6131289683164d4ef98a24a2d79449d33f3bbf70c1ce0a66fc457e0c8d14be9fb2a3430fa09302bbc3daa5d23129e11fff478 - languageName: node - linkType: hard - -"@smithy/util-body-length-node@npm:^2.1.0": - version: 2.1.0 - resolution: "@smithy/util-body-length-node@npm:2.1.0" +"@smithy/util-body-length-browser@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-body-length-browser@npm:4.0.0" dependencies: - tslib: ^2.5.0 - checksum: e4635251898f12e1825f2848e0b7cc9d01ec6635b3f1f71b790734bb702b88e795f6c539d42d95472dad00e50e9ff13fcf396791092b131e5834069cb8f52ed0 + tslib: ^2.6.2 + checksum: 72381e12de7cccbb722c60e3f3ae0f8bce7fc9a9e8064c7968ac733698a5a30bea098a3c365095c519491fe64e2e949c22f74d4f1e0d910090d6389b41c416eb languageName: node linkType: hard @@ -17808,124 +12196,70 @@ __metadata: languageName: node linkType: hard -"@smithy/util-buffer-from@npm:^1.1.0": - version: 1.1.0 - resolution: "@smithy/util-buffer-from@npm:1.1.0" - dependencies: - "@smithy/is-array-buffer": ^1.1.0 - tslib: ^2.5.0 - checksum: 73b145d6a11754cb95d9fc21264dd7623855cb768b42db4465232b878c148d8b6c968c8d77bd836f28d0ce4c855f30814848e8533764ee587c6c7c0176e7582b - languageName: node - linkType: hard - -"@smithy/util-buffer-from@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-buffer-from@npm:2.0.0" - dependencies: - "@smithy/is-array-buffer": ^2.0.0 - tslib: ^2.5.0 - checksum: d33cbf3e488d23390c88705ddae71b08de7a87b6453e38b508cd37a22a02e8b5be9f0cd46c1347b496c3977a815a7399b18840544ecdc4cce8cf3dcd0f5bb009 - languageName: node - linkType: hard - -"@smithy/util-buffer-from@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-buffer-from@npm:3.0.0" +"@smithy/util-body-length-node@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-body-length-node@npm:4.0.0" dependencies: - "@smithy/is-array-buffer": ^3.0.0 tslib: ^2.6.2 - checksum: 1bfc4ab093fe98132bbc1ccd36a0b9ad75a31ed26bac4b7e9350205513a2481eb190ae44679ab4fecc5e10d367b5e6592bbfbf792671579d17d17bd7f7f233f5 - languageName: node - linkType: hard - -"@smithy/util-config-provider@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-config-provider@npm:2.0.0" - dependencies: - tslib: ^2.5.0 - checksum: cdc34db5b42658a7c98652ddb2e35b31e0d76f22a051d71724927999a53467fb38fe6dcf228585544bc168cbd54ded3913e14cbc33c947d3c8a45ca518a9b7b0 - languageName: node - linkType: hard - -"@smithy/util-config-provider@npm:^2.1.0": - version: 2.1.0 - resolution: "@smithy/util-config-provider@npm:2.1.0" - dependencies: - tslib: ^2.5.0 - checksum: bd8b677fdf1891e5ec97f6fe0ab3e798ed005fd56c3868d6f529f523fbf077999f6af04295142be7f6d87551920ae0a455a6c74f3e4de972e8cd2070b569a5b1 + checksum: 12d8de9c526647f51f56804044f5847f0c7c7afee30fa368d2b7bd4b4de8fe2438a925aab51965fe8a4b2f08f68e8630cc3c54a449beae6646d99cae900ed106 languageName: node linkType: hard -"@smithy/util-config-provider@npm:^3.0.0": - version: 3.0.0 - resolution: "@smithy/util-config-provider@npm:3.0.0" +"@smithy/util-buffer-from@npm:^1.1.0": + version: 1.1.0 + resolution: "@smithy/util-buffer-from@npm:1.1.0" dependencies: - tslib: ^2.6.2 - checksum: fc0f5f57d30261cf3a6693d8e338b9d269332c478ee18d905309a769844188190caf0564855d7e84f6c61e56aa556195dda89f65e8c30791951cf4999e4a70e7 + "@smithy/is-array-buffer": ^1.1.0 + tslib: ^2.5.0 + checksum: 73b145d6a11754cb95d9fc21264dd7623855cb768b42db4465232b878c148d8b6c968c8d77bd836f28d0ce4c855f30814848e8533764ee587c6c7c0176e7582b languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^2.0.13": - version: 2.0.14 - resolution: "@smithy/util-defaults-mode-browser@npm:2.0.14" +"@smithy/util-buffer-from@npm:^2.0.0": + version: 2.0.0 + resolution: "@smithy/util-buffer-from@npm:2.0.0" dependencies: - "@smithy/property-provider": ^2.0.12 - "@smithy/smithy-client": ^2.1.10 - "@smithy/types": ^2.3.5 - bowser: ^2.11.0 + "@smithy/is-array-buffer": ^2.0.0 tslib: ^2.5.0 - checksum: 29066a0e04e6ea68be04e11e50ca30fb3f38c18126b761a8335042c472894f8a9c264bb924b7cdebac544e2bd0bcf408aca7cf70929634824ec1214baf0899ca + checksum: d33cbf3e488d23390c88705ddae71b08de7a87b6453e38b508cd37a22a02e8b5be9f0cd46c1347b496c3977a815a7399b18840544ecdc4cce8cf3dcd0f5bb009 languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/util-defaults-mode-browser@npm:2.0.3" +"@smithy/util-buffer-from@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-buffer-from@npm:3.0.0" dependencies: - "@smithy/property-provider": ^2.0.3 - "@smithy/types": ^2.2.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: f3fc2f46e629df30598a7bf0a2e0117f342eeaae3761606470ae9608938730c1c7bfbddff4672cbc4da9b3855d5827c8f2160a3db3298d9dd63e393968c9f0b8 + "@smithy/is-array-buffer": ^3.0.0 + tslib: ^2.6.2 + checksum: 1bfc4ab093fe98132bbc1ccd36a0b9ad75a31ed26bac4b7e9350205513a2481eb190ae44679ab4fecc5e10d367b5e6592bbfbf792671579d17d17bd7f7f233f5 languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^2.0.24": - version: 2.0.24 - resolution: "@smithy/util-defaults-mode-browser@npm:2.0.24" +"@smithy/util-buffer-from@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-buffer-from@npm:4.0.0" dependencies: - "@smithy/property-provider": ^2.0.17 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - bowser: ^2.11.0 - tslib: ^2.5.0 - checksum: 711f08ac4762b70ce91fd29592228d9c2a48b2a10ea04796a4340d9eae08981d82bea26730ee740dd77381cba59a6e449556417dbbb1fa8bf089d2c649a62af4 + "@smithy/is-array-buffer": ^4.0.0 + tslib: ^2.6.2 + checksum: 8124e28d3e34b5335c08398a9081cc56a232d23e08172d488669f91a167d0871d36aba9dd3e4b70175a52f1bd70e2bf708d4c989a19512a4374d2cf67650a15e languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/util-defaults-mode-browser@npm:3.0.1" +"@smithy/util-config-provider@npm:^3.0.0": + version: 3.0.0 + resolution: "@smithy/util-config-provider@npm:3.0.0" dependencies: - "@smithy/property-provider": ^3.0.0 - "@smithy/smithy-client": ^3.0.1 - "@smithy/types": ^3.0.0 - bowser: ^2.11.0 tslib: ^2.6.2 - checksum: eaf4389187d4c2e7f77010fceb4b10c3e396654d634ff1ef5c66164e86049000fe30eca010f637824ab88b7a9e501fcd08cab7a8b523468af6735b397e481e9a + checksum: fc0f5f57d30261cf3a6693d8e338b9d269332c478ee18d905309a769844188190caf0564855d7e84f6c61e56aa556195dda89f65e8c30791951cf4999e4a70e7 languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^3.0.10": - version: 3.0.11 - resolution: "@smithy/util-defaults-mode-browser@npm:3.0.11" +"@smithy/util-config-provider@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-config-provider@npm:4.0.0" dependencies: - "@smithy/property-provider": ^3.1.3 - "@smithy/smithy-client": ^3.1.9 - "@smithy/types": ^3.3.0 - bowser: ^2.11.0 tslib: ^2.6.2 - checksum: 62536fc7e81a180e30445c94af022223a89346c3c2f2d3fe7e48ec67e198ed31e1de598f6195a3142b6db7edb94b701ad49f52a6ef9ed546b137b97219537014 + checksum: 91bd9e0bec4c4a37c3fc286e72f3387be9272b090111edaee992d9e9619370f3f2ad88ce771ef42dbfe40a44500163b633914486e662526591f5f737d5e4ff5a languageName: node linkType: hard @@ -17942,90 +12276,16 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^3.0.4": - version: 3.0.6 - resolution: "@smithy/util-defaults-mode-browser@npm:3.0.6" +"@smithy/util-defaults-mode-browser@npm:^4.0.5": + version: 4.0.6 + resolution: "@smithy/util-defaults-mode-browser@npm:4.0.6" dependencies: - "@smithy/property-provider": ^3.1.2 - "@smithy/smithy-client": ^3.1.4 - "@smithy/types": ^3.2.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 bowser: ^2.11.0 tslib: ^2.6.2 - checksum: 753e21d8b6c9cbfb874dd9468823bce7ebfa979da8972fb5c67a31333513cebe09072fcb9ae803219bf41775569c8277e49f83abd96041042d3c487d299c7a0a - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^2.0.15": - version: 2.0.18 - resolution: "@smithy/util-defaults-mode-node@npm:2.0.18" - dependencies: - "@smithy/config-resolver": ^2.0.14 - "@smithy/credential-provider-imds": ^2.0.16 - "@smithy/node-config-provider": ^2.1.1 - "@smithy/property-provider": ^2.0.12 - "@smithy/smithy-client": ^2.1.10 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 623b46c36e2b45ac3d0957f6e106898e02896981b3637b97de7df446fe9f39f2a50000a84b83d3f4b59856f098efc1f7a2c56b5f9f437362bbf1f9d5fbf8615a - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/util-defaults-mode-node@npm:2.0.3" - dependencies: - "@smithy/config-resolver": ^2.0.3 - "@smithy/credential-provider-imds": ^2.0.3 - "@smithy/node-config-provider": ^2.0.3 - "@smithy/property-provider": ^2.0.3 - "@smithy/types": ^2.2.0 - tslib: ^2.5.0 - checksum: c3948efd797c6830d30e55fd959d2a0eaf8f841fd55719e446731f3a6c0ca2a8aa51e7e2ac971fe78f19e24ff1610379852856811b107d32f85fad3aea3b698c - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^2.0.32": - version: 2.0.32 - resolution: "@smithy/util-defaults-mode-node@npm:2.0.32" - dependencies: - "@smithy/config-resolver": ^2.0.23 - "@smithy/credential-provider-imds": ^2.1.5 - "@smithy/node-config-provider": ^2.1.9 - "@smithy/property-provider": ^2.0.17 - "@smithy/smithy-client": ^2.2.1 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 3bccae4e22307a25c0f5c0718dec6d0a1349586a64948e6211f2ba05bd02e226db87949e653ac34333f0646cc169b4c330fdaf102b594ea95c191acba5a2cbef - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^3.0.1": - version: 3.0.1 - resolution: "@smithy/util-defaults-mode-node@npm:3.0.1" - dependencies: - "@smithy/config-resolver": ^3.0.0 - "@smithy/credential-provider-imds": ^3.0.0 - "@smithy/node-config-provider": ^3.0.0 - "@smithy/property-provider": ^3.0.0 - "@smithy/smithy-client": ^3.0.1 - "@smithy/types": ^3.0.0 - tslib: ^2.6.2 - checksum: 2355a03b69f56d34e19653597fda1df5e598a04a5c9139a1902dd658b4d883a7c24b04f0e038043daa874f02f7ead719ce2ef2c1d0f9d83bc02a8ea120357469 - languageName: node - linkType: hard - -"@smithy/util-defaults-mode-node@npm:^3.0.10": - version: 3.0.11 - resolution: "@smithy/util-defaults-mode-node@npm:3.0.11" - dependencies: - "@smithy/config-resolver": ^3.0.5 - "@smithy/credential-provider-imds": ^3.1.4 - "@smithy/node-config-provider": ^3.1.4 - "@smithy/property-provider": ^3.1.3 - "@smithy/smithy-client": ^3.1.9 - "@smithy/types": ^3.3.0 - tslib: ^2.6.2 - checksum: 3df80c51cf77cd5215e64a48936831fad5f7d2accff3bed1ac62813bbd49da601cbca386b6efe0af67d33ddea423f428df14b4ca750ec7a376eb8a2e95893ba8 + checksum: dc686d0309abba48809318178ddb358ad8567d697f9476092802ac95f11acd23301feb1ac69dd6613a7b786cde74d38b2f3a7bd5c75feef1560b7935057961c2 languageName: node linkType: hard @@ -18044,40 +12304,18 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^3.0.4": - version: 3.0.6 - resolution: "@smithy/util-defaults-mode-node@npm:3.0.6" - dependencies: - "@smithy/config-resolver": ^3.0.3 - "@smithy/credential-provider-imds": ^3.1.2 - "@smithy/node-config-provider": ^3.1.2 - "@smithy/property-provider": ^3.1.2 - "@smithy/smithy-client": ^3.1.4 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: d64efd2b5bd7b4b3b1a668725d34018bd8cae00b8a59991eadabf122e590ad153be4f9beda58b063b451d9f03371575c9a8e2806bcc0b7790e63fc9d839f5c95 - languageName: node - linkType: hard - -"@smithy/util-endpoints@npm:^1.0.8": - version: 1.0.8 - resolution: "@smithy/util-endpoints@npm:1.0.8" - dependencies: - "@smithy/node-config-provider": ^2.1.9 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 8133e253f390ea1456e2f13f1853f258827497042109f2933f1c7fc47307f865e490ba7fafc22f6abacf609e10e17b67f2d62c0c48f8d88f3b9e94de4e88ff62 - languageName: node - linkType: hard - -"@smithy/util-endpoints@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-endpoints@npm:2.0.0" - dependencies: - "@smithy/node-config-provider": ^3.0.0 - "@smithy/types": ^3.0.0 +"@smithy/util-defaults-mode-node@npm:^4.0.5": + version: 4.0.6 + resolution: "@smithy/util-defaults-mode-node@npm:4.0.6" + dependencies: + "@smithy/config-resolver": ^4.0.1 + "@smithy/credential-provider-imds": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: 0c4d33ace7bf3d76b6e563f2a07e43a49d6a367d7874dcfc7f06c97accc5307f5e881aea7ea782f3a05e5ddf9e1e2e238070d563496423c048d115f539fc9941 + checksum: 27ae416acfda9f8eb78422495c7d6270cfb328b09a12121c7167016777b0cca8b21fa368d252a6830e1da8ee25155cbfcf7812071c827b0a6b9602c9c611c5b4 languageName: node linkType: hard @@ -18092,25 +12330,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-endpoints@npm:^2.0.2": - version: 2.0.3 - resolution: "@smithy/util-endpoints@npm:2.0.3" - dependencies: - "@smithy/node-config-provider": ^3.1.2 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: f8b77a7f68bd99b73362b29a56e35270b509f76ed82c003e82dae1468f46c2c986060aea1fcb78f3d9346830f62c1c3f3e0aa4de856b8897ba183efabc22969d - languageName: node - linkType: hard - -"@smithy/util-endpoints@npm:^2.0.5": - version: 2.0.5 - resolution: "@smithy/util-endpoints@npm:2.0.5" +"@smithy/util-endpoints@npm:^3.0.1": + version: 3.0.1 + resolution: "@smithy/util-endpoints@npm:3.0.1" dependencies: - "@smithy/node-config-provider": ^3.1.4 - "@smithy/types": ^3.3.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: bb2a96323f52beaf2820f4e5764c865cff3ac5bca0c0df6923bb4582b0f87faf1606110cd4e36005ac43f41e9673ebdca4bbb8b913880fc2a4e0ff3301250da8 + checksum: 2d351e297353fb624ba564b46ecf324376bc8fe34529ab4551e1d640c3b0317613a620c28977819db2c2d240791ff354d1d996fda119c0c4885a11507fb86af6 languageName: node linkType: hard @@ -18141,21 +12368,21 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^1.1.0": - version: 1.1.0 - resolution: "@smithy/util-middleware@npm:1.1.0" +"@smithy/util-hex-encoding@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-hex-encoding@npm:4.0.0" dependencies: - tslib: ^2.5.0 - checksum: 4c30f83355a2c455ec2d6ee8a1907c673a16955a33e8f220a2bb774f55310db1b1f9eea8c2760238916e04191ccb85583e91930e5710ba79e0be4dd4986940e8 + tslib: ^2.6.2 + checksum: b932fa0e5cd2ba2598ad55ce46722bbbd15109809badaa3e4402fe4dd6f31f62b9fb49d2616e38d660363dc92a5898391f9c8f3b18507c36109e908400785e2a languageName: node linkType: hard -"@smithy/util-middleware@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-middleware@npm:2.0.0" +"@smithy/util-middleware@npm:^1.1.0": + version: 1.1.0 + resolution: "@smithy/util-middleware@npm:1.1.0" dependencies: tslib: ^2.5.0 - checksum: 10401734a10e0c48ed684f20b7a34c40ed85f2e906e61adb6295963d035f2a93b524e80149a252a259a4bca3626773bf89c5eaa2423fd565358c6b4eb9b6d4e0 + checksum: 4c30f83355a2c455ec2d6ee8a1907c673a16955a33e8f220a2bb774f55310db1b1f9eea8c2760238916e04191ccb85583e91930e5710ba79e0be4dd4986940e8 languageName: node linkType: hard @@ -18169,26 +12396,6 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^2.0.4": - version: 2.0.4 - resolution: "@smithy/util-middleware@npm:2.0.4" - dependencies: - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 8c1fb2351ea1d3283fbf5f14407a2942bed5b78663cd4890fd98b86ec242fbeb55418930dd3b4b39d4bffa455afcbefd822e09ed3d7dbe511e1186c3c3e4ed54 - languageName: node - linkType: hard - -"@smithy/util-middleware@npm:^2.0.9": - version: 2.0.9 - resolution: "@smithy/util-middleware@npm:2.0.9" - dependencies: - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 0c34552d6845ef215441602a16ac6e02e2a5a8ab70e1b2ed0dc37a7acbf5de6c7f2de9ba09f303c2bfbfa77a0a4869f6660874c9f6daeed757392fb42466e01a - languageName: node - linkType: hard - "@smithy/util-middleware@npm:^3.0.0": version: 3.0.0 resolution: "@smithy/util-middleware@npm:3.0.0" @@ -18199,66 +12406,13 @@ __metadata: languageName: node linkType: hard -"@smithy/util-middleware@npm:^3.0.1, @smithy/util-middleware@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/util-middleware@npm:3.0.2" - dependencies: - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 8a6183d3fd4a7c01787fbfd1dd901b1cdf0937f3c5e73646e8377b1e3322782e191cb7c1c9278e6c84d7462d4b0e70bcac9cfca52367728b3357914db96f90cc - languageName: node - linkType: hard - -"@smithy/util-middleware@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/util-middleware@npm:3.0.3" +"@smithy/util-middleware@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/util-middleware@npm:4.0.1" dependencies: - "@smithy/types": ^3.3.0 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: f37f25d65595af5ff4c3f69fa7e66545ac1651f77979e15ffbc9047e18fc668dae90458ee76add85a49ea3729c49d317e40542d5430e81e2eafe8dcae2ddb3bc - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^2.0.0": - version: 2.0.0 - resolution: "@smithy/util-retry@npm:2.0.0" - dependencies: - "@smithy/service-error-classification": ^2.0.0 - tslib: ^2.5.0 - checksum: d5bfe5e81f41dffce6ba5aaf784f08247602d00f883c10c0de9e34a7f04f5369d7ac43901dd75eecc3864882b7390ad40885d07b3dcb35a366411b639482e673 - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/util-retry@npm:2.0.3" - dependencies: - "@smithy/service-error-classification": ^2.0.3 - "@smithy/types": ^2.3.4 - tslib: ^2.5.0 - checksum: 825a208c6f74038dd1151392a272dc8ea10819b7deb4f3a850647371d30e351b14d9457db744dae751914136af5eac8840ecb1cbe6004e62a66a34747b65f828 - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^2.0.4": - version: 2.0.4 - resolution: "@smithy/util-retry@npm:2.0.4" - dependencies: - "@smithy/service-error-classification": ^2.0.4 - "@smithy/types": ^2.3.5 - tslib: ^2.5.0 - checksum: 351235e1cc70b836c063c90ee14de29660d2661e412b009d97da6c4633ddd73f5629b37af4646c1d180b0c746c3872a0a561702b8d4ae9d27b8974ecd59e0fcc - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^2.0.9": - version: 2.0.9 - resolution: "@smithy/util-retry@npm:2.0.9" - dependencies: - "@smithy/service-error-classification": ^2.0.9 - "@smithy/types": ^2.8.0 - tslib: ^2.5.0 - checksum: 40385b48c846e2c8d79531789d6bbbd3c7342c607b7227a8c5e873b481e9425705927b26c65e7b71b20ff851e9b54d036b279a485c2a13a828359b7ef6d36fa4 + checksum: 1402e0abd9bfeb0d8b0033ad1b572984df1469dccf9f562353ec0133691826cdd85aa180616267819f80d8bb56c57f5a3a2ae92033f52cd8249230a6e670343b languageName: node linkType: hard @@ -18273,89 +12427,14 @@ __metadata: languageName: node linkType: hard -"@smithy/util-retry@npm:^3.0.1, @smithy/util-retry@npm:^3.0.2": - version: 3.0.2 - resolution: "@smithy/util-retry@npm:3.0.2" - dependencies: - "@smithy/service-error-classification": ^3.0.2 - "@smithy/types": ^3.2.0 - tslib: ^2.6.2 - checksum: 68846a52a6c71658db40f54681afad8c9bdb4687dc3c12fd13c27cf9aa3b96c57469a4d5658d4caabc9c710d95f920c0a3faafc9503fb99fb6466f51072fe852 - languageName: node - linkType: hard - -"@smithy/util-retry@npm:^3.0.3": - version: 3.0.3 - resolution: "@smithy/util-retry@npm:3.0.3" +"@smithy/util-retry@npm:^4.0.1": + version: 4.0.1 + resolution: "@smithy/util-retry@npm:4.0.1" dependencies: - "@smithy/service-error-classification": ^3.0.3 - "@smithy/types": ^3.3.0 + "@smithy/service-error-classification": ^4.0.1 + "@smithy/types": ^4.1.0 tslib: ^2.6.2 - checksum: c760595376154be67414083aa6f76094022df72987521469b124ef3ef5848c0536757dcd2006520580380db6a4d7b597a05569470c3151f71d5e678df63f4c13 - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^2.0.14": - version: 2.0.14 - resolution: "@smithy/util-stream@npm:2.0.14" - dependencies: - "@smithy/fetch-http-handler": ^2.2.1 - "@smithy/node-http-handler": ^2.1.6 - "@smithy/types": ^2.3.4 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-buffer-from": ^2.0.0 - "@smithy/util-hex-encoding": ^2.0.0 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 1b7c4e838406b644740778d84e8ea3c3ac692d6a6a7a479ba6192ee36e069462adc58dce06880713daada19090c3b80d0b794d13798eaa5915f15ca07a8ce666 - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^2.0.15": - version: 2.0.15 - resolution: "@smithy/util-stream@npm:2.0.15" - dependencies: - "@smithy/fetch-http-handler": ^2.2.2 - "@smithy/node-http-handler": ^2.1.7 - "@smithy/types": ^2.3.5 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-buffer-from": ^2.0.0 - "@smithy/util-hex-encoding": ^2.0.0 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 812e28327c52f4aa359d6876ea9c09e0a3703ce79dc7fbde2c654420ce4040fbf2ab73889d6a2c6af1c5dacc89459b7084c115e08d0df660b028fda3c0f9c86c - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^2.0.24": - version: 2.0.24 - resolution: "@smithy/util-stream@npm:2.0.24" - dependencies: - "@smithy/fetch-http-handler": ^2.3.2 - "@smithy/node-http-handler": ^2.2.2 - "@smithy/types": ^2.8.0 - "@smithy/util-base64": ^2.0.1 - "@smithy/util-buffer-from": ^2.0.0 - "@smithy/util-hex-encoding": ^2.0.0 - "@smithy/util-utf8": ^2.0.2 - tslib: ^2.5.0 - checksum: 097e6be8f59d166a5611f09a7823b55a1cf42726ac7c48ac93d8a3d5f1f5423ee6e74fda1081f49e03802f2f788646d5db50ae74798e9644e4db642452dfa101 - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^2.0.3": - version: 2.0.3 - resolution: "@smithy/util-stream@npm:2.0.3" - dependencies: - "@smithy/fetch-http-handler": ^2.0.3 - "@smithy/node-http-handler": ^2.0.3 - "@smithy/types": ^2.2.0 - "@smithy/util-base64": ^2.0.0 - "@smithy/util-buffer-from": ^2.0.0 - "@smithy/util-hex-encoding": ^2.0.0 - "@smithy/util-utf8": ^2.0.0 - tslib: ^2.5.0 - checksum: 7ab1623efcb4b324f583da160604d41d958aa8f979883d3707f4599e874a0d03393b4ea0e694e0428942a0da4a6dd7ec2e7e9c03c97aea6ea463ea4435fa1639 + checksum: 29f8afd444f4b692ebd8cb2d0f6045ac0d5ca3834c0b6bbfdf1f6c1faec17c7bdc9734413ba93c55a672d373900aaf08e3c9f2023b3ec9b60c057afb8bcb4966 languageName: node linkType: hard @@ -18375,35 +12454,19 @@ __metadata: languageName: node linkType: hard -"@smithy/util-stream@npm:^3.0.2, @smithy/util-stream@npm:^3.0.4": - version: 3.0.4 - resolution: "@smithy/util-stream@npm:3.0.4" - dependencies: - "@smithy/fetch-http-handler": ^3.1.0 - "@smithy/node-http-handler": ^3.1.0 - "@smithy/types": ^3.2.0 - "@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.6.2 - checksum: ba4a785d30606e82cbf80e644be05fad7a1813e19226ec8893a91993e0c943bc222643ab9c70625f72ee760b4f4d1632e74af586e028e7d3dc8197b1927e580b - languageName: node - linkType: hard - -"@smithy/util-stream@npm:^3.1.0, @smithy/util-stream@npm:^3.1.1": - version: 3.1.1 - resolution: "@smithy/util-stream@npm:3.1.1" - dependencies: - "@smithy/fetch-http-handler": ^3.2.2 - "@smithy/node-http-handler": ^3.1.3 - "@smithy/types": ^3.3.0 - "@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 +"@smithy/util-stream@npm:^4.1.0, @smithy/util-stream@npm:^4.1.1": + version: 4.1.1 + resolution: "@smithy/util-stream@npm:4.1.1" + dependencies: + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/types": ^4.1.0 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-buffer-from": ^4.0.0 + "@smithy/util-hex-encoding": ^4.0.0 + "@smithy/util-utf8": ^4.0.0 tslib: ^2.6.2 - checksum: a66ce6ffebfccbf5bf81cfef08f9286839e6d17406203e42d41d611e69da558a0c1ef98b218e5544a07a8171a60792437c3468d92ef41910a8472c052f47c6bc + checksum: 4f107dca10326b1d56844272cda01469a9bd345fb69b5cfcaa1d2f71545a6eda24ed24eb98d685c4538136bd286cb871d5547f99a2e688c5c2390b61ace0f8d6 languageName: node linkType: hard @@ -18434,6 +12497,15 @@ __metadata: languageName: node linkType: hard +"@smithy/util-uri-escape@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-uri-escape@npm:4.0.0" + dependencies: + tslib: ^2.6.2 + checksum: 7ea350545971f8a009d56e085c34c949c9045862cfab233ee7adc16e111a076a814bb5d9279b2b85ee382e0ed204a1c673ac32e3e28f1073b62a2c53a5dd6d19 + languageName: node + linkType: hard + "@smithy/util-utf8@npm:^1.1.0": version: 1.1.0 resolution: "@smithy/util-utf8@npm:1.1.0" @@ -18454,16 +12526,6 @@ __metadata: languageName: node linkType: hard -"@smithy/util-utf8@npm:^2.0.2": - version: 2.0.2 - resolution: "@smithy/util-utf8@npm:2.0.2" - dependencies: - "@smithy/util-buffer-from": ^2.0.0 - tslib: ^2.5.0 - checksum: e38fd6324ca2858f76fb6fce427c03faec599213acf95a5b18eb77b72cdf9327bd688e5a260dbccc0f512ea5426422ed200122a9542c00b14a6d9becc3f84c79 - languageName: node - linkType: hard - "@smithy/util-utf8@npm:^3.0.0": version: 3.0.0 resolution: "@smithy/util-utf8@npm:3.0.0" @@ -18474,6 +12536,16 @@ __metadata: languageName: node linkType: hard +"@smithy/util-utf8@npm:^4.0.0": + version: 4.0.0 + resolution: "@smithy/util-utf8@npm:4.0.0" + dependencies: + "@smithy/util-buffer-from": ^4.0.0 + tslib: ^2.6.2 + checksum: 08811c5a18c341782b3b65acc4640a9f559aeba61c889dbdc56e5153a3b7f395e613bfb1ade25cf15311d6237f291e1fce8af197c6313065e0cb084fd2148c64 + languageName: node + linkType: hard + "@smithy/util-waiter@npm:^3.0.0": version: 3.0.0 resolution: "@smithy/util-waiter@npm:3.0.0" @@ -18485,6 +12557,17 @@ __metadata: languageName: node linkType: hard +"@smithy/util-waiter@npm:^4.0.2": + version: 4.0.2 + resolution: "@smithy/util-waiter@npm:4.0.2" + dependencies: + "@smithy/abort-controller": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 8e5cbf0ea3d93e3bc834b2db8e158c2a84a1c36f5163d4b9b925f6444c5be60c23803b6afb323de2d32f16f08f3e03e8e423bc7e8b531bbf9ff6e23f42554fe9 + languageName: node + linkType: hard + "@spider-cloud/spider-client@npm:^0.0.21": version: 0.0.21 resolution: "@spider-cloud/spider-client@npm:0.0.21" @@ -20247,6 +14330,13 @@ __metadata: languageName: node linkType: hard +"@types/uuid@npm:^9.0.1": + version: 9.0.8 + resolution: "@types/uuid@npm:9.0.8" + checksum: b8c60b7ba8250356b5088302583d1704a4e1a13558d143c549c408bf8920535602ffc12394ede77f8a8083511b023704bc66d1345792714002bfa261b17c5275 + languageName: node + linkType: hard + "@types/validate-npm-package-name@npm:3.0.0": version: 3.0.0 resolution: "@types/validate-npm-package-name@npm:3.0.0" @@ -28308,17 +22398,6 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:4.1.2": - version: 4.1.2 - resolution: "fast-xml-parser@npm:4.1.2" - dependencies: - strnum: ^1.0.5 - bin: - fxparser: src/cli/cli.js - checksum: 6a7d1b17057f8470e70603eddfa75f990625735d068d57ece861d0154ad8d27fda63c2831d07e1ecd7e68e993738b2448925cb9277d8c0ed68009623bbcd63c6 - languageName: node - linkType: hard - "fast-xml-parser@npm:4.2.5": version: 4.2.5 resolution: "fast-xml-parser@npm:4.2.5" @@ -28330,25 +22409,25 @@ __metadata: languageName: node linkType: hard -"fast-xml-parser@npm:^4.3.0": - version: 4.3.4 - resolution: "fast-xml-parser@npm:4.3.4" +"fast-xml-parser@npm:4.4.1, fast-xml-parser@npm:^4.4.1": + version: 4.4.1 + resolution: "fast-xml-parser@npm:4.4.1" dependencies: strnum: ^1.0.5 bin: fxparser: src/cli/cli.js - checksum: ab88177343f6d3d971d53462db3011003a83eb8a8db704840127ddaaf27105ea90cdf7903a0f9b2e1279ccc4adfca8dfc0277b33bae6262406f10c16bd60ccf9 + checksum: f440c01cd141b98789ae777503bcb6727393296094cc82924ae9f88a5b971baa4eec7e65306c7e07746534caa661fc83694ff437d9012dc84dee39dfbfaab947 languageName: node linkType: hard -"fast-xml-parser@npm:^4.4.1": - version: 4.4.1 - resolution: "fast-xml-parser@npm:4.4.1" +"fast-xml-parser@npm:^4.3.0": + version: 4.3.4 + resolution: "fast-xml-parser@npm:4.3.4" dependencies: strnum: ^1.0.5 bin: fxparser: src/cli/cli.js - checksum: f440c01cd141b98789ae777503bcb6727393296094cc82924ae9f88a5b971baa4eec7e65306c7e07746534caa661fc83694ff437d9012dc84dee39dfbfaab947 + checksum: ab88177343f6d3d971d53462db3011003a83eb8a8db704840127ddaaf27105ea90cdf7903a0f9b2e1279ccc4adfca8dfc0277b33bae6262406f10c16bd60ccf9 languageName: node linkType: hard From dd581e40d6460dc883f3ff515d5ad902d43d2715 Mon Sep 17 00:00:00 2001 From: Daniel Katz Date: Fri, 21 Feb 2025 02:04:05 +0200 Subject: [PATCH 40/70] fix(core): Fix issue in .d.ts typing for TextEncoder (#7726) --- langchain-core/src/output_parsers/bytes.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/langchain-core/src/output_parsers/bytes.ts b/langchain-core/src/output_parsers/bytes.ts index b6ebdb4708df..8c99bfc38713 100644 --- a/langchain-core/src/output_parsers/bytes.ts +++ b/langchain-core/src/output_parsers/bytes.ts @@ -13,9 +13,7 @@ export class BytesOutputParser extends BaseTransformOutputParser { lc_serializable = true; - // TODO: Figure out why explicit typing is needed - // eslint-disable-next-line @typescript-eslint/no-explicit-any - protected textEncoder: any = new TextEncoder(); + protected textEncoder: InstanceType = new TextEncoder(); parse(text: string): Promise { return Promise.resolve(this.textEncoder.encode(text)); From 0412b4f7070f4742271428577cb61c9fbe797a92 Mon Sep 17 00:00:00 2001 From: Allen Firstenberg Date: Thu, 20 Feb 2025 19:04:29 -0500 Subject: [PATCH 41/70] fix(google-genai): Support larger range of temperatures for Gemini models (#7703) Co-authored-by: Jacob Lee --- libs/langchain-google-genai/src/chat_models.ts | 6 +++--- libs/langchain-google-genai/src/tests/chat_models.test.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/langchain-google-genai/src/chat_models.ts b/libs/langchain-google-genai/src/chat_models.ts index 799cf523a841..fc3096758445 100644 --- a/libs/langchain-google-genai/src/chat_models.ts +++ b/libs/langchain-google-genai/src/chat_models.ts @@ -101,7 +101,7 @@ export interface GoogleGenerativeAIChatInput /** * Controls the randomness of the output. * - * Values can range from [0.0,1.0], inclusive. A value closer to 1.0 + * Values can range from [0.0,2.0], inclusive. A value closer to 2.0 * will produce responses that are more varied and creative, while * a value closer to 0.0 will typically result in less surprising * responses from the model. @@ -644,8 +644,8 @@ export class ChatGoogleGenerativeAI } this.temperature = fields?.temperature ?? this.temperature; - if (this.temperature && (this.temperature < 0 || this.temperature > 1)) { - throw new Error("`temperature` must be in the range of [0.0,1.0]"); + if (this.temperature && (this.temperature < 0 || this.temperature > 2)) { + throw new Error("`temperature` must be in the range of [0.0,2.0]"); } this.topP = fields?.topP ?? this.topP; diff --git a/libs/langchain-google-genai/src/tests/chat_models.test.ts b/libs/langchain-google-genai/src/tests/chat_models.test.ts index 73cc321abd7c..db18639e9939 100644 --- a/libs/langchain-google-genai/src/tests/chat_models.test.ts +++ b/libs/langchain-google-genai/src/tests/chat_models.test.ts @@ -28,7 +28,7 @@ function extractKeys(obj: Record, keys: string[] = []) { return keys; } -test("Google AI - `temperature` must be in range [0.0,1.0]", async () => { +test("Google AI - `temperature` must be in range [0.0,2.0]", async () => { expect( () => new ChatGoogleGenerativeAI({ @@ -38,7 +38,7 @@ test("Google AI - `temperature` must be in range [0.0,1.0]", async () => { expect( () => new ChatGoogleGenerativeAI({ - temperature: 1.1, + temperature: 2.1, }) ).toThrow(); }); From f0247cc849c368be8dca6ac3ec513256610e920e Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 20 Feb 2025 16:15:34 -0800 Subject: [PATCH 42/70] release(aws): 0.1.4 (#7728) --- libs/langchain-aws/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-aws/package.json b/libs/langchain-aws/package.json index 0474988ee907..540b5be1ca39 100644 --- a/libs/langchain-aws/package.json +++ b/libs/langchain-aws/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/aws", - "version": "0.1.3", + "version": "0.1.4", "description": "LangChain AWS integration", "type": "module", "engines": { From bee2366e91bee691f2502b104692d079e4b6f8f9 Mon Sep 17 00:00:00 2001 From: Allen Firstenberg Date: Thu, 20 Feb 2025 19:30:04 -0500 Subject: [PATCH 43/70] fix(google-common): Eliminate hard-coded default values in favor of model-based defaults (#7704) Co-authored-by: Jacob Lee --- libs/langchain-google-common/src/chat_models.ts | 8 ++++---- .../langchain-google-common/src/tests/chat_models.test.ts | 8 ++++++++ libs/langchain-google-common/src/utils/gemini.ts | 8 ++++++++ 3 files changed, 20 insertions(+), 4 deletions(-) diff --git a/libs/langchain-google-common/src/chat_models.ts b/libs/langchain-google-common/src/chat_models.ts index 75a83d50bf06..279df6cb683d 100644 --- a/libs/langchain-google-common/src/chat_models.ts +++ b/libs/langchain-google-common/src/chat_models.ts @@ -181,13 +181,13 @@ export abstract class ChatGoogleBase modelName = "gemini-pro"; - temperature = 0.7; + temperature: number; - maxOutputTokens = 1024; + maxOutputTokens: number; - topP = 0.8; + topP: number; - topK = 40; + topK: number; presencePenalty: number; diff --git a/libs/langchain-google-common/src/tests/chat_models.test.ts b/libs/langchain-google-common/src/tests/chat_models.test.ts index 3a7a34adcf7d..fe9305510b02 100644 --- a/libs/langchain-google-common/src/tests/chat_models.test.ts +++ b/libs/langchain-google-common/src/tests/chat_models.test.ts @@ -218,6 +218,7 @@ describe("Mock ChatGoogle - Gemini", () => { }; const model = new ChatGoogle({ authOptions, + temperature: 0.8, }); const messages: BaseMessageLike[] = [ new HumanMessage("Flip a coin and tell me H for heads and T for tails"), @@ -229,6 +230,13 @@ describe("Mock ChatGoogle - Gemini", () => { expect(record.opts).toBeDefined(); expect(record.opts.data).toBeDefined(); const { data } = record.opts; + + expect(data).toHaveProperty("generationConfig"); + const { generationConfig } = data; + expect(generationConfig).toHaveProperty("temperature"); + expect(generationConfig.temperature).toEqual(0.8); + expect(generationConfig).not.toHaveProperty("topP"); + expect(data.contents).toBeDefined(); expect(data.contents.length).toEqual(3); expect(data.contents[0].role).toEqual("user"); diff --git a/libs/langchain-google-common/src/utils/gemini.ts b/libs/langchain-google-common/src/utils/gemini.ts index 213160a43b10..9af4651a3cde 100644 --- a/libs/langchain-google-common/src/utils/gemini.ts +++ b/libs/langchain-google-common/src/utils/gemini.ts @@ -1102,6 +1102,14 @@ export function getGeminiAPI(config?: GeminiAPIConfig): GoogleAIAPI { } } + // Remove any undefined properties, so we don't send them + let attribute: keyof GeminiGenerationConfig; + for (attribute in ret) { + if (ret[attribute] === undefined) { + delete ret[attribute]; + } + } + return ret; } From 27e653822b849498e742871f4ab08b8409ef0793 Mon Sep 17 00:00:00 2001 From: Allen Firstenberg Date: Thu, 20 Feb 2025 19:30:23 -0500 Subject: [PATCH 44/70] feat (google-*): Support Google Cloud Express Mode (#7676) Co-authored-by: Jacob Lee --- .../integrations/chat/google_vertex_ai.ipynb | 10 ++++- .../src/chat_models.ts | 7 +-- .../langchain-google-common/src/connection.ts | 26 ++++++++++- .../src/tests/chat_models.int.test.ts | 43 ++++++++++++++++++- .../src/tests/chat_models.int.test.ts | 19 +++++++- 5 files changed, 93 insertions(+), 12 deletions(-) diff --git a/docs/core_docs/docs/integrations/chat/google_vertex_ai.ipynb b/docs/core_docs/docs/integrations/chat/google_vertex_ai.ipynb index 7337779ab8a9..c7893aff5162 100644 --- a/docs/core_docs/docs/integrations/chat/google_vertex_ai.ipynb +++ b/docs/core_docs/docs/integrations/chat/google_vertex_ai.ipynb @@ -48,7 +48,8 @@ "## Setup\n", "\n", "LangChain.js supports two different authentication methods based on whether\n", - "you're running in a Node.js environment or a web environment.\n", + "you're running in a Node.js environment or a web environment. It also supports\n", + "the authentication method used by Vertex AI Express Mode using either package.\n", "\n", "To access `ChatVertexAI` models you'll need to setup Google VertexAI in your Google Cloud Platform (GCP) account, save the credentials file, and install the `@langchain/google-vertexai` integration package.\n", "\n", @@ -66,6 +67,13 @@ "GOOGLE_VERTEX_AI_WEB_CREDENTIALS={\"type\":\"service_account\",\"project_id\":\"YOUR_PROJECT-12345\",...}\n", "```\n", "\n", + "If you are using Vertex AI Express Mode, you can install either the `@langchain/google-vertexai` or `@langchain/google-vertexai-web` package.\n", + "You can then go to the [Express Mode](https://console.cloud.google.com/vertex-ai/studio) API Key page and set your API Key in the `GOOGLE_API_KEY` environment variable:\n", + "\n", + "```bash\n", + "export GOOGLE_API_KEY=\"api_key_value\"\n", + "```\n", + "\n", "If you want to get automated tracing of your model calls you can also set your [LangSmith](https://docs.smith.langchain.com/) API key by uncommenting below:\n", "\n", "```bash\n", diff --git a/libs/langchain-google-common/src/chat_models.ts b/libs/langchain-google-common/src/chat_models.ts index 279df6cb683d..9c2e6e633d14 100644 --- a/libs/langchain-google-common/src/chat_models.ts +++ b/libs/langchain-google-common/src/chat_models.ts @@ -246,12 +246,7 @@ export abstract class ChatGoogleBase } buildApiKey(fields?: GoogleAIBaseLLMInput): string | undefined { - if (fields?.platformType !== "gcp") { - return fields?.apiKey ?? getEnvironmentVariable("GOOGLE_API_KEY"); - } else { - // GCP doesn't support API Keys - return undefined; - } + return fields?.apiKey ?? getEnvironmentVariable("GOOGLE_API_KEY"); } buildClient( diff --git a/libs/langchain-google-common/src/connection.ts b/libs/langchain-google-common/src/connection.ts index 5a1c1fa494ae..7b327ca150cd 100644 --- a/libs/langchain-google-common/src/connection.ts +++ b/libs/langchain-google-common/src/connection.ts @@ -281,8 +281,15 @@ export abstract class GoogleAIConnection< } } + get isApiKey(): boolean { + return this.client.clientType === "apiKey"; + } + get computedPlatformType(): GooglePlatformType { - if (this.client.clientType === "apiKey") { + // This is not a completely correct assumption, since GCP can + // have an API Key. But if so, then people need to set the platform + // type explicitly. + if (this.isApiKey) { return "gai"; } else { return "gcp"; @@ -310,7 +317,14 @@ export abstract class GoogleAIConnection< return url; } - async buildUrlVertex(): Promise { + async buildUrlVertexExpress(): Promise { + const method = await this.buildUrlMethod(); + const publisher = this.modelPublisher; + const url = `https://aiplatform.googleapis.com/${this.apiVersion}/publishers/${publisher}/models/${this.model}:${method}`; + return url; + } + + async buildUrlVertexLocation(): Promise { const projectId = await this.client.getProjectId(); const method = await this.buildUrlMethod(); const publisher = this.modelPublisher; @@ -318,6 +332,14 @@ export abstract class GoogleAIConnection< return url; } + async buildUrlVertex(): Promise { + if (this.isApiKey) { + return this.buildUrlVertexExpress(); + } else { + return this.buildUrlVertexLocation(); + } + } + async buildUrl(): Promise { switch (this.platform) { case "gai": diff --git a/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts b/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts index 6d1606614bd1..fc74fea30f20 100644 --- a/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts +++ b/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts @@ -65,7 +65,7 @@ const calculatorTool = tool((_) => "no-op", { const testGeminiModelNames = [ ["gemini-1.5-pro-002"], ["gemini-1.5-flash-002"], - ["gemini-2.0-flash-exp"], + ["gemini-2.0-flash-001"], // ["gemini-2.0-flash-thinking-exp-1219"], ]; @@ -100,6 +100,11 @@ describe.each(testGeminiModelNames)("GAuth Gemini Chat (%s)", (modelName) => { modelName, }); const res = await model.invoke("What is 1 + 1?"); + + expect(recorder?.request?.connection?.url).toMatch( + /https:\/\/.+-aiplatform.googleapis.com/ + ); + expect(res).toBeDefined(); expect(res._getType()).toEqual("ai"); @@ -612,6 +617,42 @@ describe.each(testGeminiModelNames)("GAuth Gemini Chat (%s)", (modelName) => { }); }); +describe("Express Gemini Chat", () => { + // We don't do a lot of tests or across every model, since there are + // pretty severe rate limits. + const modelName = "gemini-2.0-flash-001"; + + let recorder: GoogleRequestRecorder; + let callbacks: BaseCallbackHandler[]; + + beforeEach(async () => { + recorder = new GoogleRequestRecorder(); + callbacks = [recorder, new GoogleRequestLogger()]; + }); + + test("invoke", async () => { + const model = new ChatVertexAI({ + callbacks, + modelName, + }); + const res = await model.invoke("What is 1 + 1?"); + + expect(recorder?.request?.connection?.url).toMatch( + /https:\/\/aiplatform.googleapis.com/ + ); + + expect(res).toBeDefined(); + expect(res._getType()).toEqual("ai"); + + const aiMessage = res as AIMessageChunk; + expect(aiMessage.content).toBeDefined(); + + expect(typeof aiMessage.content).toBe("string"); + const text = aiMessage.content as string; + expect(text).toMatch(/(1 + 1 (equals|is|=) )?2.? ?/); + }); +}); + describe("GAuth Anthropic Chat", () => { let recorder: GoogleRequestRecorder; let callbacks: BaseCallbackHandler[]; diff --git a/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts b/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts index e66bab6f06ca..6005de802e5d 100644 --- a/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts +++ b/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts @@ -27,6 +27,7 @@ import { } from "@langchain/google-common"; import { BaseCallbackHandler } from "@langchain/core/callbacks/base"; import { concat } from "@langchain/core/utils/stream"; +import { getEnvironmentVariable } from "@langchain/core/utils/env"; import fs from "fs/promises"; import { ChatPromptTemplate, @@ -296,11 +297,11 @@ const testGeminiModelNames = [ }, { modelName: "gemini-1.5-flash-002", platformType: "gcp", apiVersion: "v1" }, { - modelName: "gemini-2.0-flash-exp", + modelName: "gemini-2.0-flash-001", platformType: "gai", apiVersion: "v1beta", }, - { modelName: "gemini-2.0-flash-exp", platformType: "gcp", apiVersion: "v1" }, + { modelName: "gemini-2.0-flash-001", platformType: "gcp", apiVersion: "v1" }, // Flash Thinking doesn't have functions or other features // {modelName: "gemini-2.0-flash-thinking-exp", platformType: "gai"}, @@ -327,11 +328,17 @@ describe.each(testGeminiModelNames)( recorder = new GoogleRequestRecorder(); callbacks = [recorder]; + const apiKey = + platformType === "gai" + ? getEnvironmentVariable("TEST_API_KEY") + : undefined; + return new ChatGoogle({ modelName, platformType: platformType as GooglePlatformType, apiVersion, callbacks, + apiKey, ...(fields ?? {}), }); } @@ -348,6 +355,14 @@ describe.each(testGeminiModelNames)( test("invoke", async () => { const model = newChatGoogle(); const res = await model.invoke("What is 1 + 1?"); + + const connectionUrl = recorder?.request?.connection?.url; + const connectionUrlMatch = + model.platform === "gcp" + ? /https:\/\/.+-aiplatform.googleapis.com/ + : /https:\/\/generativelanguage.googleapis.com/; + expect(connectionUrl).toMatch(connectionUrlMatch); + expect(res).toBeDefined(); expect(res._getType()).toEqual("ai"); From 9f0f93ce8eb84bbf475fdf8fc4948e48401137b9 Mon Sep 17 00:00:00 2001 From: Allen Firstenberg Date: Thu, 20 Feb 2025 20:01:45 -0500 Subject: [PATCH 45/70] minor(google-gauth): Upgrade google-auth-library to latest major version (#7729) --- libs/langchain-google-gauth/package.json | 2 +- yarn.lock | 84 +++++------------------- 2 files changed, 16 insertions(+), 70 deletions(-) diff --git a/libs/langchain-google-gauth/package.json b/libs/langchain-google-gauth/package.json index c3a762599d74..6075238ec648 100644 --- a/libs/langchain-google-gauth/package.json +++ b/libs/langchain-google-gauth/package.json @@ -36,7 +36,7 @@ "license": "MIT", "dependencies": { "@langchain/google-common": "~0.1.8", - "google-auth-library": "^8.9.0" + "google-auth-library": "^9.15.1" }, "peerDependencies": { "@langchain/core": ">=0.2.21 <0.4.0" diff --git a/yarn.lock b/yarn.lock index f70df959b9fc..94a6bd686f90 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8569,7 +8569,7 @@ __metadata: eslint-plugin-import: ^2.27.5 eslint-plugin-no-instanceof: ^1.0.1 eslint-plugin-prettier: ^4.2.1 - google-auth-library: ^8.9.0 + google-auth-library: ^9.15.1 jest: ^29.5.0 jest-environment-node: ^29.6.4 prettier: ^2.8.3 @@ -22382,13 +22382,6 @@ __metadata: languageName: node linkType: hard -"fast-text-encoding@npm:^1.0.0": - version: 1.0.6 - resolution: "fast-text-encoding@npm:1.0.6" - checksum: 9d58f694314b3283e785bf61954902536da228607ad246905e30256f9ab8331f780ac987e7222c9f5eafd04168d07e12b8054c85cedb76a2c05af0e82387a903 - languageName: node - linkType: hard - "fast-url-parser@npm:1.1.3": version: 1.1.3 resolution: "fast-url-parser@npm:1.1.3" @@ -23216,18 +23209,6 @@ __metadata: languageName: node linkType: hard -"gaxios@npm:^5.0.0, gaxios@npm:^5.0.1": - version: 5.1.0 - resolution: "gaxios@npm:5.1.0" - dependencies: - extend: ^3.0.2 - https-proxy-agent: ^5.0.0 - is-stream: ^2.0.0 - node-fetch: ^2.6.7 - checksum: c3bf9eff0055f9af734380a765afb237ca199b6dedccd888417075c923c94311dcf5217fcb2b908c1121412668959d99c5ef5328827155e51deae6ce579c4473 - languageName: node - linkType: hard - "gaxios@npm:^6.0.0, gaxios@npm:^6.0.3": version: 6.1.1 resolution: "gaxios@npm:6.1.1" @@ -23265,16 +23246,6 @@ __metadata: languageName: node linkType: hard -"gcp-metadata@npm:^5.3.0": - version: 5.3.0 - resolution: "gcp-metadata@npm:5.3.0" - dependencies: - gaxios: ^5.0.0 - json-bigint: ^1.0.0 - checksum: 891ea0b902a17f33d7bae753830d23962b63af94ed071092c30496e7d26f8128ba9af43c3d38474bea29cb32a884b4bcb5720ce8b9de4a7e1108475d3d7ae219 - languageName: node - linkType: hard - "gcp-metadata@npm:^6.0.0": version: 6.0.0 resolution: "gcp-metadata@npm:6.0.0" @@ -23800,23 +23771,6 @@ __metadata: languageName: node linkType: hard -"google-auth-library@npm:^8.9.0": - version: 8.9.0 - resolution: "google-auth-library@npm:8.9.0" - dependencies: - arrify: ^2.0.0 - base64-js: ^1.3.0 - ecdsa-sig-formatter: ^1.0.11 - fast-text-encoding: ^1.0.0 - gaxios: ^5.0.0 - gcp-metadata: ^5.3.0 - gtoken: ^6.1.0 - jws: ^4.0.0 - lru-cache: ^6.0.0 - checksum: 8e0bc5f1e91804523786413bf4358e4c5ad94b1e873c725ddd03d0f1c242e2b38e26352c0f375334fbc1d94110f761b304aa0429de49b4a27ebc3875a5b56644 - languageName: node - linkType: hard - "google-auth-library@npm:^9.0.0": version: 9.0.0 resolution: "google-auth-library@npm:9.0.0" @@ -23846,6 +23800,20 @@ __metadata: languageName: node linkType: hard +"google-auth-library@npm:^9.15.1": + version: 9.15.1 + resolution: "google-auth-library@npm:9.15.1" + dependencies: + base64-js: ^1.3.0 + ecdsa-sig-formatter: ^1.0.11 + gaxios: ^6.1.1 + gcp-metadata: ^6.1.0 + gtoken: ^7.0.0 + jws: ^4.0.0 + checksum: 1c7660b7d21504a58b6b7780b0ca56f07a4d2b68d2ca14e5c4beaedd45cc4898baa8df1cfaf4dac15413a8db3cecc00e84662d8a327f9b9488ff2df7d8d23c84 + languageName: node + linkType: hard + "google-auth-library@npm:^9.4.2": version: 9.14.0 resolution: "google-auth-library@npm:9.14.0" @@ -23900,17 +23868,6 @@ __metadata: languageName: node linkType: hard -"google-p12-pem@npm:^4.0.0": - version: 4.0.1 - resolution: "google-p12-pem@npm:4.0.1" - dependencies: - node-forge: ^1.3.1 - bin: - gp12-pem: build/src/bin/gp12-pem.js - checksum: 59a5026331ea67455672e83770da29f09d979f02e06cb2227ea5916f8cca437887c2d3869f2602a686dc84437886ae9d2ac010780803cbe8e5f161c2d02d8efd - languageName: node - linkType: hard - "google-protobuf@npm:3.21.2": version: 3.21.2 resolution: "google-protobuf@npm:3.21.2" @@ -24097,17 +24054,6 @@ __metadata: languageName: node linkType: hard -"gtoken@npm:^6.1.0": - version: 6.1.2 - resolution: "gtoken@npm:6.1.2" - dependencies: - gaxios: ^5.0.1 - google-p12-pem: ^4.0.0 - jws: ^4.0.0 - checksum: cf3210afe2ccee8feaa06f0c7eb942e217244a8563a1d0a71aa3095eea545015896741c1d48654d8de35b7b07579f93e25e5dfe817f06b7e753646b67f7a4ecf - languageName: node - linkType: hard - "gtoken@npm:^7.0.0": version: 7.0.1 resolution: "gtoken@npm:7.0.1" From fe01840f78e22fd54f7f33492c4496769f9729bc Mon Sep 17 00:00:00 2001 From: Allen Firstenberg Date: Thu, 20 Feb 2025 20:02:03 -0500 Subject: [PATCH 46/70] fix(google-common): Handle multiple function calls and complex parts/generations (#7706) --- .../src/tests/chat_models.test.ts | 75 +++++++ .../src/tests/data/chat-4a-mock.json | 55 +++++ .../src/tests/data/chat-6a-mock.json | 90 ++++++++ .../src/utils/gemini.ts | 198 ++++++++++++++---- .../src/tests/chat_models.int.test.ts | 6 +- 5 files changed, 386 insertions(+), 38 deletions(-) create mode 100644 libs/langchain-google-common/src/tests/data/chat-4a-mock.json create mode 100644 libs/langchain-google-common/src/tests/data/chat-6a-mock.json diff --git a/libs/langchain-google-common/src/tests/chat_models.test.ts b/libs/langchain-google-common/src/tests/chat_models.test.ts index fe9305510b02..b114f79bc2eb 100644 --- a/libs/langchain-google-common/src/tests/chat_models.test.ts +++ b/libs/langchain-google-common/src/tests/chat_models.test.ts @@ -1074,6 +1074,7 @@ describe("Mock ChatGoogle - Gemini", () => { // console.log(JSON.stringify(result, null, 1)); expect(result).toHaveProperty("content"); expect(result.content).toBe(""); + const args = result?.lc_kwargs?.additional_kwargs; expect(args).toBeDefined(); expect(args).toHaveProperty("tool_calls"); @@ -1090,6 +1091,80 @@ describe("Mock ChatGoogle - Gemini", () => { expect(func).toHaveProperty("arguments"); expect(typeof func.arguments).toBe("string"); expect(func.arguments.replaceAll("\n", "")).toBe('{"testName":"cobalt"}'); + + expect(result).toHaveProperty("tool_calls"); + expect(result.tool_calls).toHaveLength(1); + const toolCall = result!.tool_calls![0]; + expect(toolCall?.type).toEqual("tool_call"); + expect(toolCall?.name).toEqual("test"); + expect(toolCall?.args?.testName).toEqual("cobalt"); + }); + + test("4a. Functions - results", async () => { + const record: Record = {}; + const projectId = mockId(); + const authOptions: MockClientAuthInfo = { + record, + projectId, + resultFile: "chat-4a-mock.json", + }; + + const tools: GeminiTool[] = [ + { + functionDeclarations: [ + { + description: "Get the schema for a specific resource type", + name: "get_resource_schema", + parameters: { + properties: { + resourceType: { + description: "The type of resource to get schema for", + type: "string", + }, + }, + required: ["resourceType"], + type: "object", + }, + }, + ], + }, + ]; + + const model = new ChatGoogle({ + authOptions, + }).bind({ + tools, + }); + + const result = await model.invoke("What?"); + + // console.log(JSON.stringify(result, null, 1)); + expect(result).toHaveProperty("content"); + expect(result.content).toMatch("Okay, I will"); + + const args = result?.lc_kwargs?.additional_kwargs; + expect(args).toBeDefined(); + expect(args).toHaveProperty("tool_calls"); + expect(Array.isArray(args.tool_calls)).toBeTruthy(); + expect(args.tool_calls).toHaveLength(2); + const call = args.tool_calls[0]; + expect(call).toHaveProperty("type"); + expect(call.type).toBe("function"); + expect(call).toHaveProperty("function"); + const func = call.function; + expect(func).toBeDefined(); + expect(func).toHaveProperty("name"); + expect(func.name).toBe("get_resource_schema"); + expect(func).toHaveProperty("arguments"); + expect(typeof func.arguments).toBe("string"); + expect(func.arguments.replaceAll("\n", "")).toBe('{"resourceType":"user"}'); + + expect(result).toHaveProperty("tool_calls"); + expect(result.tool_calls).toHaveLength(2); + const toolCall = result!.tool_calls![0]; + expect(toolCall?.type).toEqual("tool_call"); + expect(toolCall?.name).toEqual("get_resource_schema"); + expect(toolCall?.args?.resourceType).toEqual("user"); }); test("5. Functions - function reply", async () => { diff --git a/libs/langchain-google-common/src/tests/data/chat-4a-mock.json b/libs/langchain-google-common/src/tests/data/chat-4a-mock.json new file mode 100644 index 000000000000..f90e9d80795a --- /dev/null +++ b/libs/langchain-google-common/src/tests/data/chat-4a-mock.json @@ -0,0 +1,55 @@ +{ + "candidates": [ + { + "content": { + "role": "model", + "parts": [ + { + "text": "Okay, I will provide a breakdown of users by group. Here's the plan:\n\n1. **Understand the user's query:** The user wants to see how many users are in each user group. This requires information from the `user` and `usergroup` resources.\n2. **Get resource schemas:** I need to understand the structure of the `user` and `usergroup` resources, especially how they relate to each other. I'll use the `get_resource_schema` tool to get the schemas.\n3. **Explore relationships:** I'll examine the schemas to find the field that links users to user groups. This will likely be a foreign key relationship.\n4. **Fetch data:** I'll use the `perform_term_analysis` tool to count the number of users in each group.\n5. **Prepare the response:** I'll format the data into a table showing the user group and the number of users in that group.\n\nNow, let's get the schemas.\n\n" + }, + { + "functionCall": { + "name": "get_resource_schema", + "args": { + "resourceType": "user" + } + } + }, + { + "functionCall": { + "name": "get_resource_schema", + "args": { + "resourceType": "usergroup" + } + } + }, + { + "text": "\n" + } + ] + }, + "finishReason": "STOP", + "avgLogprobs": -0.058524003008749916 + } + ], + "promptFeedback": { + "safetyRatings": [ + { + "category": "HARM_CATEGORY_SEXUALLY_EXPLICIT", + "probability": "NEGLIGIBLE" + }, + { + "category": "HARM_CATEGORY_HATE_SPEECH", + "probability": "NEGLIGIBLE" + }, + { + "category": "HARM_CATEGORY_HARASSMENT", + "probability": "NEGLIGIBLE" + }, + { + "category": "HARM_CATEGORY_DANGEROUS_CONTENT", + "probability": "NEGLIGIBLE" + } + ] + } +} diff --git a/libs/langchain-google-common/src/tests/data/chat-6a-mock.json b/libs/langchain-google-common/src/tests/data/chat-6a-mock.json new file mode 100644 index 000000000000..639e58d106a5 --- /dev/null +++ b/libs/langchain-google-common/src/tests/data/chat-6a-mock.json @@ -0,0 +1,90 @@ +{ + "response": { + "data": { + "candidates": [ + { + "content": { + "parts": [ + { + "executableCode": { + "language": "PYTHON", + "code": "print(google_search.search(queries=[\"who won 2024 MLB World Series\", \"MLB World Series 2024 winner\"]))\n" + } + }, + { + "text": "The Los Angeles Dodgers won the 2024 MLB World Series, defeating the New York Yankees in five games.\n" + } + ], + "role": "model" + }, + "finishReason": "STOP", + "groundingMetadata": { + "searchEntryPoint": { + "renderedContent": "\n
\n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n
\n
\n \n
\n" + }, + "groundingChunks": [ + { + "web": { + "uri": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUBnsYtyzEvCftahSTNGQKcNcI_ay-pYOcLkll-s3799r02sY0QzG0bj10X4fGDtdyEmjFZAFa0HOSVdmGA15oZVN-GPQjrDRw0BKNETfW65sawZ1QqhaJb7fexortNDQA-Ao7gQ9MFlk7QgjqnQnt60NkPHM5vGJ-VBx6T1", + "title": "wikipedia.org" + } + }, + { + "web": { + "uri": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUBnsYsAg-CRIl0e6igiS9KTWqc3SydLebo6bCElQJn49G7Qt1NG097iRV8rm56GaB1ne1QjNhX3GtoUMbFhZQZ3x4baq2nCJkqbpRKoCkRvWJszl7RS5UQ4G8iq5PpphgUAxXPPHJS3rA==", + "title": "youtube.com" + } + }, + { + "web": { + "uri": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUBnsYv7ajvZfDCywsAY9wANJmVG7swejbexxTAxHGXlYkOHKybntmBHWxgfiBQ6BWGW6bORL96u3aK6xqojxBot3cANSm4whECrdTW-Gs4Xo0cyLSh8U9N7qzmIVkT2u-1gZYvmK3KG8DH-VVUzyZ7_4lsy245c8NSfYgVwb7tBxw==", + "title": "mlb.com" + } + } + ], + "groundingSupports": [ + { + "segment": { + "endIndex": 100, + "text": "The Los Angeles Dodgers won the 2024 MLB World Series, defeating the New York Yankees in five games." + }, + "groundingChunkIndices": [0, 1, 2], + "confidenceScores": [0.9690907, 0.9268405, 0.71132255] + } + ], + "retrievalMetadata": {}, + "webSearchQueries": [ + "MLB World Series 2024 winner", + "who won 2024 MLB World Series" + ] + } + } + ], + "usageMetadata": { + "promptTokenCount": 12, + "candidatesTokenCount": 58, + "totalTokenCount": 70, + "promptTokensDetails": [ + { + "modality": "TEXT", + "tokenCount": 12 + } + ], + "candidatesTokensDetails": [ + { + "modality": "TEXT", + "tokenCount": 58 + } + ] + }, + "modelVersion": "gemini-2.0-flash-001" + }, + "config": {}, + "status": 200, + "statusText": "OK", + "headers": {}, + "request": { + "responseURL": "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.0-flash-001:generateContent" + } + } +} diff --git a/libs/langchain-google-common/src/utils/gemini.ts b/libs/langchain-google-common/src/utils/gemini.ts index 9af4651a3cde..c674f62e00cd 100644 --- a/libs/langchain-google-common/src/utils/gemini.ts +++ b/libs/langchain-google-common/src/utils/gemini.ts @@ -20,9 +20,9 @@ import { ChatGenerationChunk, ChatResult, } from "@langchain/core/outputs"; -import { ToolCallChunk } from "@langchain/core/messages/tool"; import { StructuredToolParams } from "@langchain/core/tools"; import { isLangChainTool } from "@langchain/core/utils/function_calling"; +import { concat } from "@langchain/core/utils/stream"; import type { GoogleLLMResponse, GoogleAIModelParams, @@ -799,9 +799,13 @@ export function getGeminiAPI(config?: GeminiAPIConfig): GoogleAIAPI { function partToChatGeneration(part: GeminiPart): ChatGeneration { const message = partToMessageChunk(part); const text = partToText(part); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const generationInfo: Record = {}; + return new ChatGenerationChunk({ text, message, + generationInfo, }); } @@ -867,49 +871,169 @@ export function getGeminiAPI(config?: GeminiAPIConfig): GoogleAIAPI { return ret; } + type GenerationTypes = { + content: ChatGeneration[]; + reasoning: ChatGeneration[]; + }; + + function combineContent( + gen: ChatGeneration[], + forceComplex: boolean = false + ): MessageContent { + const allString = gen.every( + (item) => typeof item.message.content === "string" + ); + if (allString && !forceComplex) { + // Everything is a string, and we don't want to force it to return + // MessageContentComplex[], so concatenate the content into one string + return gen.map((item) => item.message.content).join(""); + } else { + // We either have complex types, or we want to force them, so turn + // it into an array of complex types. + const ret: MessageContentComplex[] = []; + gen.forEach((item) => { + if (typeof item.message.content === "string") { + // If this is a string, turn it into a text type + ret.push({ + text: item.message.content, + }); + } else { + // Otherwise, add all the complex types to what we're returning + item.message.content.forEach((c) => { + ret.push(c); + }); + } + }); + return ret; + } + } + + function combineText(gen: ChatGeneration[]): string { + return gen.map((item) => item.text ?? "").join(""); + } + + /* + * We don't really need the entire AIMessageChunk here, but it is + * a conventient way to combine all the Tool Calling information. + */ + function combineToolCalls(gen: ChatGeneration[]): AIMessageChunk { + let ret = new AIMessageChunk(""); + + gen.forEach((item: ChatGeneration) => { + const message: AIMessageChunk = item?.message as AIMessageChunk; + ret = concat(ret, message); + }); + + return ret; + } + + function combineAdditionalKwargs( + gen: ChatGeneration[] + ): Record { + const ret: Record = {}; + + gen.forEach((item: ChatGeneration) => { + const message: AIMessageChunk = item?.message as AIMessageChunk; + const kwargs = message?.additional_kwargs ?? {}; + const keys = Object.keys(kwargs); + keys.forEach((key) => { + const value = kwargs[key]; + if ( + Object.hasOwn(ret, key) && + Array.isArray(ret[key]) && + Array.isArray(value) + ) { + (ret[key] as Array).push(...value); + } else { + ret[key] = value; + } + }); + }); + + return ret; + } + + function combineGenerations( + generations: ChatGeneration[], + response: GoogleLLMResponse + ): ChatGeneration[] { + const gen: GenerationTypes = splitGenerationTypes(generations, response); + const combinedContent: MessageContent = combineContent(gen.content); + const combinedText = combineText(gen.content); + const combinedToolCalls = combineToolCalls(gen.content); + const kwargs = combineAdditionalKwargs(gen.content); + const lastContent = gen.content[gen.content.length - 1]; + + // Add usage metadata + let usageMetadata: UsageMetadata | undefined; + if ("usageMetadata" in response.data) { + usageMetadata = { + input_tokens: response.data.usageMetadata.promptTokenCount as number, + output_tokens: response.data.usageMetadata + .candidatesTokenCount as number, + total_tokens: response.data.usageMetadata.totalTokenCount as number, + }; + } + + // Add thinking / reasoning + // if (gen.reasoning && gen.reasoning.length > 0) { + // kwargs.reasoning_content = combineContent(gen.reasoning, true); + // } + + // Build the message and the generation chunk to return + const message = new AIMessageChunk({ + content: combinedContent, + additional_kwargs: kwargs, + usage_metadata: usageMetadata, + tool_calls: combinedToolCalls.tool_calls, + invalid_tool_calls: combinedToolCalls.invalid_tool_calls, + }); + return [ + new ChatGenerationChunk({ + message, + text: combinedText, + generationInfo: lastContent.generationInfo, + }), + ]; + } + + function splitGenerationTypes( + generations: ChatGeneration[], + _response: GoogleLLMResponse + ): GenerationTypes { + const content: ChatGeneration[] = []; + const reasoning: ChatGeneration[] = []; + + generations.forEach((gen) => { + if (gen?.generationInfo?.thought) { + reasoning.push(gen); + } else { + content.push(gen); + } + }); + + return { + content, + reasoning, + }; + } + + /** + * Although this returns an array, only the first (or maybe last) + * element in the array is used. So we need to combine them into + * just one element that contains everything we need. + * @param response + */ function responseToChatGenerations( response: GoogleLLMResponse ): ChatGeneration[] { - let ret = responseToGroundedChatGenerations(response); + const generations = responseToGroundedChatGenerations(response); - if (ret.length === 0) { + if (generations.length === 0) { return []; } - if (ret.every((item) => typeof item.message.content === "string")) { - const combinedContent = ret.map((item) => item.message.content).join(""); - const combinedText = ret.map((item) => item.text).join(""); - const toolCallChunks: ToolCallChunk[] | undefined = ret[ - ret.length - 1 - ]?.message.additional_kwargs?.tool_calls?.map((toolCall, i) => ({ - name: toolCall.function.name, - args: toolCall.function.arguments, - id: toolCall.id, - index: i, - type: "tool_call_chunk", - })); - let usageMetadata: UsageMetadata | undefined; - if ("usageMetadata" in response.data) { - usageMetadata = { - input_tokens: response.data.usageMetadata.promptTokenCount as number, - output_tokens: response.data.usageMetadata - .candidatesTokenCount as number, - total_tokens: response.data.usageMetadata.totalTokenCount as number, - }; - } - ret = [ - new ChatGenerationChunk({ - message: new AIMessageChunk({ - content: combinedContent, - additional_kwargs: ret[ret.length - 1]?.message.additional_kwargs, - tool_call_chunks: toolCallChunks, - usage_metadata: usageMetadata, - }), - text: combinedText, - generationInfo: ret[ret.length - 1].generationInfo, - }), - ]; - } + const ret = combineGenerations(generations, response); // Add logprobs information to the message const candidate = (response?.data as GenerateContentResponseData) diff --git a/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts b/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts index 6005de802e5d..17440461da75 100644 --- a/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts +++ b/libs/langchain-google-webauth/src/tests/chat_models.int.test.ts @@ -23,6 +23,7 @@ import { import { GeminiTool, GooglePlatformType, + GoogleRequestLogger, GoogleRequestRecorder, } from "@langchain/google-common"; import { BaseCallbackHandler } from "@langchain/core/callbacks/base"; @@ -326,7 +327,7 @@ describe.each(testGeminiModelNames)( function newChatGoogle(fields?: ChatGoogleInput): ChatGoogle { // const logger = new GoogleRequestLogger(); recorder = new GoogleRequestRecorder(); - callbacks = [recorder]; + callbacks = [recorder, new GoogleRequestLogger()]; const apiKey = platformType === "gai" @@ -449,6 +450,8 @@ describe.each(testGeminiModelNames)( ]; const model = newChatGoogle().bind({ tools, + temperature: 0.1, + maxOutputTokens: 8000, }); const result = await model.invoke("Run a test on the cobalt project"); expect(result).toHaveProperty("content"); @@ -838,6 +841,7 @@ describe.each(testGeminiModelNames)( const result = await model.invoke("Who won the 2024 MLB World Series?"); expect(result.content as string).toContain("Dodgers"); expect(result).toHaveProperty("response_metadata"); + console.log(JSON.stringify(result.response_metadata, null, 1)); expect(result.response_metadata).toHaveProperty("groundingMetadata"); expect(result.response_metadata).toHaveProperty("groundingSupport"); }); From 70e10a9360fb8d06013c0055a81b005a91528aea Mon Sep 17 00:00:00 2001 From: Jorge Lanzarotti <94814971+jl4nz@users.noreply.github.com> Date: Fri, 21 Feb 2025 11:43:28 +0900 Subject: [PATCH 47/70] feat(community): Add support for Amazon Aurora DSQL memory message (#7635) Co-authored-by: jacoblee93 --- .../docs/integrations/memory/aurora_dsql.mdx | 43 ++ examples/package.json | 1 + examples/src/memory/aurora_dsql.ts | 88 ++++ libs/langchain-community/.gitignore | 4 + libs/langchain-community/langchain.config.js | 2 + libs/langchain-community/package.json | 17 + .../src/load/import_constants.ts | 1 + .../src/stores/message/aurora_dsql.ts | 189 +++++++++ .../src/stores/tests/aurora_dsql.int.test.ts | 177 ++++++++ yarn.lock | 401 +++++++++++++++++- 10 files changed, 920 insertions(+), 3 deletions(-) create mode 100644 docs/core_docs/docs/integrations/memory/aurora_dsql.mdx create mode 100644 examples/src/memory/aurora_dsql.ts create mode 100644 libs/langchain-community/src/stores/message/aurora_dsql.ts create mode 100644 libs/langchain-community/src/stores/tests/aurora_dsql.int.test.ts diff --git a/docs/core_docs/docs/integrations/memory/aurora_dsql.mdx b/docs/core_docs/docs/integrations/memory/aurora_dsql.mdx new file mode 100644 index 000000000000..505788b8fda7 --- /dev/null +++ b/docs/core_docs/docs/integrations/memory/aurora_dsql.mdx @@ -0,0 +1,43 @@ +--- +hide_table_of_contents: true +sidebar_class_name: node-only +--- + +import CodeBlock from "@theme/CodeBlock"; + +# Aurora DSQL Chat Memory + +For longer-term persistence across chat sessions, you can swap out the default in-memory `chatHistory` for the serverless PostgreSQL-compatible [Amazon Aurora DSQL](https://aws.amazon.com/rds/aurora/dsql/) Database. + +This is very similar to the PostgreSQL integration with a few differences to make it compatible with DSQL: + +1. The `id` column in PostgreSQL is SERIAL auto-incrementent, and DSQL is UUID using the database function `gen_random_uuid`. +2. A `created_at` column is created to track the order and history of the messages. +3. The `message` column in PostgreSQL is JSONB, and DSQL is TEXT with Javascript parsing handling + +## Setup + +Go to you AWS Console and create an Aurora DSQL Cluster, https://console.aws.amazon.com/dsql/clusters + +import IntegrationInstallTooltip from "@mdx_components/integration_install_tooltip.mdx"; + + + +```bash npm2yarn +npm install @langchain/openai @langchain/community @langchain/core pg @aws-sdk/dsql-signer +``` + +## Usage + +Each chat history session is stored in a Aurora DSQL (Postgres-compatible) database and requires a session id. + +The connection to Aurora DSQL is handled through a PostgreSQL pool. You can either pass an instance of a pool via the `pool` parameter or pass a pool config via the `poolConfig` parameter. See [pg-node docs on pools](https://node-postgres.com/apis/pool) +for more information. A provided pool takes precedence, thus if both a pool instance and a pool config are passed, only the pool will be used. + +For options on how to do the authentication and authorization for DSQL please check https://docs.aws.amazon.com/aurora-dsql/latest/userguide/authentication-authorization.html. + +The following example uses the AWS-SDK to generate an authentication token that is passed to the pool configuration: + +import Example from "@examples/memory/aurora_dsql.ts"; + +{Example} diff --git a/examples/package.json b/examples/package.json index bc641455e403..089372fe3e06 100644 --- a/examples/package.json +++ b/examples/package.json @@ -24,6 +24,7 @@ "author": "LangChain", "license": "MIT", "dependencies": { + "@aws-sdk/dsql-signer": "^3.738.0", "@azure/identity": "^4.2.1", "@browserbasehq/stagehand": "^1.3.0", "@clickhouse/client": "^0.2.5", diff --git a/examples/src/memory/aurora_dsql.ts b/examples/src/memory/aurora_dsql.ts new file mode 100644 index 000000000000..b0eadbe0e79f --- /dev/null +++ b/examples/src/memory/aurora_dsql.ts @@ -0,0 +1,88 @@ +import pg from "pg"; + +import { DsqlSigner } from "@aws-sdk/dsql-signer"; +import { AuroraDsqlChatMessageHistory } from "@langchain/community/stores/message/aurora_dsql"; +import { ChatOpenAI } from "@langchain/openai"; +import { RunnableWithMessageHistory } from "@langchain/core/runnables"; + +import { + ChatPromptTemplate, + MessagesPlaceholder, +} from "@langchain/core/prompts"; +import { StringOutputParser } from "@langchain/core/output_parsers"; + +async function getPostgresqlPool() { + const signer = new DsqlSigner({ + hostname: process.env.DSQL_ENDPOINT!, + }); + + const token = await signer.getDbConnectAdminAuthToken(); + + if (!token) throw new Error("Auth token error for DSQL"); + + const poolConfig: pg.PoolConfig = { + host: process.env.DSQL_ENDPOINT, + port: 5432, + user: "admin", + password: token, + ssl: true, + database: "postgres", + }; + + const pool = new pg.Pool(poolConfig); + return pool; +} + +const pool = await getPostgresqlPool(); + +const model = new ChatOpenAI(); + +const prompt = ChatPromptTemplate.fromMessages([ + [ + "system", + "You are a helpful assistant. Answer all questions to the best of your ability.", + ], + new MessagesPlaceholder("chat_history"), + ["human", "{input}"], +]); + +const chain = prompt.pipe(model).pipe(new StringOutputParser()); + +const chainWithHistory = new RunnableWithMessageHistory({ + runnable: chain, + inputMessagesKey: "input", + historyMessagesKey: "chat_history", + getMessageHistory: async (sessionId) => { + const chatHistory = new AuroraDsqlChatMessageHistory({ + sessionId, + pool, + // Can also pass `poolConfig` to initialize the pool internally, + // but easier to call `.end()` at the end later. + }); + return chatHistory; + }, +}); + +const res1 = await chainWithHistory.invoke( + { + input: "Hi! I'm MJDeligan.", + }, + { configurable: { sessionId: "langchain-test-session" } } +); +console.log(res1); +/* + "Hello MJDeligan! It's nice to meet you. My name is AI. How may I assist you today?" +*/ + +const res2 = await chainWithHistory.invoke( + { input: "What did I just say my name was?" }, + { configurable: { sessionId: "langchain-test-session" } } +); +console.log(res2); + +/* + "You said your name was MJDeligan." +*/ + +// If you provided a pool config you should close the created pool when you are done +await pool.end(); diff --git a/libs/langchain-community/.gitignore b/libs/langchain-community/.gitignore index 5792750fade9..458fd7822c48 100644 --- a/libs/langchain-community/.gitignore +++ b/libs/langchain-community/.gitignore @@ -838,6 +838,10 @@ stores/message/postgres.cjs stores/message/postgres.js stores/message/postgres.d.ts stores/message/postgres.d.cts +stores/message/aurora_dsql.cjs +stores/message/aurora_dsql.js +stores/message/aurora_dsql.d.ts +stores/message/aurora_dsql.d.cts stores/message/redis.cjs stores/message/redis.js stores/message/redis.d.ts diff --git a/libs/langchain-community/langchain.config.js b/libs/langchain-community/langchain.config.js index 4179bd5e5e32..311c028c09a2 100644 --- a/libs/langchain-community/langchain.config.js +++ b/libs/langchain-community/langchain.config.js @@ -259,6 +259,7 @@ export const config = { "stores/message/neo4j": "stores/message/neo4j", "stores/message/planetscale": "stores/message/planetscale", "stores/message/postgres": "stores/message/postgres", + "stores/message/aurora_dsql": "stores/message/aurora_dsql", "stores/message/redis": "stores/message/redis", "stores/message/upstash_redis": "stores/message/upstash_redis", "stores/message/xata": "stores/message/xata", @@ -489,6 +490,7 @@ export const config = { "stores/message/neo4j", "stores/message/planetscale", "stores/message/postgres", + "stores/message/aurora_dsql", "stores/message/redis", "stores/message/upstash_redis", "stores/message/xata", diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index c9f4dbabd580..78a47bd43a40 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -58,6 +58,7 @@ "@aws-sdk/client-sagemaker-runtime": "^3.749.0", "@aws-sdk/client-sfn": "^3.749.0", "@aws-sdk/credential-provider-node": "^3.749.0", + "@aws-sdk/dsql-signer": "^3.738.0", "@aws-sdk/types": "^3.734.0", "@azure/search-documents": "^12.0.0", "@azure/storage-blob": "^12.15.0", @@ -381,6 +382,9 @@ "@aws-sdk/credential-provider-node": { "optional": true }, + "@aws-sdk/dsql-signer": { + "optional": true + }, "@azure/search-documents": { "optional": true }, @@ -2603,6 +2607,15 @@ "import": "./stores/message/postgres.js", "require": "./stores/message/postgres.cjs" }, + "./stores/message/aurora_dsql": { + "types": { + "import": "./stores/message/aurora_dsql.d.ts", + "require": "./stores/message/aurora_dsql.d.cts", + "default": "./stores/message/aurora_dsql.d.ts" + }, + "import": "./stores/message/aurora_dsql.js", + "require": "./stores/message/aurora_dsql.cjs" + }, "./stores/message/redis": { "types": { "import": "./stores/message/redis.d.ts", @@ -4041,6 +4054,10 @@ "stores/message/postgres.js", "stores/message/postgres.d.ts", "stores/message/postgres.d.cts", + "stores/message/aurora_dsql.cjs", + "stores/message/aurora_dsql.js", + "stores/message/aurora_dsql.d.ts", + "stores/message/aurora_dsql.d.cts", "stores/message/redis.cjs", "stores/message/redis.js", "stores/message/redis.d.ts", diff --git a/libs/langchain-community/src/load/import_constants.ts b/libs/langchain-community/src/load/import_constants.ts index d0d932055f77..512843703c9a 100644 --- a/libs/langchain-community/src/load/import_constants.ts +++ b/libs/langchain-community/src/load/import_constants.ts @@ -135,6 +135,7 @@ export const optionalImportEntrypoints: string[] = [ "langchain_community/stores/message/neo4j", "langchain_community/stores/message/planetscale", "langchain_community/stores/message/postgres", + "langchain_community/stores/message/aurora_dsql", "langchain_community/stores/message/redis", "langchain_community/stores/message/upstash_redis", "langchain_community/stores/message/xata", diff --git a/libs/langchain-community/src/stores/message/aurora_dsql.ts b/libs/langchain-community/src/stores/message/aurora_dsql.ts new file mode 100644 index 000000000000..6db04b6fa3a7 --- /dev/null +++ b/libs/langchain-community/src/stores/message/aurora_dsql.ts @@ -0,0 +1,189 @@ +import { BaseListChatMessageHistory } from "@langchain/core/chat_history"; +import { + BaseMessage, + StoredMessage, + mapChatMessagesToStoredMessages, + mapStoredMessagesToChatMessages, +} from "@langchain/core/messages"; +import pg from "pg"; + +/** + * Type definition for the input parameters required when instantiating a + * AuroraDsqlChatMessageHistory object. + */ +export type AuroraDsqlChatMessageHistoryInput = { + /** + * Name of the table to use when storing and retrieving chat message + */ + tableName?: string; + /** + * Session ID to use when storing and retrieving chat message history. + */ + sessionId: string; + /** + * Configuration object for the Postgres pool. If provided the + * AuroraDsqlChatMessageHistory object will create a new pool using + * the provided configuration. Otherwise it will use the provided + * pool. + */ + poolConfig?: pg.PoolConfig; + /** + * Postgres pool to use. If provided the PostgresChatMessageHistory + * object will use the provided pool. Otherwise it will create a + * new pool using the provided configuration. + */ + pool?: pg.Pool; + /** + * If true, the table name will be escaped. ('lAnGcHaIn' will be escaped to '"lAnGcHaIn"') + */ + escapeTableName?: boolean; +}; + +export interface StoredAuroraDsqlMessageData { + name: string | undefined; + role: string | undefined; + content: string; + additional_kwargs?: Record; + type: string; + tool_call_id: string | undefined; +} + +/** + * Class for managing chat message history using a Amazon Aurora DSQL Database as a + * storage backend. Extends the BaseListChatMessageHistory class. + * @example + * ```typescript + * const chatHistory = new AuroraDsqlChatMessageHistory({ + * tableName: "langchain_chat_histories", + * sessionId: "lc-example", + * pool: new pg.Pool({ + * host: "your_dsql_endpoint", + * port: 5432, + * user: "admin", + * password: "your_token", + * database: "postgres", + * ssl: true + * }), + * }); + * ``` + */ +export class AuroraDsqlChatMessageHistory extends BaseListChatMessageHistory { + lc_namespace = ["langchain", "stores", "message", "aurora_dsql"]; + + pool: pg.Pool; + + tableName = "langchain_chat_histories"; + + sessionId: string; + + private initialized = false; + + /** + * Creates a new AuroraDsqlChatMessageHistory. + * @param {AuroraDsqlChatMessageHistoryInput} fields The input fields for the AuroraDsqlChatMessageHistory. + * @param {string} fields.tableName The name of the table name to use. Defaults to `langchain_chat_histories`. + * @param {string} fields.sessionId The session ID to use when storing and retrieving chat message history. + * @param {pg.Pool} fields.pool The Postgres pool to use. If provided, the AuroraDsqlChatMessageHistory will use the provided pool. + * @param {pg.PoolConfig} fields.poolConfig The configuration object for the Postgres pool. If no pool is provided, the config will be used to create a new pool. + * If `pool` is provided, it will be used as the Postgres pool even if `poolConfig` is also provided. + * @throws If neither `pool` nor `poolConfig` is provided. + */ + constructor(fields: AuroraDsqlChatMessageHistoryInput) { + super(fields); + const { tableName, sessionId, pool, poolConfig, escapeTableName } = fields; + // Ensure that either a client or config is provided + if (!pool && !poolConfig) { + throw new Error( + "AuroraDsqlChatMessageHistory requires either a pool instance or pool config" + ); + } + this.pool = pool ?? new pg.Pool(poolConfig); + const _tableName = tableName || this.tableName; + this.tableName = escapeTableName + ? pg.escapeIdentifier(_tableName) + : _tableName; + this.sessionId = sessionId; + } + + /** + * Checks if the table has been created and creates it if it hasn't. + * @returns Promise that resolves when the table's existence is ensured. + */ + private async ensureTable(): Promise { + if (this.initialized) return; + + const query = ` + CREATE TABLE IF NOT EXISTS ${this.tableName} ( + id UUID PRIMARY KEY DEFAULT gen_random_uuid(), + created_at timestamp default current_timestamp, + session_id VARCHAR(255) NOT NULL, + message TEXT NOT NULL + );`; + + try { + await this.pool.query(query); + await this.createIndex(); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + } catch (e: any) { + // This error indicates that the table already exists + // Due to asynchronous nature of the code, it is possible that + // the table is created between the time we check if it exists + // and the time we try to create it. It can be safely ignored. + // If it's not this error, rethrow it. + if (!("code" in e) || e.code !== "23505") { + throw e; + } + } + this.initialized = true; + } + + private async createIndex() { + const query = `CREATE INDEX IF NOT EXISTS idx_on_session_id on ${this.tableName} (session_id);`; + await this.pool.query(query); + } + + async addMessage(message: BaseMessage): Promise { + await this.ensureTable(); + + const map = mapChatMessagesToStoredMessages([message])[0]; + + const query = `INSERT INTO ${this.tableName} (session_id, message) VALUES ($1, $2)`; + + await this.pool.query(query, [ + this.sessionId, + JSON.stringify({ ...map?.data, type: map?.type }), + ]); + } + + async getMessages(): Promise { + await this.ensureTable(); + + const query = `SELECT message FROM ${this.tableName} WHERE session_id = $1 ORDER BY created_at asc`; + + const res = await this.pool.query(query, [this.sessionId]); + + const storedMessages: StoredMessage[] = res.rows.map( + (row: { message: string }) => { + const { type, ...data } = JSON.parse( + row.message + ) as StoredAuroraDsqlMessageData; + return { type, data }; + } + ); + return mapStoredMessagesToChatMessages(storedMessages); + } + + async clear(): Promise { + await this.ensureTable(); + + const query = `DELETE FROM ${this.tableName} WHERE session_id = $1`; + await this.pool.query(query, [this.sessionId]); + } + + /** + * End the Postgres pool. + */ + async end(): Promise { + await this.pool.end(); + } +} diff --git a/libs/langchain-community/src/stores/tests/aurora_dsql.int.test.ts b/libs/langchain-community/src/stores/tests/aurora_dsql.int.test.ts new file mode 100644 index 000000000000..47b277e5cc08 --- /dev/null +++ b/libs/langchain-community/src/stores/tests/aurora_dsql.int.test.ts @@ -0,0 +1,177 @@ +/* eslint-disable no-process-env */ +/* eslint-disable @typescript-eslint/no-non-null-assertion */ + +import pg from "pg"; +import { HumanMessage, AIMessage } from "@langchain/core/messages"; +import { DsqlSigner } from "@aws-sdk/dsql-signer"; +import { AuroraDsqlChatMessageHistory } from "../message/aurora_dsql.js"; + +async function getAdminAuthToken() { + if (!process.env.DSQL_ENDPOINT) + throw new Error("No endpoint configured for DSQL"); + const signer = new DsqlSigner({ + hostname: process.env.DSQL_ENDPOINT, + region: process.env.AWS_REGION!, + credentials: { + accessKeyId: process.env.AWS_ACCESS_KEY_ID!, + secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY!, + // sessionToken: process.env.AWS_SESSION_TOKEN! + }, + }); + return await signer.getDbConnectAdminAuthToken(); +} + +async function getPostgresqlPool() { + const token = await getAdminAuthToken(); + if (!token) throw new Error("Auth token error for DSQL"); + + const poolConfig: pg.PoolConfig = { + host: process.env.DSQL_ENDPOINT, + port: 5432, + user: "admin", + password: token, + ssl: true, + database: "postgres", + }; + + const pool = new pg.Pool(poolConfig); + return pool; +} + +describe.skip("Postgres Chat History", () => { + let chatHistory: AuroraDsqlChatMessageHistory; + let pool: pg.Pool; + const tableName = "test"; + const sessionId = "test-session-id"; + + beforeAll(async () => { + pool = await getPostgresqlPool(); + chatHistory = new AuroraDsqlChatMessageHistory({ + tableName, + sessionId, + pool, + }); + }); + + afterEach(async () => { + await chatHistory.clear(); + }); + + afterAll(async () => { + await chatHistory.end(); + }); + + test("Test postgres history store", async () => { + const blankResult = await chatHistory.getMessages(); + expect(blankResult).toStrictEqual([]); + + await chatHistory.addUserMessage("Who is the best vocalist?"); + await chatHistory.addAIMessage("Ozzy Osbourne"); + + const expectedMessages = [ + new HumanMessage("Who is the best vocalist?"), + new AIMessage("Ozzy Osbourne"), + ]; + + const resultWithHistory = await chatHistory.getMessages(); + expect(resultWithHistory).toEqual(expectedMessages); + }); + + test("Test clear postgres history store", async () => { + await chatHistory.addUserMessage("Who is the best vocalist?"); + await chatHistory.addAIMessage("Ozzy Osbourne"); + + const expectedMessages = [ + new HumanMessage("Who is the best vocalist?"), + new AIMessage("Ozzy Osbourne"), + ]; + + const resultWithHistory = await chatHistory.getMessages(); + expect(resultWithHistory).toEqual(expectedMessages); + + await chatHistory.clear(); + + const blankResult = await chatHistory.getMessages(); + expect(blankResult).toStrictEqual([]); + }); + + test("Returns messages in correct order", async () => { + await chatHistory.addUserMessage("Who is the best vocalist?"); + await chatHistory.addAIMessage("Ozzy Osbourne"); + await chatHistory.addUserMessage("What is the best song?"); + await chatHistory.addAIMessage("Crazy Train"); + + const expectedMessages = [ + new HumanMessage("Who is the best vocalist?"), + new AIMessage("Ozzy Osbourne"), + new HumanMessage("What is the best song?"), + new AIMessage("Crazy Train"), + ]; + + const resultWithHistory = await chatHistory.getMessages(); + expect(resultWithHistory).toEqual(expectedMessages); + }); + + test("Handles multiple sessions", async () => { + const newSessionId = "new-session-id"; + const newChatHistory = new AuroraDsqlChatMessageHistory({ + tableName, + sessionId: newSessionId, + pool, + }); + + try { + await chatHistory.addUserMessage("Who is the best vocalist?"); + await chatHistory.addAIMessage("Ozzy Osbourne"); + + await newChatHistory.addUserMessage("What is the best song?"); + await newChatHistory.addAIMessage("Crazy Train"); + + const expectedMessages = [ + new HumanMessage("Who is the best vocalist?"), + new AIMessage("Ozzy Osbourne"), + ]; + + const newExpectedMessages = [ + new HumanMessage("What is the best song?"), + new AIMessage("Crazy Train"), + ]; + + const resultWithHistory = await chatHistory.getMessages(); + expect(resultWithHistory).toEqual(expectedMessages); + + const newResultWithHistory = await newChatHistory.getMessages(); + expect(newResultWithHistory).toEqual(newExpectedMessages); + + await newChatHistory.clear(); + + const blankResult = await newChatHistory.getMessages(); + expect(blankResult).toStrictEqual([]); + + // Ensure that the original chat history is still intact after clearing the new chat history + const resultWithHistoryAfterClear = await chatHistory.getMessages(); + expect(resultWithHistoryAfterClear).toEqual(expectedMessages); + } finally { + await newChatHistory.clear(); + } + }); + + test("Can store & retrieve message IDs", async () => { + const blankResult = await chatHistory.getMessages(); + expect(blankResult).toStrictEqual([]); + + const aiMessageId = "ai-message-id"; + const aiMessage = new AIMessage({ + content: "Ozzy Osbourne", + id: aiMessageId, + }); + await chatHistory.addMessage(aiMessage); + + const expectedMessages = [aiMessage]; + + const resultWithHistory = await chatHistory.getMessages(); + expect(resultWithHistory).toHaveLength(1); + expect(resultWithHistory).toEqual(expectedMessages); + expect(resultWithHistory[0].id).toEqual(aiMessageId); + }); +}); diff --git a/yarn.lock b/yarn.lock index 94a6bd686f90..a1a1a3598067 100644 --- a/yarn.lock +++ b/yarn.lock @@ -622,6 +622,53 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-cognito-identity@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/client-cognito-identity@npm:3.750.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/credential-provider-node": 3.750.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.750.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.750.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.4 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.5 + "@smithy/middleware-retry": ^4.0.6 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.6 + "@smithy/util-defaults-mode-node": ^4.0.6 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 0dd465dfe0c86f58316a743f10214008a18fb34b146be9e6302afe1b901537fc0b799c1d08d67e28e3e7121a52072150b87dea3148e24fbcd59ede14de1c1b27 + languageName: node + linkType: hard + "@aws-sdk/client-dynamodb@npm:^3.749.0": version: 3.749.0 resolution: "@aws-sdk/client-dynamodb@npm:3.749.0" @@ -1129,6 +1176,52 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-sso@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/client-sso@npm:3.750.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.750.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.750.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.4 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.5 + "@smithy/middleware-retry": ^4.0.6 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.6 + "@smithy/util-defaults-mode-node": ^4.0.6 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 248dd62c0057eeac4c9b40070aa3dc25d4d9c8267faea0bfcc11dbe6426d7fa43d43ffb6e8fdf07e7c559c5488dcdaf30f0cd9dd92ed3492dc7ddd24819a32af + languageName: node + linkType: hard + "@aws-sdk/client-sts@npm:3.592.0": version: 3.592.0 resolution: "@aws-sdk/client-sts@npm:3.592.0" @@ -1211,6 +1304,25 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/core@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/core@npm:3.750.0" + dependencies: + "@aws-sdk/types": 3.734.0 + "@smithy/core": ^3.1.4 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/signature-v4": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/util-middleware": ^4.0.1 + fast-xml-parser: 4.4.1 + tslib: ^2.6.2 + checksum: d7b20e36f8cedcda75da18233f1827e7ee88c38d3c31a32a78d2ab259a0253014752c6ee0bd4c32e0ad1ce1241b2b27db90683e0ce8cc0763d06e7674eca05f3 + languageName: node + linkType: hard + "@aws-sdk/credential-provider-cognito-identity@npm:3.592.0": version: 3.592.0 resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.592.0" @@ -1224,6 +1336,19 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-cognito-identity@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-cognito-identity@npm:3.750.0" + dependencies: + "@aws-sdk/client-cognito-identity": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 0e251f3c60c4c58e4f482e41f27529df3ad5fcde8a085a6e425eb43f574696176fbad77ec14af6e3b47ccfba495efb9af9c89e3aff2f34da21c4df3303fbb682 + languageName: node + linkType: hard + "@aws-sdk/credential-provider-env@npm:3.587.0": version: 3.587.0 resolution: "@aws-sdk/credential-provider-env@npm:3.587.0" @@ -1249,6 +1374,19 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-env@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-env@npm:3.750.0" + dependencies: + "@aws-sdk/core": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 4a3125bf81449f4e336b6e822433fe932df4ef1bbcd24eca8a62fe1a1bec430faecc699628d842a0c0299e0c14bed683ced6e25181f73ec0854b8358e14199fd + languageName: node + linkType: hard + "@aws-sdk/credential-provider-http@npm:3.587.0": version: 3.587.0 resolution: "@aws-sdk/credential-provider-http@npm:3.587.0" @@ -1284,6 +1422,24 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-http@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-http@npm:3.750.0" + dependencies: + "@aws-sdk/core": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/property-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/util-stream": ^4.1.1 + tslib: ^2.6.2 + checksum: 72813e725998d6db4de8d66ab2d31f471bc94d091dfaa4764fdb839a3c13936f7398ca870ec0d1c6e2b49e53b3cc6bedc1dc58b93610053ff3f848382d38e1d7 + languageName: node + linkType: hard + "@aws-sdk/credential-provider-ini@npm:3.592.0": version: 3.592.0 resolution: "@aws-sdk/credential-provider-ini@npm:3.592.0" @@ -1326,6 +1482,27 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-ini@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-ini@npm:3.750.0" + dependencies: + "@aws-sdk/core": 3.750.0 + "@aws-sdk/credential-provider-env": 3.750.0 + "@aws-sdk/credential-provider-http": 3.750.0 + "@aws-sdk/credential-provider-process": 3.750.0 + "@aws-sdk/credential-provider-sso": 3.750.0 + "@aws-sdk/credential-provider-web-identity": 3.750.0 + "@aws-sdk/nested-clients": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/credential-provider-imds": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: eadfea48ec91818fb0610df11d85653301286ea8e3c38344bc5fc697d312252542ab9532c96fc19b3a06a17587e27170898e671e111ac5129bc2974128fc2b70 + languageName: node + linkType: hard + "@aws-sdk/credential-provider-node@npm:3.592.0": version: 3.592.0 resolution: "@aws-sdk/credential-provider-node@npm:3.592.0" @@ -1366,6 +1543,26 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-node@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-node@npm:3.750.0" + dependencies: + "@aws-sdk/credential-provider-env": 3.750.0 + "@aws-sdk/credential-provider-http": 3.750.0 + "@aws-sdk/credential-provider-ini": 3.750.0 + "@aws-sdk/credential-provider-process": 3.750.0 + "@aws-sdk/credential-provider-sso": 3.750.0 + "@aws-sdk/credential-provider-web-identity": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/credential-provider-imds": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 179fb59d96e970aa5ec1400bd8f7458c3786cfb6f9785b8eca54d7b8d5369935055ea11e0315461dabec852c56549ac3db35131c8b1fdce11efb13ee70475896 + languageName: node + linkType: hard + "@aws-sdk/credential-provider-process@npm:3.587.0": version: 3.587.0 resolution: "@aws-sdk/credential-provider-process@npm:3.587.0" @@ -1393,6 +1590,20 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-process@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-process@npm:3.750.0" + dependencies: + "@aws-sdk/core": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 0c3a2be6a092e10e4131f45f990a9e1a843d72d0d7752c1bb51f2f5feb465ae62ddbcb51a0d501df43a91043bf6df88fea942b1be8860dc014b88efaf113d9e3 + languageName: node + linkType: hard + "@aws-sdk/credential-provider-sso@npm:3.592.0": version: 3.592.0 resolution: "@aws-sdk/credential-provider-sso@npm:3.592.0" @@ -1424,6 +1635,22 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-sso@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-sso@npm:3.750.0" + dependencies: + "@aws-sdk/client-sso": 3.750.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/token-providers": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 953df0310fbce22eaf4284af8181da212fbc3ce1e245daa1999a69ce0a867e70b3e54716a0b7fe52b695081686f9d31c42bd2186629dcd7d76d9cfe313deb803 + languageName: node + linkType: hard + "@aws-sdk/credential-provider-web-identity@npm:3.587.0": version: 3.587.0 resolution: "@aws-sdk/credential-provider-web-identity@npm:3.587.0" @@ -1452,6 +1679,45 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/credential-provider-web-identity@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-provider-web-identity@npm:3.750.0" + dependencies: + "@aws-sdk/core": 3.750.0 + "@aws-sdk/nested-clients": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 551c6b26976f6a17053a25f96cbf82c9bcd1422e9eb8915ca0b6dd8cc31cc7d1a406869f3a66c7abb4e5e729d8324a200944e0c027ee68220fa74774851a6f2e + languageName: node + linkType: hard + +"@aws-sdk/credential-providers@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/credential-providers@npm:3.750.0" + dependencies: + "@aws-sdk/client-cognito-identity": 3.750.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/credential-provider-cognito-identity": 3.750.0 + "@aws-sdk/credential-provider-env": 3.750.0 + "@aws-sdk/credential-provider-http": 3.750.0 + "@aws-sdk/credential-provider-ini": 3.750.0 + "@aws-sdk/credential-provider-node": 3.750.0 + "@aws-sdk/credential-provider-process": 3.750.0 + "@aws-sdk/credential-provider-sso": 3.750.0 + "@aws-sdk/credential-provider-web-identity": 3.750.0 + "@aws-sdk/nested-clients": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/core": ^3.1.4 + "@smithy/credential-provider-imds": ^4.0.1 + "@smithy/property-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 8df6348b75deecdbec7b18ac0e04839c767e8e55123757b933d28a10e5f8c01cfff0d0a05ee85e6904f46bd01a82ef6a565ad0b27305ac609ca4d22edd523342 + languageName: node + linkType: hard + "@aws-sdk/credential-providers@npm:^3.583.0": version: 3.592.0 resolution: "@aws-sdk/credential-providers@npm:3.592.0" @@ -1476,6 +1742,26 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/dsql-signer@npm:^3.738.0": + version: 3.750.0 + resolution: "@aws-sdk/dsql-signer@npm:3.750.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/credential-providers": 3.750.0 + "@aws-sdk/util-format-url": 3.734.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/protocol-http": ^5.0.1 + "@smithy/signature-v4": ^5.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: f2d398021de3461af943fa6c7359a408d1506cbd764725104897dbe2070d116aeb916303dbbf7d823b25d89908f641b401866ced64c0d0922100f45114d1f22c + languageName: node + linkType: hard + "@aws-sdk/endpoint-cache@npm:3.723.0": version: 3.723.0 resolution: "@aws-sdk/endpoint-cache@npm:3.723.0" @@ -1690,6 +1976,21 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/middleware-user-agent@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/middleware-user-agent@npm:3.750.0" + dependencies: + "@aws-sdk/core": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@smithy/core": ^3.1.4 + "@smithy/protocol-http": ^5.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: dfce4ff29f4da736a55e81d9657c592db2a80f92325968f0c620a1d365fee2d27acce24ce4b7fd6f294bbfb3ca4003295783d2a471d0b66f55604faf1f71e1fa + languageName: node + linkType: hard + "@aws-sdk/nested-clients@npm:3.749.0": version: 3.749.0 resolution: "@aws-sdk/nested-clients@npm:3.749.0" @@ -1736,6 +2037,52 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/nested-clients@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/nested-clients@npm:3.750.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.750.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.750.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.4 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.5 + "@smithy/middleware-retry": ^4.0.6 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.6 + "@smithy/util-defaults-mode-node": ^4.0.6 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 3bfcd0a921614d3b675988d592c576d3e570915460135af704623f54eddacf52d315c9cbeb485d3109a345c2eff133d66848fafb4798365ba9d917827e1f9436 + languageName: node + linkType: hard + "@aws-sdk/protocol-http@npm:^3.374.0": version: 3.374.0 resolution: "@aws-sdk/protocol-http@npm:3.374.0" @@ -1827,6 +2174,20 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/token-providers@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/token-providers@npm:3.750.0" + dependencies: + "@aws-sdk/nested-clients": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/property-provider": ^4.0.1 + "@smithy/shared-ini-file-loader": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 34cab64a3bfafd07b106dc47637e88f2c5cb1c36725b6f0e63a81498ae15fbc4a0ed8285cfe7bf4590c5a97b7226416cff2c5b83865fbed979c7ccc0f0178c99 + languageName: node + linkType: hard + "@aws-sdk/types@npm:3.577.0": version: 3.577.0 resolution: "@aws-sdk/types@npm:3.577.0" @@ -1889,6 +2250,18 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/util-format-url@npm:3.734.0": + version: 3.734.0 + resolution: "@aws-sdk/util-format-url@npm:3.734.0" + dependencies: + "@aws-sdk/types": 3.734.0 + "@smithy/querystring-builder": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + checksum: 3550b16d7e25b17b9a075e20386f9551cc4a5e11a54a28d91693a4ccc53f3824d7fdf36c2c96deb963b9b273ab25d7ff28b6369c796f15713d32d4b31174354c + languageName: node + linkType: hard + "@aws-sdk/util-locate-window@npm:^3.0.0": version: 3.310.0 resolution: "@aws-sdk/util-locate-window@npm:3.310.0" @@ -1957,6 +2330,24 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/util-user-agent-node@npm:3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/util-user-agent-node@npm:3.750.0" + dependencies: + "@aws-sdk/middleware-user-agent": 3.750.0 + "@aws-sdk/types": 3.734.0 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/types": ^4.1.0 + tslib: ^2.6.2 + peerDependencies: + aws-crt: ">=1.0.0" + peerDependenciesMeta: + aws-crt: + optional: true + checksum: c87a3620cb9b904fd7925209b6fa4d8bec7e0e11f9fb031ba60b8394b92d6157584b11c7ccf63bffb9e1b00a327837831bcbb64eed5d096a4723d0672f496532 + languageName: node + linkType: hard + "@aws-sdk/util-utf8-browser@npm:^3.0.0": version: 3.259.0 resolution: "@aws-sdk/util-utf8-browser@npm:3.259.0" @@ -7861,6 +8252,7 @@ __metadata: "@aws-sdk/client-sagemaker-runtime": ^3.749.0 "@aws-sdk/client-sfn": ^3.749.0 "@aws-sdk/credential-provider-node": ^3.749.0 + "@aws-sdk/dsql-signer": ^3.738.0 "@aws-sdk/types": ^3.734.0 "@azure/search-documents": ^12.0.0 "@azure/storage-blob": ^12.15.0 @@ -8181,6 +8573,8 @@ __metadata: optional: true "@aws-sdk/credential-provider-node": optional: true + "@aws-sdk/dsql-signer": + optional: true "@azure/search-documents": optional: true "@azure/storage-blob": @@ -11732,7 +12126,7 @@ __metadata: languageName: node linkType: hard -"@smithy/middleware-retry@npm:^4.0.5": +"@smithy/middleware-retry@npm:^4.0.5, @smithy/middleware-retry@npm:^4.0.6": version: 4.0.6 resolution: "@smithy/middleware-retry@npm:4.0.6" dependencies: @@ -12276,7 +12670,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-browser@npm:^4.0.5": +"@smithy/util-defaults-mode-browser@npm:^4.0.5, @smithy/util-defaults-mode-browser@npm:^4.0.6": version: 4.0.6 resolution: "@smithy/util-defaults-mode-browser@npm:4.0.6" dependencies: @@ -12304,7 +12698,7 @@ __metadata: languageName: node linkType: hard -"@smithy/util-defaults-mode-node@npm:^4.0.5": +"@smithy/util-defaults-mode-node@npm:^4.0.5, @smithy/util-defaults-mode-node@npm:^4.0.6": version: 4.0.6 resolution: "@smithy/util-defaults-mode-node@npm:4.0.6" dependencies: @@ -21908,6 +22302,7 @@ __metadata: version: 0.0.0-use.local resolution: "examples@workspace:examples" dependencies: + "@aws-sdk/dsql-signer": ^3.738.0 "@azure/identity": ^4.2.1 "@browserbasehq/stagehand": ^1.3.0 "@clickhouse/client": ^0.2.5 From df0212bcf2d4784244301a13b197a24c14caa74a Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 20 Feb 2025 18:47:42 -0800 Subject: [PATCH 48/70] release(community): 0.3.32 (#7730) --- libs/langchain-community/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index 78a47bd43a40..52a4bd641477 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/community", - "version": "0.3.31", + "version": "0.3.32", "description": "Third-party integrations for LangChain.js", "type": "module", "engines": { From d303e909d6b73da0bda4c0b7065ff974a980e5b0 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 20 Feb 2025 18:56:00 -0800 Subject: [PATCH 49/70] release(google-vertex): 0.2.0 (#7731) --- libs/langchain-google-common/package.json | 2 +- libs/langchain-google-gauth/package.json | 4 +-- .../package.json | 4 +-- libs/langchain-google-vertexai/package.json | 4 +-- .../src/tests/chat_models.int.test.ts | 6 +++-- libs/langchain-google-webauth/package.json | 4 +-- yarn.lock | 26 ++++++++++++++----- 7 files changed, 32 insertions(+), 18 deletions(-) diff --git a/libs/langchain-google-common/package.json b/libs/langchain-google-common/package.json index 23b7c98f6987..4717bc540fa9 100644 --- a/libs/langchain-google-common/package.json +++ b/libs/langchain-google-common/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/google-common", - "version": "0.1.8", + "version": "0.2.0", "description": "Core types and classes for Google services.", "type": "module", "engines": { diff --git a/libs/langchain-google-gauth/package.json b/libs/langchain-google-gauth/package.json index 6075238ec648..08c902d0146b 100644 --- a/libs/langchain-google-gauth/package.json +++ b/libs/langchain-google-gauth/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/google-gauth", - "version": "0.1.8", + "version": "0.2.0", "description": "Google auth based authentication support for Google services", "type": "module", "engines": { @@ -35,7 +35,7 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@langchain/google-common": "~0.1.8", + "@langchain/google-common": "~0.2.0", "google-auth-library": "^9.15.1" }, "peerDependencies": { diff --git a/libs/langchain-google-vertexai-web/package.json b/libs/langchain-google-vertexai-web/package.json index c6fdc6baffc9..1a8dc5bda412 100644 --- a/libs/langchain-google-vertexai-web/package.json +++ b/libs/langchain-google-vertexai-web/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/google-vertexai-web", - "version": "0.1.8", + "version": "0.2.0", "description": "LangChain.js support for Google Vertex AI Web", "type": "module", "engines": { @@ -32,7 +32,7 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@langchain/google-webauth": "~0.1.8" + "@langchain/google-webauth": "~0.2.0" }, "peerDependencies": { "@langchain/core": ">=0.2.21 <0.4.0" diff --git a/libs/langchain-google-vertexai/package.json b/libs/langchain-google-vertexai/package.json index d7602962800c..793a9a32c4f0 100644 --- a/libs/langchain-google-vertexai/package.json +++ b/libs/langchain-google-vertexai/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/google-vertexai", - "version": "0.1.8", + "version": "0.2.0", "description": "LangChain.js support for Google Vertex AI", "type": "module", "engines": { @@ -32,7 +32,7 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@langchain/google-gauth": "~0.1.8" + "@langchain/google-gauth": "~0.2.0" }, "peerDependencies": { "@langchain/core": ">=0.2.21 <0.4.0" diff --git a/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts b/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts index fc74fea30f20..b67dc6e9bb90 100644 --- a/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts +++ b/libs/langchain-google-vertexai/src/tests/chat_models.int.test.ts @@ -312,7 +312,8 @@ describe.each(testGeminiModelNames)("GAuth Gemini Chat (%s)", (modelName) => { }); const blobStore = new ReadThroughBlobStore({ baseStore: aliasStore, - backingStore, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + backingStore: backingStore as any, }); const resolver = new SimpleWebBlobStore(); const mediaManager = new MediaManager({ @@ -322,7 +323,8 @@ describe.each(testGeminiModelNames)("GAuth Gemini Chat (%s)", (modelName) => { const model = new ChatGoogle({ modelName, apiConfig: { - mediaManager, + // eslint-disable-next-line @typescript-eslint/no-explicit-any + mediaManager: mediaManager as any, }, }); diff --git a/libs/langchain-google-webauth/package.json b/libs/langchain-google-webauth/package.json index 24eefb9c0448..b219391dd8f1 100644 --- a/libs/langchain-google-webauth/package.json +++ b/libs/langchain-google-webauth/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/google-webauth", - "version": "0.1.8", + "version": "0.2.0", "description": "Web-based authentication support for Google services", "type": "module", "engines": { @@ -32,7 +32,7 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@langchain/google-common": "~0.1.8", + "@langchain/google-common": "~0.2.0", "web-auth-library": "^1.0.3" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index a1a1a3598067..856d1d1673a8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -8907,7 +8907,19 @@ __metadata: languageName: unknown linkType: soft -"@langchain/google-common@^0.1.0, @langchain/google-common@workspace:*, @langchain/google-common@workspace:libs/langchain-google-common, @langchain/google-common@~0.1.8": +"@langchain/google-common@npm:^0.1.0": + version: 0.1.8 + resolution: "@langchain/google-common@npm:0.1.8" + dependencies: + uuid: ^10.0.0 + zod-to-json-schema: ^3.22.4 + peerDependencies: + "@langchain/core": ">=0.2.21 <0.4.0" + checksum: f6c2c15d13fdcecf34bf0add9eaee2cfe0c3c3708c7f9182df935abc130fddff899e95f284e5f30bc63d26ddbbd91a6fb362ce47a1f3a1a973e030ae77c0ab47 + languageName: node + linkType: hard + +"@langchain/google-common@workspace:*, @langchain/google-common@workspace:libs/langchain-google-common, @langchain/google-common@~0.2.0": version: 0.0.0-use.local resolution: "@langchain/google-common@workspace:libs/langchain-google-common" dependencies: @@ -8942,13 +8954,13 @@ __metadata: languageName: unknown linkType: soft -"@langchain/google-gauth@workspace:libs/langchain-google-gauth, @langchain/google-gauth@~0.1.8": +"@langchain/google-gauth@workspace:libs/langchain-google-gauth, @langchain/google-gauth@~0.2.0": version: 0.0.0-use.local resolution: "@langchain/google-gauth@workspace:libs/langchain-google-gauth" dependencies: "@jest/globals": ^29.5.0 "@langchain/core": "workspace:*" - "@langchain/google-common": ~0.1.8 + "@langchain/google-common": ~0.2.0 "@langchain/scripts": ">=0.1.0 <0.2.0" "@swc/core": ^1.3.90 "@swc/jest": ^0.2.29 @@ -9021,7 +9033,7 @@ __metadata: "@jest/globals": ^29.5.0 "@langchain/core": "workspace:*" "@langchain/google-common": ^0.1.0 - "@langchain/google-webauth": ~0.1.8 + "@langchain/google-webauth": ~0.2.0 "@langchain/scripts": ">=0.1.0 <0.2.0" "@langchain/standard-tests": 0.0.0 "@swc/core": ^1.3.90 @@ -9057,7 +9069,7 @@ __metadata: "@jest/globals": ^29.5.0 "@langchain/core": "workspace:*" "@langchain/google-common": ^0.1.0 - "@langchain/google-gauth": ~0.1.8 + "@langchain/google-gauth": ~0.2.0 "@langchain/scripts": ">=0.1.0 <0.2.0" "@langchain/standard-tests": 0.0.0 "@swc/core": ^1.3.90 @@ -9086,13 +9098,13 @@ __metadata: languageName: unknown linkType: soft -"@langchain/google-webauth@workspace:libs/langchain-google-webauth, @langchain/google-webauth@~0.1.8": +"@langchain/google-webauth@workspace:libs/langchain-google-webauth, @langchain/google-webauth@~0.2.0": version: 0.0.0-use.local resolution: "@langchain/google-webauth@workspace:libs/langchain-google-webauth" dependencies: "@jest/globals": ^29.5.0 "@langchain/core": "workspace:*" - "@langchain/google-common": ~0.1.8 + "@langchain/google-common": ~0.2.0 "@langchain/scripts": ">=0.1.0 <0.2.0" "@swc/core": ^1.3.90 "@swc/jest": ^0.2.29 From 5284571ebad6de9addf2e59e9efb97cf8db819a2 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 24 Feb 2025 09:23:45 -0800 Subject: [PATCH 50/70] docs: Fix broken link (#7743) --- docs/core_docs/vercel.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/core_docs/vercel.json b/docs/core_docs/vercel.json index 22e9cb1abbee..007ec37f0cd2 100644 --- a/docs/core_docs/vercel.json +++ b/docs/core_docs/vercel.json @@ -100,6 +100,10 @@ { "source": "/docs/modules/model_io/prompts/quick_start/", "destination": "/docs/concepts/prompt_templates" + }, + { + "source": "/docs/modules/model_io/prompts(/?)", + "destination": "/docs/concepts/prompt_templates" } ] } From 4f7b157465e08658ad8d129d523eebc793612210 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 24 Feb 2025 11:02:37 -0800 Subject: [PATCH 51/70] release(google-genai): Release 0.1.9 (#7748) --- libs/langchain-google-genai/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-google-genai/package.json b/libs/langchain-google-genai/package.json index ace9f680ecc3..2befd57a8655 100644 --- a/libs/langchain-google-genai/package.json +++ b/libs/langchain-google-genai/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/google-genai", - "version": "0.1.8", + "version": "0.1.9", "description": "Google Generative AI integration for LangChain.js", "type": "module", "engines": { From ae335a373be389e705116376f63841732b05229a Mon Sep 17 00:00:00 2001 From: Ben Burns <803016+benjamincburns@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:29:14 +1300 Subject: [PATCH 52/70] feat(anthropic): Support claude 3.7 sonnet & extended thinking (#7750) --- libs/langchain-anthropic/package.json | 2 +- libs/langchain-anthropic/src/chat_models.ts | 45 ++++- .../src/tests/chat_models.int.test.ts | 162 ++++++++++++++++++ libs/langchain-anthropic/src/types.ts | 4 + .../src/utils/message_inputs.ts | 21 +++ .../src/utils/message_outputs.ts | 42 ++++- yarn.lock | 10 +- 7 files changed, 277 insertions(+), 9 deletions(-) diff --git a/libs/langchain-anthropic/package.json b/libs/langchain-anthropic/package.json index fa624d022132..849abbf33d17 100644 --- a/libs/langchain-anthropic/package.json +++ b/libs/langchain-anthropic/package.json @@ -35,7 +35,7 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@anthropic-ai/sdk": "^0.36.3", + "@anthropic-ai/sdk": "^0.37.0", "fast-xml-parser": "^4.4.1", "zod": "^3.22.4", "zod-to-json-schema": "^3.22.4" diff --git a/libs/langchain-anthropic/src/chat_models.ts b/libs/langchain-anthropic/src/chat_models.ts index c63a16f0ae66..f1887614efe0 100644 --- a/libs/langchain-anthropic/src/chat_models.ts +++ b/libs/langchain-anthropic/src/chat_models.ts @@ -39,6 +39,7 @@ import { AnthropicMessageStreamEvent, AnthropicRequestOptions, AnthropicStreamingMessageCreateParams, + AnthropicThinkingConfigParam, AnthropicToolChoice, ChatAnthropicToolType, } from "./types.js"; @@ -88,6 +89,12 @@ function _documentsInParams( return false; } +function _thinkingInParams( + params: AnthropicMessageCreateParams | AnthropicStreamingMessageCreateParams +): boolean { + return !!(params.thinking && params.thinking.type === "enabled"); +} + // eslint-disable-next-line @typescript-eslint/no-explicit-any function isAnthropicTool(tool: any): tool is Anthropic.Messages.Tool { return "input_schema" in tool; @@ -173,6 +180,11 @@ export interface AnthropicInput { */ // eslint-disable-next-line @typescript-eslint/no-explicit-any createClient?: (options: ClientOptions) => any; + + /** + * Options for extended thinking. + */ + thinking?: AnthropicThinkingConfigParam; } /** @@ -631,6 +643,8 @@ export class ChatAnthropicMessages< clientOptions: ClientOptions; + thinking: AnthropicThinkingConfigParam = { type: "disabled" }; + // Used for non-streaming requests protected batchClient: Anthropic; @@ -680,6 +694,8 @@ export class ChatAnthropicMessages< this.streaming = fields?.streaming ?? false; this.streamUsage = fields?.streamUsage ?? this.streamUsage; + this.thinking = fields?.thinking ?? this.thinking; + this.createClient = fields?.createClient ?? ((options: ClientOptions) => new Anthropic(options)); @@ -766,6 +782,30 @@ export class ChatAnthropicMessages< | Anthropic.Messages.ToolChoiceTool | undefined = handleToolChoice(options?.tool_choice); + if (this.thinking.type === "enabled") { + if (this.topK !== -1) { + throw new Error("topK is not supported when thinking is enabled"); + } + if (this.topP !== -1) { + throw new Error("topP is not supported when thinking is enabled"); + } + if (this.temperature !== 1) { + throw new Error( + "temperature is not supported when thinking is enabled" + ); + } + + return { + model: this.model, + stop_sequences: options?.stop ?? this.stopSequences, + stream: this.streaming, + max_tokens: this.maxTokens, + tools: this.formatStructuredToolToAnthropic(options?.tools), + tool_choice, + thinking: this.thinking, + ...this.invocationKwargs, + }; + } return { model: this.model, temperature: this.temperature, @@ -776,6 +816,7 @@ export class ChatAnthropicMessages< max_tokens: this.maxTokens, tools: this.formatStructuredToolToAnthropic(options?.tools), tool_choice, + thinking: this.thinking, ...this.invocationKwargs, }; } @@ -811,7 +852,9 @@ export class ChatAnthropicMessages< stream: true, } as const; const coerceContentToString = - !_toolsInParams(payload) && !_documentsInParams(payload); + !_toolsInParams(payload) && + !_documentsInParams(payload) && + !_thinkingInParams(payload); const stream = await this.createStreamWithRetry(payload, { headers: options.headers, diff --git a/libs/langchain-anthropic/src/tests/chat_models.int.test.ts b/libs/langchain-anthropic/src/tests/chat_models.int.test.ts index a8983b29dc53..a2e2e40930d0 100644 --- a/libs/langchain-anthropic/src/tests/chat_models.int.test.ts +++ b/libs/langchain-anthropic/src/tests/chat_models.int.test.ts @@ -5,6 +5,7 @@ import { expect, test } from "@jest/globals"; import * as fs from "fs/promises"; import { AIMessageChunk, + BaseMessage, HumanMessage, SystemMessage, } from "@langchain/core/messages"; @@ -20,6 +21,7 @@ import { CallbackManager } from "@langchain/core/callbacks/manager"; import { concat } from "@langchain/core/utils/stream"; import { AnthropicVertex } from "@anthropic-ai/vertex-sdk"; import { ChatAnthropic } from "../chat_models.js"; +import { AnthropicMessageResponse } from "../types.js"; test("Test ChatAnthropic", async () => { const chat = new ChatAnthropic({ @@ -929,3 +931,163 @@ test("Citations", async () => { (aggregated?.content as any[]).some((c) => c.citations !== undefined) ).toBe(true); }); + +test("Test thinking blocks multiturn invoke", async () => { + const model = new ChatAnthropic({ + model: "claude-3-7-sonnet-latest", + maxTokens: 5000, + thinking: { type: "enabled", budget_tokens: 2000 }, + }); + + async function doInvoke(messages: BaseMessage[]) { + const response = await model.invoke(messages); + + expect(Array.isArray(response.content)).toBe(true); + const content = response.content as AnthropicMessageResponse[]; + expect(content.some((block) => "thinking" in (block as any))).toBe(true); + + for (const block of response.content) { + expect(typeof block).toBe("object"); + if ((block as any).type === "thinking") { + expect(Object.keys(block).sort()).toEqual( + ["type", "thinking", "signature"].sort() + ); + expect((block as any).thinking).toBeTruthy(); + expect(typeof (block as any).thinking).toBe("string"); + expect((block as any).signature).toBeTruthy(); + expect(typeof (block as any).signature).toBe("string"); + } + } + return response; + } + + const invokeMessages = [new HumanMessage("Hello")]; + + invokeMessages.push(await doInvoke(invokeMessages)); + invokeMessages.push(new HumanMessage("What is 42+7?")); + + // test a second time to make sure that we've got input translation working correctly + await model.invoke(invokeMessages); +}); + +test("Test thinking blocks multiturn streaming", async () => { + const model = new ChatAnthropic({ + model: "claude-3-7-sonnet-latest", + maxTokens: 5000, + thinking: { type: "enabled", budget_tokens: 2000 }, + }); + + async function doStreaming(messages: BaseMessage[]) { + let full: AIMessageChunk | null = null; + for await (const chunk of await model.stream(messages)) { + full = full ? concat(full, chunk) : chunk; + } + expect(full).toBeInstanceOf(AIMessageChunk); + expect(Array.isArray(full?.content)).toBe(true); + const content3 = full?.content as AnthropicMessageResponse[]; + expect(content3.some((block) => "thinking" in (block as any))).toBe(true); + + for (const block of full?.content || []) { + expect(typeof block).toBe("object"); + if ((block as any).type === "thinking") { + expect(Object.keys(block).sort()).toEqual( + ["type", "thinking", "signature", "index"].sort() + ); + expect((block as any).thinking).toBeTruthy(); + expect(typeof (block as any).thinking).toBe("string"); + expect((block as any).signature).toBeTruthy(); + expect(typeof (block as any).signature).toBe("string"); + } + } + return full as AIMessageChunk; + } + + const streamingMessages = [new HumanMessage("Hello")]; + + streamingMessages.push(await doStreaming(streamingMessages)); + streamingMessages.push(new HumanMessage("What is 42+7?")); + + // test a second time to make sure that we've got input translation working correctly + await doStreaming(streamingMessages); +}); + +test("Test redacted thinking blocks multiturn invoke", async () => { + const model = new ChatAnthropic({ + model: "claude-3-7-sonnet-latest", + maxTokens: 5000, + thinking: { type: "enabled", budget_tokens: 2000 }, + }); + + async function doInvoke(messages: BaseMessage[]) { + const response = await model.invoke(messages); + let hasReasoning = false; + + for (const block of response.content) { + expect(typeof block).toBe("object"); + if ((block as any).type === "redacted_thinking") { + hasReasoning = true; + expect(Object.keys(block).sort()).toEqual(["type", "data"].sort()); + expect((block as any).data).toBeTruthy(); + expect(typeof (block as any).data).toBe("string"); + } + } + expect(hasReasoning).toBe(true); + return response; + } + + const invokeMessages = [ + new HumanMessage( + "ANTHROPIC_MAGIC_STRING_TRIGGER_REDACTED_THINKING_46C9A13E193C177646C7398A98432ECCCE4C1253D5E2D82641AC0E52CC2876CB" + ), + ]; + + invokeMessages.push(await doInvoke(invokeMessages)); + invokeMessages.push(new HumanMessage("What is 42+7?")); + + // test a second time to make sure that we've got input translation working correctly + await doInvoke(invokeMessages); +}); + +test("Test redacted thinking blocks multiturn streaming", async () => { + const model = new ChatAnthropic({ + model: "claude-3-7-sonnet-latest", + maxTokens: 5000, + thinking: { type: "enabled", budget_tokens: 2000 }, + }); + + async function doStreaming(messages: BaseMessage[]) { + let full: AIMessageChunk | null = null; + for await (const chunk of await model.stream(messages)) { + full = full ? concat(full, chunk) : chunk; + } + expect(full).toBeInstanceOf(AIMessageChunk); + expect(Array.isArray(full?.content)).toBe(true); + let streamHasReasoning = false; + + for (const block of full?.content || []) { + expect(typeof block).toBe("object"); + if ((block as any).type === "redacted_thinking") { + streamHasReasoning = true; + expect(Object.keys(block).sort()).toEqual( + ["type", "data", "index"].sort() + ); + expect((block as any).data).toBeTruthy(); + expect(typeof (block as any).data).toBe("string"); + } + } + expect(streamHasReasoning).toBe(true); + return full as AIMessageChunk; + } + + const streamingMessages = [ + new HumanMessage( + "ANTHROPIC_MAGIC_STRING_TRIGGER_REDACTED_THINKING_46C9A13E193C177646C7398A98432ECCCE4C1253D5E2D82641AC0E52CC2876CB" + ), + ]; + + streamingMessages.push(await doStreaming(streamingMessages)); + streamingMessages.push(new HumanMessage("What is 42+7?")); + + // test a second time to make sure that we've got input translation working correctly + await doStreaming(streamingMessages); +}); diff --git a/libs/langchain-anthropic/src/types.ts b/libs/langchain-anthropic/src/types.ts index f1fb1d778967..cd9e280568ea 100644 --- a/libs/langchain-anthropic/src/types.ts +++ b/libs/langchain-anthropic/src/types.ts @@ -16,6 +16,7 @@ export type AnthropicMessageCreateParams = Anthropic.MessageCreateParamsNonStreaming; export type AnthropicStreamingMessageCreateParams = Anthropic.MessageCreateParamsStreaming; +export type AnthropicThinkingConfigParam = Anthropic.ThinkingConfigParam; export type AnthropicMessageStreamEvent = Anthropic.MessageStreamEvent; export type AnthropicRequestOptions = Anthropic.RequestOptions; export type AnthropicToolChoice = @@ -34,3 +35,6 @@ export type AnthropicToolUseBlockParam = Anthropic.Messages.ToolUseBlockParam; export type AnthropicToolResultBlockParam = Anthropic.Messages.ToolResultBlockParam; export type AnthropicDocumentBlockParam = Anthropic.Messages.DocumentBlockParam; +export type AnthropicThinkingBlockParam = Anthropic.Messages.ThinkingBlockParam; +export type AnthropicRedactedThinkingBlockParam = + Anthropic.Messages.RedactedThinkingBlockParam; diff --git a/libs/langchain-anthropic/src/utils/message_inputs.ts b/libs/langchain-anthropic/src/utils/message_inputs.ts index ab11532aad36..962d3c2c3a42 100644 --- a/libs/langchain-anthropic/src/utils/message_inputs.ts +++ b/libs/langchain-anthropic/src/utils/message_inputs.ts @@ -19,6 +19,8 @@ import { AnthropicToolResultBlockParam, AnthropicToolUseBlockParam, AnthropicDocumentBlockParam, + AnthropicThinkingBlockParam, + AnthropicRedactedThinkingBlockParam, } from "../types.js"; function _formatImage(imageUrl: string) { @@ -138,6 +140,21 @@ function _formatContent(content: MessageContent) { ...contentPart, ...(cacheControl ? { cache_control: cacheControl } : {}), }; + } else if (contentPart.type === "thinking") { + const block: AnthropicThinkingBlockParam = { + type: "thinking" as const, // Explicitly setting the type as "thinking" + thinking: contentPart.thinking, + signature: contentPart.signature, + ...(cacheControl ? { cache_control: cacheControl } : {}), + }; + return block; + } else if (contentPart.type === "redacted_thinking") { + const block: AnthropicRedactedThinkingBlockParam = { + type: "redacted_thinking" as const, // Explicitly setting the type as "redacted_thinking" + data: contentPart.data, + ...(cacheControl ? { cache_control: cacheControl } : {}), + }; + return block; } else if ( textTypes.find((t) => t === contentPart.type) && "text" in contentPart @@ -283,6 +300,8 @@ function mergeMessages(messages: AnthropicMessageCreateParams["messages"]) { | AnthropicToolUseBlockParam | AnthropicToolResultBlockParam | AnthropicDocumentBlockParam + | AnthropicThinkingBlockParam + | AnthropicRedactedThinkingBlockParam > ): Array< | AnthropicTextBlockParam @@ -290,6 +309,8 @@ function mergeMessages(messages: AnthropicMessageCreateParams["messages"]) { | AnthropicToolUseBlockParam | AnthropicToolResultBlockParam | AnthropicDocumentBlockParam + | AnthropicThinkingBlockParam + | AnthropicRedactedThinkingBlockParam > => { if (typeof content === "string") { return [ diff --git a/libs/langchain-anthropic/src/utils/message_outputs.ts b/libs/langchain-anthropic/src/utils/message_outputs.ts index e96376f73597..17d784456428 100644 --- a/libs/langchain-anthropic/src/utils/message_outputs.ts +++ b/libs/langchain-anthropic/src/utils/message_outputs.ts @@ -110,7 +110,12 @@ export function _makeMessageChunkFromAnthropicEvent( }; } else if ( data.type === "content_block_delta" && - ["text_delta", "citations_delta"].includes(data.delta.type) + [ + "text_delta", + "citations_delta", + "thinking_delta", + "signature_delta", + ].includes(data.delta.type) ) { if (fields.coerceContentToString && "text" in data.delta) { return { @@ -125,6 +130,17 @@ export function _makeMessageChunkFromAnthropicEvent( contentBlock.citations = [contentBlock.citation]; delete contentBlock.citation; } + if ( + contentBlock.type === "thinking_delta" || + contentBlock.type === "signature_delta" + ) { + return { + chunk: new AIMessageChunk({ + content: [{ index: data.index, ...contentBlock, type: "thinking" }], + }), + }; + } + return { chunk: new AIMessageChunk({ content: [{ index: data.index, ...contentBlock, type: "text" }], @@ -175,8 +191,30 @@ export function _makeMessageChunkFromAnthropicEvent( }), }; } + } else if ( + data.type === "content_block_start" && + data.content_block.type === "redacted_thinking" + ) { + return { + chunk: new AIMessageChunk({ + content: fields.coerceContentToString + ? "" + : [{ index: data.index, ...data.content_block }], + }), + }; + } else if ( + data.type === "content_block_start" && + data.content_block.type === "thinking" + ) { + const content = data.content_block.thinking; + return { + chunk: new AIMessageChunk({ + content: fields.coerceContentToString + ? content + : [{ index: data.index, ...data.content_block }], + }), + }; } - return null; } diff --git a/yarn.lock b/yarn.lock index 856d1d1673a8..4939005e21e0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -241,9 +241,9 @@ __metadata: languageName: node linkType: hard -"@anthropic-ai/sdk@npm:^0.36.3": - version: 0.36.3 - resolution: "@anthropic-ai/sdk@npm:0.36.3" +"@anthropic-ai/sdk@npm:^0.37.0": + version: 0.37.0 + resolution: "@anthropic-ai/sdk@npm:0.37.0" dependencies: "@types/node": ^18.11.18 "@types/node-fetch": ^2.6.4 @@ -252,7 +252,7 @@ __metadata: form-data-encoder: 1.7.2 formdata-node: ^4.3.2 node-fetch: ^2.6.7 - checksum: 783a051fea42bb8cc52f92b1aaf1d5d1fb9412f8cc54c0cc3b4f6b5c3b97056bcdebc7c17d0b7efca67a8cf92642e2c9c50d49af80d2bd33b4cf286edf51664c + checksum: ce33d7bbccd56b2b724d9a9cac5f490a96c9c8f008736a6ccd5d66098b3347c8a7fe5fdd8e0b3b59a5c32b15fb56bb3b207987fee2af24fe2730a84992a1f6a1 languageName: node linkType: hard @@ -7910,7 +7910,7 @@ __metadata: version: 0.0.0-use.local resolution: "@langchain/anthropic@workspace:libs/langchain-anthropic" dependencies: - "@anthropic-ai/sdk": ^0.36.3 + "@anthropic-ai/sdk": ^0.37.0 "@anthropic-ai/vertex-sdk": ^0.4.1 "@jest/globals": ^29.5.0 "@langchain/core": "workspace:*" From 38d0ab84ac37a7f4975bea0f0f7b9d6ee9c63dcb Mon Sep 17 00:00:00 2001 From: Ben Burns <803016+benjamincburns@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:37:37 +1300 Subject: [PATCH 53/70] release(anthropic): 0.3.14 --- libs/langchain-anthropic/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-anthropic/package.json b/libs/langchain-anthropic/package.json index 849abbf33d17..06d08d43bc63 100644 --- a/libs/langchain-anthropic/package.json +++ b/libs/langchain-anthropic/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/anthropic", - "version": "0.3.13", + "version": "0.3.14", "description": "Anthropic integrations for LangChain.js", "type": "module", "engines": { From eca902ef7e80b017a0823c23e7475d01a157a85e Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 27 Feb 2025 09:58:34 -0800 Subject: [PATCH 54/70] fix(pinecone): Update Pinecone SDK to 5.0.0, make peer dep (#7767) --- .../retrievers/self_query/pinecone.ipynb | 2 +- .../text_embedding/pinecone.ipynb | 2 +- .../integrations/vectorstores/pinecone.ipynb | 4 ++-- examples/package.json | 2 +- .../src/vectorstores/pinecone.ts | 2 +- libs/langchain-pinecone/README.md | 4 ++-- libs/langchain-pinecone/package.json | 5 +++-- libs/langchain-pinecone/src/embeddings.ts | 13 ++++++----- .../src/tests/embeddings.int.test.ts | 4 ++-- .../src/tests/vectorstores.int.test.ts | 4 ++-- libs/langchain-pinecone/src/vectorstores.ts | 22 +++++++++++++++---- yarn.lock | 15 ++++++------- 12 files changed, 47 insertions(+), 32 deletions(-) diff --git a/docs/core_docs/docs/integrations/retrievers/self_query/pinecone.ipynb b/docs/core_docs/docs/integrations/retrievers/self_query/pinecone.ipynb index c5915ffe9249..4d87a37e906f 100644 --- a/docs/core_docs/docs/integrations/retrievers/self_query/pinecone.ipynb +++ b/docs/core_docs/docs/integrations/retrievers/self_query/pinecone.ipynb @@ -56,7 +56,7 @@ "\n", "The vector store lives in the `@langchain/pinecone` package. You'll also need to install the `langchain` package to import the main `SelfQueryRetriever` class.\n", "\n", - "The official Pinecone SDK (`@pinecone-database/pinecone`) is automatically installed as a dependency of `@langchain/pinecone`, but you may wish to install it independently as well.\n", + "You will also need to install the official Pinecone SDK (`@pinecone-database/pinecone@5`).\n", "\n", "For this example, we'll also use OpenAI embeddings, so you'll need to install the `@langchain/openai` package and [obtain an API key](https://platform.openai.com):\n", "\n", diff --git a/docs/core_docs/docs/integrations/text_embedding/pinecone.ipynb b/docs/core_docs/docs/integrations/text_embedding/pinecone.ipynb index 7df7fb186cdb..4bdcdb0acb0c 100644 --- a/docs/core_docs/docs/integrations/text_embedding/pinecone.ipynb +++ b/docs/core_docs/docs/integrations/text_embedding/pinecone.ipynb @@ -60,7 +60,7 @@ "\n", "\n", "\n", - " @langchain/pinecone @langchain/core\n", + " @langchain/pinecone @langchain/core @pinecone-database/pinecone@5\n", "\n", "```" ] diff --git a/docs/core_docs/docs/integrations/vectorstores/pinecone.ipynb b/docs/core_docs/docs/integrations/vectorstores/pinecone.ipynb index 480c710d9127..d3e4518e57b7 100644 --- a/docs/core_docs/docs/integrations/vectorstores/pinecone.ipynb +++ b/docs/core_docs/docs/integrations/vectorstores/pinecone.ipynb @@ -58,7 +58,7 @@ "\n", "\n", "\n", - " @langchain/pinecone @langchain/openai @langchain/core @pinecone-database/pinecone \n", + " @langchain/pinecone @langchain/openai @langchain/core @pinecone-database/pinecone@5\n", "\n", "```\n", "\n", @@ -363,4 +363,4 @@ }, "nbformat": 4, "nbformat_minor": 5 -} \ No newline at end of file +} diff --git a/examples/package.json b/examples/package.json index 089372fe3e06..3f392a66bccf 100644 --- a/examples/package.json +++ b/examples/package.json @@ -69,7 +69,7 @@ "@langchain/yandex": "workspace:*", "@layerup/layerup-security": "^1.5.12", "@opensearch-project/opensearch": "^2.2.0", - "@pinecone-database/pinecone": "^4.0.0", + "@pinecone-database/pinecone": "^5.0.2", "@planetscale/database": "^1.8.0", "@prisma/client": "^4.11.0", "@qdrant/js-client-rest": "^1.9.0", diff --git a/libs/langchain-community/src/vectorstores/pinecone.ts b/libs/langchain-community/src/vectorstores/pinecone.ts index fa395af287e6..d92c6dfa1add 100644 --- a/libs/langchain-community/src/vectorstores/pinecone.ts +++ b/libs/langchain-community/src/vectorstores/pinecone.ts @@ -270,7 +270,7 @@ export class PineconeStore extends VectorStore { ); const matches = results?.matches ?? []; - const embeddingList = matches.map((match) => match.values); + const embeddingList = matches.map((match) => match.values!); const mmrIndexes = maximalMarginalRelevance( queryEmbedding, diff --git a/libs/langchain-pinecone/README.md b/libs/langchain-pinecone/README.md index 8ce22f6785a9..06b032447bee 100644 --- a/libs/langchain-pinecone/README.md +++ b/libs/langchain-pinecone/README.md @@ -1,11 +1,11 @@ # @langchain/pinecone -This package contains the LangChain.js integrations for through their SDK. +This package contains the LangChain.js integrations for Pinecone through their SDK. ## Installation ```bash npm2yarn -npm install @langchain/pinecone @langchain/core +npm install @langchain/pinecone @langchain/core @pinecone-database/pinecone ``` ## Development diff --git a/libs/langchain-pinecone/package.json b/libs/langchain-pinecone/package.json index c567920eb4f5..226df06f2ec2 100644 --- a/libs/langchain-pinecone/package.json +++ b/libs/langchain-pinecone/package.json @@ -32,12 +32,12 @@ "author": "Pinecone, Inc", "license": "MIT", "dependencies": { - "@pinecone-database/pinecone": "^4.0.0", "flat": "^5.0.2", "uuid": "^10.0.0" }, "peerDependencies": { - "@langchain/core": ">=0.2.21 <0.4.0" + "@langchain/core": ">=0.2.21 <0.4.0", + "@pinecone-database/pinecone": "^5.0.2" }, "devDependencies": { "@faker-js/faker": "^8.3.1", @@ -45,6 +45,7 @@ "@langchain/core": "workspace:*", "@langchain/openai": "workspace:*", "@langchain/scripts": ">=0.1.0 <0.2.0", + "@pinecone-database/pinecone": "^5.0.2", "@swc/core": "^1.3.90", "@swc/jest": "^0.2.29", "@tsconfig/recommended": "^1.0.3", diff --git a/libs/langchain-pinecone/src/embeddings.ts b/libs/langchain-pinecone/src/embeddings.ts index 6d0d04226ed8..36e14e12975e 100644 --- a/libs/langchain-pinecone/src/embeddings.ts +++ b/libs/langchain-pinecone/src/embeddings.ts @@ -75,7 +75,7 @@ export class PineconeEmbeddings ); } - let embeddings; + let embeddings: EmbeddingsList; if (this.params) { embeddings = await this.caller.call(async () => { const result: EmbeddingsList = await this.client.inference.embed( @@ -98,9 +98,10 @@ export class PineconeEmbeddings const embeddingsList: number[][] = []; - for (let i = 0; i < embeddings.length; i += 1) { - if (embeddings[i].values) { - embeddingsList.push(embeddings[i].values as number[]); + for (let i = 0; i < embeddings.data.length; i += 1) { + const embedding = embeddings.data[i]; + if ("values" in embedding && embedding.values) { + embeddingsList.push(embedding.values); } } return embeddingsList; @@ -130,8 +131,8 @@ export class PineconeEmbeddings return await this.client.inference.embed(this.model, [text], {}); }); } - if (embeddings[0].values) { - return embeddings[0].values as number[]; + if ("values" in embeddings.data[0]) { + return embeddings.data[0].values as number[]; } else { return []; } diff --git a/libs/langchain-pinecone/src/tests/embeddings.int.test.ts b/libs/langchain-pinecone/src/tests/embeddings.int.test.ts index 980e32775bca..62d34a774f4b 100644 --- a/libs/langchain-pinecone/src/tests/embeddings.int.test.ts +++ b/libs/langchain-pinecone/src/tests/embeddings.int.test.ts @@ -31,7 +31,7 @@ describe("Integration tests for Pinecone embeddings", () => { expect(embeddings[0].length).toBe(1024); // Assert correct dims on random doc expect(model.model).toBe("multilingual-e5-large"); expect(model.params).toEqual({ - inputType: "passage", // Maintain default inputType for docs + input_type: "passage", // Maintain default inputType for docs customParam: "value", }); @@ -40,7 +40,7 @@ describe("Integration tests for Pinecone embeddings", () => { expect(model.model).toBe("multilingual-e5-large"); expect(queryEmbedding.length).toBe(1024); expect(model.params).toEqual({ - inputType: "query", // Change inputType for query + input_type: "query", // Change inputType for query customParam: "value", }); }); diff --git a/libs/langchain-pinecone/src/tests/vectorstores.int.test.ts b/libs/langchain-pinecone/src/tests/vectorstores.int.test.ts index 074dccae9004..fed1d1736193 100644 --- a/libs/langchain-pinecone/src/tests/vectorstores.int.test.ts +++ b/libs/langchain-pinecone/src/tests/vectorstores.int.test.ts @@ -24,7 +24,7 @@ describe("PineconeStore", () => { beforeAll(async () => { const embeddings = new SyntheticEmbeddings({ - vectorSize: 1536, + vectorSize: 1024, }); const pinecone = new Pinecone({ @@ -239,7 +239,7 @@ describe("PineconeStore", () => { const documentId = uuid.v4(); const pageContent = faker.lorem.sentence(5); const embeddings = new SyntheticEmbeddings({ - vectorSize: 1536, + vectorSize: 1024, }); const store = new PineconeStore(embeddings, { diff --git a/libs/langchain-pinecone/src/vectorstores.ts b/libs/langchain-pinecone/src/vectorstores.ts index 8601c1570e8f..439c5c1551ed 100644 --- a/libs/langchain-pinecone/src/vectorstores.ts +++ b/libs/langchain-pinecone/src/vectorstores.ts @@ -21,7 +21,7 @@ import { import { chunkArray } from "@langchain/core/utils/chunk_array"; import { maximalMarginalRelevance } from "@langchain/core/utils/math"; -// eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/no-explicit-any +// eslint-disable-next-line @typescript-eslint/no-explicit-any type PineconeMetadata = Record; type HTTPHeaders = { @@ -340,7 +340,17 @@ export class PineconeStore extends VectorStore { const chunkSize = 100; const chunkedVectors = chunkArray(pineconeVectors, chunkSize); const batchRequests = chunkedVectors.map((chunk) => - this.caller.call(async () => namespace.upsert(chunk)) + this.caller.call(async () => { + try { + await namespace.upsert(chunk); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + } catch (e: any) { + if (e.message.includes("404")) { + e.statusCode = 404; + } + throw e; + } + }) ); await Promise.all(batchRequests); @@ -382,7 +392,7 @@ export class PineconeStore extends VectorStore { if (filter && this.filter) { throw new Error("cannot provide both `filter` and `this.filter`"); } - const _filter = filter ?? this.filter; + let _filter = filter ?? this.filter; let optionsNamespace = this.namespace ?? ""; if (_filter && "namespace" in _filter) { @@ -390,6 +400,10 @@ export class PineconeStore extends VectorStore { delete _filter.namespace; } + if (Object.keys(_filter ?? {}).length === 0) { + _filter = undefined; + } + const namespace = this.pineconeIndex.namespace(optionsNamespace ?? ""); const results = await namespace.query({ @@ -483,7 +497,7 @@ export class PineconeStore extends VectorStore { ); const { matches = [] } = results; - const embeddingList = matches.map((match) => match.values); + const embeddingList = matches.map((match) => match.values!); const mmrIndexes = maximalMarginalRelevance( queryEmbedding, diff --git a/yarn.lock b/yarn.lock index 4939005e21e0..68fd3ab1b7af 100644 --- a/yarn.lock +++ b/yarn.lock @@ -9446,7 +9446,7 @@ __metadata: "@langchain/core": "workspace:*" "@langchain/openai": "workspace:*" "@langchain/scripts": ">=0.1.0 <0.2.0" - "@pinecone-database/pinecone": ^4.0.0 + "@pinecone-database/pinecone": ^5.0.2 "@swc/core": ^1.3.90 "@swc/jest": ^0.2.29 "@tsconfig/recommended": ^1.0.3 @@ -9472,6 +9472,7 @@ __metadata: uuid: ^10.0.0 peerDependencies: "@langchain/core": ">=0.2.21 <0.4.0" + "@pinecone-database/pinecone": ^5.0.2 languageName: unknown linkType: soft @@ -10969,12 +10970,10 @@ __metadata: languageName: node linkType: hard -"@pinecone-database/pinecone@npm:^4.0.0": - version: 4.0.0 - resolution: "@pinecone-database/pinecone@npm:4.0.0" - dependencies: - encoding: ^0.1.13 - checksum: 7523d7b8dc6a5d7b5d5cf37c97f6070112473f26d82aec23ca198554634e6bc0883866fcc9a8b2978e287daad8665085cef1d4f16d86a7ba0f8b623d88bdda54 +"@pinecone-database/pinecone@npm:^5.0.2": + version: 5.0.2 + resolution: "@pinecone-database/pinecone@npm:5.0.2" + checksum: 070a82fd8049ca3678bc5e3e430176cdb927005f4c27076e139641b89317364189fdc54d901c66ef2c0d631c3456997cfdd3892715e4dc09d1ee9ba47bfdacff languageName: node linkType: hard @@ -22359,7 +22358,7 @@ __metadata: "@langchain/yandex": "workspace:*" "@layerup/layerup-security": ^1.5.12 "@opensearch-project/opensearch": ^2.2.0 - "@pinecone-database/pinecone": ^4.0.0 + "@pinecone-database/pinecone": ^5.0.2 "@planetscale/database": ^1.8.0 "@prisma/client": ^4.11.0 "@qdrant/js-client-rest": ^1.9.0 From dd68043df3652c322f25531a692b551490743178 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 27 Feb 2025 10:03:31 -0800 Subject: [PATCH 55/70] release(pinecone): 0.2.0 (#7772) --- libs/langchain-pinecone/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-pinecone/package.json b/libs/langchain-pinecone/package.json index 226df06f2ec2..4ea7618f9113 100644 --- a/libs/langchain-pinecone/package.json +++ b/libs/langchain-pinecone/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/pinecone", - "version": "0.1.3", + "version": "0.2.0", "description": "LangChain integration for Pinecone's vector database", "type": "module", "engines": { From cdb5d2d1e1e45e52df65a87a9a153c8f64130417 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 27 Feb 2025 10:16:17 -0800 Subject: [PATCH 56/70] docs: Adds missing redirect (#7759) --- docs/core_docs/vercel.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/core_docs/vercel.json b/docs/core_docs/vercel.json index 007ec37f0cd2..e930d91b4b76 100644 --- a/docs/core_docs/vercel.json +++ b/docs/core_docs/vercel.json @@ -104,6 +104,14 @@ { "source": "/docs/modules/model_io/prompts(/?)", "destination": "/docs/concepts/prompt_templates" + }, + { + "source": "/docs/guides/expression_language/cookbook(/?)", + "destination": "/docs/how_to/sequence" + }, + { + "source": "/docs/modules/model_io/models(/?)", + "destination": "/docs/integrations/chat/" } ] } From 1f570872a9f9d455d2b810f5a8cc8cafb4f3ff0d Mon Sep 17 00:00:00 2001 From: Ben Burns <803016+benjamincburns@users.noreply.github.com> Date: Fri, 28 Feb 2025 07:23:09 +1300 Subject: [PATCH 57/70] fix(core): don't create empty text content blocks (#7769) --- langchain-core/src/messages/base.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/langchain-core/src/messages/base.ts b/langchain-core/src/messages/base.ts index 521f5b77935b..ac9aa2c96316 100644 --- a/langchain-core/src/messages/base.ts +++ b/langchain-core/src/messages/base.ts @@ -107,6 +107,9 @@ export function mergeContent( ): MessageContent { // If first content is a string if (typeof firstContent === "string") { + if (firstContent === "") { + return secondContent; + } if (typeof secondContent === "string") { return firstContent + secondContent; } else { @@ -121,6 +124,9 @@ export function mergeContent( ] ); } else { + if (secondContent === "") { + return firstContent; + } // Otherwise, add the second content as a new element of the list return [...firstContent, { type: "text", text: secondContent }]; } From b820cbb1b0592650efe3b575d88147c387d58d43 Mon Sep 17 00:00:00 2001 From: "142vip.cn" Date: Fri, 28 Feb 2025 02:29:51 +0800 Subject: [PATCH 58/70] fix(community): usage error returned by Zhipuai streaming data was missing tokens-related information (#7745) --- libs/langchain-community/src/chat_models/zhipuai.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/langchain-community/src/chat_models/zhipuai.ts b/libs/langchain-community/src/chat_models/zhipuai.ts index dd280cc8679f..337f7b2d0ec3 100644 --- a/libs/langchain-community/src/chat_models/zhipuai.ts +++ b/libs/langchain-community/src/chat_models/zhipuai.ts @@ -514,7 +514,7 @@ export class ChatZhipuAI extends BaseChatModel implements ChatZhipuAIParams { for await (const chunk of stream) { if (chunk !== "[DONE]") { const deserializedChunk = this._deserialize(chunk); - const { choices, id } = deserializedChunk; + const { choices, usage, id } = deserializedChunk; const text = choices[0]?.delta?.content ?? ""; const finished = !!choices[0]?.finish_reason; yield new ChatGenerationChunk({ @@ -524,7 +524,8 @@ export class ChatZhipuAI extends BaseChatModel implements ChatZhipuAIParams { ? { finished, request_id: id, - usage: chunk.usage, + // The usage of tokens is counted at the end of the stream + usage, } : undefined, }); From 5f805b29e2d54327c1e42bf4e0c83ce0d05f95cf Mon Sep 17 00:00:00 2001 From: rose Date: Fri, 28 Feb 2025 00:06:38 +0530 Subject: [PATCH 59/70] fix(core): Skip delete operation if not necessary during incremental index (#7734) --- langchain-core/src/indexing/base.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/langchain-core/src/indexing/base.ts b/langchain-core/src/indexing/base.ts index 61283fee79dc..4f6400e594c8 100644 --- a/langchain-core/src/indexing/base.ts +++ b/langchain-core/src/indexing/base.ts @@ -348,9 +348,12 @@ export async function index(args: IndexArgs): Promise { before: indexStartDt, groupIds: sourceIds, }); - await vectorStore.delete({ ids: uidsToDelete }); - await recordManager.deleteKeys(uidsToDelete); - numDeleted += uidsToDelete.length; + + if (uidsToDelete.length > 0) { + await vectorStore.delete({ ids: uidsToDelete }); + await recordManager.deleteKeys(uidsToDelete); + numDeleted += uidsToDelete.length; + } } } From 79467fbc3545396d9fd18304b11dc55edee10233 Mon Sep 17 00:00:00 2001 From: Denis Capkovic Date: Thu, 27 Feb 2025 19:39:20 +0100 Subject: [PATCH 60/70] fix(google-genai): Fix Google Genai usage token (#7733) --- libs/langchain-google-genai/src/chat_models.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/libs/langchain-google-genai/src/chat_models.ts b/libs/langchain-google-genai/src/chat_models.ts index fc3096758445..7bb4a1307485 100644 --- a/libs/langchain-google-genai/src/chat_models.ts +++ b/libs/langchain-google-genai/src/chat_models.ts @@ -905,21 +905,21 @@ export class ChatGoogleGenerativeAI options.streamUsage !== false ) { const genAIUsageMetadata = response.usageMetadata as { - promptTokenCount: number; - candidatesTokenCount: number; - totalTokenCount: number; + promptTokenCount: number | undefined; + candidatesTokenCount: number | undefined; + totalTokenCount: number | undefined; }; if (!usageMetadata) { usageMetadata = { - input_tokens: genAIUsageMetadata.promptTokenCount, - output_tokens: genAIUsageMetadata.candidatesTokenCount, - total_tokens: genAIUsageMetadata.totalTokenCount, + input_tokens: genAIUsageMetadata.promptTokenCount ?? 0, + output_tokens: genAIUsageMetadata.candidatesTokenCount ?? 0, + total_tokens: genAIUsageMetadata.totalTokenCount ?? 0, }; } else { // Under the hood, LangChain combines the prompt tokens. Google returns the updated // total each time, so we need to find the difference between the tokens. const outputTokenDiff = - genAIUsageMetadata.candidatesTokenCount - + (genAIUsageMetadata.candidatesTokenCount ?? 0) - usageMetadata.output_tokens; usageMetadata = { input_tokens: 0, From 60e5950eeebebc84b05c199710b14b8b46b442aa Mon Sep 17 00:00:00 2001 From: Arnau Castells Cami <36441239+acastells@users.noreply.github.com> Date: Thu, 27 Feb 2025 19:39:49 +0100 Subject: [PATCH 61/70] fix(core): add artifact to ToolMessage and ToolMessageChunk for RemoteRunnable (#7763) Co-authored-by: Arnau Castells Co-authored-by: jacoblee93 --- langchain-core/src/runnables/remote.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/langchain-core/src/runnables/remote.ts b/langchain-core/src/runnables/remote.ts index 4cae2f63d783..5a242fa6234d 100644 --- a/langchain-core/src/runnables/remote.ts +++ b/langchain-core/src/runnables/remote.ts @@ -87,6 +87,7 @@ function revive(obj: any): any { content: obj.content, tool_call_id: obj.tool_call_id, status: obj.status, + artifact: obj.artifact, }); } if (obj.type === "AIMessage" || obj.type === "ai") { @@ -121,6 +122,7 @@ function revive(obj: any): any { content: obj.content, tool_call_id: obj.tool_call_id, status: obj.status, + artifact: obj.artifact, }); } if (obj.type === "AIMessageChunk") { From efed92d2d60e10360c619942834b77ff8536b740 Mon Sep 17 00:00:00 2001 From: allen Date: Thu, 27 Feb 2025 10:40:12 -0800 Subject: [PATCH 62/70] fix(deepseek): wrong home link for @langchain/deepseek (#7754) --- libs/langchain-deepseek/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-deepseek/package.json b/libs/langchain-deepseek/package.json index 648fe220c9ad..30197947f784 100644 --- a/libs/langchain-deepseek/package.json +++ b/libs/langchain-deepseek/package.json @@ -12,7 +12,7 @@ "type": "git", "url": "git@github.com:langchain-ai/langchainjs.git" }, - "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/@langchain/deepseek", + "homepage": "https://github.com/langchain-ai/langchainjs/tree/main/libs/langchain-deepseek", "scripts": { "build": "yarn turbo:command build:internal --filter=@langchain/deepseek", "build:internal": "yarn lc_build --create-entrypoints --pre --tree-shaking", From 1bf36c906e1bcdb4ea2739f50855db4bf44baa7e Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 27 Feb 2025 10:45:48 -0800 Subject: [PATCH 63/70] release(google-genai): 0.1.10 (#7773) --- libs/langchain-google-genai/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-google-genai/package.json b/libs/langchain-google-genai/package.json index 2befd57a8655..a5e112cb9500 100644 --- a/libs/langchain-google-genai/package.json +++ b/libs/langchain-google-genai/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/google-genai", - "version": "0.1.9", + "version": "0.1.10", "description": "Google Generative AI integration for LangChain.js", "type": "module", "engines": { From d07f6da743d568ab6066d3a8e36114d3e0b09e73 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 27 Feb 2025 10:48:43 -0800 Subject: [PATCH 64/70] release(core): 0.3.41 (#7774) --- langchain-core/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain-core/package.json b/langchain-core/package.json index e8fd553fbfe0..16661fc1d18a 100644 --- a/langchain-core/package.json +++ b/langchain-core/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/core", - "version": "0.3.40", + "version": "0.3.41", "description": "Core LangChain.js abstractions and schemas", "type": "module", "engines": { From ed1d8c283ed351d6d8dd3661de7077a68b0d6acc Mon Sep 17 00:00:00 2001 From: allen Date: Thu, 27 Feb 2025 11:32:45 -0800 Subject: [PATCH 65/70] feat(community): Support google cloud storage document loader (#7740) Co-authored-by: jacoblee93 --- .../web_loaders/google_cloud_storage.mdx | 33 ++++++ .../document_loaders/google_cloud_storage.ts | 17 +++ libs/langchain-community/.gitignore | 4 + libs/langchain-community/langchain.config.js | 1 + libs/langchain-community/package.json | 15 ++- .../web/google_cloud_storage.ts | 104 ++++++++++++++++++ .../src/load/import_map.ts | 1 + yarn.lock | 48 +++++++- 8 files changed, 219 insertions(+), 4 deletions(-) create mode 100644 docs/core_docs/docs/integrations/document_loaders/web_loaders/google_cloud_storage.mdx create mode 100644 examples/src/document_loaders/google_cloud_storage.ts create mode 100644 libs/langchain-community/src/document_loaders/web/google_cloud_storage.ts diff --git a/docs/core_docs/docs/integrations/document_loaders/web_loaders/google_cloud_storage.mdx b/docs/core_docs/docs/integrations/document_loaders/web_loaders/google_cloud_storage.mdx new file mode 100644 index 000000000000..c519d9b8aed6 --- /dev/null +++ b/docs/core_docs/docs/integrations/document_loaders/web_loaders/google_cloud_storage.mdx @@ -0,0 +1,33 @@ +--- +hide_table_of_contents: true +sidebar_class_name: node-only +--- + +# Google Cloud Storage + +:::tip Compatibility +Only available on Node.js. +::: + +This covers how to load a Google Cloud Storage File into LangChain documents. + +## Setup + +To use this loader, you'll need to have Unstructured already set up and ready to use at an available URL endpoint. It can also be configured to run locally. + +See the docs [here](/docs/integrations/document_loaders/file_loaders/unstructured) for information on how to do that. + +You'll also need to install the official Google Cloud Storage SDK: + +```bash npm2yarn +npm install @langchain/community @langchain/core @google-cloud/storage +``` + +## Usage + +Once Unstructured is configured, you can use the Google Cloud Storage loader to load files and then convert them into a Document. + +import CodeBlock from "@theme/CodeBlock"; +import Example from "@examples/document_loaders/google_cloud_storage.ts"; + +{Example} diff --git a/examples/src/document_loaders/google_cloud_storage.ts b/examples/src/document_loaders/google_cloud_storage.ts new file mode 100644 index 000000000000..584d4659fe35 --- /dev/null +++ b/examples/src/document_loaders/google_cloud_storage.ts @@ -0,0 +1,17 @@ +import { GoogleCloudStorageLoader } from "@langchain/community/document_loaders/web/google_cloud_storage"; + +const loader = new GoogleCloudStorageLoader({ + bucket: "my-bucket-123", + file: "path/to/file.pdf", + storageOptions: { + keyFilename: "/path/to/keyfile.json", + }, + unstructuredLoaderOptions: { + apiUrl: "http://localhost:8000/general/v0/general", + apiKey: "", // this will be soon required + }, +}); + +const docs = await loader.load(); + +console.log(docs); diff --git a/libs/langchain-community/.gitignore b/libs/langchain-community/.gitignore index 458fd7822c48..ae0258bd42da 100644 --- a/libs/langchain-community/.gitignore +++ b/libs/langchain-community/.gitignore @@ -934,6 +934,10 @@ document_loaders/web/college_confidential.cjs document_loaders/web/college_confidential.js document_loaders/web/college_confidential.d.ts document_loaders/web/college_confidential.d.cts +document_loaders/web/google_cloud_storage.cjs +document_loaders/web/google_cloud_storage.js +document_loaders/web/google_cloud_storage.d.ts +document_loaders/web/google_cloud_storage.d.cts document_loaders/web/gitbook.cjs document_loaders/web/gitbook.js document_loaders/web/gitbook.d.ts diff --git a/libs/langchain-community/langchain.config.js b/libs/langchain-community/langchain.config.js index 311c028c09a2..dca43ba96d44 100644 --- a/libs/langchain-community/langchain.config.js +++ b/libs/langchain-community/langchain.config.js @@ -289,6 +289,7 @@ export const config = { "document_loaders/web/playwright": "document_loaders/web/playwright", "document_loaders/web/college_confidential": "document_loaders/web/college_confidential", + "document_loaders/web/google_cloud_storage": "document_loaders/web/google_cloud_storage", "document_loaders/web/gitbook": "document_loaders/web/gitbook", "document_loaders/web/hn": "document_loaders/web/hn", "document_loaders/web/imsdb": "document_loaders/web/imsdb", diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index 52a4bd641477..ade9221dbff1 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -76,7 +76,7 @@ "@gomomento/sdk": "^1.51.1", "@gomomento/sdk-core": "^1.51.1", "@google-ai/generativelanguage": "^2.5.0", - "@google-cloud/storage": "^7.7.0", + "@google-cloud/storage": "^7.15.2", "@gradientai/nodejs-sdk": "^1.2.0", "@huggingface/inference": "^2.6.4", "@huggingface/transformers": "^3.2.3", @@ -2823,6 +2823,15 @@ "import": "./document_loaders/web/college_confidential.js", "require": "./document_loaders/web/college_confidential.cjs" }, + "./document_loaders/web/google_cloud_storage": { + "types": { + "import": "./document_loaders/web/google_cloud_storage.d.ts", + "require": "./document_loaders/web/google_cloud_storage.d.cts", + "default": "./document_loaders/web/google_cloud_storage.d.ts" + }, + "import": "./document_loaders/web/google_cloud_storage.js", + "require": "./document_loaders/web/google_cloud_storage.cjs" + }, "./document_loaders/web/gitbook": { "types": { "import": "./document_loaders/web/gitbook.d.ts", @@ -4150,6 +4159,10 @@ "document_loaders/web/college_confidential.js", "document_loaders/web/college_confidential.d.ts", "document_loaders/web/college_confidential.d.cts", + "document_loaders/web/google_cloud_storage.cjs", + "document_loaders/web/google_cloud_storage.js", + "document_loaders/web/google_cloud_storage.d.ts", + "document_loaders/web/google_cloud_storage.d.cts", "document_loaders/web/gitbook.cjs", "document_loaders/web/gitbook.js", "document_loaders/web/gitbook.d.ts", diff --git a/libs/langchain-community/src/document_loaders/web/google_cloud_storage.ts b/libs/langchain-community/src/document_loaders/web/google_cloud_storage.ts new file mode 100644 index 000000000000..ee3db659f667 --- /dev/null +++ b/libs/langchain-community/src/document_loaders/web/google_cloud_storage.ts @@ -0,0 +1,104 @@ +import { Storage, StorageOptions } from "@google-cloud/storage"; +import * as os from "node:os"; +import * as path from "node:path"; +import * as fsDefault from "node:fs"; +import { BaseDocumentLoader } from "@langchain/core/document_loaders/base"; +import { Document } from "@langchain/core/documents"; +import { + UnstructuredLoaderOptions, + UnstructuredLoader, +} from "../fs/unstructured.js"; + +/** + * Represents the parameters for the GoogleCloudStorageLoader class. It includes + * properties such as the GCS bucket, file destination, the options for the UnstructuredLoader and + * the options for Google Cloud Storage + */ +export type GcsLoaderConfig = { + fs?: typeof fsDefault; + bucket: string; + file: string; + unstructuredLoaderOptions: UnstructuredLoaderOptions; + storageOptions: StorageOptions; +}; + +/** + * A class that extends the BaseDocumentLoader class. It represents a + * document loader for loading files from a google cloud storage bucket. + * @example + * ```typescript + * const loader = new GoogleCloudStorageLoader({ + * bucket: "", + * file: "", + * storageOptions: { + * keyFilename: "" + * } + * unstructuredConfig: { + * apiUrl: "", + * apiKey: "" + * } + * }); + * const docs = await loader.load(); + * ``` + */ +export class GoogleCloudStorageLoader extends BaseDocumentLoader { + private bucket: string; + + private file: string; + + private storageOptions: StorageOptions; + + private _fs: typeof fsDefault; + + private unstructuredLoaderOptions: UnstructuredLoaderOptions; + + constructor({ + fs = fsDefault, + file, + bucket, + unstructuredLoaderOptions, + storageOptions, + }: GcsLoaderConfig) { + super(); + this._fs = fs; + this.bucket = bucket; + this.file = file; + this.unstructuredLoaderOptions = unstructuredLoaderOptions; + this.storageOptions = storageOptions; + } + + async load(): Promise>[]> { + const tempDir = this._fs.mkdtempSync( + path.join(os.tmpdir(), "googlecloudstoragefileloader-") + ); + const filePath = path.join(tempDir, this.file); + + try { + const storage = new Storage(this.storageOptions); + const bucket = storage.bucket(this.bucket); + + const [buffer] = await bucket.file(this.file).download(); + this._fs.mkdirSync(path.dirname(filePath), { recursive: true }); + + this._fs.writeFileSync(filePath, buffer); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + } catch (e: any) { + throw new Error( + `Failed to download file ${this.file} from google cloud storage bucket ${this.bucket}: ${e.message}` + ); + } + + try { + const unstructuredLoader = new UnstructuredLoader( + filePath, + this.unstructuredLoaderOptions + ); + const docs = await unstructuredLoader.load(); + return docs; + } catch { + throw new Error( + `Failed to load file ${filePath} using unstructured loader.` + ); + } + } +} diff --git a/libs/langchain-community/src/load/import_map.ts b/libs/langchain-community/src/load/import_map.ts index 7fbabf056df7..bc70dbf860c5 100644 --- a/libs/langchain-community/src/load/import_map.ts +++ b/libs/langchain-community/src/load/import_map.ts @@ -80,6 +80,7 @@ export * as indexes__base from "../indexes/base.js"; export * as indexes__memory from "../indexes/memory.js"; export * as document_loaders__web__airtable from "../document_loaders/web/airtable.js"; export * as document_loaders__web__html from "../document_loaders/web/html.js"; +export * as document_loaders__web__google_cloud_storage from "../document_loaders/web/google_cloud_storage.js"; export * as document_loaders__web__jira from "../document_loaders/web/jira.js"; export * as document_loaders__web__searchapi from "../document_loaders/web/searchapi.js"; export * as document_loaders__web__serpapi from "../document_loaders/web/serpapi.js"; diff --git a/yarn.lock b/yarn.lock index 68fd3ab1b7af..58edc1b397a8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6802,6 +6802,29 @@ __metadata: languageName: node linkType: hard +"@google-cloud/storage@npm:^7.15.2": + version: 7.15.2 + resolution: "@google-cloud/storage@npm:7.15.2" + dependencies: + "@google-cloud/paginator": ^5.0.0 + "@google-cloud/projectify": ^4.0.0 + "@google-cloud/promisify": ^4.0.0 + abort-controller: ^3.0.0 + async-retry: ^1.3.3 + duplexify: ^4.1.3 + fast-xml-parser: ^4.4.1 + gaxios: ^6.0.2 + google-auth-library: ^9.6.3 + html-entities: ^2.5.2 + mime: ^3.0.0 + p-limit: ^3.0.1 + retry-request: ^7.0.0 + teeny-request: ^9.0.0 + uuid: ^8.0.0 + checksum: 1c3a2614349ca9e16bc2949e1dad511e321ca38551a51987a972955a88bf21f7ad31dccec9b63233c5d678cccb84654575098f85a592a8d335b09cab8859ea4c + languageName: node + linkType: hard + "@google-cloud/storage@npm:^7.7.0": version: 7.7.0 resolution: "@google-cloud/storage@npm:7.7.0" @@ -8270,7 +8293,7 @@ __metadata: "@gomomento/sdk": ^1.51.1 "@gomomento/sdk-core": ^1.51.1 "@google-ai/generativelanguage": ^2.5.0 - "@google-cloud/storage": ^7.7.0 + "@google-cloud/storage": ^7.15.2 "@gradientai/nodejs-sdk": ^1.2.0 "@huggingface/inference": ^2.6.4 "@huggingface/transformers": ^3.2.3 @@ -20669,6 +20692,18 @@ __metadata: languageName: node linkType: hard +"duplexify@npm:^4.1.3": + version: 4.1.3 + resolution: "duplexify@npm:4.1.3" + dependencies: + end-of-stream: ^1.4.1 + inherits: ^2.0.3 + readable-stream: ^3.1.1 + stream-shift: ^1.0.2 + checksum: 9636a027345de3dd3c801594d01a7c73d9ce260019538beb1ee650bba7544e72f40a4d4902b52e1ab283dc32a06f210d42748773af02ff15e3064a9659deab7f + languageName: node + linkType: hard + "eastasianwidth@npm:^0.2.0": version: 0.2.0 resolution: "eastasianwidth@npm:0.2.0" @@ -24206,7 +24241,7 @@ __metadata: languageName: node linkType: hard -"google-auth-library@npm:^9.15.1": +"google-auth-library@npm:^9.15.1, google-auth-library@npm:^9.6.3": version: 9.15.1 resolution: "google-auth-library@npm:9.15.1" dependencies: @@ -24843,7 +24878,7 @@ __metadata: languageName: node linkType: hard -"html-entities@npm:^2.3.3": +"html-entities@npm:^2.3.3, html-entities@npm:^2.5.2": version: 2.5.2 resolution: "html-entities@npm:2.5.2" checksum: b23f4a07d33d49ade1994069af4e13d31650e3fb62621e92ae10ecdf01d1a98065c78fd20fdc92b4c7881612210b37c275f2c9fba9777650ab0d6f2ceb3b99b6 @@ -35607,6 +35642,13 @@ __metadata: languageName: node linkType: hard +"stream-shift@npm:^1.0.2": + version: 1.0.3 + resolution: "stream-shift@npm:1.0.3" + checksum: a24c0a3f66a8f9024bd1d579a533a53be283b4475d4e6b4b3211b964031447bdf6532dd1f3c2b0ad66752554391b7c62bd7ca4559193381f766534e723d50242 + languageName: node + linkType: hard + "streamsearch@npm:^1.1.0": version: 1.1.0 resolution: "streamsearch@npm:1.1.0" From 4a645ba7cf94e648d3d1b57eef5f988b69dbd741 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Thu, 27 Feb 2025 11:42:42 -0800 Subject: [PATCH 66/70] release(community): 0.3.33 (#7775) --- libs/langchain-community/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-community/package.json b/libs/langchain-community/package.json index ade9221dbff1..4aac3bc6901f 100644 --- a/libs/langchain-community/package.json +++ b/libs/langchain-community/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/community", - "version": "0.3.32", + "version": "0.3.33", "description": "Third-party integrations for LangChain.js", "type": "module", "engines": { From b59347330644a8c811fc9da5b84eacd09515d57d Mon Sep 17 00:00:00 2001 From: Ben Burns <803016+benjamincburns@users.noreply.github.com> Date: Fri, 28 Feb 2025 12:42:33 +1300 Subject: [PATCH 67/70] feat(aws): support reasoning blocks for claude 3.7 (#7768) --- libs/langchain-aws/package.json | 10 +- libs/langchain-aws/src/common.ts | 225 ++++++++++++++++-- .../src/tests/chat_models.int.test.ts | 103 ++++++++ libs/langchain-aws/src/types.ts | 23 ++ yarn.lock | 164 ++++++++++++- 5 files changed, 498 insertions(+), 27 deletions(-) diff --git a/libs/langchain-aws/package.json b/libs/langchain-aws/package.json index 540b5be1ca39..6dc42ad37df1 100644 --- a/libs/langchain-aws/package.json +++ b/libs/langchain-aws/package.json @@ -32,15 +32,15 @@ "author": "LangChain", "license": "MIT", "dependencies": { - "@aws-sdk/client-bedrock-agent-runtime": "^3.749.0", - "@aws-sdk/client-bedrock-runtime": "^3.749.0", - "@aws-sdk/client-kendra": "^3.749.0", - "@aws-sdk/credential-provider-node": "^3.749.0", + "@aws-sdk/client-bedrock-agent-runtime": "^3.755.0", + "@aws-sdk/client-bedrock-runtime": "^3.755.0", + "@aws-sdk/client-kendra": "^3.750.0", + "@aws-sdk/credential-provider-node": "^3.750.0", "zod": "^3.23.8", "zod-to-json-schema": "^3.22.5" }, "peerDependencies": { - "@langchain/core": ">=0.2.21 <0.4.0" + "@langchain/core": ">=0.3.41 <0.4.0" }, "devDependencies": { "@aws-sdk/types": "^3.734.0", diff --git a/libs/langchain-aws/src/common.ts b/libs/langchain-aws/src/common.ts index d187b6c3d061..e73690b7eb53 100644 --- a/libs/langchain-aws/src/common.ts +++ b/libs/langchain-aws/src/common.ts @@ -20,12 +20,22 @@ import type { ContentBlockDeltaEvent, ConverseStreamMetadataEvent, ContentBlockStartEvent, + ReasoningContentBlock, + ReasoningContentBlockDelta, + ReasoningTextBlock, } from "@aws-sdk/client-bedrock-runtime"; import type { DocumentType as __DocumentType } from "@smithy/types"; import { isLangChainTool } from "@langchain/core/utils/function_calling"; import { zodToJsonSchema } from "zod-to-json-schema"; import { ChatGenerationChunk } from "@langchain/core/outputs"; -import { ChatBedrockConverseToolType, BedrockToolChoice } from "./types.js"; +import { + ChatBedrockConverseToolType, + BedrockToolChoice, + MessageContentReasoningBlock, + MessageContentReasoningBlockReasoningText, + MessageContentReasoningBlockReasoningTextPartial, + MessageContentReasoningBlockRedacted, +} from "./types.js"; export function extractImageInfo(base64: string): ContentBlock.ImageMember { // Extract the format from the base64 string @@ -99,22 +109,34 @@ export function convertToConverseMessages(messages: BaseMessage[]): { text: castMsg.content, }); } else if (Array.isArray(castMsg.content)) { - const contentBlocks: ContentBlock[] = castMsg.content.map((block) => { - if (block.type === "text" && block.text !== "") { - return { - text: block.text, - }; - } else { - const blockValues = Object.fromEntries( - Object.entries(block).filter(([key]) => key !== "type") - ); - throw new Error( - `Unsupported content block type: ${ - block.type - } with content of ${JSON.stringify(blockValues, null, 2)}` - ); + const concatenatedBlocks = concatenateLangchainReasoningBlocks( + castMsg.content + ); + const contentBlocks: ContentBlock[] = concatenatedBlocks.map( + (block) => { + if (block.type === "text" && block.text !== "") { + return { + text: block.text, + }; + } else if (block.type === "reasoning_content") { + return { + reasoningContent: + langchainReasoningBlockToBedrockReasoningBlock( + block as MessageContentReasoningBlock + ), + }; + } else { + const blockValues = Object.fromEntries( + Object.entries(block).filter(([key]) => key !== "type") + ); + throw new Error( + `Unsupported content block type: ${ + block.type + } with content of ${JSON.stringify(blockValues, null, 2)}` + ); + } } - }); + ); assistantMsg.content = [ ...(assistantMsg.content ? assistantMsg.content : []), @@ -411,6 +433,12 @@ export function convertConverseMessageToLangChainMessage( }); } else if ("text" in c && typeof c.text === "string") { content.push({ type: "text", text: c.text }); + } else if ("reasoningContent" in c) { + content.push( + bedrockReasoningBlockToLangchainReasoningBlock( + c.reasoningContent as ReasoningContentBlock + ) + ); } else { content.push(c); } @@ -453,6 +481,17 @@ export function handleConverseStreamContentBlockDelta( ], }), }); + } else if (contentBlockDelta.delta.reasoningContent) { + return new ChatGenerationChunk({ + text: "", + message: new AIMessageChunk({ + content: [ + bedrockReasoningDeltaToLangchainPartialReasoningBlock( + contentBlockDelta.delta.reasoningContent + ), + ], + }), + }); } else { throw new Error( `Unsupported content block type(s): ${JSON.stringify( @@ -512,3 +551,157 @@ export function handleConverseStreamMetadata( }), }); } + +export function bedrockReasoningDeltaToLangchainPartialReasoningBlock( + reasoningContent: ReasoningContentBlockDelta +): + | MessageContentReasoningBlockReasoningTextPartial + | MessageContentReasoningBlockRedacted { + const { text, redactedContent, signature } = reasoningContent; + if (text) { + return { + type: "reasoning_content", + reasoningText: { text }, + }; + } + if (signature) { + return { + type: "reasoning_content", + reasoningText: { signature }, + }; + } + if (redactedContent) { + return { + type: "reasoning_content", + redactedContent: Buffer.from(redactedContent).toString("base64"), + }; + } + throw new Error("Invalid reasoning content"); +} + +export function bedrockReasoningBlockToLangchainReasoningBlock( + reasoningContent: ReasoningContentBlock +): MessageContentReasoningBlock { + const { reasoningText, redactedContent } = reasoningContent; + if (reasoningText) { + return { + type: "reasoning_content", + reasoningText: reasoningText as Required, + }; + } + + if (redactedContent) { + return { + type: "reasoning_content", + redactedContent: Buffer.from(redactedContent).toString("base64"), + }; + } + throw new Error("Invalid reasoning content"); +} + +export function langchainReasoningBlockToBedrockReasoningBlock( + content: MessageContentReasoningBlock +): ReasoningContentBlock { + if (content.type !== "reasoning_content") { + throw new Error("Invalid reasoning content"); + } + if ("reasoningText" in content) { + return { + reasoningText: content.reasoningText as ReasoningTextBlock, + }; + } + if ("redactedContent" in content) { + return { + redactedContent: Buffer.from(content.redactedContent, "base64"), + }; + } + throw new Error("Invalid reasoning content"); +} + +export function concatenateLangchainReasoningBlocks( + content: Array +): MessageContentComplex[] { + const concatenatedBlocks: MessageContentComplex[] = []; + let concatenatedBlock: Partial = {}; + + for (const block of content) { + if (block.type !== "reasoning_content") { + // if it's some other block type, end the current block, but keep it so we preserve order + if (Object.keys(concatenatedBlock).length > 0) { + concatenatedBlocks.push( + concatenatedBlock as MessageContentReasoningBlock + ); + concatenatedBlock = {}; + } + concatenatedBlocks.push(block); + continue; + } + + // non-redacted block + if ("reasoningText" in block && typeof block.reasoningText === "object") { + if ("redactedContent" in concatenatedBlock) { + // new type of block, so end the previous one + concatenatedBlocks.push( + concatenatedBlock as MessageContentReasoningBlock + ); + concatenatedBlock = {}; + } + const { text, signature } = block.reasoningText as Partial< + MessageContentReasoningBlockReasoningText["reasoningText"] + >; + const { text: prevText, signature: prevSignature } = ( + "reasoningText" in concatenatedBlock + ? concatenatedBlock.reasoningText + : {} + ) as Partial; + + concatenatedBlock = { + type: "reasoning_content", + reasoningText: { + ...((concatenatedBlock as MessageContentReasoningBlockReasoningText) + .reasoningText ?? {}), + ...(prevText !== undefined || text !== undefined + ? { text: (prevText ?? "") + (text ?? "") } + : {}), + ...(prevSignature !== undefined || signature !== undefined + ? { signature: (prevSignature ?? "") + (signature ?? "") } + : {}), + }, + }; + // if a partial block chunk has a signature, the next one will begin a new reasoning block. + // full blocks always have signatures, so we start one now, anyway + if ("signature" in block.reasoningText) { + concatenatedBlocks.push( + concatenatedBlock as MessageContentReasoningBlock + ); + concatenatedBlock = {}; + } + } + + if ("redactedContent" in block) { + if ("reasoningText" in concatenatedBlock) { + // New type of block, so end the previous one. We should't really hit + // this, as we'll have created a new block upon encountering the + // signature above, but better safe than sorry. + concatenatedBlocks.push( + concatenatedBlock as MessageContentReasoningBlock + ); + concatenatedBlock = {}; + } + const { redactedContent } = block; + const prevRedactedContent = ( + "redactedContent" in concatenatedBlock + ? concatenatedBlock.redactedContent! + : "" + ) as Partial; + concatenatedBlock = { + type: "reasoning_content", + redactedContent: prevRedactedContent + redactedContent, + }; + } + } + if (Object.keys(concatenatedBlock).length > 0) { + concatenatedBlocks.push(concatenatedBlock as MessageContentReasoningBlock); + } + return concatenatedBlocks; +} diff --git a/libs/langchain-aws/src/tests/chat_models.int.test.ts b/libs/langchain-aws/src/tests/chat_models.int.test.ts index cd3cc4d16f38..3db43d9f6843 100644 --- a/libs/langchain-aws/src/tests/chat_models.int.test.ts +++ b/libs/langchain-aws/src/tests/chat_models.int.test.ts @@ -4,13 +4,18 @@ import { test, expect } from "@jest/globals"; import { AIMessage, AIMessageChunk, + BaseMessage, HumanMessage, + MessageContentComplex, SystemMessage, ToolMessage, } from "@langchain/core/messages"; import { tool } from "@langchain/core/tools"; import { z } from "zod"; +import { concat } from "@langchain/core/utils/stream"; import { ChatBedrockConverse } from "../chat_models.js"; +import { concatenateLangchainReasoningBlocks } from "../common.js"; +import { MessageContentReasoningBlockReasoningText } from "../types.js"; // Save the original value of the 'LANGCHAIN_CALLBACKS_BACKGROUND' environment variable const originalBackground = process.env.LANGCHAIN_CALLBACKS_BACKGROUND; @@ -366,3 +371,101 @@ test("Model can handle empty content messages", async () => { expect(typeof result.content).toBe("string"); expect(result.content.length).toBeGreaterThan(1); }); + +test("Test reasoning_content blocks multiturn invoke", async () => { + const model = new ChatBedrockConverse({ + ...baseConstructorArgs, + model: "us.anthropic.claude-3-7-sonnet-20250219-v1:0", + maxTokens: 5000, + additionalModelRequestFields: { + thinking: { type: "enabled", budget_tokens: 2000 }, + }, + }); + + async function doInvoke(messages: BaseMessage[]) { + const response = await model.invoke(messages); + + expect(Array.isArray(response.content)).toBe(true); + const content = response.content as MessageContentComplex[]; + expect(content.some((block) => block.type === "reasoning_content")).toBe( + true + ); + + for (const block of content) { + expect(typeof block).toBe("object"); + if (block.type === "reasoning_content") { + expect(Object.keys(block).sort()).toEqual( + ["type", "reasoningText"].sort() + ); + expect(block.reasoningText).toBeTruthy(); + expect(typeof block.reasoningText).toBe("object"); + expect(block.reasoningText.text).toBeTruthy(); + expect(typeof block.reasoningText.text).toBe("string"); + expect(block.reasoningText.signature).toBeTruthy(); + expect(typeof block.reasoningText.signature).toBe("string"); + } + } + return response; + } + + const invokeMessages = [new HumanMessage("Hello")]; + + invokeMessages.push(await doInvoke(invokeMessages)); + invokeMessages.push(new HumanMessage("What is 42+7?")); + + // test a second time to make sure that we've got input translation working correctly + await model.invoke(invokeMessages); +}); + +test("Test reasoning_content blocks multiturn streaming", async () => { + const model = new ChatBedrockConverse({ + ...baseConstructorArgs, + model: "us.anthropic.claude-3-7-sonnet-20250219-v1:0", + maxTokens: 5000, + additionalModelRequestFields: { + thinking: { type: "enabled", budget_tokens: 2000 }, + }, + }); + + async function doStreaming(messages: BaseMessage[]) { + let full: AIMessageChunk | null = null; + for await (const chunk of await model.stream(messages)) { + full = full ? concat(full, chunk) : chunk; + } + expect(full).toBeInstanceOf(AIMessageChunk); + expect(Array.isArray(full?.content)).toBe(true); + const content = concatenateLangchainReasoningBlocks( + full?.content as MessageContentComplex[] + ); + expect(content.some((block) => block.type === "reasoning_content")).toBe( + true + ); + + for (const block of content) { + expect(typeof block).toBe("object"); + if (block.type === "reasoning_content") { + expect(Object.keys(block).sort()).toEqual( + ["type", "reasoningText"].sort() + ); + + const reasoningBlock = + block as MessageContentReasoningBlockReasoningText; + expect(reasoningBlock.reasoningText).toBeTruthy(); + expect(typeof reasoningBlock.reasoningText).toBe("object"); + expect(reasoningBlock.reasoningText.text).toBeTruthy(); + expect(typeof reasoningBlock.reasoningText.text).toBe("string"); + expect(reasoningBlock.reasoningText.signature).toBeTruthy(); + expect(typeof reasoningBlock.reasoningText.signature).toBe("string"); + } + } + return full as AIMessageChunk; + } + + const streamingMessages = [new HumanMessage("Hello")]; + + streamingMessages.push(await doStreaming(streamingMessages)); + streamingMessages.push(new HumanMessage("What is 42+7?")); + + // test a second time to make sure that we've got input translation working correctly + await doStreaming(streamingMessages); +}); diff --git a/libs/langchain-aws/src/types.ts b/libs/langchain-aws/src/types.ts index 876a6979c2bf..1758f2dea935 100644 --- a/libs/langchain-aws/src/types.ts +++ b/libs/langchain-aws/src/types.ts @@ -19,3 +19,26 @@ export type BedrockToolChoice = | ToolChoice.AutoMember | ToolChoice.ToolMember; export type ChatBedrockConverseToolType = BindToolsInput | BedrockTool; + +export type MessageContentReasoningBlockReasoningText = { + type: "reasoning_content"; + reasoningText: { + text: string; + signature: string; + }; +}; + +export type MessageContentReasoningBlockRedacted = { + type: "reasoning_content"; + redactedContent: string; +}; + +export type MessageContentReasoningBlockReasoningTextPartial = { + type: "reasoning_content"; + reasoningText: { text: string } | { signature: string }; +}; + +export type MessageContentReasoningBlock = + | MessageContentReasoningBlockReasoningText + | MessageContentReasoningBlockRedacted + | MessageContentReasoningBlockReasoningTextPartial; diff --git a/yarn.lock b/yarn.lock index 58edc1b397a8..e9b87634d65e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -520,6 +520,56 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-bedrock-agent-runtime@npm:^3.755.0": + version: 3.755.0 + resolution: "@aws-sdk/client-bedrock-agent-runtime@npm:3.755.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/credential-provider-node": 3.750.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.750.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.750.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.4 + "@smithy/eventstream-serde-browser": ^4.0.1 + "@smithy/eventstream-serde-config-resolver": ^4.0.1 + "@smithy/eventstream-serde-node": ^4.0.1 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.5 + "@smithy/middleware-retry": ^4.0.6 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.6 + "@smithy/util-defaults-mode-node": ^4.0.6 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + tslib: ^2.6.2 + checksum: 702f690cbd27d24d7c81e9c7b2a3d558ff8129eec7f870f2ab4d1eac564be3212ec02a3cad808422bdd0e92d2f695497eb290de75e621bbf3265bb5756996c14 + languageName: node + linkType: hard + "@aws-sdk/client-bedrock-runtime@npm:^3.749.0": version: 3.749.0 resolution: "@aws-sdk/client-bedrock-runtime@npm:3.749.0" @@ -573,6 +623,59 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-bedrock-runtime@npm:^3.755.0": + version: 3.755.0 + resolution: "@aws-sdk/client-bedrock-runtime@npm:3.755.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/credential-provider-node": 3.750.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.750.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.750.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.4 + "@smithy/eventstream-serde-browser": ^4.0.1 + "@smithy/eventstream-serde-config-resolver": ^4.0.1 + "@smithy/eventstream-serde-node": ^4.0.1 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.5 + "@smithy/middleware-retry": ^4.0.6 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.6 + "@smithy/util-defaults-mode-node": ^4.0.6 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-stream": ^4.1.1 + "@smithy/util-utf8": ^4.0.0 + "@types/uuid": ^9.0.1 + tslib: ^2.6.2 + uuid: ^9.0.1 + checksum: 48122560e216a12f44f169632b3010ba49c3020aee7960448ea1cf1ca3ca892c7a96716ba03dc7f7dc252599d1a5757eb210270a5ea2a05257e38dfd5e55a1c3 + languageName: node + linkType: hard + "@aws-sdk/client-cognito-identity@npm:3.592.0": version: 3.592.0 resolution: "@aws-sdk/client-cognito-identity@npm:3.592.0" @@ -769,6 +872,55 @@ __metadata: languageName: node linkType: hard +"@aws-sdk/client-kendra@npm:^3.750.0": + version: 3.750.0 + resolution: "@aws-sdk/client-kendra@npm:3.750.0" + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.750.0 + "@aws-sdk/credential-provider-node": 3.750.0 + "@aws-sdk/middleware-host-header": 3.734.0 + "@aws-sdk/middleware-logger": 3.734.0 + "@aws-sdk/middleware-recursion-detection": 3.734.0 + "@aws-sdk/middleware-user-agent": 3.750.0 + "@aws-sdk/region-config-resolver": 3.734.0 + "@aws-sdk/types": 3.734.0 + "@aws-sdk/util-endpoints": 3.743.0 + "@aws-sdk/util-user-agent-browser": 3.734.0 + "@aws-sdk/util-user-agent-node": 3.750.0 + "@smithy/config-resolver": ^4.0.1 + "@smithy/core": ^3.1.4 + "@smithy/fetch-http-handler": ^5.0.1 + "@smithy/hash-node": ^4.0.1 + "@smithy/invalid-dependency": ^4.0.1 + "@smithy/middleware-content-length": ^4.0.1 + "@smithy/middleware-endpoint": ^4.0.5 + "@smithy/middleware-retry": ^4.0.6 + "@smithy/middleware-serde": ^4.0.2 + "@smithy/middleware-stack": ^4.0.1 + "@smithy/node-config-provider": ^4.0.1 + "@smithy/node-http-handler": ^4.0.2 + "@smithy/protocol-http": ^5.0.1 + "@smithy/smithy-client": ^4.1.5 + "@smithy/types": ^4.1.0 + "@smithy/url-parser": ^4.0.1 + "@smithy/util-base64": ^4.0.0 + "@smithy/util-body-length-browser": ^4.0.0 + "@smithy/util-body-length-node": ^4.0.0 + "@smithy/util-defaults-mode-browser": ^4.0.6 + "@smithy/util-defaults-mode-node": ^4.0.6 + "@smithy/util-endpoints": ^3.0.1 + "@smithy/util-middleware": ^4.0.1 + "@smithy/util-retry": ^4.0.1 + "@smithy/util-utf8": ^4.0.0 + "@types/uuid": ^9.0.1 + tslib: ^2.6.2 + uuid: ^9.0.1 + checksum: a30d472bc0ec4a7e7f4bc55f9b11199e232417168e2dbc28280f4c50f33b23484c050f18bdbdc46dc168aaa4e4e082ebaa41ea8f3ec1f3bebe1fda8e306a59dd + languageName: node + linkType: hard + "@aws-sdk/client-lambda@npm:^3.749.0": version: 3.749.0 resolution: "@aws-sdk/client-lambda@npm:3.749.0" @@ -1543,7 +1695,7 @@ __metadata: languageName: node linkType: hard -"@aws-sdk/credential-provider-node@npm:3.750.0": +"@aws-sdk/credential-provider-node@npm:3.750.0, @aws-sdk/credential-provider-node@npm:^3.750.0": version: 3.750.0 resolution: "@aws-sdk/credential-provider-node@npm:3.750.0" dependencies: @@ -7968,10 +8120,10 @@ __metadata: version: 0.0.0-use.local resolution: "@langchain/aws@workspace:libs/langchain-aws" dependencies: - "@aws-sdk/client-bedrock-agent-runtime": ^3.749.0 - "@aws-sdk/client-bedrock-runtime": ^3.749.0 - "@aws-sdk/client-kendra": ^3.749.0 - "@aws-sdk/credential-provider-node": ^3.749.0 + "@aws-sdk/client-bedrock-agent-runtime": ^3.755.0 + "@aws-sdk/client-bedrock-runtime": ^3.755.0 + "@aws-sdk/client-kendra": ^3.750.0 + "@aws-sdk/credential-provider-node": ^3.750.0 "@aws-sdk/types": ^3.734.0 "@jest/globals": ^29.5.0 "@langchain/core": "workspace:*" @@ -8001,7 +8153,7 @@ __metadata: zod: ^3.22.4 zod-to-json-schema: ^3.22.5 peerDependencies: - "@langchain/core": ">=0.2.21 <0.4.0" + "@langchain/core": ">=0.3.41 <0.4.0" languageName: unknown linkType: soft From 2de36ac920065d23b487b34d269f6feeb91cf555 Mon Sep 17 00:00:00 2001 From: Ben Burns <803016+benjamincburns@users.noreply.github.com> Date: Fri, 28 Feb 2025 13:52:48 +1300 Subject: [PATCH 68/70] release(aws): 0.1.5 --- libs/langchain-aws/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain-aws/package.json b/libs/langchain-aws/package.json index 6dc42ad37df1..d0172e00930e 100644 --- a/libs/langchain-aws/package.json +++ b/libs/langchain-aws/package.json @@ -1,6 +1,6 @@ { "name": "@langchain/aws", - "version": "0.1.4", + "version": "0.1.5", "description": "LangChain AWS integration", "type": "module", "engines": { From fa73d2fc473d5b045cf43a81323eb9cfca6c09b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20=C5=BBmijewski?= Date: Fri, 28 Feb 2025 12:55:47 +0100 Subject: [PATCH 69/70] feat: Add support for lightweight engine --- .../docs/integrations/chat/ibm.ipynb | 2 +- .../docs/integrations/llms/ibm.ipynb | 2 +- .../src/chat_models/ibm.ts | 14 +++++----- .../src/chat_models/tests/ibm.int.test.ts | 4 --- .../src/chat_models/tests/ibm.test.ts | 16 +++++------ libs/langchain-community/src/llms/ibm.ts | 7 +---- .../src/llms/tests/ibm.test.ts | 28 +++++-------------- 7 files changed, 24 insertions(+), 49 deletions(-) diff --git a/docs/core_docs/docs/integrations/chat/ibm.ipynb b/docs/core_docs/docs/integrations/chat/ibm.ipynb index bff577f57d1d..83b18963aabb 100644 --- a/docs/core_docs/docs/integrations/chat/ibm.ipynb +++ b/docs/core_docs/docs/integrations/chat/ibm.ipynb @@ -184,7 +184,7 @@ "source": [ "Note:\n", "\n", - "- You must provide `spaceId` or `projectId` in order to proceed.\n", + "- You must provide `spaceId`, `projectId` or `idOrName`(deployment id) unless you use lighweight engine which works without specifying either (refer to [watsonx.ai docs](https://www.ibm.com/docs/en/cloud-paks/cp-data/5.0.x?topic=install-choosing-installation-mode))\n", "- Depending on the region of your provisioned service instance, use correct serviceUrl." ] }, diff --git a/docs/core_docs/docs/integrations/llms/ibm.ipynb b/docs/core_docs/docs/integrations/llms/ibm.ipynb index 7a063f466097..1f960dae1049 100644 --- a/docs/core_docs/docs/integrations/llms/ibm.ipynb +++ b/docs/core_docs/docs/integrations/llms/ibm.ipynb @@ -185,7 +185,7 @@ "source": [ "Note:\n", "\n", - "- You must provide `spaceId`, `projectId` or `idOrName`(deployment id) in order to proceed.\n", + "- You must provide `spaceId`, `projectId` or `idOrName`(deployment id) unless you use lighweight engine which works without specifying either (refer to [watsonx.ai docs](https://www.ibm.com/docs/en/cloud-paks/cp-data/5.0.x?topic=install-choosing-installation-mode))\n", "- Depending on the region of your provisioned service instance, use correct serviceUrl.\n", "- You need to specify the model you want to use for inferencing through model_id." ] diff --git a/libs/langchain-community/src/chat_models/ibm.ts b/libs/langchain-community/src/chat_models/ibm.ts index d8d1196343bf..d71d51fd21f4 100644 --- a/libs/langchain-community/src/chat_models/ibm.ts +++ b/libs/langchain-community/src/chat_models/ibm.ts @@ -465,11 +465,6 @@ export class ChatWatsonx< ) throw new Error("Maximum 1 id type can be specified per instance"); - if (!("projectId" in fields || "spaceId" in fields || "idOrName" in fields)) - throw new Error( - "No id specified! At least id of 1 type has to be specified" - ); - if ("model" in fields) { this.projectId = fields?.projectId; this.spaceId = fields?.spaceId; @@ -564,13 +559,18 @@ export class ChatWatsonx< scopeId(): | { idOrName: string } | { projectId: string; modelId: string } - | { spaceId: string; modelId: string } { + | { spaceId: string; modelId: string } + | { modelId: string } { if (this.projectId && this.model) return { projectId: this.projectId, modelId: this.model }; else if (this.spaceId && this.model) return { spaceId: this.spaceId, modelId: this.model }; else if (this.idOrName) return { idOrName: this.idOrName }; - else throw new Error("No scope id provided"); + else if (this.model) + return { + modelId: this.model, + }; + else throw new Error("No id or model provided!"); } async completionWithRetry( diff --git a/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts b/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts index 8b8f476f1226..59a646aaa88a 100644 --- a/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts +++ b/libs/langchain-community/src/chat_models/tests/ibm.int.test.ts @@ -17,10 +17,6 @@ import { BaseChatModelCallOptions, } from "@langchain/core/language_models/chat_models"; import { ChatWatsonx } from "../ibm.js"; -import { - BaseChatModel, - BaseChatModelCallOptions, -} from "@langchain/core/language_models/chat_models"; describe("Tests for chat", () => { describe("Test ChatWatsonx invoke and generate", () => { diff --git a/libs/langchain-community/src/chat_models/tests/ibm.test.ts b/libs/langchain-community/src/chat_models/tests/ibm.test.ts index b35b59d8ccbd..4adccd85ad8f 100644 --- a/libs/langchain-community/src/chat_models/tests/ibm.test.ts +++ b/libs/langchain-community/src/chat_models/tests/ibm.test.ts @@ -141,24 +141,22 @@ describe("LLM unit tests", () => { testProperties(instance, testProps); }); - }); - describe("Negative tests", () => { test("Missing id", async () => { const testProps: ChatWatsonxInput = { model: "mistralai/mistral-large", version: "2024-05-31", serviceUrl: process.env.WATSONX_AI_SERVICE_URL as string, }; - expect( - () => - new ChatWatsonx({ - ...testProps, - ...fakeAuthProp, - }) - ).toThrowError(); + const intance = new ChatWatsonx({ + ...testProps, + ...fakeAuthProp, + }); + expect(intance).toBeDefined(); }); + }); + describe("Negative tests", () => { test("Missing other props", async () => { // @ts-expect-error Intentionally passing not enough parameters const testPropsProjectId: ChatWatsonxInput = { diff --git a/libs/langchain-community/src/llms/ibm.ts b/libs/langchain-community/src/llms/ibm.ts index 8bf94854800d..4e5362d57ebf 100644 --- a/libs/langchain-community/src/llms/ibm.ts +++ b/libs/langchain-community/src/llms/ibm.ts @@ -184,11 +184,6 @@ export class WatsonxLLM< ) throw new Error("Maximum 1 id type can be specified per instance"); - if (!("projectId" in fields || "spaceId" in fields || "idOrName" in fields)) - throw new Error( - "No id specified! At least id of 1 type has to be specified" - ); - this.serviceUrl = fields?.serviceUrl; const { watsonxAIApikey, @@ -281,7 +276,7 @@ export class WatsonxLLM< return { spaceId: this.spaceId, modelId: this.model }; else if (this.idOrName) return { idOrName: this.idOrName, modelId: this.model }; - else return { spaceId: this.spaceId, modelId: this.model }; + else return { modelId: this.model }; } async listModels() { diff --git a/libs/langchain-community/src/llms/tests/ibm.test.ts b/libs/langchain-community/src/llms/tests/ibm.test.ts index 0669af2f811b..3f88c9a6d97f 100644 --- a/libs/langchain-community/src/llms/tests/ibm.test.ts +++ b/libs/langchain-community/src/llms/tests/ibm.test.ts @@ -125,24 +125,21 @@ describe("LLM unit tests", () => { testProperties(instance, testProps); }); - }); - - describe("Negative tests", () => { test("Missing id", async () => { const testProps: WatsonxInputLLM = { model: "ibm/granite-13b-chat-v2", version: "2024-05-31", serviceUrl: process.env.WATSONX_AI_SERVICE_URL as string, }; - expect( - () => - new WatsonxLLM({ - ...testProps, - ...fakeAuthProp, - }) - ).toThrowError(); + const instance = new WatsonxLLM({ + ...testProps, + ...fakeAuthProp, + }); + expect(instance).toBeDefined(); }); + }); + describe("Negative tests", () => { test("Missing other props", async () => { // @ts-expect-error Intentionally passing not enough parameters const testPropsProjectId: WatsonxInputLLM = { @@ -156,17 +153,6 @@ describe("LLM unit tests", () => { ...fakeAuthProp, }) ).toThrowError(); - // @ts-expect-error Intentionally passing not enough parameters - const testPropsServiceUrl: WatsonxInputLLM = { - serviceUrl: process.env.WATSONX_AI_SERVICE_URL as string, - }; - expect( - () => - new WatsonxLLM({ - ...testPropsServiceUrl, - ...fakeAuthProp, - }) - ).toThrowError(); const testPropsVersion = { version: "2024-05-31", }; From e95375722eb951dae2922d332ac9c74fb7172c21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filip=20=C5=BBmijewski?= Date: Fri, 28 Feb 2025 13:17:57 +0100 Subject: [PATCH 70/70] Change id in notebooks --- docs/core_docs/docs/integrations/chat/ibm.ipynb | 3 ++- docs/core_docs/docs/integrations/llms/ibm.ipynb | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/core_docs/docs/integrations/chat/ibm.ipynb b/docs/core_docs/docs/integrations/chat/ibm.ipynb index 83b18963aabb..cac889632308 100644 --- a/docs/core_docs/docs/integrations/chat/ibm.ipynb +++ b/docs/core_docs/docs/integrations/chat/ibm.ipynb @@ -171,7 +171,8 @@ " version: \"YYYY-MM-DD\",\n", " serviceUrl: process.env.API_URL,\n", " projectId: \"\",\n", - " spaceId: \"\",\n", + " // spaceId: \"\",\n", + " // idOrName: \"\",\n", " model: \"\",\n", " ...props\n", "});" diff --git a/docs/core_docs/docs/integrations/llms/ibm.ipynb b/docs/core_docs/docs/integrations/llms/ibm.ipynb index 1f960dae1049..5fa4fec71a59 100644 --- a/docs/core_docs/docs/integrations/llms/ibm.ipynb +++ b/docs/core_docs/docs/integrations/llms/ibm.ipynb @@ -171,8 +171,8 @@ " version: \"YYYY-MM-DD\",\n", " serviceUrl: process.env.API_URL,\n", " projectId: \"\",\n", - " spaceId: \"\",\n", - " idOrName: \"\",\n", + " // spaceId: \"\",\n", + " // idOrName: \"\",\n", " model: \"\",\n", " ...props,\n", "});"