@moss-tools/voice-server 1.0.0-beta.1 → 1.0.0-beta.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/CHANGELOG.md +5 -0
- package/dist/MossVoiceServer.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to @moss-tools/voice-server will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.0.0-beta.2] - 2026-02-21
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- Updated API endpoint from `/api/voice-agent-deploy/get-voice-agent` to `/api/voice-agent/get-voice-agent` to match backend API changes
|
|
9
|
+
|
|
5
10
|
## [1.0.0-beta.1] - 2026-02-11
|
|
6
11
|
|
|
7
12
|
Initial beta release.
|
package/dist/MossVoiceServer.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AccessToken, RoomConfiguration, } from "livekit-server-sdk";
|
|
2
|
-
const VOICE_AGENT_API_URL = "https://service.usemoss.dev/api/voice-agent
|
|
2
|
+
const VOICE_AGENT_API_URL = "https://service.usemoss.dev/api/voice-agent/get-voice-agent";
|
|
3
3
|
/**
|
|
4
4
|
* Voice server client for managing voice agent connections and tokens.
|
|
5
5
|
*
|