@bpmsoftwaresolutions/ai-engine-client 1.1.19 → 1.1.20

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
@@ -378,6 +378,7 @@ Low-level compatibility methods:
378
378
  |---|---|---|
379
379
  | `getLogaOperatorHomeProjection()` | `GET /api/operator/projections/home` | Governed operator home runtime markdown document. |
380
380
  | `getLogaProjectCatalogProjection()` | `GET /api/operator/projections/project-catalog` | Governed project catalog runtime markdown document. |
381
+ | `getLogaProjectPortfolioProjection()` | `GET /api/operator/projections/project-portfolio` | Governed portfolio rollup runtime markdown document with SQL-backed completion metrics and project buckets. |
381
382
  | `getLogaProjectRoadmapProjection(projectId)` | `GET /api/operator/projections/projects/:projectId/roadmap.md` | Governed project roadmap runtime markdown document. |
382
383
  | `getLogaRoadmapItemProjection(projectId, itemKey)` | `GET /api/operator/projections/projects/:projectId/roadmap/items/:itemKey` | Governed roadmap item runtime markdown document with item-level navigation, related documents, actions, and evidence. |
383
384
  | `getLogaWorkflowRunProjection(workflowRunId)` | `GET /api/operator/projections/workflow-runs/:workflowRunId` | Governed workflow run runtime markdown document. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bpmsoftwaresolutions/ai-engine-client",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
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
@@ -939,6 +939,10 @@ export class AIEngineClient {
939
939
  return this._requestLogaProjection('/api/operator/projections/project-catalog');
940
940
  }
941
941
 
942
+ async getLogaProjectPortfolioProjection() {
943
+ return this._requestLogaProjection('/api/operator/projections/project-portfolio');
944
+ }
945
+
942
946
  async getLogaProjectRoadmapProjection(projectId) {
943
947
  return this._requestLogaProjection(`/api/operator/projections/projects/${projectId}/roadmap.md`);
944
948
  }