@elevenlabs/elevenlabs-js 2.53.0 → 2.53.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BaseClient.js +2 -2
- package/api/types/DynamicVariablesConfigInput.d.ts +1 -1
- package/api/types/DynamicVariablesConfigOutput.d.ts +1 -1
- package/api/types/DynamicVariablesConfigWorkflowOverrideInput.d.ts +1 -1
- package/api/types/DynamicVariablesConfigWorkflowOverrideOutput.d.ts +1 -1
- package/dist/BaseClient.js +2 -2
- package/dist/api/types/DynamicVariablesConfigInput.d.ts +1 -1
- package/dist/api/types/DynamicVariablesConfigOutput.d.ts +1 -1
- package/dist/api/types/DynamicVariablesConfigWorkflowOverrideInput.d.ts +1 -1
- package/dist/api/types/DynamicVariablesConfigWorkflowOverrideOutput.d.ts +1 -1
- package/dist/serialization/types/DynamicVariablesConfigInput.d.ts +1 -1
- package/dist/serialization/types/DynamicVariablesConfigInput.js +1 -1
- package/dist/serialization/types/DynamicVariablesConfigOutput.d.ts +1 -1
- package/dist/serialization/types/DynamicVariablesConfigOutput.js +1 -1
- package/dist/serialization/types/DynamicVariablesConfigWorkflowOverrideInput.d.ts +1 -1
- package/dist/serialization/types/DynamicVariablesConfigWorkflowOverrideInput.js +1 -1
- package/dist/serialization/types/DynamicVariablesConfigWorkflowOverrideOutput.d.ts +1 -1
- package/dist/serialization/types/DynamicVariablesConfigWorkflowOverrideOutput.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
- package/serialization/types/DynamicVariablesConfigInput.d.ts +1 -1
- package/serialization/types/DynamicVariablesConfigInput.js +1 -1
- package/serialization/types/DynamicVariablesConfigOutput.d.ts +1 -1
- package/serialization/types/DynamicVariablesConfigOutput.js +1 -1
- package/serialization/types/DynamicVariablesConfigWorkflowOverrideInput.d.ts +1 -1
- package/serialization/types/DynamicVariablesConfigWorkflowOverrideInput.js +1 -1
- package/serialization/types/DynamicVariablesConfigWorkflowOverrideOutput.d.ts +1 -1
- package/serialization/types/DynamicVariablesConfigWorkflowOverrideOutput.js +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/BaseClient.js
CHANGED
|
@@ -41,8 +41,8 @@ function normalizeClientOptions(options) {
|
|
|
41
41
|
const headers = (0, headers_1.mergeHeaders)({
|
|
42
42
|
"X-Fern-Language": "JavaScript",
|
|
43
43
|
"X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js",
|
|
44
|
-
"X-Fern-SDK-Version": "2.53.
|
|
45
|
-
"User-Agent": "@elevenlabs/elevenlabs-js/2.53.
|
|
44
|
+
"X-Fern-SDK-Version": "2.53.1",
|
|
45
|
+
"User-Agent": "@elevenlabs/elevenlabs-js/2.53.1",
|
|
46
46
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
47
47
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
48
48
|
"xi-api-key": options === null || options === void 0 ? void 0 : options.apiKey,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigInput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput | undefined>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigOutput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput | undefined>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigWorkflowOverrideInput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput | undefined>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigWorkflowOverrideOutput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput | undefined>;
|
|
5
5
|
}
|
package/dist/BaseClient.js
CHANGED
|
@@ -41,8 +41,8 @@ function normalizeClientOptions(options) {
|
|
|
41
41
|
const headers = (0, headers_1.mergeHeaders)({
|
|
42
42
|
"X-Fern-Language": "JavaScript",
|
|
43
43
|
"X-Fern-SDK-Name": "@elevenlabs/elevenlabs-js",
|
|
44
|
-
"X-Fern-SDK-Version": "2.53.
|
|
45
|
-
"User-Agent": "@elevenlabs/elevenlabs-js/2.53.
|
|
44
|
+
"X-Fern-SDK-Version": "2.53.1",
|
|
45
|
+
"User-Agent": "@elevenlabs/elevenlabs-js/2.53.1",
|
|
46
46
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
47
47
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
48
48
|
"xi-api-key": options === null || options === void 0 ? void 0 : options.apiKey,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigInput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput | undefined>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigOutput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput | undefined>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigWorkflowOverrideInput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeInput | undefined>;
|
|
5
5
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type * as ElevenLabs from "../index";
|
|
2
2
|
export interface DynamicVariablesConfigWorkflowOverrideOutput {
|
|
3
3
|
/** A dictionary of dynamic variable placeholders and their values */
|
|
4
|
-
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput>;
|
|
4
|
+
dynamicVariablePlaceholders?: Record<string, ElevenLabs.DynamicVariableValueTypeOutput | undefined>;
|
|
5
5
|
}
|
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeInput } from "./DynamicVariableValueTypeInput";
|
|
|
5
5
|
export declare const DynamicVariablesConfigInput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigInput.Raw, ElevenLabs.DynamicVariablesConfigInput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigInput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigInput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeInput_1 = require("./DynamicVariableValueTypeInput");
|
|
40
40
|
exports.DynamicVariablesConfigInput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput.optional()).optional()),
|
|
42
42
|
});
|
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeOutput } from "./DynamicVariableValueTypeOutput
|
|
|
5
5
|
export declare const DynamicVariablesConfigOutput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigOutput.Raw, ElevenLabs.DynamicVariablesConfigOutput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigOutput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigOutput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeOutput_1 = require("./DynamicVariableValueTypeOutput");
|
|
40
40
|
exports.DynamicVariablesConfigOutput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput.optional()).optional()),
|
|
42
42
|
});
|
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeInput } from "./DynamicVariableValueTypeInput";
|
|
|
5
5
|
export declare const DynamicVariablesConfigWorkflowOverrideInput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigWorkflowOverrideInput.Raw, ElevenLabs.DynamicVariablesConfigWorkflowOverrideInput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigWorkflowOverrideInput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigWorkflowOverrideInput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeInput_1 = require("./DynamicVariableValueTypeInput");
|
|
40
40
|
exports.DynamicVariablesConfigWorkflowOverrideInput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput.optional()).optional()),
|
|
42
42
|
});
|
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeOutput } from "./DynamicVariableValueTypeOutput
|
|
|
5
5
|
export declare const DynamicVariablesConfigWorkflowOverrideOutput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigWorkflowOverrideOutput.Raw, ElevenLabs.DynamicVariablesConfigWorkflowOverrideOutput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigWorkflowOverrideOutput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigWorkflowOverrideOutput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeOutput_1 = require("./DynamicVariableValueTypeOutput");
|
|
40
40
|
exports.DynamicVariablesConfigWorkflowOverrideOutput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput.optional()).optional()),
|
|
42
42
|
});
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.53.
|
|
1
|
+
export declare const SDK_VERSION = "2.53.1";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeInput } from "./DynamicVariableValueTypeInput";
|
|
|
5
5
|
export declare const DynamicVariablesConfigInput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigInput.Raw, ElevenLabs.DynamicVariablesConfigInput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigInput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigInput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeInput_1 = require("./DynamicVariableValueTypeInput");
|
|
40
40
|
exports.DynamicVariablesConfigInput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput.optional()).optional()),
|
|
42
42
|
});
|
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeOutput } from "./DynamicVariableValueTypeOutput
|
|
|
5
5
|
export declare const DynamicVariablesConfigOutput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigOutput.Raw, ElevenLabs.DynamicVariablesConfigOutput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigOutput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigOutput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeOutput_1 = require("./DynamicVariableValueTypeOutput");
|
|
40
40
|
exports.DynamicVariablesConfigOutput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput.optional()).optional()),
|
|
42
42
|
});
|
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeInput } from "./DynamicVariableValueTypeInput";
|
|
|
5
5
|
export declare const DynamicVariablesConfigWorkflowOverrideInput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigWorkflowOverrideInput.Raw, ElevenLabs.DynamicVariablesConfigWorkflowOverrideInput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigWorkflowOverrideInput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeInput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigWorkflowOverrideInput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeInput_1 = require("./DynamicVariableValueTypeInput");
|
|
40
40
|
exports.DynamicVariablesConfigWorkflowOverrideInput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeInput_1.DynamicVariableValueTypeInput.optional()).optional()),
|
|
42
42
|
});
|
|
@@ -5,6 +5,6 @@ import { DynamicVariableValueTypeOutput } from "./DynamicVariableValueTypeOutput
|
|
|
5
5
|
export declare const DynamicVariablesConfigWorkflowOverrideOutput: core.serialization.ObjectSchema<serializers.DynamicVariablesConfigWorkflowOverrideOutput.Raw, ElevenLabs.DynamicVariablesConfigWorkflowOverrideOutput>;
|
|
6
6
|
export declare namespace DynamicVariablesConfigWorkflowOverrideOutput {
|
|
7
7
|
interface Raw {
|
|
8
|
-
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null> | null;
|
|
8
|
+
dynamic_variable_placeholders?: Record<string, DynamicVariableValueTypeOutput.Raw | null | undefined> | null;
|
|
9
9
|
}
|
|
10
10
|
}
|
|
@@ -38,5 +38,5 @@ exports.DynamicVariablesConfigWorkflowOverrideOutput = void 0;
|
|
|
38
38
|
const core = __importStar(require("../../core"));
|
|
39
39
|
const DynamicVariableValueTypeOutput_1 = require("./DynamicVariableValueTypeOutput");
|
|
40
40
|
exports.DynamicVariablesConfigWorkflowOverrideOutput = core.serialization.object({
|
|
41
|
-
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput).optional()),
|
|
41
|
+
dynamicVariablePlaceholders: core.serialization.property("dynamic_variable_placeholders", core.serialization.record(core.serialization.string(), DynamicVariableValueTypeOutput_1.DynamicVariableValueTypeOutput.optional()).optional()),
|
|
42
42
|
});
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "2.53.
|
|
1
|
+
export declare const SDK_VERSION = "2.53.1";
|
package/version.js
CHANGED