fix: add authenticated product image contract

This commit is contained in:
2026-09-12 16:19:41 +08:00
parent fe62a7f721
commit f900be30ba
4 changed files with 152 additions and 16 deletions
+3
View File
@@ -288,6 +288,7 @@ export interface ProductImage {
image_type: string;
is_cover: boolean;
created_at: string;
image_url?: string;
}
export interface ProductWordcloudArchive {
@@ -309,6 +310,8 @@ export interface ProductVersion {
metadata: Record<string, unknown>;
created_at: string;
design_preview_path: string;
design_preview_image_id?: string | null;
design_preview_url?: string;
wordcloud_count: number;
wordcloud_archives: ProductWordcloudArchive[];
}