@hivegpt/hiveai-angular 0.0.346 → 0.0.347
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/bundles/hivegpt-hiveai-angular.umd.js +6 -5
- 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/environments/environment.d.ts.map +1 -1
- package/esm2015/environments/environment.js +6 -6
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +2 -1
- package/fesm2015/hivegpt-hiveai-angular.js +6 -5
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -51,15 +51,15 @@ const prod_environment = {
|
|
|
51
51
|
USERS_API: 'https://es-user.social27.com/api',
|
|
52
52
|
BASE_URL: 'https://agent-api.hivegpt.ai',
|
|
53
53
|
AGENTS_API: 'https://hive-ai.social27.com/api',
|
|
54
|
-
API_KEY: '
|
|
54
|
+
API_KEY: '82595783-dc9c-4513-8204-709818d51be3',
|
|
55
55
|
SocketUrl: 'https://notif-v2-ws.social27.com/'
|
|
56
56
|
};
|
|
57
57
|
const dev_environment = {
|
|
58
58
|
USERS_API: 'https://pre-user.social27.com/api',
|
|
59
|
-
BASE_URL: 'https://agent-api.hivegpt.ai',
|
|
60
|
-
AGENTS_API: 'https://hive-ai.social27.com/api',
|
|
61
|
-
API_KEY: '
|
|
62
|
-
SocketUrl: 'https://notif-
|
|
59
|
+
BASE_URL: 'https://pre-agent-api.hivegpt.ai',
|
|
60
|
+
AGENTS_API: 'https://hive-pre-ai.social27.com/api',
|
|
61
|
+
API_KEY: '66d59244c50b8fb597a101t1',
|
|
62
|
+
SocketUrl: 'https://notif-ws-staging.social27.com/',
|
|
63
63
|
};
|
|
64
64
|
|
|
65
65
|
class ConversationService {
|
|
@@ -384,6 +384,7 @@ class ChatDrawerComponent {
|
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
386
|
ngOnInit() {
|
|
387
|
+
this.isDev = false;
|
|
387
388
|
this.environment = this.isDev ? dev_environment : prod_environment;
|
|
388
389
|
const domain = window.location.hostname;
|
|
389
390
|
// Determine the header value based on the domain
|