@bpmsoftwaresolutions/ai-engine-client 1.1.106 → 1.1.107
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/package.json +1 -1
- package/src/client.js +4 -12
- package/src/domains/surface-groups.js +23 -3
- package/src/index.js +1 -1
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -6,7 +6,6 @@ import { createCapabilitiesDomain } from './domains/capabilities.js';
|
|
|
6
6
|
import { createDatabaseDomain } from './domains/database.js';
|
|
7
7
|
import { createContextAssemblyDomain } from './domains/context-assembly.js';
|
|
8
8
|
import { createDesignIntelligenceDomain } from './domains/design-intelligence.js';
|
|
9
|
-
import { createExecutionTelemetryDomain } from './domains/execution-telemetry.js';
|
|
10
9
|
import { createImplementationTasksDomain } from './domains/implementation-tasks.js';
|
|
11
10
|
import { createCurrentProjectDomain } from './domains/operator/current-project.js';
|
|
12
11
|
import { createGatewayDomain } from './domains/gateway.js';
|
|
@@ -14,7 +13,6 @@ import { createHealthDomain } from './domains/health.js';
|
|
|
14
13
|
import { createNotesLabDomain } from './domains/notes-lab.js';
|
|
15
14
|
import { createPortfolioDomain } from './domains/portfolio.js';
|
|
16
15
|
import { createGovernedImplementationDomain } from './domains/governed-implementation.js';
|
|
17
|
-
import { createReportsDomain } from './domains/reports.js';
|
|
18
16
|
import { createPerformanceDomain } from './domains/performance.js';
|
|
19
17
|
import { createImplementationArtifactsDomain } from './domains/implementation-artifacts.js';
|
|
20
18
|
import { createImplementationChecksDomain } from './domains/implementation-checks.js';
|
|
@@ -22,8 +20,6 @@ import { createImplementationEvidenceDomain } from './domains/implementation-evi
|
|
|
22
20
|
import { createImplementationGatesDomain } from './domains/implementation-gates.js';
|
|
23
21
|
import { createImplementationPacketsDomain } from './domains/implementation-packets.js';
|
|
24
22
|
import { createImplementationItemsDomain } from './domains/implementation-items.js';
|
|
25
|
-
import { createRepoDomain } from './domains/repo.js';
|
|
26
|
-
import { createOperatorStatusDomain } from './domains/operator-status.js';
|
|
27
23
|
import { createScriptDiscoveryDomain } from './domains/script-discovery.js';
|
|
28
24
|
import { createScriptsDomain } from './domains/scripts.js';
|
|
29
25
|
import { createSelfLearningDomain } from './domains/self-learning.js';
|
|
@@ -46,10 +42,9 @@ import { createWorkflowTurnsDomain } from './domains/workflow-turns.js';
|
|
|
46
42
|
import { createChartersDomain } from './domains/charters.js';
|
|
47
43
|
import { createWorkStartDomain } from './domains/work-start.js';
|
|
48
44
|
import { createToolRegistryDomain } from './domains/tool-registry.js';
|
|
49
|
-
import { createWorkflowCompositionDomain } from './domains/workflow-composition.js';
|
|
50
45
|
import { createWorkflowsDomain } from './domains/workflows.js';
|
|
51
46
|
import { createWarehouseDomain } from './domains/warehouse.js';
|
|
52
|
-
import { createLogaProjectionSurface, createProjectRoadmapSurface,
|
|
47
|
+
import { createExecutionStatusSurface, createIntelligenceSurface, createLogaProjectionSurface, createProjectRoadmapSurface, createProjectionReportSurface } from './domains/surface-groups.js';
|
|
53
48
|
import { createCoordinationSurface } from './domains/coordination-surface.js';
|
|
54
49
|
import { installClientCompatibilityDelegates } from './compat/aliases.js';
|
|
55
50
|
import { buildHeaders, requestBinary, requestJson, requestLogaProjection, requestText, resolveAccessToken } from './transport/index.js';
|
|
@@ -73,7 +68,6 @@ export class AIEngineClient {
|
|
|
73
68
|
throw new Error('A fetch implementation is required. Use Node 18+ or supply fetchImpl.');
|
|
74
69
|
}
|
|
75
70
|
this.health = createHealthDomain(this);
|
|
76
|
-
this.operatorStatus = createOperatorStatusDomain(this);
|
|
77
71
|
this.gateway = createGatewayDomain(this);
|
|
78
72
|
this.operator = {
|
|
79
73
|
currentProject: createCurrentProjectDomain(this),
|
|
@@ -104,10 +98,7 @@ export class AIEngineClient {
|
|
|
104
98
|
this.toolRegistry = createToolRegistryDomain(this);
|
|
105
99
|
this.contextAssembly = createContextAssemblyDomain(this);
|
|
106
100
|
this.designIntelligence = createDesignIntelligenceDomain(this);
|
|
107
|
-
this.executionTelemetry = createExecutionTelemetryDomain(this);
|
|
108
101
|
this.performance = createPerformanceDomain(this);
|
|
109
|
-
this.repo = createRepoDomain(this);
|
|
110
|
-
Object.assign(this, createRetrievalSurface(this));
|
|
111
102
|
this.workflows = createWorkflowsDomain(this);
|
|
112
103
|
this.capabilities = createCapabilitiesDomain(this);
|
|
113
104
|
this.benchmarks = createBenchmarksDomain(this);
|
|
@@ -118,10 +109,11 @@ export class AIEngineClient {
|
|
|
118
109
|
this.notesLab = createNotesLabDomain(this);
|
|
119
110
|
this.portfolio = createPortfolioDomain(this);
|
|
120
111
|
this.scripts = createScriptsDomain(this);
|
|
121
|
-
this.reports = createReportsDomain(this);
|
|
122
112
|
Object.assign(this, createLogaProjectionSurface(this));
|
|
113
|
+
Object.assign(this, createProjectionReportSurface(this));
|
|
114
|
+
Object.assign(this, createIntelligenceSurface(this));
|
|
115
|
+
Object.assign(this, createExecutionStatusSurface(this));
|
|
123
116
|
Object.assign(this, createCoordinationSurface(this));
|
|
124
|
-
this.workflowComposition = createWorkflowCompositionDomain(this);
|
|
125
117
|
this.workflowComposition.searchCodeByIntent = (request) => this.searchCodeByIntent(request);
|
|
126
118
|
this.warehouse = createWarehouseDomain(this);
|
|
127
119
|
this.actions = createActionsDomain(this);
|
|
@@ -4,10 +4,15 @@ import { createProjectReportsDomain } from './project-reports.js';
|
|
|
4
4
|
import { createProjectResumeDomain } from './project-resume.js';
|
|
5
5
|
import { createProjectsDomain } from './projects.js';
|
|
6
6
|
import { createProjectionsDomain } from './projections.js';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
7
|
+
import { createExecutionTelemetryDomain } from './execution-telemetry.js';
|
|
8
|
+
import { createOperatorStatusDomain } from './operator-status.js';
|
|
9
|
+
import { createRepoDomain } from './repo.js';
|
|
9
10
|
import { createRetrievalManagementDomain } from './retrieval-management.js';
|
|
10
11
|
import { createRetrievalWrapperDomain } from './retrieval-wrapper.js';
|
|
12
|
+
import { createRoadmapReportsDomain } from './roadmap-reports.js';
|
|
13
|
+
import { createRoadmapsDomain } from './roadmaps.js';
|
|
14
|
+
import { createReportsDomain } from './reports.js';
|
|
15
|
+
import { createWorkflowCompositionDomain } from './workflow-composition.js';
|
|
11
16
|
|
|
12
17
|
export function createProjectRoadmapSurface(client) {
|
|
13
18
|
return {
|
|
@@ -27,9 +32,24 @@ export function createLogaProjectionSurface(client) {
|
|
|
27
32
|
};
|
|
28
33
|
}
|
|
29
34
|
|
|
30
|
-
export function
|
|
35
|
+
export function createProjectionReportSurface(client) {
|
|
36
|
+
return {
|
|
37
|
+
reports: createReportsDomain(client),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export function createIntelligenceSurface(client) {
|
|
31
42
|
return {
|
|
43
|
+
repo: createRepoDomain(client),
|
|
44
|
+
workflowComposition: createWorkflowCompositionDomain(client),
|
|
32
45
|
retrievalWrapper: createRetrievalWrapperDomain(client),
|
|
33
46
|
retrievalManagement: createRetrievalManagementDomain(client),
|
|
34
47
|
};
|
|
35
48
|
}
|
|
49
|
+
|
|
50
|
+
export function createExecutionStatusSurface(client) {
|
|
51
|
+
return {
|
|
52
|
+
operatorStatus: createOperatorStatusDomain(client),
|
|
53
|
+
executionTelemetry: createExecutionTelemetryDomain(client),
|
|
54
|
+
};
|
|
55
|
+
}
|
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.107';
|
|
3
3
|
export { GOVERNED_MUTATION_REQUIRED_CAPABILITIES, AI_ENGINE_CLIENT_CAPABILITIES, TASK_BOUND_SUBSTRATE_EXECUTION_POLICY } from './constants/governance.js';
|
|
4
4
|
export {
|
|
5
5
|
TASK_ACTION_VERB_REGISTRY,
|