feat(core): Introduce new query string parameter includeFolders to GET /workflows endpoint (no-changelog) (#13352)

This commit is contained in:
Ricardo Espinoza
2025-02-21 13:54:15 -05:00
committed by GitHub
parent 243042f217
commit c3f111275b
12 changed files with 1171 additions and 101 deletions

View File

@@ -40,7 +40,12 @@ export declare namespace WorkflowRequest {
type Get = AuthenticatedRequest<{ workflowId: string }>;
type GetMany = AuthenticatedRequest<{}, {}, {}, ListQuery.Params & { includeScopes?: string }> & {
type GetMany = AuthenticatedRequest<
{},
{},
{},
ListQuery.Params & { includeScopes?: string; includeFolders?: string }
> & {
listQueryOptions: ListQuery.Options;
};