/** * Generated by Orval * Do not edit manually. * See `gen:api` script in package.json */ import type { CreateActionSchemaExecutionParams } from './createActionSchemaExecutionParams'; /** * Represents a single action */ export interface CreateActionSchema { /** The name of the action to execute */ action: string; /** A map of parameters to pass to the action */ executionParams?: CreateActionSchemaExecutionParams; /** * The order in which the action should be executed * @minimum 1 */ sortOrder: number; }