mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-04 13:48:32 -05:00
shopping list delay fix and category change implemented
This commit is contained in:
@@ -139,4 +139,15 @@ export function AutomationToJSON(value?: Omit<Automation, 'created_by'> | null):
|
||||
'disabled': value['disabled'],
|
||||
};
|
||||
}
|
||||
// ----------------------------------------------------------------------
|
||||
// Custom model functions added by custom openapi-generator template
|
||||
// ----------------------------------------------------------------------
|
||||
import {ApiApi, ApiAutomationListRequest, PaginatedAutomationList} from "@/openapi";
|
||||
|
||||
/**
|
||||
* query list endpoint using the provided request parameters
|
||||
*/
|
||||
export function list(requestParameters: ApiAutomationListRequest = {}): Promise<PaginatedAutomationList> {
|
||||
const api = new ApiApi()
|
||||
return api.apiAutomationList(requestParameters)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user