feat: compare (premium), rating-history trend, hover previews
Build & Push Docker Image / build (push) Successful in 2m47s
Build & Push Docker Image / build (push) Successful in 2m47s
This commit is contained in:
@@ -145,6 +145,13 @@ export interface Tool {
|
||||
deletedBy?: string | null;
|
||||
}
|
||||
|
||||
export interface RatingHistoryItem {
|
||||
date: string;
|
||||
usefulness: number;
|
||||
usability: number;
|
||||
combined: number;
|
||||
}
|
||||
|
||||
export interface ToolWithStats {
|
||||
id: number;
|
||||
name: string;
|
||||
@@ -366,6 +373,13 @@ export const ListToolsSort = {
|
||||
recently_updated: 'recently_updated',
|
||||
} as const;
|
||||
|
||||
export type ListCompareToolsParams = {
|
||||
/**
|
||||
* Comma-separated tool ids
|
||||
*/
|
||||
ids: string;
|
||||
};
|
||||
|
||||
export type ListTrashedToolsParams = {
|
||||
search?: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user