From 2b8fd1ebd64208a1206e39019042d40517797c43 Mon Sep 17 00:00:00 2001
From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com>
Date: Wed, 15 Oct 2025 23:27:58 +0000
Subject: [PATCH] SDK regeneration
---
package.json | 2 +-
reference.md | 264 ++-
src/Client.ts | 65 +-
src/api/client/requests/ChatRequest.ts | 20 +-
src/api/client/requests/ChatStreamRequest.ts | 8 +-
src/api/client/requests/EmbedRequest.ts | 2 +-
src/api/resources/batches/client/Client.ts | 507 ++++++
src/api/resources/batches/client/index.ts | 1 +
.../requests/BatchesListBatchesRequest.ts | 27 +
.../batches/client/requests/index.ts | 1 +
src/api/resources/batches/index.ts | 2 +
src/api/resources/batches/types/Batch.ts | 42 +
.../resources/batches/types/BatchStatus.ts | 32 +
.../batches/types/CancelBatchResponse.ts | 8 +
.../batches/types/CreateBatchResponse.ts | 13 +
.../batches/types/GetBatchResponse.ts | 13 +
.../batches/types/ListBatchesResponse.ts | 18 +
src/api/resources/batches/types/index.ts | 6 +
src/api/resources/connectors/client/Client.ts | 24 +-
src/api/resources/datasets/client/Client.ts | 20 +-
.../client/requests/DatasetsCreateRequest.ts | 2 +-
src/api/resources/embedJobs/client/Client.ts | 16 +-
src/api/resources/finetuning/client/Client.ts | 28 +-
src/api/resources/index.ts | 3 +
src/api/resources/models/client/Client.ts | 10 +-
src/api/resources/v2/client/Client.ts | 37 +-
.../v2/client/requests/V2ChatRequest.ts | 23 +-
.../v2/client/requests/V2ChatStreamRequest.ts | 44 +-
.../v2/client/requests/V2EmbedRequest.ts | 2 +-
src/api/types/ApiMeta.ts | 2 +
src/api/types/ChatRequestCitationQuality.ts | 15 +-
.../types/ChatStreamRequestCitationQuality.ts | 15 +-
src/api/types/CitationOptions.ts | 6 +-
src/api/types/CitationOptionsMode.ts | 10 +-
src/api/types/DatasetType.ts | 10 +-
src/api/types/GetModelResponse.ts | 2 -
src/api/types/Usage.ts | 6 +-
src/serialization/resources/batches/index.ts | 1 +
.../resources/batches/types/Batch.ts | 48 +
.../resources/batches/types/BatchStatus.ts | 29 +
.../batches/types/CancelBatchResponse.ts | 16 +
.../batches/types/CreateBatchResponse.ts | 21 +
.../batches/types/GetBatchResponse.ts | 21 +
.../batches/types/ListBatchesResponse.ts | 23 +
.../resources/batches/types/index.ts | 6 +
src/serialization/resources/index.ts | 2 +
src/serialization/types/ApiMeta.ts | 2 +
.../types/ChatRequestCitationQuality.ts | 4 +-
.../types/ChatStreamRequestCitationQuality.ts | 4 +-
.../types/CitationOptionsMode.ts | 4 +-
src/serialization/types/DatasetType.ts | 10 +-
src/serialization/types/GetModelResponse.ts | 2 -
src/serialization/types/Usage.ts | 8 +-
src/version.ts | 2 +-
yarn.lock | 1457 ++++++++---------
55 files changed, 2057 insertions(+), 909 deletions(-)
create mode 100644 src/api/resources/batches/client/Client.ts
create mode 100644 src/api/resources/batches/client/index.ts
create mode 100644 src/api/resources/batches/client/requests/BatchesListBatchesRequest.ts
create mode 100644 src/api/resources/batches/client/requests/index.ts
create mode 100644 src/api/resources/batches/index.ts
create mode 100644 src/api/resources/batches/types/Batch.ts
create mode 100644 src/api/resources/batches/types/BatchStatus.ts
create mode 100644 src/api/resources/batches/types/CancelBatchResponse.ts
create mode 100644 src/api/resources/batches/types/CreateBatchResponse.ts
create mode 100644 src/api/resources/batches/types/GetBatchResponse.ts
create mode 100644 src/api/resources/batches/types/ListBatchesResponse.ts
create mode 100644 src/api/resources/batches/types/index.ts
create mode 100644 src/serialization/resources/batches/index.ts
create mode 100644 src/serialization/resources/batches/types/Batch.ts
create mode 100644 src/serialization/resources/batches/types/BatchStatus.ts
create mode 100644 src/serialization/resources/batches/types/CancelBatchResponse.ts
create mode 100644 src/serialization/resources/batches/types/CreateBatchResponse.ts
create mode 100644 src/serialization/resources/batches/types/GetBatchResponse.ts
create mode 100644 src/serialization/resources/batches/types/ListBatchesResponse.ts
create mode 100644 src/serialization/resources/batches/types/index.ts
diff --git a/package.json b/package.json
index 1f0238b5..c1c31fdc 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "cohere-ai",
- "version": "7.19.0",
+ "version": "7.20.0",
"private": false,
"repository": "https://github.com/cohere-ai/cohere-typescript",
"main": "./index.js",
diff --git a/reference.md b/reference.md
index 072a668f..98aaa503 100644
--- a/reference.md
+++ b/reference.md
@@ -90,11 +90,11 @@ Follow the [Migration Guide](https://docs.cohere.com/v2/docs/migrating-v1-to-v2)
```typescript
const response = await client.v2.chatStream({
- model: "command-r",
+ model: "command-a-03-2025",
messages: [
{
role: "user",
- content: "Hello!",
+ content: "Tell me about LLMs",
},
],
});
@@ -354,6 +354,264 @@ await client.v2.rerank({
+## Batches
+
+client.batches.list({ ...params }) -> Cohere.ListBatchesResponse
+
+-
+
+#### 📝 Description
+
+
+-
+
+
+-
+
+List the batches for the current user
+
+
+
+
+
+
+#### 🔌 Usage
+
+
+-
+
+
+-
+
+```typescript
+await client.batches.list();
+```
+
+
+
+
+
+
+#### ⚙️ Parameters
+
+
+-
+
+
+-
+
+**request:** `Cohere.BatchesListBatchesRequest`
+
+
+
+
+
+-
+
+**requestOptions:** `Batches.RequestOptions`
+
+
+
+
+
+
+
+
+
+
+client.batches.create({ ...params }) -> Cohere.CreateBatchResponse
+
+-
+
+#### 📝 Description
+
+
+-
+
+
+-
+
+Creates and executes a batch from an uploaded dataset of requests
+
+
+
+
+
+
+#### 🔌 Usage
+
+
+-
+
+
+-
+
+```typescript
+await client.batches.create({
+ name: "name",
+ inputDatasetId: "input_dataset_id",
+ model: "model",
+});
+```
+
+
+
+
+
+
+#### ⚙️ Parameters
+
+
+-
+
+
+-
+
+**request:** `Cohere.Batch`
+
+
+
+
+
+-
+
+**requestOptions:** `Batches.RequestOptions`
+
+
+
+
+
+
+
+
+
+
+client.batches.retrieve(id) -> Cohere.GetBatchResponse
+
+-
+
+#### 📝 Description
+
+
+-
+
+
+-
+
+Retrieves a batch
+
+
+
+
+
+
+#### 🔌 Usage
+
+
+-
+
+
+-
+
+```typescript
+await client.batches.retrieve("id");
+```
+
+
+
+
+
+
+#### ⚙️ Parameters
+
+
+-
+
+
+-
+
+**id:** `string` — The batch ID.
+
+
+
+
+
+-
+
+**requestOptions:** `Batches.RequestOptions`
+
+
+
+
+
+
+
+
+
+
+client.batches.cancel(id) -> Cohere.CancelBatchResponse
+
+-
+
+#### 📝 Description
+
+
+-
+
+
+-
+
+Cancels an in-progress batch
+
+
+
+
+
+
+#### 🔌 Usage
+
+
+-
+
+
+-
+
+```typescript
+await client.batches.cancel("id");
+```
+
+
+
+
+
+
+#### ⚙️ Parameters
+
+
+-
+
+
+-
+
+**id:** `string` — The batch ID.
+
+
+
+
+
+-
+
+**requestOptions:** `Batches.RequestOptions`
+
+
+
+
+
+
+
+
+
+
## EmbedJobs
client.embedJobs.list() -> Cohere.ListEmbedJobResponse
@@ -1408,7 +1666,7 @@ await client.models.get("command-a-03-2025");
-
-Returns a list of models available for use. The list contains models from Cohere as well as your fine-tuned models.
+Returns a list of models available for use.
diff --git a/src/Client.ts b/src/Client.ts
index fb942308..d0c4887e 100644
--- a/src/Client.ts
+++ b/src/Client.ts
@@ -10,6 +10,7 @@ import urlJoin from "url-join";
import * as stream from "stream";
import * as errors from "./errors/index";
import { V2 } from "./api/resources/v2/client/Client";
+import { Batches } from "./api/resources/batches/client/Client";
import { EmbedJobs } from "./api/resources/embedJobs/client/Client";
import { Datasets } from "./api/resources/datasets/client/Client";
import { Connectors } from "./api/resources/connectors/client/Client";
@@ -43,6 +44,7 @@ export declare namespace CohereClient {
export class CohereClient {
protected _v2: V2 | undefined;
+ protected _batches: Batches | undefined;
protected _embedJobs: EmbedJobs | undefined;
protected _datasets: Datasets | undefined;
protected _connectors: Connectors | undefined;
@@ -55,6 +57,10 @@ export class CohereClient {
return (this._v2 ??= new V2(this._options));
}
+ public get batches(): Batches {
+ return (this._batches ??= new Batches(this._options));
+ }
+
public get embedJobs(): EmbedJobs {
return (this._embedJobs ??= new EmbedJobs(this._options));
}
@@ -108,8 +114,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
Accepts: accepts != null ? accepts : undefined,
@@ -227,21 +233,13 @@ export class CohereClient {
*
* @example
* await client.chat({
- * chatHistory: [{
- * role: "USER",
- * message: "Who discovered gravity?"
- * }, {
- * role: "CHATBOT",
- * message: "The man who is widely credited with discovering gravity is Sir Isaac Newton"
- * }],
- * message: "What year was he born?",
- * connectors: [{
- * id: "web-search"
- * }]
+ * model: "command-a-03-2025",
+ * message: "Tell me about LLMs"
* })
*
* @example
* await client.chat({
+ * model: "command-a-03-2025",
* message: "Who is more popular: Nsync or Backstreet Boys?",
* documents: [{
* "title": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters",
@@ -260,6 +258,7 @@ export class CohereClient {
*
* @example
* await client.chat({
+ * model: "command-a-03-2025",
* message: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?",
* tools: [{
* name: "query_daily_sales_report",
@@ -312,8 +311,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
Accepts: accepts != null ? accepts : undefined,
@@ -431,8 +430,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -581,8 +580,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -731,8 +730,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -877,8 +876,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -1043,8 +1042,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -1179,8 +1178,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -1313,8 +1312,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -1447,8 +1446,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -1575,8 +1574,8 @@ export class CohereClient {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
diff --git a/src/api/client/requests/ChatRequest.ts b/src/api/client/requests/ChatRequest.ts
index c9fb69a0..6f0df548 100644
--- a/src/api/client/requests/ChatRequest.ts
+++ b/src/api/client/requests/ChatRequest.ts
@@ -7,21 +7,13 @@ import * as Cohere from "../../index";
/**
* @example
* {
- * chatHistory: [{
- * role: "USER",
- * message: "Who discovered gravity?"
- * }, {
- * role: "CHATBOT",
- * message: "The man who is widely credited with discovering gravity is Sir Isaac Newton"
- * }],
- * message: "What year was he born?",
- * connectors: [{
- * id: "web-search"
- * }]
+ * model: "command-a-03-2025",
+ * message: "Tell me about LLMs"
* }
*
* @example
* {
+ * model: "command-a-03-2025",
* message: "Who is more popular: Nsync or Backstreet Boys?",
* documents: [{
* "title": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters",
@@ -40,6 +32,7 @@ import * as Cohere from "../../index";
*
* @example
* {
+ * model: "command-a-03-2025",
* message: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?",
* tools: [{
* name: "query_daily_sales_report",
@@ -164,9 +157,8 @@ export interface ChatRequest {
*/
documents?: Cohere.ChatDocument[];
/**
- * Defaults to `"accurate"`.
- *
- * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
+ * Defaults to `"enabled"`.
+ * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`.
*
* Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
*/
diff --git a/src/api/client/requests/ChatStreamRequest.ts b/src/api/client/requests/ChatStreamRequest.ts
index 16905709..47b5232b 100644
--- a/src/api/client/requests/ChatStreamRequest.ts
+++ b/src/api/client/requests/ChatStreamRequest.ts
@@ -7,7 +7,8 @@ import * as Cohere from "../../index";
/**
* @example
* {
- * message: "hello world!"
+ * model: "command-a-03-2025",
+ * message: "hello!"
* }
*/
export interface ChatStreamRequest {
@@ -110,9 +111,8 @@ export interface ChatStreamRequest {
*/
documents?: Cohere.ChatDocument[];
/**
- * Defaults to `"accurate"`.
- *
- * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
+ * Defaults to `"enabled"`.
+ * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`.
*
* Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
*/
diff --git a/src/api/client/requests/EmbedRequest.ts b/src/api/client/requests/EmbedRequest.ts
index 736ac8ce..6e3c4e0a 100644
--- a/src/api/client/requests/EmbedRequest.ts
+++ b/src/api/client/requests/EmbedRequest.ts
@@ -26,7 +26,7 @@ export interface EmbedRequest {
/**
* An array of image data URIs for the model to embed. Maximum number of images per call is `1`.
*
- * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg` or `image/png` format and has a maximum size of 5MB.
+ * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg`, `image/png`, `image/webp`, or `image/gif` format and has a maximum size of 5MB.
*
* Images are only supported with Embed v3.0 and newer models.
*/
diff --git a/src/api/resources/batches/client/Client.ts b/src/api/resources/batches/client/Client.ts
new file mode 100644
index 00000000..72e3e0b7
--- /dev/null
+++ b/src/api/resources/batches/client/Client.ts
@@ -0,0 +1,507 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as environments from "../../../../environments";
+import * as core from "../../../../core";
+import * as Cohere from "../../../index";
+import urlJoin from "url-join";
+import * as serializers from "../../../../serialization/index";
+import * as errors from "../../../../errors/index";
+
+export declare namespace Batches {
+ export interface Options {
+ environment?: core.Supplier;
+ /** Specify a custom URL to connect the client to. */
+ baseUrl?: core.Supplier;
+ token?: core.Supplier;
+ /** Override the X-Client-Name header */
+ clientName?: core.Supplier;
+ fetcher?: core.FetchFunction;
+ }
+
+ export interface RequestOptions {
+ /** The maximum time to wait for a response in seconds. */
+ timeoutInSeconds?: number;
+ /** The number of times to retry the request. Defaults to 2. */
+ maxRetries?: number;
+ /** A hook to abort the request. */
+ abortSignal?: AbortSignal;
+ /** Override the X-Client-Name header */
+ clientName?: string | undefined;
+ /** Additional headers to include in the request. */
+ headers?: Record;
+ }
+}
+
+export class Batches {
+ constructor(protected readonly _options: Batches.Options = {}) {}
+
+ /**
+ * List the batches for the current user
+ *
+ * @param {Cohere.BatchesListBatchesRequest} request
+ * @param {Batches.RequestOptions} requestOptions - Request-specific configuration.
+ *
+ * @throws {@link Cohere.BadRequestError}
+ * @throws {@link Cohere.UnauthorizedError}
+ * @throws {@link Cohere.ForbiddenError}
+ * @throws {@link Cohere.NotFoundError}
+ * @throws {@link Cohere.InternalServerError}
+ * @throws {@link Cohere.ServiceUnavailableError}
+ *
+ * @example
+ * await client.batches.list()
+ */
+ public list(
+ request: Cohere.BatchesListBatchesRequest = {},
+ requestOptions?: Batches.RequestOptions,
+ ): core.HttpResponsePromise {
+ return core.HttpResponsePromise.fromPromise(this.__list(request, requestOptions));
+ }
+
+ private async __list(
+ request: Cohere.BatchesListBatchesRequest = {},
+ requestOptions?: Batches.RequestOptions,
+ ): Promise> {
+ const { pageSize, pageToken, orderBy } = request;
+ const _queryParams: Record = {};
+ if (pageSize != null) {
+ _queryParams["page_size"] = pageSize.toString();
+ }
+
+ if (pageToken != null) {
+ _queryParams["page_token"] = pageToken;
+ }
+
+ if (orderBy != null) {
+ _queryParams["order_by"] = orderBy;
+ }
+
+ const _response = await (this._options.fetcher ?? core.fetcher)({
+ url: urlJoin(
+ (await core.Supplier.get(this._options.baseUrl)) ??
+ (await core.Supplier.get(this._options.environment)) ??
+ environments.CohereEnvironment.Production,
+ "v2/batches",
+ ),
+ method: "GET",
+ headers: {
+ Authorization: await this._getAuthorizationHeader(),
+ "X-Client-Name":
+ (await core.Supplier.get(this._options.clientName)) != null
+ ? await core.Supplier.get(this._options.clientName)
+ : undefined,
+ "X-Fern-Language": "JavaScript",
+ "X-Fern-SDK-Name": "cohere-ai",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
+ "X-Fern-Runtime": core.RUNTIME.type,
+ "X-Fern-Runtime-Version": core.RUNTIME.version,
+ ...requestOptions?.headers,
+ },
+ contentType: "application/json",
+ queryParameters: _queryParams,
+ requestType: "json",
+ timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 300000,
+ maxRetries: requestOptions?.maxRetries,
+ abortSignal: requestOptions?.abortSignal,
+ });
+ if (_response.ok) {
+ return {
+ data: serializers.ListBatchesResponse.parseOrThrow(_response.body, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ skipValidation: true,
+ breadcrumbsPrefix: ["response"],
+ }),
+ rawResponse: _response.rawResponse,
+ };
+ }
+
+ if (_response.error.reason === "status-code") {
+ switch (_response.error.statusCode) {
+ case 400:
+ throw new Cohere.BadRequestError(_response.error.body, _response.rawResponse);
+ case 401:
+ throw new Cohere.UnauthorizedError(_response.error.body, _response.rawResponse);
+ case 403:
+ throw new Cohere.ForbiddenError(_response.error.body, _response.rawResponse);
+ case 404:
+ throw new Cohere.NotFoundError(_response.error.body, _response.rawResponse);
+ case 500:
+ throw new Cohere.InternalServerError(_response.error.body, _response.rawResponse);
+ case 503:
+ throw new Cohere.ServiceUnavailableError(_response.error.body, _response.rawResponse);
+ default:
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.body,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ switch (_response.error.reason) {
+ case "non-json":
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.rawBody,
+ rawResponse: _response.rawResponse,
+ });
+ case "timeout":
+ throw new errors.CohereTimeoutError("Timeout exceeded when calling GET /v2/batches.");
+ case "unknown":
+ throw new errors.CohereError({
+ message: _response.error.errorMessage,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ /**
+ * Creates and executes a batch from an uploaded dataset of requests
+ *
+ * @param {Cohere.Batch} request
+ * @param {Batches.RequestOptions} requestOptions - Request-specific configuration.
+ *
+ * @throws {@link Cohere.BadRequestError}
+ * @throws {@link Cohere.UnauthorizedError}
+ * @throws {@link Cohere.ForbiddenError}
+ * @throws {@link Cohere.NotFoundError}
+ * @throws {@link Cohere.InternalServerError}
+ * @throws {@link Cohere.ServiceUnavailableError}
+ *
+ * @example
+ * await client.batches.create({
+ * name: "name",
+ * inputDatasetId: "input_dataset_id",
+ * model: "model"
+ * })
+ */
+ public create(
+ request: Cohere.Batch,
+ requestOptions?: Batches.RequestOptions,
+ ): core.HttpResponsePromise {
+ return core.HttpResponsePromise.fromPromise(this.__create(request, requestOptions));
+ }
+
+ private async __create(
+ request: Cohere.Batch,
+ requestOptions?: Batches.RequestOptions,
+ ): Promise> {
+ const _response = await (this._options.fetcher ?? core.fetcher)({
+ url: urlJoin(
+ (await core.Supplier.get(this._options.baseUrl)) ??
+ (await core.Supplier.get(this._options.environment)) ??
+ environments.CohereEnvironment.Production,
+ "v2/batches",
+ ),
+ method: "POST",
+ headers: {
+ Authorization: await this._getAuthorizationHeader(),
+ "X-Client-Name":
+ (await core.Supplier.get(this._options.clientName)) != null
+ ? await core.Supplier.get(this._options.clientName)
+ : undefined,
+ "X-Fern-Language": "JavaScript",
+ "X-Fern-SDK-Name": "cohere-ai",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
+ "X-Fern-Runtime": core.RUNTIME.type,
+ "X-Fern-Runtime-Version": core.RUNTIME.version,
+ ...requestOptions?.headers,
+ },
+ contentType: "application/json",
+ requestType: "json",
+ body: serializers.Batch.jsonOrThrow(request, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ }),
+ timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 300000,
+ maxRetries: requestOptions?.maxRetries,
+ abortSignal: requestOptions?.abortSignal,
+ });
+ if (_response.ok) {
+ return {
+ data: serializers.CreateBatchResponse.parseOrThrow(_response.body, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ skipValidation: true,
+ breadcrumbsPrefix: ["response"],
+ }),
+ rawResponse: _response.rawResponse,
+ };
+ }
+
+ if (_response.error.reason === "status-code") {
+ switch (_response.error.statusCode) {
+ case 400:
+ throw new Cohere.BadRequestError(_response.error.body, _response.rawResponse);
+ case 401:
+ throw new Cohere.UnauthorizedError(_response.error.body, _response.rawResponse);
+ case 403:
+ throw new Cohere.ForbiddenError(_response.error.body, _response.rawResponse);
+ case 404:
+ throw new Cohere.NotFoundError(_response.error.body, _response.rawResponse);
+ case 500:
+ throw new Cohere.InternalServerError(_response.error.body, _response.rawResponse);
+ case 503:
+ throw new Cohere.ServiceUnavailableError(_response.error.body, _response.rawResponse);
+ default:
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.body,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ switch (_response.error.reason) {
+ case "non-json":
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.rawBody,
+ rawResponse: _response.rawResponse,
+ });
+ case "timeout":
+ throw new errors.CohereTimeoutError("Timeout exceeded when calling POST /v2/batches.");
+ case "unknown":
+ throw new errors.CohereError({
+ message: _response.error.errorMessage,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ /**
+ * Retrieves a batch
+ *
+ * @param {string} id - The batch ID.
+ * @param {Batches.RequestOptions} requestOptions - Request-specific configuration.
+ *
+ * @throws {@link Cohere.BadRequestError}
+ * @throws {@link Cohere.UnauthorizedError}
+ * @throws {@link Cohere.ForbiddenError}
+ * @throws {@link Cohere.NotFoundError}
+ * @throws {@link Cohere.InternalServerError}
+ * @throws {@link Cohere.ServiceUnavailableError}
+ *
+ * @example
+ * await client.batches.retrieve("id")
+ */
+ public retrieve(
+ id: string,
+ requestOptions?: Batches.RequestOptions,
+ ): core.HttpResponsePromise {
+ return core.HttpResponsePromise.fromPromise(this.__retrieve(id, requestOptions));
+ }
+
+ private async __retrieve(
+ id: string,
+ requestOptions?: Batches.RequestOptions,
+ ): Promise> {
+ const _response = await (this._options.fetcher ?? core.fetcher)({
+ url: urlJoin(
+ (await core.Supplier.get(this._options.baseUrl)) ??
+ (await core.Supplier.get(this._options.environment)) ??
+ environments.CohereEnvironment.Production,
+ `v2/batches/${encodeURIComponent(id)}`,
+ ),
+ method: "GET",
+ headers: {
+ Authorization: await this._getAuthorizationHeader(),
+ "X-Client-Name":
+ (await core.Supplier.get(this._options.clientName)) != null
+ ? await core.Supplier.get(this._options.clientName)
+ : undefined,
+ "X-Fern-Language": "JavaScript",
+ "X-Fern-SDK-Name": "cohere-ai",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
+ "X-Fern-Runtime": core.RUNTIME.type,
+ "X-Fern-Runtime-Version": core.RUNTIME.version,
+ ...requestOptions?.headers,
+ },
+ contentType: "application/json",
+ requestType: "json",
+ timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 300000,
+ maxRetries: requestOptions?.maxRetries,
+ abortSignal: requestOptions?.abortSignal,
+ });
+ if (_response.ok) {
+ return {
+ data: serializers.GetBatchResponse.parseOrThrow(_response.body, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ skipValidation: true,
+ breadcrumbsPrefix: ["response"],
+ }),
+ rawResponse: _response.rawResponse,
+ };
+ }
+
+ if (_response.error.reason === "status-code") {
+ switch (_response.error.statusCode) {
+ case 400:
+ throw new Cohere.BadRequestError(_response.error.body, _response.rawResponse);
+ case 401:
+ throw new Cohere.UnauthorizedError(_response.error.body, _response.rawResponse);
+ case 403:
+ throw new Cohere.ForbiddenError(_response.error.body, _response.rawResponse);
+ case 404:
+ throw new Cohere.NotFoundError(_response.error.body, _response.rawResponse);
+ case 500:
+ throw new Cohere.InternalServerError(_response.error.body, _response.rawResponse);
+ case 503:
+ throw new Cohere.ServiceUnavailableError(_response.error.body, _response.rawResponse);
+ default:
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.body,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ switch (_response.error.reason) {
+ case "non-json":
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.rawBody,
+ rawResponse: _response.rawResponse,
+ });
+ case "timeout":
+ throw new errors.CohereTimeoutError("Timeout exceeded when calling GET /v2/batches/{id}.");
+ case "unknown":
+ throw new errors.CohereError({
+ message: _response.error.errorMessage,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ /**
+ * Cancels an in-progress batch
+ *
+ * @param {string} id - The batch ID.
+ * @param {Batches.RequestOptions} requestOptions - Request-specific configuration.
+ *
+ * @throws {@link Cohere.BadRequestError}
+ * @throws {@link Cohere.UnauthorizedError}
+ * @throws {@link Cohere.ForbiddenError}
+ * @throws {@link Cohere.NotFoundError}
+ * @throws {@link Cohere.InternalServerError}
+ * @throws {@link Cohere.ServiceUnavailableError}
+ *
+ * @example
+ * await client.batches.cancel("id")
+ */
+ public cancel(
+ id: string,
+ requestOptions?: Batches.RequestOptions,
+ ): core.HttpResponsePromise {
+ return core.HttpResponsePromise.fromPromise(this.__cancel(id, requestOptions));
+ }
+
+ private async __cancel(
+ id: string,
+ requestOptions?: Batches.RequestOptions,
+ ): Promise> {
+ const _response = await (this._options.fetcher ?? core.fetcher)({
+ url: urlJoin(
+ (await core.Supplier.get(this._options.baseUrl)) ??
+ (await core.Supplier.get(this._options.environment)) ??
+ environments.CohereEnvironment.Production,
+ `v2/batches/${encodeURIComponent(id)}:cancel`,
+ ),
+ method: "POST",
+ headers: {
+ Authorization: await this._getAuthorizationHeader(),
+ "X-Client-Name":
+ (await core.Supplier.get(this._options.clientName)) != null
+ ? await core.Supplier.get(this._options.clientName)
+ : undefined,
+ "X-Fern-Language": "JavaScript",
+ "X-Fern-SDK-Name": "cohere-ai",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
+ "X-Fern-Runtime": core.RUNTIME.type,
+ "X-Fern-Runtime-Version": core.RUNTIME.version,
+ ...requestOptions?.headers,
+ },
+ contentType: "application/json",
+ requestType: "json",
+ timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 300000,
+ maxRetries: requestOptions?.maxRetries,
+ abortSignal: requestOptions?.abortSignal,
+ });
+ if (_response.ok) {
+ return {
+ data: serializers.CancelBatchResponse.parseOrThrow(_response.body, {
+ unrecognizedObjectKeys: "passthrough",
+ allowUnrecognizedUnionMembers: true,
+ allowUnrecognizedEnumValues: true,
+ skipValidation: true,
+ breadcrumbsPrefix: ["response"],
+ }),
+ rawResponse: _response.rawResponse,
+ };
+ }
+
+ if (_response.error.reason === "status-code") {
+ switch (_response.error.statusCode) {
+ case 400:
+ throw new Cohere.BadRequestError(_response.error.body, _response.rawResponse);
+ case 401:
+ throw new Cohere.UnauthorizedError(_response.error.body, _response.rawResponse);
+ case 403:
+ throw new Cohere.ForbiddenError(_response.error.body, _response.rawResponse);
+ case 404:
+ throw new Cohere.NotFoundError(_response.error.body, _response.rawResponse);
+ case 500:
+ throw new Cohere.InternalServerError(_response.error.body, _response.rawResponse);
+ case 503:
+ throw new Cohere.ServiceUnavailableError(_response.error.body, _response.rawResponse);
+ default:
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.body,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ switch (_response.error.reason) {
+ case "non-json":
+ throw new errors.CohereError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.rawBody,
+ rawResponse: _response.rawResponse,
+ });
+ case "timeout":
+ throw new errors.CohereTimeoutError("Timeout exceeded when calling POST /v2/batches/{id}/:cancel.");
+ case "unknown":
+ throw new errors.CohereError({
+ message: _response.error.errorMessage,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ protected async _getAuthorizationHeader(): Promise {
+ const bearer = (await core.Supplier.get(this._options.token)) ?? process?.env["CO_API_KEY"];
+ if (bearer == null) {
+ throw new errors.CohereError({
+ message:
+ "Please specify a bearer by either passing it in to the constructor or initializing a CO_API_KEY environment variable",
+ });
+ }
+
+ return `Bearer ${bearer}`;
+ }
+}
diff --git a/src/api/resources/batches/client/index.ts b/src/api/resources/batches/client/index.ts
new file mode 100644
index 00000000..415726b7
--- /dev/null
+++ b/src/api/resources/batches/client/index.ts
@@ -0,0 +1 @@
+export * from "./requests";
diff --git a/src/api/resources/batches/client/requests/BatchesListBatchesRequest.ts b/src/api/resources/batches/client/requests/BatchesListBatchesRequest.ts
new file mode 100644
index 00000000..382059f0
--- /dev/null
+++ b/src/api/resources/batches/client/requests/BatchesListBatchesRequest.ts
@@ -0,0 +1,27 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+/**
+ * @example
+ * {}
+ */
+export interface BatchesListBatchesRequest {
+ /**
+ * The maximum number of batches to return. The service may return fewer than
+ * this value.
+ * If unspecified, at most 50 batches will be returned.
+ * The maximum value is 1000; values above 1000 will be coerced to 1000.
+ */
+ pageSize?: number;
+ /**
+ * A page token, received from a previous `ListBatches` call.
+ * Provide this to retrieve the subsequent page.
+ */
+ pageToken?: string;
+ /**
+ * Batches can be ordered by creation time or last updated time.
+ * Use `created_at` for creation time or `updated_at` for last updated time.
+ */
+ orderBy?: string;
+}
diff --git a/src/api/resources/batches/client/requests/index.ts b/src/api/resources/batches/client/requests/index.ts
new file mode 100644
index 00000000..e944dd2a
--- /dev/null
+++ b/src/api/resources/batches/client/requests/index.ts
@@ -0,0 +1 @@
+export { type BatchesListBatchesRequest } from "./BatchesListBatchesRequest";
diff --git a/src/api/resources/batches/index.ts b/src/api/resources/batches/index.ts
new file mode 100644
index 00000000..c9240f83
--- /dev/null
+++ b/src/api/resources/batches/index.ts
@@ -0,0 +1,2 @@
+export * from "./types";
+export * from "./client";
diff --git a/src/api/resources/batches/types/Batch.ts b/src/api/resources/batches/types/Batch.ts
new file mode 100644
index 00000000..45de63e6
--- /dev/null
+++ b/src/api/resources/batches/types/Batch.ts
@@ -0,0 +1,42 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as Cohere from "../../../index";
+
+/**
+ * This resource represents a batch job.
+ */
+export interface Batch {
+ /** read-only. Batch ID. */
+ id?: string;
+ /** Batch name (e.g. `foobar`). */
+ name: string;
+ /** read-only. User ID of the creator. */
+ creatorId?: string;
+ /** read-only. Organization ID. */
+ orgId?: string;
+ /** read-only. Current stage in the life-cycle of the batch. */
+ status?: Cohere.BatchStatus;
+ /** read-only. Creation timestamp. */
+ createdAt?: Date;
+ /** read-only. Latest update timestamp. */
+ updatedAt?: Date;
+ /** ID of the dataset the batch reads inputs from. */
+ inputDatasetId: string;
+ outputDatasetId?: string;
+ /** read-only. The total number of input tokens in the batch. */
+ inputTokens?: string;
+ /** read-only. The total number of output tokens in the batch. */
+ outputTokens?: string;
+ /** The name of the model the batch uses. */
+ model: string;
+ /** read-only. The total number of records in the batch. */
+ numRecords?: number;
+ /** read-only. The current number of successful records in the batch. */
+ numSuccessfulRecords?: number;
+ /** read-only. The current number of failed records in the batch. */
+ numFailedRecords?: number;
+ /** read-only. More details about the reason for the status of a batch job. */
+ statusReason?: string;
+}
diff --git a/src/api/resources/batches/types/BatchStatus.ts b/src/api/resources/batches/types/BatchStatus.ts
new file mode 100644
index 00000000..8b6d0fb0
--- /dev/null
+++ b/src/api/resources/batches/types/BatchStatus.ts
@@ -0,0 +1,32 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+/**
+ * The possible stages of a batch life-cycle.
+ *
+ * - BATCH_STATUS_UNSPECIFIED: Unspecified status.
+ * - BATCH_STATUS_QUEUED: The batch has been queued.
+ * - BATCH_STATUS_IN_PROGRESS: The batch is in-progress.
+ * - BATCH_STATUS_CANCELING: The batch is being canceled.
+ * - BATCH_STATUS_COMPLETED: The batch has been completed.
+ * - BATCH_STATUS_FAILED: The batch has failed.
+ * - BATCH_STATUS_CANCELED: The batch has been canceled.
+ */
+export type BatchStatus =
+ | "BATCH_STATUS_UNSPECIFIED"
+ | "BATCH_STATUS_QUEUED"
+ | "BATCH_STATUS_IN_PROGRESS"
+ | "BATCH_STATUS_CANCELING"
+ | "BATCH_STATUS_COMPLETED"
+ | "BATCH_STATUS_FAILED"
+ | "BATCH_STATUS_CANCELED";
+export const BatchStatus = {
+ BatchStatusUnspecified: "BATCH_STATUS_UNSPECIFIED",
+ BatchStatusQueued: "BATCH_STATUS_QUEUED",
+ BatchStatusInProgress: "BATCH_STATUS_IN_PROGRESS",
+ BatchStatusCanceling: "BATCH_STATUS_CANCELING",
+ BatchStatusCompleted: "BATCH_STATUS_COMPLETED",
+ BatchStatusFailed: "BATCH_STATUS_FAILED",
+ BatchStatusCanceled: "BATCH_STATUS_CANCELED",
+} as const;
diff --git a/src/api/resources/batches/types/CancelBatchResponse.ts b/src/api/resources/batches/types/CancelBatchResponse.ts
new file mode 100644
index 00000000..bd17b8d2
--- /dev/null
+++ b/src/api/resources/batches/types/CancelBatchResponse.ts
@@ -0,0 +1,8 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+/**
+ * Response to a request to cancel a batch.
+ */
+export type CancelBatchResponse = Record;
diff --git a/src/api/resources/batches/types/CreateBatchResponse.ts b/src/api/resources/batches/types/CreateBatchResponse.ts
new file mode 100644
index 00000000..be5ebf2d
--- /dev/null
+++ b/src/api/resources/batches/types/CreateBatchResponse.ts
@@ -0,0 +1,13 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as Cohere from "../../../index";
+
+/**
+ * Response to request to create a batch.
+ */
+export interface CreateBatchResponse {
+ /** Information about the batch. */
+ batch: Cohere.Batch;
+}
diff --git a/src/api/resources/batches/types/GetBatchResponse.ts b/src/api/resources/batches/types/GetBatchResponse.ts
new file mode 100644
index 00000000..effa863b
--- /dev/null
+++ b/src/api/resources/batches/types/GetBatchResponse.ts
@@ -0,0 +1,13 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as Cohere from "../../../index";
+
+/**
+ * Response to a request to get a batch.
+ */
+export interface GetBatchResponse {
+ /** Information about the batch. */
+ batch: Cohere.Batch;
+}
diff --git a/src/api/resources/batches/types/ListBatchesResponse.ts b/src/api/resources/batches/types/ListBatchesResponse.ts
new file mode 100644
index 00000000..0bcdf174
--- /dev/null
+++ b/src/api/resources/batches/types/ListBatchesResponse.ts
@@ -0,0 +1,18 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as Cohere from "../../../index";
+
+/**
+ * Response to a request to list batches.
+ */
+export interface ListBatchesResponse {
+ /** The batches that belong to the authenticated user. */
+ batches?: Cohere.Batch[];
+ /**
+ * A token, which can be sent as `page_token` to retrieve the next page.
+ * If this field is omitted, there are no subsequent pages.
+ */
+ nextPageToken?: string;
+}
diff --git a/src/api/resources/batches/types/index.ts b/src/api/resources/batches/types/index.ts
new file mode 100644
index 00000000..855426aa
--- /dev/null
+++ b/src/api/resources/batches/types/index.ts
@@ -0,0 +1,6 @@
+export * from "./BatchStatus";
+export * from "./Batch";
+export * from "./ListBatchesResponse";
+export * from "./CreateBatchResponse";
+export * from "./GetBatchResponse";
+export * from "./CancelBatchResponse";
diff --git a/src/api/resources/connectors/client/Client.ts b/src/api/resources/connectors/client/Client.ts
index 2aaf2a99..43df4a47 100644
--- a/src/api/resources/connectors/client/Client.ts
+++ b/src/api/resources/connectors/client/Client.ts
@@ -96,8 +96,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -226,8 +226,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -357,8 +357,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -483,8 +483,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -612,8 +612,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -752,8 +752,8 @@ export class Connectors {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
diff --git a/src/api/resources/datasets/client/Client.ts b/src/api/resources/datasets/client/Client.ts
index e1a5c8bf..c10426ce 100644
--- a/src/api/resources/datasets/client/Client.ts
+++ b/src/api/resources/datasets/client/Client.ts
@@ -118,8 +118,8 @@ export class Datasets {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -300,8 +300,8 @@ export class Datasets {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
..._maybeEncodedRequest.headers,
@@ -426,8 +426,8 @@ export class Datasets {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -552,8 +552,8 @@ export class Datasets {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -678,8 +678,8 @@ export class Datasets {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
diff --git a/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts b/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts
index ac72803c..0111c7eb 100644
--- a/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts
+++ b/src/api/resources/datasets/client/requests/DatasetsCreateRequest.ts
@@ -17,7 +17,7 @@ export interface DatasetsCreateRequest {
*/
name: string;
/**
- * The dataset type, which is used to validate the data. Valid types are `embed-input`, `reranker-finetune-input`, `single-label-classification-finetune-input`, `chat-finetune-input`, and `multi-label-classification-finetune-input`.
+ * The dataset type, which is used to validate the data. The only valid type is `embed-input` used in conjunction with the Embed Jobs API.
*/
type: Cohere.DatasetType;
/**
diff --git a/src/api/resources/embedJobs/client/Client.ts b/src/api/resources/embedJobs/client/Client.ts
index df9df955..8d1737be 100644
--- a/src/api/resources/embedJobs/client/Client.ts
+++ b/src/api/resources/embedJobs/client/Client.ts
@@ -81,8 +81,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -211,8 +211,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -339,8 +339,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -459,8 +459,8 @@ export class EmbedJobs {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
diff --git a/src/api/resources/finetuning/client/Client.ts b/src/api/resources/finetuning/client/Client.ts
index ae7f551a..55453e40 100644
--- a/src/api/resources/finetuning/client/Client.ts
+++ b/src/api/resources/finetuning/client/Client.ts
@@ -97,8 +97,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -216,8 +216,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -331,8 +331,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -442,8 +442,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -563,8 +563,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -697,8 +697,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -825,8 +825,8 @@ export class Finetuning {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
diff --git a/src/api/resources/index.ts b/src/api/resources/index.ts
index 829d2684..6cc0b1eb 100644
--- a/src/api/resources/index.ts
+++ b/src/api/resources/index.ts
@@ -1,5 +1,7 @@
export * as v2 from "./v2";
export * from "./v2/types";
+export * as batches from "./batches";
+export * from "./batches/types";
export * as embedJobs from "./embedJobs";
export * from "./embedJobs/types";
export * as datasets from "./datasets";
@@ -8,6 +10,7 @@ export * as finetuning from "./finetuning";
export * as connectors from "./connectors";
export * as models from "./models";
export * from "./v2/client/requests";
+export * from "./batches/client/requests";
export * from "./embedJobs/client/requests";
export * from "./datasets/client/requests";
export * from "./connectors/client/requests";
diff --git a/src/api/resources/models/client/Client.ts b/src/api/resources/models/client/Client.ts
index 0ceac22c..04f232c0 100644
--- a/src/api/resources/models/client/Client.ts
+++ b/src/api/resources/models/client/Client.ts
@@ -86,8 +86,8 @@ export class Models {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -164,7 +164,7 @@ export class Models {
}
/**
- * Returns a list of models available for use. The list contains models from Cohere as well as your fine-tuned models.
+ * Returns a list of models available for use.
*
* @param {Cohere.ModelsListRequest} request
* @param {Models.RequestOptions} requestOptions - Request-specific configuration.
@@ -234,8 +234,8 @@ export class Models {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
diff --git a/src/api/resources/v2/client/Client.ts b/src/api/resources/v2/client/Client.ts
index 26bc58b4..6cca4a71 100644
--- a/src/api/resources/v2/client/Client.ts
+++ b/src/api/resources/v2/client/Client.ts
@@ -70,8 +70,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -198,7 +198,7 @@ export class V2 {
*
* @example
* await client.v2.chat({
- * model: "command-r",
+ * model: "command-a-03-2025",
* documents: [{
* data: {
* "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters",
@@ -231,7 +231,7 @@ export class V2 {
* model: "command-r",
* messages: [{
* role: "user",
- * content: "Tell me about LLMs"
+ * content: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?"
* }],
* tools: [{
* type: "function",
@@ -275,7 +275,22 @@ export class V2 {
* })
*
* @example
- * await client.v2.chat({})
+ * await client.v2.chat({
+ * model: "command-a-vision-07-2025",
+ * messages: [{
+ * role: "user",
+ * content: [{
+ * type: "text",
+ * text: "Describe this image"
+ * }, {
+ * type: "image_url",
+ * imageUrl: {
+ * url: "https://cohere.com/favicon-32x32.png",
+ * detail: "auto"
+ * }
+ * }]
+ * }]
+ * })
*/
public chat(
request: Cohere.V2ChatRequest,
@@ -304,8 +319,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -455,8 +470,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
@@ -591,8 +606,8 @@ export class V2 {
: undefined,
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "cohere-ai",
- "X-Fern-SDK-Version": "7.19.0",
- "User-Agent": "cohere-ai/7.19.0",
+ "X-Fern-SDK-Version": "7.20.0",
+ "User-Agent": "cohere-ai/7.20.0",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
...requestOptions?.headers,
diff --git a/src/api/resources/v2/client/requests/V2ChatRequest.ts b/src/api/resources/v2/client/requests/V2ChatRequest.ts
index dbc0948a..0f26d31a 100644
--- a/src/api/resources/v2/client/requests/V2ChatRequest.ts
+++ b/src/api/resources/v2/client/requests/V2ChatRequest.ts
@@ -16,7 +16,7 @@ import * as Cohere from "../../../../index";
*
* @example
* {
- * model: "command-r",
+ * model: "command-a-03-2025",
* documents: [{
* data: {
* "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters",
@@ -49,7 +49,7 @@ import * as Cohere from "../../../../index";
* model: "command-r",
* messages: [{
* role: "user",
- * content: "Tell me about LLMs"
+ * content: "Can you provide a sales summary for 29th September 2023, and also give me some details about the products in the 'Electronics' category, for example their prices and stock levels?"
* }],
* tools: [{
* type: "function",
@@ -93,10 +93,25 @@ import * as Cohere from "../../../../index";
* }
*
* @example
- * {}
+ * {
+ * model: "command-a-vision-07-2025",
+ * messages: [{
+ * role: "user",
+ * content: [{
+ * type: "text",
+ * text: "Describe this image"
+ * }, {
+ * type: "image_url",
+ * imageUrl: {
+ * url: "https://cohere.com/favicon-32x32.png",
+ * detail: "auto"
+ * }
+ * }]
+ * }]
+ * }
*/
export interface V2ChatRequest {
- /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models) or the ID of a [fine-tuned](https://docs.cohere.com/v2/docs/chat-fine-tuning) model. */
+ /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models). */
model: string;
messages: Cohere.ChatMessages;
/**
diff --git a/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts b/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts
index 08b6fb93..33681357 100644
--- a/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts
+++ b/src/api/resources/v2/client/requests/V2ChatStreamRequest.ts
@@ -7,10 +7,10 @@ import * as Cohere from "../../../../index";
/**
* @example
* {
- * model: "command-r",
+ * model: "command-a-03-2025",
* messages: [{
* role: "user",
- * content: "Hello!"
+ * content: "Tell me about LLMs"
* }]
* }
*
@@ -18,15 +18,29 @@ import * as Cohere from "../../../../index";
* {
* model: "command-a-03-2025",
* documents: [{
- * id: "1",
* data: {
- * "content": "Cohere is the best!",
- * "snippet": "Cohere is the best!"
+ * "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters",
+ * "snippet": "\u2193 Skip to Main Content\n\nMusic industry \u2013 One step closer to being accurate\n\nCSPC: Backstreet Boys Popularity Analysis\n\nHern\u00E1n Lopez Posted on February 9, 2017 Posted in CSPC 72 Comments Tagged with Backstreet Boys, Boy band\n\nAt one point, Backstreet Boys defined success: massive albums sales across the globe, great singles sales, plenty of chart topping releases, hugely hyped tours and tremendous media coverage.\n\nIt is true that they benefited from extraordinarily good market conditions in all markets. After all, the all-time record year for the music business, as far as revenues in billion dollars are concerned, was actually 1999. That is, back when this five men group was at its peak."
+ * }
+ * }, {
+ * data: {
+ * "content": "CSPC: NSYNC Popularity Analysis - ChartMasters",
+ * "snippet": "\u2193 Skip to Main Content\n\nMusic industry \u2013 One step closer to being accurate\n\nCSPC: NSYNC Popularity Analysis\n\nMJD Posted on February 9, 2018 Posted in CSPC 27 Comments Tagged with Boy band, N'Sync\n\nAt the turn of the millennium three teen acts were huge in the US, the Backstreet Boys, Britney Spears and NSYNC. The latter is the only one we haven\u2019t study so far. It took 15 years and Adele to break their record of 2,4 million units sold of No Strings Attached in its first week alone.\n\nIt wasn\u2019t a fluke, as the second fastest selling album of the Soundscan era prior 2015, was also theirs since Celebrity debuted with 1,88 million units sold."
+ * }
+ * }, {
+ * data: {
+ * "content": "CSPC: Backstreet Boys Popularity Analysis - ChartMasters",
+ * "snippet": "1997, 1998, 2000 and 2001 also rank amongst some of the very best years.\nYet the way many music consumers \u2013 especially teenagers and young women\u2019s \u2013 embraced their output deserves its own chapter. If Jonas Brothers and more recently One Direction reached a great level of popularity during the past decade, the type of success achieved by Backstreet Boys is in a completely different level as they really dominated the business for a few years all over the world, including in some countries that were traditionally hard to penetrate for Western artists.\n\nWe will try to analyze the extent of that hegemony with this new article with final results which will more than surprise many readers."
+ * }
+ * }, {
+ * data: {
+ * "content": "CSPC: NSYNC Popularity Analysis - ChartMasters",
+ * "snippet": "Was the teen group led by Justin Timberlake really that big? Was it only in the US where they found success? Or were they a global phenomenon?\nAs usual, I\u2019ll be using the Commensurate Sales to Popularity Concept in order to relevantly gauge their results. This concept will not only bring you sales information for all NSYNC\u2018s albums, physical and download singles, as well as audio and video streaming, but it will also determine their true popularity. If you are not yet familiar with the CSPC method, the next page explains it with a short video. I fully recommend watching the video before getting into the sales figures."
* }
* }],
* messages: [{
* role: "user",
- * content: "Who's the best?"
+ * content: "Who is more popular: Nsync or Backstreet Boys?"
* }]
* }
*
@@ -72,18 +86,24 @@ import * as Cohere from "../../../../index";
*
* @example
* {
- * model: "command-r",
+ * model: "command-a-vision-07-2025",
* messages: [{
* role: "user",
- * content: "Hello!"
+ * content: [{
+ * type: "text",
+ * text: "Describe this image"
+ * }, {
+ * type: "image_url",
+ * imageUrl: {
+ * url: "https://cohere.com/favicon-32x32.png",
+ * detail: "auto"
+ * }
+ * }]
* }]
* }
- *
- * @example
- * {}
*/
export interface V2ChatStreamRequest {
- /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models) or the ID of a [fine-tuned](https://docs.cohere.com/v2/docs/chat-fine-tuning) model. */
+ /** The name of a compatible [Cohere model](https://docs.cohere.com/v2/docs/models). */
model: string;
messages: Cohere.ChatMessages;
/**
diff --git a/src/api/resources/v2/client/requests/V2EmbedRequest.ts b/src/api/resources/v2/client/requests/V2EmbedRequest.ts
index b3be8206..4f91d68f 100644
--- a/src/api/resources/v2/client/requests/V2EmbedRequest.ts
+++ b/src/api/resources/v2/client/requests/V2EmbedRequest.ts
@@ -27,7 +27,7 @@ export interface V2EmbedRequest {
/**
* An array of image data URIs for the model to embed. Maximum number of images per call is `1`.
*
- * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg` or `image/png` format and has a maximum size of 5MB.
+ * The image must be a valid [data URI](https://developer.mozilla.org/en-US/docs/Web/URI/Schemes/data). The image must be in either `image/jpeg`, `image/png`, `image/webp`, or `image/gif` format and has a maximum size of 5MB.
*
* Image embeddings are supported with Embed v3.0 and newer models.
*/
diff --git a/src/api/types/ApiMeta.ts b/src/api/types/ApiMeta.ts
index ea0a4f18..da09b3fd 100644
--- a/src/api/types/ApiMeta.ts
+++ b/src/api/types/ApiMeta.ts
@@ -8,5 +8,7 @@ export interface ApiMeta {
apiVersion?: Cohere.ApiMetaApiVersion;
billedUnits?: Cohere.ApiMetaBilledUnits;
tokens?: Cohere.ApiMetaTokens;
+ /** The number of prompt tokens that hit the inference cache. */
+ cachedTokens?: number;
warnings?: string[];
}
diff --git a/src/api/types/ChatRequestCitationQuality.ts b/src/api/types/ChatRequestCitationQuality.ts
index ad63f8b1..d4991dfa 100644
--- a/src/api/types/ChatRequestCitationQuality.ts
+++ b/src/api/types/ChatRequestCitationQuality.ts
@@ -3,15 +3,16 @@
*/
/**
- * Defaults to `"accurate"`.
- *
- * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
+ * Defaults to `"enabled"`.
+ * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`.
*
* Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
*/
-export type ChatRequestCitationQuality = "fast" | "accurate" | "off";
+export type ChatRequestCitationQuality = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF";
export const ChatRequestCitationQuality = {
- Fast: "fast",
- Accurate: "accurate",
- Off: "off",
+ Enabled: "ENABLED",
+ Disabled: "DISABLED",
+ Fast: "FAST",
+ Accurate: "ACCURATE",
+ Off: "OFF",
} as const;
diff --git a/src/api/types/ChatStreamRequestCitationQuality.ts b/src/api/types/ChatStreamRequestCitationQuality.ts
index 3534f1f3..253d7429 100644
--- a/src/api/types/ChatStreamRequestCitationQuality.ts
+++ b/src/api/types/ChatStreamRequestCitationQuality.ts
@@ -3,15 +3,16 @@
*/
/**
- * Defaults to `"accurate"`.
- *
- * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
+ * Defaults to `"enabled"`.
+ * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`.
*
* Compatible Deployments: Cohere Platform, Azure, AWS Sagemaker/Bedrock, Private Deployments
*/
-export type ChatStreamRequestCitationQuality = "fast" | "accurate" | "off";
+export type ChatStreamRequestCitationQuality = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF";
export const ChatStreamRequestCitationQuality = {
- Fast: "fast",
- Accurate: "accurate",
- Off: "off",
+ Enabled: "ENABLED",
+ Disabled: "DISABLED",
+ Fast: "FAST",
+ Accurate: "ACCURATE",
+ Off: "OFF",
} as const;
diff --git a/src/api/types/CitationOptions.ts b/src/api/types/CitationOptions.ts
index b5a4edae..ee4a0173 100644
--- a/src/api/types/CitationOptions.ts
+++ b/src/api/types/CitationOptions.ts
@@ -9,10 +9,8 @@ import * as Cohere from "../index";
*/
export interface CitationOptions {
/**
- * Defaults to `"accurate"`.
- * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
- *
- * **Note**: `command-r7b-12-2024` and `command-a-03-2025` only support `"fast"` and `"off"` modes. The default is `"fast"`.
+ * Defaults to `"enabled"`.
+ * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`.
*/
mode?: Cohere.CitationOptionsMode;
}
diff --git a/src/api/types/CitationOptionsMode.ts b/src/api/types/CitationOptionsMode.ts
index 8939379d..f8e3cf6e 100644
--- a/src/api/types/CitationOptionsMode.ts
+++ b/src/api/types/CitationOptionsMode.ts
@@ -3,13 +3,13 @@
*/
/**
- * Defaults to `"accurate"`.
- * Dictates the approach taken to generating citations as part of the RAG flow by allowing the user to specify whether they want `"accurate"` results, `"fast"` results or no results.
- *
- * **Note**: `command-r7b-12-2024` and `command-a-03-2025` only support `"fast"` and `"off"` modes. The default is `"fast"`.
+ * Defaults to `"enabled"`.
+ * Citations are enabled by default for models that support it, but can be turned off by setting `"type": "disabled"`.
*/
-export type CitationOptionsMode = "FAST" | "ACCURATE" | "OFF";
+export type CitationOptionsMode = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF";
export const CitationOptionsMode = {
+ Enabled: "ENABLED",
+ Disabled: "DISABLED",
Fast: "FAST",
Accurate: "ACCURATE",
Off: "OFF",
diff --git a/src/api/types/DatasetType.ts b/src/api/types/DatasetType.ts
index 7c58b811..a35cc13e 100644
--- a/src/api/types/DatasetType.ts
+++ b/src/api/types/DatasetType.ts
@@ -13,7 +13,11 @@ export type DatasetType =
| "reranker-finetune-input"
| "single-label-classification-finetune-input"
| "chat-finetune-input"
- | "multi-label-classification-finetune-input";
+ | "multi-label-classification-finetune-input"
+ | "batch-chat-input"
+ | "batch-openai-chat-input"
+ | "batch-embed-v2-input"
+ | "batch-chat-v2-input";
export const DatasetType = {
EmbedInput: "embed-input",
EmbedResult: "embed-result",
@@ -23,4 +27,8 @@ export const DatasetType = {
SingleLabelClassificationFinetuneInput: "single-label-classification-finetune-input",
ChatFinetuneInput: "chat-finetune-input",
MultiLabelClassificationFinetuneInput: "multi-label-classification-finetune-input",
+ BatchChatInput: "batch-chat-input",
+ BatchOpenaiChatInput: "batch-openai-chat-input",
+ BatchEmbedV2Input: "batch-embed-v2-input",
+ BatchChatV2Input: "batch-chat-v2-input",
} as const;
diff --git a/src/api/types/GetModelResponse.ts b/src/api/types/GetModelResponse.ts
index 713e99c5..2912226a 100644
--- a/src/api/types/GetModelResponse.ts
+++ b/src/api/types/GetModelResponse.ts
@@ -20,8 +20,6 @@ export interface GetModelResponse {
contextLength?: number;
/** Public URL to the tokenizer's configuration file. */
tokenizerUrl?: string;
- /** Whether the model supports image inputs or not. */
- supportsVision?: boolean;
/** The API endpoints that the model is default to. */
defaultEndpoints?: Cohere.CompatibleEndpoint[];
/** The features that the model supports. */
diff --git a/src/api/types/Usage.ts b/src/api/types/Usage.ts
index 5eea78aa..f8702737 100644
--- a/src/api/types/Usage.ts
+++ b/src/api/types/Usage.ts
@@ -2,9 +2,7 @@
* This file was auto-generated by Fern from our API Definition.
*/
-import * as Cohere from "../index";
-
export interface Usage {
- billedUnits?: Cohere.UsageBilledUnits;
- tokens?: Cohere.UsageTokens;
+ /** The number of prompt tokens that hit the inference cache. */
+ cachedTokens?: number;
}
diff --git a/src/serialization/resources/batches/index.ts b/src/serialization/resources/batches/index.ts
new file mode 100644
index 00000000..eea524d6
--- /dev/null
+++ b/src/serialization/resources/batches/index.ts
@@ -0,0 +1 @@
+export * from "./types";
diff --git a/src/serialization/resources/batches/types/Batch.ts b/src/serialization/resources/batches/types/Batch.ts
new file mode 100644
index 00000000..79e32074
--- /dev/null
+++ b/src/serialization/resources/batches/types/Batch.ts
@@ -0,0 +1,48 @@
+/**
+ * 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 { BatchStatus } from "./BatchStatus";
+
+export const Batch: core.serialization.ObjectSchema = core.serialization.object({
+ id: core.serialization.string().optional(),
+ name: core.serialization.string(),
+ creatorId: core.serialization.property("creator_id", core.serialization.string().optional()),
+ orgId: core.serialization.property("org_id", core.serialization.string().optional()),
+ status: BatchStatus.optional(),
+ createdAt: core.serialization.property("created_at", core.serialization.date().optional()),
+ updatedAt: core.serialization.property("updated_at", core.serialization.date().optional()),
+ inputDatasetId: core.serialization.property("input_dataset_id", core.serialization.string()),
+ outputDatasetId: core.serialization.property("output_dataset_id", core.serialization.string().optional()),
+ inputTokens: core.serialization.property("input_tokens", core.serialization.string().optional()),
+ outputTokens: core.serialization.property("output_tokens", core.serialization.string().optional()),
+ model: core.serialization.string(),
+ numRecords: core.serialization.property("num_records", core.serialization.number().optional()),
+ numSuccessfulRecords: core.serialization.property("num_successful_records", core.serialization.number().optional()),
+ numFailedRecords: core.serialization.property("num_failed_records", core.serialization.number().optional()),
+ statusReason: core.serialization.property("status_reason", core.serialization.string().optional()),
+});
+
+export declare namespace Batch {
+ export interface Raw {
+ id?: string | null;
+ name: string;
+ creator_id?: string | null;
+ org_id?: string | null;
+ status?: BatchStatus.Raw | null;
+ created_at?: string | null;
+ updated_at?: string | null;
+ input_dataset_id: string;
+ output_dataset_id?: string | null;
+ input_tokens?: string | null;
+ output_tokens?: string | null;
+ model: string;
+ num_records?: number | null;
+ num_successful_records?: number | null;
+ num_failed_records?: number | null;
+ status_reason?: string | null;
+ }
+}
diff --git a/src/serialization/resources/batches/types/BatchStatus.ts b/src/serialization/resources/batches/types/BatchStatus.ts
new file mode 100644
index 00000000..a1d8988d
--- /dev/null
+++ b/src/serialization/resources/batches/types/BatchStatus.ts
@@ -0,0 +1,29 @@
+/**
+ * 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 BatchStatus: core.serialization.Schema =
+ core.serialization.enum_([
+ "BATCH_STATUS_UNSPECIFIED",
+ "BATCH_STATUS_QUEUED",
+ "BATCH_STATUS_IN_PROGRESS",
+ "BATCH_STATUS_CANCELING",
+ "BATCH_STATUS_COMPLETED",
+ "BATCH_STATUS_FAILED",
+ "BATCH_STATUS_CANCELED",
+ ]);
+
+export declare namespace BatchStatus {
+ export type Raw =
+ | "BATCH_STATUS_UNSPECIFIED"
+ | "BATCH_STATUS_QUEUED"
+ | "BATCH_STATUS_IN_PROGRESS"
+ | "BATCH_STATUS_CANCELING"
+ | "BATCH_STATUS_COMPLETED"
+ | "BATCH_STATUS_FAILED"
+ | "BATCH_STATUS_CANCELED";
+}
diff --git a/src/serialization/resources/batches/types/CancelBatchResponse.ts b/src/serialization/resources/batches/types/CancelBatchResponse.ts
new file mode 100644
index 00000000..9d3547d2
--- /dev/null
+++ b/src/serialization/resources/batches/types/CancelBatchResponse.ts
@@ -0,0 +1,16 @@
+/**
+ * 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 CancelBatchResponse: core.serialization.Schema<
+ serializers.CancelBatchResponse.Raw,
+ Cohere.CancelBatchResponse
+> = core.serialization.record(core.serialization.string(), core.serialization.unknown());
+
+export declare namespace CancelBatchResponse {
+ export type Raw = Record;
+}
diff --git a/src/serialization/resources/batches/types/CreateBatchResponse.ts b/src/serialization/resources/batches/types/CreateBatchResponse.ts
new file mode 100644
index 00000000..fb908600
--- /dev/null
+++ b/src/serialization/resources/batches/types/CreateBatchResponse.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 { Batch } from "./Batch";
+
+export const CreateBatchResponse: core.serialization.ObjectSchema<
+ serializers.CreateBatchResponse.Raw,
+ Cohere.CreateBatchResponse
+> = core.serialization.object({
+ batch: Batch,
+});
+
+export declare namespace CreateBatchResponse {
+ export interface Raw {
+ batch: Batch.Raw;
+ }
+}
diff --git a/src/serialization/resources/batches/types/GetBatchResponse.ts b/src/serialization/resources/batches/types/GetBatchResponse.ts
new file mode 100644
index 00000000..647d8ec4
--- /dev/null
+++ b/src/serialization/resources/batches/types/GetBatchResponse.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 { Batch } from "./Batch";
+
+export const GetBatchResponse: core.serialization.ObjectSchema<
+ serializers.GetBatchResponse.Raw,
+ Cohere.GetBatchResponse
+> = core.serialization.object({
+ batch: Batch,
+});
+
+export declare namespace GetBatchResponse {
+ export interface Raw {
+ batch: Batch.Raw;
+ }
+}
diff --git a/src/serialization/resources/batches/types/ListBatchesResponse.ts b/src/serialization/resources/batches/types/ListBatchesResponse.ts
new file mode 100644
index 00000000..becc8d89
--- /dev/null
+++ b/src/serialization/resources/batches/types/ListBatchesResponse.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";
+import { Batch } from "./Batch";
+
+export const ListBatchesResponse: core.serialization.ObjectSchema<
+ serializers.ListBatchesResponse.Raw,
+ Cohere.ListBatchesResponse
+> = core.serialization.object({
+ batches: core.serialization.list(Batch).optional(),
+ nextPageToken: core.serialization.property("next_page_token", core.serialization.string().optional()),
+});
+
+export declare namespace ListBatchesResponse {
+ export interface Raw {
+ batches?: Batch.Raw[] | null;
+ next_page_token?: string | null;
+ }
+}
diff --git a/src/serialization/resources/batches/types/index.ts b/src/serialization/resources/batches/types/index.ts
new file mode 100644
index 00000000..855426aa
--- /dev/null
+++ b/src/serialization/resources/batches/types/index.ts
@@ -0,0 +1,6 @@
+export * from "./BatchStatus";
+export * from "./Batch";
+export * from "./ListBatchesResponse";
+export * from "./CreateBatchResponse";
+export * from "./GetBatchResponse";
+export * from "./CancelBatchResponse";
diff --git a/src/serialization/resources/index.ts b/src/serialization/resources/index.ts
index 4967042c..aafbe54c 100644
--- a/src/serialization/resources/index.ts
+++ b/src/serialization/resources/index.ts
@@ -1,5 +1,7 @@
export * as v2 from "./v2";
export * from "./v2/types";
+export * as batches from "./batches";
+export * from "./batches/types";
export * as embedJobs from "./embedJobs";
export * from "./embedJobs/types";
export * as datasets from "./datasets";
diff --git a/src/serialization/types/ApiMeta.ts b/src/serialization/types/ApiMeta.ts
index 0f69cda2..f5807aaf 100644
--- a/src/serialization/types/ApiMeta.ts
+++ b/src/serialization/types/ApiMeta.ts
@@ -14,6 +14,7 @@ export const ApiMeta: core.serialization.ObjectSchema = core.serialization.enum_(["fast", "accurate", "off"]);
+> = core.serialization.enum_(["ENABLED", "DISABLED", "FAST", "ACCURATE", "OFF"]);
export declare namespace ChatRequestCitationQuality {
- export type Raw = "fast" | "accurate" | "off";
+ export type Raw = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF";
}
diff --git a/src/serialization/types/ChatStreamRequestCitationQuality.ts b/src/serialization/types/ChatStreamRequestCitationQuality.ts
index 13642fe6..12b9af8f 100644
--- a/src/serialization/types/ChatStreamRequestCitationQuality.ts
+++ b/src/serialization/types/ChatStreamRequestCitationQuality.ts
@@ -9,8 +9,8 @@ import * as core from "../../core";
export const ChatStreamRequestCitationQuality: core.serialization.Schema<
serializers.ChatStreamRequestCitationQuality.Raw,
Cohere.ChatStreamRequestCitationQuality
-> = core.serialization.enum_(["fast", "accurate", "off"]);
+> = core.serialization.enum_(["ENABLED", "DISABLED", "FAST", "ACCURATE", "OFF"]);
export declare namespace ChatStreamRequestCitationQuality {
- export type Raw = "fast" | "accurate" | "off";
+ export type Raw = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF";
}
diff --git a/src/serialization/types/CitationOptionsMode.ts b/src/serialization/types/CitationOptionsMode.ts
index 87adf79d..c71b73b1 100644
--- a/src/serialization/types/CitationOptionsMode.ts
+++ b/src/serialization/types/CitationOptionsMode.ts
@@ -9,8 +9,8 @@ import * as core from "../../core";
export const CitationOptionsMode: core.serialization.Schema<
serializers.CitationOptionsMode.Raw,
Cohere.CitationOptionsMode
-> = core.serialization.enum_(["FAST", "ACCURATE", "OFF"]);
+> = core.serialization.enum_(["ENABLED", "DISABLED", "FAST", "ACCURATE", "OFF"]);
export declare namespace CitationOptionsMode {
- export type Raw = "FAST" | "ACCURATE" | "OFF";
+ export type Raw = "ENABLED" | "DISABLED" | "FAST" | "ACCURATE" | "OFF";
}
diff --git a/src/serialization/types/DatasetType.ts b/src/serialization/types/DatasetType.ts
index 434617fa..1ce15762 100644
--- a/src/serialization/types/DatasetType.ts
+++ b/src/serialization/types/DatasetType.ts
@@ -16,6 +16,10 @@ export const DatasetType: core.serialization.Schema = core.serialization.object({
- billedUnits: core.serialization.property("billed_units", UsageBilledUnits.optional()),
- tokens: UsageTokens.optional(),
+ cachedTokens: core.serialization.property("cached_tokens", core.serialization.number().optional()),
});
export declare namespace Usage {
export interface Raw {
- billed_units?: UsageBilledUnits.Raw | null;
- tokens?: UsageTokens.Raw | null;
+ cached_tokens?: number | null;
}
}
diff --git a/src/version.ts b/src/version.ts
index 3c21a237..c37084e1 100644
--- a/src/version.ts
+++ b/src/version.ts
@@ -1 +1 @@
-export const SDK_VERSION = "7.19.0";
+export const SDK_VERSION = "7.20.0";
diff --git a/yarn.lock b/yarn.lock
index 0c28e505..0c8d89c3 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -40,467 +40,466 @@
"@smithy/util-utf8" "^2.0.0"
tslib "^2.6.2"
-"@aws-sdk/client-cognito-identity@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.887.0.tgz#3fc40646eeafca2f6c3631190eb97c5fe1a453af"
- integrity sha512-Y/xcFWEFcroEkn0S75RANAq/5ZoE2tLNcTKUzLP9OjmJM+wEkwgNe3iGR4K5KKVQ13BH3YmSXqOPKC5EYPASZg==
+"@aws-sdk/client-cognito-identity@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.911.0.tgz#492139bce17ed297c55876c6e99418d9d05d1ee2"
+ integrity sha512-Ch/ndkyrh5fAIOqIBS/0IOSsxLQSrzhmBqyZ6Zrahy/haKHOC1UxFFld7crJUbcukvgvmuM9l5DRncy0tIe1tQ==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/credential-provider-node" "3.887.0"
- "@aws-sdk/middleware-host-header" "3.887.0"
- "@aws-sdk/middleware-logger" "3.887.0"
- "@aws-sdk/middleware-recursion-detection" "3.887.0"
- "@aws-sdk/middleware-user-agent" "3.887.0"
- "@aws-sdk/region-config-resolver" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@aws-sdk/util-endpoints" "3.887.0"
- "@aws-sdk/util-user-agent-browser" "3.887.0"
- "@aws-sdk/util-user-agent-node" "3.887.0"
- "@smithy/config-resolver" "^4.2.1"
- "@smithy/core" "^3.11.0"
- "@smithy/fetch-http-handler" "^5.2.1"
- "@smithy/hash-node" "^4.1.1"
- "@smithy/invalid-dependency" "^4.1.1"
- "@smithy/middleware-content-length" "^4.1.1"
- "@smithy/middleware-endpoint" "^4.2.1"
- "@smithy/middleware-retry" "^4.2.1"
- "@smithy/middleware-serde" "^4.1.1"
- "@smithy/middleware-stack" "^4.1.1"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/node-http-handler" "^4.2.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- "@smithy/url-parser" "^4.1.1"
- "@smithy/util-base64" "^4.1.0"
- "@smithy/util-body-length-browser" "^4.1.0"
- "@smithy/util-body-length-node" "^4.1.0"
- "@smithy/util-defaults-mode-browser" "^4.1.1"
- "@smithy/util-defaults-mode-node" "^4.1.1"
- "@smithy/util-endpoints" "^3.1.1"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-retry" "^4.1.1"
- "@smithy/util-utf8" "^4.1.0"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/credential-provider-node" "3.911.0"
+ "@aws-sdk/middleware-host-header" "3.910.0"
+ "@aws-sdk/middleware-logger" "3.910.0"
+ "@aws-sdk/middleware-recursion-detection" "3.910.0"
+ "@aws-sdk/middleware-user-agent" "3.911.0"
+ "@aws-sdk/region-config-resolver" "3.910.0"
+ "@aws-sdk/types" "3.910.0"
+ "@aws-sdk/util-endpoints" "3.910.0"
+ "@aws-sdk/util-user-agent-browser" "3.910.0"
+ "@aws-sdk/util-user-agent-node" "3.911.0"
+ "@smithy/config-resolver" "^4.3.2"
+ "@smithy/core" "^3.16.1"
+ "@smithy/fetch-http-handler" "^5.3.3"
+ "@smithy/hash-node" "^4.2.2"
+ "@smithy/invalid-dependency" "^4.2.2"
+ "@smithy/middleware-content-length" "^4.2.2"
+ "@smithy/middleware-endpoint" "^4.3.3"
+ "@smithy/middleware-retry" "^4.4.3"
+ "@smithy/middleware-serde" "^4.2.2"
+ "@smithy/middleware-stack" "^4.2.2"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/node-http-handler" "^4.4.1"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/smithy-client" "^4.8.1"
+ "@smithy/types" "^4.7.1"
+ "@smithy/url-parser" "^4.2.2"
+ "@smithy/util-base64" "^4.3.0"
+ "@smithy/util-body-length-browser" "^4.2.0"
+ "@smithy/util-body-length-node" "^4.2.1"
+ "@smithy/util-defaults-mode-browser" "^4.3.2"
+ "@smithy/util-defaults-mode-node" "^4.2.3"
+ "@smithy/util-endpoints" "^3.2.2"
+ "@smithy/util-middleware" "^4.2.2"
+ "@smithy/util-retry" "^4.2.2"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
"@aws-sdk/client-sagemaker@^3.583.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sagemaker/-/client-sagemaker-3.887.0.tgz#b7dc4f6fc657ec600d4b445937db084a36a260b1"
- integrity sha512-V+8HcwESJNzlAx+vLZcryfAy7Ecv8yaGAV3jIAcJ9rviJyrUxNTH+XkEPO1mSfKzMoAItb4fL6fVaF/uRfacZA==
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sagemaker/-/client-sagemaker-3.911.0.tgz#759f877666f0dcbcb396fd3b72a3d46404f7c542"
+ integrity sha512-2pP1RXW43buiL3gIcg6jJ4sbydKvgv5fhoe7ujHXUTwNTixYs9Jj8IO5owrVAXE/zHw/sTHqw6ctpHCyW2ooVg==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/credential-provider-node" "3.887.0"
- "@aws-sdk/middleware-host-header" "3.887.0"
- "@aws-sdk/middleware-logger" "3.887.0"
- "@aws-sdk/middleware-recursion-detection" "3.887.0"
- "@aws-sdk/middleware-user-agent" "3.887.0"
- "@aws-sdk/region-config-resolver" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@aws-sdk/util-endpoints" "3.887.0"
- "@aws-sdk/util-user-agent-browser" "3.887.0"
- "@aws-sdk/util-user-agent-node" "3.887.0"
- "@smithy/config-resolver" "^4.2.1"
- "@smithy/core" "^3.11.0"
- "@smithy/fetch-http-handler" "^5.2.1"
- "@smithy/hash-node" "^4.1.1"
- "@smithy/invalid-dependency" "^4.1.1"
- "@smithy/middleware-content-length" "^4.1.1"
- "@smithy/middleware-endpoint" "^4.2.1"
- "@smithy/middleware-retry" "^4.2.1"
- "@smithy/middleware-serde" "^4.1.1"
- "@smithy/middleware-stack" "^4.1.1"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/node-http-handler" "^4.2.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- "@smithy/url-parser" "^4.1.1"
- "@smithy/util-base64" "^4.1.0"
- "@smithy/util-body-length-browser" "^4.1.0"
- "@smithy/util-body-length-node" "^4.1.0"
- "@smithy/util-defaults-mode-browser" "^4.1.1"
- "@smithy/util-defaults-mode-node" "^4.1.1"
- "@smithy/util-endpoints" "^3.1.1"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-retry" "^4.1.1"
- "@smithy/util-utf8" "^4.1.0"
- "@smithy/util-waiter" "^4.1.1"
- "@types/uuid" "^9.0.1"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/credential-provider-node" "3.911.0"
+ "@aws-sdk/middleware-host-header" "3.910.0"
+ "@aws-sdk/middleware-logger" "3.910.0"
+ "@aws-sdk/middleware-recursion-detection" "3.910.0"
+ "@aws-sdk/middleware-user-agent" "3.911.0"
+ "@aws-sdk/region-config-resolver" "3.910.0"
+ "@aws-sdk/types" "3.910.0"
+ "@aws-sdk/util-endpoints" "3.910.0"
+ "@aws-sdk/util-user-agent-browser" "3.910.0"
+ "@aws-sdk/util-user-agent-node" "3.911.0"
+ "@smithy/config-resolver" "^4.3.2"
+ "@smithy/core" "^3.16.1"
+ "@smithy/fetch-http-handler" "^5.3.3"
+ "@smithy/hash-node" "^4.2.2"
+ "@smithy/invalid-dependency" "^4.2.2"
+ "@smithy/middleware-content-length" "^4.2.2"
+ "@smithy/middleware-endpoint" "^4.3.3"
+ "@smithy/middleware-retry" "^4.4.3"
+ "@smithy/middleware-serde" "^4.2.2"
+ "@smithy/middleware-stack" "^4.2.2"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/node-http-handler" "^4.4.1"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/smithy-client" "^4.8.1"
+ "@smithy/types" "^4.7.1"
+ "@smithy/url-parser" "^4.2.2"
+ "@smithy/util-base64" "^4.3.0"
+ "@smithy/util-body-length-browser" "^4.2.0"
+ "@smithy/util-body-length-node" "^4.2.1"
+ "@smithy/util-defaults-mode-browser" "^4.3.2"
+ "@smithy/util-defaults-mode-node" "^4.2.3"
+ "@smithy/util-endpoints" "^3.2.2"
+ "@smithy/util-middleware" "^4.2.2"
+ "@smithy/util-retry" "^4.2.2"
+ "@smithy/util-utf8" "^4.2.0"
+ "@smithy/util-waiter" "^4.2.2"
+ "@smithy/uuid" "^1.1.0"
tslib "^2.6.2"
- uuid "^9.0.1"
-"@aws-sdk/client-sso@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.887.0.tgz#7b9bce78df539b5d7139d0ca1654981b05c63c43"
- integrity sha512-ZKN8BxkRdC6vK6wlnuLSYBhj7uufg14GP5bxqiRaDEooN1y2WcuY95GP13I3brLvM0uboFGbObIVpVrbeHifng==
+"@aws-sdk/client-sso@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/client-sso/-/client-sso-3.911.0.tgz#fdf4c3ade5b464dfc23d6ab54184757293ddbbec"
+ integrity sha512-N9QAeMvN3D1ZyKXkQp4aUgC4wUMuA5E1HuVCkajc0bq1pnH4PIke36YlrDGGREqPlyLFrXCkws2gbL5p23vtlg==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/middleware-host-header" "3.887.0"
- "@aws-sdk/middleware-logger" "3.887.0"
- "@aws-sdk/middleware-recursion-detection" "3.887.0"
- "@aws-sdk/middleware-user-agent" "3.887.0"
- "@aws-sdk/region-config-resolver" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@aws-sdk/util-endpoints" "3.887.0"
- "@aws-sdk/util-user-agent-browser" "3.887.0"
- "@aws-sdk/util-user-agent-node" "3.887.0"
- "@smithy/config-resolver" "^4.2.1"
- "@smithy/core" "^3.11.0"
- "@smithy/fetch-http-handler" "^5.2.1"
- "@smithy/hash-node" "^4.1.1"
- "@smithy/invalid-dependency" "^4.1.1"
- "@smithy/middleware-content-length" "^4.1.1"
- "@smithy/middleware-endpoint" "^4.2.1"
- "@smithy/middleware-retry" "^4.2.1"
- "@smithy/middleware-serde" "^4.1.1"
- "@smithy/middleware-stack" "^4.1.1"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/node-http-handler" "^4.2.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- "@smithy/url-parser" "^4.1.1"
- "@smithy/util-base64" "^4.1.0"
- "@smithy/util-body-length-browser" "^4.1.0"
- "@smithy/util-body-length-node" "^4.1.0"
- "@smithy/util-defaults-mode-browser" "^4.1.1"
- "@smithy/util-defaults-mode-node" "^4.1.1"
- "@smithy/util-endpoints" "^3.1.1"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-retry" "^4.1.1"
- "@smithy/util-utf8" "^4.1.0"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/middleware-host-header" "3.910.0"
+ "@aws-sdk/middleware-logger" "3.910.0"
+ "@aws-sdk/middleware-recursion-detection" "3.910.0"
+ "@aws-sdk/middleware-user-agent" "3.911.0"
+ "@aws-sdk/region-config-resolver" "3.910.0"
+ "@aws-sdk/types" "3.910.0"
+ "@aws-sdk/util-endpoints" "3.910.0"
+ "@aws-sdk/util-user-agent-browser" "3.910.0"
+ "@aws-sdk/util-user-agent-node" "3.911.0"
+ "@smithy/config-resolver" "^4.3.2"
+ "@smithy/core" "^3.16.1"
+ "@smithy/fetch-http-handler" "^5.3.3"
+ "@smithy/hash-node" "^4.2.2"
+ "@smithy/invalid-dependency" "^4.2.2"
+ "@smithy/middleware-content-length" "^4.2.2"
+ "@smithy/middleware-endpoint" "^4.3.3"
+ "@smithy/middleware-retry" "^4.4.3"
+ "@smithy/middleware-serde" "^4.2.2"
+ "@smithy/middleware-stack" "^4.2.2"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/node-http-handler" "^4.4.1"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/smithy-client" "^4.8.1"
+ "@smithy/types" "^4.7.1"
+ "@smithy/url-parser" "^4.2.2"
+ "@smithy/util-base64" "^4.3.0"
+ "@smithy/util-body-length-browser" "^4.2.0"
+ "@smithy/util-body-length-node" "^4.2.1"
+ "@smithy/util-defaults-mode-browser" "^4.3.2"
+ "@smithy/util-defaults-mode-node" "^4.2.3"
+ "@smithy/util-endpoints" "^3.2.2"
+ "@smithy/util-middleware" "^4.2.2"
+ "@smithy/util-retry" "^4.2.2"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
-"@aws-sdk/core@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.887.0.tgz#2e03e3ee7c3c615f96a1f5ea2e4bc6d52b7f53e6"
- integrity sha512-oiBsWhuuj1Lzh+FHY+gE0PyYuiDxqFf98F9Pd2WruY5Gu/+/xvDFEPEkIEOae8gWRaLZ5Eh8u+OY9LS4DXZhuQ==
- dependencies:
- "@aws-sdk/types" "3.887.0"
- "@aws-sdk/xml-builder" "3.887.0"
- "@smithy/core" "^3.11.0"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/signature-v4" "^5.1.3"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-base64" "^4.1.0"
- "@smithy/util-body-length-browser" "^4.1.0"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-utf8" "^4.1.0"
- fast-xml-parser "5.2.5"
+"@aws-sdk/core@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/core/-/core-3.911.0.tgz#e41615add824be8a4deb9daaed626f5f1e467a12"
+ integrity sha512-k4QG9A+UCq/qlDJFmjozo6R0eXXfe++/KnCDMmajehIE9kh+b/5DqlGvAmbl9w4e92LOtrY6/DN3mIX1xs4sXw==
+ dependencies:
+ "@aws-sdk/types" "3.910.0"
+ "@aws-sdk/xml-builder" "3.911.0"
+ "@smithy/core" "^3.16.1"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/signature-v4" "^5.3.2"
+ "@smithy/smithy-client" "^4.8.1"
+ "@smithy/types" "^4.7.1"
+ "@smithy/util-base64" "^4.3.0"
+ "@smithy/util-middleware" "^4.2.2"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-cognito-identity@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.887.0.tgz#7b2f2028e5f98a211e467298766b61b625eec638"
- integrity sha512-T3IX39UefOOBWG+Jf/PuYjsI4XgX7nr0pSxYbLQq73/KILur+XZlhDssIaNjy+MoTs3ULNw63zlAcngVCykuOw==
+"@aws-sdk/credential-provider-cognito-identity@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.911.0.tgz#3ba233fad2cfca8be16c00fa47e14cb428358a17"
+ integrity sha512-4RF/HQ2C4K+UfNfddw3xHLqk/c1G0/8nhgW10BGU0w/EICkCxtVEzgbflGeUumuXsxJYo8Fyyg/Pd8302brfHA==
dependencies:
- "@aws-sdk/client-cognito-identity" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/types" "^4.5.0"
+ "@aws-sdk/client-cognito-identity" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-env@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.887.0.tgz#ac2ee94d850d5d8c0fdb19bca4f96b11f375304f"
- integrity sha512-kv7L5E8mxlWTMhCK639wrQnFEmwUDfKvKzTMDo2OboXZ0iSbD+hBPoT0gkb49qHNetYnsl63BVOxc0VNiOA04w==
+"@aws-sdk/credential-provider-env@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-env/-/credential-provider-env-3.911.0.tgz#4ff8060cb7dd5207580c415c97e44ddcfede562a"
+ integrity sha512-6FWRwWn3LUZzLhqBXB+TPMW2ijCWUqGICSw8bVakEdODrvbiv1RT/MVUayzFwz/ek6e6NKZn6DbSWzx07N9Hjw==
dependencies:
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/types" "^4.5.0"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-http@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.887.0.tgz#aebae84484a08412c03d540ef5f43bb035f7988c"
- integrity sha512-siLttHxSFgJ5caDgS+BHYs9GBDX7J3pgge4OmJvIQeGO+KaJC12TerBNPJOp+qRaRC3yuVw3T9RpSZa8mmaiyA==
- dependencies:
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/fetch-http-handler" "^5.2.1"
- "@smithy/node-http-handler" "^4.2.1"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-stream" "^4.3.1"
+"@aws-sdk/credential-provider-http@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-http/-/credential-provider-http-3.911.0.tgz#c8f6aed9a7be8162c411aa8af417fb5b008d8fd4"
+ integrity sha512-xUlwKmIUW2fWP/eM3nF5u4CyLtOtyohlhGJ5jdsJokr3MrQ7w0tDITO43C9IhCn+28D5UbaiWnKw5ntkw7aVfA==
+ dependencies:
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/fetch-http-handler" "^5.3.3"
+ "@smithy/node-http-handler" "^4.4.1"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/smithy-client" "^4.8.1"
+ "@smithy/types" "^4.7.1"
+ "@smithy/util-stream" "^4.5.2"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-ini@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.887.0.tgz#94d7007f96b04ee76a521d9496f19ff9d237f4a1"
- integrity sha512-Na9IjKdPuSNU/mBcCQ49HiIgomq/O7kZAuRyGwAXiRPbf86AacKv4dsUyPZY6lCgVIvVniRWgYlVaPgq22EIig==
- dependencies:
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/credential-provider-env" "3.887.0"
- "@aws-sdk/credential-provider-http" "3.887.0"
- "@aws-sdk/credential-provider-process" "3.887.0"
- "@aws-sdk/credential-provider-sso" "3.887.0"
- "@aws-sdk/credential-provider-web-identity" "3.887.0"
- "@aws-sdk/nested-clients" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/credential-provider-imds" "^4.0.7"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/shared-ini-file-loader" "^4.0.5"
- "@smithy/types" "^4.5.0"
+"@aws-sdk/credential-provider-ini@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.911.0.tgz#f629e44879840cbfa71ce9cf3fa9801ae84d7480"
+ integrity sha512-bQ86kWAZ0Imn7uWl7uqOYZ2aqlkftPmEc8cQh+QyhmUXbia8II4oYKq/tMek6j3M5UOMCiJVxzJoxemJZA6/sw==
+ dependencies:
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/credential-provider-env" "3.911.0"
+ "@aws-sdk/credential-provider-http" "3.911.0"
+ "@aws-sdk/credential-provider-process" "3.911.0"
+ "@aws-sdk/credential-provider-sso" "3.911.0"
+ "@aws-sdk/credential-provider-web-identity" "3.911.0"
+ "@aws-sdk/nested-clients" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/credential-provider-imds" "^4.2.2"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/shared-ini-file-loader" "^4.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-node@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.887.0.tgz#7f6e30e5bad736d5ff0afb243dd7ee24f330bfa8"
- integrity sha512-iJdCq/brBWYpJzJcXY2UhEoW7aA28ixIpvLKjxh5QUBfjCj19cImpj1gGwTIs6/fVcjVUw1tNveTBfn1ziTzVg==
- dependencies:
- "@aws-sdk/credential-provider-env" "3.887.0"
- "@aws-sdk/credential-provider-http" "3.887.0"
- "@aws-sdk/credential-provider-ini" "3.887.0"
- "@aws-sdk/credential-provider-process" "3.887.0"
- "@aws-sdk/credential-provider-sso" "3.887.0"
- "@aws-sdk/credential-provider-web-identity" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/credential-provider-imds" "^4.0.7"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/shared-ini-file-loader" "^4.0.5"
- "@smithy/types" "^4.5.0"
+"@aws-sdk/credential-provider-node@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-node/-/credential-provider-node-3.911.0.tgz#a114448a1bb59a22105c0ded49cc60ae2ff974df"
+ integrity sha512-4oGpLwgQCKNtVoJROztJ4v7lZLhCqcUMX6pe/DQ2aU0TktZX7EczMCIEGjVo5b7yHwSNWt2zW0tDdgVUTsMHPw==
+ dependencies:
+ "@aws-sdk/credential-provider-env" "3.911.0"
+ "@aws-sdk/credential-provider-http" "3.911.0"
+ "@aws-sdk/credential-provider-ini" "3.911.0"
+ "@aws-sdk/credential-provider-process" "3.911.0"
+ "@aws-sdk/credential-provider-sso" "3.911.0"
+ "@aws-sdk/credential-provider-web-identity" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/credential-provider-imds" "^4.2.2"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/shared-ini-file-loader" "^4.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-process@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.887.0.tgz#e562eda10ff42a144cf17a2d6a77fb6d94df3575"
- integrity sha512-J5TIrQ/DUiyR65gXt1j3TEbLUwMcgYVB/G68/AVgBptPvb9kj+6zFG67bJJHwxtqJxRLVLTtTi9u/YDXTqGBpQ==
+"@aws-sdk/credential-provider-process@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-process/-/credential-provider-process-3.911.0.tgz#61a671487e1808c7206858e83b5e487352507ea2"
+ integrity sha512-mKshhV5jRQffZjbK9x7bs+uC2IsYKfpzYaBamFsEov3xtARCpOiKaIlM8gYKFEbHT2M+1R3rYYlhhl9ndVWS2g==
dependencies:
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/shared-ini-file-loader" "^4.0.5"
- "@smithy/types" "^4.5.0"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/shared-ini-file-loader" "^4.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-sso@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.887.0.tgz#c6d5269e9713201f66826e6c1f200e1a2db4fee4"
- integrity sha512-Bv9wUActLu6Kn0MK2s72bgbbNxSLPVop/If4MVbCyJ3n+prJnm5RsTF3isoWQVyyXA5g4tIrS8mE5FpejSbyPQ==
- dependencies:
- "@aws-sdk/client-sso" "3.887.0"
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/token-providers" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/shared-ini-file-loader" "^4.0.5"
- "@smithy/types" "^4.5.0"
+"@aws-sdk/credential-provider-sso@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.911.0.tgz#562a31e66e5aadb841f03d02d2da9e96b7a595d9"
+ integrity sha512-JAxd4uWe0Zc9tk6+N0cVxe9XtJVcOx6Ms0k933ZU9QbuRMH6xti/wnZxp/IvGIWIDzf5fhqiGyw5MSyDeI5b1w==
+ dependencies:
+ "@aws-sdk/client-sso" "3.911.0"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/token-providers" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/shared-ini-file-loader" "^4.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/credential-provider-web-identity@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.887.0.tgz#e2c865fd9e347bc64c5c822dfd38b2be68162244"
- integrity sha512-PRh0KRukY2euN9xvvQ3cqhCAlEkMDJIWDLIfxQ1hTbv7JA3hrcLVrV+Jg5FRWsStDhweHIvD/VzruSkhJQS80g==
- dependencies:
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/nested-clients" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/types" "^4.5.0"
+"@aws-sdk/credential-provider-web-identity@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.911.0.tgz#7d848ee429991bb2130e541ff7d582dce740d03c"
+ integrity sha512-urIbXWWG+cm54RwwTFQuRwPH0WPsMFSDF2/H9qO2J2fKoHRURuyblFCyYG3aVKZGvFBhOizJYexf5+5w3CJKBw==
+ dependencies:
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/nested-clients" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/shared-ini-file-loader" "^4.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
"@aws-sdk/credential-providers@^3.583.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.887.0.tgz#5126b8a405d3298301e1d1ce4597651ecc734f9e"
- integrity sha512-srs1S6zBjFYJvf5+ye+GnW2szApybV6jkNgVZ8LEJ7Xh5ucycHujK2qQHLRR8Wwrjg2+gq1K8jCfSGEDsaFo8A==
- dependencies:
- "@aws-sdk/client-cognito-identity" "3.887.0"
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/credential-provider-cognito-identity" "3.887.0"
- "@aws-sdk/credential-provider-env" "3.887.0"
- "@aws-sdk/credential-provider-http" "3.887.0"
- "@aws-sdk/credential-provider-ini" "3.887.0"
- "@aws-sdk/credential-provider-node" "3.887.0"
- "@aws-sdk/credential-provider-process" "3.887.0"
- "@aws-sdk/credential-provider-sso" "3.887.0"
- "@aws-sdk/credential-provider-web-identity" "3.887.0"
- "@aws-sdk/nested-clients" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/config-resolver" "^4.2.1"
- "@smithy/core" "^3.11.0"
- "@smithy/credential-provider-imds" "^4.0.7"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/types" "^4.5.0"
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/credential-providers/-/credential-providers-3.911.0.tgz#27024d06497a1ae25e071f31ae0d32d6c6528836"
+ integrity sha512-BTJyah0hB0w4kP6RKBr4oA1O9cJ5hG3UWVXKIH3YvvSEfZtjbaN1lrnN9DXk1lIEsNZG/yG5m6UjI4e9c7eeKA==
+ dependencies:
+ "@aws-sdk/client-cognito-identity" "3.911.0"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/credential-provider-cognito-identity" "3.911.0"
+ "@aws-sdk/credential-provider-env" "3.911.0"
+ "@aws-sdk/credential-provider-http" "3.911.0"
+ "@aws-sdk/credential-provider-ini" "3.911.0"
+ "@aws-sdk/credential-provider-node" "3.911.0"
+ "@aws-sdk/credential-provider-process" "3.911.0"
+ "@aws-sdk/credential-provider-sso" "3.911.0"
+ "@aws-sdk/credential-provider-web-identity" "3.911.0"
+ "@aws-sdk/nested-clients" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/config-resolver" "^4.3.2"
+ "@smithy/core" "^3.16.1"
+ "@smithy/credential-provider-imds" "^4.2.2"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/middleware-host-header@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.887.0.tgz#765305b5a2c412e6bf53eb6d557f2ab831ff50a7"
- integrity sha512-ulzqXv6NNqdu/kr0sgBYupWmahISHY+azpJidtK6ZwQIC+vBUk9NdZeqQpy7KVhIk2xd4+5Oq9rxapPwPI21CA==
+"@aws-sdk/middleware-host-header@3.910.0":
+ version "3.910.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-host-header/-/middleware-host-header-3.910.0.tgz#5f1c11668c2d2be55253e886b9b622e188314f7b"
+ integrity sha512-F9Lqeu80/aTM6S/izZ8RtwSmjfhWjIuxX61LX+/9mxJyEkgaECRxv0chsLQsLHJumkGnXRy/eIyMLBhcTPF5vg==
dependencies:
- "@aws-sdk/types" "3.887.0"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/middleware-logger@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.887.0.tgz#fec1c731d158306425897b371cfabdf188d07f12"
- integrity sha512-YbbgLI6jKp2qSoAcHnXrQ5jcuc5EYAmGLVFgMVdk8dfCfJLfGGSaOLxF4CXC7QYhO50s+mPPkhBYejCik02Kug==
+"@aws-sdk/middleware-logger@3.910.0":
+ version "3.910.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-logger/-/middleware-logger-3.910.0.tgz#ebe29050cfd2fdfb6a2d2cb5a829d53dc82dfc14"
+ integrity sha512-3LJyyfs1USvRuRDla1pGlzGRtXJBXD1zC9F+eE9Iz/V5nkmhyv52A017CvKWmYoR0DM9dzjLyPOI0BSSppEaTw==
dependencies:
- "@aws-sdk/types" "3.887.0"
- "@smithy/types" "^4.5.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/middleware-recursion-detection@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.887.0.tgz#4fdb1039042565a4ba0ff506584a99f3c7c3fd23"
- integrity sha512-tjrUXFtQnFLo+qwMveq5faxP5MQakoLArXtqieHphSqZTXm21wDJM73hgT4/PQQGTwgYjDKqnqsE1hvk0hcfDw==
+"@aws-sdk/middleware-recursion-detection@3.910.0":
+ version "3.910.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.910.0.tgz#ea901901b633ec8b76e8144f0ae29c4f917e8a04"
+ integrity sha512-m/oLz0EoCy+WoIVBnXRXJ4AtGpdl0kPE7U+VH9TsuUzHgxY1Re/176Q1HWLBRVlz4gr++lNsgsMWEC+VnAwMpw==
dependencies:
- "@aws-sdk/types" "3.887.0"
+ "@aws-sdk/types" "3.910.0"
"@aws/lambda-invoke-store" "^0.0.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/middleware-user-agent@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.887.0.tgz#ecb60f439081bec36d2390832d6ee138f69d37f5"
- integrity sha512-YjBz2J4l3uCeMv2g1natat5YSMRZYdEpEg60g3d7q6hoHUD10SmWy8M+Ca8djF0is70vPmF3Icm2cArK3mtoNA==
- dependencies:
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@aws-sdk/util-endpoints" "3.887.0"
- "@smithy/core" "^3.11.0"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
+"@aws-sdk/middleware-user-agent@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.911.0.tgz#51f8c9790401385da97988b3e94b88c662b7bad4"
+ integrity sha512-rY3LvGvgY/UI0nmt5f4DRzjEh8135A2TeHcva1bgOmVfOI4vkkGfA20sNRqerOkSO6hPbkxJapO50UJHFzmmyA==
+ dependencies:
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@aws-sdk/util-endpoints" "3.910.0"
+ "@smithy/core" "^3.16.1"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/nested-clients@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.887.0.tgz#b95906d63b0040680e7f46edcf7e699d44edde57"
- integrity sha512-h6/dHuAJhJnhSDihcQd0wfJBZoPmPajASVqGk8qDxYDBWxIU9/mYcKvM+kTrKw3f9Wf3S/eR5B/rYHHuxFheSw==
+"@aws-sdk/nested-clients@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/nested-clients/-/nested-clients-3.911.0.tgz#0b4a8662f3da24f0dcc6d5c4d298465a5deb1a7b"
+ integrity sha512-lp/sXbdX/S0EYaMYPVKga0omjIUbNNdFi9IJITgKZkLC6CzspihIoHd5GIdl4esMJevtTQQfkVncXTFkf/a4YA==
dependencies:
"@aws-crypto/sha256-browser" "5.2.0"
"@aws-crypto/sha256-js" "5.2.0"
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/middleware-host-header" "3.887.0"
- "@aws-sdk/middleware-logger" "3.887.0"
- "@aws-sdk/middleware-recursion-detection" "3.887.0"
- "@aws-sdk/middleware-user-agent" "3.887.0"
- "@aws-sdk/region-config-resolver" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@aws-sdk/util-endpoints" "3.887.0"
- "@aws-sdk/util-user-agent-browser" "3.887.0"
- "@aws-sdk/util-user-agent-node" "3.887.0"
- "@smithy/config-resolver" "^4.2.1"
- "@smithy/core" "^3.11.0"
- "@smithy/fetch-http-handler" "^5.2.1"
- "@smithy/hash-node" "^4.1.1"
- "@smithy/invalid-dependency" "^4.1.1"
- "@smithy/middleware-content-length" "^4.1.1"
- "@smithy/middleware-endpoint" "^4.2.1"
- "@smithy/middleware-retry" "^4.2.1"
- "@smithy/middleware-serde" "^4.1.1"
- "@smithy/middleware-stack" "^4.1.1"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/node-http-handler" "^4.2.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- "@smithy/url-parser" "^4.1.1"
- "@smithy/util-base64" "^4.1.0"
- "@smithy/util-body-length-browser" "^4.1.0"
- "@smithy/util-body-length-node" "^4.1.0"
- "@smithy/util-defaults-mode-browser" "^4.1.1"
- "@smithy/util-defaults-mode-node" "^4.1.1"
- "@smithy/util-endpoints" "^3.1.1"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-retry" "^4.1.1"
- "@smithy/util-utf8" "^4.1.0"
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/middleware-host-header" "3.910.0"
+ "@aws-sdk/middleware-logger" "3.910.0"
+ "@aws-sdk/middleware-recursion-detection" "3.910.0"
+ "@aws-sdk/middleware-user-agent" "3.911.0"
+ "@aws-sdk/region-config-resolver" "3.910.0"
+ "@aws-sdk/types" "3.910.0"
+ "@aws-sdk/util-endpoints" "3.910.0"
+ "@aws-sdk/util-user-agent-browser" "3.910.0"
+ "@aws-sdk/util-user-agent-node" "3.911.0"
+ "@smithy/config-resolver" "^4.3.2"
+ "@smithy/core" "^3.16.1"
+ "@smithy/fetch-http-handler" "^5.3.3"
+ "@smithy/hash-node" "^4.2.2"
+ "@smithy/invalid-dependency" "^4.2.2"
+ "@smithy/middleware-content-length" "^4.2.2"
+ "@smithy/middleware-endpoint" "^4.3.3"
+ "@smithy/middleware-retry" "^4.4.3"
+ "@smithy/middleware-serde" "^4.2.2"
+ "@smithy/middleware-stack" "^4.2.2"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/node-http-handler" "^4.4.1"
+ "@smithy/protocol-http" "^5.3.2"
+ "@smithy/smithy-client" "^4.8.1"
+ "@smithy/types" "^4.7.1"
+ "@smithy/url-parser" "^4.2.2"
+ "@smithy/util-base64" "^4.3.0"
+ "@smithy/util-body-length-browser" "^4.2.0"
+ "@smithy/util-body-length-node" "^4.2.1"
+ "@smithy/util-defaults-mode-browser" "^4.3.2"
+ "@smithy/util-defaults-mode-node" "^4.2.3"
+ "@smithy/util-endpoints" "^3.2.2"
+ "@smithy/util-middleware" "^4.2.2"
+ "@smithy/util-retry" "^4.2.2"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
-"@aws-sdk/region-config-resolver@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.887.0.tgz#5e89768b44cd5e5c624852ade958579144ac2eb5"
- integrity sha512-VdSMrIqJ3yjJb/fY+YAxrH/lCVv0iL8uA+lbMNfQGtO5tB3Zx6SU9LEpUwBNX8fPK1tUpI65CNE4w42+MY/7Mg==
+"@aws-sdk/region-config-resolver@3.910.0":
+ version "3.910.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/region-config-resolver/-/region-config-resolver-3.910.0.tgz#31f365a3bc254e4c4417a39d0f40338acdbe3da4"
+ integrity sha512-gzQAkuHI3xyG6toYnH/pju+kc190XmvnB7X84vtN57GjgdQJICt9So/BD0U6h+eSfk9VBnafkVrAzBzWMEFZVw==
dependencies:
- "@aws-sdk/types" "3.887.0"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-config-provider" "^4.0.0"
- "@smithy/util-middleware" "^4.1.1"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/types" "^4.7.1"
+ "@smithy/util-config-provider" "^4.2.0"
+ "@smithy/util-middleware" "^4.2.2"
tslib "^2.6.2"
-"@aws-sdk/token-providers@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.887.0.tgz#0825955ec3e518fea88649cf381839b9b07ea859"
- integrity sha512-3e5fTPMPeJ5DphZ+OSqzw4ymCgDf8SQVBgrlKVo4Bch9ZwmmAoOHbuQrXVa9xQHklEHJg1Gz2pkjxNaIgx7quA==
- dependencies:
- "@aws-sdk/core" "3.887.0"
- "@aws-sdk/nested-clients" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/property-provider" "^4.0.5"
- "@smithy/shared-ini-file-loader" "^4.0.5"
- "@smithy/types" "^4.5.0"
+"@aws-sdk/token-providers@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/token-providers/-/token-providers-3.911.0.tgz#16d41de62fbed6e9a3b3ae2bc2ced0be83a982b4"
+ integrity sha512-O1c5F1pbEImgEe3Vr8j1gpWu69UXWj3nN3vvLGh77hcrG5dZ8I27tSP5RN4Labm8Dnji/6ia+vqSYpN8w6KN5A==
+ dependencies:
+ "@aws-sdk/core" "3.911.0"
+ "@aws-sdk/nested-clients" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/property-provider" "^4.2.2"
+ "@smithy/shared-ini-file-loader" "^4.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/types@3.887.0", "@aws-sdk/types@^3.222.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.887.0.tgz#989f3b67d7ddb97443e4bdb80ad2313c604b240d"
- integrity sha512-fmTEJpUhsPsovQ12vZSpVTEP/IaRoJAMBGQXlQNjtCpkBp6Iq3KQDa/HDaPINE+3xxo6XvTdtibsNOd5zJLV9A==
+"@aws-sdk/types@3.910.0", "@aws-sdk/types@^3.222.0":
+ version "3.910.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/types/-/types-3.910.0.tgz#1707a9f5d36d828789173fcd5622a5684cf67b2f"
+ integrity sha512-o67gL3vjf4nhfmuSUNNkit0d62QJEwwHLxucwVJkR/rw9mfUtAWsgBs8Tp16cdUbMgsyQtCQilL8RAJDoGtadQ==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/util-endpoints@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.887.0.tgz#e4f2dfb608360b6d8b4e3793492d4625dba00275"
- integrity sha512-kpegvT53KT33BMeIcGLPA65CQVxLUL/C3gTz9AzlU/SDmeusBHX4nRApAicNzI/ltQ5lxZXbQn18UczzBuwF1w==
+"@aws-sdk/util-endpoints@3.910.0":
+ version "3.910.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-endpoints/-/util-endpoints-3.910.0.tgz#aca087159fa0c89d514e534b369724bea4211bd3"
+ integrity sha512-6XgdNe42ibP8zCQgNGDWoOF53RfEKzpU/S7Z29FTTJ7hcZv0SytC0ZNQQZSx4rfBl036YWYwJRoJMlT4AA7q9A==
dependencies:
- "@aws-sdk/types" "3.887.0"
- "@smithy/types" "^4.5.0"
- "@smithy/url-parser" "^4.1.1"
- "@smithy/util-endpoints" "^3.1.1"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/types" "^4.7.1"
+ "@smithy/url-parser" "^4.2.2"
+ "@smithy/util-endpoints" "^3.2.2"
tslib "^2.6.2"
"@aws-sdk/util-locate-window@^3.0.0":
- version "3.873.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.873.0.tgz#cc10edef3b7aecf365943ec657116d6eb470d9cb"
- integrity sha512-xcVhZF6svjM5Rj89T1WzkjQmrTF6dpR2UvIHPMTnSZoNe6CixejPZ6f0JJ2kAhO8H+dUHwNBlsUgOTIKiK/Syg==
+ version "3.893.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-locate-window/-/util-locate-window-3.893.0.tgz#5df15f24e1edbe12ff1fe8906f823b51cd53bae8"
+ integrity sha512-T89pFfgat6c8nMmpI8eKjBcDcgJq36+m9oiXbcUzeU55MP9ZuGgBomGjGnHaEyF36jenW9gmg3NfZDm0AO2XPg==
dependencies:
tslib "^2.6.2"
-"@aws-sdk/util-user-agent-browser@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.887.0.tgz#1c5ccc82a0b31a4b159ad98cb12abda1e6c422c8"
- integrity sha512-X71UmVsYc6ZTH4KU6hA5urOzYowSXc3qvroagJNLJYU1ilgZ529lP4J9XOYfEvTXkLR1hPFSRxa43SrwgelMjA==
+"@aws-sdk/util-user-agent-browser@3.910.0":
+ version "3.910.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.910.0.tgz#93b4ca9c9b3675b3e6d95c9ef517ac2db159e131"
+ integrity sha512-iOdrRdLZHrlINk9pezNZ82P/VxO/UmtmpaOAObUN+xplCUJu31WNM2EE/HccC8PQw6XlAudpdA6HDTGiW6yVGg==
dependencies:
- "@aws-sdk/types" "3.887.0"
- "@smithy/types" "^4.5.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/types" "^4.7.1"
bowser "^2.11.0"
tslib "^2.6.2"
-"@aws-sdk/util-user-agent-node@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.887.0.tgz#e0c2ae5667197b8b830feb1c2cd05cc4735a6640"
- integrity sha512-eqnx2FWAf40Nw6EyhXWjVT5WYYMz0rLrKEhZR3GdRQyOFzgnnEfq74TtG2Xji9k/ODqkcKqkiI52RYDEcdh8Jg==
+"@aws-sdk/util-user-agent-node@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.911.0.tgz#71c65decf363cffc37674f8cc6abd65ae169ae03"
+ integrity sha512-3l+f6ooLF6Z6Lz0zGi7vSKSUYn/EePPizv88eZQpEAFunBHv+CSVNPtxhxHfkm7X9tTsV4QGZRIqo3taMLolmA==
dependencies:
- "@aws-sdk/middleware-user-agent" "3.887.0"
- "@aws-sdk/types" "3.887.0"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/types" "^4.5.0"
+ "@aws-sdk/middleware-user-agent" "3.911.0"
+ "@aws-sdk/types" "3.910.0"
+ "@smithy/node-config-provider" "^4.3.2"
+ "@smithy/types" "^4.7.1"
tslib "^2.6.2"
-"@aws-sdk/xml-builder@3.887.0":
- version "3.887.0"
- resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.887.0.tgz#376754d19384bbe5b8139c0a0e6521a4a6500c67"
- integrity sha512-lMwgWK1kNgUhHGfBvO/5uLe7TKhycwOn3eRCqsKPT9aPCx/HWuTlpcQp8oW2pCRGLS7qzcxqpQulcD+bbUL7XQ==
+"@aws-sdk/xml-builder@3.911.0":
+ version "3.911.0"
+ resolved "https://registry.yarnpkg.com/@aws-sdk/xml-builder/-/xml-builder-3.911.0.tgz#adcf71c4390ce3bb5ecb921eb45aa72830d7e361"
+ integrity sha512-/yh3oe26bZfCVGrIMRM9Z4hvvGJD+qx5tOLlydOkuBkm72aXON7D9+MucjJXTAcI8tF2Yq+JHa0478eHQOhnLg==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.7.1"
+ fast-xml-parser "5.2.5"
tslib "^2.6.2"
"@aws/lambda-invoke-store@^0.0.1":
@@ -1045,80 +1044,79 @@
dependencies:
"@sinonjs/commons" "^3.0.0"
-"@smithy/abort-controller@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.1.1.tgz#9b3872ab6b2c061486175c281dadc0a853260533"
- integrity sha512-vkzula+IwRvPR6oKQhMYioM3A/oX/lFCZiwuxkQbRhqJS2S4YRY2k7k/SyR2jMf3607HLtbEwlRxi0ndXHMjRg==
+"@smithy/abort-controller@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/abort-controller/-/abort-controller-4.2.3.tgz#4615da3012b580ac3d1f0ee7b57ed7d7880bb29b"
+ integrity sha512-xWL9Mf8b7tIFuAlpjKtRPnHrR8XVrwTj5NPYO/QwZPtc0SDLsPxb56V5tzi5yspSMytISHybifez+4jlrx0vkQ==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/config-resolver@^4.2.1":
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.2.1.tgz#12c24e550e2675e03a78bec64a652ed129bce718"
- integrity sha512-FXil8q4QN7mgKwU2hCLm0ltab8NyY/1RiqEf25Jnf6WLS3wmb11zGAoLETqg1nur2Aoibun4w4MjeN9CMJ4G6A==
+"@smithy/config-resolver@^4.3.2", "@smithy/config-resolver@^4.3.3":
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/@smithy/config-resolver/-/config-resolver-4.3.3.tgz#47de9dbb2b4ddf0d4d2dc9a56981f8273a5a7bea"
+ integrity sha512-xSql8A1Bl41O9JvGU/CtgiLBlwkvpHTSKRlvz9zOBvBCPjXghZ6ZkcVzmV2f7FLAA+80+aqKmIOmy8pEDrtCaw==
dependencies:
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-config-provider" "^4.1.0"
- "@smithy/util-middleware" "^4.1.1"
+ "@smithy/node-config-provider" "^4.3.3"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-config-provider" "^4.2.0"
+ "@smithy/util-middleware" "^4.2.3"
tslib "^2.6.2"
-"@smithy/core@^3.11.0":
- version "3.11.0"
- resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.11.0.tgz#18ee04696ca35889046169e422a894bea1bec59d"
- integrity sha512-Abs5rdP1o8/OINtE49wwNeWuynCu0kme1r4RI3VXVrHr4odVDG7h7mTnw1WXXfN5Il+c25QOnrdL2y56USfxkA==
- dependencies:
- "@smithy/middleware-serde" "^4.1.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-base64" "^4.1.0"
- "@smithy/util-body-length-browser" "^4.1.0"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-stream" "^4.3.1"
- "@smithy/util-utf8" "^4.1.0"
- "@types/uuid" "^9.0.1"
+"@smithy/core@^3.16.1", "@smithy/core@^3.17.0":
+ version "3.17.0"
+ resolved "https://registry.yarnpkg.com/@smithy/core/-/core-3.17.0.tgz#6acedc8ef21860a98143f655bac428af4049d189"
+ integrity sha512-Tir3DbfoTO97fEGUZjzGeoXgcQAUBRDTmuH9A8lxuP8ATrgezrAJ6cLuRvwdKN4ZbYNlHgKlBX69Hyu3THYhtg==
+ dependencies:
+ "@smithy/middleware-serde" "^4.2.3"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-base64" "^4.3.0"
+ "@smithy/util-body-length-browser" "^4.2.0"
+ "@smithy/util-middleware" "^4.2.3"
+ "@smithy/util-stream" "^4.5.3"
+ "@smithy/util-utf8" "^4.2.0"
+ "@smithy/uuid" "^1.1.0"
tslib "^2.6.2"
- uuid "^9.0.1"
-"@smithy/credential-provider-imds@^4.0.7", "@smithy/credential-provider-imds@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.1.1.tgz#e1535a0121a98a2d872eaffc2470eccc057cebd5"
- integrity sha512-1WdBfM9DwA59pnpIizxnUvBf/de18p4GP+6zP2AqrlFzoW3ERpZaT4QueBR0nS9deDMaQRkBlngpVlnkuuTisQ==
+"@smithy/credential-provider-imds@^4.2.2", "@smithy/credential-provider-imds@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/credential-provider-imds/-/credential-provider-imds-4.2.3.tgz#b35d0d1f1b28f415e06282999eba2d53eb10a1c5"
+ integrity sha512-hA1MQ/WAHly4SYltJKitEsIDVsNmXcQfYBRv2e+q04fnqtAX5qXaybxy/fhUeAMCnQIdAjaGDb04fMHQefWRhw==
dependencies:
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/property-provider" "^4.1.1"
- "@smithy/types" "^4.5.0"
- "@smithy/url-parser" "^4.1.1"
+ "@smithy/node-config-provider" "^4.3.3"
+ "@smithy/property-provider" "^4.2.3"
+ "@smithy/types" "^4.8.0"
+ "@smithy/url-parser" "^4.2.3"
tslib "^2.6.2"
-"@smithy/fetch-http-handler@^5.2.1":
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.2.1.tgz#fe284a00f1b3a35edf9fba454d287b7f74ef20af"
- integrity sha512-5/3wxKNtV3wO/hk1is+CZUhL8a1yy/U+9u9LKQ9kZTkMsHaQjJhc3stFfiujtMnkITjzWfndGA2f7g9Uh9vKng==
+"@smithy/fetch-http-handler@^5.3.3", "@smithy/fetch-http-handler@^5.3.4":
+ version "5.3.4"
+ resolved "https://registry.yarnpkg.com/@smithy/fetch-http-handler/-/fetch-http-handler-5.3.4.tgz#af6dd2f63550494c84ef029a5ceda81ef46965d3"
+ integrity sha512-bwigPylvivpRLCm+YK9I5wRIYjFESSVwl8JQ1vVx/XhCw0PtCi558NwTnT2DaVCl5pYlImGuQTSwMsZ+pIavRw==
dependencies:
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/querystring-builder" "^4.1.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-base64" "^4.1.0"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/querystring-builder" "^4.2.3"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-base64" "^4.3.0"
tslib "^2.6.2"
-"@smithy/hash-node@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.1.1.tgz#86ceca92487492267e944e4f4507106b731e7971"
- integrity sha512-H9DIU9WBLhYrvPs9v4sYvnZ1PiAI0oc8CgNQUJ1rpN3pP7QADbTOUjchI2FB764Ub0DstH5xbTqcMJu1pnVqxA==
+"@smithy/hash-node@^4.2.2":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/hash-node/-/hash-node-4.2.3.tgz#c85711fca84e022f05c71b921f98cb6a0f48e5ca"
+ integrity sha512-6+NOdZDbfuU6s1ISp3UOk5Rg953RJ2aBLNLLBEcamLjHAg1Po9Ha7QIB5ZWhdRUVuOUrT8BVFR+O2KIPmw027g==
dependencies:
- "@smithy/types" "^4.5.0"
- "@smithy/util-buffer-from" "^4.1.0"
- "@smithy/util-utf8" "^4.1.0"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-buffer-from" "^4.2.0"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
-"@smithy/invalid-dependency@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.1.1.tgz#2511335ff889944701c7d2a3b1e4a4d6fe9ddfab"
- integrity sha512-1AqLyFlfrrDkyES8uhINRlJXmHA2FkG+3DY8X+rmLSqmFwk3DJnvhyGzyByPyewh2jbmV+TYQBEfngQax8IFGg==
+"@smithy/invalid-dependency@^4.2.2":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/invalid-dependency/-/invalid-dependency-4.2.3.tgz#4f126ddde90fe3d69d522fc37256ee853246c1ec"
+ integrity sha512-Cc9W5DwDuebXEDMpOpl4iERo8I0KFjTnomK2RMdhhR87GwrSmUmwMxS4P5JdRf+LsjOdIqumcerwRgYMr/tZ9Q==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
"@smithy/is-array-buffer@^2.2.0":
@@ -1128,201 +1126,200 @@
dependencies:
tslib "^2.6.2"
-"@smithy/is-array-buffer@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-4.1.0.tgz#d18a2f22280e7173633cb91a9bdb6f3d8a6560b8"
- integrity sha512-ePTYUOV54wMogio+he4pBybe8fwg4sDvEVDBU8ZlHOZXbXK3/C0XfJgUCu6qAZcawv05ZhZzODGUerFBPsPUDQ==
+"@smithy/is-array-buffer@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/is-array-buffer/-/is-array-buffer-4.2.0.tgz#b0f874c43887d3ad44f472a0f3f961bcce0550c2"
+ integrity sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==
dependencies:
tslib "^2.6.2"
-"@smithy/middleware-content-length@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.1.1.tgz#eaea7bd14c7a0b64aef87b8c372c2a04d7b9cb72"
- integrity sha512-9wlfBBgTsRvC2JxLJxv4xDGNBrZuio3AgSl0lSFX7fneW2cGskXTYpFxCdRYD2+5yzmsiTuaAJD1Wp7gWt9y9w==
+"@smithy/middleware-content-length@^4.2.2":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-content-length/-/middleware-content-length-4.2.3.tgz#b7d1d79ae674dad17e35e3518db4b1f0adc08964"
+ integrity sha512-/atXLsT88GwKtfp5Jr0Ks1CSa4+lB+IgRnkNrrYP0h1wL4swHNb0YONEvTceNKNdZGJsye+W2HH8W7olbcPUeA==
dependencies:
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/middleware-endpoint@^4.2.1":
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.2.1.tgz#54c61a113e6da7b615724d03517879d377d3888d"
- integrity sha512-fUTMmQvQQZakXOuKizfu7fBLDpwvWZjfH6zUK2OLsoNZRZGbNUdNSdLJHpwk1vS208jtDjpUIskh+JoA8zMzZg==
- dependencies:
- "@smithy/core" "^3.11.0"
- "@smithy/middleware-serde" "^4.1.1"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/shared-ini-file-loader" "^4.1.1"
- "@smithy/types" "^4.5.0"
- "@smithy/url-parser" "^4.1.1"
- "@smithy/util-middleware" "^4.1.1"
+"@smithy/middleware-endpoint@^4.3.3", "@smithy/middleware-endpoint@^4.3.4":
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-endpoint/-/middleware-endpoint-4.3.4.tgz#372d8818213f884e50e52b638fefe23b358cb812"
+ integrity sha512-/RJhpYkMOaUZoJEkddamGPPIYeKICKXOu/ojhn85dKDM0n5iDIhjvYAQLP3K5FPhgB203O3GpWzoK2OehEoIUw==
+ dependencies:
+ "@smithy/core" "^3.17.0"
+ "@smithy/middleware-serde" "^4.2.3"
+ "@smithy/node-config-provider" "^4.3.3"
+ "@smithy/shared-ini-file-loader" "^4.3.3"
+ "@smithy/types" "^4.8.0"
+ "@smithy/url-parser" "^4.2.3"
+ "@smithy/util-middleware" "^4.2.3"
tslib "^2.6.2"
-"@smithy/middleware-retry@^4.2.1":
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.2.1.tgz#61be10c06e183c392a3769cb8b03c7846b37bee7"
- integrity sha512-JzfvjwSJXWRl7LkLgIRTUTd2Wj639yr3sQGpViGNEOjtb0AkAuYqRAHs+jSOI/LPC0ZTjmFVVtfrCICMuebexw==
- dependencies:
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/service-error-classification" "^4.1.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-retry" "^4.1.1"
- "@types/uuid" "^9.0.1"
+"@smithy/middleware-retry@^4.4.3":
+ version "4.4.4"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-retry/-/middleware-retry-4.4.4.tgz#b732b04f67c9b60b3484267cd3aca317cc0ad300"
+ integrity sha512-vSgABQAkuUHRO03AhR2rWxVQ1un284lkBn+NFawzdahmzksAoOeVMnXXsuPViL4GlhRHXqFaMlc8Mj04OfQk1w==
+ dependencies:
+ "@smithy/node-config-provider" "^4.3.3"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/service-error-classification" "^4.2.3"
+ "@smithy/smithy-client" "^4.9.0"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-middleware" "^4.2.3"
+ "@smithy/util-retry" "^4.2.3"
+ "@smithy/uuid" "^1.1.0"
tslib "^2.6.2"
- uuid "^9.0.1"
-"@smithy/middleware-serde@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.1.1.tgz#cfb99f53c744d7730928235cbe66cc7ff8a8a9b2"
- integrity sha512-lh48uQdbCoj619kRouev5XbWhCwRKLmphAif16c4J6JgJ4uXjub1PI6RL38d3BLliUvSso6klyB/LTNpWSNIyg==
+"@smithy/middleware-serde@^4.2.2", "@smithy/middleware-serde@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-serde/-/middleware-serde-4.2.3.tgz#a827e9c4ea9e51c79cca4d6741d582026a8b53eb"
+ integrity sha512-8g4NuUINpYccxiCXM5s1/V+uLtts8NcX4+sPEbvYQDZk4XoJfDpq5y2FQxfmUL89syoldpzNzA0R9nhzdtdKnQ==
dependencies:
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/middleware-stack@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.1.1.tgz#1d533fde4ccbb62d7fc0f0b8ac518b7e4791e311"
- integrity sha512-ygRnniqNcDhHzs6QAPIdia26M7e7z9gpkIMUe/pK0RsrQ7i5MblwxY8078/QCnGq6AmlUUWgljK2HlelsKIb/A==
+"@smithy/middleware-stack@^4.2.2", "@smithy/middleware-stack@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/middleware-stack/-/middleware-stack-4.2.3.tgz#5a315aa9d0fd4faaa248780297c8cbacc31c2eba"
+ integrity sha512-iGuOJkH71faPNgOj/gWuEGS6xvQashpLwWB1HjHq1lNNiVfbiJLpZVbhddPuDbx9l4Cgl0vPLq5ltRfSaHfspA==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/node-config-provider@^4.2.1":
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.2.1.tgz#31be8865dbea9a9f23aee278a6728317d0ed0250"
- integrity sha512-AIA0BJZq2h295J5NeCTKhg1WwtdTA/GqBCaVjk30bDgMHwniUETyh5cP9IiE9VrId7Kt8hS7zvREVMTv1VfA6g==
+"@smithy/node-config-provider@^4.3.2", "@smithy/node-config-provider@^4.3.3":
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/@smithy/node-config-provider/-/node-config-provider-4.3.3.tgz#44140a1e6bc666bcf16faf68c35d3dae4ba8cad5"
+ integrity sha512-NzI1eBpBSViOav8NVy1fqOlSfkLgkUjUTlohUSgAEhHaFWA3XJiLditvavIP7OpvTjDp5u2LhtlBhkBlEisMwA==
dependencies:
- "@smithy/property-provider" "^4.1.1"
- "@smithy/shared-ini-file-loader" "^4.1.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/property-provider" "^4.2.3"
+ "@smithy/shared-ini-file-loader" "^4.3.3"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/node-http-handler@^4.2.1":
- version "4.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.2.1.tgz#d7ab8e31659030d3d5a68f0982f15c00b1e67a0c"
- integrity sha512-REyybygHlxo3TJICPF89N2pMQSf+p+tBJqpVe1+77Cfi9HBPReNjTgtZ1Vg73exq24vkqJskKDpfF74reXjxfw==
+"@smithy/node-http-handler@^4.4.1", "@smithy/node-http-handler@^4.4.2":
+ version "4.4.2"
+ resolved "https://registry.yarnpkg.com/@smithy/node-http-handler/-/node-http-handler-4.4.2.tgz#0620e07d3758d743673c62bf0519b28ddb6e71f6"
+ integrity sha512-MHFvTjts24cjGo1byXqhXrbqm7uznFD/ESFx8npHMWTFQVdBZjrT1hKottmp69LBTRm/JQzP/sn1vPt0/r6AYQ==
dependencies:
- "@smithy/abort-controller" "^4.1.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/querystring-builder" "^4.1.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/abort-controller" "^4.2.3"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/querystring-builder" "^4.2.3"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/property-provider@^4.0.5", "@smithy/property-provider@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.1.1.tgz#6e11ae6729840314afed05fd6ab48f62c654116b"
- integrity sha512-gm3ZS7DHxUbzC2wr8MUCsAabyiXY0gaj3ROWnhSx/9sPMc6eYLMM4rX81w1zsMaObj2Lq3PZtNCC1J6lpEY7zg==
+"@smithy/property-provider@^4.2.2", "@smithy/property-provider@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/property-provider/-/property-provider-4.2.3.tgz#a6c82ca0aa1c57f697464bee496f3fec58660864"
+ integrity sha512-+1EZ+Y+njiefCohjlhyOcy1UNYjT+1PwGFHCxA/gYctjg3DQWAU19WigOXAco/Ql8hZokNehpzLd0/+3uCreqQ==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/protocol-http@^5.1.2", "@smithy/protocol-http@^5.2.1":
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.2.1.tgz#33f2b8e4e1082c3ae0372d1322577e6fa71d7824"
- integrity sha512-T8SlkLYCwfT/6m33SIU/JOVGNwoelkrvGjFKDSDtVvAXj/9gOT78JVJEas5a+ETjOu4SVvpCstKgd0PxSu/aHw==
+"@smithy/protocol-http@^5.1.2", "@smithy/protocol-http@^5.3.2", "@smithy/protocol-http@^5.3.3":
+ version "5.3.3"
+ resolved "https://registry.yarnpkg.com/@smithy/protocol-http/-/protocol-http-5.3.3.tgz#55b35c18bdc0f6d86e78f63961e50ba4ff1c5d73"
+ integrity sha512-Mn7f/1aN2/jecywDcRDvWWWJF4uwg/A0XjFMJtj72DsgHTByfjRltSqcT9NyE9RTdBSN6X1RSXrhn/YWQl8xlw==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/querystring-builder@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.1.1.tgz#4d35c1735de8214055424045a117fa5d1d5cdec1"
- integrity sha512-J9b55bfimP4z/Jg1gNo+AT84hr90p716/nvxDkPGCD4W70MPms0h8KF50RDRgBGZeL83/u59DWNqJv6tEP/DHA==
+"@smithy/querystring-builder@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/querystring-builder/-/querystring-builder-4.2.3.tgz#ca273ae8c21fce01a52632202679c0f9e2acf41a"
+ integrity sha512-LOVCGCmwMahYUM/P0YnU/AlDQFjcu+gWbFJooC417QRB/lDJlWSn8qmPSDp+s4YVAHOgtgbNG4sR+SxF/VOcJQ==
dependencies:
- "@smithy/types" "^4.5.0"
- "@smithy/util-uri-escape" "^4.1.0"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-uri-escape" "^4.2.0"
tslib "^2.6.2"
-"@smithy/querystring-parser@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.1.1.tgz#21b861439b2db16abeb0a6789b126705fa25eea1"
- integrity sha512-63TEp92YFz0oQ7Pj9IuI3IgnprP92LrZtRAkE3c6wLWJxfy/yOPRt39IOKerVr0JS770olzl0kGafXlAXZ1vng==
+"@smithy/querystring-parser@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/querystring-parser/-/querystring-parser-4.2.3.tgz#b6d7d5cd300b4083c62d9bd30915f782d01f503e"
+ integrity sha512-cYlSNHcTAX/wc1rpblli3aUlLMGgKZ/Oqn8hhjFASXMCXjIqeuQBei0cnq2JR8t4RtU9FpG6uyl6PxyArTiwKA==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/service-error-classification@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.1.1.tgz#86a615298ae406c3b6c7dc63c1c1738c54cfdfc6"
- integrity sha512-Iam75b/JNXyDE41UvrlM6n8DNOa/r1ylFyvgruTUx7h2Uk7vDNV9AAwP1vfL1fOL8ls0xArwEGVcGZVd7IO/Cw==
+"@smithy/service-error-classification@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/service-error-classification/-/service-error-classification-4.2.3.tgz#ecb41dd514841eebb93e91012ae5e343040f6828"
+ integrity sha512-NkxsAxFWwsPsQiwFG2MzJ/T7uIR6AQNh1SzcxSUnmmIqIQMlLRQDKhc17M7IYjiuBXhrQRjQTo3CxX+DobS93g==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
-"@smithy/shared-ini-file-loader@^4.0.5", "@smithy/shared-ini-file-loader@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.1.1.tgz#d4a748bb8027e1111635464c9b1e546d608fc089"
- integrity sha512-YkpikhIqGc4sfXeIbzSj10t2bJI/sSoP5qxLue6zG+tEE3ngOBSm8sO3+djacYvS/R5DfpxN/L9CyZsvwjWOAQ==
+"@smithy/shared-ini-file-loader@^4.3.2", "@smithy/shared-ini-file-loader@^4.3.3":
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.3.3.tgz#1d5162cd3a14f57e4fde56f65aa188e8138c1248"
+ integrity sha512-9f9Ixej0hFhroOK2TxZfUUDR13WVa8tQzhSzPDgXe5jGL3KmaM9s8XN7RQwqtEypI82q9KHnKS71CJ+q/1xLtQ==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/signature-v4@^5.1.2", "@smithy/signature-v4@^5.1.3":
- version "5.2.1"
- resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.2.1.tgz#0048489d2f1b3c888382595a085edd31967498f8"
- integrity sha512-M9rZhWQLjlQVCCR37cSjHfhriGRN+FQ8UfgrYNufv66TJgk+acaggShl3KS5U/ssxivvZLlnj7QH2CUOKlxPyA==
- dependencies:
- "@smithy/is-array-buffer" "^4.1.0"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-hex-encoding" "^4.1.0"
- "@smithy/util-middleware" "^4.1.1"
- "@smithy/util-uri-escape" "^4.1.0"
- "@smithy/util-utf8" "^4.1.0"
+"@smithy/signature-v4@^5.1.2", "@smithy/signature-v4@^5.3.2":
+ version "5.3.3"
+ resolved "https://registry.yarnpkg.com/@smithy/signature-v4/-/signature-v4-5.3.3.tgz#5ff13cfaa29cb531061c2582cb599b39e040e52e"
+ integrity sha512-CmSlUy+eEYbIEYN5N3vvQTRfqt0lJlQkaQUIf+oizu7BbDut0pozfDjBGecfcfWf7c62Yis4JIEgqQ/TCfodaA==
+ dependencies:
+ "@smithy/is-array-buffer" "^4.2.0"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-hex-encoding" "^4.2.0"
+ "@smithy/util-middleware" "^4.2.3"
+ "@smithy/util-uri-escape" "^4.2.0"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
-"@smithy/smithy-client@^4.6.1":
- version "4.6.1"
- resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.6.1.tgz#4bebcf313431bd274da0b28c7ddc4ba335f9994b"
- integrity sha512-WolVLDb9UTPMEPPOncrCt6JmAMCSC/V2y5gst2STWJ5r7+8iNac+EFYQnmvDCYMfOLcilOSEpm5yXZXwbLak1Q==
- dependencies:
- "@smithy/core" "^3.11.0"
- "@smithy/middleware-endpoint" "^4.2.1"
- "@smithy/middleware-stack" "^4.1.1"
- "@smithy/protocol-http" "^5.2.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-stream" "^4.3.1"
+"@smithy/smithy-client@^4.8.1", "@smithy/smithy-client@^4.9.0":
+ version "4.9.0"
+ resolved "https://registry.yarnpkg.com/@smithy/smithy-client/-/smithy-client-4.9.0.tgz#d72f2ea7ad53db113f1b0f6b13ccddc19aae9aba"
+ integrity sha512-qz7RTd15GGdwJ3ZCeBKLDQuUQ88m+skh2hJwcpPm1VqLeKzgZvXf6SrNbxvx7uOqvvkjCMXqx3YB5PDJyk00ww==
+ dependencies:
+ "@smithy/core" "^3.17.0"
+ "@smithy/middleware-endpoint" "^4.3.4"
+ "@smithy/middleware-stack" "^4.2.3"
+ "@smithy/protocol-http" "^5.3.3"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-stream" "^4.5.3"
tslib "^2.6.2"
-"@smithy/types@^4.5.0":
- version "4.5.0"
- resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.5.0.tgz#850e334662a1ef1286c35814940c80880400a370"
- integrity sha512-RkUpIOsVlAwUIZXO1dsz8Zm+N72LClFfsNqf173catVlvRZiwPy0x2u0JLEA4byreOPKDZPGjmPDylMoP8ZJRg==
+"@smithy/types@^4.7.1", "@smithy/types@^4.8.0":
+ version "4.8.0"
+ resolved "https://registry.yarnpkg.com/@smithy/types/-/types-4.8.0.tgz#e6f65e712478910b74747081e6046e68159f767d"
+ integrity sha512-QpELEHLO8SsQVtqP+MkEgCYTFW0pleGozfs3cZ183ZBj9z3VC1CX1/wtFMK64p+5bhtZo41SeLK1rBRtd25nHQ==
dependencies:
tslib "^2.6.2"
-"@smithy/url-parser@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.1.1.tgz#0e9a5e72b3cf9d7ab7305f9093af5528d9debaf6"
- integrity sha512-bx32FUpkhcaKlEoOMbScvc93isaSiRM75pQ5IgIBaMkT7qMlIibpPRONyx/0CvrXHzJLpOn/u6YiDX2hcvs7Dg==
+"@smithy/url-parser@^4.2.2", "@smithy/url-parser@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/url-parser/-/url-parser-4.2.3.tgz#82508f273a3f074d47d0919f7ce08028c6575c2f"
+ integrity sha512-I066AigYvY3d9VlU3zG9XzZg1yT10aNqvCaBTw9EPgu5GrsEl1aUkcMvhkIXascYH1A8W0LQo3B1Kr1cJNcQEw==
dependencies:
- "@smithy/querystring-parser" "^4.1.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/querystring-parser" "^4.2.3"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/util-base64@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-base64/-/util-base64-4.1.0.tgz#5965026081d9aef4a8246f5702807570abe538b2"
- integrity sha512-RUGd4wNb8GeW7xk+AY5ghGnIwM96V0l2uzvs/uVHf+tIuVX2WSvynk5CxNoBCsM2rQRSZElAo9rt3G5mJ/gktQ==
+"@smithy/util-base64@^4.3.0":
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/@smithy/util-base64/-/util-base64-4.3.0.tgz#5e287b528793aa7363877c1a02cd880d2e76241d"
+ integrity sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==
dependencies:
- "@smithy/util-buffer-from" "^4.1.0"
- "@smithy/util-utf8" "^4.1.0"
+ "@smithy/util-buffer-from" "^4.2.0"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
-"@smithy/util-body-length-browser@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-body-length-browser/-/util-body-length-browser-4.1.0.tgz#636bdf4bc878c546627dab4b9b0e4db31b475be7"
- integrity sha512-V2E2Iez+bo6bUMOTENPr6eEmepdY8Hbs+Uc1vkDKgKNA/brTJqOW/ai3JO1BGj9GbCeLqw90pbbH7HFQyFotGQ==
+"@smithy/util-body-length-browser@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/util-body-length-browser/-/util-body-length-browser-4.2.0.tgz#04e9fc51ee7a3e7f648a4b4bcdf96c350cfa4d61"
+ integrity sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==
dependencies:
tslib "^2.6.2"
-"@smithy/util-body-length-node@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-body-length-node/-/util-body-length-node-4.1.0.tgz#646750e4af58f97254a5d5cfeaba7d992f0152ec"
- integrity sha512-BOI5dYjheZdgR9XiEM3HJcEMCXSoqbzu7CzIgYrx0UtmvtC3tC2iDGpJLsSRFffUpy8ymsg2ARMP5fR8mtuUQQ==
+"@smithy/util-body-length-node@^4.2.1":
+ version "4.2.1"
+ resolved "https://registry.yarnpkg.com/@smithy/util-body-length-node/-/util-body-length-node-4.2.1.tgz#79c8a5d18e010cce6c42d5cbaf6c1958523e6fec"
+ integrity sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==
dependencies:
tslib "^2.6.2"
@@ -1334,96 +1331,95 @@
"@smithy/is-array-buffer" "^2.2.0"
tslib "^2.6.2"
-"@smithy/util-buffer-from@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-4.1.0.tgz#21f9e644a0eb41226d92e4eff763f76a7db7e9cc"
- integrity sha512-N6yXcjfe/E+xKEccWEKzK6M+crMrlwaCepKja0pNnlSkm6SjAeLKKA++er5Ba0I17gvKfN/ThV+ZOx/CntKTVw==
+"@smithy/util-buffer-from@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/util-buffer-from/-/util-buffer-from-4.2.0.tgz#7abd12c4991b546e7cee24d1e8b4bfaa35c68a9d"
+ integrity sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==
dependencies:
- "@smithy/is-array-buffer" "^4.1.0"
+ "@smithy/is-array-buffer" "^4.2.0"
tslib "^2.6.2"
-"@smithy/util-config-provider@^4.0.0", "@smithy/util-config-provider@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-config-provider/-/util-config-provider-4.1.0.tgz#6a07d73446c1e9a46d7a3c125f2a9301060bc957"
- integrity sha512-swXz2vMjrP1ZusZWVTB/ai5gK+J8U0BWvP10v9fpcFvg+Xi/87LHvHfst2IgCs1i0v4qFZfGwCmeD/KNCdJZbQ==
+"@smithy/util-config-provider@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/util-config-provider/-/util-config-provider-4.2.0.tgz#2e4722937f8feda4dcb09672c59925a4e6286cfc"
+ integrity sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==
dependencies:
tslib "^2.6.2"
-"@smithy/util-defaults-mode-browser@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.1.1.tgz#40b9659d6fc15aa1101e440d1a92579cb66ebfa3"
- integrity sha512-hA1AKIHFUMa9Tl6q6y8p0pJ9aWHCCG8s57flmIyLE0W7HcJeYrYtnqXDcGnftvXEhdQnSexyegXnzzTGk8bKLA==
+"@smithy/util-defaults-mode-browser@^4.3.2":
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.3.tgz#e858d6a1ee7de77a166c1ae71d2676df623c4ee7"
+ integrity sha512-vqHoybAuZXbFXZqgzquiUXtdY+UT/aU33sxa4GBPkiYklmR20LlCn+d3Wc3yA5ZM13gQ92SZe/D8xh6hkjx+IQ==
dependencies:
- "@smithy/property-provider" "^4.1.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
- bowser "^2.11.0"
+ "@smithy/property-provider" "^4.2.3"
+ "@smithy/smithy-client" "^4.9.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/util-defaults-mode-node@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.1.1.tgz#bca834c5ee16949bf8d0db9ac7bf988ad0d3ce10"
- integrity sha512-RGSpmoBrA+5D2WjwtK7tto6Pc2wO9KSXKLpLONhFZ8VyuCbqlLdiDAfuDTNY9AJe4JoE+Cx806cpTQQoQ71zPQ==
- dependencies:
- "@smithy/config-resolver" "^4.2.1"
- "@smithy/credential-provider-imds" "^4.1.1"
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/property-provider" "^4.1.1"
- "@smithy/smithy-client" "^4.6.1"
- "@smithy/types" "^4.5.0"
+"@smithy/util-defaults-mode-node@^4.2.3":
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.4.tgz#c85d379f37917afbd4777449de26cd1858b1bbb0"
+ integrity sha512-X5/xrPHedifo7hJUUWKlpxVb2oDOiqPUXlvsZv1EZSjILoutLiJyWva3coBpn00e/gPSpH8Rn2eIbgdwHQdW7Q==
+ dependencies:
+ "@smithy/config-resolver" "^4.3.3"
+ "@smithy/credential-provider-imds" "^4.2.3"
+ "@smithy/node-config-provider" "^4.3.3"
+ "@smithy/property-provider" "^4.2.3"
+ "@smithy/smithy-client" "^4.9.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/util-endpoints@^3.1.1":
- version "3.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.1.1.tgz#62c7e10e3a685c9cbb4080220d9e819ee79be8ff"
- integrity sha512-qB4R9kO0SetA11Rzu6MVGFIaGYX3p6SGGGfWwsKnC6nXIf0n/0AKVwRTsYsz9ToN8CeNNtNgQRwKFBndGJZdyw==
+"@smithy/util-endpoints@^3.2.2":
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/util-endpoints/-/util-endpoints-3.2.3.tgz#8bbb80f1ad5769d9f73992c5979eea3b74d7baa9"
+ integrity sha512-aCfxUOVv0CzBIkU10TubdgKSx5uRvzH064kaiPEWfNIvKOtNpu642P4FP1hgOFkjQIkDObrfIDnKMKkeyrejvQ==
dependencies:
- "@smithy/node-config-provider" "^4.2.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/node-config-provider" "^4.3.3"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/util-hex-encoding@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-hex-encoding/-/util-hex-encoding-4.1.0.tgz#9b27cf0c25d0de2c8ebfe75cc20df84e5014ccc9"
- integrity sha512-1LcueNN5GYC4tr8mo14yVYbh/Ur8jHhWOxniZXii+1+ePiIbsLZ5fEI0QQGtbRRP5mOhmooos+rLmVASGGoq5w==
+"@smithy/util-hex-encoding@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/util-hex-encoding/-/util-hex-encoding-4.2.0.tgz#1c22ea3d1e2c3a81ff81c0a4f9c056a175068a7b"
+ integrity sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==
dependencies:
tslib "^2.6.2"
-"@smithy/util-middleware@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.1.1.tgz#e19749a127499c9bdada713a8afd807d92d846e2"
- integrity sha512-CGmZ72mL29VMfESz7S6dekqzCh8ZISj3B+w0g1hZFXaOjGTVaSqfAEFAq8EGp8fUL+Q2l8aqNmt8U1tglTikeg==
+"@smithy/util-middleware@^4.2.2", "@smithy/util-middleware@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/util-middleware/-/util-middleware-4.2.3.tgz#7c73416a6e3d3207a2d34a1eadd9f2b6a9811bd6"
+ integrity sha512-v5ObKlSe8PWUHCqEiX2fy1gNv6goiw6E5I/PN2aXg3Fb/hse0xeaAnSpXDiWl7x6LamVKq7senB+m5LOYHUAHw==
dependencies:
- "@smithy/types" "^4.5.0"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/util-retry@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.1.1.tgz#f4a99d9b0ffb9e4bb119ac5a24e54e54d891e22c"
- integrity sha512-jGeybqEZ/LIordPLMh5bnmnoIgsqnp4IEimmUp5c5voZ8yx+5kAlN5+juyr7p+f7AtZTgvhmInQk4Q0UVbrZ0Q==
+"@smithy/util-retry@^4.2.2", "@smithy/util-retry@^4.2.3":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/util-retry/-/util-retry-4.2.3.tgz#b1e5c96d96aaf971b68323ff8ba8754f914f22a0"
+ integrity sha512-lLPWnakjC0q9z+OtiXk+9RPQiYPNAovt2IXD3CP4LkOnd9NpUsxOjMx1SnoUVB7Orb7fZp67cQMtTBKMFDvOGg==
dependencies:
- "@smithy/service-error-classification" "^4.1.1"
- "@smithy/types" "^4.5.0"
+ "@smithy/service-error-classification" "^4.2.3"
+ "@smithy/types" "^4.8.0"
tslib "^2.6.2"
-"@smithy/util-stream@^4.3.1":
- version "4.3.1"
- resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.3.1.tgz#63cce0f09d99d75142c6dc8fe03e55ac0171de47"
- integrity sha512-khKkW/Jqkgh6caxMWbMuox9+YfGlsk9OnHOYCGVEdYQb/XVzcORXHLYUubHmmda0pubEDncofUrPNniS9d+uAA==
- dependencies:
- "@smithy/fetch-http-handler" "^5.2.1"
- "@smithy/node-http-handler" "^4.2.1"
- "@smithy/types" "^4.5.0"
- "@smithy/util-base64" "^4.1.0"
- "@smithy/util-buffer-from" "^4.1.0"
- "@smithy/util-hex-encoding" "^4.1.0"
- "@smithy/util-utf8" "^4.1.0"
+"@smithy/util-stream@^4.5.2", "@smithy/util-stream@^4.5.3":
+ version "4.5.3"
+ resolved "https://registry.yarnpkg.com/@smithy/util-stream/-/util-stream-4.5.3.tgz#3ddfbf70f282e371bf45dc0bdc21cb39b04b233f"
+ integrity sha512-oZvn8a5bwwQBNYHT2eNo0EU8Kkby3jeIg1P2Lu9EQtqDxki1LIjGRJM6dJ5CZUig8QmLxWxqOKWvg3mVoOBs5A==
+ dependencies:
+ "@smithy/fetch-http-handler" "^5.3.4"
+ "@smithy/node-http-handler" "^4.4.2"
+ "@smithy/types" "^4.8.0"
+ "@smithy/util-base64" "^4.3.0"
+ "@smithy/util-buffer-from" "^4.2.0"
+ "@smithy/util-hex-encoding" "^4.2.0"
+ "@smithy/util-utf8" "^4.2.0"
tslib "^2.6.2"
-"@smithy/util-uri-escape@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-uri-escape/-/util-uri-escape-4.1.0.tgz#ed4a5c498f1da07122ca1e3df4ca3e2c67c6c18a"
- integrity sha512-b0EFQkq35K5NHUYxU72JuoheM6+pytEVUGlTwiFxWFpmddA+Bpz3LgsPRIpBk8lnPE47yT7AF2Egc3jVnKLuPg==
+"@smithy/util-uri-escape@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/util-uri-escape/-/util-uri-escape-4.2.0.tgz#096a4cec537d108ac24a68a9c60bee73fc7e3a9e"
+ integrity sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==
dependencies:
tslib "^2.6.2"
@@ -1435,21 +1431,28 @@
"@smithy/util-buffer-from" "^2.2.0"
tslib "^2.6.2"
-"@smithy/util-utf8@^4.1.0":
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-4.1.0.tgz#912c33c1a06913f39daa53da79cb8f7ab740d97b"
- integrity sha512-mEu1/UIXAdNYuBcyEPbjScKi/+MQVXNIuY/7Cm5XLIWe319kDrT5SizBE95jqtmEXoDbGoZxKLCMttdZdqTZKQ==
+"@smithy/util-utf8@^4.2.0":
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/@smithy/util-utf8/-/util-utf8-4.2.0.tgz#8b19d1514f621c44a3a68151f3d43e51087fed9d"
+ integrity sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==
dependencies:
- "@smithy/util-buffer-from" "^4.1.0"
+ "@smithy/util-buffer-from" "^4.2.0"
tslib "^2.6.2"
-"@smithy/util-waiter@^4.1.1":
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-4.1.1.tgz#5b74429ca9e37f61838800b919d0063b1a865bef"
- integrity sha512-PJBmyayrlfxM7nbqjomF4YcT1sApQwZio0NHSsT0EzhJqljRmvhzqZua43TyEs80nJk2Cn2FGPg/N8phH6KeCQ==
+"@smithy/util-waiter@^4.2.2":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/@smithy/util-waiter/-/util-waiter-4.2.3.tgz#4c662009db101bc60aed07815d359e90904caef2"
+ integrity sha512-5+nU///E5sAdD7t3hs4uwvCTWQtTR8JwKwOCSJtBRx0bY1isDo1QwH87vRK86vlFLBTISqoDA2V6xvP6nF1isQ==
+ dependencies:
+ "@smithy/abort-controller" "^4.2.3"
+ "@smithy/types" "^4.8.0"
+ tslib "^2.6.2"
+
+"@smithy/uuid@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@smithy/uuid/-/uuid-1.1.0.tgz#9fd09d3f91375eab94f478858123387df1cda987"
+ integrity sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==
dependencies:
- "@smithy/abort-controller" "^4.1.1"
- "@smithy/types" "^4.5.0"
tslib "^2.6.2"
"@tootallnate/once@2":
@@ -1575,16 +1578,16 @@
form-data "^4.0.4"
"@types/node@*":
- version "24.3.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-24.3.1.tgz#b0a3fb2afed0ef98e8d7f06d46ef6349047709f3"
- integrity sha512-3vXmQDXy+woz+gnrTvuvNrPzekOi+Ds0ReMxw0LzBiK3a+1k0kQn9f2NWk+lgD4rJehFUmYy2gMhJ2ZI+7YP9g==
+ version "24.7.2"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-24.7.2.tgz#5adf66b6e2ac5cab1d10a2ad3682e359cb652f4a"
+ integrity sha512-/NbVmcGTP+lj5oa4yiYxxeBjRivKQ5Ns1eSZeB99ExsEQ6rX5XYU1Zy/gGxY/ilqtD4Etx9mKyrPxZRetiahhA==
dependencies:
- undici-types "~7.10.0"
+ undici-types "~7.14.0"
"@types/node@^18.19.70":
- version "18.19.124"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.124.tgz#6f49e4fab8274910691a900e8a14316cbf3c7a31"
- integrity sha512-hY4YWZFLs3ku6D2Gqo3RchTd9VRCcrjqp/I0mmohYeUVA5Y8eCXKJEasHxLAJVZRJuQogfd1GiJ9lgogBgKeuQ==
+ version "18.19.130"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.130.tgz#da4c6324793a79defb7a62cba3947ec5add00d59"
+ integrity sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==
dependencies:
undici-types "~5.26.4"
@@ -1615,11 +1618,6 @@
resolved "https://registry.yarnpkg.com/@types/url-join/-/url-join-4.0.1.tgz#4989c97f969464647a8586c7252d97b449cdc045"
integrity sha512-wDXw9LEEUHyV+7UWy7U315nrJGJ7p1BzaCxDpEoLr789Dk1WDVMMlf3iBfbG2F8NdWnYyFbtTxUn2ZNbm1Q4LQ==
-"@types/uuid@^9.0.1":
- version "9.0.8"
- resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-9.0.8.tgz#7545ba4fc3c003d6c756f651f3bf163d8f0f29ba"
- integrity sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==
-
"@types/yargs-parser@*":
version "21.0.3"
resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15"
@@ -1948,6 +1946,11 @@ base64-js@^1.3.1:
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+baseline-browser-mapping@^2.8.9:
+ version "2.8.16"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz#e17789673e7f4b7654f81ab2ef25e96ab6a895f9"
+ integrity sha512-OMu3BGQ4E7P1ErFsIPpbJh0qvDudM/UuJeHgkAvfWe+0HFJCXh+t/l8L6fVLR55RI/UbKrVLnAXZSVwd9ysWYw==
+
bowser@^2.11.0:
version "2.12.1"
resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.12.1.tgz#f9ad78d7aebc472feb63dd9635e3ce2337e0e2c1"
@@ -1968,14 +1971,15 @@ braces@^3.0.3:
dependencies:
fill-range "^7.1.1"
-browserslist@^4.24.0:
- version "4.25.4"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.25.4.tgz#ebdd0e1d1cf3911834bab3a6cd7b917d9babf5af"
- integrity sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==
+browserslist@^4.24.0, browserslist@^4.26.3:
+ version "4.26.3"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.3.tgz#40fbfe2d1cd420281ce5b1caa8840049c79afb56"
+ integrity sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==
dependencies:
- caniuse-lite "^1.0.30001737"
- electron-to-chromium "^1.5.211"
- node-releases "^2.0.19"
+ baseline-browser-mapping "^2.8.9"
+ caniuse-lite "^1.0.30001746"
+ electron-to-chromium "^1.5.227"
+ node-releases "^2.0.21"
update-browserslist-db "^1.1.3"
bs-logger@^0.2.6:
@@ -2036,10 +2040,10 @@ camelcase@^6.2.0:
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
-caniuse-lite@^1.0.30001737:
- version "1.0.30001741"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001741.tgz#67fb92953edc536442f3c9da74320774aa523143"
- integrity sha512-QGUGitqsc8ARjLdgAfxETDhRbJ0REsP6O3I96TAth/mVjh2cYzN2u+3AzPP3aVSm2FehEItaJw1xd+IGBXWeSw==
+caniuse-lite@^1.0.30001746:
+ version "1.0.30001750"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz#c229f82930033abd1502c6f73035356cf528bfbc"
+ integrity sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ==
chalk@^4.0.0, chalk@^4.1.0:
version "4.1.2"
@@ -2084,9 +2088,9 @@ co@^4.6.0:
integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==
collect-v8-coverage@^1.0.0:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9"
- integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz#cc1f01eb8d02298cbc9a437c74c70ab4e5210b80"
+ integrity sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==
color-convert@^2.0.1:
version "2.0.1"
@@ -2179,9 +2183,9 @@ data-urls@^3.0.2:
whatwg-url "^11.0.0"
debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1:
- version "4.4.1"
- resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.1.tgz#e5a8bc6cbc4c6cd3e64308b0693a3d4fa550189b"
- integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==
+ version "4.4.3"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a"
+ integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==
dependencies:
ms "^2.1.3"
@@ -2231,10 +2235,10 @@ dunder-proto@^1.0.1:
es-errors "^1.3.0"
gopd "^1.2.0"
-electron-to-chromium@^1.5.211:
- version "1.5.217"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.217.tgz#71285850356ef48bc08275b26f0f355721e0f17d"
- integrity sha512-Pludfu5iBxp9XzNl0qq2G87hdD17ZV7h5T4n6rQXDi3nCyloBV3jreE9+8GC6g4X/5yxqVgXEURpcLtM0WS4jA==
+electron-to-chromium@^1.5.227:
+ version "1.5.237"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz#eacf61cef3f6345d0069ab427585c5a04d7084f0"
+ integrity sha512-icUt1NvfhGLar5lSWH3tHNzablaA5js3HVHacQimfP8ViEBOQv+L7DKEuHdbTZ0SKCO1ogTJTIL1Gwk9S6Qvcg==
emittery@^0.13.1:
version "0.13.1"
@@ -2260,9 +2264,9 @@ entities@^6.0.0:
integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==
error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
- integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
+ version "1.3.4"
+ resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz#b3a8d8bb6f92eecc1629e3e27d3c8607a8a32414"
+ integrity sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==
dependencies:
is-arrayish "^0.2.1"
@@ -3216,9 +3220,9 @@ lines-and-columns@^1.1.6:
integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
loader-runner@^4.2.0:
- version "4.3.0"
- resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1"
- integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.1.tgz#6c76ed29b0ccce9af379208299f07f876de737e3"
+ integrity sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==
locate-path@^5.0.0:
version "5.0.0"
@@ -3337,10 +3341,10 @@ node-int64@^0.4.0:
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==
-node-releases@^2.0.19:
- version "2.0.20"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.20.tgz#e26bb79dbdd1e64a146df389c699014c611cbc27"
- integrity sha512-7gK6zSXEH6neM212JgfYFXe+GmZQM+fia5SsusuBIUgnPheLFBmIPhtFoAQRj8/7wASYQnbDlHPVwY0BefoFgA==
+node-releases@^2.0.21:
+ version "2.0.23"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.23.tgz#2ecf3d7ba571ece05c67c77e5b7b1b6fb9e18cea"
+ integrity sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==
normalize-path@^3.0.0:
version "3.0.0"
@@ -3600,10 +3604,10 @@ saxes@^6.0.0:
dependencies:
xmlchars "^2.2.0"
-schema-utils@^4.3.0, schema-utils@^4.3.2:
- version "4.3.2"
- resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.2.tgz#0c10878bf4a73fd2b1dfd14b9462b26788c806ae"
- integrity sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==
+schema-utils@^4.3.0, schema-utils@^4.3.3:
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.3.3.tgz#5b1850912fa31df90716963d45d9121fdfc09f46"
+ integrity sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==
dependencies:
"@types/json-schema" "^7.0.9"
ajv "^8.9.0"
@@ -3615,10 +3619,10 @@ semver@^6.3.0, semver@^6.3.1:
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
-semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.7.2:
- version "7.7.2"
- resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58"
- integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+semver@^7.3.4, semver@^7.5.3, semver@^7.5.4, semver@^7.7.3:
+ version "7.7.3"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.3.tgz#4b5f4143d007633a8dc671cd0a6ef9147b8bb946"
+ integrity sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==
serialize-javascript@^6.0.2:
version "6.0.2"
@@ -3807,10 +3811,10 @@ symbol-tree@^3.2.4:
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
-tapable@^2.1.1, tapable@^2.2.0:
- version "2.2.3"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.3.tgz#4b67b635b2d97578a06a2713d2f04800c237e99b"
- integrity sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==
+tapable@^2.2.0, tapable@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.3.0.tgz#7e3ea6d5ca31ba8e078b560f0d83ce9a14aa8be6"
+ integrity sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==
terser-webpack-plugin@^5.3.11:
version "5.3.14"
@@ -3877,9 +3881,9 @@ tr46@~0.0.3:
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
ts-jest@^29.1.2:
- version "29.4.1"
- resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.1.tgz#42d33beb74657751d315efb9a871fe99e3b9b519"
- integrity sha512-SaeUtjfpg9Uqu8IbeDKtdaS0g8lS6FT6OzM3ezrDfErPJPHNDo/Ey+VFGP1bQIDfagYDLyRpd7O15XpG1Es2Uw==
+ version "29.4.5"
+ resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.4.5.tgz#a6b0dc401e521515d5342234be87f1ca96390a6f"
+ integrity sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==
dependencies:
bs-logger "^0.2.6"
fast-json-stable-stringify "^2.1.0"
@@ -3887,7 +3891,7 @@ ts-jest@^29.1.2:
json5 "^2.2.3"
lodash.memoize "^4.1.2"
make-error "^1.3.6"
- semver "^7.7.2"
+ semver "^7.7.3"
type-fest "^4.41.0"
yargs-parser "^21.1.1"
@@ -3937,10 +3941,10 @@ undici-types@~5.26.4:
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
-undici-types@~7.10.0:
- version "7.10.0"
- resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.10.0.tgz#4ac2e058ce56b462b056e629cc6a02393d3ff350"
- integrity sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==
+undici-types@~7.14.0:
+ version "7.14.0"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.14.0.tgz#4c037b32ca4d7d62fae042174604341588bc0840"
+ integrity sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==
universalify@^0.2.0:
version "0.2.0"
@@ -3968,11 +3972,6 @@ url-parse@^1.5.3:
querystringify "^2.1.1"
requires-port "^1.0.0"
-uuid@^9.0.1:
- version "9.0.1"
- resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
- integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
-
v8-to-istanbul@^9.0.1:
version "9.3.0"
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz#b9572abfa62bd556c16d75fdebc1a411d5ff3175"
@@ -3996,7 +3995,7 @@ walker@^1.0.8:
dependencies:
makeerror "1.0.12"
-watchpack@^2.4.1:
+watchpack@^2.4.4:
version "2.4.4"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.4.tgz#473bda72f0850453da6425081ea46fc0d7602947"
integrity sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==
@@ -4020,9 +4019,9 @@ webpack-sources@^3.3.3:
integrity sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==
webpack@^5.91.0:
- version "5.101.3"
- resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.101.3.tgz#3633b2375bb29ea4b06ffb1902734d977bc44346"
- integrity sha512-7b0dTKR3Ed//AD/6kkx/o7duS8H3f1a4w3BYpIriX4BzIhjkn4teo05cptsxvLesHFKK5KObnadmCHBwGc+51A==
+ version "5.102.1"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.102.1.tgz#1003a3024741a96ba99c37431938bf61aad3d988"
+ integrity sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==
dependencies:
"@types/eslint-scope" "^3.7.7"
"@types/estree" "^1.0.8"
@@ -4032,7 +4031,7 @@ webpack@^5.91.0:
"@webassemblyjs/wasm-parser" "^1.14.1"
acorn "^8.15.0"
acorn-import-phases "^1.0.3"
- browserslist "^4.24.0"
+ browserslist "^4.26.3"
chrome-trace-event "^1.0.2"
enhanced-resolve "^5.17.3"
es-module-lexer "^1.2.1"
@@ -4044,10 +4043,10 @@ webpack@^5.91.0:
loader-runner "^4.2.0"
mime-types "^2.1.27"
neo-async "^2.6.2"
- schema-utils "^4.3.2"
- tapable "^2.1.1"
+ schema-utils "^4.3.3"
+ tapable "^2.3.0"
terser-webpack-plugin "^5.3.11"
- watchpack "^2.4.1"
+ watchpack "^2.4.4"
webpack-sources "^3.3.3"
whatwg-encoding@^2.0.0: