@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 +10 -0
- package/package.json +1 -1
- package/src/index.js +1 -1
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
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.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 {
|