feat(cv): expand builder studio tools
This commit is contained in:
@@ -1,7 +1,15 @@
|
||||
import { api } from "./api";
|
||||
|
||||
// Mirrors the backend CvVariantSettings (the lens over the master career profile).
|
||||
export type CvSectionSetting = { key: string; hidden?: boolean; title?: string; itemOrder?: string[]; items?: string[] };
|
||||
export type CvSectionSetting = {
|
||||
key: string;
|
||||
hidden?: boolean;
|
||||
title?: string;
|
||||
itemOrder?: string[];
|
||||
items?: string[];
|
||||
presentation?: "rows" | "grid" | "compact" | "bubble" | null;
|
||||
columns?: 1 | 2 | null;
|
||||
};
|
||||
export type CvItemOverride = { hidden?: boolean; title?: string; subtitle?: string; bullets?: string[] };
|
||||
export type CvCustomSectionSetting = {
|
||||
key: string;
|
||||
|
||||
Reference in New Issue
Block a user