diff --git a/framework/commerce/types/recipes.ts b/framework/commerce/types/recipes.ts index ce143c434..cc15e9a57 100644 --- a/framework/commerce/types/recipes.ts +++ b/framework/commerce/types/recipes.ts @@ -17,16 +17,15 @@ export type RecipesType = { totalItems: number } -export enum SortType { +export enum SortOrder { ASC = 'ASC', DESC = 'DESC', } export type GetAllRecipesOperation = { data: { items: T['items'][], totalItems: number } variables: { + excludeBlogIds:Array, take?: number - sort?: { - id: SortType - } + id?: SortOrder } } \ No newline at end of file