mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-08 15:48:27 -05:00
shopping list delay fix and category change implemented
This commit is contained in:
@@ -130,4 +130,15 @@ export function ExportLogToJSON(value?: Omit<ExportLog, 'created_by'|'created_at
|
||||
'possibly_not_expired': value['possiblyNotExpired'],
|
||||
};
|
||||
}
|
||||
// ----------------------------------------------------------------------
|
||||
// Custom model functions added by custom openapi-generator template
|
||||
// ----------------------------------------------------------------------
|
||||
import {ApiApi, ApiExportLogListRequest, PaginatedExportLogList} from "@/openapi";
|
||||
|
||||
/**
|
||||
* query list endpoint using the provided request parameters
|
||||
*/
|
||||
export function list(requestParameters: ApiExportLogListRequest = {}): Promise<PaginatedExportLogList> {
|
||||
const api = new ApiApi()
|
||||
return api.apiExportLogList(requestParameters)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user