From d702e24e8b6a02956b87906f74c36e8286dfec30 Mon Sep 17 00:00:00 2001
From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com>
Date: Wed, 21 Jan 2026 11:09:56 +0000
Subject: [PATCH] SDK regeneration
---
src/api/resources/agents/client/Client.ts | 2 +-
.../client/requests/AgentsCreateAgent.ts | 2 +
.../types/AgentsCreateAgentAgentType.ts | 13 +
.../types/AgentsCreateAgentExpertsItem.ts | 2 +-
src/api/resources/agents/types/index.ts | 1 +
src/api/resources/documents/client/Client.ts | 2 +-
.../resources/transcripts/client/Client.ts | 91 ++++++-
src/api/types/AgentsCreateExpertReference.ts | 16 ++
src/api/types/AgentsCreateMcpServer.ts | 2 +
src/api/types/AgentsExpertReference.ts | 8 +-
src/api/types/AgentsMcpServer.ts | 2 +
src/api/types/DocumentsContextWithFacts.ts | 2 +-
.../types/DocumentsContextWithTranscript.ts | 2 +-
.../DocumentsCreateRequestWithTemplate.ts | 2 +-
.../DocumentsCreateRequestWithTemplateKey.ts | 4 +-
src/api/types/ErrorResponse.ts | 9 +-
src/api/types/TranscriptsResponse.ts | 4 +
src/api/types/TranscriptsStatusEnum.ts | 13 +
src/api/types/TranscriptsStatusResponse.ts | 10 +
src/api/types/index.ts | 3 +
.../client/requests/AgentsCreateAgent.ts | 3 +
.../types/AgentsCreateAgentAgentType.ts | 16 ++
.../types/AgentsCreateAgentExpertsItem.ts | 6 +-
.../resources/agents/types/index.ts | 1 +
.../types/AgentsCreateExpertReference.ts | 26 ++
.../types/AgentsCreateMcpServer.ts | 2 +
.../types/AgentsExpertReference.ts | 10 +-
src/serialization/types/AgentsMcpServer.ts | 2 +
src/serialization/types/ErrorResponse.ts | 20 +-
.../types/TranscriptsResponse.ts | 5 +
.../types/TranscriptsStatusEnum.ts | 16 ++
.../types/TranscriptsStatusResponse.ts | 21 ++
src/serialization/types/index.ts | 3 +
yarn.lock | 230 +++++++++---------
34 files changed, 402 insertions(+), 149 deletions(-)
create mode 100644 src/api/resources/agents/types/AgentsCreateAgentAgentType.ts
create mode 100644 src/api/types/AgentsCreateExpertReference.ts
create mode 100644 src/api/types/TranscriptsStatusEnum.ts
create mode 100644 src/api/types/TranscriptsStatusResponse.ts
create mode 100644 src/serialization/resources/agents/types/AgentsCreateAgentAgentType.ts
create mode 100644 src/serialization/types/AgentsCreateExpertReference.ts
create mode 100644 src/serialization/types/TranscriptsStatusEnum.ts
create mode 100644 src/serialization/types/TranscriptsStatusResponse.ts
diff --git a/src/api/resources/agents/client/Client.ts b/src/api/resources/agents/client/Client.ts
index 019adfa3..a2cc934a 100644
--- a/src/api/resources/agents/client/Client.ts
+++ b/src/api/resources/agents/client/Client.ts
@@ -928,7 +928,7 @@ export class Agents {
}
/**
- * This endpoint retrieves the experts registry, which contains information about all available experts that can be referenced when creating agents through the AgentsExpertReference schema.
+ * This endpoint retrieves the experts registry, which contains information about all available experts that can be referenced when creating agents through the AgentsCreateExpertReference schema.
*
* @param {Corti.AgentsGetRegistryExpertsRequest} request
* @param {Agents.RequestOptions} requestOptions - Request-specific configuration.
diff --git a/src/api/resources/agents/client/requests/AgentsCreateAgent.ts b/src/api/resources/agents/client/requests/AgentsCreateAgent.ts
index a8aa19e2..f723f65e 100644
--- a/src/api/resources/agents/client/requests/AgentsCreateAgent.ts
+++ b/src/api/resources/agents/client/requests/AgentsCreateAgent.ts
@@ -18,6 +18,8 @@ export interface AgentsCreateAgent {
ephemeral?: boolean | null;
/** The name of the agent. */
name: string;
+ /** Optional type of agent. */
+ agentType?: Corti.AgentsCreateAgentAgentType;
/** The system prompt that defines the overall agents behavior and expectations. This field is optional as there is a default system orchestrator. */
systemPrompt?: string;
/** A brief description of the agent's capabilities. */
diff --git a/src/api/resources/agents/types/AgentsCreateAgentAgentType.ts b/src/api/resources/agents/types/AgentsCreateAgentAgentType.ts
new file mode 100644
index 00000000..33a0c81a
--- /dev/null
+++ b/src/api/resources/agents/types/AgentsCreateAgentAgentType.ts
@@ -0,0 +1,13 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+/**
+ * Optional type of agent.
+ */
+export type AgentsCreateAgentAgentType = "expert" | "orchestrator" | "interviewing-expert";
+export const AgentsCreateAgentAgentType = {
+ Expert: "expert",
+ Orchestrator: "orchestrator",
+ InterviewingExpert: "interviewing-expert",
+} as const;
diff --git a/src/api/resources/agents/types/AgentsCreateAgentExpertsItem.ts b/src/api/resources/agents/types/AgentsCreateAgentExpertsItem.ts
index 96139a88..5e2d015a 100644
--- a/src/api/resources/agents/types/AgentsCreateAgentExpertsItem.ts
+++ b/src/api/resources/agents/types/AgentsCreateAgentExpertsItem.ts
@@ -4,4 +4,4 @@
import * as Corti from "../../../index.js";
-export type AgentsCreateAgentExpertsItem = Corti.AgentsCreateExpert | Corti.AgentsExpertReference;
+export type AgentsCreateAgentExpertsItem = Corti.AgentsCreateExpert | Corti.AgentsCreateExpertReference;
diff --git a/src/api/resources/agents/types/index.ts b/src/api/resources/agents/types/index.ts
index ef83c76b..c07005bf 100644
--- a/src/api/resources/agents/types/index.ts
+++ b/src/api/resources/agents/types/index.ts
@@ -1,2 +1,3 @@
+export * from "./AgentsCreateAgentAgentType.js";
export * from "./AgentsCreateAgentExpertsItem.js";
export * from "./AgentsMessageSendResponse.js";
diff --git a/src/api/resources/documents/client/Client.ts b/src/api/resources/documents/client/Client.ts
index b66f3091..56f35de7 100644
--- a/src/api/resources/documents/client/Client.ts
+++ b/src/api/resources/documents/client/Client.ts
@@ -163,7 +163,7 @@ export class Documents {
}
/**
- * Generate Document.
+ * This endpoint offers different ways to generate a document. Find guides to document generation [here](/textgen/documents-standard).
*
* @param {Corti.Uuid} id - The unique identifier of the interaction. Must be a valid UUID.
* @param {Corti.DocumentsCreateRequest} request
diff --git a/src/api/resources/transcripts/client/Client.ts b/src/api/resources/transcripts/client/Client.ts
index 2b40ea59..3ba8772c 100644
--- a/src/api/resources/transcripts/client/Client.ts
+++ b/src/api/resources/transcripts/client/Client.ts
@@ -178,7 +178,7 @@ export class Transcripts {
}
/**
- * Create a transcript from an audio file attached, via `/recordings` endpoint, to the interaction.
Each interaction may have more than one audio file and transcript associated with it. While audio files up to 60min in total duration, or 150MB in total size, may be attached to an interaction, synchronous processing is only supported for audio files less than ~2min in duration.
If an audio file takes longer to transcribe than the 25sec synchronous processing timeout, then it will continue to process asynchronously. In this scenario, an empty transcript will be returned with a location header that can be used to retrieve the final transcript.
The client can poll the Get Transcript endpoint (`GET /interactions/{id}/transcripts/{transcriptId}/status`) for transcript status changes:
- `200 OK` with status `processing`, `completed`, or `failed`
- `404 Not Found` if the `interactionId` or `transcriptId` are invalid
The completed transcript can be retrieved via the Get Transcript endpoint (`GET /interactions/{id}/transcripts/{transcriptId}/`).
+ * Create a transcript from an audio file attached, via `/recordings` endpoint, to the interaction.
Each interaction may have more than one audio file and transcript associated with it. While audio files up to 60min in total duration, or 150MB in total size, may be attached to an interaction, synchronous processing is only supported for audio files less than ~2min in duration.
If an audio file takes longer to transcribe than the 25sec synchronous processing timeout, then it will continue to process asynchronously. In this scenario, an incomplete or empty transcript with `status=processing` will be returned with a location header that can be used to retrieve the final transcript.
The client can poll the Get Transcript endpoint (`GET /interactions/{id}/transcripts/{transcriptId}/status`) for transcript status changes:
- `200 OK` with status `processing`, `completed`, or `failed`
- `404 Not Found` if the `interactionId` or `transcriptId` are invalid
The completed transcript can be retrieved via the Get Transcript endpoint (`GET /interactions/{id}/transcripts/{transcriptId}/`).
*
* @param {Corti.Uuid} id - The unique identifier of the interaction. Must be a valid UUID.
* @param {Corti.TranscriptsCreateRequest} request
@@ -561,6 +561,95 @@ export class Transcripts {
}
}
+ /**
+ * Poll for transcript creation status.
Status of `completed` indicates the transcript is finalized.
If the transcript is retrieved while status is `processing`, then it will be incomplete.
Status of `failed` indicate the transcript was not created successfully; please retry.
+ *
+ * @param {Corti.Uuid} id - The unique identifier of the interaction. Must be a valid UUID.
+ * @param {Corti.Uuid} transcriptId - The unique identifier of the transcript. Must be a valid UUID.
+ * @param {Transcripts.RequestOptions} requestOptions - Request-specific configuration.
+ *
+ * @throws {@link Corti.NotFoundError}
+ *
+ * @example
+ * await client.transcripts.getStatus("f47ac10b-58cc-4372-a567-0e02b2c3d479", "f47ac10b-58cc-4372-a567-0e02b2c3d479")
+ */
+ public getStatus(
+ id: Corti.Uuid,
+ transcriptId: Corti.Uuid,
+ requestOptions?: Transcripts.RequestOptions,
+ ): core.HttpResponsePromise {
+ return core.HttpResponsePromise.fromPromise(this.__getStatus(id, transcriptId, requestOptions));
+ }
+
+ private async __getStatus(
+ id: Corti.Uuid,
+ transcriptId: Corti.Uuid,
+ requestOptions?: Transcripts.RequestOptions,
+ ): Promise> {
+ const _response = await core.fetcher({
+ url: core.url.join(
+ (await core.Supplier.get(this._options.baseUrl)) ??
+ (await core.Supplier.get(this._options.environment)).base,
+ `interactions/${encodeURIComponent(serializers.Uuid.jsonOrThrow(id, { omitUndefined: true }))}/transcripts/${encodeURIComponent(serializers.Uuid.jsonOrThrow(transcriptId, { omitUndefined: true }))}/status`,
+ ),
+ method: "GET",
+ headers: mergeHeaders(
+ this._options?.headers,
+ mergeOnlyDefinedHeaders({
+ Authorization: await this._getAuthorizationHeader(),
+ "Tenant-Name": requestOptions?.tenantName,
+ }),
+ requestOptions?.headers,
+ ),
+ timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
+ maxRetries: requestOptions?.maxRetries,
+ abortSignal: requestOptions?.abortSignal,
+ });
+ if (_response.ok) {
+ return {
+ data: serializers.TranscriptsStatusResponse.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 404:
+ throw new Corti.NotFoundError(_response.error.body, _response.rawResponse);
+ default:
+ throw new errors.CortiError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.body,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
+ switch (_response.error.reason) {
+ case "non-json":
+ throw new errors.CortiError({
+ statusCode: _response.error.statusCode,
+ body: _response.error.rawBody,
+ rawResponse: _response.rawResponse,
+ });
+ case "timeout":
+ throw new errors.CortiTimeoutError(
+ "Timeout exceeded when calling GET /interactions/{id}/transcripts/{transcriptId}/status.",
+ );
+ case "unknown":
+ throw new errors.CortiError({
+ message: _response.error.errorMessage,
+ rawResponse: _response.rawResponse,
+ });
+ }
+ }
+
protected async _getAuthorizationHeader(): Promise {
const bearer = await core.Supplier.get(this._options.token);
if (bearer != null) {
diff --git a/src/api/types/AgentsCreateExpertReference.ts b/src/api/types/AgentsCreateExpertReference.ts
new file mode 100644
index 00000000..8501545d
--- /dev/null
+++ b/src/api/types/AgentsCreateExpertReference.ts
@@ -0,0 +1,16 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+/**
+ * A reference to a registry expert when creating an agent, either id or name must be provided. If both are passed, the id will be used.
+ */
+export interface AgentsCreateExpertReference {
+ type: "reference";
+ /** The unique identifier of the expert. */
+ id?: string;
+ /** The name of the expert. */
+ name?: string;
+ /** Optional. Additional system instructions appended to the default system prompt when creating an expert from the registry, extending the expert's behavior. */
+ systemPrompt?: string;
+}
diff --git a/src/api/types/AgentsCreateMcpServer.ts b/src/api/types/AgentsCreateMcpServer.ts
index c4d156d3..ccd17b1f 100644
--- a/src/api/types/AgentsCreateMcpServer.ts
+++ b/src/api/types/AgentsCreateMcpServer.ts
@@ -13,6 +13,8 @@ export interface AgentsCreateMcpServer {
transportType: Corti.AgentsCreateMcpServerTransportType;
/** Type of authorization used by the MCP server. */
authorizationType: Corti.AgentsCreateMcpServerAuthorizationType;
+ /** OAuth2.0 authorization scope to request. */
+ authorizationScope?: string;
/** URL of the MCP server. */
url: string;
/** Redirect URI for OAuth2.0 authorization. */
diff --git a/src/api/types/AgentsExpertReference.ts b/src/api/types/AgentsExpertReference.ts
index aed04725..42ea2eb9 100644
--- a/src/api/types/AgentsExpertReference.ts
+++ b/src/api/types/AgentsExpertReference.ts
@@ -3,12 +3,14 @@
*/
/**
- * A reference to an expert, either id or name must be provided. If both are passed, the id will be used.
+ * A reference to an expert returned by the API. The expert's id and name are always provided. systemPrompt is included only when a registry expert was created with a custom system prompt.
*/
export interface AgentsExpertReference {
type: "reference";
/** The unique identifier of the expert. */
- id?: string;
+ id: string;
/** The name of the expert. */
- name?: string;
+ name: string;
+ /** Optional. Additional system instructions appended to the default system prompt when creating an expert from the registry, extending the expert's behavior. */
+ systemPrompt?: string;
}
diff --git a/src/api/types/AgentsMcpServer.ts b/src/api/types/AgentsMcpServer.ts
index 26e10bb9..a0c5f7b4 100644
--- a/src/api/types/AgentsMcpServer.ts
+++ b/src/api/types/AgentsMcpServer.ts
@@ -13,6 +13,8 @@ export interface AgentsMcpServer {
transportType: Corti.AgentsMcpServerTransportType;
/** Type of authorization used by the MCP server. */
authorizationType: Corti.AgentsMcpServerAuthorizationType;
+ /** OAuth2.0 authorization scope to request. */
+ authorizationScope?: string;
/** URL of the MCP server. */
url: string;
/** Redirect URI for OAuth2.0 authorization. */
diff --git a/src/api/types/DocumentsContextWithFacts.ts b/src/api/types/DocumentsContextWithFacts.ts
index 52ef00cd..9b9a0f7e 100644
--- a/src/api/types/DocumentsContextWithFacts.ts
+++ b/src/api/types/DocumentsContextWithFacts.ts
@@ -7,6 +7,6 @@ import * as Corti from "../index.js";
export interface DocumentsContextWithFacts {
/** The type of context data that will be used in the request: `Facts`, `Transcript`, or `String`. */
type: "facts";
- /** An array of facts. */
+ /** An array of facts. See [guide](/textgen/documents-standard##generate-document-from-facts-as-input). */
data: Corti.FactsContext[];
}
diff --git a/src/api/types/DocumentsContextWithTranscript.ts b/src/api/types/DocumentsContextWithTranscript.ts
index e1a23830..4ad559db 100644
--- a/src/api/types/DocumentsContextWithTranscript.ts
+++ b/src/api/types/DocumentsContextWithTranscript.ts
@@ -7,6 +7,6 @@ import * as Corti from "../index.js";
export interface DocumentsContextWithTranscript {
/** The type of context data that will be used in the request: `Facts`, `Transcript`, or `String`. */
type: "transcript";
- /** Transcript object can accept the full transcript in one string, or individual transcript segments. */
+ /** The transcript `data.text` object can accept the full transcript in one string, alternatively pass each transcript segment into a `context` object - [see guide](/textgen/documents-standard#generate-document-from-transcript-as-input). */
data: Corti.CommonTranscriptRequest;
}
diff --git a/src/api/types/DocumentsCreateRequestWithTemplate.ts b/src/api/types/DocumentsCreateRequestWithTemplate.ts
index b52285c5..943aaa0a 100644
--- a/src/api/types/DocumentsCreateRequestWithTemplate.ts
+++ b/src/api/types/DocumentsCreateRequestWithTemplate.ts
@@ -5,7 +5,7 @@
import * as Corti from "../index.js";
export interface DocumentsCreateRequestWithTemplate {
- /** An array of context objects. Currently accepts exactly one context object to be used as input for document generation. */
+ /** An array of context objects. Currently only accepts multiple objects when of type `transcript`. See [guide](/textgen/documents-standard#generate-document-from-transcript-as-input). */
context: Corti.DocumentsContext[];
/** Template details if the template should be generated during the request. */
template: Corti.DocumentsTemplate;
diff --git a/src/api/types/DocumentsCreateRequestWithTemplateKey.ts b/src/api/types/DocumentsCreateRequestWithTemplateKey.ts
index 2a1275b3..d7a3a94a 100644
--- a/src/api/types/DocumentsCreateRequestWithTemplateKey.ts
+++ b/src/api/types/DocumentsCreateRequestWithTemplateKey.ts
@@ -5,9 +5,9 @@
import * as Corti from "../index.js";
export interface DocumentsCreateRequestWithTemplateKey {
- /** An array of context objects. Currently accepts exactly one context object to be used as input for document generation. */
+ /** An array of context objects. Currently only accepts multiple objects when of type `transcript`. See [guide](/textgen/documents-standard#generate-document-from-transcript-as-input). */
context: Corti.DocumentsContext[];
- /** The key of the template that informs on what kind of document is to be generated. */
+ /** The key of the template referencing the sections for generating a document. */
templateKey: string;
/** An optional name for the document. */
name?: string;
diff --git a/src/api/types/ErrorResponse.ts b/src/api/types/ErrorResponse.ts
index 6de73fe9..7733d0a5 100644
--- a/src/api/types/ErrorResponse.ts
+++ b/src/api/types/ErrorResponse.ts
@@ -3,10 +3,9 @@
*/
export interface ErrorResponse {
- requestid?: string;
+ requestid: string;
+ status: number;
type: string;
- status?: number;
- title?: string;
- details?: string;
- instance?: string;
+ detail: string;
+ validationErrors?: Record[];
}
diff --git a/src/api/types/TranscriptsResponse.ts b/src/api/types/TranscriptsResponse.ts
index 785d32b8..968063d3 100644
--- a/src/api/types/TranscriptsResponse.ts
+++ b/src/api/types/TranscriptsResponse.ts
@@ -12,4 +12,8 @@ export interface TranscriptsResponse {
/** An array of transcripts. */
transcripts?: Corti.CommonTranscriptResponse[] | null;
usageInfo: Corti.CommonUsageInfo;
+ /** The unique identifier for the associated recording. */
+ recordingId: Corti.Uuid;
+ /** The current status of the transcript processing. */
+ status: Corti.TranscriptsStatusEnum;
}
diff --git a/src/api/types/TranscriptsStatusEnum.ts b/src/api/types/TranscriptsStatusEnum.ts
new file mode 100644
index 00000000..b6249578
--- /dev/null
+++ b/src/api/types/TranscriptsStatusEnum.ts
@@ -0,0 +1,13 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+/**
+ * Possible values for transcript processing status.
+ */
+export type TranscriptsStatusEnum = "completed" | "processing" | "failed";
+export const TranscriptsStatusEnum = {
+ Completed: "completed",
+ Processing: "processing",
+ Failed: "failed",
+} as const;
diff --git a/src/api/types/TranscriptsStatusResponse.ts b/src/api/types/TranscriptsStatusResponse.ts
new file mode 100644
index 00000000..84c982a3
--- /dev/null
+++ b/src/api/types/TranscriptsStatusResponse.ts
@@ -0,0 +1,10 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as Corti from "../index.js";
+
+export interface TranscriptsStatusResponse {
+ /** The current status of the transcript processing. */
+ status: Corti.TranscriptsStatusEnum;
+}
diff --git a/src/api/types/index.ts b/src/api/types/index.ts
index 84ea2a05..7dfa93b9 100644
--- a/src/api/types/index.ts
+++ b/src/api/types/index.ts
@@ -49,6 +49,8 @@ export * from "./TranscriptsResponse.js";
export * from "./TranscriptsListResponse.js";
export * from "./TranscriptsListItem.js";
export * from "./TranscriptsData.js";
+export * from "./TranscriptsStatusResponse.js";
+export * from "./TranscriptsStatusEnum.js";
export * from "./TemplatesSection.js";
export * from "./CommonSortingDirectionEnum.js";
export * from "./TemplatesDocumentationModeEnum.js";
@@ -143,6 +145,7 @@ export * from "./AgentsAgentExpertsItem.js";
export * from "./AgentsAgent.js";
export * from "./AgentsAgentReference.js";
export * from "./AgentsCreateExpert.js";
+export * from "./AgentsCreateExpertReference.js";
export * from "./AgentsExpert.js";
export * from "./AgentsExpertReference.js";
export * from "./AgentsAgentResponse.js";
diff --git a/src/serialization/resources/agents/client/requests/AgentsCreateAgent.ts b/src/serialization/resources/agents/client/requests/AgentsCreateAgent.ts
index 624c9e7e..e3bbcf31 100644
--- a/src/serialization/resources/agents/client/requests/AgentsCreateAgent.ts
+++ b/src/serialization/resources/agents/client/requests/AgentsCreateAgent.ts
@@ -5,6 +5,7 @@
import * as serializers from "../../../../index.js";
import * as Corti from "../../../../../api/index.js";
import * as core from "../../../../../core/index.js";
+import { AgentsCreateAgentAgentType } from "../../types/AgentsCreateAgentAgentType.js";
import { AgentsCreateAgentExpertsItem } from "../../types/AgentsCreateAgentExpertsItem.js";
export const AgentsCreateAgent: core.serialization.Schema<
@@ -12,6 +13,7 @@ export const AgentsCreateAgent: core.serialization.Schema<
Omit
> = core.serialization.object({
name: core.serialization.string(),
+ agentType: AgentsCreateAgentAgentType.optional(),
systemPrompt: core.serialization.string().optional(),
description: core.serialization.string(),
experts: core.serialization.list(AgentsCreateAgentExpertsItem).optional(),
@@ -20,6 +22,7 @@ export const AgentsCreateAgent: core.serialization.Schema<
export declare namespace AgentsCreateAgent {
export interface Raw {
name: string;
+ agentType?: AgentsCreateAgentAgentType.Raw | null;
systemPrompt?: string | null;
description: string;
experts?: AgentsCreateAgentExpertsItem.Raw[] | null;
diff --git a/src/serialization/resources/agents/types/AgentsCreateAgentAgentType.ts b/src/serialization/resources/agents/types/AgentsCreateAgentAgentType.ts
new file mode 100644
index 00000000..8417470d
--- /dev/null
+++ b/src/serialization/resources/agents/types/AgentsCreateAgentAgentType.ts
@@ -0,0 +1,16 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as serializers from "../../../index.js";
+import * as Corti from "../../../../api/index.js";
+import * as core from "../../../../core/index.js";
+
+export const AgentsCreateAgentAgentType: core.serialization.Schema<
+ serializers.AgentsCreateAgentAgentType.Raw,
+ Corti.AgentsCreateAgentAgentType
+> = core.serialization.enum_(["expert", "orchestrator", "interviewing-expert"]);
+
+export declare namespace AgentsCreateAgentAgentType {
+ export type Raw = "expert" | "orchestrator" | "interviewing-expert";
+}
diff --git a/src/serialization/resources/agents/types/AgentsCreateAgentExpertsItem.ts b/src/serialization/resources/agents/types/AgentsCreateAgentExpertsItem.ts
index 7c095759..b425cb04 100644
--- a/src/serialization/resources/agents/types/AgentsCreateAgentExpertsItem.ts
+++ b/src/serialization/resources/agents/types/AgentsCreateAgentExpertsItem.ts
@@ -6,13 +6,13 @@ import * as serializers from "../../../index.js";
import * as Corti from "../../../../api/index.js";
import * as core from "../../../../core/index.js";
import { AgentsCreateExpert } from "../../../types/AgentsCreateExpert.js";
-import { AgentsExpertReference } from "../../../types/AgentsExpertReference.js";
+import { AgentsCreateExpertReference } from "../../../types/AgentsCreateExpertReference.js";
export const AgentsCreateAgentExpertsItem: core.serialization.Schema<
serializers.AgentsCreateAgentExpertsItem.Raw,
Corti.AgentsCreateAgentExpertsItem
-> = core.serialization.undiscriminatedUnion([AgentsCreateExpert, AgentsExpertReference]);
+> = core.serialization.undiscriminatedUnion([AgentsCreateExpert, AgentsCreateExpertReference]);
export declare namespace AgentsCreateAgentExpertsItem {
- export type Raw = AgentsCreateExpert.Raw | AgentsExpertReference.Raw;
+ export type Raw = AgentsCreateExpert.Raw | AgentsCreateExpertReference.Raw;
}
diff --git a/src/serialization/resources/agents/types/index.ts b/src/serialization/resources/agents/types/index.ts
index ef83c76b..c07005bf 100644
--- a/src/serialization/resources/agents/types/index.ts
+++ b/src/serialization/resources/agents/types/index.ts
@@ -1,2 +1,3 @@
+export * from "./AgentsCreateAgentAgentType.js";
export * from "./AgentsCreateAgentExpertsItem.js";
export * from "./AgentsMessageSendResponse.js";
diff --git a/src/serialization/types/AgentsCreateExpertReference.ts b/src/serialization/types/AgentsCreateExpertReference.ts
new file mode 100644
index 00000000..8aef1637
--- /dev/null
+++ b/src/serialization/types/AgentsCreateExpertReference.ts
@@ -0,0 +1,26 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as serializers from "../index.js";
+import * as Corti from "../../api/index.js";
+import * as core from "../../core/index.js";
+
+export const AgentsCreateExpertReference: core.serialization.ObjectSchema<
+ serializers.AgentsCreateExpertReference.Raw,
+ Corti.AgentsCreateExpertReference
+> = core.serialization.object({
+ type: core.serialization.stringLiteral("reference"),
+ id: core.serialization.string().optional(),
+ name: core.serialization.string().optional(),
+ systemPrompt: core.serialization.string().optional(),
+});
+
+export declare namespace AgentsCreateExpertReference {
+ export interface Raw {
+ type: "reference";
+ id?: string | null;
+ name?: string | null;
+ systemPrompt?: string | null;
+ }
+}
diff --git a/src/serialization/types/AgentsCreateMcpServer.ts b/src/serialization/types/AgentsCreateMcpServer.ts
index 2d1eb68b..70106275 100644
--- a/src/serialization/types/AgentsCreateMcpServer.ts
+++ b/src/serialization/types/AgentsCreateMcpServer.ts
@@ -16,6 +16,7 @@ export const AgentsCreateMcpServer: core.serialization.ObjectSchema<
description: core.serialization.string().optional(),
transportType: AgentsCreateMcpServerTransportType,
authorizationType: AgentsCreateMcpServerAuthorizationType,
+ authorizationScope: core.serialization.string().optional(),
url: core.serialization.string(),
redirectUrl: core.serialization.string().optional(),
token: core.serialization.string().optional(),
@@ -27,6 +28,7 @@ export declare namespace AgentsCreateMcpServer {
description?: string | null;
transportType: AgentsCreateMcpServerTransportType.Raw;
authorizationType: AgentsCreateMcpServerAuthorizationType.Raw;
+ authorizationScope?: string | null;
url: string;
redirectUrl?: string | null;
token?: string | null;
diff --git a/src/serialization/types/AgentsExpertReference.ts b/src/serialization/types/AgentsExpertReference.ts
index 2381570a..983cc6e0 100644
--- a/src/serialization/types/AgentsExpertReference.ts
+++ b/src/serialization/types/AgentsExpertReference.ts
@@ -11,14 +11,16 @@ export const AgentsExpertReference: core.serialization.ObjectSchema<
Corti.AgentsExpertReference
> = core.serialization.object({
type: core.serialization.stringLiteral("reference"),
- id: core.serialization.string().optional(),
- name: core.serialization.string().optional(),
+ id: core.serialization.string(),
+ name: core.serialization.string(),
+ systemPrompt: core.serialization.string().optional(),
});
export declare namespace AgentsExpertReference {
export interface Raw {
type: "reference";
- id?: string | null;
- name?: string | null;
+ id: string;
+ name: string;
+ systemPrompt?: string | null;
}
}
diff --git a/src/serialization/types/AgentsMcpServer.ts b/src/serialization/types/AgentsMcpServer.ts
index 87c641a8..7f85a4a4 100644
--- a/src/serialization/types/AgentsMcpServer.ts
+++ b/src/serialization/types/AgentsMcpServer.ts
@@ -14,6 +14,7 @@ export const AgentsMcpServer: core.serialization.ObjectSchema =
core.serialization.object({
- requestid: core.serialization.string().optional(),
+ requestid: core.serialization.string(),
+ status: core.serialization.number(),
type: core.serialization.string(),
- status: core.serialization.number().optional(),
- title: core.serialization.string().optional(),
- details: core.serialization.string().optional(),
- instance: core.serialization.string().optional(),
+ detail: core.serialization.string(),
+ validationErrors: core.serialization
+ .list(core.serialization.record(core.serialization.string(), core.serialization.string()))
+ .optional(),
});
export declare namespace ErrorResponse {
export interface Raw {
- requestid?: string | null;
+ requestid: string;
+ status: number;
type: string;
- status?: number | null;
- title?: string | null;
- details?: string | null;
- instance?: string | null;
+ detail: string;
+ validationErrors?: Record[] | null;
}
}
diff --git a/src/serialization/types/TranscriptsResponse.ts b/src/serialization/types/TranscriptsResponse.ts
index 77f1c7cc..1ff66348 100644
--- a/src/serialization/types/TranscriptsResponse.ts
+++ b/src/serialization/types/TranscriptsResponse.ts
@@ -9,6 +9,7 @@ import { Uuid } from "./Uuid.js";
import { TranscriptsMetadata } from "./TranscriptsMetadata.js";
import { CommonTranscriptResponse } from "./CommonTranscriptResponse.js";
import { CommonUsageInfo } from "./CommonUsageInfo.js";
+import { TranscriptsStatusEnum } from "./TranscriptsStatusEnum.js";
export const TranscriptsResponse: core.serialization.ObjectSchema<
serializers.TranscriptsResponse.Raw,
@@ -18,6 +19,8 @@ export const TranscriptsResponse: core.serialization.ObjectSchema<
metadata: TranscriptsMetadata,
transcripts: core.serialization.list(CommonTranscriptResponse).optionalNullable(),
usageInfo: CommonUsageInfo,
+ recordingId: Uuid,
+ status: TranscriptsStatusEnum,
});
export declare namespace TranscriptsResponse {
@@ -26,5 +29,7 @@ export declare namespace TranscriptsResponse {
metadata: TranscriptsMetadata.Raw;
transcripts?: (CommonTranscriptResponse.Raw[] | null) | null;
usageInfo: CommonUsageInfo.Raw;
+ recordingId: Uuid.Raw;
+ status: TranscriptsStatusEnum.Raw;
}
}
diff --git a/src/serialization/types/TranscriptsStatusEnum.ts b/src/serialization/types/TranscriptsStatusEnum.ts
new file mode 100644
index 00000000..e269f08d
--- /dev/null
+++ b/src/serialization/types/TranscriptsStatusEnum.ts
@@ -0,0 +1,16 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as serializers from "../index.js";
+import * as Corti from "../../api/index.js";
+import * as core from "../../core/index.js";
+
+export const TranscriptsStatusEnum: core.serialization.Schema<
+ serializers.TranscriptsStatusEnum.Raw,
+ Corti.TranscriptsStatusEnum
+> = core.serialization.enum_(["completed", "processing", "failed"]);
+
+export declare namespace TranscriptsStatusEnum {
+ export type Raw = "completed" | "processing" | "failed";
+}
diff --git a/src/serialization/types/TranscriptsStatusResponse.ts b/src/serialization/types/TranscriptsStatusResponse.ts
new file mode 100644
index 00000000..4e775690
--- /dev/null
+++ b/src/serialization/types/TranscriptsStatusResponse.ts
@@ -0,0 +1,21 @@
+/**
+ * This file was auto-generated by Fern from our API Definition.
+ */
+
+import * as serializers from "../index.js";
+import * as Corti from "../../api/index.js";
+import * as core from "../../core/index.js";
+import { TranscriptsStatusEnum } from "./TranscriptsStatusEnum.js";
+
+export const TranscriptsStatusResponse: core.serialization.ObjectSchema<
+ serializers.TranscriptsStatusResponse.Raw,
+ Corti.TranscriptsStatusResponse
+> = core.serialization.object({
+ status: TranscriptsStatusEnum,
+});
+
+export declare namespace TranscriptsStatusResponse {
+ export interface Raw {
+ status: TranscriptsStatusEnum.Raw;
+ }
+}
diff --git a/src/serialization/types/index.ts b/src/serialization/types/index.ts
index 84ea2a05..7dfa93b9 100644
--- a/src/serialization/types/index.ts
+++ b/src/serialization/types/index.ts
@@ -49,6 +49,8 @@ export * from "./TranscriptsResponse.js";
export * from "./TranscriptsListResponse.js";
export * from "./TranscriptsListItem.js";
export * from "./TranscriptsData.js";
+export * from "./TranscriptsStatusResponse.js";
+export * from "./TranscriptsStatusEnum.js";
export * from "./TemplatesSection.js";
export * from "./CommonSortingDirectionEnum.js";
export * from "./TemplatesDocumentationModeEnum.js";
@@ -143,6 +145,7 @@ export * from "./AgentsAgentExpertsItem.js";
export * from "./AgentsAgent.js";
export * from "./AgentsAgentReference.js";
export * from "./AgentsCreateExpert.js";
+export * from "./AgentsCreateExpertReference.js";
export * from "./AgentsExpert.js";
export * from "./AgentsExpertReference.js";
export * from "./AgentsAgentResponse.js";
diff --git a/yarn.lock b/yarn.lock
index 6487f717..8cd405df 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,34 +2,34 @@
# yarn lockfile v1
-"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
- integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
+"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.28.6.tgz#72499312ec58b1e2245ba4a4f550c132be4982f7"
+ integrity sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==
dependencies:
- "@babel/helper-validator-identifier" "^7.27.1"
+ "@babel/helper-validator-identifier" "^7.28.5"
js-tokens "^4.0.0"
picocolors "^1.1.1"
-"@babel/compat-data@^7.27.2":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.5.tgz#a8a4962e1567121ac0b3b487f52107443b455c7f"
- integrity sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==
+"@babel/compat-data@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.28.6.tgz#103f466803fa0f059e82ccac271475470570d74c"
+ integrity sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==
"@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.5.tgz#4c81b35e51e1b734f510c99b07dfbc7bbbb48f7e"
- integrity sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==
- dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/generator" "^7.28.5"
- "@babel/helper-compilation-targets" "^7.27.2"
- "@babel/helper-module-transforms" "^7.28.3"
- "@babel/helpers" "^7.28.4"
- "@babel/parser" "^7.28.5"
- "@babel/template" "^7.27.2"
- "@babel/traverse" "^7.28.5"
- "@babel/types" "^7.28.5"
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.28.6.tgz#531bf883a1126e53501ba46eb3bb414047af507f"
+ integrity sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==
+ dependencies:
+ "@babel/code-frame" "^7.28.6"
+ "@babel/generator" "^7.28.6"
+ "@babel/helper-compilation-targets" "^7.28.6"
+ "@babel/helper-module-transforms" "^7.28.6"
+ "@babel/helpers" "^7.28.6"
+ "@babel/parser" "^7.28.6"
+ "@babel/template" "^7.28.6"
+ "@babel/traverse" "^7.28.6"
+ "@babel/types" "^7.28.6"
"@jridgewell/remapping" "^2.3.5"
convert-source-map "^2.0.0"
debug "^4.1.0"
@@ -37,23 +37,23 @@
json5 "^2.2.3"
semver "^6.3.1"
-"@babel/generator@^7.28.5", "@babel/generator@^7.7.2":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.5.tgz#712722d5e50f44d07bc7ac9fe84438742dd61298"
- integrity sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==
+"@babel/generator@^7.28.6", "@babel/generator@^7.7.2":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.28.6.tgz#48dcc65d98fcc8626a48f72b62e263d25fc3c3f1"
+ integrity sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==
dependencies:
- "@babel/parser" "^7.28.5"
- "@babel/types" "^7.28.5"
+ "@babel/parser" "^7.28.6"
+ "@babel/types" "^7.28.6"
"@jridgewell/gen-mapping" "^0.3.12"
"@jridgewell/trace-mapping" "^0.3.28"
jsesc "^3.0.2"
-"@babel/helper-compilation-targets@^7.27.2":
- version "7.27.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz#46a0f6efab808d51d29ce96858dd10ce8732733d"
- integrity sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==
+"@babel/helper-compilation-targets@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz#32c4a3f41f12ed1532179b108a4d746e105c2b25"
+ integrity sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==
dependencies:
- "@babel/compat-data" "^7.27.2"
+ "@babel/compat-data" "^7.28.6"
"@babel/helper-validator-option" "^7.27.1"
browserslist "^4.24.0"
lru-cache "^5.1.1"
@@ -64,34 +64,34 @@
resolved "https://registry.yarnpkg.com/@babel/helper-globals/-/helper-globals-7.28.0.tgz#b9430df2aa4e17bc28665eadeae8aa1d985e6674"
integrity sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==
-"@babel/helper-module-imports@^7.27.1":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz#7ef769a323e2655e126673bb6d2d6913bbead204"
- integrity sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==
+"@babel/helper-module-imports@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz#60632cbd6ffb70b22823187201116762a03e2d5c"
+ integrity sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==
dependencies:
- "@babel/traverse" "^7.27.1"
- "@babel/types" "^7.27.1"
+ "@babel/traverse" "^7.28.6"
+ "@babel/types" "^7.28.6"
-"@babel/helper-module-transforms@^7.28.3":
- version "7.28.3"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz#a2b37d3da3b2344fe085dab234426f2b9a2fa5f6"
- integrity sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==
+"@babel/helper-module-transforms@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz#9312d9d9e56edc35aeb6e95c25d4106b50b9eb1e"
+ integrity sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==
dependencies:
- "@babel/helper-module-imports" "^7.27.1"
- "@babel/helper-validator-identifier" "^7.27.1"
- "@babel/traverse" "^7.28.3"
+ "@babel/helper-module-imports" "^7.28.6"
+ "@babel/helper-validator-identifier" "^7.28.5"
+ "@babel/traverse" "^7.28.6"
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.27.1", "@babel/helper-plugin-utils@^7.8.0":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz#ddb2f876534ff8013e6c2b299bf4d39b3c51d44c"
- integrity sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==
+"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.28.6", "@babel/helper-plugin-utils@^7.8.0":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz#6f13ea251b68c8532e985fd532f28741a8af9ac8"
+ integrity sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==
"@babel/helper-string-parser@^7.27.1":
version "7.27.1"
resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz#54da796097ab19ce67ed9f88b47bb2ec49367687"
integrity sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==
-"@babel/helper-validator-identifier@^7.27.1", "@babel/helper-validator-identifier@^7.28.5":
+"@babel/helper-validator-identifier@^7.28.5":
version "7.28.5"
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz#010b6938fab7cb7df74aa2bbc06aa503b8fe5fb4"
integrity sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==
@@ -101,20 +101,20 @@
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz#fa52f5b1e7db1ab049445b421c4471303897702f"
integrity sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==
-"@babel/helpers@^7.28.4":
- version "7.28.4"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.4.tgz#fe07274742e95bdf7cf1443593eeb8926ab63827"
- integrity sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==
+"@babel/helpers@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.28.6.tgz#fca903a313ae675617936e8998b814c415cbf5d7"
+ integrity sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==
dependencies:
- "@babel/template" "^7.27.2"
- "@babel/types" "^7.28.4"
+ "@babel/template" "^7.28.6"
+ "@babel/types" "^7.28.6"
-"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.27.2", "@babel/parser@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.5.tgz#0b0225ee90362f030efd644e8034c99468893b08"
- integrity sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==
+"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.28.6.tgz#f01a8885b7fa1e56dd8a155130226cd698ef13fd"
+ integrity sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==
dependencies:
- "@babel/types" "^7.28.5"
+ "@babel/types" "^7.28.6"
"@babel/plugin-syntax-async-generators@^7.8.4":
version "7.8.4"
@@ -145,11 +145,11 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-import-attributes@^7.24.7":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.27.1.tgz#34c017d54496f9b11b61474e7ea3dfd5563ffe07"
- integrity sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz#b71d5914665f60124e133696f17cd7669062c503"
+ integrity sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-syntax-import-meta@^7.10.4":
version "7.10.4"
@@ -166,11 +166,11 @@
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-jsx@^7.7.2":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.27.1.tgz#2f9beb5eff30fa507c5532d107daac7b888fa34c"
- integrity sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz#f8ca28bbd84883b5fea0e447c635b81ba73997ee"
+ integrity sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
version "7.10.4"
@@ -229,38 +229,38 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
- version "7.27.1"
- resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.27.1.tgz#5147d29066a793450f220c63fa3a9431b7e6dd18"
- integrity sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz#c7b2ddf1d0a811145b1de800d1abd146af92e3a2"
+ integrity sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==
dependencies:
- "@babel/helper-plugin-utils" "^7.27.1"
+ "@babel/helper-plugin-utils" "^7.28.6"
-"@babel/template@^7.27.2", "@babel/template@^7.3.3":
- version "7.27.2"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.27.2.tgz#fa78ceed3c4e7b63ebf6cb39e5852fca45f6809d"
- integrity sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==
+"@babel/template@^7.28.6", "@babel/template@^7.3.3":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.28.6.tgz#0e7e56ecedb78aeef66ce7972b082fce76a23e57"
+ integrity sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==
dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/parser" "^7.27.2"
- "@babel/types" "^7.27.1"
+ "@babel/code-frame" "^7.28.6"
+ "@babel/parser" "^7.28.6"
+ "@babel/types" "^7.28.6"
-"@babel/traverse@^7.27.1", "@babel/traverse@^7.28.3", "@babel/traverse@^7.28.5":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.5.tgz#450cab9135d21a7a2ca9d2d35aa05c20e68c360b"
- integrity sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==
+"@babel/traverse@^7.28.6":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.28.6.tgz#871ddc79a80599a5030c53b1cc48cbe3a5583c2e"
+ integrity sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==
dependencies:
- "@babel/code-frame" "^7.27.1"
- "@babel/generator" "^7.28.5"
+ "@babel/code-frame" "^7.28.6"
+ "@babel/generator" "^7.28.6"
"@babel/helper-globals" "^7.28.0"
- "@babel/parser" "^7.28.5"
- "@babel/template" "^7.27.2"
- "@babel/types" "^7.28.5"
+ "@babel/parser" "^7.28.6"
+ "@babel/template" "^7.28.6"
+ "@babel/types" "^7.28.6"
debug "^4.3.1"
-"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.27.1", "@babel/types@^7.28.2", "@babel/types@^7.28.4", "@babel/types@^7.28.5", "@babel/types@^7.3.3":
- version "7.28.5"
- resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.5.tgz#10fc405f60897c35f07e85493c932c7b5ca0592b"
- integrity sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==
+"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.28.2", "@babel/types@^7.28.6", "@babel/types@^7.3.3":
+ version "7.28.6"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.28.6.tgz#c3e9377f1b155005bcc4c46020e7e394e13089df"
+ integrity sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==
dependencies:
"@babel/helper-string-parser" "^7.27.1"
"@babel/helper-validator-identifier" "^7.28.5"
@@ -719,9 +719,9 @@
integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==
"@types/node@*":
- version "25.0.6"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.6.tgz#5ca3c46f2b256b59128f433426e42d464765dab1"
- integrity sha512-NNu0sjyNxpoiW3YuVFfNz7mxSQ+S4X2G28uqg2s+CzoqoQjLPsWSbsFFyztIAqt2vb8kfEAsJNepMGPTxFDx3Q==
+ version "25.0.9"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-25.0.9.tgz#81ce3579ddf67cae812a9d49c8a0ab90c82e7782"
+ integrity sha512-/rpCXHlCWeqClNBwUhDcusJxXYDjZTyE8v5oTO7WbL8eij2nKhUeU89/6xgjU7N4/Vh3He0BtyhJdQbDyhiXAw==
dependencies:
undici-types "~7.16.0"
@@ -1071,9 +1071,9 @@ balanced-match@^1.0.0:
integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
baseline-browser-mapping@^2.9.0:
- version "2.9.14"
- resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.9.14.tgz#3b6af0bc032445bca04de58caa9a87cfe921cbb3"
- integrity sha512-B0xUquLkiGLgHhpPBqvl7GWegWBUNuujQ6kXd/r1U38ElPT6Ok8KZ8e+FpUGEc2ZoRQUzq/aUnaKFc/svWUGSg==
+ version "2.9.16"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.9.16.tgz#da1e893fd13aa6e8b6349b64b06399a0644c14b5"
+ integrity sha512-KeUZdBuxngy825i8xvzaK1Ncnkx0tBmb3k8DkEuqjKRkmtvNTjey2ZsNeh8Dw4lfKvbCOu9oeNx2TKm2vHqcRw==
brace-expansion@^1.1.7:
version "1.1.12"
@@ -1144,9 +1144,9 @@ camelcase@^6.2.0:
integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
caniuse-lite@^1.0.30001759:
- version "1.0.30001764"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001764.tgz#03206c56469f236103b90f9ae10bcb8b9e1f6005"
- integrity sha512-9JGuzl2M+vPL+pz70gtMF9sHdMFbY9FJaQBi186cHKH3pSzDvzoUJUPV6fqiKIMyXbud9ZLg4F3Yza1vJ1+93g==
+ version "1.0.30001765"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001765.tgz#4a78d8a797fd4124ebaab2043df942eb091648ee"
+ integrity sha512-LWcNtSyZrakjECqmpP4qdg0MMGdN368D7X8XvvAqOcqMv0RxnlqVKZl2V6/mBR68oYMxOZPLw/gO7DuisMHUvQ==
chalk@^4.0.0, chalk@^4.1.0:
version "4.1.2"
@@ -2578,9 +2578,9 @@ pkg-dir@^4.2.0:
find-up "^4.0.0"
prettier@^3.4.2:
- version "3.7.4"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.7.4.tgz#d2f8335d4b1cec47e1c8098645411b0c9dff9c0f"
- integrity sha512-v6UNi1+3hSlVvv8fSaoUbggEM5VErKmmpGA7Pl3HF8V6uKY7rvClBOJlH6yNwQtfTueNkGVpOv/mtWL9L4bgRA==
+ version "3.8.0"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.8.0.tgz#f72cf71505133f40cfa2ef77a2668cdc558fcd69"
+ integrity sha512-yEPsovQfpxYfgWNhCfECjG5AQaO+K3dp6XERmOepyPDVqcJm+bjyCVO3pmU+nAPe0N5dDvekfGezt/EIiRe1TA==
pretty-format@^29.0.0, pretty-format@^29.7.0:
version "29.7.0"
@@ -2888,9 +2888,9 @@ terser-webpack-plugin@^5.3.16:
terser "^5.31.1"
terser@^5.31.1:
- version "5.44.1"
- resolved "https://registry.yarnpkg.com/terser/-/terser-5.44.1.tgz#e391e92175c299b8c284ad6ded609e37303b0a9c"
- integrity sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==
+ version "5.46.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.46.0.tgz#1b81e560d584bbdd74a8ede87b4d9477b0ff9695"
+ integrity sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==
dependencies:
"@jridgewell/source-map" "^0.3.3"
acorn "^8.15.0"
@@ -2996,9 +2996,9 @@ type-fest@^4.41.0:
integrity sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==
type-fest@^5.2.0:
- version "5.3.1"
- resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-5.3.1.tgz#251b8d0a813c1dbccf1f9450ba5adcdf7072adc2"
- integrity sha512-VCn+LMHbd4t6sF3wfU/+HKT63C9OoyrSIf4b+vtWHpt2U7/4InZG467YDNMFMR70DdHjAdpPWmw2lzRdg0Xqqg==
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-5.4.1.tgz#aa9eaadcdc0acb0b5bd52e54f966ee3e38e125d2"
+ integrity sha512-xygQcmneDyzsEuKZrFbRMne5HDqMs++aFzefrJTgEIKjQ3rekM+RPfFCVq2Gp1VIDqddoYeppCj4Pcb+RZW0GQ==
dependencies:
tagged-tag "^1.0.0"
@@ -3072,9 +3072,9 @@ walker@^1.0.8:
makeerror "1.0.12"
watchpack@^2.4.4:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.5.0.tgz#fa115d5ccaa4bf3aa594f586257c0bc4768939fd"
- integrity sha512-e6vZvY6xboSwLz2GD36c16+O/2Z6fKvIf4pOXptw2rY9MVwE/TXc6RGqxD3I3x0a28lwBY7DE+76uTPSsBrrCA==
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.5.1.tgz#dd38b601f669e0cbf567cb802e75cead82cde102"
+ integrity sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==
dependencies:
glob-to-regexp "^0.4.1"
graceful-fs "^4.1.2"