feat(core): Add onlySharedWithMe filter to GET /workflows endpoint (no-changelog) (#14853)

This commit is contained in:
Ricardo Espinoza
2025-04-28 14:04:33 -04:00
committed by GitHub
parent eb465763cf
commit d2178a13b1
5 changed files with 74 additions and 1 deletions

View File

@@ -45,7 +45,11 @@ export declare namespace WorkflowRequest {
{},
{},
{},
ListQuery.Params & { includeScopes?: string; includeFolders?: string }
ListQuery.Params & {
includeScopes?: string;
includeFolders?: string;
onlySharedWithMe?: string;
}
> & {
listQueryOptions: ListQuery.Options;
};