@bpmsoftwaresolutions/ai-engine-client 1.1.91 → 1.1.92
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/client.js +1 -14
- package/src/index.js +1 -1
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -2691,18 +2691,6 @@ export class AIEngineClient {
|
|
|
2691
2691
|
});
|
|
2692
2692
|
}
|
|
2693
2693
|
|
|
2694
|
-
async getPortfolioClosureReadiness(...args) {
|
|
2695
|
-
return this.portfolio.getPortfolioClosureReadiness(...args);
|
|
2696
|
-
}
|
|
2697
|
-
|
|
2698
|
-
async getPortfolioStatus(...args) {
|
|
2699
|
-
return this.portfolio.getPortfolioStatus(...args);
|
|
2700
|
-
}
|
|
2701
|
-
|
|
2702
|
-
async getPortfolioBundle() {
|
|
2703
|
-
return this.portfolio.getPortfolioBundle();
|
|
2704
|
-
}
|
|
2705
|
-
|
|
2706
2694
|
async getExternalProjectStatus(projectId) {
|
|
2707
2695
|
return this._request(`/api/v1/projects/${projectId}/status`);
|
|
2708
2696
|
}
|
|
@@ -2788,7 +2776,6 @@ export class AIEngineClient {
|
|
|
2788
2776
|
export function createAIEngineClient(options) {
|
|
2789
2777
|
return new AIEngineClient(options);
|
|
2790
2778
|
}
|
|
2791
|
-
|
|
2792
2779
|
function defineCompatibilityMethods(proto, targetName, methodNames) {
|
|
2793
2780
|
for (const methodName of methodNames) {
|
|
2794
2781
|
if (Object.prototype.hasOwnProperty.call(proto, methodName)) continue;
|
|
@@ -2877,6 +2864,6 @@ function installClientCompatibilityDelegates(ClientClass) {
|
|
|
2877
2864
|
defineCompatibilityMethods(proto, 'commitGovernance', ['evaluateCommitGovernance', 'checkGitShipReadiness', 'getCommitGovernanceEvaluation', 'listCommitGovernanceEvaluationsByClaim']);
|
|
2878
2865
|
defineCompatibilityMethods(proto, 'contextSessions', ['openContextSession', 'getOrientationWindow', 'acknowledgeReminder', 'completeOrientation', 'lockContextSessionClaim', 'getContextSessionGateStatus']);
|
|
2879
2866
|
defineCompatibilityMethods(proto, 'contextOrientation', ['conductOrientation']);
|
|
2867
|
+
defineCompatibilityMethods(proto, 'portfolio', ['getPortfolioStatus', 'getPortfolioBundle', 'getPortfolioClosureReadiness']);
|
|
2880
2868
|
}
|
|
2881
|
-
|
|
2882
2869
|
installClientCompatibilityDelegates(AIEngineClient);
|
package/src/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { AIEngineClient, createAIEngineClient } from './client.js';
|
|
2
|
-
export const AI_ENGINE_CLIENT_VERSION = '1.1.
|
|
2
|
+
export const AI_ENGINE_CLIENT_VERSION = '1.1.92';
|
|
3
3
|
export { GOVERNED_MUTATION_REQUIRED_CAPABILITIES, AI_ENGINE_CLIENT_CAPABILITIES, TASK_BOUND_SUBSTRATE_EXECUTION_POLICY } from './constants/governance.js';
|
|
4
4
|
export { LOGA_CONTRACT, LOGA_INTERACTION_CONTRACT, LOGA_NAVIGATION_CONTRACT, LOGA_PROJECTION_WORKFLOW } from './constants/loga.js';
|
|
5
5
|
export {
|