import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ResourceOriginEnum } from "./resourceoriginenum.js"; import { SmsControlsMetadataResponseDto } from "./smscontrolsmetadataresponsedto.js"; import { StepIssuesDto } from "./stepissuesdto.js"; /** * Control values for the SMS step */ export type SmsStepResponseDtoControlValues = { /** * JSONLogic filter conditions for conditionally skipping the step execution. Supports complex logical operations with AND, OR, and comparison operators. See https://jsonlogic.com/ for full typing reference. */ skip?: { [k: string]: any; } | undefined; /** * Content of the SMS message. */ body?: string | undefined; additionalProperties?: { [k: string]: any; } | undefined; }; export type SmsStepResponseDto = { /** * Controls metadata for the SMS step */ controls: SmsControlsMetadataResponseDto; /** * Control values for the SMS step */ controlValues?: SmsStepResponseDtoControlValues | 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: "sms"; /** * 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 SmsStepResponseDtoControlValues$inboundSchema: z.ZodType; export declare function smsStepResponseDtoControlValuesFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SmsStepResponseDto$inboundSchema: z.ZodType; export declare function smsStepResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=smsstepresponsedto.d.ts.map