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