Skip to content
Merged
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
3 changes: 2 additions & 1 deletion src/open-api/types/flows.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2254,12 +2254,13 @@ export interface components {
/** @description A list of scopes according to RunAs values as defined in the Flow. */
globus_auth_scopes_by_RunAs?: string[];
/**
* @deprecated
* @description The role the requesting user has on the Flow.
* @enum {string}
*/
user_role?: "flow_viewer" | "flow_starter" | "flow_administrator" | "flow_owner" | "run_monitor" | "run_manager";
/** @description The list of all roles the requesting user has on the Flow. */
user_roles?: ("flow_viewer" | "flow_starter" | "flow_administrator" | "flow_owner" | "run_monitor" | "run_manager")[];
user_roles?: ("flow_viewer" | "flow_starter" | "flow_administrator" | "flow_owner" | "flow_run_monitor" | "flow_run_manager")[];
/**
* @description A set of Principal URN values, or the value "public"
* indicating the identity of users who can view the Flow
Expand Down