@tv2media/timeline-state-resolver-types
Advanced tools
Comparing version 1.0.0-release37.6 to 1.0.0-release37.7
@@ -15,4 +15,2 @@ import { Mapping } from './mapping'; | ||
engineRestPort?: number; | ||
/** Identifier of the "show" to use */ | ||
showID: string; | ||
/** Identifier of the "profile" to send commands to */ | ||
@@ -48,5 +46,7 @@ profile: string; | ||
CLEAR_ALL_ELEMENTS = "clear_all_elements", | ||
CLEANUP_SHOWS = "cleanup_shows", | ||
INITIALIZE_SHOWS = "initialize_shows", | ||
CONCEPT = "concept" | ||
} | ||
export declare type TimelineObjVIZMSEAny = TimelineObjVIZMSEElementInternal | TimelineObjVIZMSEElementPilot | TimelineObjVIZMSEElementContinue | TimelineObjVIZMSELoadAllElements | TimelineObjVIZMSEClearAllElements | TimelineObjVIZMSEConcept; | ||
export declare type TimelineObjVIZMSEAny = TimelineObjVIZMSEElementInternal | TimelineObjVIZMSEElementPilot | TimelineObjVIZMSEElementContinue | TimelineObjVIZMSELoadAllElements | TimelineObjVIZMSEClearAllElements | TimelineObjVIZMSEInitializeShows | TimelineObjVIZMSECleanupShows | TimelineObjVIZMSEConcept; | ||
export interface TimelineObjVIZMSEBase extends TSRTimelineObjBase { | ||
@@ -84,2 +84,4 @@ content: { | ||
templateData: Array<string>; | ||
/** Which Show to place this element in */ | ||
showId: string; | ||
/** Whether this element should have its take delayed until after an out transition has finished */ | ||
@@ -130,4 +132,22 @@ delayTakeAfterOutTransition?: boolean; | ||
channelsToSendCommands?: string[]; | ||
/** IDs of the Show to use for taking the special template */ | ||
showId: string; | ||
}; | ||
} | ||
export interface TimelineObjVIZMSEInitializeShows extends TSRTimelineObjBase { | ||
content: { | ||
deviceType: DeviceType.VIZMSE; | ||
type: TimelineContentTypeVizMSE.INITIALIZE_SHOWS; | ||
/** IDs of the Shows to initialize */ | ||
showIds: string[]; | ||
}; | ||
} | ||
export interface TimelineObjVIZMSECleanupShows extends TSRTimelineObjBase { | ||
content: { | ||
deviceType: DeviceType.VIZMSE; | ||
type: TimelineContentTypeVizMSE.CLEANUP_SHOWS; | ||
/** IDs of the Shows to cleanup */ | ||
showIds: string[]; | ||
}; | ||
} | ||
export interface TimelineObjVIZMSEConcept extends TimelineObjVIZMSEBase { | ||
@@ -151,12 +171,21 @@ content: { | ||
} | ||
export interface VIZMSEPlayoutItemContent { | ||
/** Name of the element, or Pilot Element */ | ||
templateName: string | number; | ||
/** Data fields of the element (for internal elements only) */ | ||
templateData?: string[]; | ||
export interface VIZMSEPlayoutItemContentBase { | ||
/** What channel to use for the element */ | ||
channelName?: string; | ||
channel?: string; | ||
/** If true, won't be preloaded (cued) automatically */ | ||
noAutoPreloading?: boolean; | ||
} | ||
export interface VIZMSEPlayoutItemContentInternal extends VIZMSEPlayoutItemContentBase { | ||
/** Name of the template that this element uses */ | ||
templateName: string; | ||
/** Data fields of the element */ | ||
templateData?: string[]; | ||
/** Which Show to place this element in */ | ||
showId: string; | ||
} | ||
export interface VIZMSEPlayoutItemContentExternal extends VIZMSEPlayoutItemContentBase { | ||
/** Id of the Pilot Element */ | ||
vcpid: number; | ||
} | ||
export declare type VIZMSEPlayoutItemContent = VIZMSEPlayoutItemContentExternal | VIZMSEPlayoutItemContentInternal; | ||
//# sourceMappingURL=vizMSE.d.ts.map |
@@ -11,2 +11,4 @@ "use strict"; | ||
TimelineContentTypeVizMSE["CLEAR_ALL_ELEMENTS"] = "clear_all_elements"; | ||
TimelineContentTypeVizMSE["CLEANUP_SHOWS"] = "cleanup_shows"; | ||
TimelineContentTypeVizMSE["INITIALIZE_SHOWS"] = "initialize_shows"; | ||
TimelineContentTypeVizMSE["CONCEPT"] = "concept"; | ||
@@ -13,0 +15,0 @@ })(TimelineContentTypeVizMSE = exports.TimelineContentTypeVizMSE || (exports.TimelineContentTypeVizMSE = {})); |
{ | ||
"name": "@tv2media/timeline-state-resolver-types", | ||
"version": "1.0.0-release37.6", | ||
"version": "1.0.0-release37.7", | ||
"description": "Have timeline, control stuff", | ||
@@ -99,3 +99,3 @@ "main": "dist/index.js", | ||
}, | ||
"gitHead": "83931a049f08f92292ce21c46c92b8d483754689" | ||
"gitHead": "df3c64376830ed422655e0c7a6181c89f9624bcf" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
201935
3199