@bpmsoftwaresolutions/ai-engine-client 1.1.79 → 1.1.81
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 +12 -0
- package/package.json +1 -1
- package/src/index.js +1 -1
package/README.md
CHANGED
|
@@ -96,6 +96,18 @@ await client.workflowComposition.decideModernizationGate();
|
|
|
96
96
|
await client.warehouse.requestModernizationWrapperExecution();
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
+
### Compatibility Map
|
|
100
|
+
|
|
101
|
+
The post-split client intentionally keeps the legacy call styles available while exposing the normalized namespace paths:
|
|
102
|
+
|
|
103
|
+
- `client.ping()` and `client.health.ping()` remain available.
|
|
104
|
+
- `client.query()` and `client.gateway.query()` remain available.
|
|
105
|
+
- `client.getPortfolioClosureReadiness()` and `client.portfolio.getPortfolioClosureReadiness()` remain available.
|
|
106
|
+
- `client.registerModernizationAsset()` and `client.warehouse.registerModernizationAsset()` remain available.
|
|
107
|
+
- `client.workflowComposition.*` is the normalized modernization namespace, with `client.warehouse.*` preserved as the compatibility alias.
|
|
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
|
+
- Download helpers still return the same markdown and binary payload metadata through the top-level methods.
|
|
110
|
+
|
|
99
111
|
## Project Continuation Runtime
|
|
100
112
|
|
|
101
113
|
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.81';
|
|
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 {
|