feat: manage press kit download via payload

This commit is contained in:
syntaxbullet
2026-06-22 13:11:35 +02:00
parent c5feeaee16
commit e21e2f1210
5 changed files with 17 additions and 3 deletions

View File

@@ -1584,6 +1584,10 @@ export interface Page {
description?: string | null;
kitLabel?: string | null;
kitMeta?: string | null;
/**
* Current frontend file: /Print_BMP.zip
*/
kitFile?: (number | null) | Media;
kitUrl?: string | null;
kitDownloadName?: string | null;
contactEyebrow?: string | null;
@@ -4474,6 +4478,7 @@ export interface PagesSelect<T extends boolean = true> {
description?: T;
kitLabel?: T;
kitMeta?: T;
kitFile?: T;
kitUrl?: T;
kitDownloadName?: T;
contactEyebrow?: T;