undo changes that made category optional

This commit is contained in:
Mary Hipp
2024-10-11 10:24:50 -04:00
committed by Mary Hipp Rogers
parent b33dbfc95f
commit acfeb4a276
4 changed files with 10 additions and 19 deletions

View File

@@ -20050,7 +20050,7 @@ export interface operations {
/** @description The direction to order by */
direction?: components["schemas"]["SQLiteDirection"];
/** @description The category of workflow to get */
category?: components["schemas"]["WorkflowCategory"] | null;
category?: components["schemas"]["WorkflowCategory"];
/** @description The text to query by (matches name and description) */
query?: string | null;
};