From b54d99c741b44e81d3b7a1db7185c249a9845127 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 14:06:45 +0000 Subject: [PATCH] SDK regeneration --- package.json | 2 +- reference.md | 6 +- src/Client.ts | 59 +- src/api/client/requests/ChatRequest.ts | 20 +- src/api/client/requests/ChatStreamRequest.ts | 8 +- src/api/client/requests/EmbedRequest.ts | 2 +- src/api/resources/connectors/client/Client.ts | 24 +- src/api/resources/datasets/client/Client.ts | 20 +- .../client/requests/DatasetsCreateRequest.ts | 2 +- src/api/resources/embedJobs/client/Client.ts | 16 +- src/api/resources/finetuning/client/Client.ts | 28 +- src/api/resources/models/client/Client.ts | 10 +- src/api/resources/v2/client/Client.ts | 37 +- .../v2/client/requests/V2ChatRequest.ts | 23 +- .../v2/client/requests/V2ChatStreamRequest.ts | 44 +- .../v2/client/requests/V2EmbedRequest.ts | 2 +- src/api/types/ApiMeta.ts | 2 + src/api/types/ChatRequestCitationQuality.ts | 15 +- .../types/ChatStreamRequestCitationQuality.ts | 15 +- src/api/types/CitationOptions.ts | 6 +- src/api/types/CitationOptionsMode.ts | 10 +- src/api/types/DatasetType.ts | 10 +- src/api/types/GetModelResponse.ts | 2 - src/api/types/Usage.ts | 6 +- src/serialization/types/ApiMeta.ts | 2 + .../types/ChatRequestCitationQuality.ts | 4 +- .../types/ChatStreamRequestCitationQuality.ts | 4 +- .../types/CitationOptionsMode.ts | 4 +- src/serialization/types/DatasetType.ts | 10 +- src/serialization/types/GetModelResponse.ts | 2 - src/serialization/types/Usage.ts | 8 +- src/version.ts | 2 +- yarn.lock | 1451 ++++++++--------- 33 files changed, 950 insertions(+), 906 deletions(-) diff --git a/package.json b/package.json index 1f0238b5..c1c31fdc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cohere-ai", - "version": "7.19.0", + "version": "7.20.0", "private": false, "repository": "https://github.com/cohere-ai/cohere-typescript", "main": "./index.js", diff --git a/reference.md b/reference.md index 072a668f..a45fce94 100644 --- a/reference.md +++ b/reference.md @@ -90,11 +90,11 @@ Follow the [Migration Guide](https://docs.cohere.com/v2/docs/migrating-v1-to-v2) ```typescript const response = await client.v2.chatStream({ - model: "command-r", + model: "command-a-03-2025", messages: [ { role: "user", - content: "Hello!", + content: "Tell me about LLMs", }, ], }); @@ -1408,7 +1408,7 @@ await client.models.get("command-a-03-2025");
-Returns a list of models available for use. The list contains models from Cohere as well as your fine-tuned models. +Returns a list of models available for use.
diff --git a/src/Client.ts b/src/Client.ts index fb942308..14d803b5 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -108,8 +108,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, Accepts: accepts != null ? accepts : undefined, @@ -227,21 +227,13 @@ export class CohereClient { * * @example * await client.chat({ - * chatHistory: [{ - * role: "USER", - * message: "Who discovered gravity?" - * }, { - * role: "CHATBOT", - * message: "The man who is widely credited with discovering gravity is Sir Isaac Newton" - * }], - * message: "What year was he born?", - * connectors: [{ - * id: "web-search" - * }] + * model: "command-a-03-2025", + * message: "Tell me about LLMs" * }) * * @example * await client.chat({ + * model: "command-a-03-2025", * message: "Who is more popular: Nsync or Backstreet Boys?", * documents: [{ * "title": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters", @@ -260,6 +252,7 @@ export class CohereClient { * * @example * await client.chat({ + * model: "command-a-03-2025", * message: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?", * tools: [{ * name: "query_daily_sales_report", @@ -312,8 +305,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, Accepts: accepts != null ? accepts : undefined, @@ -431,8 +424,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -581,8 +574,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -731,8 +724,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -877,8 +870,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1043,8 +1036,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1179,8 +1172,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1313,8 +1306,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1447,8 +1440,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -1575,8 +1568,8 @@ export class CohereClient { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/client/requests/ChatRequest.ts b/src/api/client/requests/ChatRequest.ts index c9fb69a0..6f0df548 100644 --- a/src/api/client/requests/ChatRequest.ts +++ b/src/api/client/requests/ChatRequest.ts @@ -7,21 +7,13 @@ import * as Cohere from "../../index"; /** * @example * { - * chatHistory: [{ - * role: "USER", - * message: "Who discovered gravity?" - * }, { - * role: "CHATBOT", - * message: "The man who is widely credited with discovering gravity is Sir Isaac Newton" - * }], - * message: "What year was he born?", - * connectors: [{ - * id: "web-search" - * }] + * model: "command-a-03-2025", + * message: "Tell me about LLMs" * } * * @example * { + * model: "command-a-03-2025", * message: "Who is more popular: Nsync or Backstreet Boys?", * documents: [{ * "title": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters", @@ -40,6 +32,7 @@ import * as Cohere from "../../index"; * * @example * { + * model: "command-a-03-2025", * message: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?", * tools: [{ * name: "query_daily_sales_report", @@ -164,9 +157,8 @@ export interface ChatRequest { */ documents?: Cohere.ChatDocument[]; /** - * Defaults to `"accurate"`. - * - * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results. + * Defaults to `"enabled"`. + * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`. * * Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments */ diff --git a/src/api/client/requests/ChatStreamRequest.ts b/src/api/client/requests/ChatStreamRequest.ts index 16905709..47b5232b 100644 --- a/src/api/client/requests/ChatStreamRequest.ts +++ b/src/api/client/requests/ChatStreamRequest.ts @@ -7,7 +7,8 @@ import * as Cohere from "../../index"; /** * @example * { - * message: "hello world!" + * model: "command-a-03-2025", + * message: "hello!" * } */ export interface ChatStreamRequest { @@ -110,9 +111,8 @@ export interface ChatStreamRequest { */ documents?: Cohere.ChatDocument[]; /** - * Defaults to `"accurate"`. - * - * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results. + * Defaults to `"enabled"`. + * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`. * * Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments */ diff --git a/src/api/client/requests/EmbedRequest.ts b/src/api/client/requests/EmbedRequest.ts index 736ac8ce..6e3c4e0a 100644 --- a/src/api/client/requests/EmbedRequest.ts +++ b/src/api/client/requests/EmbedRequest.ts @@ -26,7 +26,7 @@ export interface EmbedRequest { /** * An array of image data URIs for the model to embed. Maximum number of images per call is `1`. * - * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg` or `image/png` format and has a maximum size of 5MB. + * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg`, `image/png`, `image/webp`, or `image/gif` format and has a maximum size of 5MB. * * Images are only supported with Embed v3.0 and newer models. */ diff --git a/src/api/resources/connectors/client/Client.ts b/src/api/resources/connectors/client/Client.ts index 2aaf2a99..43df4a47 100644 --- a/src/api/resources/connectors/client/Client.ts +++ b/src/api/resources/connectors/client/Client.ts @@ -96,8 +96,8 @@ export class Connectors { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -226,8 +226,8 @@ export class Connectors { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -357,8 +357,8 @@ export class Connectors { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -483,8 +483,8 @@ export class Connectors { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -612,8 +612,8 @@ export class Connectors { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -752,8 +752,8 @@ export class Connectors { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/datasets/client/Client.ts b/src/api/resources/datasets/client/Client.ts index e1a5c8bf..c10426ce 100644 --- a/src/api/resources/datasets/client/Client.ts +++ b/src/api/resources/datasets/client/Client.ts @@ -118,8 +118,8 @@ export class Datasets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -300,8 +300,8 @@ export class Datasets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ..._maybeEncodedRequest.headers, @@ -426,8 +426,8 @@ export class Datasets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -552,8 +552,8 @@ export class Datasets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -678,8 +678,8 @@ export class Datasets { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts b/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts index ac72803c..0111c7eb 100644 --- a/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts +++ b/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts @@ -17,7 +17,7 @@ export interface DatasetsCreateRequest { */ name: string; /** - * The dataset type, which is used to validate the data. Valid types are `embed-input`, `reranker-finetune-input`, `single-label-classification-finetune-input`, `chat-finetune-input`, and `multi-label-classification-finetune-input`. + * The dataset type, which is used to validate the data. The only valid type is `embed-input` used in conjunction with the Embed Jobs API. */ type: Cohere.DatasetType; /** diff --git a/src/api/resources/embedJobs/client/Client.ts b/src/api/resources/embedJobs/client/Client.ts index df9df955..8d1737be 100644 --- a/src/api/resources/embedJobs/client/Client.ts +++ b/src/api/resources/embedJobs/client/Client.ts @@ -81,8 +81,8 @@ export class EmbedJobs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -211,8 +211,8 @@ export class EmbedJobs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -339,8 +339,8 @@ export class EmbedJobs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -459,8 +459,8 @@ export class EmbedJobs { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/finetuning/client/Client.ts b/src/api/resources/finetuning/client/Client.ts index ae7f551a..55453e40 100644 --- a/src/api/resources/finetuning/client/Client.ts +++ b/src/api/resources/finetuning/client/Client.ts @@ -97,8 +97,8 @@ export class Finetuning { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -216,8 +216,8 @@ export class Finetuning { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -331,8 +331,8 @@ export class Finetuning { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -442,8 +442,8 @@ export class Finetuning { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -563,8 +563,8 @@ export class Finetuning { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -697,8 +697,8 @@ export class Finetuning { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -825,8 +825,8 @@ export class Finetuning { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/models/client/Client.ts b/src/api/resources/models/client/Client.ts index 0ceac22c..04f232c0 100644 --- a/src/api/resources/models/client/Client.ts +++ b/src/api/resources/models/client/Client.ts @@ -86,8 +86,8 @@ export class Models { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -164,7 +164,7 @@ export class Models { } /** - * Returns a list of models available for use. The list contains models from Cohere as well as your fine-tuned models. + * Returns a list of models available for use. * * @param {Cohere.ModelsListRequest} request * @param {Models.RequestOptions} requestOptions - Request-specific configuration. @@ -234,8 +234,8 @@ export class Models { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/v2/client/Client.ts b/src/api/resources/v2/client/Client.ts index 26bc58b4..6cca4a71 100644 --- a/src/api/resources/v2/client/Client.ts +++ b/src/api/resources/v2/client/Client.ts @@ -70,8 +70,8 @@ export class V2 { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -198,7 +198,7 @@ export class V2 { * * @example * await client.v2.chat({ - * model: "command-r", + * model: "command-a-03-2025", * documents: [{ * data: { * "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters", @@ -231,7 +231,7 @@ export class V2 { * model: "command-r", * messages: [{ * role: "user", - * content: "Tell me about LLMs" + * content: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?" * }], * tools: [{ * type: "function", @@ -275,7 +275,22 @@ export class V2 { * }) * * @example - * await client.v2.chat({}) + * await client.v2.chat({ + * model: "command-a-vision-07-2025", + * messages: [{ + * role: "user", + * content: [{ + * type: "text", + * text: "Describe this image" + * }, { + * type: "image_url", + * imageUrl: { + * url: "https://cohere.com/favicon-32x32.png", + * detail: "auto" + * } + * }] + * }] + * }) */ public chat( request: Cohere.V2ChatRequest, @@ -304,8 +319,8 @@ export class V2 { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -455,8 +470,8 @@ export class V2 { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, @@ -591,8 +606,8 @@ export class V2 { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "cohere-ai", - "X-Fern-SDK-Version": "7.19.0", - "User-Agent": "cohere-ai/7.19.0", + "X-Fern-SDK-Version": "7.20.0", + "User-Agent": "cohere-ai/7.20.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...requestOptions?.headers, diff --git a/src/api/resources/v2/client/requests/V2ChatRequest.ts b/src/api/resources/v2/client/requests/V2ChatRequest.ts index dbc0948a..0f26d31a 100644 --- a/src/api/resources/v2/client/requests/V2ChatRequest.ts +++ b/src/api/resources/v2/client/requests/V2ChatRequest.ts @@ -16,7 +16,7 @@ import * as Cohere from "../../../../index"; * * @example * { - * model: "command-r", + * model: "command-a-03-2025", * documents: [{ * data: { * "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters", @@ -49,7 +49,7 @@ import * as Cohere from "../../../../index"; * model: "command-r", * messages: [{ * role: "user", - * content: "Tell me about LLMs" + * content: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?" * }], * tools: [{ * type: "function", @@ -93,10 +93,25 @@ import * as Cohere from "../../../../index"; * } * * @example - * {} + * { + * model: "command-a-vision-07-2025", + * messages: [{ + * role: "user", + * content: [{ + * type: "text", + * text: "Describe this image" + * }, { + * type: "image_url", + * imageUrl: { + * url: "https://cohere.com/favicon-32x32.png", + * detail: "auto" + * } + * }] + * }] + * } */ export interface V2ChatRequest { - /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models) or the ID of a [fine-tuned](https://docs.cohere.com/v2/docs/chat-fine-tuning) model. */ + /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models). */ model: string; messages: Cohere.ChatMessages; /** diff --git a/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts b/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts index 08b6fb93..33681357 100644 --- a/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts +++ b/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts @@ -7,10 +7,10 @@ import * as Cohere from "../../../../index"; /** * @example * { - * model: "command-r", + * model: "command-a-03-2025", * messages: [{ * role: "user", - * content: "Hello!" + * content: "Tell me about LLMs" * }] * } * @@ -18,15 +18,29 @@ import * as Cohere from "../../../../index"; * { * model: "command-a-03-2025", * documents: [{ - * id: "1", * data: { - * "content": "Cohere is the best!", - * "snippet": "Cohere is the best!" + * "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters", + * "snippet": "\u2193 Skip to Main Content\n\nMusic industry \u2013 One step closer to being accurate\n\nCSPC: Backstreet Boys Popularity Analysis\n\nHern\u00E1n Lopez Posted on February 9, 2017 Posted in CSPC 72 Comments Tagged with Backstreet Boys, Boy band\n\nAt one point, Backstreet Boys defined success: massive albums sales across the globe, great singles sales, plenty of chart topping releases, hugely hyped tours and tremendous media coverage.\n\nIt is true that they benefited from extraordinarily good market conditions in all markets. After all, the all-time record year for the music business, as far as revenues in billion dollars are concerned, was actually 1999. That is, back when this five men group was at its peak." + * } + * }, { + * data: { + * "content": "CSPC: NSYNC Popularity Analysis - ChartMasters", + * "snippet": "\u2193 Skip to Main Content\n\nMusic industry \u2013 One step closer to being accurate\n\nCSPC: NSYNC Popularity Analysis\n\nMJD Posted on February 9, 2018 Posted in CSPC 27 Comments Tagged with Boy band, N'Sync\n\nAt the turn of the millennium three teen acts were huge in the US, the Backstreet Boys, Britney Spears and NSYNC. The latter is the only one we haven\u2019t study so far. It took 15 years and Adele to break their record of 2,4 million units sold of No Strings Attached in its first week alone.\n\nIt wasn\u2019t a fluke, as the second fastest selling album of the Soundscan era prior 2015, was also theirs since Celebrity debuted with 1,88 million units sold." + * } + * }, { + * data: { + * "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters", + * "snippet": "1997, 1998, 2000 and 2001 also rank amongst some of the very best years.\nYet the way many music consumers \u2013 especially teenagers and young women\u2019s \u2013 embraced their output deserves its own chapter. If Jonas Brothers and more recently One Direction reached a great level of popularity during the past decade, the type of success achieved by Backstreet Boys is in a completely different level as they really dominated the business for a few years all over the world, including in some countries that were traditionally hard to penetrate for Western artists.\n\nWe will try to analyze the extent of that hegemony with this new article with final results which will more than surprise many readers." + * } + * }, { + * data: { + * "content": "CSPC: NSYNC Popularity Analysis - ChartMasters", + * "snippet": "Was the teen group led by Justin Timberlake really that big? Was it only in the US where they found success? Or were they a global phenomenon?\nAs usual, I\u2019ll be using the Commensurate Sales to Popularity Concept in order to relevantly gauge their results. This concept will not only bring you sales information for all NSYNC\u2018s albums, physical and download singles, as well as audio and video streaming, but it will also determine their true popularity. If you are not yet familiar with the CSPC method, the next page explains it with a short video. I fully recommend watching the video before getting into the sales figures." * } * }], * messages: [{ * role: "user", - * content: "Who's the best?" + * content: "Who is more popular: Nsync or Backstreet Boys?" * }] * } * @@ -72,18 +86,24 @@ import * as Cohere from "../../../../index"; * * @example * { - * model: "command-r", + * model: "command-a-vision-07-2025", * messages: [{ * role: "user", - * content: "Hello!" + * content: [{ + * type: "text", + * text: "Describe this image" + * }, { + * type: "image_url", + * imageUrl: { + * url: "https://cohere.com/favicon-32x32.png", + * detail: "auto" + * } + * }] * }] * } - * - * @example - * {} */ export interface V2ChatStreamRequest { - /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models) or the ID of a [fine-tuned](https://docs.cohere.com/v2/docs/chat-fine-tuning) model. */ + /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models). */ model: string; messages: Cohere.ChatMessages; /** diff --git a/src/api/resources/v2/client/requests/V2EmbedRequest.ts b/src/api/resources/v2/client/requests/V2EmbedRequest.ts index b3be8206..4f91d68f 100644 --- a/src/api/resources/v2/client/requests/V2EmbedRequest.ts +++ b/src/api/resources/v2/client/requests/V2EmbedRequest.ts @@ -27,7 +27,7 @@ export interface V2EmbedRequest { /** * An array of image data URIs for the model to embed. Maximum number of images per call is `1`. * - * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg` or `image/png` format and has a maximum size of 5MB. + * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg`, `image/png`, `image/webp`, or `image/gif` format and has a maximum size of 5MB. * * Image embeddings are supported with Embed v3.0 and newer models. */ diff --git a/src/api/types/ApiMeta.ts b/src/api/types/ApiMeta.ts index ea0a4f18..da09b3fd 100644 --- a/src/api/types/ApiMeta.ts +++ b/src/api/types/ApiMeta.ts @@ -8,5 +8,7 @@ export interface ApiMeta { apiVersion?: Cohere.ApiMetaApiVersion; billedUnits?: Cohere.ApiMetaBilledUnits; tokens?: Cohere.ApiMetaTokens; + /** The number of prompt tokens that hit the inference cache. */ + cachedTokens?: number; warnings?: string[]; } diff --git a/src/api/types/ChatRequestCitationQuality.ts b/src/api/types/ChatRequestCitationQuality.ts index ad63f8b1..d4991dfa 100644 --- a/src/api/types/ChatRequestCitationQuality.ts +++ b/src/api/types/ChatRequestCitationQuality.ts @@ -3,15 +3,16 @@ */ /** - * Defaults to `"accurate"`. - * - * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results. + * Defaults to `"enabled"`. + * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`. * * Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments */ -export type ChatRequestCitationQuality = "fast" | "accurate" | "off"; +export type ChatRequestCitationQuality = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF"; export const ChatRequestCitationQuality = { - Fast: "fast", - Accurate: "accurate", - Off: "off", + Enabled: "ENABLED", + Disabled: "DISABLED", + Fast: "FAST", + Accurate: "ACCURATE", + Off: "OFF", } as const; diff --git a/src/api/types/ChatStreamRequestCitationQuality.ts b/src/api/types/ChatStreamRequestCitationQuality.ts index 3534f1f3..253d7429 100644 --- a/src/api/types/ChatStreamRequestCitationQuality.ts +++ b/src/api/types/ChatStreamRequestCitationQuality.ts @@ -3,15 +3,16 @@ */ /** - * Defaults to `"accurate"`. - * - * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results. + * Defaults to `"enabled"`. + * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`. * * Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments */ -export type ChatStreamRequestCitationQuality = "fast" | "accurate" | "off"; +export type ChatStreamRequestCitationQuality = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF"; export const ChatStreamRequestCitationQuality = { - Fast: "fast", - Accurate: "accurate", - Off: "off", + Enabled: "ENABLED", + Disabled: "DISABLED", + Fast: "FAST", + Accurate: "ACCURATE", + Off: "OFF", } as const; diff --git a/src/api/types/CitationOptions.ts b/src/api/types/CitationOptions.ts index b5a4edae..ee4a0173 100644 --- a/src/api/types/CitationOptions.ts +++ b/src/api/types/CitationOptions.ts @@ -9,10 +9,8 @@ import * as Cohere from "../index"; */ export interface CitationOptions { /** - * Defaults to `"accurate"`. - * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results. - * - * **Note**: `command-r7b-12-2024` and `command-a-03-2025` only support `"fast"` and `"off"` modes. The default is `"fast"`. + * Defaults to `"enabled"`. + * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`. */ mode?: Cohere.CitationOptionsMode; } diff --git a/src/api/types/CitationOptionsMode.ts b/src/api/types/CitationOptionsMode.ts index 8939379d..f8e3cf6e 100644 --- a/src/api/types/CitationOptionsMode.ts +++ b/src/api/types/CitationOptionsMode.ts @@ -3,13 +3,13 @@ */ /** - * Defaults to `"accurate"`. - * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results. - * - * **Note**: `command-r7b-12-2024` and `command-a-03-2025` only support `"fast"` and `"off"` modes. The default is `"fast"`. + * Defaults to `"enabled"`. + * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`. */ -export type CitationOptionsMode = "FAST" | "ACCURATE" | "OFF"; +export type CitationOptionsMode = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF"; export const CitationOptionsMode = { + Enabled: "ENABLED", + Disabled: "DISABLED", Fast: "FAST", Accurate: "ACCURATE", Off: "OFF", diff --git a/src/api/types/DatasetType.ts b/src/api/types/DatasetType.ts index 7c58b811..a35cc13e 100644 --- a/src/api/types/DatasetType.ts +++ b/src/api/types/DatasetType.ts @@ -13,7 +13,11 @@ export type DatasetType = | "reranker-finetune-input" | "single-label-classification-finetune-input" | "chat-finetune-input" - | "multi-label-classification-finetune-input"; + | "multi-label-classification-finetune-input" + | "batch-chat-input" + | "batch-openai-chat-input" + | "batch-embed-v2-input" + | "batch-chat-v2-input"; export const DatasetType = { EmbedInput: "embed-input", EmbedResult: "embed-result", @@ -23,4 +27,8 @@ export const DatasetType = { SingleLabelClassificationFinetuneInput: "single-label-classification-finetune-input", ChatFinetuneInput: "chat-finetune-input", MultiLabelClassificationFinetuneInput: "multi-label-classification-finetune-input", + BatchChatInput: "batch-chat-input", + BatchOpenaiChatInput: "batch-openai-chat-input", + BatchEmbedV2Input: "batch-embed-v2-input", + BatchChatV2Input: "batch-chat-v2-input", } as const; diff --git a/src/api/types/GetModelResponse.ts b/src/api/types/GetModelResponse.ts index 713e99c5..2912226a 100644 --- a/src/api/types/GetModelResponse.ts +++ b/src/api/types/GetModelResponse.ts @@ -20,8 +20,6 @@ export interface GetModelResponse { contextLength?: number; /** Public URL to the tokenizer's configuration file. */ tokenizerUrl?: string; - /** Whether the model supports image inputs or not. */ - supportsVision?: boolean; /** The API endpoints that the model is default to. */ defaultEndpoints?: Cohere.CompatibleEndpoint[]; /** The features that the model supports. */ diff --git a/src/api/types/Usage.ts b/src/api/types/Usage.ts index 5eea78aa..f8702737 100644 --- a/src/api/types/Usage.ts +++ b/src/api/types/Usage.ts @@ -2,9 +2,7 @@ * This file was auto-generated by Fern from our API Definition. */ -import * as Cohere from "../index"; - export interface Usage { - billedUnits?: Cohere.UsageBilledUnits; - tokens?: Cohere.UsageTokens; + /** The number of prompt tokens that hit the inference cache. */ + cachedTokens?: number; } diff --git a/src/serialization/types/ApiMeta.ts b/src/serialization/types/ApiMeta.ts index 0f69cda2..f5807aaf 100644 --- a/src/serialization/types/ApiMeta.ts +++ b/src/serialization/types/ApiMeta.ts @@ -14,6 +14,7 @@ export const ApiMeta: core.serialization.ObjectSchema = core.serialization.enum_(["fast", "accurate", "off"]); +> = core.serialization.enum_(["ENABLED", "DISABLED", "FAST", "ACCURATE", "OFF"]); export declare namespace ChatRequestCitationQuality { - export type Raw = "fast" | "accurate" | "off"; + export type Raw = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF"; } diff --git a/src/serialization/types/ChatStreamRequestCitationQuality.ts b/src/serialization/types/ChatStreamRequestCitationQuality.ts index 13642fe6..12b9af8f 100644 --- a/src/serialization/types/ChatStreamRequestCitationQuality.ts +++ b/src/serialization/types/ChatStreamRequestCitationQuality.ts @@ -9,8 +9,8 @@ import * as core from "../../core"; export const ChatStreamRequestCitationQuality: core.serialization.Schema< serializers.ChatStreamRequestCitationQuality.Raw, Cohere.ChatStreamRequestCitationQuality -> = core.serialization.enum_(["fast", "accurate", "off"]); +> = core.serialization.enum_(["ENABLED", "DISABLED", "FAST", "ACCURATE", "OFF"]); export declare namespace ChatStreamRequestCitationQuality { - export type Raw = "fast" | "accurate" | "off"; + export type Raw = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF"; } diff --git a/src/serialization/types/CitationOptionsMode.ts b/src/serialization/types/CitationOptionsMode.ts index 87adf79d..c71b73b1 100644 --- a/src/serialization/types/CitationOptionsMode.ts +++ b/src/serialization/types/CitationOptionsMode.ts @@ -9,8 +9,8 @@ import * as core from "../../core"; export const CitationOptionsMode: core.serialization.Schema< serializers.CitationOptionsMode.Raw, Cohere.CitationOptionsMode -> = core.serialization.enum_(["FAST", "ACCURATE", "OFF"]); +> = core.serialization.enum_(["ENABLED", "DISABLED", "FAST", "ACCURATE", "OFF"]); export declare namespace CitationOptionsMode { - export type Raw = "FAST" | "ACCURATE" | "OFF"; + export type Raw = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF"; } diff --git a/src/serialization/types/DatasetType.ts b/src/serialization/types/DatasetType.ts index 434617fa..1ce15762 100644 --- a/src/serialization/types/DatasetType.ts +++ b/src/serialization/types/DatasetType.ts @@ -16,6 +16,10 @@ export const DatasetType: core.serialization.Schema = core.serialization.object({ - billedUnits: core.serialization.property("billed_units", UsageBilledUnits.optional()), - tokens: UsageTokens.optional(), + cachedTokens: core.serialization.property("cached_tokens", core.serialization.number().optional()), }); export declare namespace Usage { export interface Raw { - billed_units?: UsageBilledUnits.Raw | null; - tokens?: UsageTokens.Raw | null; + cached_tokens?: number | null; } } diff --git a/src/version.ts b/src/version.ts index 3c21a237..c37084e1 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const SDK_VERSION = "7.19.0"; +export const SDK_VERSION = "7.20.0"; diff --git a/yarn.lock b/yarn.lock index 0c28e505..0d298be5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -40,467 +40,466 @@ "@smithy/util-utf8" "^2.0.0" tslib "^2.6.2" -"@aws-sdk/client-cognito-identity@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.887.0.tgz#3fc40646eeafca2f6c3631190eb97c5fe1a453af" - integrity sha512-Y/xcFWEFcroEkn0S75RANAq/5ZoE2tLNcTKUzLP9OjmJM+wEkwgNe3iGR4K5KKVQ13BH3YmSXqOPKC5EYPASZg== +"@aws-sdk/client-cognito-identity@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.910.0.tgz#37d429e70874b1051663c47ea7a0d346bea390f4" + integrity sha512-s+dAcdCediTnvkUbdfprgr2BQ/ue0almWXu1jwnV3Eg9zOKsZGjKJHEE0I5QckzsZhMfMaEgtE8uOMMHp7i7dg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.887.0" - "@aws-sdk/credential-provider-node" "3.887.0" - "@aws-sdk/middleware-host-header" "3.887.0" - "@aws-sdk/middleware-logger" "3.887.0" - "@aws-sdk/middleware-recursion-detection" "3.887.0" - "@aws-sdk/middleware-user-agent" "3.887.0" - "@aws-sdk/region-config-resolver" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@aws-sdk/util-endpoints" "3.887.0" - "@aws-sdk/util-user-agent-browser" "3.887.0" - "@aws-sdk/util-user-agent-node" "3.887.0" - "@smithy/config-resolver" "^4.2.1" - "@smithy/core" "^3.11.0" - "@smithy/fetch-http-handler" "^5.2.1" - "@smithy/hash-node" "^4.1.1" - "@smithy/invalid-dependency" "^4.1.1" - "@smithy/middleware-content-length" "^4.1.1" - "@smithy/middleware-endpoint" "^4.2.1" - "@smithy/middleware-retry" "^4.2.1" - "@smithy/middleware-serde" "^4.1.1" - "@smithy/middleware-stack" "^4.1.1" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/node-http-handler" "^4.2.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - "@smithy/url-parser" "^4.1.1" - "@smithy/util-base64" "^4.1.0" - "@smithy/util-body-length-browser" "^4.1.0" - "@smithy/util-body-length-node" "^4.1.0" - "@smithy/util-defaults-mode-browser" "^4.1.1" - "@smithy/util-defaults-mode-node" "^4.1.1" - "@smithy/util-endpoints" "^3.1.1" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-retry" "^4.1.1" - "@smithy/util-utf8" "^4.1.0" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/credential-provider-node" "3.910.0" + "@aws-sdk/middleware-host-header" "3.910.0" + "@aws-sdk/middleware-logger" "3.910.0" + "@aws-sdk/middleware-recursion-detection" "3.910.0" + "@aws-sdk/middleware-user-agent" "3.910.0" + "@aws-sdk/region-config-resolver" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@aws-sdk/util-endpoints" "3.910.0" + "@aws-sdk/util-user-agent-browser" "3.910.0" + "@aws-sdk/util-user-agent-node" "3.910.0" + "@smithy/config-resolver" "^4.3.2" + "@smithy/core" "^3.16.1" + "@smithy/fetch-http-handler" "^5.3.3" + "@smithy/hash-node" "^4.2.2" + "@smithy/invalid-dependency" "^4.2.2" + "@smithy/middleware-content-length" "^4.2.2" + "@smithy/middleware-endpoint" "^4.3.3" + "@smithy/middleware-retry" "^4.4.3" + "@smithy/middleware-serde" "^4.2.2" + "@smithy/middleware-stack" "^4.2.2" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/node-http-handler" "^4.4.1" + "@smithy/protocol-http" "^5.3.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" + "@smithy/url-parser" "^4.2.2" + "@smithy/util-base64" "^4.3.0" + "@smithy/util-body-length-browser" "^4.2.0" + "@smithy/util-body-length-node" "^4.2.1" + "@smithy/util-defaults-mode-browser" "^4.3.2" + "@smithy/util-defaults-mode-node" "^4.2.3" + "@smithy/util-endpoints" "^3.2.2" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-retry" "^4.2.2" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" "@aws-sdk/client-sagemaker@^3.583.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sagemaker/-/client-sagemaker-3.887.0.tgz#b7dc4f6fc657ec600d4b445937db084a36a260b1" - integrity sha512-V+8HcwESJNzlAx+vLZcryfAy7Ecv8yaGAV3jIAcJ9rviJyrUxNTH+XkEPO1mSfKzMoAItb4fL6fVaF/uRfacZA== + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sagemaker/-/client-sagemaker-3.910.0.tgz#30cb170e79b573ce4370172f8e16f1eb1dacd942" + integrity sha512-aIz+HoX0e5NFd7jMHPEZajYXoledLX5sa+EiYYyaDfI6X4gQv2wghBB2rOOK/yincFzT1+U1qRoKCL1oaaeLpg== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.887.0" - "@aws-sdk/credential-provider-node" "3.887.0" - "@aws-sdk/middleware-host-header" "3.887.0" - "@aws-sdk/middleware-logger" "3.887.0" - "@aws-sdk/middleware-recursion-detection" "3.887.0" - "@aws-sdk/middleware-user-agent" "3.887.0" - "@aws-sdk/region-config-resolver" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@aws-sdk/util-endpoints" "3.887.0" - "@aws-sdk/util-user-agent-browser" "3.887.0" - "@aws-sdk/util-user-agent-node" "3.887.0" - "@smithy/config-resolver" "^4.2.1" - "@smithy/core" "^3.11.0" - "@smithy/fetch-http-handler" "^5.2.1" - "@smithy/hash-node" "^4.1.1" - "@smithy/invalid-dependency" "^4.1.1" - "@smithy/middleware-content-length" "^4.1.1" - "@smithy/middleware-endpoint" "^4.2.1" - "@smithy/middleware-retry" "^4.2.1" - "@smithy/middleware-serde" "^4.1.1" - "@smithy/middleware-stack" "^4.1.1" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/node-http-handler" "^4.2.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - "@smithy/url-parser" "^4.1.1" - "@smithy/util-base64" "^4.1.0" - "@smithy/util-body-length-browser" "^4.1.0" - "@smithy/util-body-length-node" "^4.1.0" - "@smithy/util-defaults-mode-browser" "^4.1.1" - "@smithy/util-defaults-mode-node" "^4.1.1" - "@smithy/util-endpoints" "^3.1.1" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-retry" "^4.1.1" - "@smithy/util-utf8" "^4.1.0" - "@smithy/util-waiter" "^4.1.1" - "@types/uuid" "^9.0.1" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/credential-provider-node" "3.910.0" + "@aws-sdk/middleware-host-header" "3.910.0" + "@aws-sdk/middleware-logger" "3.910.0" + "@aws-sdk/middleware-recursion-detection" "3.910.0" + "@aws-sdk/middleware-user-agent" "3.910.0" + "@aws-sdk/region-config-resolver" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@aws-sdk/util-endpoints" "3.910.0" + "@aws-sdk/util-user-agent-browser" "3.910.0" + "@aws-sdk/util-user-agent-node" "3.910.0" + "@smithy/config-resolver" "^4.3.2" + "@smithy/core" "^3.16.1" + "@smithy/fetch-http-handler" "^5.3.3" + "@smithy/hash-node" "^4.2.2" + "@smithy/invalid-dependency" "^4.2.2" + "@smithy/middleware-content-length" "^4.2.2" + "@smithy/middleware-endpoint" "^4.3.3" + "@smithy/middleware-retry" "^4.4.3" + "@smithy/middleware-serde" "^4.2.2" + "@smithy/middleware-stack" "^4.2.2" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/node-http-handler" "^4.4.1" + "@smithy/protocol-http" "^5.3.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" + "@smithy/url-parser" "^4.2.2" + "@smithy/util-base64" "^4.3.0" + "@smithy/util-body-length-browser" "^4.2.0" + "@smithy/util-body-length-node" "^4.2.1" + "@smithy/util-defaults-mode-browser" "^4.3.2" + "@smithy/util-defaults-mode-node" "^4.2.3" + "@smithy/util-endpoints" "^3.2.2" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-retry" "^4.2.2" + "@smithy/util-utf8" "^4.2.0" + "@smithy/util-waiter" "^4.2.2" + "@smithy/uuid" "^1.1.0" tslib "^2.6.2" - uuid "^9.0.1" -"@aws-sdk/client-sso@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.887.0.tgz#7b9bce78df539b5d7139d0ca1654981b05c63c43" - integrity sha512-ZKN8BxkRdC6vK6wlnuLSYBhj7uufg14GP5bxqiRaDEooN1y2WcuY95GP13I3brLvM0uboFGbObIVpVrbeHifng== +"@aws-sdk/client-sso@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.910.0.tgz#83429b752f792294d4ffc2cf5563fd136ade2c57" + integrity sha512-oEWXhe2RHiSPKxhrq1qp7M4fxOsxMIJc4d75z8tTLLm5ujlmTZYU3kd0l2uBBaZSlbkrMiefntT6XrGint1ibw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.887.0" - "@aws-sdk/middleware-host-header" "3.887.0" - "@aws-sdk/middleware-logger" "3.887.0" - "@aws-sdk/middleware-recursion-detection" "3.887.0" - "@aws-sdk/middleware-user-agent" "3.887.0" - "@aws-sdk/region-config-resolver" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@aws-sdk/util-endpoints" "3.887.0" - "@aws-sdk/util-user-agent-browser" "3.887.0" - "@aws-sdk/util-user-agent-node" "3.887.0" - "@smithy/config-resolver" "^4.2.1" - "@smithy/core" "^3.11.0" - "@smithy/fetch-http-handler" "^5.2.1" - "@smithy/hash-node" "^4.1.1" - "@smithy/invalid-dependency" "^4.1.1" - "@smithy/middleware-content-length" "^4.1.1" - "@smithy/middleware-endpoint" "^4.2.1" - "@smithy/middleware-retry" "^4.2.1" - "@smithy/middleware-serde" "^4.1.1" - "@smithy/middleware-stack" "^4.1.1" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/node-http-handler" "^4.2.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - "@smithy/url-parser" "^4.1.1" - "@smithy/util-base64" "^4.1.0" - "@smithy/util-body-length-browser" "^4.1.0" - "@smithy/util-body-length-node" "^4.1.0" - "@smithy/util-defaults-mode-browser" "^4.1.1" - "@smithy/util-defaults-mode-node" "^4.1.1" - "@smithy/util-endpoints" "^3.1.1" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-retry" "^4.1.1" - "@smithy/util-utf8" "^4.1.0" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/middleware-host-header" "3.910.0" + "@aws-sdk/middleware-logger" "3.910.0" + "@aws-sdk/middleware-recursion-detection" "3.910.0" + "@aws-sdk/middleware-user-agent" "3.910.0" + "@aws-sdk/region-config-resolver" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@aws-sdk/util-endpoints" "3.910.0" + "@aws-sdk/util-user-agent-browser" "3.910.0" + "@aws-sdk/util-user-agent-node" "3.910.0" + "@smithy/config-resolver" "^4.3.2" + "@smithy/core" "^3.16.1" + "@smithy/fetch-http-handler" "^5.3.3" + "@smithy/hash-node" "^4.2.2" + "@smithy/invalid-dependency" "^4.2.2" + "@smithy/middleware-content-length" "^4.2.2" + "@smithy/middleware-endpoint" "^4.3.3" + "@smithy/middleware-retry" "^4.4.3" + "@smithy/middleware-serde" "^4.2.2" + "@smithy/middleware-stack" "^4.2.2" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/node-http-handler" "^4.4.1" + "@smithy/protocol-http" "^5.3.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" + "@smithy/url-parser" "^4.2.2" + "@smithy/util-base64" "^4.3.0" + "@smithy/util-body-length-browser" "^4.2.0" + "@smithy/util-body-length-node" "^4.2.1" + "@smithy/util-defaults-mode-browser" "^4.3.2" + "@smithy/util-defaults-mode-node" "^4.2.3" + "@smithy/util-endpoints" "^3.2.2" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-retry" "^4.2.2" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" -"@aws-sdk/core@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.887.0.tgz#2e03e3ee7c3c615f96a1f5ea2e4bc6d52b7f53e6" - integrity sha512-oiBsWhuuj1Lzh+FHY+gE0PyYuiDxqFf98F9Pd2WruY5Gu/+/xvDFEPEkIEOae8gWRaLZ5Eh8u+OY9LS4DXZhuQ== - dependencies: - "@aws-sdk/types" "3.887.0" - "@aws-sdk/xml-builder" "3.887.0" - "@smithy/core" "^3.11.0" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/property-provider" "^4.0.5" - "@smithy/protocol-http" "^5.2.1" - "@smithy/signature-v4" "^5.1.3" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - "@smithy/util-base64" "^4.1.0" - "@smithy/util-body-length-browser" "^4.1.0" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-utf8" "^4.1.0" - fast-xml-parser "5.2.5" +"@aws-sdk/core@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.910.0.tgz#05a0508391692627bfb73b4fd166e689b2ff7743" + integrity sha512-b/FVNyPxZMmBp+xDwANDgR6o5Ehh/RTY9U/labH56jJpte196Psru/FmQULX3S6kvIiafQA9JefWUq81SfWVLg== + dependencies: + "@aws-sdk/types" "3.910.0" + "@aws-sdk/xml-builder" "3.910.0" + "@smithy/core" "^3.16.1" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/property-provider" "^4.2.2" + "@smithy/protocol-http" "^5.3.2" + "@smithy/signature-v4" "^5.3.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" + "@smithy/util-base64" "^4.3.0" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" -"@aws-sdk/credential-provider-cognito-identity@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.887.0.tgz#7b2f2028e5f98a211e467298766b61b625eec638" - integrity sha512-T3IX39UefOOBWG+Jf/PuYjsI4XgX7nr0pSxYbLQq73/KILur+XZlhDssIaNjy+MoTs3ULNw63zlAcngVCykuOw== +"@aws-sdk/credential-provider-cognito-identity@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.910.0.tgz#a220e04a1035fa0af577f0a33f9f9f6e48b3e74c" + integrity sha512-EIvUbPjd7JHr3c5nzkDDL1E4tofKX1R2In98NDUGguaqNjoVycVYArKkTyrgwDWapbB17pu6XuPC4haF8NQ4dQ== dependencies: - "@aws-sdk/client-cognito-identity" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/property-provider" "^4.0.5" - "@smithy/types" "^4.5.0" + "@aws-sdk/client-cognito-identity" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-env@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.887.0.tgz#ac2ee94d850d5d8c0fdb19bca4f96b11f375304f" - integrity sha512-kv7L5E8mxlWTMhCK639wrQnFEmwUDfKvKzTMDo2OboXZ0iSbD+hBPoT0gkb49qHNetYnsl63BVOxc0VNiOA04w== +"@aws-sdk/credential-provider-env@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.910.0.tgz#07047dca201f2b98aa19ecb3cbd5ca780b6352b9" + integrity sha512-Os8I5XtTLBBVyHJLxrEB06gSAZeFMH2jVoKhAaFybjOTiV7wnjBgjvWjRfStnnXs7p9d+vc/gd6wIZHjony5YQ== dependencies: - "@aws-sdk/core" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/property-provider" "^4.0.5" - "@smithy/types" "^4.5.0" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-http@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.887.0.tgz#aebae84484a08412c03d540ef5f43bb035f7988c" - integrity sha512-siLttHxSFgJ5caDgS+BHYs9GBDX7J3pgge4OmJvIQeGO+KaJC12TerBNPJOp+qRaRC3yuVw3T9RpSZa8mmaiyA== - dependencies: - "@aws-sdk/core" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/fetch-http-handler" "^5.2.1" - "@smithy/node-http-handler" "^4.2.1" - "@smithy/property-provider" "^4.0.5" - "@smithy/protocol-http" "^5.2.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - "@smithy/util-stream" "^4.3.1" +"@aws-sdk/credential-provider-http@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.910.0.tgz#02243755419d99f0a767e029f65fd166539d66b5" + integrity sha512-3KiGsTlqMnvthv90K88Uv3SvaUbmcTShBIVWYNaHdbrhrjVRR08dm2Y6XjQILazLf1NPFkxUou1YwCWK4nae1Q== + dependencies: + "@aws-sdk/core" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/fetch-http-handler" "^5.3.3" + "@smithy/node-http-handler" "^4.4.1" + "@smithy/property-provider" "^4.2.2" + "@smithy/protocol-http" "^5.3.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" + "@smithy/util-stream" "^4.5.2" tslib "^2.6.2" -"@aws-sdk/credential-provider-ini@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.887.0.tgz#94d7007f96b04ee76a521d9496f19ff9d237f4a1" - integrity sha512-Na9IjKdPuSNU/mBcCQ49HiIgomq/O7kZAuRyGwAXiRPbf86AacKv4dsUyPZY6lCgVIvVniRWgYlVaPgq22EIig== - dependencies: - "@aws-sdk/core" "3.887.0" - "@aws-sdk/credential-provider-env" "3.887.0" - "@aws-sdk/credential-provider-http" "3.887.0" - "@aws-sdk/credential-provider-process" "3.887.0" - "@aws-sdk/credential-provider-sso" "3.887.0" - "@aws-sdk/credential-provider-web-identity" "3.887.0" - "@aws-sdk/nested-clients" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/credential-provider-imds" "^4.0.7" - "@smithy/property-provider" "^4.0.5" - "@smithy/shared-ini-file-loader" "^4.0.5" - "@smithy/types" "^4.5.0" +"@aws-sdk/credential-provider-ini@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.910.0.tgz#a47f554985719eb90e05c67ff0c130b599dda2f3" + integrity sha512-/8x9LKKaLGarvF1++bFEFdIvd9/djBb+HTULbJAf4JVg3tUlpHtGe7uquuZaQkQGeW4XPbcpB9RMWx5YlZkw3w== + dependencies: + "@aws-sdk/core" "3.910.0" + "@aws-sdk/credential-provider-env" "3.910.0" + "@aws-sdk/credential-provider-http" "3.910.0" + "@aws-sdk/credential-provider-process" "3.910.0" + "@aws-sdk/credential-provider-sso" "3.910.0" + "@aws-sdk/credential-provider-web-identity" "3.910.0" + "@aws-sdk/nested-clients" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/credential-provider-imds" "^4.2.2" + "@smithy/property-provider" "^4.2.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-node@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.887.0.tgz#7f6e30e5bad736d5ff0afb243dd7ee24f330bfa8" - integrity sha512-iJdCq/brBWYpJzJcXY2UhEoW7aA28ixIpvLKjxh5QUBfjCj19cImpj1gGwTIs6/fVcjVUw1tNveTBfn1ziTzVg== - dependencies: - "@aws-sdk/credential-provider-env" "3.887.0" - "@aws-sdk/credential-provider-http" "3.887.0" - "@aws-sdk/credential-provider-ini" "3.887.0" - "@aws-sdk/credential-provider-process" "3.887.0" - "@aws-sdk/credential-provider-sso" "3.887.0" - "@aws-sdk/credential-provider-web-identity" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/credential-provider-imds" "^4.0.7" - "@smithy/property-provider" "^4.0.5" - "@smithy/shared-ini-file-loader" "^4.0.5" - "@smithy/types" "^4.5.0" +"@aws-sdk/credential-provider-node@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.910.0.tgz#f94adc1c2fb235b827235d0332ab94382a724003" + integrity sha512-Zz5tF/U4q9ir3rfVnPLlxbhMTHjPaPv78TarspFYn9mNN7cPVXBaXVVnMNu6ypZzBdTB8M44UYo827Qcw3kouA== + dependencies: + "@aws-sdk/credential-provider-env" "3.910.0" + "@aws-sdk/credential-provider-http" "3.910.0" + "@aws-sdk/credential-provider-ini" "3.910.0" + "@aws-sdk/credential-provider-process" "3.910.0" + "@aws-sdk/credential-provider-sso" "3.910.0" + "@aws-sdk/credential-provider-web-identity" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/credential-provider-imds" "^4.2.2" + "@smithy/property-provider" "^4.2.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-process@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.887.0.tgz#e562eda10ff42a144cf17a2d6a77fb6d94df3575" - integrity sha512-J5TIrQ/DUiyR65gXt1j3TEbLUwMcgYVB/G68/AVgBptPvb9kj+6zFG67bJJHwxtqJxRLVLTtTi9u/YDXTqGBpQ== +"@aws-sdk/credential-provider-process@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.910.0.tgz#8c653c3ca86b7ee5dce01797f4e1f5f1ac4405cd" + integrity sha512-l1lZfHIl/z0SxXibt7wMQ2HmRIyIZjlOrT6a554xlO//y671uxPPwScVw7QW4fPIvwfmKbl8dYCwGI//AgQ0bA== dependencies: - "@aws-sdk/core" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/property-provider" "^4.0.5" - "@smithy/shared-ini-file-loader" "^4.0.5" - "@smithy/types" "^4.5.0" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-sso@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.887.0.tgz#c6d5269e9713201f66826e6c1f200e1a2db4fee4" - integrity sha512-Bv9wUActLu6Kn0MK2s72bgbbNxSLPVop/If4MVbCyJ3n+prJnm5RsTF3isoWQVyyXA5g4tIrS8mE5FpejSbyPQ== - dependencies: - "@aws-sdk/client-sso" "3.887.0" - "@aws-sdk/core" "3.887.0" - "@aws-sdk/token-providers" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/property-provider" "^4.0.5" - "@smithy/shared-ini-file-loader" "^4.0.5" - "@smithy/types" "^4.5.0" +"@aws-sdk/credential-provider-sso@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.910.0.tgz#6f00cee32ac3929f6a46f4387fce874426459158" + integrity sha512-cwc9bmomjUqPDF58THUCmEnpAIsCFV3Y9FHlQmQbMkYUm7Wlrb5E2iFrZ4WDefAHuh25R/gtj+Yo74r3gl9kbw== + dependencies: + "@aws-sdk/client-sso" "3.910.0" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/token-providers" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/credential-provider-web-identity@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.887.0.tgz#e2c865fd9e347bc64c5c822dfd38b2be68162244" - integrity sha512-PRh0KRukY2euN9xvvQ3cqhCAlEkMDJIWDLIfxQ1hTbv7JA3hrcLVrV+Jg5FRWsStDhweHIvD/VzruSkhJQS80g== - dependencies: - "@aws-sdk/core" "3.887.0" - "@aws-sdk/nested-clients" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/property-provider" "^4.0.5" - "@smithy/types" "^4.5.0" +"@aws-sdk/credential-provider-web-identity@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.910.0.tgz#91c220b807b128743fafe27ba96ea08c08dbd4fa" + integrity sha512-HFQgZm1+7WisJ8tqcZkNRRmnoFO+So+L12wViVxneVJ+OclfL2vE/CoKqHTozP6+JCOKMlv6Vi61Lu6xDtKdTA== + dependencies: + "@aws-sdk/core" "3.910.0" + "@aws-sdk/nested-clients" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" "@aws-sdk/credential-providers@^3.583.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.887.0.tgz#5126b8a405d3298301e1d1ce4597651ecc734f9e" - integrity sha512-srs1S6zBjFYJvf5+ye+GnW2szApybV6jkNgVZ8LEJ7Xh5ucycHujK2qQHLRR8Wwrjg2+gq1K8jCfSGEDsaFo8A== - dependencies: - "@aws-sdk/client-cognito-identity" "3.887.0" - "@aws-sdk/core" "3.887.0" - "@aws-sdk/credential-provider-cognito-identity" "3.887.0" - "@aws-sdk/credential-provider-env" "3.887.0" - "@aws-sdk/credential-provider-http" "3.887.0" - "@aws-sdk/credential-provider-ini" "3.887.0" - "@aws-sdk/credential-provider-node" "3.887.0" - "@aws-sdk/credential-provider-process" "3.887.0" - "@aws-sdk/credential-provider-sso" "3.887.0" - "@aws-sdk/credential-provider-web-identity" "3.887.0" - "@aws-sdk/nested-clients" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/config-resolver" "^4.2.1" - "@smithy/core" "^3.11.0" - "@smithy/credential-provider-imds" "^4.0.7" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/property-provider" "^4.0.5" - "@smithy/types" "^4.5.0" + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.910.0.tgz#33fd11dc67ab7ec809f984bc1e82cbb15e456d07" + integrity sha512-APrtzWoSgcnasO0BOjiUrI87aQW6ViHIWWlaUdHOuJhCScCCjAwgqSgmy+qfel4I8VIbIQqIh6+77z8+o3cZWw== + dependencies: + "@aws-sdk/client-cognito-identity" "3.910.0" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/credential-provider-cognito-identity" "3.910.0" + "@aws-sdk/credential-provider-env" "3.910.0" + "@aws-sdk/credential-provider-http" "3.910.0" + "@aws-sdk/credential-provider-ini" "3.910.0" + "@aws-sdk/credential-provider-node" "3.910.0" + "@aws-sdk/credential-provider-process" "3.910.0" + "@aws-sdk/credential-provider-sso" "3.910.0" + "@aws-sdk/credential-provider-web-identity" "3.910.0" + "@aws-sdk/nested-clients" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/config-resolver" "^4.3.2" + "@smithy/core" "^3.16.1" + "@smithy/credential-provider-imds" "^4.2.2" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/property-provider" "^4.2.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/middleware-host-header@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.887.0.tgz#765305b5a2c412e6bf53eb6d557f2ab831ff50a7" - integrity sha512-ulzqXv6NNqdu/kr0sgBYupWmahISHY+azpJidtK6ZwQIC+vBUk9NdZeqQpy7KVhIk2xd4+5Oq9rxapPwPI21CA== +"@aws-sdk/middleware-host-header@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.910.0.tgz#5f1c11668c2d2be55253e886b9b622e188314f7b" + integrity sha512-F9Lqeu80/aTM6S/izZ8RtwSmjfhWjIuxX61LX+/9mxJyEkgaECRxv0chsLQsLHJumkGnXRy/eIyMLBhcTPF5vg== dependencies: - "@aws-sdk/types" "3.887.0" - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" + "@aws-sdk/types" "3.910.0" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/middleware-logger@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.887.0.tgz#fec1c731d158306425897b371cfabdf188d07f12" - integrity sha512-YbbgLI6jKp2qSoAcHnXrQ5jcuc5EYAmGLVFgMVdk8dfCfJLfGGSaOLxF4CXC7QYhO50s+mPPkhBYejCik02Kug== +"@aws-sdk/middleware-logger@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.910.0.tgz#ebe29050cfd2fdfb6a2d2cb5a829d53dc82dfc14" + integrity sha512-3LJyyfs1USvRuRDla1pGlzGRtXJBXD1zC9F+eE9Iz/V5nkmhyv52A017CvKWmYoR0DM9dzjLyPOI0BSSppEaTw== dependencies: - "@aws-sdk/types" "3.887.0" - "@smithy/types" "^4.5.0" + "@aws-sdk/types" "3.910.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/middleware-recursion-detection@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.887.0.tgz#4fdb1039042565a4ba0ff506584a99f3c7c3fd23" - integrity sha512-tjrUXFtQnFLo+qwMveq5faxP5MQakoLArXtqieHphSqZTXm21wDJM73hgT4/PQQGTwgYjDKqnqsE1hvk0hcfDw== +"@aws-sdk/middleware-recursion-detection@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.910.0.tgz#ea901901b633ec8b76e8144f0ae29c4f917e8a04" + integrity sha512-m/oLz0EoCy+WoIVBnXRXJ4AtGpdl0kPE7U+VH9TsuUzHgxY1Re/176Q1HWLBRVlz4gr++lNsgsMWEC+VnAwMpw== dependencies: - "@aws-sdk/types" "3.887.0" + "@aws-sdk/types" "3.910.0" "@aws/lambda-invoke-store" "^0.0.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/middleware-user-agent@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.887.0.tgz#ecb60f439081bec36d2390832d6ee138f69d37f5" - integrity sha512-YjBz2J4l3uCeMv2g1natat5YSMRZYdEpEg60g3d7q6hoHUD10SmWy8M+Ca8djF0is70vPmF3Icm2cArK3mtoNA== - dependencies: - "@aws-sdk/core" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@aws-sdk/util-endpoints" "3.887.0" - "@smithy/core" "^3.11.0" - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" +"@aws-sdk/middleware-user-agent@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.910.0.tgz#188ac7d08828f997511acf1ec55fdc9e8ebdd1f2" + integrity sha512-djpnECwDLI/4sck1wxK/cZJmZX5pAhRvjONyJqr0AaOfJyuIAG0PHLe7xwCrv2rCAvIBR9ofnNFzPIGTJPDUwg== + dependencies: + "@aws-sdk/core" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@aws-sdk/util-endpoints" "3.910.0" + "@smithy/core" "^3.16.1" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/nested-clients@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.887.0.tgz#b95906d63b0040680e7f46edcf7e699d44edde57" - integrity sha512-h6/dHuAJhJnhSDihcQd0wfJBZoPmPajASVqGk8qDxYDBWxIU9/mYcKvM+kTrKw3f9Wf3S/eR5B/rYHHuxFheSw== +"@aws-sdk/nested-clients@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.910.0.tgz#2da3b68464a0604cd7438cb4241bd2f8e83c70ee" + integrity sha512-Jr/smgVrLZECQgMyP4nbGqgJwzFFbkjOVrU8wh/gbVIZy1+Gu6R7Shai7KHDkEjwkGcHpN1MCCO67jTAOoSlMw== dependencies: "@aws-crypto/sha256-browser" "5.2.0" "@aws-crypto/sha256-js" "5.2.0" - "@aws-sdk/core" "3.887.0" - "@aws-sdk/middleware-host-header" "3.887.0" - "@aws-sdk/middleware-logger" "3.887.0" - "@aws-sdk/middleware-recursion-detection" "3.887.0" - "@aws-sdk/middleware-user-agent" "3.887.0" - "@aws-sdk/region-config-resolver" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@aws-sdk/util-endpoints" "3.887.0" - "@aws-sdk/util-user-agent-browser" "3.887.0" - "@aws-sdk/util-user-agent-node" "3.887.0" - "@smithy/config-resolver" "^4.2.1" - "@smithy/core" "^3.11.0" - "@smithy/fetch-http-handler" "^5.2.1" - "@smithy/hash-node" "^4.1.1" - "@smithy/invalid-dependency" "^4.1.1" - "@smithy/middleware-content-length" "^4.1.1" - "@smithy/middleware-endpoint" "^4.2.1" - "@smithy/middleware-retry" "^4.2.1" - "@smithy/middleware-serde" "^4.1.1" - "@smithy/middleware-stack" "^4.1.1" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/node-http-handler" "^4.2.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - "@smithy/url-parser" "^4.1.1" - "@smithy/util-base64" "^4.1.0" - "@smithy/util-body-length-browser" "^4.1.0" - "@smithy/util-body-length-node" "^4.1.0" - "@smithy/util-defaults-mode-browser" "^4.1.1" - "@smithy/util-defaults-mode-node" "^4.1.1" - "@smithy/util-endpoints" "^3.1.1" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-retry" "^4.1.1" - "@smithy/util-utf8" "^4.1.0" + "@aws-sdk/core" "3.910.0" + "@aws-sdk/middleware-host-header" "3.910.0" + "@aws-sdk/middleware-logger" "3.910.0" + "@aws-sdk/middleware-recursion-detection" "3.910.0" + "@aws-sdk/middleware-user-agent" "3.910.0" + "@aws-sdk/region-config-resolver" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@aws-sdk/util-endpoints" "3.910.0" + "@aws-sdk/util-user-agent-browser" "3.910.0" + "@aws-sdk/util-user-agent-node" "3.910.0" + "@smithy/config-resolver" "^4.3.2" + "@smithy/core" "^3.16.1" + "@smithy/fetch-http-handler" "^5.3.3" + "@smithy/hash-node" "^4.2.2" + "@smithy/invalid-dependency" "^4.2.2" + "@smithy/middleware-content-length" "^4.2.2" + "@smithy/middleware-endpoint" "^4.3.3" + "@smithy/middleware-retry" "^4.4.3" + "@smithy/middleware-serde" "^4.2.2" + "@smithy/middleware-stack" "^4.2.2" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/node-http-handler" "^4.4.1" + "@smithy/protocol-http" "^5.3.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" + "@smithy/url-parser" "^4.2.2" + "@smithy/util-base64" "^4.3.0" + "@smithy/util-body-length-browser" "^4.2.0" + "@smithy/util-body-length-node" "^4.2.1" + "@smithy/util-defaults-mode-browser" "^4.3.2" + "@smithy/util-defaults-mode-node" "^4.2.3" + "@smithy/util-endpoints" "^3.2.2" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-retry" "^4.2.2" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" -"@aws-sdk/region-config-resolver@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.887.0.tgz#5e89768b44cd5e5c624852ade958579144ac2eb5" - integrity sha512-VdSMrIqJ3yjJb/fY+YAxrH/lCVv0iL8uA+lbMNfQGtO5tB3Zx6SU9LEpUwBNX8fPK1tUpI65CNE4w42+MY/7Mg== +"@aws-sdk/region-config-resolver@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.910.0.tgz#31f365a3bc254e4c4417a39d0f40338acdbe3da4" + integrity sha512-gzQAkuHI3xyG6toYnH/pju+kc190XmvnB7X84vtN57GjgdQJICt9So/BD0U6h+eSfk9VBnafkVrAzBzWMEFZVw== dependencies: - "@aws-sdk/types" "3.887.0" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/types" "^4.5.0" - "@smithy/util-config-provider" "^4.0.0" - "@smithy/util-middleware" "^4.1.1" + "@aws-sdk/types" "3.910.0" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/types" "^4.7.1" + "@smithy/util-config-provider" "^4.2.0" + "@smithy/util-middleware" "^4.2.2" tslib "^2.6.2" -"@aws-sdk/token-providers@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.887.0.tgz#0825955ec3e518fea88649cf381839b9b07ea859" - integrity sha512-3e5fTPMPeJ5DphZ+OSqzw4ymCgDf8SQVBgrlKVo4Bch9ZwmmAoOHbuQrXVa9xQHklEHJg1Gz2pkjxNaIgx7quA== - dependencies: - "@aws-sdk/core" "3.887.0" - "@aws-sdk/nested-clients" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/property-provider" "^4.0.5" - "@smithy/shared-ini-file-loader" "^4.0.5" - "@smithy/types" "^4.5.0" +"@aws-sdk/token-providers@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.910.0.tgz#84ce8984e50d9955e8f36ac4afbe927e2cac9809" + integrity sha512-dQr3pFpzemKyrB7SEJ2ipPtWrZiL5vaimg2PkXpwyzGrigYRc8F2R9DMUckU5zi32ozvQqq4PI3bOrw6xUfcbQ== + dependencies: + "@aws-sdk/core" "3.910.0" + "@aws-sdk/nested-clients" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/types@3.887.0", "@aws-sdk/types@^3.222.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.887.0.tgz#989f3b67d7ddb97443e4bdb80ad2313c604b240d" - integrity sha512-fmTEJpUhsPsovQ12vZSpVTEP/IaRoJAMBGQXlQNjtCpkBp6Iq3KQDa/HDaPINE+3xxo6XvTdtibsNOd5zJLV9A== +"@aws-sdk/types@3.910.0", "@aws-sdk/types@^3.222.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.910.0.tgz#1707a9f5d36d828789173fcd5622a5684cf67b2f" + integrity sha512-o67gL3vjf4nhfmuSUNNkit0d62QJEwwHLxucwVJkR/rw9mfUtAWsgBs8Tp16cdUbMgsyQtCQilL8RAJDoGtadQ== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/util-endpoints@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.887.0.tgz#e4f2dfb608360b6d8b4e3793492d4625dba00275" - integrity sha512-kpegvT53KT33BMeIcGLPA65CQVxLUL/C3gTz9AzlU/SDmeusBHX4nRApAicNzI/ltQ5lxZXbQn18UczzBuwF1w== +"@aws-sdk/util-endpoints@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.910.0.tgz#aca087159fa0c89d514e534b369724bea4211bd3" + integrity sha512-6XgdNe42ibP8zCQgNGDWoOF53RfEKzpU/S7Z29FTTJ7hcZv0SytC0ZNQQZSx4rfBl036YWYwJRoJMlT4AA7q9A== dependencies: - "@aws-sdk/types" "3.887.0" - "@smithy/types" "^4.5.0" - "@smithy/url-parser" "^4.1.1" - "@smithy/util-endpoints" "^3.1.1" + "@aws-sdk/types" "3.910.0" + "@smithy/types" "^4.7.1" + "@smithy/url-parser" "^4.2.2" + "@smithy/util-endpoints" "^3.2.2" tslib "^2.6.2" "@aws-sdk/util-locate-window@^3.0.0": - version "3.873.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.873.0.tgz#cc10edef3b7aecf365943ec657116d6eb470d9cb" - integrity sha512-xcVhZF6svjM5Rj89T1WzkjQmrTF6dpR2UvIHPMTnSZoNe6CixejPZ6f0JJ2kAhO8H+dUHwNBlsUgOTIKiK/Syg== + version "3.893.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.893.0.tgz#5df15f24e1edbe12ff1fe8906f823b51cd53bae8" + integrity sha512-T89pFfgat6c8nMmpI8eKjBcDcgJq36+m9oiXbcUzeU55MP9ZuGgBomGjGnHaEyF36jenW9gmg3NfZDm0AO2XPg== dependencies: tslib "^2.6.2" -"@aws-sdk/util-user-agent-browser@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.887.0.tgz#1c5ccc82a0b31a4b159ad98cb12abda1e6c422c8" - integrity sha512-X71UmVsYc6ZTH4KU6hA5urOzYowSXc3qvroagJNLJYU1ilgZ529lP4J9XOYfEvTXkLR1hPFSRxa43SrwgelMjA== +"@aws-sdk/util-user-agent-browser@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.910.0.tgz#93b4ca9c9b3675b3e6d95c9ef517ac2db159e131" + integrity sha512-iOdrRdLZHrlINk9pezNZ82P/VxO/UmtmpaOAObUN+xplCUJu31WNM2EE/HccC8PQw6XlAudpdA6HDTGiW6yVGg== dependencies: - "@aws-sdk/types" "3.887.0" - "@smithy/types" "^4.5.0" + "@aws-sdk/types" "3.910.0" + "@smithy/types" "^4.7.1" bowser "^2.11.0" tslib "^2.6.2" -"@aws-sdk/util-user-agent-node@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.887.0.tgz#e0c2ae5667197b8b830feb1c2cd05cc4735a6640" - integrity sha512-eqnx2FWAf40Nw6EyhXWjVT5WYYMz0rLrKEhZR3GdRQyOFzgnnEfq74TtG2Xji9k/ODqkcKqkiI52RYDEcdh8Jg== +"@aws-sdk/util-user-agent-node@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.910.0.tgz#640612091354b6ca75acca59eef3106606d7555f" + integrity sha512-qNV+rywWQDOOWmGpNlWLCU6zkJurocTBB2uLSdQ8b6Xg6U/i1VTJsoUQ5fbhSQpp/SuBGiIglyB1gSc0th7hPw== dependencies: - "@aws-sdk/middleware-user-agent" "3.887.0" - "@aws-sdk/types" "3.887.0" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/types" "^4.5.0" + "@aws-sdk/middleware-user-agent" "3.910.0" + "@aws-sdk/types" "3.910.0" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@aws-sdk/xml-builder@3.887.0": - version "3.887.0" - resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.887.0.tgz#376754d19384bbe5b8139c0a0e6521a4a6500c67" - integrity sha512-lMwgWK1kNgUhHGfBvO/5uLe7TKhycwOn3eRCqsKPT9aPCx/HWuTlpcQp8oW2pCRGLS7qzcxqpQulcD+bbUL7XQ== +"@aws-sdk/xml-builder@3.910.0": + version "3.910.0" + resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.910.0.tgz#71b74ef82ab0c9b349c92eaea93e6b6499f8a4e9" + integrity sha512-UK0NzRknzUITYlkDibDSgkWvhhC11OLhhhGajl6pYCACup+6QE4SsLvmAGMkyNtGVCJ6Q+BM6PwDCBZyBgwl9A== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" + fast-xml-parser "5.2.5" tslib "^2.6.2" "@aws/lambda-invoke-store@^0.0.1": @@ -1045,80 +1044,79 @@ dependencies: "@sinonjs/commons" "^3.0.0" -"@smithy/abort-controller@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.1.1.tgz#9b3872ab6b2c061486175c281dadc0a853260533" - integrity sha512-vkzula+IwRvPR6oKQhMYioM3A/oX/lFCZiwuxkQbRhqJS2S4YRY2k7k/SyR2jMf3607HLtbEwlRxi0ndXHMjRg== +"@smithy/abort-controller@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.2.2.tgz#b8f20189bfd6d8489ff79aa2e40d44f0eab58d60" + integrity sha512-fPbcmEI+A6QiGOuumTpKSo7z+9VYr5DLN8d5/8jDJOwmt4HAKy/UGuRstCMpKbtr+FMaHH4pvFinSAbIAYCHZQ== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/config-resolver@^4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.2.1.tgz#12c24e550e2675e03a78bec64a652ed129bce718" - integrity sha512-FXil8q4QN7mgKwU2hCLm0ltab8NyY/1RiqEf25Jnf6WLS3wmb11zGAoLETqg1nur2Aoibun4w4MjeN9CMJ4G6A== +"@smithy/config-resolver@^4.3.2": + version "4.3.2" + resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.3.2.tgz#731f36d21a486965ffbe54e97f188ad72c7b1d2f" + integrity sha512-F/G+VaulIebINyfvcoXmODgIc7JU/lxWK9/iI0Divxyvd2QWB7/ZcF7JKwMssWI6/zZzlMkq/Pt6ow2AOEebPw== dependencies: - "@smithy/node-config-provider" "^4.2.1" - "@smithy/types" "^4.5.0" - "@smithy/util-config-provider" "^4.1.0" - "@smithy/util-middleware" "^4.1.1" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/types" "^4.7.1" + "@smithy/util-config-provider" "^4.2.0" + "@smithy/util-middleware" "^4.2.2" tslib "^2.6.2" -"@smithy/core@^3.11.0": - version "3.11.0" - resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.11.0.tgz#18ee04696ca35889046169e422a894bea1bec59d" - integrity sha512-Abs5rdP1o8/OINtE49wwNeWuynCu0kme1r4RI3VXVrHr4odVDG7h7mTnw1WXXfN5Il+c25QOnrdL2y56USfxkA== - dependencies: - "@smithy/middleware-serde" "^4.1.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" - "@smithy/util-base64" "^4.1.0" - "@smithy/util-body-length-browser" "^4.1.0" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-stream" "^4.3.1" - "@smithy/util-utf8" "^4.1.0" - "@types/uuid" "^9.0.1" +"@smithy/core@^3.16.1": + version "3.16.1" + resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.16.1.tgz#8887cf8e27bafae3c5566630e58b5c61f164aafd" + integrity sha512-yRx5ag3xEQ/yGvyo80FVukS7ZkeUP49Vbzg0MjfHLkuCIgg5lFtaEJfZR178KJmjWPqLU4d0P4k7SKgF9UkOaQ== + dependencies: + "@smithy/middleware-serde" "^4.2.2" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" + "@smithy/util-base64" "^4.3.0" + "@smithy/util-body-length-browser" "^4.2.0" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-stream" "^4.5.2" + "@smithy/util-utf8" "^4.2.0" + "@smithy/uuid" "^1.1.0" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/credential-provider-imds@^4.0.7", "@smithy/credential-provider-imds@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.1.1.tgz#e1535a0121a98a2d872eaffc2470eccc057cebd5" - integrity sha512-1WdBfM9DwA59pnpIizxnUvBf/de18p4GP+6zP2AqrlFzoW3ERpZaT4QueBR0nS9deDMaQRkBlngpVlnkuuTisQ== +"@smithy/credential-provider-imds@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.2.2.tgz#515acdfb852ae49962d57a3c9bb609bdc9dda4da" + integrity sha512-hOjFTK+4mfehDnfjNkPqHUKBKR2qmlix5gy7YzruNbTdeoBE3QkfNCPvuCK2r05VUJ02QQ9bz2G41CxhSexsMw== dependencies: - "@smithy/node-config-provider" "^4.2.1" - "@smithy/property-provider" "^4.1.1" - "@smithy/types" "^4.5.0" - "@smithy/url-parser" "^4.1.1" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/property-provider" "^4.2.2" + "@smithy/types" "^4.7.1" + "@smithy/url-parser" "^4.2.2" tslib "^2.6.2" -"@smithy/fetch-http-handler@^5.2.1": - version "5.2.1" - resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.2.1.tgz#fe284a00f1b3a35edf9fba454d287b7f74ef20af" - integrity sha512-5/3wxKNtV3wO/hk1is+CZUhL8a1yy/U+9u9LKQ9kZTkMsHaQjJhc3stFfiujtMnkITjzWfndGA2f7g9Uh9vKng== +"@smithy/fetch-http-handler@^5.3.3": + version "5.3.3" + resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.3.3.tgz#8ffe0cf73b06256a9af2d0dd773fdfec5aefb49d" + integrity sha512-cipIcM3xQ5NdIVwcRb37LaQwIxZNMEZb/ZOPmLFS9uGo9TGx2dGCyMBj9oT7ypH4TUD/kOTc/qHmwQzthrSk+g== dependencies: - "@smithy/protocol-http" "^5.2.1" - "@smithy/querystring-builder" "^4.1.1" - "@smithy/types" "^4.5.0" - "@smithy/util-base64" "^4.1.0" + "@smithy/protocol-http" "^5.3.2" + "@smithy/querystring-builder" "^4.2.2" + "@smithy/types" "^4.7.1" + "@smithy/util-base64" "^4.3.0" tslib "^2.6.2" -"@smithy/hash-node@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.1.1.tgz#86ceca92487492267e944e4f4507106b731e7971" - integrity sha512-H9DIU9WBLhYrvPs9v4sYvnZ1PiAI0oc8CgNQUJ1rpN3pP7QADbTOUjchI2FB764Ub0DstH5xbTqcMJu1pnVqxA== +"@smithy/hash-node@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.2.2.tgz#5511a4461733a597a3cd42f903c2980808838a47" + integrity sha512-xuOPGrF2GUP+9og5NU02fplRVjJjMhAaY8ZconB3eLKjv/VSV9/s+sFf72MYO5Q2jcSRVk/ywZHpyGbE3FYnFQ== dependencies: - "@smithy/types" "^4.5.0" - "@smithy/util-buffer-from" "^4.1.0" - "@smithy/util-utf8" "^4.1.0" + "@smithy/types" "^4.7.1" + "@smithy/util-buffer-from" "^4.2.0" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" -"@smithy/invalid-dependency@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.1.1.tgz#2511335ff889944701c7d2a3b1e4a4d6fe9ddfab" - integrity sha512-1AqLyFlfrrDkyES8uhINRlJXmHA2FkG+3DY8X+rmLSqmFwk3DJnvhyGzyByPyewh2jbmV+TYQBEfngQax8IFGg== +"@smithy/invalid-dependency@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.2.2.tgz#ef6987b72edbc00eea453085695d24bb5bd11dc5" + integrity sha512-Z0844Zpoid5L1DmKX2+cn2Qu9i3XWjhzwYBRJEWrKJwjUuhEkzf37jKPj9dYFsZeKsAbS2qI0JyLsYafbXJvpA== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" "@smithy/is-array-buffer@^2.2.0": @@ -1128,201 +1126,200 @@ dependencies: tslib "^2.6.2" -"@smithy/is-array-buffer@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-4.1.0.tgz#d18a2f22280e7173633cb91a9bdb6f3d8a6560b8" - integrity sha512-ePTYUOV54wMogio+he4pBybe8fwg4sDvEVDBU8ZlHOZXbXK3/C0XfJgUCu6qAZcawv05ZhZzODGUerFBPsPUDQ== +"@smithy/is-array-buffer@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-4.2.0.tgz#b0f874c43887d3ad44f472a0f3f961bcce0550c2" + integrity sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ== dependencies: tslib "^2.6.2" -"@smithy/middleware-content-length@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.1.1.tgz#eaea7bd14c7a0b64aef87b8c372c2a04d7b9cb72" - integrity sha512-9wlfBBgTsRvC2JxLJxv4xDGNBrZuio3AgSl0lSFX7fneW2cGskXTYpFxCdRYD2+5yzmsiTuaAJD1Wp7gWt9y9w== +"@smithy/middleware-content-length@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.2.2.tgz#f8c0f42578f6540e9610d5804da6c07cad0ce2e2" + integrity sha512-aJ7LAuIXStF6EqzRVX9kAW+6/sYoJJv0QqoFrz2BhA9r/85kLYOJ6Ph47wYSGBxzSLxsYT5jqgMw/qpbv1+m+w== dependencies: - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/middleware-endpoint@^4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.2.1.tgz#54c61a113e6da7b615724d03517879d377d3888d" - integrity sha512-fUTMmQvQQZakXOuKizfu7fBLDpwvWZjfH6zUK2OLsoNZRZGbNUdNSdLJHpwk1vS208jtDjpUIskh+JoA8zMzZg== - dependencies: - "@smithy/core" "^3.11.0" - "@smithy/middleware-serde" "^4.1.1" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/shared-ini-file-loader" "^4.1.1" - "@smithy/types" "^4.5.0" - "@smithy/url-parser" "^4.1.1" - "@smithy/util-middleware" "^4.1.1" +"@smithy/middleware-endpoint@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.3.3.tgz#af8b097f0ac16e9478c6467b73bb2a0379b1105d" + integrity sha512-CfxQ6X9L87/3C67Po6AGWXsx8iS4w2BO8vQEZJD6hwqg2vNRC/lMa2O5wXYCG9tKotdZ0R8KG33TS7kpUnYKiw== + dependencies: + "@smithy/core" "^3.16.1" + "@smithy/middleware-serde" "^4.2.2" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" + "@smithy/url-parser" "^4.2.2" + "@smithy/util-middleware" "^4.2.2" tslib "^2.6.2" -"@smithy/middleware-retry@^4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.2.1.tgz#61be10c06e183c392a3769cb8b03c7846b37bee7" - integrity sha512-JzfvjwSJXWRl7LkLgIRTUTd2Wj639yr3sQGpViGNEOjtb0AkAuYqRAHs+jSOI/LPC0ZTjmFVVtfrCICMuebexw== - dependencies: - "@smithy/node-config-provider" "^4.2.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/service-error-classification" "^4.1.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-retry" "^4.1.1" - "@types/uuid" "^9.0.1" +"@smithy/middleware-retry@^4.4.3": + version "4.4.3" + resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.4.3.tgz#5e5dbb4a65e56d4879562e094f207523bf498585" + integrity sha512-EHnKGeFuzbmER4oSl/VJDxPLi+aiZUb3nk5KK8eNwHjMhI04jHlui2ZkaBzMfNmXOgymaS6zV//fyt6PSnI1ow== + dependencies: + "@smithy/node-config-provider" "^4.3.2" + "@smithy/protocol-http" "^5.3.2" + "@smithy/service-error-classification" "^4.2.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-retry" "^4.2.2" + "@smithy/uuid" "^1.1.0" tslib "^2.6.2" - uuid "^9.0.1" -"@smithy/middleware-serde@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.1.1.tgz#cfb99f53c744d7730928235cbe66cc7ff8a8a9b2" - integrity sha512-lh48uQdbCoj619kRouev5XbWhCwRKLmphAif16c4J6JgJ4uXjub1PI6RL38d3BLliUvSso6klyB/LTNpWSNIyg== +"@smithy/middleware-serde@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.2.2.tgz#8e6d4126bbe65b4848ea7207c3cb370e9bfe2eb4" + integrity sha512-tDMPMBCsA1GBxanShhPvQYwdiau3NmctUp+eELMhUTDua+EUrugXlaKCnTMMoEB5mbHFebdv81uJPkVP02oihA== dependencies: - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/middleware-stack@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.1.1.tgz#1d533fde4ccbb62d7fc0f0b8ac518b7e4791e311" - integrity sha512-ygRnniqNcDhHzs6QAPIdia26M7e7z9gpkIMUe/pK0RsrQ7i5MblwxY8078/QCnGq6AmlUUWgljK2HlelsKIb/A== +"@smithy/middleware-stack@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.2.2.tgz#98bd2da83666d97a3c40c54db4d370ddca4fca32" + integrity sha512-7rgzDyLOQouh1bC6gOXnCGSX2dqvbOclgClsFkj735xQM2CHV63Ams8odNZGJgcqnBsEz44V/pDGHU6ALEUD+w== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/node-config-provider@^4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.2.1.tgz#31be8865dbea9a9f23aee278a6728317d0ed0250" - integrity sha512-AIA0BJZq2h295J5NeCTKhg1WwtdTA/GqBCaVjk30bDgMHwniUETyh5cP9IiE9VrId7Kt8hS7zvREVMTv1VfA6g== +"@smithy/node-config-provider@^4.3.2": + version "4.3.2" + resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.3.2.tgz#07d41720cc94c1f5a35045ce45c626bb7d049dc9" + integrity sha512-u38G0Audi2ORsL0QnzhopZ3yweMblQf8CZNbzUJ3wfTtZ7OiOwOzee0Nge/3dKeG/8lx0kt8K0kqDi6sYu0oKQ== dependencies: - "@smithy/property-provider" "^4.1.1" - "@smithy/shared-ini-file-loader" "^4.1.1" - "@smithy/types" "^4.5.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/shared-ini-file-loader" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/node-http-handler@^4.2.1": - version "4.2.1" - resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.2.1.tgz#d7ab8e31659030d3d5a68f0982f15c00b1e67a0c" - integrity sha512-REyybygHlxo3TJICPF89N2pMQSf+p+tBJqpVe1+77Cfi9HBPReNjTgtZ1Vg73exq24vkqJskKDpfF74reXjxfw== +"@smithy/node-http-handler@^4.4.1": + version "4.4.1" + resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.4.1.tgz#7fc69a36f7f0f20b2068d1addb30316d99f45365" + integrity sha512-9gKJoL45MNyOCGTG082nmx0A6KrbLVQ+5QSSKyzRi0AzL0R81u3wC1+nPvKXgTaBdAKM73fFPdCBHpmtipQwdQ== dependencies: - "@smithy/abort-controller" "^4.1.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/querystring-builder" "^4.1.1" - "@smithy/types" "^4.5.0" + "@smithy/abort-controller" "^4.2.2" + "@smithy/protocol-http" "^5.3.2" + "@smithy/querystring-builder" "^4.2.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/property-provider@^4.0.5", "@smithy/property-provider@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.1.1.tgz#6e11ae6729840314afed05fd6ab48f62c654116b" - integrity sha512-gm3ZS7DHxUbzC2wr8MUCsAabyiXY0gaj3ROWnhSx/9sPMc6eYLMM4rX81w1zsMaObj2Lq3PZtNCC1J6lpEY7zg== +"@smithy/property-provider@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.2.2.tgz#6e11832658c21d2b3ba3470ce3ab30c34090a906" + integrity sha512-MW7MfI+qYe/Ue5RH0uEztEKB+vBlOMM+1Dz68qzTsY8fC9kanXMFPEVdiq35JTGKWt5wZAjU1R0uXYEjK2MM1g== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/protocol-http@^5.1.2", "@smithy/protocol-http@^5.2.1": - version "5.2.1" - resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.2.1.tgz#33f2b8e4e1082c3ae0372d1322577e6fa71d7824" - integrity sha512-T8SlkLYCwfT/6m33SIU/JOVGNwoelkrvGjFKDSDtVvAXj/9gOT78JVJEas5a+ETjOu4SVvpCstKgd0PxSu/aHw== +"@smithy/protocol-http@^5.1.2", "@smithy/protocol-http@^5.3.2": + version "5.3.2" + resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.3.2.tgz#b24152e6077e923300a31a99a9d46d41d6ca83e8" + integrity sha512-nkKOI8xEkBXUmdxsFExomOb+wkU+Xgn0Fq2LMC7YIX5r4YPUg7PLayV/s/u3AtbyjWYlrvN7nAiDTLlqSdUjHw== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/querystring-builder@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.1.1.tgz#4d35c1735de8214055424045a117fa5d1d5cdec1" - integrity sha512-J9b55bfimP4z/Jg1gNo+AT84hr90p716/nvxDkPGCD4W70MPms0h8KF50RDRgBGZeL83/u59DWNqJv6tEP/DHA== +"@smithy/querystring-builder@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.2.2.tgz#1fed7a26cc600215a5b412d3c2fc7a2b838e56dd" + integrity sha512-YgXvq89o+R/8zIoeuXYv8Ysrbwgjx+iVYu9QbseqZjMDAhIg/FRt7jis0KASYFtd/Cnsnz4/nYTJXkJDWe8wHg== dependencies: - "@smithy/types" "^4.5.0" - "@smithy/util-uri-escape" "^4.1.0" + "@smithy/types" "^4.7.1" + "@smithy/util-uri-escape" "^4.2.0" tslib "^2.6.2" -"@smithy/querystring-parser@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.1.1.tgz#21b861439b2db16abeb0a6789b126705fa25eea1" - integrity sha512-63TEp92YFz0oQ7Pj9IuI3IgnprP92LrZtRAkE3c6wLWJxfy/yOPRt39IOKerVr0JS770olzl0kGafXlAXZ1vng== +"@smithy/querystring-parser@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.2.2.tgz#d82c408ab1fa457b67413ec1480e4f1b61bdaa09" + integrity sha512-DczOD2yJy3NXcv1JvhjFC7bIb/tay6nnIRD/qrzBaju5lrkVBOwCT3Ps37tra20wy8PicZpworStK7ZcI9pCRQ== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/service-error-classification@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.1.1.tgz#86a615298ae406c3b6c7dc63c1c1738c54cfdfc6" - integrity sha512-Iam75b/JNXyDE41UvrlM6n8DNOa/r1ylFyvgruTUx7h2Uk7vDNV9AAwP1vfL1fOL8ls0xArwEGVcGZVd7IO/Cw== +"@smithy/service-error-classification@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.2.2.tgz#ffc41b08ccbf80f3ea2177eb38c12eeb4a37dc2f" + integrity sha512-1X17cMLwe/vb4RpZbQVpJ1xQQ7fhQKggMdt3qjdV3+6QNllzvUXyS3WFnyaFWLyaGqfYHKkNONbO1fBCMQyZtQ== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" -"@smithy/shared-ini-file-loader@^4.0.5", "@smithy/shared-ini-file-loader@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.1.1.tgz#d4a748bb8027e1111635464c9b1e546d608fc089" - integrity sha512-YkpikhIqGc4sfXeIbzSj10t2bJI/sSoP5qxLue6zG+tEE3ngOBSm8sO3+djacYvS/R5DfpxN/L9CyZsvwjWOAQ== +"@smithy/shared-ini-file-loader@^4.3.2": + version "4.3.2" + resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.3.2.tgz#d1ba2663723c9ac052252006347a1d6bf074bc3b" + integrity sha512-AWnLgSmOTdDXM8aZCN4Im0X07M3GGffeL9vGfea4mdKZD0cPT9yLF9SsRbEa00tHLI+KfubDrmjpaKT2pM4GdQ== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/signature-v4@^5.1.2", "@smithy/signature-v4@^5.1.3": - version "5.2.1" - resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.2.1.tgz#0048489d2f1b3c888382595a085edd31967498f8" - integrity sha512-M9rZhWQLjlQVCCR37cSjHfhriGRN+FQ8UfgrYNufv66TJgk+acaggShl3KS5U/ssxivvZLlnj7QH2CUOKlxPyA== - dependencies: - "@smithy/is-array-buffer" "^4.1.0" - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" - "@smithy/util-hex-encoding" "^4.1.0" - "@smithy/util-middleware" "^4.1.1" - "@smithy/util-uri-escape" "^4.1.0" - "@smithy/util-utf8" "^4.1.0" +"@smithy/signature-v4@^5.1.2", "@smithy/signature-v4@^5.3.2": + version "5.3.2" + resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.3.2.tgz#1b876451d9e065114a920df210f295cf6e353c9f" + integrity sha512-BRnQGGyaRSSL0KtjjFF9YoSSg8qzSqHMub4H2iKkd+LZNzZ1b7H5amslZBzi+AnvuwPMyeiNv0oqay/VmIuoRA== + dependencies: + "@smithy/is-array-buffer" "^4.2.0" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" + "@smithy/util-hex-encoding" "^4.2.0" + "@smithy/util-middleware" "^4.2.2" + "@smithy/util-uri-escape" "^4.2.0" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" -"@smithy/smithy-client@^4.6.1": - version "4.6.1" - resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.6.1.tgz#4bebcf313431bd274da0b28c7ddc4ba335f9994b" - integrity sha512-WolVLDb9UTPMEPPOncrCt6JmAMCSC/V2y5gst2STWJ5r7+8iNac+EFYQnmvDCYMfOLcilOSEpm5yXZXwbLak1Q== - dependencies: - "@smithy/core" "^3.11.0" - "@smithy/middleware-endpoint" "^4.2.1" - "@smithy/middleware-stack" "^4.1.1" - "@smithy/protocol-http" "^5.2.1" - "@smithy/types" "^4.5.0" - "@smithy/util-stream" "^4.3.1" +"@smithy/smithy-client@^4.8.1": + version "4.8.1" + resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.8.1.tgz#b929fba7780f2e7ceb9a4278b52ccf9fd983e1fa" + integrity sha512-N5wK57pVThzLVK5NgmHxocTy5auqGDGQ+JsL5RjCTriPt8JLYgXT0Awa915zCpzc9hXHDOKqDX5g9BFdwkSfUA== + dependencies: + "@smithy/core" "^3.16.1" + "@smithy/middleware-endpoint" "^4.3.3" + "@smithy/middleware-stack" "^4.2.2" + "@smithy/protocol-http" "^5.3.2" + "@smithy/types" "^4.7.1" + "@smithy/util-stream" "^4.5.2" tslib "^2.6.2" -"@smithy/types@^4.5.0": - version "4.5.0" - resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.5.0.tgz#850e334662a1ef1286c35814940c80880400a370" - integrity sha512-RkUpIOsVlAwUIZXO1dsz8Zm+N72LClFfsNqf173catVlvRZiwPy0x2u0JLEA4byreOPKDZPGjmPDylMoP8ZJRg== +"@smithy/types@^4.7.1": + version "4.7.1" + resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.7.1.tgz#9171d1bcfbbc4579d73d96cb9a7e1895b291e8e9" + integrity sha512-WwP7vzoDyzvIFLzF5UhLQ6AsEx/PvSObzlNtJNW3lLy+BaSvTqCU628QKVvcJI/dydlAS1mSHQP7anKcxDcOxA== dependencies: tslib "^2.6.2" -"@smithy/url-parser@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.1.1.tgz#0e9a5e72b3cf9d7ab7305f9093af5528d9debaf6" - integrity sha512-bx32FUpkhcaKlEoOMbScvc93isaSiRM75pQ5IgIBaMkT7qMlIibpPRONyx/0CvrXHzJLpOn/u6YiDX2hcvs7Dg== +"@smithy/url-parser@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.2.2.tgz#e39d03013877d16a10104d652354ffb37fbc704e" + integrity sha512-s2EYKukaswzjiHJCss6asB1F4zjRc0E/MFyceAKzb3+wqKA2Z/+Gfhb5FP8xVVRHBAvBkregaQAydifgbnUlCw== dependencies: - "@smithy/querystring-parser" "^4.1.1" - "@smithy/types" "^4.5.0" + "@smithy/querystring-parser" "^4.2.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/util-base64@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-base64/-/util-base64-4.1.0.tgz#5965026081d9aef4a8246f5702807570abe538b2" - integrity sha512-RUGd4wNb8GeW7xk+AY5ghGnIwM96V0l2uzvs/uVHf+tIuVX2WSvynk5CxNoBCsM2rQRSZElAo9rt3G5mJ/gktQ== +"@smithy/util-base64@^4.3.0": + version "4.3.0" + resolved "https://registry.yarnpkg.com/@smithy/util-base64/-/util-base64-4.3.0.tgz#5e287b528793aa7363877c1a02cd880d2e76241d" + integrity sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ== dependencies: - "@smithy/util-buffer-from" "^4.1.0" - "@smithy/util-utf8" "^4.1.0" + "@smithy/util-buffer-from" "^4.2.0" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" -"@smithy/util-body-length-browser@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-body-length-browser/-/util-body-length-browser-4.1.0.tgz#636bdf4bc878c546627dab4b9b0e4db31b475be7" - integrity sha512-V2E2Iez+bo6bUMOTENPr6eEmepdY8Hbs+Uc1vkDKgKNA/brTJqOW/ai3JO1BGj9GbCeLqw90pbbH7HFQyFotGQ== +"@smithy/util-body-length-browser@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-body-length-browser/-/util-body-length-browser-4.2.0.tgz#04e9fc51ee7a3e7f648a4b4bcdf96c350cfa4d61" + integrity sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg== dependencies: tslib "^2.6.2" -"@smithy/util-body-length-node@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-body-length-node/-/util-body-length-node-4.1.0.tgz#646750e4af58f97254a5d5cfeaba7d992f0152ec" - integrity sha512-BOI5dYjheZdgR9XiEM3HJcEMCXSoqbzu7CzIgYrx0UtmvtC3tC2iDGpJLsSRFffUpy8ymsg2ARMP5fR8mtuUQQ== +"@smithy/util-body-length-node@^4.2.1": + version "4.2.1" + resolved "https://registry.yarnpkg.com/@smithy/util-body-length-node/-/util-body-length-node-4.2.1.tgz#79c8a5d18e010cce6c42d5cbaf6c1958523e6fec" + integrity sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA== dependencies: tslib "^2.6.2" @@ -1334,96 +1331,95 @@ "@smithy/is-array-buffer" "^2.2.0" tslib "^2.6.2" -"@smithy/util-buffer-from@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-4.1.0.tgz#21f9e644a0eb41226d92e4eff763f76a7db7e9cc" - integrity sha512-N6yXcjfe/E+xKEccWEKzK6M+crMrlwaCepKja0pNnlSkm6SjAeLKKA++er5Ba0I17gvKfN/ThV+ZOx/CntKTVw== +"@smithy/util-buffer-from@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-4.2.0.tgz#7abd12c4991b546e7cee24d1e8b4bfaa35c68a9d" + integrity sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew== dependencies: - "@smithy/is-array-buffer" "^4.1.0" + "@smithy/is-array-buffer" "^4.2.0" tslib "^2.6.2" -"@smithy/util-config-provider@^4.0.0", "@smithy/util-config-provider@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-config-provider/-/util-config-provider-4.1.0.tgz#6a07d73446c1e9a46d7a3c125f2a9301060bc957" - integrity sha512-swXz2vMjrP1ZusZWVTB/ai5gK+J8U0BWvP10v9fpcFvg+Xi/87LHvHfst2IgCs1i0v4qFZfGwCmeD/KNCdJZbQ== +"@smithy/util-config-provider@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-config-provider/-/util-config-provider-4.2.0.tgz#2e4722937f8feda4dcb09672c59925a4e6286cfc" + integrity sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q== dependencies: tslib "^2.6.2" -"@smithy/util-defaults-mode-browser@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.1.1.tgz#40b9659d6fc15aa1101e440d1a92579cb66ebfa3" - integrity sha512-hA1AKIHFUMa9Tl6q6y8p0pJ9aWHCCG8s57flmIyLE0W7HcJeYrYtnqXDcGnftvXEhdQnSexyegXnzzTGk8bKLA== +"@smithy/util-defaults-mode-browser@^4.3.2": + version "4.3.2" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.2.tgz#138373b8ea111d492aaa1204783555902b656718" + integrity sha512-6JvKHZ5GORYkEZ2+yJKEHp6dQQKng+P/Mu3g3CDy0fRLQgXEO8be+FLrBGGb4kB9lCW6wcQDkN7kRiGkkVAXgg== dependencies: - "@smithy/property-provider" "^4.1.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" - bowser "^2.11.0" + "@smithy/property-provider" "^4.2.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/util-defaults-mode-node@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.1.1.tgz#bca834c5ee16949bf8d0db9ac7bf988ad0d3ce10" - integrity sha512-RGSpmoBrA+5D2WjwtK7tto6Pc2wO9KSXKLpLONhFZ8VyuCbqlLdiDAfuDTNY9AJe4JoE+Cx806cpTQQoQ71zPQ== - dependencies: - "@smithy/config-resolver" "^4.2.1" - "@smithy/credential-provider-imds" "^4.1.1" - "@smithy/node-config-provider" "^4.2.1" - "@smithy/property-provider" "^4.1.1" - "@smithy/smithy-client" "^4.6.1" - "@smithy/types" "^4.5.0" +"@smithy/util-defaults-mode-node@^4.2.3": + version "4.2.3" + resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.3.tgz#61b88224104dacde523f5b4a6b2876b853f10414" + integrity sha512-bkTGuMmKvghfCh9NayADrQcjngoF8P+XTgID5r3rm+8LphFiuM6ERqpBS95YyVaLjDetnKus9zK/bGlkQOOtNQ== + dependencies: + "@smithy/config-resolver" "^4.3.2" + "@smithy/credential-provider-imds" "^4.2.2" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/property-provider" "^4.2.2" + "@smithy/smithy-client" "^4.8.1" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/util-endpoints@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.1.1.tgz#62c7e10e3a685c9cbb4080220d9e819ee79be8ff" - integrity sha512-qB4R9kO0SetA11Rzu6MVGFIaGYX3p6SGGGfWwsKnC6nXIf0n/0AKVwRTsYsz9ToN8CeNNtNgQRwKFBndGJZdyw== +"@smithy/util-endpoints@^3.2.2": + version "3.2.2" + resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.2.2.tgz#df06dedf55671ed83a3cd0ff226e5f5120351b18" + integrity sha512-ZQi6fFTMBkfwwSPAlcGzArmNILz33QH99CL8jDfVWrzwVVcZc56Mge10jGk0zdRgWPXyL1/OXKjfw4vT5VtRQg== dependencies: - "@smithy/node-config-provider" "^4.2.1" - "@smithy/types" "^4.5.0" + "@smithy/node-config-provider" "^4.3.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/util-hex-encoding@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-hex-encoding/-/util-hex-encoding-4.1.0.tgz#9b27cf0c25d0de2c8ebfe75cc20df84e5014ccc9" - integrity sha512-1LcueNN5GYC4tr8mo14yVYbh/Ur8jHhWOxniZXii+1+ePiIbsLZ5fEI0QQGtbRRP5mOhmooos+rLmVASGGoq5w== +"@smithy/util-hex-encoding@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-hex-encoding/-/util-hex-encoding-4.2.0.tgz#1c22ea3d1e2c3a81ff81c0a4f9c056a175068a7b" + integrity sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw== dependencies: tslib "^2.6.2" -"@smithy/util-middleware@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.1.1.tgz#e19749a127499c9bdada713a8afd807d92d846e2" - integrity sha512-CGmZ72mL29VMfESz7S6dekqzCh8ZISj3B+w0g1hZFXaOjGTVaSqfAEFAq8EGp8fUL+Q2l8aqNmt8U1tglTikeg== +"@smithy/util-middleware@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.2.2.tgz#9b10aad9acaad2c1379ebc49faf501c53af7116b" + integrity sha512-wL9tZwWKy0x0qf6ffN7tX5CT03hb1e7XpjdepaKfKcPcyn5+jHAWPqivhF1Sw/T5DYi9wGcxsX8Lu07MOp2Puw== dependencies: - "@smithy/types" "^4.5.0" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/util-retry@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.1.1.tgz#f4a99d9b0ffb9e4bb119ac5a24e54e54d891e22c" - integrity sha512-jGeybqEZ/LIordPLMh5bnmnoIgsqnp4IEimmUp5c5voZ8yx+5kAlN5+juyr7p+f7AtZTgvhmInQk4Q0UVbrZ0Q== +"@smithy/util-retry@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.2.2.tgz#14cb8d9e61427019aa6359bcb56efe8be46d1c07" + integrity sha512-TlbnWAOoCuG2PgY0Hi3BGU1w2IXs3xDsD4E8WDfKRZUn2qx3wRA9mbYnmpWHPswTJCz2L+ebh+9OvD42sV4mNw== dependencies: - "@smithy/service-error-classification" "^4.1.1" - "@smithy/types" "^4.5.0" + "@smithy/service-error-classification" "^4.2.2" + "@smithy/types" "^4.7.1" tslib "^2.6.2" -"@smithy/util-stream@^4.3.1": - version "4.3.1" - resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.3.1.tgz#63cce0f09d99d75142c6dc8fe03e55ac0171de47" - integrity sha512-khKkW/Jqkgh6caxMWbMuox9+YfGlsk9OnHOYCGVEdYQb/XVzcORXHLYUubHmmda0pubEDncofUrPNniS9d+uAA== - dependencies: - "@smithy/fetch-http-handler" "^5.2.1" - "@smithy/node-http-handler" "^4.2.1" - "@smithy/types" "^4.5.0" - "@smithy/util-base64" "^4.1.0" - "@smithy/util-buffer-from" "^4.1.0" - "@smithy/util-hex-encoding" "^4.1.0" - "@smithy/util-utf8" "^4.1.0" +"@smithy/util-stream@^4.5.2": + version "4.5.2" + resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.5.2.tgz#a7de6b029682bf6dae66fbc19edf490a5aa7a1d4" + integrity sha512-RWYVuQVKtNbr7E0IxV8XHDId714yHPTxU6dHScd6wSMWAXboErzTG7+xqcL+K3r0Xg0cZSlfuNhl1J0rzMLSSw== + dependencies: + "@smithy/fetch-http-handler" "^5.3.3" + "@smithy/node-http-handler" "^4.4.1" + "@smithy/types" "^4.7.1" + "@smithy/util-base64" "^4.3.0" + "@smithy/util-buffer-from" "^4.2.0" + "@smithy/util-hex-encoding" "^4.2.0" + "@smithy/util-utf8" "^4.2.0" tslib "^2.6.2" -"@smithy/util-uri-escape@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-uri-escape/-/util-uri-escape-4.1.0.tgz#ed4a5c498f1da07122ca1e3df4ca3e2c67c6c18a" - integrity sha512-b0EFQkq35K5NHUYxU72JuoheM6+pytEVUGlTwiFxWFpmddA+Bpz3LgsPRIpBk8lnPE47yT7AF2Egc3jVnKLuPg== +"@smithy/util-uri-escape@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-uri-escape/-/util-uri-escape-4.2.0.tgz#096a4cec537d108ac24a68a9c60bee73fc7e3a9e" + integrity sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA== dependencies: tslib "^2.6.2" @@ -1435,21 +1431,28 @@ "@smithy/util-buffer-from" "^2.2.0" tslib "^2.6.2" -"@smithy/util-utf8@^4.1.0": - version "4.1.0" - resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-4.1.0.tgz#912c33c1a06913f39daa53da79cb8f7ab740d97b" - integrity sha512-mEu1/UIXAdNYuBcyEPbjScKi/+MQVXNIuY/7Cm5XLIWe319kDrT5SizBE95jqtmEXoDbGoZxKLCMttdZdqTZKQ== +"@smithy/util-utf8@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-4.2.0.tgz#8b19d1514f621c44a3a68151f3d43e51087fed9d" + integrity sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw== dependencies: - "@smithy/util-buffer-from" "^4.1.0" + "@smithy/util-buffer-from" "^4.2.0" tslib "^2.6.2" -"@smithy/util-waiter@^4.1.1": - version "4.1.1" - resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-4.1.1.tgz#5b74429ca9e37f61838800b919d0063b1a865bef" - integrity sha512-PJBmyayrlfxM7nbqjomF4YcT1sApQwZio0NHSsT0EzhJqljRmvhzqZua43TyEs80nJk2Cn2FGPg/N8phH6KeCQ== +"@smithy/util-waiter@^4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-4.2.2.tgz#77f91d03c46a5bc87fd48e5636d33561640c04fd" + integrity sha512-ZkanmAo9F47PIxuxaQ1E+VPn/jNIbOM7cpJyABfyI15jnr4l5toSDVXPRuvHIyC2f4fMYC7EKe5DIde7YP7c7A== + dependencies: + "@smithy/abort-controller" "^4.2.2" + "@smithy/types" "^4.7.1" + tslib "^2.6.2" + +"@smithy/uuid@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@smithy/uuid/-/uuid-1.1.0.tgz#9fd09d3f91375eab94f478858123387df1cda987" + integrity sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw== dependencies: - "@smithy/abort-controller" "^4.1.1" - "@smithy/types" "^4.5.0" tslib "^2.6.2" "@tootallnate/once@2": @@ -1575,16 +1578,16 @@ form-data "^4.0.4" "@types/node@*": - version "24.3.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-24.3.1.tgz#b0a3fb2afed0ef98e8d7f06d46ef6349047709f3" - integrity sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g== + version "24.7.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-24.7.2.tgz#5adf66b6e2ac5cab1d10a2ad3682e359cb652f4a" + integrity sha512-/NbVmcGTP+lj5oa4yiYxxeBjRivKQ5Ns1eSZeB99ExsEQ6rX5XYU1Zy/gGxY/ilqtD4Etx9mKyrPxZRetiahhA== dependencies: - undici-types "~7.10.0" + undici-types "~7.14.0" "@types/node@^18.19.70": - version "18.19.124" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.124.tgz#6f49e4fab8274910691a900e8a14316cbf3c7a31" - integrity sha512-hY4YWZFLs3ku6D2Gqo3RchTd9VRCcrjqp/I0mmohYeUVA5Y8eCXKJEasHxLAJVZRJuQogfd1GiJ9lgogBgKeuQ== + version "18.19.130" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz#da4c6324793a79defb7a62cba3947ec5add00d59" + integrity sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg== dependencies: undici-types "~5.26.4" @@ -1615,11 +1618,6 @@ resolved "https://registry.yarnpkg.com/@types/url-join/-/url-join-4.0.1.tgz#4989c97f969464647a8586c7252d97b449cdc045" integrity sha512-wDXw9LEEUHyV+7UWy7U315nrJGJ7p1BzaCxDpEoLr789Dk1WDVMMlf3iBfbG2F8NdWnYyFbtTxUn2ZNbm1Q4LQ== -"@types/uuid@^9.0.1": - version "9.0.8" - resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.8.tgz#7545ba4fc3c003d6c756f651f3bf163d8f0f29ba" - integrity sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA== - "@types/yargs-parser@*": version "21.0.3" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" @@ -1948,6 +1946,11 @@ base64-js@^1.3.1: resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== +baseline-browser-mapping@^2.8.9: + version "2.8.16" + resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz#e17789673e7f4b7654f81ab2ef25e96ab6a895f9" + integrity sha512-OMu3BGQ4E7P1ErFsIPpbJh0qvDudM/UuJeHgkAvfWe+0HFJCXh+t/l8L6fVLR55RI/UbKrVLnAXZSVwd9ysWYw== + bowser@^2.11.0: version "2.12.1" resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.12.1.tgz#f9ad78d7aebc472feb63dd9635e3ce2337e0e2c1" @@ -1968,14 +1971,15 @@ braces@^3.0.3: dependencies: fill-range "^7.1.1" -browserslist@^4.24.0: - version "4.25.4" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.4.tgz#ebdd0e1d1cf3911834bab3a6cd7b917d9babf5af" - integrity sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg== +browserslist@^4.24.0, browserslist@^4.26.3: + version "4.26.3" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz#40fbfe2d1cd420281ce5b1caa8840049c79afb56" + integrity sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w== dependencies: - caniuse-lite "^1.0.30001737" - electron-to-chromium "^1.5.211" - node-releases "^2.0.19" + baseline-browser-mapping "^2.8.9" + caniuse-lite "^1.0.30001746" + electron-to-chromium "^1.5.227" + node-releases "^2.0.21" update-browserslist-db "^1.1.3" bs-logger@^0.2.6: @@ -2036,10 +2040,10 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001737: - version "1.0.30001741" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001741.tgz#67fb92953edc536442f3c9da74320774aa523143" - integrity sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw== +caniuse-lite@^1.0.30001746: + version "1.0.30001750" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz#c229f82930033abd1502c6f73035356cf528bfbc" + integrity sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ== chalk@^4.0.0, chalk@^4.1.0: version "4.1.2" @@ -2179,9 +2183,9 @@ data-urls@^3.0.2: whatwg-url "^11.0.0" debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b" - integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ== + version "4.4.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" + integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== dependencies: ms "^2.1.3" @@ -2231,10 +2235,10 @@ dunder-proto@^1.0.1: es-errors "^1.3.0" gopd "^1.2.0" -electron-to-chromium@^1.5.211: - version "1.5.217" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.217.tgz#71285850356ef48bc08275b26f0f355721e0f17d" - integrity sha512-Pludfu5iBxp9XzNl0qq2G87hdD17ZV7h5T4n6rQXDi3nCyloBV3jreE9+8GC6g4X/5yxqVgXEURpcLtM0WS4jA== +electron-to-chromium@^1.5.227: + version "1.5.237" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz#eacf61cef3f6345d0069ab427585c5a04d7084f0" + integrity sha512-icUt1NvfhGLar5lSWH3tHNzablaA5js3HVHacQimfP8ViEBOQv+L7DKEuHdbTZ0SKCO1ogTJTIL1Gwk9S6Qvcg== emittery@^0.13.1: version "0.13.1" @@ -2260,9 +2264,9 @@ entities@^6.0.0: integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + version "1.3.4" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz#b3a8d8bb6f92eecc1629e3e27d3c8607a8a32414" + integrity sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ== dependencies: is-arrayish "^0.2.1" @@ -3216,9 +3220,9 @@ lines-and-columns@^1.1.6: integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== loader-runner@^4.2.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1" - integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg== + version "4.3.1" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.1.tgz#6c76ed29b0ccce9af379208299f07f876de737e3" + integrity sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q== locate-path@^5.0.0: version "5.0.0" @@ -3337,10 +3341,10 @@ node-int64@^0.4.0: resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== -node-releases@^2.0.19: - version "2.0.20" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.20.tgz#e26bb79dbdd1e64a146df389c699014c611cbc27" - integrity sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA== +node-releases@^2.0.21: + version "2.0.23" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.23.tgz#2ecf3d7ba571ece05c67c77e5b7b1b6fb9e18cea" + integrity sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg== normalize-path@^3.0.0: version "3.0.0" @@ -3600,10 +3604,10 @@ saxes@^6.0.0: dependencies: xmlchars "^2.2.0" -schema-utils@^4.3.0, schema-utils@^4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.2.tgz#0c10878bf4a73fd2b1dfd14b9462b26788c806ae" - integrity sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ== +schema-utils@^4.3.0, schema-utils@^4.3.3: + version "4.3.3" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.3.tgz#5b1850912fa31df90716963d45d9121fdfc09f46" + integrity sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA== dependencies: "@types/json-schema" "^7.0.9" ajv "^8.9.0" @@ -3615,10 +3619,10 @@ semver@^6.3.0, semver@^6.3.1: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== -semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.7.2: - version "7.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58" - integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA== +semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.7.3: + version "7.7.3" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946" + integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q== serialize-javascript@^6.0.2: version "6.0.2" @@ -3807,10 +3811,10 @@ symbol-tree@^3.2.4: resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== -tapable@^2.1.1, tapable@^2.2.0: - version "2.2.3" - resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.3.tgz#4b67b635b2d97578a06a2713d2f04800c237e99b" - integrity sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg== +tapable@^2.2.0, tapable@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz#7e3ea6d5ca31ba8e078b560f0d83ce9a14aa8be6" + integrity sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg== terser-webpack-plugin@^5.3.11: version "5.3.14" @@ -3877,9 +3881,9 @@ tr46@~0.0.3: integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== ts-jest@^29.1.2: - version "29.4.1" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.1.tgz#42d33beb74657751d315efb9a871fe99e3b9b519" - integrity sha512-SaeUtjfpg9Uqu8IbeDKtdaS0g8lS6FT6OzM3ezrDfErPJPHNDo/Ey+VFGP1bQIDfagYDLyRpd7O15XpG1Es2Uw== + version "29.4.5" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.5.tgz#a6b0dc401e521515d5342234be87f1ca96390a6f" + integrity sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q== dependencies: bs-logger "^0.2.6" fast-json-stable-stringify "^2.1.0" @@ -3887,7 +3891,7 @@ ts-jest@^29.1.2: json5 "^2.2.3" lodash.memoize "^4.1.2" make-error "^1.3.6" - semver "^7.7.2" + semver "^7.7.3" type-fest "^4.41.0" yargs-parser "^21.1.1" @@ -3937,10 +3941,10 @@ undici-types@~5.26.4: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== -undici-types@~7.10.0: - version "7.10.0" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.10.0.tgz#4ac2e058ce56b462b056e629cc6a02393d3ff350" - integrity sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag== +undici-types@~7.14.0: + version "7.14.0" + resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.14.0.tgz#4c037b32ca4d7d62fae042174604341588bc0840" + integrity sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA== universalify@^0.2.0: version "0.2.0" @@ -3968,11 +3972,6 @@ url-parse@^1.5.3: querystringify "^2.1.1" requires-port "^1.0.0" -uuid@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" - integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== - v8-to-istanbul@^9.0.1: version "9.3.0" resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz#b9572abfa62bd556c16d75fdebc1a411d5ff3175" @@ -3996,7 +3995,7 @@ walker@^1.0.8: dependencies: makeerror "1.0.12" -watchpack@^2.4.1: +watchpack@^2.4.4: version "2.4.4" resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.4.tgz#473bda72f0850453da6425081ea46fc0d7602947" integrity sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA== @@ -4020,9 +4019,9 @@ webpack-sources@^3.3.3: integrity sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg== webpack@^5.91.0: - version "5.101.3" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.101.3.tgz#3633b2375bb29ea4b06ffb1902734d977bc44346" - integrity sha512-7b0dTKR3Ed//AD/6kkx/o7duS8H3f1a4w3BYpIriX4BzIhjkn4teo05cptsxvLesHFKK5KObnadmCHBwGc+51A== + version "5.102.1" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.102.1.tgz#1003a3024741a96ba99c37431938bf61aad3d988" + integrity sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ== dependencies: "@types/eslint-scope" "^3.7.7" "@types/estree" "^1.0.8" @@ -4032,7 +4031,7 @@ webpack@^5.91.0: "@webassemblyjs/wasm-parser" "^1.14.1" acorn "^8.15.0" acorn-import-phases "^1.0.3" - browserslist "^4.24.0" + browserslist "^4.26.3" chrome-trace-event "^1.0.2" enhanced-resolve "^5.17.3" es-module-lexer "^1.2.1" @@ -4044,10 +4043,10 @@ webpack@^5.91.0: loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - schema-utils "^4.3.2" - tapable "^2.1.1" + schema-utils "^4.3.3" + tapable "^2.3.0" terser-webpack-plugin "^5.3.11" - watchpack "^2.4.1" + watchpack "^2.4.4" webpack-sources "^3.3.3" whatwg-encoding@^2.0.0: