voice-router-dev 0.1.1 → 0.1.2
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.js +1 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -734,10 +734,7 @@ var GladiaAdapter = class extends BaseAdapter {
|
|
|
734
734
|
languages: [options.language]
|
|
735
735
|
};
|
|
736
736
|
}
|
|
737
|
-
const initResponse = await this.client.post(
|
|
738
|
-
"/v2/live",
|
|
739
|
-
streamingRequest
|
|
740
|
-
);
|
|
737
|
+
const initResponse = await this.client.post("/live", streamingRequest);
|
|
741
738
|
const { id, url: wsUrl } = initResponse.data;
|
|
742
739
|
const ws = new import_ws.default(wsUrl);
|
|
743
740
|
let sessionStatus = "connecting";
|