@elevenlabs/client 1.0.0 → 1.1.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/lib.iife.js +6 -1
- package/dist/lib.iife.js.map +1 -1
- package/dist/utils/BaseConnection.d.ts +8 -0
- package/dist/utils/BaseConnection.d.ts.map +1 -1
- package/dist/utils/BaseConnection.js.map +1 -1
- package/dist/utils/overrides.d.ts.map +1 -1
- package/dist/utils/overrides.js +7 -0
- package/dist/utils/overrides.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
package/dist/lib.iife.js
CHANGED
|
@@ -383,7 +383,7 @@ var ElevenLabsClient = (function(exports) {
|
|
|
383
383
|
//#region src/sourceInfo.ts
|
|
384
384
|
let sourceInfo = Object.freeze({
|
|
385
385
|
name: "js_sdk",
|
|
386
|
-
version: "1.
|
|
386
|
+
version: "1.1.0"
|
|
387
387
|
});
|
|
388
388
|
//#endregion
|
|
389
389
|
//#region src/utils/events.ts
|
|
@@ -416,6 +416,11 @@ var ElevenLabsClient = (function(exports) {
|
|
|
416
416
|
source: sourceInfo.name,
|
|
417
417
|
version: sourceInfo.version
|
|
418
418
|
};
|
|
419
|
+
if (config.toolMockConfig) overridesEvent.tool_mock_config = {
|
|
420
|
+
mocking_strategy: config.toolMockConfig.mockingStrategy,
|
|
421
|
+
mocked_tool_names: config.toolMockConfig.mockedToolNames,
|
|
422
|
+
fallback_strategy: config.toolMockConfig.fallbackStrategy
|
|
423
|
+
};
|
|
419
424
|
return overridesEvent;
|
|
420
425
|
}
|
|
421
426
|
//#endregion
|