@bpmsoftwaresolutions/ai-engine-client 1.1.28 → 1.1.29
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 +2 -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.29';
|
|
3
3
|
export const GOVERNED_MUTATION_REQUIRED_CAPABILITIES = [
|
|
4
4
|
'executeVerifiedMutation',
|
|
5
5
|
'post_mutation_verification',
|
|
@@ -11,6 +11,7 @@ export const GOVERNED_MUTATION_REQUIRED_CAPABILITIES = [
|
|
|
11
11
|
export const AI_ENGINE_CLIENT_CAPABILITIES = [
|
|
12
12
|
...GOVERNED_MUTATION_REQUIRED_CAPABILITIES,
|
|
13
13
|
'execution_eligibility_read',
|
|
14
|
+
'project_delivery_facade',
|
|
14
15
|
'workflow_resume_context_read',
|
|
15
16
|
];
|
|
16
17
|
|