#!/usr/bin/env node import type { ResolvedResourceManagerInitialization, ResolvedSettingsChange, ResolvedWorkflowLaunch } from "../client/resolver.js"; import { type JsonValue } from "../state/json.js"; export type { ResolvedResourceManagerInitialization, ResolvedSettingsChange, ResolvedWorkflowLaunch, } from "../client/resolver.js"; type ResolverRequest = { schema: "pi-workflows.resolve-request.v1"; cwd: string; workflowRef: string; }; type SettingsValidationRequest = { schema: "pi-workflows.settings-validation-request.v1"; cwd: string; workflowRef: string; definitionDigest: string; mountPath: string; current: JsonValue; patch: JsonValue; actorId: string; }; type ResourceManagerInitializationRequest = { schema: "pi-workflows.resource-manager-initialization-request.v1"; cwd: string; resourceManagerName: string; spec: JsonValue; }; export declare function resolveWorkflowLaunch(request: ResolverRequest): Promise; export declare function resolveResourceManagerInitialization(request: ResourceManagerInitializationRequest): Promise; export declare function resolveSettingsChange(request: SettingsValidationRequest): Promise;