From 95d38036baaad35282a9083b3e755bf852ebc371 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:38:20 +0300 Subject: [PATCH] SDK regeneration (#62) Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com> --- package.json | 2 +- src/Client.ts | 7 + .../resources/audioIsolation/client/Client.ts | 184 ++++++++++++++++++ .../resources/audioIsolation/client/index.ts | 1 + ...olationStreamV1AudioIsolationStreamPost.ts | 15 ++ .../BodyAudioIsolationV1AudioIsolationPost.ts | 15 ++ .../audioIsolation/client/requests/index.ts | 2 + src/api/resources/audioIsolation/index.ts | 1 + .../resources/audioNative/client/Client.ts | 2 +- src/api/resources/chapters/client/Client.ts | 12 +- src/api/resources/dubbing/client/Client.ts | 10 +- src/api/resources/history/client/Client.ts | 10 +- src/api/resources/index.ts | 2 + src/api/resources/models/client/Client.ts | 2 +- src/api/resources/projects/client/Client.ts | 20 +- .../pronunciationDictionary/client/Client.ts | 12 +- src/api/resources/samples/client/Client.ts | 4 +- .../resources/speechToSpeech/client/Client.ts | 4 +- .../textToSoundEffects/client/Client.ts | 2 +- .../resources/textToSpeech/client/Client.ts | 8 +- src/api/resources/user/client/Client.ts | 4 +- .../voiceGeneration/client/Client.ts | 6 +- src/api/resources/voices/client/Client.ts | 22 +-- src/api/resources/workspace/client/Client.ts | 6 +- src/api/types/AudioIsolationResponseModel.ts | 10 + src/api/types/AudioResponseModel.ts | 8 + src/api/types/index.ts | 2 + yarn.lock | 66 +++---- 28 files changed, 343 insertions(+), 96 deletions(-) create mode 100644 src/api/resources/audioIsolation/client/Client.ts create mode 100644 src/api/resources/audioIsolation/client/index.ts create mode 100644 src/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.ts create mode 100644 src/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.ts create mode 100644 src/api/resources/audioIsolation/client/requests/index.ts create mode 100644 src/api/resources/audioIsolation/index.ts create mode 100644 src/api/types/AudioIsolationResponseModel.ts create mode 100644 src/api/types/AudioResponseModel.ts diff --git a/package.json b/package.json index 163eed0..957a1b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "elevenlabs", - "version": "0.8.2", + "version": "0.9.0", "private": false, "repository": "https://github.com/elevenlabs/elevenlabs-js", "license": "MIT", diff --git a/src/Client.ts b/src/Client.ts index 02c0aff..fa42234 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -6,6 +6,7 @@ import * as environments from "./environments"; import * as core from "./core"; import { History } from "./api/resources/history/client/Client"; import { TextToSoundEffects } from "./api/resources/textToSoundEffects/client/Client"; +import { AudioIsolation } from "./api/resources/audioIsolation/client/Client"; import { Samples } from "./api/resources/samples/client/Client"; import { TextToSpeech } from "./api/resources/textToSpeech/client/Client"; import { SpeechToSpeech } from "./api/resources/speechToSpeech/client/Client"; @@ -53,6 +54,12 @@ export class ElevenLabsClient { return (this._textToSoundEffects ??= new TextToSoundEffects(this._options)); } + protected _audioIsolation: AudioIsolation | undefined; + + public get audioIsolation(): AudioIsolation { + return (this._audioIsolation ??= new AudioIsolation(this._options)); + } + protected _samples: Samples | undefined; public get samples(): Samples { diff --git a/src/api/resources/audioIsolation/client/Client.ts b/src/api/resources/audioIsolation/client/Client.ts new file mode 100644 index 0000000..009888e --- /dev/null +++ b/src/api/resources/audioIsolation/client/Client.ts @@ -0,0 +1,184 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as environments from "../../../../environments"; +import * as core from "../../../../core"; +import * as ElevenLabs from "../../../index"; +import * as fs from "fs"; +import urlJoin from "url-join"; +import * as errors from "../../../../errors/index"; + +export declare namespace AudioIsolation { + interface Options { + environment?: core.Supplier; + apiKey?: core.Supplier; + } + + 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 xi-api-key header */ + apiKey?: string | undefined; + } +} + +export class AudioIsolation { + constructor(protected readonly _options: AudioIsolation.Options = {}) {} + + /** + * Removes background noise from audio + * + * @param {ElevenLabs.BodyAudioIsolationV1AudioIsolationPost} request + * @param {AudioIsolation.RequestOptions} requestOptions - Request-specific configuration. + * + * @throws {@link ElevenLabs.UnprocessableEntityError} + * + * @example + * await client.audioIsolation.audioIsolation({ + * audio: fs.createReadStream("/path/to/your/file") + * }) + */ + public async audioIsolation( + request: ElevenLabs.BodyAudioIsolationV1AudioIsolationPost, + requestOptions?: AudioIsolation.RequestOptions + ): Promise { + const _request = new core.FormDataWrapper(); + await _request.append("audio", request.audio); + const _maybeEncodedRequest = _request.getRequest(); + const _response = await core.fetcher({ + url: urlJoin( + (await core.Supplier.get(this._options.environment)) ?? environments.ElevenLabsEnvironment.Production, + "v1/audio-isolation" + ), + method: "POST", + headers: { + "xi-api-key": + (await core.Supplier.get(this._options.apiKey)) != null + ? await core.Supplier.get(this._options.apiKey) + : undefined, + "X-Fern-Language": "JavaScript", + "X-Fern-SDK-Name": "elevenlabs", + "X-Fern-SDK-Version": "0.9.0", + "X-Fern-Runtime": core.RUNTIME.type, + "X-Fern-Runtime-Version": core.RUNTIME.version, + ...(await _maybeEncodedRequest.getHeaders()), + }, + body: await _maybeEncodedRequest.getBody(), + timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, + maxRetries: requestOptions?.maxRetries, + abortSignal: requestOptions?.abortSignal, + }); + if (_response.ok) { + return _response.body as ElevenLabs.AudioIsolationResponseModel; + } + + if (_response.error.reason === "status-code") { + switch (_response.error.statusCode) { + case 422: + throw new ElevenLabs.UnprocessableEntityError( + _response.error.body as ElevenLabs.HttpValidationError + ); + default: + throw new errors.ElevenLabsError({ + statusCode: _response.error.statusCode, + body: _response.error.body, + }); + } + } + + switch (_response.error.reason) { + case "non-json": + throw new errors.ElevenLabsError({ + statusCode: _response.error.statusCode, + body: _response.error.rawBody, + }); + case "timeout": + throw new errors.ElevenLabsTimeoutError(); + case "unknown": + throw new errors.ElevenLabsError({ + message: _response.error.errorMessage, + }); + } + } + + /** + * Removes background noise from audio and streams the result + * + * @param {ElevenLabs.BodyAudioIsolationStreamV1AudioIsolationStreamPost} request + * @param {AudioIsolation.RequestOptions} requestOptions - Request-specific configuration. + * + * @throws {@link ElevenLabs.UnprocessableEntityError} + * + * @example + * await client.audioIsolation.audioIsolationStream({ + * audio: fs.createReadStream("/path/to/your/file") + * }) + */ + public async audioIsolationStream( + request: ElevenLabs.BodyAudioIsolationStreamV1AudioIsolationStreamPost, + requestOptions?: AudioIsolation.RequestOptions + ): Promise { + const _request = new core.FormDataWrapper(); + await _request.append("audio", request.audio); + const _maybeEncodedRequest = _request.getRequest(); + const _response = await core.fetcher({ + url: urlJoin( + (await core.Supplier.get(this._options.environment)) ?? environments.ElevenLabsEnvironment.Production, + "v1/audio-isolation/stream" + ), + method: "POST", + headers: { + "xi-api-key": + (await core.Supplier.get(this._options.apiKey)) != null + ? await core.Supplier.get(this._options.apiKey) + : undefined, + "X-Fern-Language": "JavaScript", + "X-Fern-SDK-Name": "elevenlabs", + "X-Fern-SDK-Version": "0.9.0", + "X-Fern-Runtime": core.RUNTIME.type, + "X-Fern-Runtime-Version": core.RUNTIME.version, + ...(await _maybeEncodedRequest.getHeaders()), + }, + body: await _maybeEncodedRequest.getBody(), + timeoutMs: requestOptions?.timeoutInSeconds != null ? requestOptions.timeoutInSeconds * 1000 : 60000, + maxRetries: requestOptions?.maxRetries, + abortSignal: requestOptions?.abortSignal, + }); + if (_response.ok) { + return; + } + + if (_response.error.reason === "status-code") { + switch (_response.error.statusCode) { + case 422: + throw new ElevenLabs.UnprocessableEntityError( + _response.error.body as ElevenLabs.HttpValidationError + ); + default: + throw new errors.ElevenLabsError({ + statusCode: _response.error.statusCode, + body: _response.error.body, + }); + } + } + + switch (_response.error.reason) { + case "non-json": + throw new errors.ElevenLabsError({ + statusCode: _response.error.statusCode, + body: _response.error.rawBody, + }); + case "timeout": + throw new errors.ElevenLabsTimeoutError(); + case "unknown": + throw new errors.ElevenLabsError({ + message: _response.error.errorMessage, + }); + } + } +} diff --git a/src/api/resources/audioIsolation/client/index.ts b/src/api/resources/audioIsolation/client/index.ts new file mode 100644 index 0000000..415726b --- /dev/null +++ b/src/api/resources/audioIsolation/client/index.ts @@ -0,0 +1 @@ +export * from "./requests"; diff --git a/src/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.ts b/src/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.ts new file mode 100644 index 0000000..abe9f43 --- /dev/null +++ b/src/api/resources/audioIsolation/client/requests/BodyAudioIsolationStreamV1AudioIsolationStreamPost.ts @@ -0,0 +1,15 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as fs from "fs"; + +/** + * @example + * { + * audio: fs.createReadStream("/path/to/your/file") + * } + */ +export interface BodyAudioIsolationStreamV1AudioIsolationStreamPost { + audio: File | fs.ReadStream; +} diff --git a/src/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.ts b/src/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.ts new file mode 100644 index 0000000..4a1ac0a --- /dev/null +++ b/src/api/resources/audioIsolation/client/requests/BodyAudioIsolationV1AudioIsolationPost.ts @@ -0,0 +1,15 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as fs from "fs"; + +/** + * @example + * { + * audio: fs.createReadStream("/path/to/your/file") + * } + */ +export interface BodyAudioIsolationV1AudioIsolationPost { + audio: File | fs.ReadStream; +} diff --git a/src/api/resources/audioIsolation/client/requests/index.ts b/src/api/resources/audioIsolation/client/requests/index.ts new file mode 100644 index 0000000..5ae7423 --- /dev/null +++ b/src/api/resources/audioIsolation/client/requests/index.ts @@ -0,0 +1,2 @@ +export { type BodyAudioIsolationV1AudioIsolationPost } from "./BodyAudioIsolationV1AudioIsolationPost"; +export { type BodyAudioIsolationStreamV1AudioIsolationStreamPost } from "./BodyAudioIsolationStreamV1AudioIsolationStreamPost"; diff --git a/src/api/resources/audioIsolation/index.ts b/src/api/resources/audioIsolation/index.ts new file mode 100644 index 0000000..5ec7692 --- /dev/null +++ b/src/api/resources/audioIsolation/index.ts @@ -0,0 +1 @@ +export * from "./client"; diff --git a/src/api/resources/audioNative/client/Client.ts b/src/api/resources/audioNative/client/Client.ts index 944989b..b6b6713 100644 --- a/src/api/resources/audioNative/client/Client.ts +++ b/src/api/resources/audioNative/client/Client.ts @@ -106,7 +106,7 @@ export class AudioNative { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), diff --git a/src/api/resources/chapters/client/Client.ts b/src/api/resources/chapters/client/Client.ts index 67a8038..62ab130 100644 --- a/src/api/resources/chapters/client/Client.ts +++ b/src/api/resources/chapters/client/Client.ts @@ -57,7 +57,7 @@ export class Chapters { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -129,7 +129,7 @@ export class Chapters { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -201,7 +201,7 @@ export class Chapters { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -273,7 +273,7 @@ export class Chapters { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -345,7 +345,7 @@ export class Chapters { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -423,7 +423,7 @@ export class Chapters { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/dubbing/client/Client.ts b/src/api/resources/dubbing/client/Client.ts index d77988c..dc2cc24 100644 --- a/src/api/resources/dubbing/client/Client.ts +++ b/src/api/resources/dubbing/client/Client.ts @@ -119,7 +119,7 @@ export class Dubbing { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), @@ -190,7 +190,7 @@ export class Dubbing { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -257,7 +257,7 @@ export class Dubbing { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -321,7 +321,7 @@ export class Dubbing { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -402,7 +402,7 @@ export class Dubbing { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/history/client/Client.ts b/src/api/resources/history/client/Client.ts index f5cd832..6d0a658 100644 --- a/src/api/resources/history/client/Client.ts +++ b/src/api/resources/history/client/Client.ts @@ -79,7 +79,7 @@ export class History { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -150,7 +150,7 @@ export class History { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -217,7 +217,7 @@ export class History { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -277,7 +277,7 @@ export class History { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -350,7 +350,7 @@ export class History { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/index.ts b/src/api/resources/index.ts index f0ee01c..bf20ed1 100644 --- a/src/api/resources/index.ts +++ b/src/api/resources/index.ts @@ -8,6 +8,7 @@ export * as workspace from "./workspace"; export * from "./workspace/types"; export * as history from "./history"; export * as textToSoundEffects from "./textToSoundEffects"; +export * as audioIsolation from "./audioIsolation"; export * as samples from "./samples"; export * as speechToSpeech from "./speechToSpeech"; export * as voiceGeneration from "./voiceGeneration"; @@ -19,6 +20,7 @@ export * as models from "./models"; export * as audioNative from "./audioNative"; export * from "./history/client/requests"; export * from "./textToSoundEffects/client/requests"; +export * from "./audioIsolation/client/requests"; export * from "./textToSpeech/client/requests"; export * from "./speechToSpeech/client/requests"; export * from "./voiceGeneration/client/requests"; diff --git a/src/api/resources/models/client/Client.ts b/src/api/resources/models/client/Client.ts index e36b30d..421096b 100644 --- a/src/api/resources/models/client/Client.ts +++ b/src/api/resources/models/client/Client.ts @@ -56,7 +56,7 @@ export class Models { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/projects/client/Client.ts b/src/api/resources/projects/client/Client.ts index fef0d3f..f7be6f3 100644 --- a/src/api/resources/projects/client/Client.ts +++ b/src/api/resources/projects/client/Client.ts @@ -57,7 +57,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -180,7 +180,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), @@ -251,7 +251,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -327,7 +327,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -395,7 +395,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -462,7 +462,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -532,7 +532,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -597,7 +597,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -673,7 +673,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -750,7 +750,7 @@ export class Projects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/pronunciationDictionary/client/Client.ts b/src/api/resources/pronunciationDictionary/client/Client.ts index 98df87f..047a0d6 100644 --- a/src/api/resources/pronunciationDictionary/client/Client.ts +++ b/src/api/resources/pronunciationDictionary/client/Client.ts @@ -74,7 +74,7 @@ export class PronunciationDictionary { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), @@ -149,7 +149,7 @@ export class PronunciationDictionary { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -224,7 +224,7 @@ export class PronunciationDictionary { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -299,7 +299,7 @@ export class PronunciationDictionary { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -370,7 +370,7 @@ export class PronunciationDictionary { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -452,7 +452,7 @@ export class PronunciationDictionary { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/samples/client/Client.ts b/src/api/resources/samples/client/Client.ts index 84bddcc..2820103 100644 --- a/src/api/resources/samples/client/Client.ts +++ b/src/api/resources/samples/client/Client.ts @@ -59,7 +59,7 @@ export class Samples { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -123,7 +123,7 @@ export class Samples { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/speechToSpeech/client/Client.ts b/src/api/resources/speechToSpeech/client/Client.ts index 6f0f3cf..5b44fd6 100644 --- a/src/api/resources/speechToSpeech/client/Client.ts +++ b/src/api/resources/speechToSpeech/client/Client.ts @@ -80,7 +80,7 @@ export class SpeechToSpeech { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), @@ -175,7 +175,7 @@ export class SpeechToSpeech { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), diff --git a/src/api/resources/textToSoundEffects/client/Client.ts b/src/api/resources/textToSoundEffects/client/Client.ts index 74cc1a6..f9a9b38 100644 --- a/src/api/resources/textToSoundEffects/client/Client.ts +++ b/src/api/resources/textToSoundEffects/client/Client.ts @@ -51,7 +51,7 @@ export class TextToSoundEffects { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/textToSpeech/client/Client.ts b/src/api/resources/textToSpeech/client/Client.ts index f3f1e12..32849cc 100644 --- a/src/api/resources/textToSpeech/client/Client.ts +++ b/src/api/resources/textToSpeech/client/Client.ts @@ -71,7 +71,7 @@ export class TextToSpeech { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -167,7 +167,7 @@ export class TextToSpeech { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -252,7 +252,7 @@ export class TextToSpeech { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -348,7 +348,7 @@ export class TextToSpeech { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/user/client/Client.ts b/src/api/resources/user/client/Client.ts index 2057a2f..bca3e3b 100644 --- a/src/api/resources/user/client/Client.ts +++ b/src/api/resources/user/client/Client.ts @@ -53,7 +53,7 @@ export class User { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -119,7 +119,7 @@ export class User { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/voiceGeneration/client/Client.ts b/src/api/resources/voiceGeneration/client/Client.ts index c15671e..d3f42bd 100644 --- a/src/api/resources/voiceGeneration/client/Client.ts +++ b/src/api/resources/voiceGeneration/client/Client.ts @@ -54,7 +54,7 @@ export class VoiceGeneration { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -110,7 +110,7 @@ export class VoiceGeneration { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -186,7 +186,7 @@ export class VoiceGeneration { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/voices/client/Client.ts b/src/api/resources/voices/client/Client.ts index 306e56e..7572223 100644 --- a/src/api/resources/voices/client/Client.ts +++ b/src/api/resources/voices/client/Client.ts @@ -57,7 +57,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -121,7 +121,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -184,7 +184,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -262,7 +262,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -330,7 +330,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -406,7 +406,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -495,7 +495,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), @@ -587,7 +587,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, ...(await _maybeEncodedRequest.getHeaders()), @@ -664,7 +664,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -820,7 +820,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -891,7 +891,7 @@ export class Voices { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/resources/workspace/client/Client.ts b/src/api/resources/workspace/client/Client.ts index 78e3d89..2054b53 100644 --- a/src/api/resources/workspace/client/Client.ts +++ b/src/api/resources/workspace/client/Client.ts @@ -59,7 +59,7 @@ export class Workspace { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -132,7 +132,7 @@ export class Workspace { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, @@ -205,7 +205,7 @@ export class Workspace { : undefined, "X-Fern-Language": "JavaScript", "X-Fern-SDK-Name": "elevenlabs", - "X-Fern-SDK-Version": "0.8.2", + "X-Fern-SDK-Version": "0.9.0", "X-Fern-Runtime": core.RUNTIME.type, "X-Fern-Runtime-Version": core.RUNTIME.version, }, diff --git a/src/api/types/AudioIsolationResponseModel.ts b/src/api/types/AudioIsolationResponseModel.ts new file mode 100644 index 0000000..d3516c7 --- /dev/null +++ b/src/api/types/AudioIsolationResponseModel.ts @@ -0,0 +1,10 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +import * as ElevenLabs from "../index"; + +export interface AudioIsolationResponseModel { + audio: ElevenLabs.AudioResponseModel; + waveform_base_64: string; +} diff --git a/src/api/types/AudioResponseModel.ts b/src/api/types/AudioResponseModel.ts new file mode 100644 index 0000000..e9f5d22 --- /dev/null +++ b/src/api/types/AudioResponseModel.ts @@ -0,0 +1,8 @@ +/** + * This file was auto-generated by Fern from our API Definition. + */ + +export interface AudioResponseModel { + audio_isolation_id: string; + created_at_unix: number; +} diff --git a/src/api/types/index.ts b/src/api/types/index.ts index f8145dd..47e0637 100644 --- a/src/api/types/index.ts +++ b/src/api/types/index.ts @@ -2,7 +2,9 @@ export * from "./AddProjectResponseModel"; export * from "./AddPronunciationDictionaryResponseModel"; export * from "./AddPronunciationDictionaryRulesResponseModel"; export * from "./AddVoiceResponseModel"; +export * from "./AudioIsolationResponseModel"; export * from "./AudioNativeCreateProjectResponseModel"; +export * from "./AudioResponseModel"; export * from "./ChapterState"; export * from "./ChapterResponse"; export * from "./ChapterSnapshotResponse"; diff --git a/yarn.lock b/yarn.lock index ac244d0..6bff6e1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -529,9 +529,9 @@ integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": - version "1.4.15" - resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" - integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + version "1.5.0" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" + integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" @@ -655,9 +655,9 @@ form-data "^4.0.0" "@types/node@*": - version "20.14.9" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.9.tgz#12e8e765ab27f8c421a1820c99f5f313a933b420" - integrity sha512-06OCtnTXtWOZBJlRApleWndH4JsRVs1pDCc8dLSQp+7PpUpX3ePdHyeNSFTeSe7FtKyQkrlPvHwJOW3SLd8Oyg== + version "20.14.10" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.10.tgz#a1a218290f1b6428682e3af044785e5874db469a" + integrity sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ== dependencies: undici-types "~5.26.4" @@ -719,9 +719,9 @@ acorn-walk@^8.0.2: acorn "^8.11.0" acorn@^8.1.0, acorn@^8.11.0, acorn@^8.8.1: - version "8.12.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.0.tgz#1627bfa2e058148036133b8d9b51a700663c294c" - integrity sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw== + version "8.12.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" + integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== agent-base@6: version "6.0.2" @@ -862,14 +862,14 @@ braces@^3.0.3: fill-range "^7.1.1" browserslist@^4.22.2: - version "4.23.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.1.tgz#ce4af0534b3d37db5c1a4ca98b9080f985041e96" - integrity sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw== + version "4.23.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.2.tgz#244fe803641f1c19c28c48c4b6ec9736eb3d32ed" + integrity sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA== dependencies: - caniuse-lite "^1.0.30001629" - electron-to-chromium "^1.4.796" + caniuse-lite "^1.0.30001640" + electron-to-chromium "^1.4.820" node-releases "^2.0.14" - update-browserslist-db "^1.0.16" + update-browserslist-db "^1.1.0" bs-logger@0.x: version "0.2.6" @@ -916,10 +916,10 @@ camelcase@^6.2.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== -caniuse-lite@^1.0.30001629: - version "1.0.30001639" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001639.tgz#972b3a6adeacdd8f46af5fc7f771e9639f6c1521" - integrity sha512-eFHflNTBIlFwP2AIKaYuBQN/apnUoKNhBdza8ZnW/h2di4LCZ4xFqYlxUxo+LQ76KFI1PGcC1QDxMbxTZpSCAg== +caniuse-lite@^1.0.30001640: + version "1.0.30001641" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001641.tgz#3572862cd18befae3f637f2a1101cc033c6782ac" + integrity sha512-Phv5thgl67bHYo1TtMY/MurjkHhV4EDaCosezRXgZ8jzA/Ub+wjxAvbGvjoFENStinwi5kCyOYV3mi5tOGykwA== chalk@^2.4.2: version "2.4.2" @@ -1119,10 +1119,10 @@ domexception@^4.0.0: dependencies: webidl-conversions "^7.0.0" -electron-to-chromium@^1.4.796: - version "1.4.815" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.815.tgz#e901b195c57c3e0fae8dc6d596e4188a33c3e82c" - integrity sha512-OvpTT2ItpOXJL7IGcYakRjHCt8L5GrrN/wHCQsRB4PQa1X9fe+X9oen245mIId7s14xvArCGSTIq644yPUKKLg== +electron-to-chromium@^1.4.820: + version "1.4.823" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.823.tgz#38587f7aa55bed14930f04091dfc65c39a3d8bd7" + integrity sha512-4h+oPeAiGQOHFyUJOqpoEcPj/xxlicxBzOErVeYVMMmAiXUXsGpsFd0QXBMaUUbnD8hhSfLf9uw+MlsoIA7j5w== emittery@^0.13.1: version "0.13.1" @@ -2522,9 +2522,9 @@ tr46@~0.0.3: integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== ts-jest@^29.1.1: - version "29.1.5" - resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.5.tgz#d6c0471cc78bffa2cb4664a0a6741ef36cfe8f69" - integrity sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg== + version "29.2.0" + resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.2.0.tgz#e1a0e624d8dbed4303debf0d8e063b4403d15c40" + integrity sha512-eFmkE9MG0+oT6nqSOcUwL+2UUmK2IvhhUV8hFDsCHnc++v2WCCbQQZh5vvjsa8sgOY/g9T0325hmkEmi6rninA== dependencies: bs-logger "0.x" fast-json-stable-stringify "2.x" @@ -2560,10 +2560,10 @@ universalify@^0.2.0: resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== -update-browserslist-db@^1.0.16: - version "1.0.16" - resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz#f6d489ed90fb2f07d67784eb3f53d7891f736356" - integrity sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ== +update-browserslist-db@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" + integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== dependencies: escalade "^3.1.2" picocolors "^1.0.1" @@ -2672,9 +2672,9 @@ write-file-atomic@^4.0.2: signal-exit "^3.0.7" ws@^8.11.0: - version "8.17.1" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.17.1.tgz#9293da530bb548febc95371d90f9c878727d919b" - integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ== + version "8.18.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.0.tgz#0d7505a6eafe2b0e712d232b42279f53bc289bbc" + integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw== xml-name-validator@^4.0.0: version "4.0.0"