bridgeapp-ai-chat-widget 0.2.15 → 0.2.16
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/README.md +1 -2
- package/dist/App.d.ts +1 -0
- package/dist/Avatar-XISRbl7X.js +29627 -0
- package/dist/OrbitControls-XelJ40xM.js +458 -0
- package/dist/api/messages.api.types.d.ts +10 -1
- package/dist/api/voice.api.d.ts +2 -1
- package/dist/api/voice.api.types.d.ts +21 -0
- package/dist/avatar/Avatar.d.ts +1 -0
- package/dist/bridge-ai-chat-widget.es.js +8729 -81770
- package/dist/dev/constants.d.ts +17 -0
- package/dist/domain/voice/voice.store.d.ts +2 -0
- package/dist/hooks/useDeviceManager.d.ts +1 -2
- package/dist/index.types.d.ts +1 -0
- package/dist/lib//321/201ontentRenderer.d.ts +3 -3
- package/dist/lil-gui.esm-BicvE3D7.js +1263 -0
- package/package.json +11 -15
- package/dist/bridge-ai-chat-widget.umd.js +0 -4847
- package/dist/index.d.ts +0 -34
- package/dist/react/mount.d.ts +0 -3
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ Embeddable React + TypeScript chat widget for Bridge AI agents, with:
|
|
|
10
10
|
|
|
11
11
|
## What This Project Is
|
|
12
12
|
|
|
13
|
-
`bridgeapp-ai-chat-widget` is
|
|
13
|
+
`bridgeapp-ai-chat-widget` is an ESM library bundle that host applications instantiate via:
|
|
14
14
|
|
|
15
15
|
- `new ChatWidgetInstance(config)`
|
|
16
16
|
|
|
@@ -214,7 +214,6 @@ npm run build-lib
|
|
|
214
214
|
Outputs include:
|
|
215
215
|
|
|
216
216
|
- `dist/bridge-ai-chat-widget.es.js`
|
|
217
|
-
- `dist/bridge-ai-chat-widget.umd.js`
|
|
218
217
|
- `dist/index.types.d.ts`
|
|
219
218
|
|
|
220
219
|
### Publish flow
|
package/dist/App.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export type AppApi = {
|
|
|
12
12
|
}) => void) | null) => void;
|
|
13
13
|
resolveAssetPath: (path: string) => string;
|
|
14
14
|
registerSendServiceMessage: ((fn: ((message: string, animationName: ExternallyAvailableActions) => void) | null) => void);
|
|
15
|
+
registerSendServiceMessageVoice: ((fn: ((message: string, animationName: ExternallyAvailableActions) => void) | null) => void);
|
|
15
16
|
registerSetLocale: ((fn: ((locale: string) => void) | null) => void);
|
|
16
17
|
};
|
|
17
18
|
type AppProps = {
|