Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions src/open-api/types/flows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,7 @@ export interface paths {
description?: string;
/**
* @description A set of terms used to categorize the provider which may be used in
* query and discovery operations. Maximum total length of all
* keywords is 1024 characters.
* query and discovery operations.
*/
keywords?: string[];
/**
Expand Down Expand Up @@ -1371,7 +1370,7 @@ export interface paths {
* of the specified states. By default, Actions in any state will be
* returned.
*/
filter_status?: ("SUCCEEDED" | "FAILED" | "ENDED" | "ACTIVE" | "INACTIVE")[];
filter_status?: ("ACTIVE" | "AWAITING_INPUT" | "ENDED" | "FAILED" | "INACTIVE" | "SUCCEEDED")[];
/**
* @description Performs a case insensitive string based search on the Actions'
* label fields. If multiple values are specified, each Action returned
Expand Down Expand Up @@ -1570,7 +1569,7 @@ export interface paths {
* of the specified states. By default, Actions in any state will be
* returned.
*/
filter_status?: ("SUCCEEDED" | "FAILED" | "ENDED" | "ACTIVE" | "INACTIVE")[];
filter_status?: ("ACTIVE" | "AWAITING_INPUT" | "ENDED" | "FAILED" | "INACTIVE" | "SUCCEEDED")[];
/**
* @description Performs a case insensitive string based search on the Actions'
* label fields. If multiple values are specified, each Action returned
Expand Down Expand Up @@ -2717,7 +2716,7 @@ export interface components {
* @description The current state of the Run.
* @enum {string}
*/
status: "SUCCEEDED" | "FAILED" | "ENDED" | "ACTIVE" | "INACTIVE";
status: "ACTIVE" | "AWAITING_INPUT" | "ENDED" | "FAILED" | "INACTIVE" | "SUCCEEDED";
display_status?: string;
/**
* @description Details about the run execution. This is null for runs of High Assurance
Expand Down