@hivegpt/hiveai-angular 0.0.587 → 0.0.589
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 +0 -26
- package/bundles/hivegpt-hiveai-angular.umd.js +538 -3623
- package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -1
- package/esm2015/hivegpt-hiveai-angular.js +5 -8
- package/esm2015/lib/components/NotificationSocket.js +22 -29
- package/esm2015/lib/components/bot.service.js +12 -18
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +214 -2429
- package/esm2015/lib/components/chatbot/chatbot.component.js +5 -9
- package/esm2015/lib/components/conversation.service.js +5 -13
- package/esm2015/lib/components/socket-service.service.js +11 -21
- package/esm2015/lib/components/translations/translation.service.js +36 -38
- package/esm2015/lib/components/voice-agent/components/voice-agent-modal/voice-agent-modal.component.js +17 -35
- package/esm2015/lib/components/voice-agent/services/audio-analyzer.service.js +5 -11
- package/esm2015/lib/components/voice-agent/services/voice-agent.service.js +142 -215
- package/esm2015/lib/components/voice-agent/voice-agent.module.js +2 -10
- package/esm2015/lib/components/voice-agent/voice-modal-tokens.js +1 -1
- package/esm2015/lib/models/chat.js +2 -0
- package/esm2015/lib/utils/utils.js +2 -4
- package/esm2015/public-api.js +3 -2
- package/fesm2015/hivegpt-hiveai-angular.js +462 -3389
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/hivegpt-hiveai-angular.d.ts +4 -7
- package/hivegpt-hiveai-angular.d.ts.map +1 -1
- package/hivegpt-hiveai-angular.metadata.json +1 -1
- package/lib/components/NotificationSocket.d.ts +3 -1
- package/lib/components/NotificationSocket.d.ts.map +1 -1
- package/lib/components/bot.service.d.ts +2 -1
- package/lib/components/bot.service.d.ts.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts +52 -285
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/lib/components/chatbot/chatbot.component.d.ts +1 -8
- package/lib/components/chatbot/chatbot.component.d.ts.map +1 -1
- package/lib/components/conversation.service.d.ts +2 -8
- package/lib/components/conversation.service.d.ts.map +1 -1
- package/lib/components/socket-service.service.d.ts +4 -3
- package/lib/components/socket-service.service.d.ts.map +1 -1
- package/lib/components/translations/translation.service.d.ts.map +1 -1
- package/lib/components/voice-agent/components/voice-agent-modal/voice-agent-modal.component.d.ts +4 -10
- package/lib/components/voice-agent/components/voice-agent-modal/voice-agent-modal.component.d.ts.map +1 -1
- package/lib/components/voice-agent/services/audio-analyzer.service.d.ts +0 -5
- package/lib/components/voice-agent/services/audio-analyzer.service.d.ts.map +1 -1
- package/lib/components/voice-agent/services/voice-agent.service.d.ts +9 -34
- package/lib/components/voice-agent/services/voice-agent.service.d.ts.map +1 -1
- package/lib/components/voice-agent/voice-agent.module.d.ts +0 -4
- package/lib/components/voice-agent/voice-agent.module.d.ts.map +1 -1
- package/lib/components/voice-agent/voice-modal-tokens.d.ts +0 -4
- package/lib/components/voice-agent/voice-modal-tokens.d.ts.map +1 -1
- package/lib/models/chat.d.ts +134 -0
- package/lib/models/chat.d.ts.map +1 -0
- package/lib/utils/utils.d.ts +1 -1
- package/lib/utils/utils.d.ts.map +1 -1
- package/package.json +2 -4
- package/public-api.d.ts +2 -1
- package/public-api.d.ts.map +1 -1
- package/esm2015/lib/components/voice-agent/services/daily-voice-client.service.js +0 -326
- package/esm2015/lib/components/voice-agent/services/websocket-voice-client.service.js +0 -95
- package/esm2015/lib/services/platform-token-refresh.service.js +0 -173
- package/lib/components/voice-agent/services/daily-voice-client.service.d.ts +0 -70
- package/lib/components/voice-agent/services/daily-voice-client.service.d.ts.map +0 -1
- package/lib/components/voice-agent/services/websocket-voice-client.service.d.ts +0 -49
- package/lib/components/voice-agent/services/websocket-voice-client.service.d.ts.map +0 -1
- package/lib/services/platform-token-refresh.service.d.ts +0 -59
- package/lib/services/platform-token-refresh.service.d.ts.map +0 -1
|
@@ -2,14 +2,11 @@
|
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
4
|
export * from './public-api';
|
|
5
|
-
export {
|
|
6
|
-
export { BotHtmlEditorComponent as ɵj } from './lib/components/bot-html-editor/bot-html-editor.component';
|
|
5
|
+
export { BotHtmlEditorComponent as ɵg } from './lib/components/bot-html-editor/bot-html-editor.component';
|
|
7
6
|
export { BotsService as ɵa } from './lib/components/bot.service';
|
|
8
7
|
export { ConversationService as ɵc } from './lib/components/conversation.service';
|
|
9
8
|
export { SocketService as ɵb } from './lib/components/socket-service.service';
|
|
10
|
-
export { TranslationService as
|
|
11
|
-
export { VideoPlayerComponent as
|
|
12
|
-
export {
|
|
13
|
-
export { WebSocketVoiceClientService as ɵf } from './lib/components/voice-agent/services/websocket-voice-client.service';
|
|
14
|
-
export { SafeHtmlPipe as ɵi } from './lib/pipes/safe-html.pipe';
|
|
9
|
+
export { TranslationService as ɵd } from './lib/components/translations/translation.service';
|
|
10
|
+
export { VideoPlayerComponent as ɵe } from './lib/components/video-player/video-player.component';
|
|
11
|
+
export { SafeHtmlPipe as ɵf } from './lib/pipes/safe-html.pipe';
|
|
15
12
|
//# sourceMappingURL=hivegpt-hiveai-angular.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hivegpt-hiveai-angular.d.ts","sourceRoot":"/Users/rohitthakur/hive-gpt/HiveAI-Packages/Angular/projects/hivegpt/eventsgpt-angular/src/","sources":["hivegpt-hiveai-angular.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,cAAc,CAAC;AAE7B,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"hivegpt-hiveai-angular.d.ts","sourceRoot":"/Users/rohitthakur/hive-gpt/HiveAI-Packages/Angular/projects/hivegpt/eventsgpt-angular/src/","sources":["hivegpt-hiveai-angular.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,cAAc,cAAc,CAAC;AAE7B,OAAO,EAAC,sBAAsB,IAAI,EAAE,EAAC,MAAM,4DAA4D,CAAC;AACxG,OAAO,EAAC,WAAW,IAAI,EAAE,EAAC,MAAM,8BAA8B,CAAC;AAC/D,OAAO,EAAC,mBAAmB,IAAI,EAAE,EAAC,MAAM,uCAAuC,CAAC;AAChF,OAAO,EAAC,aAAa,IAAI,EAAE,EAAC,MAAM,yCAAyC,CAAC;AAC5E,OAAO,EAAC,kBAAkB,IAAI,EAAE,EAAC,MAAM,mDAAmD,CAAC;AAC3F,OAAO,EAAC,oBAAoB,IAAI,EAAE,EAAC,MAAM,sDAAsD,CAAC;AAChG,OAAO,EAAC,YAAY,IAAI,EAAE,EAAC,MAAM,4BAA4B,CAAC"}
|