@unboundcx/sdk 4.8.8 → 4.8.9
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/index.js +3 -0
- package/package.json +1 -1
- package/services/chat.js +851 -0
- package/services/directory.js +7 -73
- package/services/inbox.js +5 -5
- package/services/taskRouter/MetricsService.js +0 -54
- package/services/taskRouter/TaskRouterService.js +0 -2
- package/services/video.js +0 -144
- package/services/taskRouter/CCService.js +0 -302
package/index.js
CHANGED
|
@@ -33,6 +33,7 @@ import { TriggersService } from './services/triggers.js';
|
|
|
33
33
|
import { InboxService } from './services/inbox.js';
|
|
34
34
|
import { SearchService } from './services/search.js';
|
|
35
35
|
import { DirectoryService } from './services/directory.js';
|
|
36
|
+
import { ChatService } from './services/chat.js';
|
|
36
37
|
|
|
37
38
|
class UnboundSDK extends BaseSDK {
|
|
38
39
|
constructor(options = {}) {
|
|
@@ -107,6 +108,7 @@ class UnboundSDK extends BaseSDK {
|
|
|
107
108
|
this.inbox = new InboxService(this);
|
|
108
109
|
this.search = new SearchService(this);
|
|
109
110
|
this.directory = new DirectoryService(this);
|
|
111
|
+
this.chat = new ChatService(this);
|
|
110
112
|
|
|
111
113
|
// Add additional services that might be missing
|
|
112
114
|
this._initializeAdditionalServices();
|
|
@@ -290,4 +292,5 @@ export { PermissionsService } from './services/permissions.js';
|
|
|
290
292
|
export { InboxService } from './services/inbox.js';
|
|
291
293
|
export { SearchService } from './services/search.js';
|
|
292
294
|
export { DirectoryService } from './services/directory.js';
|
|
295
|
+
export { ChatService } from './services/chat.js';
|
|
293
296
|
export { BaseSDK } from './base.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unboundcx/sdk",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.9",
|
|
4
4
|
"description": "Official JavaScript SDK for the Unbound API - A comprehensive toolkit for integrating with Unbound's communication, AI, and data management services",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|