@hubui/client 0.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/LICENSE +202 -0
- package/README.md +247 -0
- package/dist/HubUI.d.ts +54 -0
- package/dist/HubUISession.d.ts +120 -0
- package/dist/constants.d.ts +37 -0
- package/dist/errors.d.ts +42 -0
- package/dist/index.cjs +2 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.esm.js +2 -0
- package/dist/internal/realtime.d.ts +9 -0
- package/dist/types.d.ts +95 -0
- package/package.json +71 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* HubUI Client SDK
|
|
3
|
+
* @hubui/client
|
|
4
|
+
*
|
|
5
|
+
* Connect to AI voice and text agents with ease.
|
|
6
|
+
*
|
|
7
|
+
* @packageDocumentation
|
|
8
|
+
*/
|
|
9
|
+
export { HubUI } from './HubUI';
|
|
10
|
+
export { HubUISession } from './HubUISession';
|
|
11
|
+
export type { HubUIConfig, HubUIConnectionState, HubUITranscriptEntry, HubUIEvents, AudioDevice, } from './types';
|
|
12
|
+
export { HubUIError, ErrorCodes } from './errors';
|
|
13
|
+
export type { ErrorCode } from './errors';
|
|
14
|
+
export { SDK_VERSION } from './constants';
|