UNPKG

migros-api-wrapper

Version:

Making the api of migros more accessible to the public.

20 lines (18 loc) 500 B
export enum SortOrder { ASC = "asc", DESC = "desc", } export enum MigustoSortOrder { RATING_DESC = "rating:DESC", RATING_ASC = "rating:ASC", RELEVANCE_DESC = "relevance:DESC", RELEVANCE_ASC = "relevance:ASC", RATINGCOUNT_DESC = "ratingCount:DESC", RATINGCOUNT_ASC = "ratingCount:ASC", DURATION_DESC = "duration:DESC", DURATION_ASC = "duration:ASC", PUBLISHED_DESC = "published:DESC", PUBLISHED_ASC = "published:ASC", VIDEO_DESC = "video:DESC", VIDEO_ASC = "video:ASC", }