-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29d850a
commit 12e58fe
Showing
27 changed files
with
416 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 0.2.0 | ||
|
||
- Renamed: | ||
- `VoiceClient` to `RTVIClient` | ||
- `VoiceClientOptions` to `RTVIClientOptions` | ||
- `VoiceEventCallbacks` to `RTVIEventCallbacks` | ||
- `VoiceError` to `RTVIError` | ||
- `VoiceException` to `RTVIException` | ||
- `VoiceClientHelper` to `RTVIClientHelper` | ||
- `RegisteredVoiceClient` to `RegisteredRTVIClient` | ||
- `FailedToFetchAuthBundle` to `HttpError` | ||
- `RTVIClient()` constructor parameter changes | ||
- `options` is now mandatory | ||
- `baseUrl` has been moved to `options.params.baseUrl` | ||
- `baseUrl` and `endpoints` are now separate, and the endpoint names are appended to the `baseUrl` | ||
- Moved `RTVIClientOptions.config` to `RTVIClientOptions.params.config` | ||
- Moved `RTVIClientOptions.customHeaders` to `RTVIClientOptions.params.headers` | ||
- Moved `RTVIClientOptions.customBodyParams` to `RTVIClientOptions.params.requestData` | ||
- `TransportState` changes | ||
- Removed `Idle` state, replaced with `Disconnected` | ||
- Added `Disconnecting` state | ||
- Added callbacks | ||
- `onBotLLMText()` | ||
- `onBotTTSText()` | ||
- `onStorageItemStored()` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
rtvi-client-android/src/main/java/ai/rtvi/client/Legacy.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package ai.rtvi.client | ||
|
||
|
||
@Deprecated("VoiceClient is renamed to RTVIClient") | ||
typealias VoiceClient = RTVIClient | ||
|
||
@Deprecated("VoiceClientOptions is renamed to RTVIClientOptions") | ||
typealias VoiceClientOptions = RTVIClientOptions | ||
|
||
@Deprecated("VoiceEventCallbacks is renamed to RTVIEventCallbacks") | ||
typealias VoiceEventCallbacks = RTVIEventCallbacks |
Oops, something went wrong.