mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-02 01:17:58 +02:00
20 lines
522 B
TypeScript
20 lines
522 B
TypeScript
/**
|
|
* Generated by Orval
|
|
* Do not edit manually.
|
|
* See `gen:api` script in package.json
|
|
*/
|
|
|
|
/**
|
|
* The state of the action. Can be one of `not started`, `started`, `success`, or `failed`.
|
|
*/
|
|
export type ActionEventSchemaState =
|
|
(typeof ActionEventSchemaState)[keyof typeof ActionEventSchemaState];
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-redeclare
|
|
export const ActionEventSchemaState = {
|
|
not_started: 'not started',
|
|
started: 'started',
|
|
success: 'success',
|
|
failed: 'failed',
|
|
} as const;
|