feat: add executor gateway contracts
This commit is contained in:
@@ -237,6 +237,16 @@ export type OrchestratorEngineDescriptor = {
|
||||
capabilities: string[];
|
||||
};
|
||||
|
||||
export type OrchestratorExecutorDescriptor = {
|
||||
id: string;
|
||||
label: string;
|
||||
kind: string;
|
||||
enabled: boolean;
|
||||
dispatchImplemented: boolean;
|
||||
status: string;
|
||||
capabilities: string[];
|
||||
};
|
||||
|
||||
export type OrchestratorConfigState = {
|
||||
config: OrchestratorConfig;
|
||||
configVersion: number;
|
||||
@@ -245,6 +255,7 @@ export type OrchestratorConfigState = {
|
||||
source: string;
|
||||
runtime: OrchestratorRuntime;
|
||||
engines: OrchestratorEngineDescriptor[];
|
||||
executors: OrchestratorExecutorDescriptor[];
|
||||
};
|
||||
|
||||
export type OrchestratorServiceHealth = {
|
||||
|
||||
Reference in New Issue
Block a user