feat(cv): expand builder studio tools

This commit is contained in:
cesnimda
2026-08-29 01:45:30 +02:00
parent f794265e3e
commit 0f17d95c57
10 changed files with 434 additions and 47 deletions
+9 -1
View File
@@ -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;