Update sorting options in CMS client

The sorting options in the CMS client have been updated. Specifically, the 'slug' option has been removed from 'sortBy'. This change simplifies the options available for sorting operations.
This commit is contained in:
gbuomprisco
2024-06-15 11:30:20 +08:00
parent f56e2b83b9
commit d3076dfebc

View File

@@ -37,7 +37,7 @@ export namespace Cms {
parentIds?: string[];
language?: string | undefined;
sortDirection?: 'asc' | 'desc';
sortBy?: 'publishedAt' | 'order' | 'title' | 'slug';
sortBy?: 'publishedAt' | 'order' | 'title';
}
export interface GetCategoriesOptions {