ExecuteActionConfig
Definition
export interface ExecuteActionConfig extends ExecuteConfigBase {
/** Execution type discriminator */
type: 'action';
/** Lucy model name (e.g., 'Location', 'User') */
model: string;
/** Action name (e.g., 'GetAll', 'Create', 'Update') */
action: string;
/** Action parameters */
parameters?: any;
/** Execution options (caching, batching, etc.) */
options?: ExecutionOptions;
}Usage
import { ExecuteActionConfig } from 'uxp/components';Related Types
Last updated