mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-07 01:16:28 +02:00
22 lines
556 B
TypeScript
22 lines
556 B
TypeScript
/**
|
|
* 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;
|
|
}
|