0.2.64 update
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user