From c430bc82468d0e64f9835407dbf5ca8a86b3535f Mon Sep 17 00:00:00 2001
From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com>
Date: Wed, 20 Nov 2024 19:14:27 +0000
Subject: [PATCH] SDK regeneration (#209)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
---
package.json | 6 +-
reference.md | 10 +-
src/Client.ts | 56 +-
src/api/client/requests/ChatRequest.ts | 6 +-
src/api/client/requests/ChatStreamRequest.ts | 6 +-
src/api/client/requests/EmbedRequest.ts | 2 +-
src/api/client/requests/GenerateRequest.ts | 2 +-
.../client/requests/GenerateStreamRequest.ts | 2 +-
src/api/resources/connectors/client/Client.ts | 26 +-
src/api/resources/embedJobs/client/Client.ts | 16 +-
src/api/resources/finetuning/client/Client.ts | 28 +-
.../resources/finetuning/types/Status.ts | 6 +-
src/api/resources/models/client/Client.ts | 8 +-
src/api/resources/v2/client/Client.ts | 25 +-
.../v2/client/requests/V2ChatRequest.ts | 10 +-
.../v2/client/requests/V2ChatStreamRequest.ts | 10 +-
.../v2/client/requests/V2EmbedRequest.ts | 2 +-
src/api/types/ApiMetaBilledUnits.ts | 2 +
src/api/types/ChatContentDeltaEvent.ts | 1 +
src/api/types/ChatDebugEvent.ts | 9 +
src/api/types/ChatRequestSafetyMode.ts | 4 +-
src/api/types/ChatResponse.ts | 3 +-
src/api/types/ChatStreamRequestSafetyMode.ts | 4 +-
src/api/types/ChatToolCallsChunkEvent.ts | 1 +
src/api/types/EmbedByTypeResponse.ts | 2 +
src/api/types/EmbedFloatsResponse.ts | 2 +
src/api/types/Image.ts | 14 +
src/api/types/JsonResponseFormat.ts | 2 +-
src/api/types/JsonResponseFormatV2.ts | 2 +-
src/api/types/LogprobItem.ts | 12 +
src/api/types/NonStreamedChatResponse.ts | 2 +
src/api/types/SingleGeneration.ts | 2 +-
src/api/types/StreamedChatResponse.ts | 7 +-
src/api/types/ToolMessageV2.ts | 6 +-
src/api/types/ToolMessageV2Content.ts | 2 +-
src/api/types/index.ts | 3 +
.../v2/client/requests/V2ChatRequest.ts | 2 +
.../v2/client/requests/V2ChatStreamRequest.ts | 2 +
src/serialization/types/ApiMetaBilledUnits.ts | 2 +
.../types/ChatContentDeltaEvent.ts | 3 +
src/serialization/types/ChatDebugEvent.ts | 21 +
src/serialization/types/ChatResponse.ts | 7 +-
.../types/ChatToolCallsChunkEvent.ts | 2 +
.../types/EmbedByTypeResponse.ts | 3 +
.../types/EmbedFloatsResponse.ts | 3 +
src/serialization/types/Image.ts | 23 +
src/serialization/types/LogprobItem.ts | 22 +
.../types/NonStreamedChatResponse.ts | 2 +
.../types/StreamedChatResponse.ts | 9 +-
src/serialization/types/ToolMessageV2.ts | 4 +-
src/serialization/types/index.ts | 3 +
yarn.lock | 1855 ++++++++---------
52 files changed, 1194 insertions(+), 1070 deletions(-)
create mode 100644 src/api/types/ChatDebugEvent.ts
create mode 100644 src/api/types/Image.ts
create mode 100644 src/api/types/LogprobItem.ts
create mode 100644 src/serialization/types/ChatDebugEvent.ts
create mode 100644 src/serialization/types/Image.ts
create mode 100644 src/serialization/types/LogprobItem.ts
diff --git a/package.json b/package.json
index bc097893..d928492b 100644
--- a/package.json
+++ b/package.json
@@ -1,17 +1,15 @@
{
"name": "cohere-ai",
- "version": "7.14.0",
+ "version": "7.13.1",
"private": false,
"repository": "https://github.com/cohere-ai/cohere-typescript",
"main": "./index.js",
"types": "./index.d.ts",
- "bin": "./src/test/cloud-tests/script.ts",
"scripts": {
"format": "prettier . --write --ignore-unknown",
"build": "tsc",
"prepack": "cp -rv dist/. .",
- "test": "jest",
- "cloud-tests": "npx ts-node src/test/cloud-tests/script.ts"
+ "test": "jest"
},
"dependencies": {
"url-join": "4.0.1",
diff --git a/reference.md b/reference.md
index 7a7128b5..b70b950d 100644
--- a/reference.md
+++ b/reference.md
@@ -71,7 +71,7 @@ await client.checkApiKey();
-
-Generates a message from the model in response to a provided conversation. To learn more about the features of the Chat API follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
+Generates a text response to a user message and streams it down, token by token. To learn how to use the Chat API with streaming follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
Follow the [Migration Guide](https://docs.cohere.com/v2/docs/migrating-v1-to-v2) for instructions on moving from API v1 to API v2.
@@ -128,6 +128,7 @@ await client.v2.chatStream({
k: 1.1,
p: 1.1,
returnPrompt: true,
+ logprobs: true,
});
```
@@ -175,7 +176,7 @@ await client.v2.chatStream({
-
-Generates a message from the model in response to a provided conversation. To learn more about the features of the Chat API follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
+Generates a text response to a user message and streams it down, token by token. To learn how to use the Chat API with streaming follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
Follow the [Migration Guide](https://docs.cohere.com/v2/docs/migrating-v1-to-v2) for instructions on moving from API v1 to API v2.
@@ -199,6 +200,7 @@ await client.v2.chat({
{
role: "tool",
toolCallId: "messages",
+ content: "messages",
},
],
});
@@ -252,7 +254,7 @@ This endpoint returns text embeddings. An embedding is a list of floating point
Embeddings can be used to create text classifiers as well as empower semantic search. To learn more about embeddings, see the embedding page.
-If you want to learn more how to use the embedding model, have a look at the [Semantic Search Guide](/docs/semantic-search).
+If you want to learn more how to use the embedding model, have a look at the [Semantic Search Guide](https://docs.cohere.com/docs/semantic-search).
@@ -1029,7 +1031,7 @@ await client.connectors.list();
-
-Creates a new connector. The connector is tested during registration and will cancel registration when the test is unsuccessful. See ['Creating and Deploying a Connector'](https://docs.cohere.com/docs/creating-and-deploying-a-connector) for more information.
+Creates a new connector. The connector is tested during registration and will cancel registration when the test is unsuccessful. See ['Creating and Deploying a Connector'](https://docs.cohere.com/v1/docs/creating-and-deploying-a-connector) for more information.
diff --git a/src/Client.ts b/src/Client.ts
index aa9ad940..7f4a804a 100644
--- a/src/Client.ts
+++ b/src/Client.ts
@@ -63,8 +63,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
Accepts: accepts != null ? accepts : undefined,
@@ -241,8 +241,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
Accepts: accepts != null ? accepts : undefined,
@@ -360,7 +360,7 @@ export class CohereClient {
/**
*
- * This API is marked as "Legacy" and is no longer maintained. Follow the [migration guide](/docs/migrating-from-cogenerate-to-cochat) to start using the Chat API.
+ * This API is marked as "Legacy" and is no longer maintained. Follow the [migration guide](https://docs.cohere.com/docs/migrating-from-cogenerate-to-cochat) to start using the Chat API.
*
* Generates realistic text conditioned on a given input.
*/
@@ -382,8 +382,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -511,7 +511,7 @@ export class CohereClient {
/**
*
- * This API is marked as "Legacy" and is no longer maintained. Follow the [migration guide](/docs/migrating-from-cogenerate-to-cochat) to start using the Chat API.
+ * This API is marked as "Legacy" and is no longer maintained. Follow the [migration guide](https://docs.cohere.com/docs/migrating-from-cogenerate-to-cochat) to start using the Chat API.
*
* Generates realistic text conditioned on a given input.
*
@@ -553,8 +553,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -670,11 +670,11 @@ export class CohereClient {
}
/**
- * This endpoint returns text embeddings. An embedding is a list of floating point numbers that captures semantic information about the text that it represents.
+ * This endpoint returns text and image embeddings. An embedding is a list of floating point numbers that captures semantic information about the content that it represents.
*
- * Embeddings can be used to create text classifiers as well as empower semantic search. To learn more about embeddings, see the embedding page.
+ * Embeddings can be used to create classifiers as well as empower semantic search. To learn more about embeddings, see the embedding page.
*
- * If you want to learn more how to use the embedding model, have a look at the [Semantic Search Guide](/docs/semantic-search).
+ * If you want to learn more how to use the embedding model, have a look at the [Semantic Search Guide](https://docs.cohere.com/docs/semantic-search).
*
* @param {Cohere.EmbedRequest} request
* @param {CohereClient.RequestOptions} requestOptions - Request-specific configuration.
@@ -712,8 +712,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -867,8 +867,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -1022,8 +1022,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -1137,7 +1137,7 @@ export class CohereClient {
/**
*
- * This API is marked as "Legacy" and is no longer maintained. Follow the [migration guide](/docs/migrating-from-cogenerate-to-cochat) to start using the Chat API.
+ * This API is marked as "Legacy" and is no longer maintained. Follow the [migration guide](https://docs.cohere.com/docs/migrating-from-cogenerate-to-cochat) to start using the Chat API.
*
* Generates a summary in English for a given text.
*
@@ -1179,8 +1179,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -1334,8 +1334,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -1489,8 +1489,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -1637,8 +1637,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
diff --git a/src/api/client/requests/ChatRequest.ts b/src/api/client/requests/ChatRequest.ts
index 66b6e41a..6317d601 100644
--- a/src/api/client/requests/ChatRequest.ts
+++ b/src/api/client/requests/ChatRequest.ts
@@ -85,7 +85,7 @@ export interface ChatRequest {
*/
promptTruncation?: Cohere.ChatRequestPromptTruncation;
/**
- * Accepts `{"id": "web-search"}`, and/or the `"id"` for a custom [connector](https://docs.cohere.com/docs/connectors), if you've [created](https://docs.cohere.com/docs/creating-and-deploying-a-connector) one.
+ * Accepts `{"id": "web-search"}`, and/or the `"id"` for a custom [connector](https://docs.cohere.com/docs/connectors), if you've [created](https://docs.cohere.com/v1/docs/creating-and-deploying-a-connector) one.
*
* When specified, the model's reply will be enriched with information found by querying each of the connectors (RAG).
*
@@ -264,12 +264,12 @@ export interface ChatRequest {
forceSingleStep?: boolean;
responseFormat?: Cohere.ResponseFormat;
/**
- * Used to select the [safety instruction](/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
+ * Used to select the [safety instruction](https://docs.cohere.com/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
* When `NONE` is specified, the safety instruction will be omitted.
*
* Safety modes are not yet configurable in combination with `tools`, `tool_results` and `documents` parameters.
*
- * **Note**: This parameter is only compatible with models [Command R 08-2024](/docs/command-r#august-2024-release), [Command R+ 08-2024](/docs/command-r-plus#august-2024-release) and newer.
+ * **Note**: This parameter is only compatible with models [Command R 08-2024](https://docs.cohere.com/docs/command-r#august-2024-release), [Command R+ 08-2024](https://docs.cohere.com/docs/command-r-plus#august-2024-release) and newer.
*
* 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 42f14a29..84ae1019 100644
--- a/src/api/client/requests/ChatStreamRequest.ts
+++ b/src/api/client/requests/ChatStreamRequest.ts
@@ -157,7 +157,7 @@ export interface ChatStreamRequest {
*/
promptTruncation?: Cohere.ChatStreamRequestPromptTruncation;
/**
- * Accepts `{"id": "web-search"}`, and/or the `"id"` for a custom [connector](https://docs.cohere.com/docs/connectors), if you've [created](https://docs.cohere.com/docs/creating-and-deploying-a-connector) one.
+ * Accepts `{"id": "web-search"}`, and/or the `"id"` for a custom [connector](https://docs.cohere.com/docs/connectors), if you've [created](https://docs.cohere.com/v1/docs/creating-and-deploying-a-connector) one.
*
* When specified, the model's reply will be enriched with information found by querying each of the connectors (RAG).
*
@@ -336,12 +336,12 @@ export interface ChatStreamRequest {
forceSingleStep?: boolean;
responseFormat?: Cohere.ResponseFormat;
/**
- * Used to select the [safety instruction](/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
+ * Used to select the [safety instruction](https://docs.cohere.com/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
* When `NONE` is specified, the safety instruction will be omitted.
*
* Safety modes are not yet configurable in combination with `tools`, `tool_results` and `documents` parameters.
*
- * **Note**: This parameter is only compatible with models [Command R 08-2024](/docs/command-r#august-2024-release), [Command R+ 08-2024](/docs/command-r-plus#august-2024-release) and newer.
+ * **Note**: This parameter is only compatible with models [Command R 08-2024](https://docs.cohere.com/docs/command-r#august-2024-release), [Command R+ 08-2024](https://docs.cohere.com/docs/command-r-plus#august-2024-release) and newer.
*
* 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 adc3b64d..0868472e 100644
--- a/src/api/client/requests/EmbedRequest.ts
+++ b/src/api/client/requests/EmbedRequest.ts
@@ -20,7 +20,7 @@ export interface EmbedRequest {
/**
* Defaults to embed-english-v2.0
*
- * The identifier of the model. Smaller "light" models are faster, while larger models will perform better. [Custom models](/docs/training-custom-models) can also be supplied with their full ID.
+ * The identifier of the model. Smaller "light" models are faster, while larger models will perform better. [Custom models](https://docs.cohere.com/docs/training-custom-models) can also be supplied with their full ID.
*
* Available models and corresponding embedding dimensions:
*
diff --git a/src/api/client/requests/GenerateRequest.ts b/src/api/client/requests/GenerateRequest.ts
index 8a232fa3..e4169733 100644
--- a/src/api/client/requests/GenerateRequest.ts
+++ b/src/api/client/requests/GenerateRequest.ts
@@ -19,7 +19,7 @@ export interface GenerateRequest {
prompt: string;
/**
* The identifier of the model to generate with. Currently available models are `command` (default), `command-nightly` (experimental), `command-light`, and `command-light-nightly` (experimental).
- * Smaller, "light" models are faster, while larger models will perform better. [Custom models](/docs/training-custom-models) can also be supplied with their full ID.
+ * Smaller, "light" models are faster, while larger models will perform better. [Custom models](https://docs.cohere.com/docs/training-custom-models) can also be supplied with their full ID.
*/
model?: string;
/**
diff --git a/src/api/client/requests/GenerateStreamRequest.ts b/src/api/client/requests/GenerateStreamRequest.ts
index 0477a0b4..0d93c1b7 100644
--- a/src/api/client/requests/GenerateStreamRequest.ts
+++ b/src/api/client/requests/GenerateStreamRequest.ts
@@ -34,7 +34,7 @@ export interface GenerateStreamRequest {
prompt: string;
/**
* The identifier of the model to generate with. Currently available models are `command` (default), `command-nightly` (experimental), `command-light`, and `command-light-nightly` (experimental).
- * Smaller, "light" models are faster, while larger models will perform better. [Custom models](/docs/training-custom-models) can also be supplied with their full ID.
+ * Smaller, "light" models are faster, while larger models will perform better. [Custom models](https://docs.cohere.com/docs/training-custom-models) can also be supplied with their full ID.
*/
model?: string;
/**
diff --git a/src/api/resources/connectors/client/Client.ts b/src/api/resources/connectors/client/Client.ts
index bdac1875..045dc5ec 100644
--- a/src/api/resources/connectors/client/Client.ts
+++ b/src/api/resources/connectors/client/Client.ts
@@ -82,8 +82,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -192,7 +192,7 @@ export class Connectors {
}
/**
- * Creates a new connector. The connector is tested during registration and will cancel registration when the test is unsuccessful. See ['Creating and Deploying a Connector'](https://docs.cohere.com/docs/creating-and-deploying-a-connector) for more information.
+ * Creates a new connector. The connector is tested during registration and will cancel registration when the test is unsuccessful. See ['Creating and Deploying a Connector'](https://docs.cohere.com/v1/docs/creating-and-deploying-a-connector) for more information.
*
* @param {Cohere.CreateConnectorRequest} request
* @param {Connectors.RequestOptions} requestOptions - Request-specific configuration.
@@ -233,8 +233,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -382,8 +382,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -529,8 +529,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -678,8 +678,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -838,8 +838,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
diff --git a/src/api/resources/embedJobs/client/Client.ts b/src/api/resources/embedJobs/client/Client.ts
index aa903398..273247d3 100644
--- a/src/api/resources/embedJobs/client/Client.ts
+++ b/src/api/resources/embedJobs/client/Client.ts
@@ -68,8 +68,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -219,8 +219,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -368,8 +368,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -512,8 +512,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
diff --git a/src/api/resources/finetuning/client/Client.ts b/src/api/resources/finetuning/client/Client.ts
index 4851400d..c20ec656 100644
--- a/src/api/resources/finetuning/client/Client.ts
+++ b/src/api/resources/finetuning/client/Client.ts
@@ -82,8 +82,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -181,8 +181,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -276,8 +276,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -366,8 +366,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -466,8 +466,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -577,8 +577,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -680,8 +680,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
diff --git a/src/api/resources/finetuning/resources/finetuning/types/Status.ts b/src/api/resources/finetuning/resources/finetuning/types/Status.ts
index e88cb447..9718b49a 100644
--- a/src/api/resources/finetuning/resources/finetuning/types/Status.ts
+++ b/src/api/resources/finetuning/resources/finetuning/types/Status.ts
@@ -7,12 +7,12 @@
*
* - STATUS_UNSPECIFIED: Unspecified status.
* - STATUS_FINETUNING: The fine-tuned model is being fine-tuned.
- * - STATUS_DEPLOYING_API: The fine-tuned model is being deployed.
+ * - STATUS_DEPLOYING_API: Deprecated: The fine-tuned model is being deployed.
* - STATUS_READY: The fine-tuned model is ready to receive requests.
* - STATUS_FAILED: The fine-tuned model failed.
* - STATUS_DELETED: The fine-tuned model was deleted.
- * - STATUS_TEMPORARILY_OFFLINE: The fine-tuned model is temporarily unavailable.
- * - STATUS_PAUSED: The fine-tuned model is paused (Vanilla only).
+ * - STATUS_TEMPORARILY_OFFLINE: Deprecated: The fine-tuned model is temporarily unavailable.
+ * - STATUS_PAUSED: Deprecated: The fine-tuned model is paused (Vanilla only).
* - STATUS_QUEUED: The fine-tuned model is queued for training.
*/
export type Status =
diff --git a/src/api/resources/models/client/Client.ts b/src/api/resources/models/client/Client.ts
index b686151e..4c7b62fa 100644
--- a/src/api/resources/models/client/Client.ts
+++ b/src/api/resources/models/client/Client.ts
@@ -69,8 +69,8 @@ export class Models {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -234,8 +234,8 @@ export class Models {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
diff --git a/src/api/resources/v2/client/Client.ts b/src/api/resources/v2/client/Client.ts
index bddcfef9..e4bbb762 100644
--- a/src/api/resources/v2/client/Client.ts
+++ b/src/api/resources/v2/client/Client.ts
@@ -35,7 +35,7 @@ export class V2 {
constructor(protected readonly _options: V2.Options = {}) {}
/**
- * Generates a message from the model in response to a provided conversation. To learn more about the features of the Chat API follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
+ * Generates a text response to a user message and streams it down, token by token. To learn how to use the Chat API with streaming follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
*
* Follow the [Migration Guide](https://docs.cohere.com/v2/docs/migrating-v1-to-v2) for instructions on moving from API v1 to API v2.
*/
@@ -57,8 +57,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -185,7 +185,7 @@ export class V2 {
}
/**
- * Generates a message from the model in response to a provided conversation. To learn more about the features of the Chat API follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
+ * Generates a text response to a user message and streams it down, token by token. To learn how to use the Chat API with streaming follow our [Text Generation guides](https://docs.cohere.com/v2/docs/chat-api).
*
* Follow the [Migration Guide](https://docs.cohere.com/v2/docs/migrating-v1-to-v2) for instructions on moving from API v1 to API v2.
*
@@ -209,7 +209,8 @@ export class V2 {
* model: "model",
* messages: [{
* role: "tool",
- * toolCallId: "messages"
+ * toolCallId: "messages",
+ * content: "messages"
* }]
* })
*/
@@ -228,8 +229,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -349,7 +350,7 @@ export class V2 {
*
* Embeddings can be used to create text classifiers as well as empower semantic search. To learn more about embeddings, see the embedding page.
*
- * If you want to learn more how to use the embedding model, have a look at the [Semantic Search Guide](/docs/semantic-search).
+ * If you want to learn more how to use the embedding model, have a look at the [Semantic Search Guide](https://docs.cohere.com/docs/semantic-search).
*
* @param {Cohere.V2EmbedRequest} request
* @param {V2.RequestOptions} requestOptions - Request-specific configuration.
@@ -391,8 +392,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
@@ -547,8 +548,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.14.0",
- "User-Agent": "cohere-ai/7.14.0",
+ "X-Fern-SDK-Version": "7.13.1",
+ "User-Agent": "cohere-ai/7.13.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
diff --git a/src/api/resources/v2/client/requests/V2ChatRequest.ts b/src/api/resources/v2/client/requests/V2ChatRequest.ts
index 4d9066b0..d8d78973 100644
--- a/src/api/resources/v2/client/requests/V2ChatRequest.ts
+++ b/src/api/resources/v2/client/requests/V2ChatRequest.ts
@@ -10,7 +10,8 @@ import * as Cohere from "../../../../index";
* model: "model",
* messages: [{
* role: "tool",
- * toolCallId: "messages"
+ * toolCallId: "messages",
+ * content: "messages"
* }]
* }
*/
@@ -84,7 +85,7 @@ export interface V2ChatRequest {
*/
presencePenalty?: number;
/**
- * Ensures only the top `k` most likely tokens are considered for generation at each step.
+ * Ensures that only the top `k` most likely tokens are considered for generation at each step. When `k` is set to `0`, k-sampling is disabled.
* Defaults to `0`, min value of `0`, max value of `500`.
*
*/
@@ -97,4 +98,9 @@ export interface V2ChatRequest {
p?: number;
/** Whether to return the prompt in the response. */
returnPrompt?: boolean;
+ /**
+ * Whether to return the log probabilities of the generated tokens. Defaults to false.
+ *
+ */
+ logprobs?: boolean;
}
diff --git a/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts b/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts
index afa72241..89e5cf0f 100644
--- a/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts
+++ b/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts
@@ -40,7 +40,8 @@ import * as Cohere from "../../../../index";
* presencePenalty: 1.1,
* k: 1.1,
* p: 1.1,
- * returnPrompt: true
+ * returnPrompt: true,
+ * logprobs: true
* }
*/
export interface V2ChatStreamRequest {
@@ -113,7 +114,7 @@ export interface V2ChatStreamRequest {
*/
presencePenalty?: number;
/**
- * Ensures only the top `k` most likely tokens are considered for generation at each step.
+ * Ensures that only the top `k` most likely tokens are considered for generation at each step. When `k` is set to `0`, k-sampling is disabled.
* Defaults to `0`, min value of `0`, max value of `500`.
*
*/
@@ -126,4 +127,9 @@ export interface V2ChatStreamRequest {
p?: number;
/** Whether to return the prompt in the response. */
returnPrompt?: boolean;
+ /**
+ * Whether to return the log probabilities of the generated tokens. Defaults to false.
+ *
+ */
+ logprobs?: boolean;
}
diff --git a/src/api/resources/v2/client/requests/V2EmbedRequest.ts b/src/api/resources/v2/client/requests/V2EmbedRequest.ts
index face8471..1952b15e 100644
--- a/src/api/resources/v2/client/requests/V2EmbedRequest.ts
+++ b/src/api/resources/v2/client/requests/V2EmbedRequest.ts
@@ -24,7 +24,7 @@ export interface V2EmbedRequest {
/**
* Defaults to embed-english-v2.0
*
- * The identifier of the model. Smaller "light" models are faster, while larger models will perform better. [Custom models](/docs/training-custom-models) can also be supplied with their full ID.
+ * The identifier of the model. Smaller "light" models are faster, while larger models will perform better. [Custom models](https://docs.cohere.com/docs/training-custom-models) can also be supplied with their full ID.
*
* Available models and corresponding embedding dimensions:
*
diff --git a/src/api/types/ApiMetaBilledUnits.ts b/src/api/types/ApiMetaBilledUnits.ts
index ffaf5974..050e2227 100644
--- a/src/api/types/ApiMetaBilledUnits.ts
+++ b/src/api/types/ApiMetaBilledUnits.ts
@@ -3,6 +3,8 @@
*/
export interface ApiMetaBilledUnits {
+ /** The number of billed images. */
+ images?: number;
/** The number of billed input tokens. */
inputTokens?: number;
/** The number of billed output tokens. */
diff --git a/src/api/types/ChatContentDeltaEvent.ts b/src/api/types/ChatContentDeltaEvent.ts
index 03bbfb70..e7ed836b 100644
--- a/src/api/types/ChatContentDeltaEvent.ts
+++ b/src/api/types/ChatContentDeltaEvent.ts
@@ -10,4 +10,5 @@ import * as Cohere from "../index";
export interface ChatContentDeltaEvent extends Cohere.ChatStreamEventType {
index?: number;
delta?: Cohere.ChatContentDeltaEventDelta;
+ logprobs?: Cohere.LogprobItem;
}
diff --git a/src/api/types/ChatDebugEvent.ts b/src/api/types/ChatDebugEvent.ts
new file mode 100644
index 00000000..831e10fd
--- /dev/null
+++ b/src/api/types/ChatDebugEvent.ts
@@ -0,0 +1,9 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as Cohere from "../index";
+
+export interface ChatDebugEvent extends Cohere.ChatStreamEvent {
+ prompt?: string;
+}
diff --git a/src/api/types/ChatRequestSafetyMode.ts b/src/api/types/ChatRequestSafetyMode.ts
index fbb8209f..a9b90d82 100644
--- a/src/api/types/ChatRequestSafetyMode.ts
+++ b/src/api/types/ChatRequestSafetyMode.ts
@@ -3,12 +3,12 @@
*/
/**
- * Used to select the [safety instruction](/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
+ * Used to select the [safety instruction](https://docs.cohere.com/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
* When `NONE` is specified, the safety instruction will be omitted.
*
* Safety modes are not yet configurable in combination with `tools`, `tool_results` and `documents` parameters.
*
- * **Note**: This parameter is only compatible with models [Command R 08-2024](/docs/command-r#august-2024-release), [Command R+ 08-2024](/docs/command-r-plus#august-2024-release) and newer.
+ * **Note**: This parameter is only compatible with models [Command R 08-2024](https://docs.cohere.com/docs/command-r#august-2024-release), [Command R+ 08-2024](https://docs.cohere.com/docs/command-r-plus#august-2024-release) and newer.
*
* Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
*/
diff --git a/src/api/types/ChatResponse.ts b/src/api/types/ChatResponse.ts
index 8723b5a4..ce6acd33 100644
--- a/src/api/types/ChatResponse.ts
+++ b/src/api/types/ChatResponse.ts
@@ -10,6 +10,7 @@ export interface ChatResponse {
finishReason: Cohere.ChatFinishReason;
/** The prompt that was used. Only present when `return_prompt` in the request is set to true. */
prompt?: string;
- message?: Cohere.AssistantMessageResponse;
+ message: Cohere.AssistantMessageResponse;
usage?: Cohere.Usage;
+ logprobs?: Cohere.LogprobItem[];
}
diff --git a/src/api/types/ChatStreamRequestSafetyMode.ts b/src/api/types/ChatStreamRequestSafetyMode.ts
index ba52a9e7..277a1f0b 100644
--- a/src/api/types/ChatStreamRequestSafetyMode.ts
+++ b/src/api/types/ChatStreamRequestSafetyMode.ts
@@ -3,12 +3,12 @@
*/
/**
- * Used to select the [safety instruction](/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
+ * Used to select the [safety instruction](https://docs.cohere.com/docs/safety-modes) inserted into the prompt. Defaults to `CONTEXTUAL`.
* When `NONE` is specified, the safety instruction will be omitted.
*
* Safety modes are not yet configurable in combination with `tools`, `tool_results` and `documents` parameters.
*
- * **Note**: This parameter is only compatible with models [Command R 08-2024](/docs/command-r#august-2024-release), [Command R+ 08-2024](/docs/command-r-plus#august-2024-release) and newer.
+ * **Note**: This parameter is only compatible with models [Command R 08-2024](https://docs.cohere.com/docs/command-r#august-2024-release), [Command R+ 08-2024](https://docs.cohere.com/docs/command-r-plus#august-2024-release) and newer.
*
* Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
*/
diff --git a/src/api/types/ChatToolCallsChunkEvent.ts b/src/api/types/ChatToolCallsChunkEvent.ts
index dbdf2856..bd2845ca 100644
--- a/src/api/types/ChatToolCallsChunkEvent.ts
+++ b/src/api/types/ChatToolCallsChunkEvent.ts
@@ -6,4 +6,5 @@ import * as Cohere from "../index";
export interface ChatToolCallsChunkEvent extends Cohere.ChatStreamEvent {
toolCallDelta: Cohere.ToolCallDelta;
+ text?: string;
}
diff --git a/src/api/types/EmbedByTypeResponse.ts b/src/api/types/EmbedByTypeResponse.ts
index 7a37fdb5..d546a006 100644
--- a/src/api/types/EmbedByTypeResponse.ts
+++ b/src/api/types/EmbedByTypeResponse.ts
@@ -10,5 +10,7 @@ export interface EmbedByTypeResponse {
embeddings: Cohere.EmbedByTypeResponseEmbeddings;
/** The text entries for which embeddings were returned. */
texts: string[];
+ /** The image entries for which embeddings were returned. */
+ images?: Cohere.Image[];
meta?: Cohere.ApiMeta;
}
diff --git a/src/api/types/EmbedFloatsResponse.ts b/src/api/types/EmbedFloatsResponse.ts
index 4b9cc749..47fd8939 100644
--- a/src/api/types/EmbedFloatsResponse.ts
+++ b/src/api/types/EmbedFloatsResponse.ts
@@ -10,5 +10,7 @@ export interface EmbedFloatsResponse {
embeddings: number[][];
/** The text entries for which embeddings were returned. */
texts: string[];
+ /** The image entries for which embeddings were returned. */
+ images?: Cohere.Image[];
meta?: Cohere.ApiMeta;
}
diff --git a/src/api/types/Image.ts b/src/api/types/Image.ts
new file mode 100644
index 00000000..96bbd28c
--- /dev/null
+++ b/src/api/types/Image.ts
@@ -0,0 +1,14 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+export interface Image {
+ /** Width of the image in pixels */
+ width: number;
+ /** Height of the image in pixels */
+ height: number;
+ /** Format of the image */
+ format: string;
+ /** Bit depth of the image */
+ bitDepth: number;
+}
diff --git a/src/api/types/JsonResponseFormat.ts b/src/api/types/JsonResponseFormat.ts
index ecece77c..98651e7f 100644
--- a/src/api/types/JsonResponseFormat.ts
+++ b/src/api/types/JsonResponseFormat.ts
@@ -4,7 +4,7 @@
export interface JsonResponseFormat {
/**
- * A JSON schema object that the output will adhere to. There are some restrictions we have on the schema, refer to [our guide](/docs/structured-outputs-json#schema-constraints) for more information.
+ * A JSON schema object that the output will adhere to. There are some restrictions we have on the schema, refer to [our guide](https://docs.cohere.com/docs/structured-outputs-json#schema-constraints) for more information.
* Example (required name and age object):
*
* ```json
diff --git a/src/api/types/JsonResponseFormatV2.ts b/src/api/types/JsonResponseFormatV2.ts
index 192fcc30..3e80d85b 100644
--- a/src/api/types/JsonResponseFormatV2.ts
+++ b/src/api/types/JsonResponseFormatV2.ts
@@ -4,7 +4,7 @@
export interface JsonResponseFormatV2 {
/**
- * A [JSON schema](https://json-schema.org/overview/what-is-jsonschema) object that the output will adhere to. There are some restrictions we have on the schema, refer to [our guide](/docs/structured-outputs-json#schema-constraints) for more information.
+ * A [JSON schema](https://json-schema.org/overview/what-is-jsonschema) object that the output will adhere to. There are some restrictions we have on the schema, refer to [our guide](https://docs.cohere.com/docs/structured-outputs-json#schema-constraints) for more information.
* Example (required name and age object):
*
* ```json
diff --git a/src/api/types/LogprobItem.ts b/src/api/types/LogprobItem.ts
new file mode 100644
index 00000000..7532f5c9
--- /dev/null
+++ b/src/api/types/LogprobItem.ts
@@ -0,0 +1,12 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+export interface LogprobItem {
+ /** The text chunk for which the log probabilities was calculated. */
+ text?: string;
+ /** The token ids of each token used to construct the text chunk. */
+ tokenIds: number[];
+ /** The log probability of each token used to construct the text chunk. */
+ logprobs?: number[];
+}
diff --git a/src/api/types/NonStreamedChatResponse.ts b/src/api/types/NonStreamedChatResponse.ts
index 92c00ee0..f9bbec28 100644
--- a/src/api/types/NonStreamedChatResponse.ts
+++ b/src/api/types/NonStreamedChatResponse.ts
@@ -9,6 +9,8 @@ export interface NonStreamedChatResponse {
text: string;
/** Unique identifier for the generated reply. Useful for submitting feedback. */
generationId?: string;
+ /** Unique identifier for the response. */
+ responseId?: string;
/** Inline citations for the generated reply. */
citations?: Cohere.ChatCitation[];
/** Documents seen by the model when generating the reply. */
diff --git a/src/api/types/SingleGeneration.ts b/src/api/types/SingleGeneration.ts
index ec404f9c..3ef6f92b 100644
--- a/src/api/types/SingleGeneration.ts
+++ b/src/api/types/SingleGeneration.ts
@@ -10,6 +10,6 @@ export interface SingleGeneration {
/** Refers to the nth generation. Only present when `num_generations` is greater than zero. */
index?: number;
likelihood?: number;
- /** Only returned if `return_likelihoods` is set to `GENERATION` or `ALL`. The likelihood refers to the average log-likelihood of the entire specified string, which is useful for [evaluating the performance of your model](likelihood-eval), especially if you've created a [custom model](/docs/training-custom-models). Individual token likelihoods provide the log-likelihood of each token. The first token will not have a likelihood. */
+ /** Only returned if `return_likelihoods` is set to `GENERATION` or `ALL`. The likelihood refers to the average log-likelihood of the entire specified string, which is useful for [evaluating the performance of your model](likelihood-eval), especially if you've created a [custom model](https://docs.cohere.com/docs/training-custom-models). Individual token likelihoods provide the log-likelihood of each token. The first token will not have a likelihood. */
tokenLikelihoods?: Cohere.SingleGenerationTokenLikelihoodsItem[];
}
diff --git a/src/api/types/StreamedChatResponse.ts b/src/api/types/StreamedChatResponse.ts
index 4d8605fc..1e5e659b 100644
--- a/src/api/types/StreamedChatResponse.ts
+++ b/src/api/types/StreamedChatResponse.ts
@@ -15,7 +15,8 @@ export type StreamedChatResponse =
| Cohere.StreamedChatResponse.CitationGeneration
| Cohere.StreamedChatResponse.ToolCallsGeneration
| Cohere.StreamedChatResponse.StreamEnd
- | Cohere.StreamedChatResponse.ToolCallsChunk;
+ | Cohere.StreamedChatResponse.ToolCallsChunk
+ | Cohere.StreamedChatResponse.Debug;
export declare namespace StreamedChatResponse {
interface StreamStart extends Cohere.ChatStreamStartEvent {
@@ -49,4 +50,8 @@ export declare namespace StreamedChatResponse {
interface ToolCallsChunk extends Cohere.ChatToolCallsChunkEvent {
eventType: "tool-calls-chunk";
}
+
+ interface Debug extends Cohere.ChatDebugEvent {
+ eventType: "debug";
+ }
}
diff --git a/src/api/types/ToolMessageV2.ts b/src/api/types/ToolMessageV2.ts
index 34b7fa5e..70eb7a4f 100644
--- a/src/api/types/ToolMessageV2.ts
+++ b/src/api/types/ToolMessageV2.ts
@@ -5,11 +5,11 @@
import * as Cohere from "../index";
/**
- * A message from the system.
+ * A message with Tool outputs.
*/
export interface ToolMessageV2 {
/** The id of the associated tool call that has provided the given content */
toolCallId: string;
- /** A single or list of outputs from a tool. The content should formatted as a JSON object string, or a list of tool content blocks */
- content?: Cohere.ToolMessageV2Content;
+ /** Outputs from a tool. The content should formatted as a JSON object string, or a list of tool content blocks */
+ content: Cohere.ToolMessageV2Content;
}
diff --git a/src/api/types/ToolMessageV2Content.ts b/src/api/types/ToolMessageV2Content.ts
index aa6e3508..1a062f6c 100644
--- a/src/api/types/ToolMessageV2Content.ts
+++ b/src/api/types/ToolMessageV2Content.ts
@@ -5,6 +5,6 @@
import * as Cohere from "../index";
/**
- * A single or list of outputs from a tool. The content should formatted as a JSON object string, or a list of tool content blocks
+ * Outputs from a tool. The content should formatted as a JSON object string, or a list of tool content blocks
*/
export type ToolMessageV2Content = string | Cohere.ToolContent[];
diff --git a/src/api/types/index.ts b/src/api/types/index.ts
index 3ca35181..4179ecb8 100644
--- a/src/api/types/index.ts
+++ b/src/api/types/index.ts
@@ -66,6 +66,7 @@ export * from "./ChatStreamEndEventFinishReason";
export * from "./ChatStreamEndEvent";
export * from "./ToolCallDelta";
export * from "./ChatToolCallsChunkEvent";
+export * from "./ChatDebugEvent";
export * from "./StreamedChatResponse";
export * from "./TextContent";
export * from "./Content";
@@ -103,6 +104,7 @@ export * from "./AssistantMessageResponse";
export * from "./UsageBilledUnits";
export * from "./UsageTokens";
export * from "./Usage";
+export * from "./LogprobItem";
export * from "./ChatResponse";
export * from "./ChatStreamEventType";
export * from "./ChatMessageStartEventDeltaMessage";
@@ -147,6 +149,7 @@ export * from "./GenerateStreamError";
export * from "./GenerateStreamedResponse";
export * from "./EmbedInputType";
export * from "./EmbeddingType";
+export * from "./Image";
export * from "./EmbedFloatsResponse";
export * from "./EmbedByTypeResponseEmbeddings";
export * from "./EmbedByTypeResponse";
diff --git a/src/serialization/resources/v2/client/requests/V2ChatRequest.ts b/src/serialization/resources/v2/client/requests/V2ChatRequest.ts
index d3faa417..839a7729 100644
--- a/src/serialization/resources/v2/client/requests/V2ChatRequest.ts
+++ b/src/serialization/resources/v2/client/requests/V2ChatRequest.ts
@@ -34,6 +34,7 @@ export const V2ChatRequest: core.serialization.Schema = core.serialization.object({
+ images: core.serialization.number().optional(),
inputTokens: core.serialization.property("input_tokens", core.serialization.number().optional()),
outputTokens: core.serialization.property("output_tokens", core.serialization.number().optional()),
searchUnits: core.serialization.property("search_units", core.serialization.number().optional()),
@@ -18,6 +19,7 @@ export const ApiMetaBilledUnits: core.serialization.ObjectSchema<
export declare namespace ApiMetaBilledUnits {
interface Raw {
+ images?: number | null;
input_tokens?: number | null;
output_tokens?: number | null;
search_units?: number | null;
diff --git a/src/serialization/types/ChatContentDeltaEvent.ts b/src/serialization/types/ChatContentDeltaEvent.ts
index 87ea0b4f..ae572cfa 100644
--- a/src/serialization/types/ChatContentDeltaEvent.ts
+++ b/src/serialization/types/ChatContentDeltaEvent.ts
@@ -6,6 +6,7 @@ import * as serializers from "../index";
import * as Cohere from "../../api/index";
import * as core from "../../core";
import { ChatContentDeltaEventDelta } from "./ChatContentDeltaEventDelta";
+import { LogprobItem } from "./LogprobItem";
import { ChatStreamEventType } from "./ChatStreamEventType";
export const ChatContentDeltaEvent: core.serialization.ObjectSchema<
@@ -15,6 +16,7 @@ export const ChatContentDeltaEvent: core.serialization.ObjectSchema<
.object({
index: core.serialization.number().optional(),
delta: ChatContentDeltaEventDelta.optional(),
+ logprobs: LogprobItem.optional(),
})
.extend(ChatStreamEventType);
@@ -22,5 +24,6 @@ export declare namespace ChatContentDeltaEvent {
interface Raw extends ChatStreamEventType.Raw {
index?: number | null;
delta?: ChatContentDeltaEventDelta.Raw | null;
+ logprobs?: LogprobItem.Raw | null;
}
}
diff --git a/src/serialization/types/ChatDebugEvent.ts b/src/serialization/types/ChatDebugEvent.ts
new file mode 100644
index 00000000..5be51e4c
--- /dev/null
+++ b/src/serialization/types/ChatDebugEvent.ts
@@ -0,0 +1,21 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as serializers from "../index";
+import * as Cohere from "../../api/index";
+import * as core from "../../core";
+import { ChatStreamEvent } from "./ChatStreamEvent";
+
+export const ChatDebugEvent: core.serialization.ObjectSchema =
+ core.serialization
+ .object({
+ prompt: core.serialization.string().optional(),
+ })
+ .extend(ChatStreamEvent);
+
+export declare namespace ChatDebugEvent {
+ interface Raw extends ChatStreamEvent.Raw {
+ prompt?: string | null;
+ }
+}
diff --git a/src/serialization/types/ChatResponse.ts b/src/serialization/types/ChatResponse.ts
index 5253aa5a..f039507f 100644
--- a/src/serialization/types/ChatResponse.ts
+++ b/src/serialization/types/ChatResponse.ts
@@ -8,14 +8,16 @@ import * as core from "../../core";
import { ChatFinishReason } from "./ChatFinishReason";
import { AssistantMessageResponse } from "./AssistantMessageResponse";
import { Usage } from "./Usage";
+import { LogprobItem } from "./LogprobItem";
export const ChatResponse: core.serialization.ObjectSchema =
core.serialization.object({
id: core.serialization.string(),
finishReason: core.serialization.property("finish_reason", ChatFinishReason),
prompt: core.serialization.string().optional(),
- message: AssistantMessageResponse.optional(),
+ message: AssistantMessageResponse,
usage: Usage.optional(),
+ logprobs: core.serialization.list(LogprobItem).optional(),
});
export declare namespace ChatResponse {
@@ -23,7 +25,8 @@ export declare namespace ChatResponse {
id: string;
finish_reason: ChatFinishReason.Raw;
prompt?: string | null;
- message?: AssistantMessageResponse.Raw | null;
+ message: AssistantMessageResponse.Raw;
usage?: Usage.Raw | null;
+ logprobs?: LogprobItem.Raw[] | null;
}
}
diff --git a/src/serialization/types/ChatToolCallsChunkEvent.ts b/src/serialization/types/ChatToolCallsChunkEvent.ts
index 6949b006..4c64789f 100644
--- a/src/serialization/types/ChatToolCallsChunkEvent.ts
+++ b/src/serialization/types/ChatToolCallsChunkEvent.ts
@@ -14,11 +14,13 @@ export const ChatToolCallsChunkEvent: core.serialization.ObjectSchema<
> = core.serialization
.object({
toolCallDelta: core.serialization.property("tool_call_delta", ToolCallDelta),
+ text: core.serialization.string().optional(),
})
.extend(ChatStreamEvent);
export declare namespace ChatToolCallsChunkEvent {
interface Raw extends ChatStreamEvent.Raw {
tool_call_delta: ToolCallDelta.Raw;
+ text?: string | null;
}
}
diff --git a/src/serialization/types/EmbedByTypeResponse.ts b/src/serialization/types/EmbedByTypeResponse.ts
index bcaa900a..b333ac1e 100644
--- a/src/serialization/types/EmbedByTypeResponse.ts
+++ b/src/serialization/types/EmbedByTypeResponse.ts
@@ -6,6 +6,7 @@ import * as serializers from "../index";
import * as Cohere from "../../api/index";
import * as core from "../../core";
import { EmbedByTypeResponseEmbeddings } from "./EmbedByTypeResponseEmbeddings";
+import { Image } from "./Image";
import { ApiMeta } from "./ApiMeta";
export const EmbedByTypeResponse: core.serialization.ObjectSchema<
@@ -15,6 +16,7 @@ export const EmbedByTypeResponse: core.serialization.ObjectSchema<
id: core.serialization.string(),
embeddings: EmbedByTypeResponseEmbeddings,
texts: core.serialization.list(core.serialization.string()),
+ images: core.serialization.list(Image).optional(),
meta: ApiMeta.optional(),
});
@@ -23,6 +25,7 @@ export declare namespace EmbedByTypeResponse {
id: string;
embeddings: EmbedByTypeResponseEmbeddings.Raw;
texts: string[];
+ images?: Image.Raw[] | null;
meta?: ApiMeta.Raw | null;
}
}
diff --git a/src/serialization/types/EmbedFloatsResponse.ts b/src/serialization/types/EmbedFloatsResponse.ts
index a300d5b3..7d905c32 100644
--- a/src/serialization/types/EmbedFloatsResponse.ts
+++ b/src/serialization/types/EmbedFloatsResponse.ts
@@ -5,6 +5,7 @@
import * as serializers from "../index";
import * as Cohere from "../../api/index";
import * as core from "../../core";
+import { Image } from "./Image";
import { ApiMeta } from "./ApiMeta";
export const EmbedFloatsResponse: core.serialization.ObjectSchema<
@@ -14,6 +15,7 @@ export const EmbedFloatsResponse: core.serialization.ObjectSchema<
id: core.serialization.string(),
embeddings: core.serialization.list(core.serialization.list(core.serialization.number())),
texts: core.serialization.list(core.serialization.string()),
+ images: core.serialization.list(Image).optional(),
meta: ApiMeta.optional(),
});
@@ -22,6 +24,7 @@ export declare namespace EmbedFloatsResponse {
id: string;
embeddings: number[][];
texts: string[];
+ images?: Image.Raw[] | null;
meta?: ApiMeta.Raw | null;
}
}
diff --git a/src/serialization/types/Image.ts b/src/serialization/types/Image.ts
new file mode 100644
index 00000000..4accd17a
--- /dev/null
+++ b/src/serialization/types/Image.ts
@@ -0,0 +1,23 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as serializers from "../index";
+import * as Cohere from "../../api/index";
+import * as core from "../../core";
+
+export const Image: core.serialization.ObjectSchema = core.serialization.object({
+ width: core.serialization.number(),
+ height: core.serialization.number(),
+ format: core.serialization.string(),
+ bitDepth: core.serialization.property("bit_depth", core.serialization.number()),
+});
+
+export declare namespace Image {
+ interface Raw {
+ width: number;
+ height: number;
+ format: string;
+ bit_depth: number;
+ }
+}
diff --git a/src/serialization/types/LogprobItem.ts b/src/serialization/types/LogprobItem.ts
new file mode 100644
index 00000000..0ebb3261
--- /dev/null
+++ b/src/serialization/types/LogprobItem.ts
@@ -0,0 +1,22 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as serializers from "../index";
+import * as Cohere from "../../api/index";
+import * as core from "../../core";
+
+export const LogprobItem: core.serialization.ObjectSchema =
+ core.serialization.object({
+ text: core.serialization.string().optional(),
+ tokenIds: core.serialization.property("token_ids", core.serialization.list(core.serialization.number())),
+ logprobs: core.serialization.list(core.serialization.number()).optional(),
+ });
+
+export declare namespace LogprobItem {
+ interface Raw {
+ text?: string | null;
+ token_ids: number[];
+ logprobs?: number[] | null;
+ }
+}
diff --git a/src/serialization/types/NonStreamedChatResponse.ts b/src/serialization/types/NonStreamedChatResponse.ts
index d7c84de9..ffe4486d 100644
--- a/src/serialization/types/NonStreamedChatResponse.ts
+++ b/src/serialization/types/NonStreamedChatResponse.ts
@@ -20,6 +20,7 @@ export const NonStreamedChatResponse: core.serialization.ObjectSchema<
> = core.serialization.object({
text: core.serialization.string(),
generationId: core.serialization.property("generation_id", core.serialization.string().optional()),
+ responseId: core.serialization.property("response_id", core.serialization.string().optional()),
citations: core.serialization.list(ChatCitation).optional(),
documents: core.serialization.list(ChatDocument).optional(),
isSearchRequired: core.serialization.property("is_search_required", core.serialization.boolean().optional()),
@@ -36,6 +37,7 @@ export declare namespace NonStreamedChatResponse {
interface Raw {
text: string;
generation_id?: string | null;
+ response_id?: string | null;
citations?: ChatCitation.Raw[] | null;
documents?: ChatDocument.Raw[] | null;
is_search_required?: boolean | null;
diff --git a/src/serialization/types/StreamedChatResponse.ts b/src/serialization/types/StreamedChatResponse.ts
index 472dda04..19617f0e 100644
--- a/src/serialization/types/StreamedChatResponse.ts
+++ b/src/serialization/types/StreamedChatResponse.ts
@@ -13,6 +13,7 @@ import { ChatCitationGenerationEvent } from "./ChatCitationGenerationEvent";
import { ChatToolCallsGenerationEvent } from "./ChatToolCallsGenerationEvent";
import { ChatStreamEndEvent } from "./ChatStreamEndEvent";
import { ChatToolCallsChunkEvent } from "./ChatToolCallsChunkEvent";
+import { ChatDebugEvent } from "./ChatDebugEvent";
export const StreamedChatResponse: core.serialization.Schema<
serializers.StreamedChatResponse.Raw,
@@ -27,6 +28,7 @@ export const StreamedChatResponse: core.serialization.Schema<
"tool-calls-generation": ChatToolCallsGenerationEvent,
"stream-end": ChatStreamEndEvent,
"tool-calls-chunk": ChatToolCallsChunkEvent,
+ debug: ChatDebugEvent,
})
.transform({
transform: (value) => value,
@@ -42,7 +44,8 @@ export declare namespace StreamedChatResponse {
| StreamedChatResponse.CitationGeneration
| StreamedChatResponse.ToolCallsGeneration
| StreamedChatResponse.StreamEnd
- | StreamedChatResponse.ToolCallsChunk;
+ | StreamedChatResponse.ToolCallsChunk
+ | StreamedChatResponse.Debug;
interface StreamStart extends ChatStreamStartEvent.Raw {
event_type: "stream-start";
@@ -75,4 +78,8 @@ export declare namespace StreamedChatResponse {
interface ToolCallsChunk extends ChatToolCallsChunkEvent.Raw {
event_type: "tool-calls-chunk";
}
+
+ interface Debug extends ChatDebugEvent.Raw {
+ event_type: "debug";
+ }
}
diff --git a/src/serialization/types/ToolMessageV2.ts b/src/serialization/types/ToolMessageV2.ts
index c6d4e10b..605a8fe7 100644
--- a/src/serialization/types/ToolMessageV2.ts
+++ b/src/serialization/types/ToolMessageV2.ts
@@ -10,12 +10,12 @@ import { ToolMessageV2Content } from "./ToolMessageV2Content";
export const ToolMessageV2: core.serialization.ObjectSchema =
core.serialization.object({
toolCallId: core.serialization.property("tool_call_id", core.serialization.string()),
- content: ToolMessageV2Content.optional(),
+ content: ToolMessageV2Content,
});
export declare namespace ToolMessageV2 {
interface Raw {
tool_call_id: string;
- content?: ToolMessageV2Content.Raw | null;
+ content: ToolMessageV2Content.Raw;
}
}
diff --git a/src/serialization/types/index.ts b/src/serialization/types/index.ts
index 3ca35181..4179ecb8 100644
--- a/src/serialization/types/index.ts
+++ b/src/serialization/types/index.ts
@@ -66,6 +66,7 @@ export * from "./ChatStreamEndEventFinishReason";
export * from "./ChatStreamEndEvent";
export * from "./ToolCallDelta";
export * from "./ChatToolCallsChunkEvent";
+export * from "./ChatDebugEvent";
export * from "./StreamedChatResponse";
export * from "./TextContent";
export * from "./Content";
@@ -103,6 +104,7 @@ export * from "./AssistantMessageResponse";
export * from "./UsageBilledUnits";
export * from "./UsageTokens";
export * from "./Usage";
+export * from "./LogprobItem";
export * from "./ChatResponse";
export * from "./ChatStreamEventType";
export * from "./ChatMessageStartEventDeltaMessage";
@@ -147,6 +149,7 @@ export * from "./GenerateStreamError";
export * from "./GenerateStreamedResponse";
export * from "./EmbedInputType";
export * from "./EmbeddingType";
+export * from "./Image";
export * from "./EmbedFloatsResponse";
export * from "./EmbedByTypeResponseEmbeddings";
export * from "./EmbedByTypeResponse";
diff --git a/yarn.lock b/yarn.lock
index e4450b3c..81603c74 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -66,420 +66,429 @@
"@smithy/util-utf8" "^2.0.0"
tslib "^2.6.2"
-"@aws-sdk/client-cognito-identity@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.664.0.tgz#1ccab5d3fbc997a0048249b10c4055ae4a582172"
- integrity sha512-kOk4hIJy51xta2Tq2bNonHXdOZEZ3b3IdctxSYPtXMxATvhGPxEYm4reiIabDxBxWv+blF5qM54pBQXV/dsfrQ==
+"@aws-sdk/client-cognito-identity@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.693.0.tgz#fe56d73d2bdc933b26e783118f7da9a3c98378f9"
+ integrity sha512-WfycTcylmrSOnCN8x/xeIjHa4gIV4UhG85LWLZ3M4US8+HJQ8l4c4WUf+pUoTaSxN86vhbXlz0iRvA89nF854Q==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/client-sso-oidc" "3.664.0"
- "@aws-sdk/client-sts" "3.664.0"
- "@aws-sdk/core" "3.664.0"
- "@aws-sdk/credential-provider-node" "3.664.0"
- "@aws-sdk/middleware-host-header" "3.664.0"
- "@aws-sdk/middleware-logger" "3.664.0"
- "@aws-sdk/middleware-recursion-detection" "3.664.0"
- "@aws-sdk/middleware-user-agent" "3.664.0"
- "@aws-sdk/region-config-resolver" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@aws-sdk/util-endpoints" "3.664.0"
- "@aws-sdk/util-user-agent-browser" "3.664.0"
- "@aws-sdk/util-user-agent-node" "3.664.0"
- "@smithy/config-resolver" "^3.0.9"
- "@smithy/core" "^2.4.7"
- "@smithy/fetch-http-handler" "^3.2.9"
- "@smithy/hash-node" "^3.0.7"
- "@smithy/invalid-dependency" "^3.0.7"
- "@smithy/middleware-content-length" "^3.0.9"
- "@smithy/middleware-endpoint" "^3.1.4"
- "@smithy/middleware-retry" "^3.0.22"
- "@smithy/middleware-serde" "^3.0.7"
- "@smithy/middleware-stack" "^3.0.7"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/node-http-handler" "^3.2.4"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/url-parser" "^3.0.7"
+ "@aws-sdk/client-sso-oidc" "3.693.0"
+ "@aws-sdk/client-sts" "3.693.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/credential-provider-node" "3.693.0"
+ "@aws-sdk/middleware-host-header" "3.693.0"
+ "@aws-sdk/middleware-logger" "3.693.0"
+ "@aws-sdk/middleware-recursion-detection" "3.693.0"
+ "@aws-sdk/middleware-user-agent" "3.693.0"
+ "@aws-sdk/region-config-resolver" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@aws-sdk/util-endpoints" "3.693.0"
+ "@aws-sdk/util-user-agent-browser" "3.693.0"
+ "@aws-sdk/util-user-agent-node" "3.693.0"
+ "@smithy/config-resolver" "^3.0.11"
+ "@smithy/core" "^2.5.2"
+ "@smithy/fetch-http-handler" "^4.1.0"
+ "@smithy/hash-node" "^3.0.9"
+ "@smithy/invalid-dependency" "^3.0.9"
+ "@smithy/middleware-content-length" "^3.0.11"
+ "@smithy/middleware-endpoint" "^3.2.2"
+ "@smithy/middleware-retry" "^3.0.26"
+ "@smithy/middleware-serde" "^3.0.9"
+ "@smithy/middleware-stack" "^3.0.9"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/node-http-handler" "^3.3.0"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/smithy-client" "^3.4.3"
+ "@smithy/types" "^3.7.0"
+ "@smithy/url-parser" "^3.0.9"
"@smithy/util-base64" "^3.0.0"
"@smithy/util-body-length-browser" "^3.0.0"
"@smithy/util-body-length-node" "^3.0.0"
- "@smithy/util-defaults-mode-browser" "^3.0.22"
- "@smithy/util-defaults-mode-node" "^3.0.22"
- "@smithy/util-endpoints" "^2.1.3"
- "@smithy/util-middleware" "^3.0.7"
- "@smithy/util-retry" "^3.0.7"
+ "@smithy/util-defaults-mode-browser" "^3.0.26"
+ "@smithy/util-defaults-mode-node" "^3.0.26"
+ "@smithy/util-endpoints" "^2.1.5"
+ "@smithy/util-middleware" "^3.0.9"
+ "@smithy/util-retry" "^3.0.9"
"@smithy/util-utf8" "^3.0.0"
tslib "^2.6.2"
"@aws-sdk/client-sagemaker@^3.583.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sagemaker/-/client-sagemaker-3.664.0.tgz#f3283fd4013f1e812368270d5d3903d8036ae66f"
- integrity sha512-Hh5EsmIYF6IDwt/cBf+xZoDHpVMAN+NQR0NW1+gDyN6aax9HBVzGFbdifQB3640HWXXhTDKO9A5aIO86BOe1JQ==
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sagemaker/-/client-sagemaker-3.693.0.tgz#dc6668135029b6f3dff8e97b410c49c52783ee0d"
+ integrity sha512-iInrrb7V9f0CRBiVCaaxCbpoBRQ5BqxX4elRYI6gE/pSDD2tPqmRfm4reahMtTUcKg1jaSGuvqJLfOpp0HTozQ==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/client-sso-oidc" "3.664.0"
- "@aws-sdk/client-sts" "3.664.0"
- "@aws-sdk/core" "3.664.0"
- "@aws-sdk/credential-provider-node" "3.664.0"
- "@aws-sdk/middleware-host-header" "3.664.0"
- "@aws-sdk/middleware-logger" "3.664.0"
- "@aws-sdk/middleware-recursion-detection" "3.664.0"
- "@aws-sdk/middleware-user-agent" "3.664.0"
- "@aws-sdk/region-config-resolver" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@aws-sdk/util-endpoints" "3.664.0"
- "@aws-sdk/util-user-agent-browser" "3.664.0"
- "@aws-sdk/util-user-agent-node" "3.664.0"
- "@smithy/config-resolver" "^3.0.9"
- "@smithy/core" "^2.4.7"
- "@smithy/fetch-http-handler" "^3.2.9"
- "@smithy/hash-node" "^3.0.7"
- "@smithy/invalid-dependency" "^3.0.7"
- "@smithy/middleware-content-length" "^3.0.9"
- "@smithy/middleware-endpoint" "^3.1.4"
- "@smithy/middleware-retry" "^3.0.22"
- "@smithy/middleware-serde" "^3.0.7"
- "@smithy/middleware-stack" "^3.0.7"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/node-http-handler" "^3.2.4"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/url-parser" "^3.0.7"
+ "@aws-sdk/client-sso-oidc" "3.693.0"
+ "@aws-sdk/client-sts" "3.693.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/credential-provider-node" "3.693.0"
+ "@aws-sdk/middleware-host-header" "3.693.0"
+ "@aws-sdk/middleware-logger" "3.693.0"
+ "@aws-sdk/middleware-recursion-detection" "3.693.0"
+ "@aws-sdk/middleware-user-agent" "3.693.0"
+ "@aws-sdk/region-config-resolver" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@aws-sdk/util-endpoints" "3.693.0"
+ "@aws-sdk/util-user-agent-browser" "3.693.0"
+ "@aws-sdk/util-user-agent-node" "3.693.0"
+ "@smithy/config-resolver" "^3.0.11"
+ "@smithy/core" "^2.5.2"
+ "@smithy/fetch-http-handler" "^4.1.0"
+ "@smithy/hash-node" "^3.0.9"
+ "@smithy/invalid-dependency" "^3.0.9"
+ "@smithy/middleware-content-length" "^3.0.11"
+ "@smithy/middleware-endpoint" "^3.2.2"
+ "@smithy/middleware-retry" "^3.0.26"
+ "@smithy/middleware-serde" "^3.0.9"
+ "@smithy/middleware-stack" "^3.0.9"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/node-http-handler" "^3.3.0"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/smithy-client" "^3.4.3"
+ "@smithy/types" "^3.7.0"
+ "@smithy/url-parser" "^3.0.9"
"@smithy/util-base64" "^3.0.0"
"@smithy/util-body-length-browser" "^3.0.0"
"@smithy/util-body-length-node" "^3.0.0"
- "@smithy/util-defaults-mode-browser" "^3.0.22"
- "@smithy/util-defaults-mode-node" "^3.0.22"
- "@smithy/util-endpoints" "^2.1.3"
- "@smithy/util-middleware" "^3.0.7"
- "@smithy/util-retry" "^3.0.7"
+ "@smithy/util-defaults-mode-browser" "^3.0.26"
+ "@smithy/util-defaults-mode-node" "^3.0.26"
+ "@smithy/util-endpoints" "^2.1.5"
+ "@smithy/util-middleware" "^3.0.9"
+ "@smithy/util-retry" "^3.0.9"
"@smithy/util-utf8" "^3.0.0"
- "@smithy/util-waiter" "^3.1.6"
+ "@smithy/util-waiter" "^3.1.8"
+ "@types/uuid" "^9.0.1"
tslib "^2.6.2"
uuid "^9.0.1"
-"@aws-sdk/client-sso-oidc@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.664.0.tgz#fdb67c8a257ab9c2e4370437b2ba1ae9c193e3c0"
- integrity sha512-VgnAnQwt88oj6OSnIEouvTKN8JI2PzcC3qWQSL87ZtzBSscfrSwbtBNqBxk6nQWwE7AlZuzvT7IN6loz6c7kGA==
+"@aws-sdk/client-sso-oidc@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.693.0.tgz#2fd7f93bd81839f5cd08c5e6e9a578b80572d3c4"
+ integrity sha512-UEDbYlYtK/e86OOMyFR4zEPyenIxDzO2DRdz3fwVW7RzZ94wfmSwBh/8skzPTuY1G7sI064cjHW0b0QG01Sdtg==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.664.0"
- "@aws-sdk/credential-provider-node" "3.664.0"
- "@aws-sdk/middleware-host-header" "3.664.0"
- "@aws-sdk/middleware-logger" "3.664.0"
- "@aws-sdk/middleware-recursion-detection" "3.664.0"
- "@aws-sdk/middleware-user-agent" "3.664.0"
- "@aws-sdk/region-config-resolver" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@aws-sdk/util-endpoints" "3.664.0"
- "@aws-sdk/util-user-agent-browser" "3.664.0"
- "@aws-sdk/util-user-agent-node" "3.664.0"
- "@smithy/config-resolver" "^3.0.9"
- "@smithy/core" "^2.4.7"
- "@smithy/fetch-http-handler" "^3.2.9"
- "@smithy/hash-node" "^3.0.7"
- "@smithy/invalid-dependency" "^3.0.7"
- "@smithy/middleware-content-length" "^3.0.9"
- "@smithy/middleware-endpoint" "^3.1.4"
- "@smithy/middleware-retry" "^3.0.22"
- "@smithy/middleware-serde" "^3.0.7"
- "@smithy/middleware-stack" "^3.0.7"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/node-http-handler" "^3.2.4"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/url-parser" "^3.0.7"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/credential-provider-node" "3.693.0"
+ "@aws-sdk/middleware-host-header" "3.693.0"
+ "@aws-sdk/middleware-logger" "3.693.0"
+ "@aws-sdk/middleware-recursion-detection" "3.693.0"
+ "@aws-sdk/middleware-user-agent" "3.693.0"
+ "@aws-sdk/region-config-resolver" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@aws-sdk/util-endpoints" "3.693.0"
+ "@aws-sdk/util-user-agent-browser" "3.693.0"
+ "@aws-sdk/util-user-agent-node" "3.693.0"
+ "@smithy/config-resolver" "^3.0.11"
+ "@smithy/core" "^2.5.2"
+ "@smithy/fetch-http-handler" "^4.1.0"
+ "@smithy/hash-node" "^3.0.9"
+ "@smithy/invalid-dependency" "^3.0.9"
+ "@smithy/middleware-content-length" "^3.0.11"
+ "@smithy/middleware-endpoint" "^3.2.2"
+ "@smithy/middleware-retry" "^3.0.26"
+ "@smithy/middleware-serde" "^3.0.9"
+ "@smithy/middleware-stack" "^3.0.9"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/node-http-handler" "^3.3.0"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/smithy-client" "^3.4.3"
+ "@smithy/types" "^3.7.0"
+ "@smithy/url-parser" "^3.0.9"
"@smithy/util-base64" "^3.0.0"
"@smithy/util-body-length-browser" "^3.0.0"
"@smithy/util-body-length-node" "^3.0.0"
- "@smithy/util-defaults-mode-browser" "^3.0.22"
- "@smithy/util-defaults-mode-node" "^3.0.22"
- "@smithy/util-endpoints" "^2.1.3"
- "@smithy/util-middleware" "^3.0.7"
- "@smithy/util-retry" "^3.0.7"
+ "@smithy/util-defaults-mode-browser" "^3.0.26"
+ "@smithy/util-defaults-mode-node" "^3.0.26"
+ "@smithy/util-endpoints" "^2.1.5"
+ "@smithy/util-middleware" "^3.0.9"
+ "@smithy/util-retry" "^3.0.9"
"@smithy/util-utf8" "^3.0.0"
tslib "^2.6.2"
-"@aws-sdk/client-sso@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.664.0.tgz#c467801efde859758bec2be1bdb1a27ec38b2636"
- integrity sha512-E0MObuGylqY2yf47bZZAFK+4+C13c4Cs3HobXgCV3+myoHaxxQHltQuGrapxWOiJJzNmABKEPjBcMnRWnZHXCQ==
+"@aws-sdk/client-sso@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.693.0.tgz#9cd5e07e57013b8c7980512810d775d7b6f67e36"
+ integrity sha512-QEynrBC26x6TG9ZMzApR/kZ3lmt4lEIs2D+cHuDxt6fDGzahBUsQFBwJqhizzsM97JJI5YvmJhmihoYjdSSaXA==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.664.0"
- "@aws-sdk/middleware-host-header" "3.664.0"
- "@aws-sdk/middleware-logger" "3.664.0"
- "@aws-sdk/middleware-recursion-detection" "3.664.0"
- "@aws-sdk/middleware-user-agent" "3.664.0"
- "@aws-sdk/region-config-resolver" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@aws-sdk/util-endpoints" "3.664.0"
- "@aws-sdk/util-user-agent-browser" "3.664.0"
- "@aws-sdk/util-user-agent-node" "3.664.0"
- "@smithy/config-resolver" "^3.0.9"
- "@smithy/core" "^2.4.7"
- "@smithy/fetch-http-handler" "^3.2.9"
- "@smithy/hash-node" "^3.0.7"
- "@smithy/invalid-dependency" "^3.0.7"
- "@smithy/middleware-content-length" "^3.0.9"
- "@smithy/middleware-endpoint" "^3.1.4"
- "@smithy/middleware-retry" "^3.0.22"
- "@smithy/middleware-serde" "^3.0.7"
- "@smithy/middleware-stack" "^3.0.7"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/node-http-handler" "^3.2.4"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/url-parser" "^3.0.7"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/middleware-host-header" "3.693.0"
+ "@aws-sdk/middleware-logger" "3.693.0"
+ "@aws-sdk/middleware-recursion-detection" "3.693.0"
+ "@aws-sdk/middleware-user-agent" "3.693.0"
+ "@aws-sdk/region-config-resolver" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@aws-sdk/util-endpoints" "3.693.0"
+ "@aws-sdk/util-user-agent-browser" "3.693.0"
+ "@aws-sdk/util-user-agent-node" "3.693.0"
+ "@smithy/config-resolver" "^3.0.11"
+ "@smithy/core" "^2.5.2"
+ "@smithy/fetch-http-handler" "^4.1.0"
+ "@smithy/hash-node" "^3.0.9"
+ "@smithy/invalid-dependency" "^3.0.9"
+ "@smithy/middleware-content-length" "^3.0.11"
+ "@smithy/middleware-endpoint" "^3.2.2"
+ "@smithy/middleware-retry" "^3.0.26"
+ "@smithy/middleware-serde" "^3.0.9"
+ "@smithy/middleware-stack" "^3.0.9"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/node-http-handler" "^3.3.0"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/smithy-client" "^3.4.3"
+ "@smithy/types" "^3.7.0"
+ "@smithy/url-parser" "^3.0.9"
"@smithy/util-base64" "^3.0.0"
"@smithy/util-body-length-browser" "^3.0.0"
"@smithy/util-body-length-node" "^3.0.0"
- "@smithy/util-defaults-mode-browser" "^3.0.22"
- "@smithy/util-defaults-mode-node" "^3.0.22"
- "@smithy/util-endpoints" "^2.1.3"
- "@smithy/util-middleware" "^3.0.7"
- "@smithy/util-retry" "^3.0.7"
+ "@smithy/util-defaults-mode-browser" "^3.0.26"
+ "@smithy/util-defaults-mode-node" "^3.0.26"
+ "@smithy/util-endpoints" "^2.1.5"
+ "@smithy/util-middleware" "^3.0.9"
+ "@smithy/util-retry" "^3.0.9"
"@smithy/util-utf8" "^3.0.0"
tslib "^2.6.2"
-"@aws-sdk/client-sts@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.664.0.tgz#caafb0ce65184f1e000458cd316daccd6f62a0d9"
- integrity sha512-+kFS+B/U/thLi8yxYgKc7QFsababYrgrIkbVgTvSzudkzk5RIlDu753L/DfXqYOtecbc6WUwlTKA+Ltee3OVXg==
+"@aws-sdk/client-sts@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sts/-/client-sts-3.693.0.tgz#9e2c418f4850269635632bee4d1a31057c04bcc5"
+ integrity sha512-4S2y7VEtvdnjJX4JPl4kDQlslxXEZFnC50/UXVUYSt/AMc5A/GgspFNA5FVz4E3Gwpfobbf23hR2NBF8AGvYoQ==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/client-sso-oidc" "3.664.0"
- "@aws-sdk/core" "3.664.0"
- "@aws-sdk/credential-provider-node" "3.664.0"
- "@aws-sdk/middleware-host-header" "3.664.0"
- "@aws-sdk/middleware-logger" "3.664.0"
- "@aws-sdk/middleware-recursion-detection" "3.664.0"
- "@aws-sdk/middleware-user-agent" "3.664.0"
- "@aws-sdk/region-config-resolver" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@aws-sdk/util-endpoints" "3.664.0"
- "@aws-sdk/util-user-agent-browser" "3.664.0"
- "@aws-sdk/util-user-agent-node" "3.664.0"
- "@smithy/config-resolver" "^3.0.9"
- "@smithy/core" "^2.4.7"
- "@smithy/fetch-http-handler" "^3.2.9"
- "@smithy/hash-node" "^3.0.7"
- "@smithy/invalid-dependency" "^3.0.7"
- "@smithy/middleware-content-length" "^3.0.9"
- "@smithy/middleware-endpoint" "^3.1.4"
- "@smithy/middleware-retry" "^3.0.22"
- "@smithy/middleware-serde" "^3.0.7"
- "@smithy/middleware-stack" "^3.0.7"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/node-http-handler" "^3.2.4"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/url-parser" "^3.0.7"
+ "@aws-sdk/client-sso-oidc" "3.693.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/credential-provider-node" "3.693.0"
+ "@aws-sdk/middleware-host-header" "3.693.0"
+ "@aws-sdk/middleware-logger" "3.693.0"
+ "@aws-sdk/middleware-recursion-detection" "3.693.0"
+ "@aws-sdk/middleware-user-agent" "3.693.0"
+ "@aws-sdk/region-config-resolver" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@aws-sdk/util-endpoints" "3.693.0"
+ "@aws-sdk/util-user-agent-browser" "3.693.0"
+ "@aws-sdk/util-user-agent-node" "3.693.0"
+ "@smithy/config-resolver" "^3.0.11"
+ "@smithy/core" "^2.5.2"
+ "@smithy/fetch-http-handler" "^4.1.0"
+ "@smithy/hash-node" "^3.0.9"
+ "@smithy/invalid-dependency" "^3.0.9"
+ "@smithy/middleware-content-length" "^3.0.11"
+ "@smithy/middleware-endpoint" "^3.2.2"
+ "@smithy/middleware-retry" "^3.0.26"
+ "@smithy/middleware-serde" "^3.0.9"
+ "@smithy/middleware-stack" "^3.0.9"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/node-http-handler" "^3.3.0"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/smithy-client" "^3.4.3"
+ "@smithy/types" "^3.7.0"
+ "@smithy/url-parser" "^3.0.9"
"@smithy/util-base64" "^3.0.0"
"@smithy/util-body-length-browser" "^3.0.0"
"@smithy/util-body-length-node" "^3.0.0"
- "@smithy/util-defaults-mode-browser" "^3.0.22"
- "@smithy/util-defaults-mode-node" "^3.0.22"
- "@smithy/util-endpoints" "^2.1.3"
- "@smithy/util-middleware" "^3.0.7"
- "@smithy/util-retry" "^3.0.7"
+ "@smithy/util-defaults-mode-browser" "^3.0.26"
+ "@smithy/util-defaults-mode-node" "^3.0.26"
+ "@smithy/util-endpoints" "^2.1.5"
+ "@smithy/util-middleware" "^3.0.9"
+ "@smithy/util-retry" "^3.0.9"
"@smithy/util-utf8" "^3.0.0"
tslib "^2.6.2"
-"@aws-sdk/core@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.664.0.tgz#2b6ecea024a5e12cb118a6353833b1d37ee633ab"
- integrity sha512-QdfMpTpJqtpuFIFfUJEgJ+Rq/dO3I5iaViLKr9Zad4Gfi/GiRWTeXd4IvjcyRntB5GkyCak9RKMkxkECQavPJg==
- dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/core" "^2.4.7"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/signature-v4" "^4.2.0"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/util-middleware" "^3.0.7"
+"@aws-sdk/core@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.693.0.tgz#437969dd740895a59863d737bad14646bc2e1725"
+ integrity sha512-v6Z/kWmLFqRLDPEwl9hJGhtTgIFHjZugSfF1Yqffdxf4n1AWgtHS7qSegakuMyN5pP4K2tvUD8qHJ+gGe2Bw2A==
+ dependencies:
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/core" "^2.5.2"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/signature-v4" "^4.2.2"
+ "@smithy/smithy-client" "^3.4.3"
+ "@smithy/types" "^3.7.0"
+ "@smithy/util-middleware" "^3.0.9"
fast-xml-parser "4.4.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-cognito-identity@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.664.0.tgz#dfe69ab94c327ac39943c749e04ca13146e604e0"
- integrity sha512-wOWir00Ve38kSnkoP8CS8Vq4UqRSCSrHm7Nym1iAL0Hmf4hOQRcWXBKP08/dHpk4nt4+LqVd+dT8V2LhN7RCog==
+"@aws-sdk/credential-provider-cognito-identity@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.693.0.tgz#56f07568f660ec53ef1e00eeff036fe447081c61"
+ integrity sha512-hlpV3tkOhpFl87aToH6Q6k7JBNNuARBPk+irPMtgE8ZqpYRP9tJ/RXftirzZ7CqSzc7NEWe/mnbJzRXw7DfgVQ==
dependencies:
- "@aws-sdk/client-cognito-identity" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/client-cognito-identity" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-env@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.664.0.tgz#62e81a883f9b94e593ed31a21f91d6026aba73ee"
- integrity sha512-95rE+9Voaco0nmKJrXqfJAxSSkSWqlBy76zomiZrUrv7YuijQtHCW8jte6v6UHAFAaBzgFsY7QqBxs15u9SM7g==
+"@aws-sdk/credential-provider-env@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.693.0.tgz#f97feed9809fe2800216943470015fdaaba47c4f"
+ integrity sha512-hMUZaRSF7+iBKZfBHNLihFs9zvpM1CB8MBOTnTp5NGCVkRYF3SB2LH+Kcippe0ats4qCyB1eEoyQX99rERp2iQ==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-http@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.664.0.tgz#457e0c081b3f91315f5f1c3ce4f9b625ef085787"
- integrity sha512-svaPwVfWV3g/qjd4cYHTUyBtkdOwcVjC+tSj6EjoMrpZwGUXcCbYe04iU0ARZ6tuH/u3vySbTLOGjSa7g8o9Qw==
- dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/fetch-http-handler" "^3.2.9"
- "@smithy/node-http-handler" "^3.2.4"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/util-stream" "^3.1.9"
+"@aws-sdk/credential-provider-http@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.693.0.tgz#5caad0ac47eded1edeb63f907280580ccfaadba3"
+ integrity sha512-sL8MvwNJU7ZpD7/d2VVb3by1GknIJUxzTIgYtVkDVA/ojo+KRQSSHxcj0EWWXF5DTSh2Tm+LrEug3y1ZyKHsDA==
+ dependencies:
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/fetch-http-handler" "^4.1.0"
+ "@smithy/node-http-handler" "^3.3.0"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/smithy-client" "^3.4.3"
+ "@smithy/types" "^3.7.0"
+ "@smithy/util-stream" "^3.3.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-ini@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.664.0.tgz#09dcb389979829b9340ed6814eb807ca52ced871"
- integrity sha512-ykRLQi9gqY7xlgC33iEWyPMv19JDMpOqQfqb5zaV46NteT60ouBrS3WsCrDiwygF7HznGLpr0lpt17/C6Mq27g==
- dependencies:
- "@aws-sdk/credential-provider-env" "3.664.0"
- "@aws-sdk/credential-provider-http" "3.664.0"
- "@aws-sdk/credential-provider-process" "3.664.0"
- "@aws-sdk/credential-provider-sso" "3.664.0"
- "@aws-sdk/credential-provider-web-identity" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@smithy/credential-provider-imds" "^3.2.4"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/shared-ini-file-loader" "^3.1.8"
- "@smithy/types" "^3.5.0"
+"@aws-sdk/credential-provider-ini@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.693.0.tgz#b4557ac1092657660a15c9bd55e17c27f79ec621"
+ integrity sha512-kvaa4mXhCCOuW7UQnBhYqYfgWmwy7WSBSDClutwSLPZvgrhYj2l16SD2lN4IfYdxARYMJJ1lFYp3/jJG/9Yk4Q==
+ dependencies:
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/credential-provider-env" "3.693.0"
+ "@aws-sdk/credential-provider-http" "3.693.0"
+ "@aws-sdk/credential-provider-process" "3.693.0"
+ "@aws-sdk/credential-provider-sso" "3.693.0"
+ "@aws-sdk/credential-provider-web-identity" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/credential-provider-imds" "^3.2.6"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/shared-ini-file-loader" "^3.1.10"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-node@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.664.0.tgz#ff9e58322481274b47869ec47accbe20313890e4"
- integrity sha512-JrLtx4tEtEzqYAmk+pz8B7QcBCNRN+lZAh3fbQox7q9YQaIELLM3MA6LM5kEp/uHop920MQvdhHOMtR5jjJqWA==
- dependencies:
- "@aws-sdk/credential-provider-env" "3.664.0"
- "@aws-sdk/credential-provider-http" "3.664.0"
- "@aws-sdk/credential-provider-ini" "3.664.0"
- "@aws-sdk/credential-provider-process" "3.664.0"
- "@aws-sdk/credential-provider-sso" "3.664.0"
- "@aws-sdk/credential-provider-web-identity" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@smithy/credential-provider-imds" "^3.2.4"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/shared-ini-file-loader" "^3.1.8"
- "@smithy/types" "^3.5.0"
+"@aws-sdk/credential-provider-node@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.693.0.tgz#c5ceac64a69304d5b4db3fd68473480cafddb4a9"
+ integrity sha512-42WMsBjTNnjYxYuM3qD/Nq+8b7UdMopUq5OduMDxoM3mFTV6PXMMnfI4Z1TNnR4tYRvPXAnuNltF6xmjKbSJRA==
+ dependencies:
+ "@aws-sdk/credential-provider-env" "3.693.0"
+ "@aws-sdk/credential-provider-http" "3.693.0"
+ "@aws-sdk/credential-provider-ini" "3.693.0"
+ "@aws-sdk/credential-provider-process" "3.693.0"
+ "@aws-sdk/credential-provider-sso" "3.693.0"
+ "@aws-sdk/credential-provider-web-identity" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/credential-provider-imds" "^3.2.6"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/shared-ini-file-loader" "^3.1.10"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-process@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.664.0.tgz#d5ae17d404440855733a9eb0167ee8db168b7814"
- integrity sha512-sQicIw/qWTsmMw8EUQNJXdrWV5SXaZc2zGdCQsQxhR6wwNO2/rZ5JmzdcwUADmleBVyPYk3KGLhcofF/qXT2Ng==
+"@aws-sdk/credential-provider-process@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.693.0.tgz#e84e945f1a148f06ff697608d5309e73347e5aa9"
+ integrity sha512-cvxQkrTWHHjeHrPlj7EWXPnFSq8x7vMx+Zn1oTsMpCY445N9KuzjfJTkmNGwU2GT6rSZI9/0MM02aQvl5bBBTQ==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/shared-ini-file-loader" "^3.1.8"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/shared-ini-file-loader" "^3.1.10"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-sso@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.664.0.tgz#6d8c31631ec8f3013c64a9450c5fcfac2ab97951"
- integrity sha512-r7m+XkTAvGT9nW4aHqjWOHcoo3EfUsXx6d9JJjWn/gnvdsvhobCJx8p621aR9WeSBUTKJg5+EXGhZF6awRdZGQ==
- dependencies:
- "@aws-sdk/client-sso" "3.664.0"
- "@aws-sdk/token-providers" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/shared-ini-file-loader" "^3.1.8"
- "@smithy/types" "^3.5.0"
+"@aws-sdk/credential-provider-sso@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.693.0.tgz#72767389f533d9d17a14af63daaafcc8368ab43a"
+ integrity sha512-479UlJxY+BFjj3pJFYUNC0DCMrykuG7wBAXfsvZqQxKUa83DnH5Q1ID/N2hZLkxjGd4ZW0AC3lTOMxFelGzzpQ==
+ dependencies:
+ "@aws-sdk/client-sso" "3.693.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/token-providers" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/shared-ini-file-loader" "^3.1.10"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-web-identity@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.664.0.tgz#46b79cdae6adb3c7d8da966eeef06124a31e065b"
- integrity sha512-10ltP1BfSKRJVXd8Yr5oLbo+VSDskWbps0X3szSsxTk0Dju1xvkz7hoIjylWLvtGbvQ+yb2pmsJYKCudW/4DJg==
+"@aws-sdk/credential-provider-web-identity@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.693.0.tgz#b6133b5ef9d3582e36e02e9c66766714ff672a11"
+ integrity sha512-8LB210Pr6VeCiSb2hIra+sAH4KUBLyGaN50axHtIgufVK8jbKIctTZcVY5TO9Se+1107TsruzeXS7VeqVdJfFA==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
"@aws-sdk/credential-providers@^3.583.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.664.0.tgz#44fd501abdcba16d888e2c450eb47903f8e60347"
- integrity sha512-9xxEyvZVsXvf0Dpm7eVYIrLiqOiNSWY8mAk594HldL/GYDokUzokA6NmZyQtCY2rYPSInB/4TCZ1tH4IeXRKeQ==
- dependencies:
- "@aws-sdk/client-cognito-identity" "3.664.0"
- "@aws-sdk/client-sso" "3.664.0"
- "@aws-sdk/client-sts" "3.664.0"
- "@aws-sdk/credential-provider-cognito-identity" "3.664.0"
- "@aws-sdk/credential-provider-env" "3.664.0"
- "@aws-sdk/credential-provider-http" "3.664.0"
- "@aws-sdk/credential-provider-ini" "3.664.0"
- "@aws-sdk/credential-provider-node" "3.664.0"
- "@aws-sdk/credential-provider-process" "3.664.0"
- "@aws-sdk/credential-provider-sso" "3.664.0"
- "@aws-sdk/credential-provider-web-identity" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@smithy/credential-provider-imds" "^3.2.4"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/types" "^3.5.0"
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.693.0.tgz#d5a83086333a03ecbae283030360f9b49348b5af"
+ integrity sha512-0CCH8GuH1E41Kpq52NujErbUIRewDWLkdbYO8UJGybDbUQ8KC5JG1tP7K20tKYHmVgJGXDHo+XUIG7ogHD6/JA==
+ dependencies:
+ "@aws-sdk/client-cognito-identity" "3.693.0"
+ "@aws-sdk/client-sso" "3.693.0"
+ "@aws-sdk/client-sts" "3.693.0"
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/credential-provider-cognito-identity" "3.693.0"
+ "@aws-sdk/credential-provider-env" "3.693.0"
+ "@aws-sdk/credential-provider-http" "3.693.0"
+ "@aws-sdk/credential-provider-ini" "3.693.0"
+ "@aws-sdk/credential-provider-node" "3.693.0"
+ "@aws-sdk/credential-provider-process" "3.693.0"
+ "@aws-sdk/credential-provider-sso" "3.693.0"
+ "@aws-sdk/credential-provider-web-identity" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/credential-provider-imds" "^3.2.6"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/middleware-host-header@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.664.0.tgz#14ea7fabe0f5a31ee399bb243981c951ab902560"
- integrity sha512-4tCXJ+DZWTq38eLmFgnEmO8X4jfWpgPbWoCyVYpRHCPHq6xbrU65gfwS9jGx25L4YdEce641ChI9TKLryuUgRA==
+"@aws-sdk/middleware-host-header@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.693.0.tgz#69322909c0792df1e6be7c7fb5e2b6f76090a55c"
+ integrity sha512-BCki6sAZ5jYwIN/t3ElCiwerHad69ipHwPsDCxJQyeiOnJ8HG+lEpnVIfrnI8A0fLQNSF3Gtx6ahfBpKiv1Oug==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/middleware-logger@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.664.0.tgz#74f47c10732b873c1f097c909b9df46babeacda4"
- integrity sha512-eNykMqQuv7eg9pAcaLro44fscIe1VkFfhm+gYnlxd+PH6xqapRki1E68VHehnIptnVBdqnWfEqLUSLGm9suqhg==
+"@aws-sdk/middleware-logger@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.693.0.tgz#fc10294e6963f8e5d58ba1ededd891e999f544a9"
+ integrity sha512-dXnXDPr+wIiJ1TLADACI1g9pkSB21KkMIko2u4CJ2JCBoxi5IqeTnVoa6YcC8GdFNVRl+PorZ3Zqfmf1EOTC6w==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/middleware-recursion-detection@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.664.0.tgz#0564b857c4501e2de5a2c3d78d3a5f29fad1307b"
- integrity sha512-jq27WMZhm+dY8BWZ9Ipy3eXtZj0lJzpaKQE3A3tH5AOIlUV/gqrmnJ9CdqVVef4EJsq9Yil4ZzQjKKmPsxveQg==
+"@aws-sdk/middleware-recursion-detection@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.693.0.tgz#88a8157293775e7116707da26501da4b5e042f51"
+ integrity sha512-0LDmM+VxXp0u3rG0xQRWD/q6Ubi7G8I44tBPahevD5CaiDZTkmNTrVUf0VEJgVe0iCKBppACMBDkLB0/ETqkFw==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/middleware-user-agent@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.664.0.tgz#06827a880095ddf34361662df359bdc97de6f00e"
- integrity sha512-Kp5UwXwayO6d472nntiwgrxqay2KS9ozXNmKjQfDrUWbEzvgKI+jgKNMia8MMnjSxYoBGpQ1B8NGh8a6KMEJJg==
- dependencies:
- "@aws-sdk/types" "3.664.0"
- "@aws-sdk/util-endpoints" "3.664.0"
- "@smithy/core" "^2.4.7"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/types" "^3.5.0"
+"@aws-sdk/middleware-user-agent@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.693.0.tgz#4b55cfab3fc7e671b08e1ea63a98e45a1e13e6a5"
+ integrity sha512-/KUq/KEpFFbQmNmpp7SpAtFAdViquDfD2W0QcG07zYBfz9MwE2ig48ALynXm5sMpRmnG7sJXjdvPtTsSVPfkiw==
+ dependencies:
+ "@aws-sdk/core" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@aws-sdk/util-endpoints" "3.693.0"
+ "@smithy/core" "^2.5.2"
+ "@smithy/protocol-http" "^4.1.6"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
"@aws-sdk/protocol-http@^3.374.0":
@@ -490,16 +499,16 @@
"@smithy/protocol-http" "^1.1.0"
tslib "^2.5.0"
-"@aws-sdk/region-config-resolver@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.664.0.tgz#69e65abae7338e677f6be0c7c43ee622411c1304"
- integrity sha512-o/B8dg8K+9714RGYPgMxZgAChPe/MTSMkf/eHXTUFHNik5i1HgVKfac22njV2iictGy/6GhpFsKa1OWNYAkcUg==
+"@aws-sdk/region-config-resolver@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.693.0.tgz#9cde5e99f654c788540acfb2a4218d444e8621c2"
+ integrity sha512-YLUkMsUY0GLW/nfwlZ69cy1u07EZRmsv8Z9m0qW317/EZaVx59hcvmcvb+W4bFqj5E8YImTjoGfE4cZ0F9mkyw==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/types" "^3.7.0"
"@smithy/util-config-provider" "^3.0.0"
- "@smithy/util-middleware" "^3.0.7"
+ "@smithy/util-middleware" "^3.0.9"
tslib "^2.6.2"
"@aws-sdk/signature-v4@^3.374.0":
@@ -510,61 +519,61 @@
"@smithy/signature-v4" "^1.0.1"
tslib "^2.5.0"
-"@aws-sdk/token-providers@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.664.0.tgz#edeb10bf273960c8ef7172d78c0bb41a0c73d350"
- integrity sha512-dBAvXW2/6bAxidvKARFxyCY2uCynYBKRFN00NhS1T5ggxm3sUnuTpWw1DTjl02CVPkacBOocZf10h8pQbHSK8w==
+"@aws-sdk/token-providers@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.693.0.tgz#5ce7d6aa7a3437d4abdc0dca1be47f5158d15c85"
+ integrity sha512-nDBTJMk1l/YmFULGfRbToOA2wjf+FkQT4dMgYCv+V9uSYsMzQj8A7Tha2dz9yv4vnQgYaEiErQ8d7HVyXcVEoA==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/shared-ini-file-loader" "^3.1.8"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/property-provider" "^3.1.9"
+ "@smithy/shared-ini-file-loader" "^3.1.10"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/types@3.664.0", "@aws-sdk/types@^3.222.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.664.0.tgz#e6de1c0a2cdfe4f1e43271223dc0b55e613ced58"
- integrity sha512-+GtXktvVgpreM2b+NJL9OqZGsOzHwlCUrO8jgQUvH/yA6Kd8QO2YFhQCp0C9sSzTteZJVqGBu8E0CQurxJHPbw==
+"@aws-sdk/types@3.692.0", "@aws-sdk/types@^3.222.0":
+ version "3.692.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.692.0.tgz#c8f6c75b6ad659865b72759796d4d92c1b72069b"
+ integrity sha512-RpNvzD7zMEhiKgmlxGzyXaEcg2khvM7wd5sSHVapOcrde1awQSOMGI4zKBQ+wy5TnDfrm170ROz/ERLYtrjPZA==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
-"@aws-sdk/util-endpoints@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.664.0.tgz#cad1195e9b6af74f61bcad4c71d7b820e7deae8c"
- integrity sha512-KrXoHz6zmAahVHkyWMRT+P6xJaxItgmklxEDrT+npsUB4d5C/lhw16Crcp9TDi828fiZK3GYKRAmmNhvmzvBNg==
+"@aws-sdk/util-endpoints@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.693.0.tgz#99f56f83fc25bdc3321f5871d6354abd56768891"
+ integrity sha512-eo4F6DRQ/kxS3gxJpLRv+aDNy76DxQJL5B3DPzpr9Vkq0ygVoi4GT5oIZLVaAVIJmi6k5qq9dLsYZfWLUxJJSg==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/types" "^3.5.0"
- "@smithy/util-endpoints" "^2.1.3"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/types" "^3.7.0"
+ "@smithy/util-endpoints" "^2.1.5"
tslib "^2.6.2"
"@aws-sdk/util-locate-window@^3.0.0":
- version "3.568.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.568.0.tgz#2acc4b2236af0d7494f7e517401ba6b3c4af11ff"
- integrity sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.693.0.tgz#1160f6d055cf074ca198eb8ecf89b6311537ad6c"
+ integrity sha512-ttrag6haJLWABhLqtg1Uf+4LgHWIMOVSYL+VYZmAp2v4PUGOwWmWQH0Zk8RM7YuQcLfH/EoR72/Yxz6A4FKcuw==
dependencies:
tslib "^2.6.2"
-"@aws-sdk/util-user-agent-browser@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.664.0.tgz#d22da782154df1b3d6b60e89103554c07673e3b2"
- integrity sha512-c/PV3+f1ss4PpskHbcOxTZ6fntV2oXy/xcDR9nW+kVaz5cM1G702gF0rvGLKPqoBwkj2rWGe6KZvEBeLzynTUQ==
+"@aws-sdk/util-user-agent-browser@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.693.0.tgz#c6969be97e7cd0190b3b72a82a642b29ff4659c4"
+ integrity sha512-6EUfuKOujtddy18OLJUaXfKBgs+UcbZ6N/3QV4iOkubCUdeM1maIqs++B9bhCbWeaeF5ORizJw5FTwnyNjE/mw==
dependencies:
- "@aws-sdk/types" "3.664.0"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/types" "^3.7.0"
bowser "^2.11.0"
tslib "^2.6.2"
-"@aws-sdk/util-user-agent-node@3.664.0":
- version "3.664.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.664.0.tgz#3699b1a959fb6781e627d6303b18cdbd41f1b90d"
- integrity sha512-l/m6KkgrTw1p/VTJTk0IoP9I2OnpWp3WbBgzxoNeh9cUcxTufIn++sBxKj5hhDql57LKWsckScG/MhFuH0vZZA==
+"@aws-sdk/util-user-agent-node@3.693.0":
+ version "3.693.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.693.0.tgz#b26c806faa2001d4fa1d515b146eeff411513dd9"
+ integrity sha512-td0OVX8m5ZKiXtecIDuzY3Y3UZIzvxEr57Hp21NOwieqKCG2UeyQWWeGPv0FQaU7dpTkvFmVNI+tx9iB8V/Nhg==
dependencies:
- "@aws-sdk/middleware-user-agent" "3.664.0"
- "@aws-sdk/types" "3.664.0"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/types" "^3.5.0"
+ "@aws-sdk/middleware-user-agent" "3.693.0"
+ "@aws-sdk/types" "3.692.0"
+ "@smithy/node-config-provider" "^3.1.10"
+ "@smithy/types" "^3.7.0"
tslib "^2.6.2"
"@aws-sdk/util-utf8-browser@^3.0.0":
@@ -574,131 +583,114 @@
dependencies:
tslib "^2.3.1"
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.25.7.tgz#438f2c524071531d643c6f0188e1e28f130cebc7"
- integrity sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0":
+ version "7.26.2"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
+ integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
dependencies:
- "@babel/highlight" "^7.25.7"
+ "@babel/helper-validator-identifier" "^7.25.9"
+ js-tokens "^4.0.0"
picocolors "^1.0.0"
-"@babel/compat-data@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.7.tgz#b8479fe0018ef0ac87b6b7a5c6916fcd67ae2c9c"
- integrity sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==
+"@babel/compat-data@^7.25.9":
+ version "7.26.2"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e"
+ integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==
"@babel/core@^7.0.0", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.7.tgz#1b3d144157575daf132a3bc80b2b18e6e3ca6ece"
- integrity sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40"
+ integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==
dependencies:
"@ampproject/remapping" "^2.2.0"
- "@babel/code-frame" "^7.25.7"
- "@babel/generator" "^7.25.7"
- "@babel/helper-compilation-targets" "^7.25.7"
- "@babel/helper-module-transforms" "^7.25.7"
- "@babel/helpers" "^7.25.7"
- "@babel/parser" "^7.25.7"
- "@babel/template" "^7.25.7"
- "@babel/traverse" "^7.25.7"
- "@babel/types" "^7.25.7"
+ "@babel/code-frame" "^7.26.0"
+ "@babel/generator" "^7.26.0"
+ "@babel/helper-compilation-targets" "^7.25.9"
+ "@babel/helper-module-transforms" "^7.26.0"
+ "@babel/helpers" "^7.26.0"
+ "@babel/parser" "^7.26.0"
+ "@babel/template" "^7.25.9"
+ "@babel/traverse" "^7.25.9"
+ "@babel/types" "^7.26.0"
convert-source-map "^2.0.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/generator@^7.25.7", "@babel/generator@^7.7.2":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.7.tgz#de86acbeb975a3e11ee92dd52223e6b03b479c56"
- integrity sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==
+"@babel/generator@^7.25.9", "@babel/generator@^7.26.0", "@babel/generator@^7.7.2":
+ version "7.26.2"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f"
+ integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==
dependencies:
- "@babel/types" "^7.25.7"
+ "@babel/parser" "^7.26.2"
+ "@babel/types" "^7.26.0"
"@jridgewell/gen-mapping" "^0.3.5"
"@jridgewell/trace-mapping" "^0.3.25"
jsesc "^3.0.2"
-"@babel/helper-compilation-targets@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz#11260ac3322dda0ef53edfae6e97b961449f5fa4"
- integrity sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==
+"@babel/helper-compilation-targets@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875"
+ integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==
dependencies:
- "@babel/compat-data" "^7.25.7"
- "@babel/helper-validator-option" "^7.25.7"
+ "@babel/compat-data" "^7.25.9"
+ "@babel/helper-validator-option" "^7.25.9"
browserslist "^4.24.0"
lru-cache "^5.1.1"
semver "^6.3.1"
-"@babel/helper-module-imports@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz#dba00d9523539152906ba49263e36d7261040472"
- integrity sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==
- dependencies:
- "@babel/traverse" "^7.25.7"
- "@babel/types" "^7.25.7"
-
-"@babel/helper-module-transforms@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz#2ac9372c5e001b19bc62f1fe7d96a18cb0901d1a"
- integrity sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==
- dependencies:
- "@babel/helper-module-imports" "^7.25.7"
- "@babel/helper-simple-access" "^7.25.7"
- "@babel/helper-validator-identifier" "^7.25.7"
- "@babel/traverse" "^7.25.7"
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.25.7", "@babel/helper-plugin-utils@^7.8.0":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz#8ec5b21812d992e1ef88a9b068260537b6f0e36c"
- integrity sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==
-
-"@babel/helper-simple-access@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz#5eb9f6a60c5d6b2e0f76057004f8dacbddfae1c0"
- integrity sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==
- dependencies:
- "@babel/traverse" "^7.25.7"
- "@babel/types" "^7.25.7"
-
-"@babel/helper-string-parser@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz#d50e8d37b1176207b4fe9acedec386c565a44a54"
- integrity sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==
-
-"@babel/helper-validator-identifier@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz#77b7f60c40b15c97df735b38a66ba1d7c3e93da5"
- integrity sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==
-
-"@babel/helper-validator-option@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz#97d1d684448228b30b506d90cace495d6f492729"
- integrity sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==
-
-"@babel/helpers@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.7.tgz#091b52cb697a171fe0136ab62e54e407211f09c2"
- integrity sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==
- dependencies:
- "@babel/template" "^7.25.7"
- "@babel/types" "^7.25.7"
-
-"@babel/highlight@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.25.7.tgz#20383b5f442aa606e7b5e3043b0b1aafe9f37de5"
- integrity sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==
- dependencies:
- "@babel/helper-validator-identifier" "^7.25.7"
- chalk "^2.4.2"
- js-tokens "^4.0.0"
- picocolors "^1.0.0"
+"@babel/helper-module-imports@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz#e7f8d20602ebdbf9ebbea0a0751fb0f2a4141715"
+ integrity sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==
+ dependencies:
+ "@babel/traverse" "^7.25.9"
+ "@babel/types" "^7.25.9"
+
+"@babel/helper-module-transforms@^7.26.0":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz#8ce54ec9d592695e58d84cd884b7b5c6a2fdeeae"
+ integrity sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==
+ dependencies:
+ "@babel/helper-module-imports" "^7.25.9"
+ "@babel/helper-validator-identifier" "^7.25.9"
+ "@babel/traverse" "^7.25.9"
+
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.25.9", "@babel/helper-plugin-utils@^7.8.0":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz#9cbdd63a9443a2c92a725cca7ebca12cc8dd9f46"
+ integrity sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==
+
+"@babel/helper-string-parser@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz#1aabb72ee72ed35789b4bbcad3ca2862ce614e8c"
+ integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.7.tgz#99b927720f4ddbfeb8cd195a363ed4532f87c590"
- integrity sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==
+"@babel/helper-validator-identifier@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz#24b64e2c3ec7cd3b3c547729b8d16871f22cbdc7"
+ integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==
+
+"@babel/helper-validator-option@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz#86e45bd8a49ab7e03f276577f96179653d41da72"
+ integrity sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==
+
+"@babel/helpers@^7.26.0":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4"
+ integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==
dependencies:
- "@babel/types" "^7.25.7"
+ "@babel/template" "^7.25.9"
+ "@babel/types" "^7.26.0"
+
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2":
+ version "7.26.2"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11"
+ integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==
+ dependencies:
+ "@babel/types" "^7.26.0"
"@babel/plugin-syntax-async-generators@^7.8.4":
version "7.8.4"
@@ -729,11 +721,11 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-import-attributes@^7.24.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.25.7.tgz#d78dd0499d30df19a598e63ab895e21b909bc43f"
- integrity sha512-AqVo+dguCgmpi/3mYBdu9lkngOBlQ2w2vnNpa6gfiCxQZLzV4ZbhsXitJ2Yblkoe1VQwtHSaNmIaGll/26YWRw==
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz#3b1412847699eea739b4f2602c74ce36f6b0b0f7"
+ integrity sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==
dependencies:
- "@babel/helper-plugin-utils" "^7.25.7"
+ "@babel/helper-plugin-utils" "^7.25.9"
"@babel/plugin-syntax-import-meta@^7.10.4":
version "7.10.4"
@@ -750,11 +742,11 @@
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-jsx@^7.7.2":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.7.tgz#5352d398d11ea5e7ef330c854dea1dae0bf18165"
- integrity sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz#a34313a178ea56f1951599b929c1ceacee719290"
+ integrity sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==
dependencies:
- "@babel/helper-plugin-utils" "^7.25.7"
+ "@babel/helper-plugin-utils" "^7.25.9"
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
version "7.10.4"
@@ -813,49 +805,48 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.7.tgz#bfc05b0cc31ebd8af09964650cee723bb228108b"
- integrity sha512-rR+5FDjpCHqqZN2bzZm18bVYGaejGq5ZkpVCJLXor/+zlSrSoc4KWcHI0URVWjl/68Dyr1uwZUz/1njycEAv9g==
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz#67dda2b74da43727cf21d46cf9afef23f4365399"
+ integrity sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==
dependencies:
- "@babel/helper-plugin-utils" "^7.25.7"
+ "@babel/helper-plugin-utils" "^7.25.9"
"@babel/runtime@^7.0.0":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.25.7.tgz#7ffb53c37a8f247c8c4d335e89cdf16a2e0d0fb6"
- integrity sha512-FjoyLe754PMiYsFaN5C94ttGiOmBNYTf6pLr4xXHAT5uctHb092PBszndLDR5XA/jghQvn4n7JMHl7dmTgbm9w==
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.26.0.tgz#8600c2f595f277c60815256418b85356a65173c1"
+ integrity sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==
dependencies:
regenerator-runtime "^0.14.0"
-"@babel/template@^7.25.7", "@babel/template@^7.3.3":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.7.tgz#27f69ce382855d915b14ab0fe5fb4cbf88fa0769"
- integrity sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==
- dependencies:
- "@babel/code-frame" "^7.25.7"
- "@babel/parser" "^7.25.7"
- "@babel/types" "^7.25.7"
-
-"@babel/traverse@^7.25.7":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.7.tgz#83e367619be1cab8e4f2892ef30ba04c26a40fa8"
- integrity sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==
- dependencies:
- "@babel/code-frame" "^7.25.7"
- "@babel/generator" "^7.25.7"
- "@babel/parser" "^7.25.7"
- "@babel/template" "^7.25.7"
- "@babel/types" "^7.25.7"
+"@babel/template@^7.25.9", "@babel/template@^7.3.3":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
+ integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==
+ dependencies:
+ "@babel/code-frame" "^7.25.9"
+ "@babel/parser" "^7.25.9"
+ "@babel/types" "^7.25.9"
+
+"@babel/traverse@^7.25.9":
+ version "7.25.9"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84"
+ integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==
+ dependencies:
+ "@babel/code-frame" "^7.25.9"
+ "@babel/generator" "^7.25.9"
+ "@babel/parser" "^7.25.9"
+ "@babel/template" "^7.25.9"
+ "@babel/types" "^7.25.9"
debug "^4.3.1"
globals "^11.1.0"
-"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.25.7", "@babel/types@^7.3.3":
- version "7.25.7"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.7.tgz#1b7725c1d3a59f328cb700ce704c46371e6eef9b"
- integrity sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==
+"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.3.3":
+ version "7.26.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff"
+ integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==
dependencies:
- "@babel/helper-string-parser" "^7.25.7"
- "@babel/helper-validator-identifier" "^7.25.7"
- to-fast-properties "^2.0.0"
+ "@babel/helper-string-parser" "^7.25.9"
+ "@babel/helper-validator-identifier" "^7.25.9"
"@bcoe/v8-coverage@^0.2.3":
version "0.2.3"
@@ -1129,50 +1120,48 @@
dependencies:
"@sinonjs/commons" "^3.0.0"
-"@smithy/abort-controller@^3.1.5":
- version "3.1.5"
- resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.5.tgz#ca7a86a3c6b20fabe59667143f58d9e198616d14"
- integrity sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg==
+"@smithy/abort-controller@^3.1.8":
+ version "3.1.8"
+ resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-3.1.8.tgz#ce0c10ddb2b39107d70b06bbb8e4f6e368bc551d"
+ integrity sha512-+3DOBcUn5/rVjlxGvUPKc416SExarAQ+Qe0bqk30YSUjbepwpS7QN0cyKUSifvLJhdMZ0WPzPP5ymut0oonrpQ==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/config-resolver@^3.0.9":
- version "3.0.9"
- resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.9.tgz#dcf4b7747ca481866f9bfac21469ebe2031a599e"
- integrity sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg==
+"@smithy/config-resolver@^3.0.11", "@smithy/config-resolver@^3.0.12":
+ version "3.0.12"
+ resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-3.0.12.tgz#f355f95fcb5ee932a90871a488a4f2128e8ad3ac"
+ integrity sha512-YAJP9UJFZRZ8N+UruTeq78zkdjUHmzsY62J4qKWZ4SXB4QXJ/+680EfXXgkYA2xj77ooMqtUY9m406zGNqwivQ==
dependencies:
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/types" "^3.5.0"
+ "@smithy/node-config-provider" "^3.1.11"
+ "@smithy/types" "^3.7.1"
"@smithy/util-config-provider" "^3.0.0"
- "@smithy/util-middleware" "^3.0.7"
+ "@smithy/util-middleware" "^3.0.10"
tslib "^2.6.2"
-"@smithy/core@^2.4.7":
- version "2.4.7"
- resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.4.7.tgz#c4dc9ab3ba5f4b36addf967ca5fce036ce3b767d"
- integrity sha512-goqMjX+IoVEnHZjYuzu8xwoZjoteMiLXsPHuXPBkWsGwu0o9c3nTjqkUlP1Ez/V8E501aOU7CJ3INk8mQcW2gw==
- dependencies:
- "@smithy/middleware-endpoint" "^3.1.4"
- "@smithy/middleware-retry" "^3.0.22"
- "@smithy/middleware-serde" "^3.0.7"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
+"@smithy/core@^2.5.2", "@smithy/core@^2.5.3":
+ version "2.5.3"
+ resolved "https://registry.yarnpkg.com/@smithy/core/-/core-2.5.3.tgz#1d5723f676b0d6ec08c515272f0ac03aa59fac72"
+ integrity sha512-96uW8maifUSmehaeW7uydWn7wBc98NEeNI3zN8vqakGpyCQgzyJaA64Z4FCOUmAdCJkhppd/7SZ798Fo4Xx37g==
+ dependencies:
+ "@smithy/middleware-serde" "^3.0.10"
+ "@smithy/protocol-http" "^4.1.7"
+ "@smithy/types" "^3.7.1"
"@smithy/util-body-length-browser" "^3.0.0"
- "@smithy/util-middleware" "^3.0.7"
+ "@smithy/util-middleware" "^3.0.10"
+ "@smithy/util-stream" "^3.3.1"
"@smithy/util-utf8" "^3.0.0"
tslib "^2.6.2"
-"@smithy/credential-provider-imds@^3.2.4":
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.4.tgz#e1a2bfc8a0066f673756ad8735247cf284b9735c"
- integrity sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w==
+"@smithy/credential-provider-imds@^3.2.6", "@smithy/credential-provider-imds@^3.2.7":
+ version "3.2.7"
+ resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.7.tgz#6eedf87ba0238723ec46d8ce0f18e276685a702d"
+ integrity sha512-cEfbau+rrWF8ylkmmVAObOmjbTIzKyUC5TkBL58SbLywD0RCBC4JAUKbmtSm2w5KUJNRPGgpGFMvE2FKnuNlWQ==
dependencies:
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/types" "^3.5.0"
- "@smithy/url-parser" "^3.0.7"
+ "@smithy/node-config-provider" "^3.1.11"
+ "@smithy/property-provider" "^3.1.10"
+ "@smithy/types" "^3.7.1"
+ "@smithy/url-parser" "^3.0.10"
tslib "^2.6.2"
"@smithy/eventstream-codec@^1.1.0":
@@ -1185,33 +1174,33 @@
"@smithy/util-hex-encoding" "^1.1.0"
tslib "^2.5.0"
-"@smithy/fetch-http-handler@^3.2.9":
- version "3.2.9"
- resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.9.tgz#8d5199c162a37caa37a8b6848eefa9ca58221a0b"
- integrity sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==
+"@smithy/fetch-http-handler@^4.1.0", "@smithy/fetch-http-handler@^4.1.1":
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-4.1.1.tgz#cead80762af4cdea11e7eeb627ea1c4835265dfa"
+ integrity sha512-bH7QW0+JdX0bPBadXt8GwMof/jz0H28I84hU1Uet9ISpzUqXqRQ3fEZJ+ANPOhzSEczYvANNl3uDQDYArSFDtA==
dependencies:
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/querystring-builder" "^3.0.7"
- "@smithy/types" "^3.5.0"
+ "@smithy/protocol-http" "^4.1.7"
+ "@smithy/querystring-builder" "^3.0.10"
+ "@smithy/types" "^3.7.1"
"@smithy/util-base64" "^3.0.0"
tslib "^2.6.2"
-"@smithy/hash-node@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.7.tgz#03b5a382fb588b8c2bac11b4fe7300aaf1661c88"
- integrity sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw==
+"@smithy/hash-node@^3.0.9":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-3.0.10.tgz#93c857b4bff3a48884886440fd9772924887e592"
+ integrity sha512-3zWGWCHI+FlJ5WJwx73Mw2llYR8aflVyZN5JhoqLxbdPZi6UyKSdCeXAWJw9ja22m6S6Tzz1KZ+kAaSwvydi0g==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
"@smithy/util-buffer-from" "^3.0.0"
"@smithy/util-utf8" "^3.0.0"
tslib "^2.6.2"
-"@smithy/invalid-dependency@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.7.tgz#b36f258d94498f3c72ab6020091a66fc7cc16eda"
- integrity sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA==
+"@smithy/invalid-dependency@^3.0.9":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-3.0.10.tgz#8616dee555916c24dec3e33b1e046c525efbfee3"
+ integrity sha512-Lp2L65vFi+cj0vFMu2obpPW69DU+6O5g3086lmI4XcnRCG8PxvpWC7XyaVwJCxsZFzueHjXnrOH/E0pl0zikfA==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
"@smithy/is-array-buffer@^1.1.0":
@@ -1235,86 +1224,87 @@
dependencies:
tslib "^2.6.2"
-"@smithy/middleware-content-length@^3.0.9":
- version "3.0.9"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.9.tgz#fb613d1a6b8c91e828d11c0d7a0a8576dba89b8b"
- integrity sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA==
+"@smithy/middleware-content-length@^3.0.11":
+ version "3.0.12"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-3.0.12.tgz#3b248ed1e8f1e0ae67171abb8eae9da7ab7ca613"
+ integrity sha512-1mDEXqzM20yywaMDuf5o9ue8OkJ373lSPbaSjyEvkWdqELhFMyNNgKGWL/rCSf4KME8B+HlHKuR8u9kRj8HzEQ==
dependencies:
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/types" "^3.5.0"
+ "@smithy/protocol-http" "^4.1.7"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/middleware-endpoint@^3.1.4":
- version "3.1.4"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.4.tgz#222c9fa49c8af6ebf8bea8ab220d92d9b8c90d3d"
- integrity sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ==
- dependencies:
- "@smithy/middleware-serde" "^3.0.7"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/shared-ini-file-loader" "^3.1.8"
- "@smithy/types" "^3.5.0"
- "@smithy/url-parser" "^3.0.7"
- "@smithy/util-middleware" "^3.0.7"
+"@smithy/middleware-endpoint@^3.2.2", "@smithy/middleware-endpoint@^3.2.3":
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-3.2.3.tgz#7dd3df0052fc55891522631a7751e613b6efd68a"
+ integrity sha512-Hdl9296i/EMptaX7agrSzJZDiz5Y8XPUeBbctTmMtnCguGpqfU3jVsTUan0VLaOhsnquqWLL8Bl5HrlbVGT1og==
+ dependencies:
+ "@smithy/core" "^2.5.3"
+ "@smithy/middleware-serde" "^3.0.10"
+ "@smithy/node-config-provider" "^3.1.11"
+ "@smithy/shared-ini-file-loader" "^3.1.11"
+ "@smithy/types" "^3.7.1"
+ "@smithy/url-parser" "^3.0.10"
+ "@smithy/util-middleware" "^3.0.10"
tslib "^2.6.2"
-"@smithy/middleware-retry@^3.0.22":
- version "3.0.22"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.22.tgz#578ceafd72fd655cde35c35b462a8aad26fd07e2"
- integrity sha512-svEN7O2Tf7BoaBkPzX/8AE2Bv7p16d9/ulFAD1Gmn5g19iMqNk1WIkMxAY7SpB9/tVtUwKx0NaIsBRl88gumZA==
- dependencies:
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/service-error-classification" "^3.0.7"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
- "@smithy/util-middleware" "^3.0.7"
- "@smithy/util-retry" "^3.0.7"
+"@smithy/middleware-retry@^3.0.26":
+ version "3.0.27"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-3.0.27.tgz#2e4dda420178835cd2d416479505d313b601ba21"
+ integrity sha512-H3J/PjJpLL7Tt+fxDKiOD25sMc94YetlQhCnYeNmina2LZscAdu0ZEZPas/kwePHABaEtqp7hqa5S4UJgMs1Tg==
+ dependencies:
+ "@smithy/node-config-provider" "^3.1.11"
+ "@smithy/protocol-http" "^4.1.7"
+ "@smithy/service-error-classification" "^3.0.10"
+ "@smithy/smithy-client" "^3.4.4"
+ "@smithy/types" "^3.7.1"
+ "@smithy/util-middleware" "^3.0.10"
+ "@smithy/util-retry" "^3.0.10"
tslib "^2.6.2"
uuid "^9.0.1"
-"@smithy/middleware-serde@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.7.tgz#03f0dda75edffc4cc90ea422349cbfb82368efa7"
- integrity sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g==
+"@smithy/middleware-serde@^3.0.10", "@smithy/middleware-serde@^3.0.9":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-3.0.10.tgz#5f6c0b57b10089a21d355bd95e9b7d40378454d7"
+ integrity sha512-MnAuhh+dD14F428ubSJuRnmRsfOpxSzvRhaGVTvd/lrUDE3kxzCCmH8lnVTvoNQnV2BbJ4c15QwZ3UdQBtFNZA==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/middleware-stack@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.7.tgz#813fa7b47895ce0d085eac89c056d21b1e46e771"
- integrity sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA==
+"@smithy/middleware-stack@^3.0.10", "@smithy/middleware-stack@^3.0.9":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-3.0.10.tgz#73e2fde5d151440844161773a17ee13375502baf"
+ integrity sha512-grCHyoiARDBBGPyw2BeicpjgpsDFWZZxptbVKb3CRd/ZA15F/T6rZjCCuBUjJwdck1nwUuIxYtsS4H9DDpbP5w==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/node-config-provider@^3.1.8":
- version "3.1.8"
- resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.8.tgz#2c1092040b4062eae0f7c9e121cc00ac6a77efee"
- integrity sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q==
+"@smithy/node-config-provider@^3.1.10", "@smithy/node-config-provider@^3.1.11":
+ version "3.1.11"
+ resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-3.1.11.tgz#95feba85a5cb3de3fe9adfff1060b35fd556d023"
+ integrity sha512-URq3gT3RpDikh/8MBJUB+QGZzfS7Bm6TQTqoh4CqE8NBuyPkWa5eUXj0XFcFfeZVgg3WMh1u19iaXn8FvvXxZw==
dependencies:
- "@smithy/property-provider" "^3.1.7"
- "@smithy/shared-ini-file-loader" "^3.1.8"
- "@smithy/types" "^3.5.0"
+ "@smithy/property-provider" "^3.1.10"
+ "@smithy/shared-ini-file-loader" "^3.1.11"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/node-http-handler@^3.2.4":
- version "3.2.4"
- resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.2.4.tgz#3c57c40d082c3bacac1e49955bd1240e8ccc40b2"
- integrity sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ==
+"@smithy/node-http-handler@^3.3.0", "@smithy/node-http-handler@^3.3.1":
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-3.3.1.tgz#788fc1c22c21a0cf982f4025ccf9f64217f3164f"
+ integrity sha512-fr+UAOMGWh6bn4YSEezBCpJn9Ukp9oR4D32sCjCo7U81evE11YePOQ58ogzyfgmjIO79YeOdfXXqr0jyhPQeMg==
dependencies:
- "@smithy/abort-controller" "^3.1.5"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/querystring-builder" "^3.0.7"
- "@smithy/types" "^3.5.0"
+ "@smithy/abort-controller" "^3.1.8"
+ "@smithy/protocol-http" "^4.1.7"
+ "@smithy/querystring-builder" "^3.0.10"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/property-provider@^3.1.7":
- version "3.1.7"
- resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.7.tgz#8a304a4b9110a067a93c784e4c11e175f82da379"
- integrity sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw==
+"@smithy/property-provider@^3.1.10", "@smithy/property-provider@^3.1.9":
+ version "3.1.10"
+ resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-3.1.10.tgz#ae00447c1060c194c3e1b9475f7c8548a70f8486"
+ integrity sha512-n1MJZGTorTH2DvyTVj+3wXnd4CzjJxyXeOgnTlgNVFxaaMeT4OteEp4QrzF8p9ee2yg42nvyVK6R/awLCakjeQ==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
"@smithy/protocol-http@^1.1.0":
@@ -1325,44 +1315,44 @@
"@smithy/types" "^1.2.0"
tslib "^2.5.0"
-"@smithy/protocol-http@^4.1.4":
- version "4.1.4"
- resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.4.tgz#6940d652b1825bda2422163ec9baab552669a338"
- integrity sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ==
+"@smithy/protocol-http@^4.1.6", "@smithy/protocol-http@^4.1.7":
+ version "4.1.7"
+ resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-4.1.7.tgz#5c67e62beb5deacdb94f2127f9a344bdf1b2ed6e"
+ integrity sha512-FP2LepWD0eJeOTm0SjssPcgqAlDFzOmRXqXmGhfIM52G7Lrox/pcpQf6RP4F21k0+O12zaqQt5fCDOeBtqY6Cg==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/querystring-builder@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.7.tgz#8c443c65f4249ff1637088db1166d18411d41555"
- integrity sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw==
+"@smithy/querystring-builder@^3.0.10":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-3.0.10.tgz#db8773af85ee3977c82b8e35a5cdd178c621306d"
+ integrity sha512-nT9CQF3EIJtIUepXQuBFb8dxJi3WVZS3XfuDksxSCSn+/CzZowRLdhDn+2acbBv8R6eaJqPupoI/aRFIImNVPQ==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
"@smithy/util-uri-escape" "^3.0.0"
tslib "^2.6.2"
-"@smithy/querystring-parser@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.7.tgz#936206d1e6da9d862384dae730b4bad042d6a948"
- integrity sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA==
+"@smithy/querystring-parser@^3.0.10":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-3.0.10.tgz#62db744a1ed2cf90f4c08d2c73d365e033b4a11c"
+ integrity sha512-Oa0XDcpo9SmjhiDD9ua2UyM3uU01ZTuIrNdZvzwUTykW1PM8o2yJvMh1Do1rY5sUQg4NDV70dMi0JhDx4GyxuQ==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/service-error-classification@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.7.tgz#5bab4ad802d30bd3fa52b8134f6c171582358226"
- integrity sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA==
+"@smithy/service-error-classification@^3.0.10":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-3.0.10.tgz#941c549daf0e9abb84d3def1d9e1e3f0f74f5ba6"
+ integrity sha512-zHe642KCqDxXLuhs6xmHVgRwy078RfqxP2wRDpIyiF8EmsWXptMwnMwbVa50lw+WOGNrYm9zbaEg0oDe3PTtvQ==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
-"@smithy/shared-ini-file-loader@^3.1.8":
- version "3.1.8"
- resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.8.tgz#7a0bf5f20cfe8e0c4a36d8dcab8194d0d2ee958e"
- integrity sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw==
+"@smithy/shared-ini-file-loader@^3.1.10", "@smithy/shared-ini-file-loader@^3.1.11":
+ version "3.1.11"
+ resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.11.tgz#0b4f98c4a66480956fbbefc4627c5dc09d891aea"
+ integrity sha512-AUdrIZHFtUgmfSN4Gq9nHu3IkHMa1YDcN+s061Nfm+6pQ0mJy85YQDB0tZBCmls0Vuj22pLwDPmL92+Hvfwwlg==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
"@smithy/signature-v4@^1.0.1":
@@ -1379,30 +1369,31 @@
"@smithy/util-utf8" "^1.1.0"
tslib "^2.5.0"
-"@smithy/signature-v4@^4.2.0":
- version "4.2.0"
- resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.2.0.tgz#291f5a0e756cc251377e1e8af2a1f494e6173029"
- integrity sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ==
+"@smithy/signature-v4@^4.2.2":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-4.2.3.tgz#abbca5e5fe9158422b3125b2956791a325a27f22"
+ integrity sha512-pPSQQ2v2vu9vc8iew7sszLd0O09I5TRc5zhY71KA+Ao0xYazIG+uLeHbTJfIWGO3BGVLiXjUr3EEeCcEQLjpWQ==
dependencies:
"@smithy/is-array-buffer" "^3.0.0"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/types" "^3.5.0"
+ "@smithy/protocol-http" "^4.1.7"
+ "@smithy/types" "^3.7.1"
"@smithy/util-hex-encoding" "^3.0.0"
- "@smithy/util-middleware" "^3.0.7"
+ "@smithy/util-middleware" "^3.0.10"
"@smithy/util-uri-escape" "^3.0.0"
"@smithy/util-utf8" "^3.0.0"
tslib "^2.6.2"
-"@smithy/smithy-client@^3.3.6":
- version "3.3.6"
- resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.3.6.tgz#882fcc4b5db35c284c7a7c6116b27be324c41202"
- integrity sha512-qdH+mvDHgq1ss6mocyIl2/VjlWXew7pGwZQydwYJczEc22HZyX3k8yVPV9aZsbYbssHPvMDRA5rfBDrjQUbIIw==
- dependencies:
- "@smithy/middleware-endpoint" "^3.1.4"
- "@smithy/middleware-stack" "^3.0.7"
- "@smithy/protocol-http" "^4.1.4"
- "@smithy/types" "^3.5.0"
- "@smithy/util-stream" "^3.1.9"
+"@smithy/smithy-client@^3.4.3", "@smithy/smithy-client@^3.4.4":
+ version "3.4.4"
+ resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-3.4.4.tgz#460870dc97d945fa2f390890359cf09d01131e0f"
+ integrity sha512-dPGoJuSZqvirBq+yROapBcHHvFjChoAQT8YPWJ820aPHHiowBlB3RL1Q4kPT1hx0qKgJuf+HhyzKi5Gbof4fNA==
+ dependencies:
+ "@smithy/core" "^2.5.3"
+ "@smithy/middleware-endpoint" "^3.2.3"
+ "@smithy/middleware-stack" "^3.0.10"
+ "@smithy/protocol-http" "^4.1.7"
+ "@smithy/types" "^3.7.1"
+ "@smithy/util-stream" "^3.3.1"
tslib "^2.6.2"
"@smithy/types@^1.2.0":
@@ -1412,20 +1403,20 @@
dependencies:
tslib "^2.5.0"
-"@smithy/types@^3.5.0":
- version "3.5.0"
- resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.5.0.tgz#9589e154c50d9c5d00feb7d818112ef8fc285d6e"
- integrity sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q==
+"@smithy/types@^3.7.0", "@smithy/types@^3.7.1":
+ version "3.7.1"
+ resolved "https://registry.yarnpkg.com/@smithy/types/-/types-3.7.1.tgz#4af54c4e28351e9101996785a33f2fdbf93debe7"
+ integrity sha512-XKLcLXZY7sUQgvvWyeaL/qwNPp6V3dWcUjqrQKjSb+tzYiCy340R/c64LV5j+Tnb2GhmunEX0eou+L+m2hJNYA==
dependencies:
tslib "^2.6.2"
-"@smithy/url-parser@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.7.tgz#9d7d7e4e38514bf75ade6e8a30d2300f3db17d1b"
- integrity sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA==
+"@smithy/url-parser@^3.0.10", "@smithy/url-parser@^3.0.9":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-3.0.10.tgz#f389985a79766cff4a99af14979f01a17ce318da"
+ integrity sha512-j90NUalTSBR2NaZTuruEgavSdh8MLirf58LoGSk4AtQfyIymogIhgnGUU2Mga2bkMkpSoC9gxb74xBXL5afKAQ==
dependencies:
- "@smithy/querystring-parser" "^3.0.7"
- "@smithy/types" "^3.5.0"
+ "@smithy/querystring-parser" "^3.0.10"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
"@smithy/util-base64@^3.0.0":
@@ -1482,37 +1473,37 @@
dependencies:
tslib "^2.6.2"
-"@smithy/util-defaults-mode-browser@^3.0.22":
- version "3.0.22"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.22.tgz#e9141ed58109d572337a621d96131526aaf4f42f"
- integrity sha512-WKzUxNsOun5ETwEOrvooXeI1mZ8tjDTOcN4oruELWHhEYDgQYWwxZupURVyovcv+h5DyQT/DzK5nm4ZoR/Tw5Q==
+"@smithy/util-defaults-mode-browser@^3.0.26":
+ version "3.0.27"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.27.tgz#d5df39faee8ad4bb5a6920b208469caa9dda2ccb"
+ integrity sha512-GV8NvPy1vAGp7u5iD/xNKUxCorE4nQzlyl057qRac+KwpH5zq8wVq6rE3lPPeuFLyQXofPN6JwxL1N9ojGapiQ==
dependencies:
- "@smithy/property-provider" "^3.1.7"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
+ "@smithy/property-provider" "^3.1.10"
+ "@smithy/smithy-client" "^3.4.4"
+ "@smithy/types" "^3.7.1"
bowser "^2.11.0"
tslib "^2.6.2"
-"@smithy/util-defaults-mode-node@^3.0.22":
- version "3.0.22"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.22.tgz#fc51f37aaa5ec03edec0da890a1ca1e3e3cdc70b"
- integrity sha512-hUsciOmAq8fsGwqg4+pJfNRmrhfqMH4Y9UeGcgeUl88kPAoYANFATJqCND+O4nUvwp5TzsYwGpqpcBKyA8LUUg==
- dependencies:
- "@smithy/config-resolver" "^3.0.9"
- "@smithy/credential-provider-imds" "^3.2.4"
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/property-provider" "^3.1.7"
- "@smithy/smithy-client" "^3.3.6"
- "@smithy/types" "^3.5.0"
+"@smithy/util-defaults-mode-node@^3.0.26":
+ version "3.0.27"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.27.tgz#a7248c9d9cb620827ab57ef9d1867bfe8aef42d0"
+ integrity sha512-7+4wjWfZqZxZVJvDutO+i1GvL6bgOajEkop4FuR6wudFlqBiqwxw3HoH6M9NgeCd37km8ga8NPp2JacQEtAMPg==
+ dependencies:
+ "@smithy/config-resolver" "^3.0.12"
+ "@smithy/credential-provider-imds" "^3.2.7"
+ "@smithy/node-config-provider" "^3.1.11"
+ "@smithy/property-provider" "^3.1.10"
+ "@smithy/smithy-client" "^3.4.4"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/util-endpoints@^2.1.3":
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.1.3.tgz#7498151e9dc714bdd0c6339314dd2350fa4d250a"
- integrity sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw==
+"@smithy/util-endpoints@^2.1.5":
+ version "2.1.6"
+ resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-2.1.6.tgz#720cbd1a616ad7c099b77780f0cb0f1f9fc5d2df"
+ integrity sha512-mFV1t3ndBh0yZOJgWxO9J/4cHZVn5UG1D8DeCc6/echfNkeEJWu9LD7mgGH5fHrEdR7LDoWw7PQO6QiGpHXhgA==
dependencies:
- "@smithy/node-config-provider" "^3.1.8"
- "@smithy/types" "^3.5.0"
+ "@smithy/node-config-provider" "^3.1.11"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
"@smithy/util-hex-encoding@^1.1.0":
@@ -1536,31 +1527,31 @@
dependencies:
tslib "^2.5.0"
-"@smithy/util-middleware@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.7.tgz#770d09749b6d170a1641384a2e961487447446fa"
- integrity sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA==
+"@smithy/util-middleware@^3.0.10", "@smithy/util-middleware@^3.0.9":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-3.0.10.tgz#ab8be99f1aaafe5a5490c344f27a264b72b7592f"
+ integrity sha512-eJO+/+RsrG2RpmY68jZdwQtnfsxjmPxzMlQpnHKjFPwrYqvlcT+fHdT+ZVwcjlWSrByOhGr9Ff2GG17efc192A==
dependencies:
- "@smithy/types" "^3.5.0"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/util-retry@^3.0.7":
- version "3.0.7"
- resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.7.tgz#694e0667574ffe9772f620b35d3c7286aced35e9"
- integrity sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug==
+"@smithy/util-retry@^3.0.10", "@smithy/util-retry@^3.0.9":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-3.0.10.tgz#fc13e1b30e87af0cbecadf29ca83b171e2040440"
+ integrity sha512-1l4qatFp4PiU6j7UsbasUHL2VU023NRB/gfaa1M0rDqVrRN4g3mCArLRyH3OuktApA4ye+yjWQHjdziunw2eWA==
dependencies:
- "@smithy/service-error-classification" "^3.0.7"
- "@smithy/types" "^3.5.0"
+ "@smithy/service-error-classification" "^3.0.10"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
-"@smithy/util-stream@^3.1.9":
- version "3.1.9"
- resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.1.9.tgz#d39656eae27696bdc5a3ec7c2f6b89c32dccd1ca"
- integrity sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ==
+"@smithy/util-stream@^3.3.0", "@smithy/util-stream@^3.3.1":
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-3.3.1.tgz#a2636f435637ef90d64df2bb8e71cd63236be112"
+ integrity sha512-Ff68R5lJh2zj+AUTvbAU/4yx+6QPRzg7+pI7M1FbtQHcRIp7xvguxVsQBKyB3fwiOwhAKu0lnNyYBaQfSW6TNw==
dependencies:
- "@smithy/fetch-http-handler" "^3.2.9"
- "@smithy/node-http-handler" "^3.2.4"
- "@smithy/types" "^3.5.0"
+ "@smithy/fetch-http-handler" "^4.1.1"
+ "@smithy/node-http-handler" "^3.3.1"
+ "@smithy/types" "^3.7.1"
"@smithy/util-base64" "^3.0.0"
"@smithy/util-buffer-from" "^3.0.0"
"@smithy/util-hex-encoding" "^3.0.0"
@@ -1605,13 +1596,13 @@
"@smithy/util-buffer-from" "^3.0.0"
tslib "^2.6.2"
-"@smithy/util-waiter@^3.1.6":
- version "3.1.6"
- resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.6.tgz#c65870d0c802e33b96112fac5c4471b3bf2eeecb"
- integrity sha512-xs/KAwWOeCklq8aMlnpk25LgxEYHKOEodfjfKclDMLcBJEVEKzDLxZxBQyztcuPJ7F54213NJS8PxoiHNMdItQ==
+"@smithy/util-waiter@^3.1.8":
+ version "3.1.9"
+ resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-3.1.9.tgz#1330ce2e79b58419d67755d25bce7a226e32dc6d"
+ integrity sha512-/aMXPANhMOlMPjfPtSrDfPeVP8l56SJlz93xeiLmhLe5xvlXA5T3abZ2ilEsDEPeY9T/wnN/vNGn9wa1SbufWA==
dependencies:
- "@smithy/abort-controller" "^3.1.5"
- "@smithy/types" "^3.5.0"
+ "@smithy/abort-controller" "^3.1.8"
+ "@smithy/types" "^3.7.1"
tslib "^2.6.2"
"@tootallnate/once@2":
@@ -1659,7 +1650,23 @@
dependencies:
"@types/node" "*"
-"@types/estree@^1.0.5":
+"@types/eslint-scope@^3.7.7":
+ version "3.7.7"
+ resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.7.tgz#3108bd5f18b0cdb277c867b3dd449c9ed7079ac5"
+ integrity sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==
+ dependencies:
+ "@types/eslint" "*"
+ "@types/estree" "*"
+
+"@types/eslint@*":
+ version "9.6.1"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.1.tgz#d5795ad732ce81715f27f75da913004a56751584"
+ integrity sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==
+ dependencies:
+ "@types/estree" "*"
+ "@types/json-schema" "*"
+
+"@types/estree@*", "@types/estree@^1.0.6":
version "1.0.6"
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50"
integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
@@ -1707,7 +1714,7 @@
"@types/tough-cookie" "*"
parse5 "^7.0.0"
-"@types/json-schema@^7.0.8":
+"@types/json-schema@*", "@types/json-schema@^7.0.8":
version "7.0.15"
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841"
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
@@ -1721,11 +1728,11 @@
form-data "^4.0.0"
"@types/node@*":
- version "22.7.4"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-22.7.4.tgz#e35d6f48dca3255ce44256ddc05dee1c23353fcc"
- integrity sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==
+ version "22.9.0"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-22.9.0.tgz#b7f16e5c3384788542c72dc3d561a7ceae2c0365"
+ integrity sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==
dependencies:
- undici-types "~6.19.2"
+ undici-types "~6.19.8"
"@types/node@17.0.33":
version "17.0.33"
@@ -1738,9 +1745,9 @@
integrity sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==
"@types/readable-stream@^4.0.14":
- version "4.0.15"
- resolved "https://registry.yarnpkg.com/@types/readable-stream/-/readable-stream-4.0.15.tgz#e6ec26fe5b02f578c60baf1fa9452e90957d2bfb"
- integrity sha512-oAZ3kw+kJFkEqyh7xORZOku1YAKvsFTogRY8kVl4vHpEKiDkfnSA/My8haRE7fvmix5Zyy+1pwzOi7yycGLBJw==
+ version "4.0.18"
+ resolved "https://registry.yarnpkg.com/@types/readable-stream/-/readable-stream-4.0.18.tgz#5d8d15d26c776500ce573cae580787d149823bfc"
+ integrity sha512-21jK/1j+Wg+7jVw1xnSwy/2Q1VgVjWuFssbYGTREPUBeZ+rqVFl2udq0IkxzPC0ZhOzVceUbyIACFZKLqKEBlA==
dependencies:
"@types/node" "*"
safe-buffer "~5.1.1"
@@ -1760,6 +1767,11 @@
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"
@@ -1772,125 +1784,125 @@
dependencies:
"@types/yargs-parser" "*"
-"@webassemblyjs/ast@1.12.1", "@webassemblyjs/ast@^1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.12.1.tgz#bb16a0e8b1914f979f45864c23819cc3e3f0d4bb"
- integrity sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==
+"@webassemblyjs/ast@1.14.1", "@webassemblyjs/ast@^1.12.1":
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.14.1.tgz#a9f6a07f2b03c95c8d38c4536a1fdfb521ff55b6"
+ integrity sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==
dependencies:
- "@webassemblyjs/helper-numbers" "1.11.6"
- "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/helper-numbers" "1.13.2"
+ "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
-"@webassemblyjs/floating-point-hex-parser@1.11.6":
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431"
- integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==
+"@webassemblyjs/floating-point-hex-parser@1.13.2":
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz#fcca1eeddb1cc4e7b6eed4fc7956d6813b21b9fb"
+ integrity sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==
-"@webassemblyjs/helper-api-error@1.11.6":
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768"
- integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==
+"@webassemblyjs/helper-api-error@1.13.2":
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz#e0a16152248bc38daee76dd7e21f15c5ef3ab1e7"
+ integrity sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==
-"@webassemblyjs/helper-buffer@1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz#6df20d272ea5439bf20ab3492b7fb70e9bfcb3f6"
- integrity sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==
+"@webassemblyjs/helper-buffer@1.14.1":
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz#822a9bc603166531f7d5df84e67b5bf99b72b96b"
+ integrity sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==
-"@webassemblyjs/helper-numbers@1.11.6":
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5"
- integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==
+"@webassemblyjs/helper-numbers@1.13.2":
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz#dbd932548e7119f4b8a7877fd5a8d20e63490b2d"
+ integrity sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==
dependencies:
- "@webassemblyjs/floating-point-hex-parser" "1.11.6"
- "@webassemblyjs/helper-api-error" "1.11.6"
+ "@webassemblyjs/floating-point-hex-parser" "1.13.2"
+ "@webassemblyjs/helper-api-error" "1.13.2"
"@xtuc/long" "4.2.2"
-"@webassemblyjs/helper-wasm-bytecode@1.11.6":
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9"
- integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==
+"@webassemblyjs/helper-wasm-bytecode@1.13.2":
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz#e556108758f448aae84c850e593ce18a0eb31e0b"
+ integrity sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==
-"@webassemblyjs/helper-wasm-section@1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz#3da623233ae1a60409b509a52ade9bc22a37f7bf"
- integrity sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==
+"@webassemblyjs/helper-wasm-section@1.14.1":
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz#9629dda9c4430eab54b591053d6dc6f3ba050348"
+ integrity sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==
dependencies:
- "@webassemblyjs/ast" "1.12.1"
- "@webassemblyjs/helper-buffer" "1.12.1"
- "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
- "@webassemblyjs/wasm-gen" "1.12.1"
+ "@webassemblyjs/ast" "1.14.1"
+ "@webassemblyjs/helper-buffer" "1.14.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
+ "@webassemblyjs/wasm-gen" "1.14.1"
-"@webassemblyjs/ieee754@1.11.6":
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a"
- integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==
+"@webassemblyjs/ieee754@1.13.2":
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz#1c5eaace1d606ada2c7fd7045ea9356c59ee0dba"
+ integrity sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==
dependencies:
"@xtuc/ieee754" "^1.2.0"
-"@webassemblyjs/leb128@1.11.6":
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7"
- integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==
+"@webassemblyjs/leb128@1.13.2":
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.13.2.tgz#57c5c3deb0105d02ce25fa3fd74f4ebc9fd0bbb0"
+ integrity sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==
dependencies:
"@xtuc/long" "4.2.2"
-"@webassemblyjs/utf8@1.11.6":
- version "1.11.6"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a"
- integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==
+"@webassemblyjs/utf8@1.13.2":
+ version "1.13.2"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.13.2.tgz#917a20e93f71ad5602966c2d685ae0c6c21f60f1"
+ integrity sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==
"@webassemblyjs/wasm-edit@^1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz#9f9f3ff52a14c980939be0ef9d5df9ebc678ae3b"
- integrity sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==
- dependencies:
- "@webassemblyjs/ast" "1.12.1"
- "@webassemblyjs/helper-buffer" "1.12.1"
- "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
- "@webassemblyjs/helper-wasm-section" "1.12.1"
- "@webassemblyjs/wasm-gen" "1.12.1"
- "@webassemblyjs/wasm-opt" "1.12.1"
- "@webassemblyjs/wasm-parser" "1.12.1"
- "@webassemblyjs/wast-printer" "1.12.1"
-
-"@webassemblyjs/wasm-gen@1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz#a6520601da1b5700448273666a71ad0a45d78547"
- integrity sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==
- dependencies:
- "@webassemblyjs/ast" "1.12.1"
- "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
- "@webassemblyjs/ieee754" "1.11.6"
- "@webassemblyjs/leb128" "1.11.6"
- "@webassemblyjs/utf8" "1.11.6"
-
-"@webassemblyjs/wasm-opt@1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz#9e6e81475dfcfb62dab574ac2dda38226c232bc5"
- integrity sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==
- dependencies:
- "@webassemblyjs/ast" "1.12.1"
- "@webassemblyjs/helper-buffer" "1.12.1"
- "@webassemblyjs/wasm-gen" "1.12.1"
- "@webassemblyjs/wasm-parser" "1.12.1"
-
-"@webassemblyjs/wasm-parser@1.12.1", "@webassemblyjs/wasm-parser@^1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz#c47acb90e6f083391e3fa61d113650eea1e95937"
- integrity sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==
- dependencies:
- "@webassemblyjs/ast" "1.12.1"
- "@webassemblyjs/helper-api-error" "1.11.6"
- "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
- "@webassemblyjs/ieee754" "1.11.6"
- "@webassemblyjs/leb128" "1.11.6"
- "@webassemblyjs/utf8" "1.11.6"
-
-"@webassemblyjs/wast-printer@1.12.1":
- version "1.12.1"
- resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz#bcecf661d7d1abdaf989d8341a4833e33e2b31ac"
- integrity sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==
- dependencies:
- "@webassemblyjs/ast" "1.12.1"
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz#ac6689f502219b59198ddec42dcd496b1004d597"
+ integrity sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==
+ dependencies:
+ "@webassemblyjs/ast" "1.14.1"
+ "@webassemblyjs/helper-buffer" "1.14.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
+ "@webassemblyjs/helper-wasm-section" "1.14.1"
+ "@webassemblyjs/wasm-gen" "1.14.1"
+ "@webassemblyjs/wasm-opt" "1.14.1"
+ "@webassemblyjs/wasm-parser" "1.14.1"
+ "@webassemblyjs/wast-printer" "1.14.1"
+
+"@webassemblyjs/wasm-gen@1.14.1":
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz#991e7f0c090cb0bb62bbac882076e3d219da9570"
+ integrity sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==
+ dependencies:
+ "@webassemblyjs/ast" "1.14.1"
+ "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
+ "@webassemblyjs/ieee754" "1.13.2"
+ "@webassemblyjs/leb128" "1.13.2"
+ "@webassemblyjs/utf8" "1.13.2"
+
+"@webassemblyjs/wasm-opt@1.14.1":
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz#e6f71ed7ccae46781c206017d3c14c50efa8106b"
+ integrity sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==
+ dependencies:
+ "@webassemblyjs/ast" "1.14.1"
+ "@webassemblyjs/helper-buffer" "1.14.1"
+ "@webassemblyjs/wasm-gen" "1.14.1"
+ "@webassemblyjs/wasm-parser" "1.14.1"
+
+"@webassemblyjs/wasm-parser@1.14.1", "@webassemblyjs/wasm-parser@^1.12.1":
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz#b3e13f1893605ca78b52c68e54cf6a865f90b9fb"
+ integrity sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==
+ dependencies:
+ "@webassemblyjs/ast" "1.14.1"
+ "@webassemblyjs/helper-api-error" "1.13.2"
+ "@webassemblyjs/helper-wasm-bytecode" "1.13.2"
+ "@webassemblyjs/ieee754" "1.13.2"
+ "@webassemblyjs/leb128" "1.13.2"
+ "@webassemblyjs/utf8" "1.13.2"
+
+"@webassemblyjs/wast-printer@1.14.1":
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz#3bb3e9638a8ae5fdaf9610e7a06b4d9f9aa6fe07"
+ integrity sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==
+ dependencies:
+ "@webassemblyjs/ast" "1.14.1"
"@xtuc/long" "4.2.2"
"@xtuc/ieee754@^1.2.0":
@@ -1923,11 +1935,6 @@ acorn-globals@^7.0.0:
acorn "^8.1.0"
acorn-walk "^8.0.2"
-acorn-import-attributes@^1.9.5:
- version "1.9.5"
- resolved "https://registry.yarnpkg.com/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz#7eb1557b1ba05ef18b5ed0ec67591bfab04688ef"
- integrity sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==
-
acorn-walk@^8.0.2:
version "8.3.4"
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.4.tgz#794dd169c3977edf4ba4ea47583587c5866236b7"
@@ -1935,10 +1942,10 @@ acorn-walk@^8.0.2:
dependencies:
acorn "^8.11.0"
-acorn@^8.1.0, acorn@^8.11.0, acorn@^8.7.1, acorn@^8.8.1, acorn@^8.8.2:
- version "8.12.1"
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248"
- integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==
+acorn@^8.1.0, acorn@^8.11.0, acorn@^8.14.0, acorn@^8.8.1, acorn@^8.8.2:
+ version "8.14.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.14.0.tgz#063e2c70cac5fb4f6467f0b11152e04c682795b0"
+ integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
agent-base@6:
version "6.0.2"
@@ -1974,13 +1981,6 @@ ansi-regex@^5.0.1:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
-ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
- dependencies:
- color-convert "^1.9.0"
-
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
@@ -2118,15 +2118,15 @@ braces@^3.0.3:
dependencies:
fill-range "^7.1.1"
-browserslist@^4.21.10, browserslist@^4.24.0:
- version "4.24.0"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.0.tgz#a1325fe4bc80b64fda169629fc01b3d6cecd38d4"
- integrity sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==
+browserslist@^4.24.0:
+ version "4.24.2"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.24.2.tgz#f5845bc91069dbd55ee89faf9822e1d885d16580"
+ integrity sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==
dependencies:
- caniuse-lite "^1.0.30001663"
- electron-to-chromium "^1.5.28"
+ caniuse-lite "^1.0.30001669"
+ electron-to-chromium "^1.5.41"
node-releases "^2.0.18"
- update-browserslist-db "^1.1.0"
+ update-browserslist-db "^1.1.1"
bs-logger@^0.2.6:
version "0.2.6"
@@ -2181,19 +2181,10 @@ camelcase@^6.2.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001663:
- version "1.0.30001667"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001667.tgz#99fc5ea0d9c6e96897a104a8352604378377f949"
- integrity sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==
-
-chalk@^2.4.2:
- version "2.4.2"
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
+caniuse-lite@^1.0.30001669:
+ version "1.0.30001680"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e"
+ integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==
chalk@^4.0.0, chalk@^4.0.2, chalk@^4.1.0:
version "4.1.2"
@@ -2242,13 +2233,6 @@ collect-v8-coverage@^1.0.0:
resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9"
integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==
-color-convert@^1.9.0:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
- dependencies:
- color-name "1.1.3"
-
color-convert@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
@@ -2256,11 +2240,6 @@ color-convert@^2.0.1:
dependencies:
color-name "~1.1.4"
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
-
color-name@~1.1.4:
version "1.1.4"
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
@@ -2297,9 +2276,9 @@ convict@^6.2.4:
yargs-parser "^20.2.7"
core-js@^3.0.0:
- version "3.38.1"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.38.1.tgz#aa375b79a286a670388a1a363363d53677c0383e"
- integrity sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==
+ version "3.39.0"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.39.0.tgz#57f7647f4d2d030c32a72ea23a0555b2eaa30f83"
+ integrity sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==
create-jest@^29.7.0:
version "29.7.0"
@@ -2315,9 +2294,9 @@ create-jest@^29.7.0:
prompts "^2.0.1"
cross-spawn@^7.0.3:
- version "7.0.3"
- resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
- integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.5.tgz#910aac880ff5243da96b728bc6521a5f6c2f2f82"
+ integrity sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==
dependencies:
path-key "^3.1.0"
shebang-command "^2.0.0"
@@ -2409,10 +2388,10 @@ ejs@^3.1.10:
dependencies:
jake "^10.8.5"
-electron-to-chromium@^1.5.28:
- version "1.5.32"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.32.tgz#4a05ee78e29e240aabaf73a67ce9fe73f52e1bc7"
- integrity sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==
+electron-to-chromium@^1.5.41:
+ version "1.5.60"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.60.tgz#29944afe568c58c40729e67af0f59f52d4d0ed32"
+ integrity sha512-HcraRUkTKJ+8yA3b10i9qvhUlPBRDlKjn1XGek1zDGVfAKcvi8TsUnImGqLiEm9j6ZulxXIWWIo9BmbkbCTGgA==
emittery@^0.13.1:
version "0.13.1"
@@ -2432,7 +2411,7 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.17.1:
graceful-fs "^4.2.4"
tapable "^2.2.0"
-entities@^4.4.0:
+entities@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
@@ -2466,11 +2445,6 @@ escalade@^3.1.1, escalade@^3.2.0:
resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
-escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
- integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
-
escape-string-regexp@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
@@ -2638,9 +2612,9 @@ form-data-encoder@^4.0.2:
integrity sha512-KQVhvhK8ZkWzxKxOr56CPulAhH3dobtuQ4+hNQ+HekH/Wp5gSOafqRAeTphQUJAIk0GBvHZgJ2ZGRWd5kphMuw==
form-data@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
- integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.1.tgz#ba1076daaaa5bfd7e99c1a6cb02aa0a5cff90d48"
+ integrity sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==
dependencies:
asynckit "^0.4.0"
combined-stream "^1.0.8"
@@ -2731,11 +2705,6 @@ graceful-fs@^4.1.2, graceful-fs@^4.2.11, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
-
has-flag@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
@@ -3565,9 +3534,9 @@ nwsapi@^2.2.2:
integrity sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==
object-inspect@^1.13.1:
- version "1.13.2"
- resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff"
- integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==
+ version "1.13.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a"
+ integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==
once@^1.3.0:
version "1.4.0"
@@ -3620,11 +3589,11 @@ parse-json@^5.2.0:
lines-and-columns "^1.1.6"
parse5@^7.0.0, parse5@^7.1.1:
- version "7.1.2"
- resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32"
- integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==
+ version "7.2.1"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.2.1.tgz#8928f55915e6125f430cc44309765bf17556a33a"
+ integrity sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==
dependencies:
- entities "^4.4.0"
+ entities "^4.5.0"
path-exists@^4.0.0:
version "4.0.0"
@@ -3652,9 +3621,9 @@ path-to-regexp@^2.2.1:
integrity sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==
picocolors@^1.0.0, picocolors@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59"
- integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
+ integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1:
version "2.3.1"
@@ -3701,11 +3670,13 @@ prompts@^2.0.1:
sisteransi "^1.0.5"
psl@^1.1.33:
- version "1.9.0"
- resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7"
- integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/psl/-/psl-1.10.0.tgz#1450f7e16f922c3beeb7bd9db3f312635018fa15"
+ integrity sha512-KSKHEbjAnpUuAUserOq0FxGXCUrzC3WniuSJhvdbs102rL55266ZcHBqLWOsG30spQMlPdpy7icATiAQehg/iA==
+ dependencies:
+ punycode "^2.3.1"
-punycode@^2.1.0, punycode@^2.1.1:
+punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1:
version "2.3.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
@@ -3982,13 +3953,6 @@ strnum@^1.0.5:
resolved "https://registry.yarnpkg.com/strnum/-/strnum-1.0.5.tgz#5c4e829fe15ad4ff0d20c3db5ac97b73c9b072db"
integrity sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
- dependencies:
- has-flag "^3.0.0"
-
supports-color@^7.1.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
@@ -4030,9 +3994,9 @@ terser-webpack-plugin@^5.3.10:
terser "^5.26.0"
terser@^5.26.0:
- version "5.34.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.34.1.tgz#af40386bdbe54af0d063e0670afd55c3105abeb6"
- integrity sha512-FsJZ7iZLd/BXkz+4xrRTGJ26o/6VTjQytUk8b8OxkwcD2I+79VPJlz7qss1+zE7h8GNIScFqXcDyJ/KqBYZFVA==
+ version "5.36.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.36.0.tgz#8b0dbed459ac40ff7b4c9fd5a3a2029de105180e"
+ integrity sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==
dependencies:
"@jridgewell/source-map" "^0.3.3"
acorn "^8.8.2"
@@ -4053,11 +4017,6 @@ tmpl@1.0.5:
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
-
to-regex-range@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
@@ -4126,9 +4085,9 @@ tslib@^1.11.1:
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
tslib@^2.3.1, tslib@^2.5.0, tslib@^2.6.2:
- version "2.7.0"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.7.0.tgz#d9b40c5c40ab59e8738f297df3087bf1a2690c01"
- integrity sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
+ integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
type-detect@4.0.8:
version "4.0.8"
@@ -4145,7 +4104,7 @@ typescript@4.6.4:
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.6.4.tgz#caa78bbc3a59e6a5c510d35703f6a09877ce45e9"
integrity sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==
-undici-types@~6.19.2:
+undici-types@~6.19.8:
version "6.19.8"
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.19.8.tgz#35111c9d1437ab83a7cdc0abae2f26d88eda0a02"
integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==
@@ -4155,7 +4114,7 @@ universalify@^0.2.0:
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
-update-browserslist-db@^1.1.0:
+update-browserslist-db@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz#80846fba1d79e82547fb661f8d141e0945755fe5"
integrity sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==
@@ -4240,17 +4199,17 @@ webpack-sources@^3.2.3:
integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
webpack@^5.91.0:
- version "5.95.0"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.95.0.tgz#8fd8c454fa60dad186fbe36c400a55848307b4c0"
- integrity sha512-2t3XstrKULz41MNMBF+cJ97TyHdyQ8HCt//pqErqDvNjU9YQBnZxIHa11VXsi7F3mb5/aO2tuDxdeTPdU7xu9Q==
+ version "5.96.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.96.1.tgz#3676d1626d8312b6b10d0c18cc049fba7ac01f0c"
+ integrity sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==
dependencies:
- "@types/estree" "^1.0.5"
+ "@types/eslint-scope" "^3.7.7"
+ "@types/estree" "^1.0.6"
"@webassemblyjs/ast" "^1.12.1"
"@webassemblyjs/wasm-edit" "^1.12.1"
"@webassemblyjs/wasm-parser" "^1.12.1"
- acorn "^8.7.1"
- acorn-import-attributes "^1.9.5"
- browserslist "^4.21.10"
+ acorn "^8.14.0"
+ browserslist "^4.24.0"
chrome-trace-event "^1.0.2"
enhanced-resolve "^5.17.1"
es-module-lexer "^1.2.1"