Suggestion
type Suggestion =
| {
[key: string]: unknown;
content: {
locale: string;
templates: {
[key: string]: unknown;
id: string;
name: string;
templateType: "project" | "setup";
}[];
};
isDeleted: boolean;
type: "templates" | "most_used_user_templates";
}
| {
[key: string]: unknown;
content: {
locale: string;
templates: {
[key: string]: unknown;
id: string;
name: string;
templateType: "project" | "setup";
workspaceId: string | null;
}[];
};
isDeleted: boolean;
type: "most_used_workspace_templates";
};