@bpmsoftwaresolutions/ai-engine-client 1.1.48 → 1.1.50
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/package.json +1 -1
- package/src/index.js +6 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
const DEFAULT_TIMEOUT_MS = 30000;
|
|
2
|
-
export const AI_ENGINE_CLIENT_VERSION = '1.1.
|
|
2
|
+
export const AI_ENGINE_CLIENT_VERSION = '1.1.50';
|
|
3
3
|
export const GOVERNED_MUTATION_REQUIRED_CAPABILITIES = [
|
|
4
4
|
'executeVerifiedMutation',
|
|
5
5
|
'post_mutation_verification',
|
|
@@ -411,6 +411,7 @@ export class AIEngineClient {
|
|
|
411
411
|
listInbox: (request) => this.listCommunicationInbox(request),
|
|
412
412
|
sendMessage: (request) => this.sendCommunicationMessage(request),
|
|
413
413
|
getCommunicationCapabilities: (request) => this.getCommunicationCapabilities(request),
|
|
414
|
+
getCollaborationCapabilities: (request) => this.getCollaborationCapabilities(request),
|
|
414
415
|
getDeploymentCapabilities: (request) => this.getDeploymentCapabilities(request),
|
|
415
416
|
bootstrap: (request) => this.bootstrapCommunication(request),
|
|
416
417
|
negotiateTransfer: (request) => this.negotiateCommunicationTransfer(request),
|
|
@@ -619,6 +620,10 @@ export class AIEngineClient {
|
|
|
619
620
|
return this._request('/api/agent-communications/capabilities');
|
|
620
621
|
}
|
|
621
622
|
|
|
623
|
+
async getCollaborationCapabilities() {
|
|
624
|
+
return this._request('/api/agent-communications/collaboration-capabilities');
|
|
625
|
+
}
|
|
626
|
+
|
|
622
627
|
async getDeploymentCapabilities() {
|
|
623
628
|
return this._request('/api/agent-communications/deployment-capabilities');
|
|
624
629
|
}
|