Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tv2media/timeline-state-resolver-types

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tv2media/timeline-state-resolver-types - npm Package Compare versions

Comparing version 1.41.1 to 1.42.0

47

dist/vizMSE.d.ts

@@ -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 = {}));

2

package.json
{
"name": "@tv2media/timeline-state-resolver-types",
"version": "1.41.1",
"version": "1.42.0",
"description": "Have timeline, control stuff",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc