@bpmsoftwaresolutions/ai-engine-client 1.1.81 → 1.1.82

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/README.md CHANGED
@@ -108,6 +108,16 @@ The post-split client intentionally keeps the legacy call styles available while
108
108
  - Auth behavior remains unchanged: bearer token auth wins when `accessToken` or `tokenProvider` is configured, otherwise the client falls back to the compatibility API key headers.
109
109
  - Download helpers still return the same markdown and binary payload metadata through the top-level methods.
110
110
 
111
+ ### Surface Map
112
+
113
+ For quick discovery, the public surface groups like this:
114
+
115
+ - Top-level aliases: `client.ping()`, `client.query()`, `client.getPortfolioClosureReadiness()`, and the rest of the legacy wrappers.
116
+ - Health and query namespaces: `client.health`, `client.gateway`, and `client.operatorStatus`.
117
+ - Project delivery namespaces: `client.projects`, `client.projectChartering`, `client.roadmaps`, `client.implementationPackets`, `client.implementationItems`, `client.implementationArtifacts`, `client.implementationEvidence`, and `client.implementationGates`.
118
+ - Workflow and governance namespaces: `client.agentComms`, `client.collaboration`, `client.transferChannels`, `client.presence`, `client.receipts`, `client.messageWatch`, `client.claims`, `client.sessionGovernance`, `client.contextOrientation`, `client.commitGovernance`, `client.governedImplementation`, `client.verifiedMutations`, `client.workflowTurns`, and `client.charters`.
119
+ - Compatibility alias: `client.warehouse.*` still mirrors the modernization helpers, while `client.workflowComposition.*` is the normalized namespace.
120
+
111
121
  ## Project Continuation Runtime
112
122
 
113
123
  Once you know the project identity, use `resumeProjectWork()` as the canonical startup and hydration call for project work.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmsoftwaresolutions/ai-engine-client",
3
- "version": "1.1.81",
3
+ "version": "1.1.82",
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/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export { AIEngineClient, createAIEngineClient } from './client.js';
2
- export const AI_ENGINE_CLIENT_VERSION = '1.1.81';
2
+ export const AI_ENGINE_CLIENT_VERSION = '1.1.82';
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 {