0.2.64 update

This commit is contained in:
ponzischeme89
2026-08-15 09:23:26 +12:00
parent a2ca7e8061
commit d5d47473a2
90 changed files with 9188 additions and 451 deletions
+17 -2
View File
@@ -101,6 +101,18 @@ export interface HeroPolicy {
primeSubtitle: string;
placements?: Record<HeroPlacement, HeroPlacementPolicy>;
schedules?: HeroSchedule[] | null;
timeZone?: string;
}
export interface ReleaseBuilderStatus {
state: 'idle' | 'running' | 'succeeded' | 'failed';
tag?: string;
mandatory: boolean;
startedAt?: string;
finishedAt?: string;
message?: string;
logs: string[] | null;
fallback: string;
}
export type HeroPlacement = 'home' | 'movies' | 'tv_shows';
@@ -136,9 +148,12 @@ export interface RequestUsage {
export interface HeroSchedule {
id: string;
itemId: string;
startAt: string;
endAt: string;
startAt?: string;
endAt?: string;
weekdays?: number[];
frequency?: 'daily' | 'weekly';
startTime?: string;
endTime?: string;
priority: number;
userId?: string;
enabled: boolean;