import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ControlsMetadataDto } from "./controlsmetadatadto.js"; import { ResourceOriginEnum } from "./resourceoriginenum.js"; import { StepIssuesDto } from "./stepissuesdto.js"; export type StepResponseDto = { /** * Controls metadata for the step */ controls: ControlsMetadataDto; /** * Control values for the step (alias for controls.values) */ controlValues?: { [k: string]: any; } | undefined; /** * JSON Schema for variables, follows the JSON Schema standard */ variables: { [k: string]: any; }; /** * Unique identifier of the step */ stepId: string; /** * Database identifier of the step */ id: string; /** * Name of the step */ name: string; /** * Slug of the step */ slug: string; /** * Type of the step */ type: string; /** * Origin of the layout */ origin: ResourceOriginEnum; /** * Workflow identifier */ workflowId: string; /** * Workflow database identifier */ workflowDatabaseId: string; /** * Issues associated with the step */ issues?: StepIssuesDto | undefined; /** * Hash identifying the deployed Cloudflare Worker for this step */ stepResolverHash?: string | undefined; }; /** @internal */ export declare const StepResponseDto$inboundSchema: z.ZodType; export declare function stepResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=stepresponsedto.d.ts.map