@bpmsoftwaresolutions/ai-engine-client 1.1.101 → 1.1.102

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmsoftwaresolutions/ai-engine-client",
3
- "version": "1.1.101",
3
+ "version": "1.1.102",
4
4
  "description": "Thin npm client for the AI Engine operator and retrieval APIs",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
package/src/client.js CHANGED
@@ -146,6 +146,7 @@ export class AIEngineClient {
146
146
  this.reports = createReportsDomain(this);
147
147
  this.projections = createProjectionsDomain(this);
148
148
  this.workflowComposition = createWorkflowCompositionDomain(this);
149
+ this.workflowComposition.searchCodeByIntent = (request) => this.searchCodeByIntent(request);
149
150
  this.warehouse = createWarehouseDomain(this);
150
151
  this.actions = createActionsDomain(this);
151
152
  this.transferBundles = createTransferBundlesDomain(this);
@@ -162,6 +163,7 @@ export class AIEngineClient {
162
163
  this.collaborationDomain = createCollaborationDomain(this);
163
164
  this.agentComms = createAgentCommunicationsFacade(this);
164
165
  this.collaboration = createCollaborationFacade(this);
166
+ this.collaboration.postCollaborationProposal = (request) => this.postCollaborationProposal(request);
165
167
  }
166
168
 
167
169
  static fromEnv(options = {}) {
@@ -5,6 +5,7 @@ export const COMPATIBILITY_ALIAS_GROUPS = [
5
5
  'ping',
6
6
  'query',
7
7
  'getPortfolioClosureReadiness',
8
+ 'searchCodeByIntent',
8
9
  'registerModernizationAsset',
9
10
  'classifyModernizationAsset',
10
11
  'discoverSalvageCandidates',
@@ -187,7 +188,7 @@ export function installClientCompatibilityDelegates(ClientClass) {
187
188
  defineCompatibilityMethods(proto, 'presence', ['getPresenceBoard', 'getChannelPresence', 'markParticipantOnline', 'markParticipantOffline', 'whoIsOnline', 'findOnlineParticipant', 'sendToParticipant', 'sendToRole', 'postPresenceHeartbeat']);
188
189
  defineCompatibilityMethods(proto, 'collaborationDomain', ['reviewCollaborationProposal', 'reviseCollaborationProposal', 'postCollaborationProposal', 'acceptCollaborationProposal', 'assignCollaborationOwnership', 'raiseCollaborationBlocker', 'resolveCollaborationBlocker', 'postCollaborationHeartbeat', 'beginCollaborationImplementation', 'requestCollaborationClosure']);
189
190
  defineCompatibilityMethods(proto, 'transferBundles', ['transferWorkPacket', 'getTransferBundle', 'listTransferBundles', 'createTransferReceipt', 'listTransferReceipts', 'createCommunicationBundle', 'getCommunicationBundle', 'listCommunicationBundles', 'addCommunicationBundleItem', 'uploadCommunicationBundle', 'attachCommunicationBundleToMessage', 'recordCommunicationBundleReceipt', 'recordCommunicationBundleCleanupEvent', 'claimCommunicationBundle', 'recordCommunicationTransferReceipt']);
190
- defineCompatibilityMethods(proto, 'workflowComposition', ['registerModernizationAsset', 'classifyModernizationAsset', 'discoverSalvageCandidates', 'createModernizationWorkPacket', 'requestModernizationWrapperExecution', 'getModernizationWrapperEvidence', 'decideModernizationGate']);
191
+ defineCompatibilityMethods(proto, 'workflowComposition', ['registerModernizationAsset', 'classifyModernizationAsset', 'discoverSalvageCandidates', 'createModernizationWorkPacket', 'requestModernizationWrapperExecution', 'getModernizationWrapperEvidence', 'decideModernizationGate', 'searchCodeByIntent']);
191
192
  defineCompatibilityMethods(proto, 'currentProject', ['currentProjectStatus']);
192
193
  defineCompatibilityMethods(proto, 'projections', ['renderProjection', 'getLogaOperatorHomeProjection', 'getLogaProjectCatalogProjection', 'getLogaProjectPortfolioProjection', 'getLogaProjectRoadmapProjection', 'getLogaRoadmapItemProjection', 'getLogaWorkflowRunProjection', 'getLogaEvidencePacketProjection', 'getLogaTransferHomeProjection', 'getLogaTransferInboxProjection', 'getLogaTransferPacketProjection', 'getLogaTransferNegotiationEventsProjection', 'getLogaTransferFrictionLaneProjection', 'getLogaTransferReceiptsProjection', 'getLogaTransferClosureReviewProjection', 'getTransferChannelProjection']);
193
194
  defineCompatibilityAliases(proto, 'projections', { getLogaTransferChannelThreadProjection: 'getTransferChannelProjection' });
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.101';
2
+ export const AI_ENGINE_CLIENT_VERSION = '1.1.102';
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 {