@nodaro/sdk 1.1.2 → 1.3.0
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/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -3
- package/dist/index.d.ts +11 -3
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -3281,6 +3281,8 @@ interface CommonInput {
|
|
|
3281
3281
|
aspectRatio?: string;
|
|
3282
3282
|
duration?: number;
|
|
3283
3283
|
llmModel?: string;
|
|
3284
|
+
/** Reasoning effort level (model-dependent). */
|
|
3285
|
+
reasoningEffort?: string;
|
|
3284
3286
|
nodeContext?: WizardNodeContext;
|
|
3285
3287
|
userPreference?: string;
|
|
3286
3288
|
/** Associates this call with a workflow execution. Read server-side before Zod. */
|
|
@@ -3402,7 +3404,10 @@ declare class VoicesResource {
|
|
|
3402
3404
|
* ElevenLabs UUID) OR a {@link VoiceChangerProVoice} object carrying per-voice
|
|
3403
3405
|
* ElevenLabs speech-to-speech settings (stability / similarityBoost / style /
|
|
3404
3406
|
* useSpeakerBoost / `seed`) plus a loudness `volumeMode` (and a manual
|
|
3405
|
-
* `volume`)
|
|
3407
|
+
* `volume`) — OR `null`, meaning keep this speaker's original voice (requires
|
|
3408
|
+
* a platform running cloud-plugins with keep-slot support). At least one
|
|
3409
|
+
* entry must be non-null. A per-voice `seed` makes that speaker's recast
|
|
3410
|
+
* reproducible.
|
|
3406
3411
|
*
|
|
3407
3412
|
* Pass `audioUrl` for audio-only recast or `videoUrl` to recast the audio
|
|
3408
3413
|
* track of a video clip (the server demuxes, recasts, and remuxes).
|
|
@@ -3469,9 +3474,12 @@ interface VoiceChangerProInput {
|
|
|
3469
3474
|
/**
|
|
3470
3475
|
* Voices in speaker-detection order. Speaker N is mapped to `orderedVoices[N]`;
|
|
3471
3476
|
* speakers beyond the array keep their original voice. Each entry is a bare
|
|
3472
|
-
* voice id OR a {@link VoiceChangerProVoice} object with per-voice settings
|
|
3477
|
+
* voice id OR a {@link VoiceChangerProVoice} object with per-voice settings —
|
|
3478
|
+
* OR `null`, meaning keep this speaker's original voice (requires a platform
|
|
3479
|
+
* running cloud-plugins with keep-slot support). At least one entry must be
|
|
3480
|
+
* non-null.
|
|
3473
3481
|
*/
|
|
3474
|
-
orderedVoices: Array<VoiceChangerProVoice>;
|
|
3482
|
+
orderedVoices: Array<VoiceChangerProVoice | null>;
|
|
3475
3483
|
/** Model to use for speech-to-speech. Defaults to the server-configured default when omitted. */
|
|
3476
3484
|
model?: string;
|
|
3477
3485
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -3281,6 +3281,8 @@ interface CommonInput {
|
|
|
3281
3281
|
aspectRatio?: string;
|
|
3282
3282
|
duration?: number;
|
|
3283
3283
|
llmModel?: string;
|
|
3284
|
+
/** Reasoning effort level (model-dependent). */
|
|
3285
|
+
reasoningEffort?: string;
|
|
3284
3286
|
nodeContext?: WizardNodeContext;
|
|
3285
3287
|
userPreference?: string;
|
|
3286
3288
|
/** Associates this call with a workflow execution. Read server-side before Zod. */
|
|
@@ -3402,7 +3404,10 @@ declare class VoicesResource {
|
|
|
3402
3404
|
* ElevenLabs UUID) OR a {@link VoiceChangerProVoice} object carrying per-voice
|
|
3403
3405
|
* ElevenLabs speech-to-speech settings (stability / similarityBoost / style /
|
|
3404
3406
|
* useSpeakerBoost / `seed`) plus a loudness `volumeMode` (and a manual
|
|
3405
|
-
* `volume`)
|
|
3407
|
+
* `volume`) — OR `null`, meaning keep this speaker's original voice (requires
|
|
3408
|
+
* a platform running cloud-plugins with keep-slot support). At least one
|
|
3409
|
+
* entry must be non-null. A per-voice `seed` makes that speaker's recast
|
|
3410
|
+
* reproducible.
|
|
3406
3411
|
*
|
|
3407
3412
|
* Pass `audioUrl` for audio-only recast or `videoUrl` to recast the audio
|
|
3408
3413
|
* track of a video clip (the server demuxes, recasts, and remuxes).
|
|
@@ -3469,9 +3474,12 @@ interface VoiceChangerProInput {
|
|
|
3469
3474
|
/**
|
|
3470
3475
|
* Voices in speaker-detection order. Speaker N is mapped to `orderedVoices[N]`;
|
|
3471
3476
|
* speakers beyond the array keep their original voice. Each entry is a bare
|
|
3472
|
-
* voice id OR a {@link VoiceChangerProVoice} object with per-voice settings
|
|
3477
|
+
* voice id OR a {@link VoiceChangerProVoice} object with per-voice settings —
|
|
3478
|
+
* OR `null`, meaning keep this speaker's original voice (requires a platform
|
|
3479
|
+
* running cloud-plugins with keep-slot support). At least one entry must be
|
|
3480
|
+
* non-null.
|
|
3473
3481
|
*/
|
|
3474
|
-
orderedVoices: Array<VoiceChangerProVoice>;
|
|
3482
|
+
orderedVoices: Array<VoiceChangerProVoice | null>;
|
|
3475
3483
|
/** Model to use for speech-to-speech. Defaults to the server-configured default when omitted. */
|
|
3476
3484
|
model?: string;
|
|
3477
3485
|
/**
|
package/dist/index.js
CHANGED
|
@@ -1522,7 +1522,10 @@ var VoicesResource = class {
|
|
|
1522
1522
|
* ElevenLabs UUID) OR a {@link VoiceChangerProVoice} object carrying per-voice
|
|
1523
1523
|
* ElevenLabs speech-to-speech settings (stability / similarityBoost / style /
|
|
1524
1524
|
* useSpeakerBoost / `seed`) plus a loudness `volumeMode` (and a manual
|
|
1525
|
-
* `volume`)
|
|
1525
|
+
* `volume`) — OR `null`, meaning keep this speaker's original voice (requires
|
|
1526
|
+
* a platform running cloud-plugins with keep-slot support). At least one
|
|
1527
|
+
* entry must be non-null. A per-voice `seed` makes that speaker's recast
|
|
1528
|
+
* reproducible.
|
|
1526
1529
|
*
|
|
1527
1530
|
* Pass `audioUrl` for audio-only recast or `videoUrl` to recast the audio
|
|
1528
1531
|
* track of a video clip (the server demuxes, recasts, and remuxes).
|