pipe function is now present on ReadableStream by @fern-api in https://github.com/elevenlabs/elevenlabs-js/pull/73Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.12.0...v0.13.0
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.11.0...v0.12.0
legacy voices by @fern-api in https://github.com/elevenlabs/elevenlabs-js/pull/68Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.10.0...v0.11.0
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.9.1...v0.10.0
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.9.0...v0.9.1
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.8.2...v0.9.0
FormData is sent with the correct headers in node environments by @fern-api in https://github.com/elevenlabs/elevenlabs-js/pull/58Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.8.1...v0.8.2
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.8.0...v0.8.1
stream and play are compatible with edge runtime by @fern-api in https://github.com/elevenlabs/elevenlabs-js/pull/52Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.7.0...v0.8.0
node:stream by @fern-api in https://github.com/elevenlabs/elevenlabs-js/pull/49Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.6.0...v0.7.0
(feat, break): wrap file properties inside an object by @fern-api in https://github.com/elevenlabs/elevenlabs-js/pull/41
Before:
await elevenLabs.audioNative.create(fs.createReadStream("/path/to/your/file"), {
name: "name"
});
After:
await elevenLabs.audioNative.create({
file: fs.createReadStream("/path/to/your/file"),
name: "name"
});
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.5.0...v0.6.0
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.4.0...v0.4.1
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.3.0...v0.4.0
Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.2.2...v0.3.0
convertAsStream by @dsinghvi in https://github.com/elevenlabs/elevenlabs-js/pull/19VoiceSharingResponse properties are updated to be optional by @fern-api in https://github.com/elevenlabs/elevenlabs-js/pull/20Full Changelog: https://github.com/elevenlabs/elevenlabs-js/compare/v0.2.1...v0.2.2
model_id and voice_settings are optional on speech-to-speech endpointsThis version fixes bugs related to node-fetch and updates the SDK to use the latest APIs (such as speech-to-speech).