@tv2media/timeline-state-resolver-types
Advanced tools
Comparing version 1.0.0-release37.3 to 1.0.0-release37.4
@@ -6,2 +6,19 @@ # Change Log | ||
# [6.2.0-release37.4](https://github.com/nrkno/tv-automation-state-timeline-resolver/compare/6.2.0-release37.3...6.2.0-release37.4) (2021-09-30) | ||
### Bug Fixes | ||
- emitting of 'debug' events should only be done if the debug property is truthy. ([5d015a1](https://github.com/nrkno/tv-automation-state-timeline-resolver/commit/5d015a1dfde3ffc86f9aea9366bf72f76537d9a4)) | ||
# [6.2.0-release37.1](https://github.com/nrkno/tv-automation-state-timeline-resolver/compare/6.2.0-release37.0...6.2.0-release37.1) (2021-09-21) | ||
### Features | ||
- map sisyfos channel by its label ([afcf056](https://github.com/nrkno/tv-automation-state-timeline-resolver/commit/afcf056a568f5e18545379c2655b8c1769b98be2)) | ||
- purge unknown elements from the viz-rundown upon activation ([cff4d0c](https://github.com/nrkno/tv-automation-state-timeline-resolver/commit/cff4d0cbcd46b7da97a8de31cb92381286294350)) | ||
# [6.2.0-release37.0](https://github.com/nrkno/tv-automation-state-timeline-resolver/compare/6.1.0-release36.2...6.2.0-release37.0) (2021-09-13) | ||
**Note:** Version bump only for package timeline-state-resolver-types | ||
# [6.1.0-release36.0](https://github.com/nrkno/tv-automation-state-timeline-resolver/compare/6.0.3...6.1.0-release36.0) (2021-07-12) | ||
@@ -8,0 +25,0 @@ |
@@ -10,2 +10,3 @@ import { DeviceType, AtemOptions, CasparCGOptions, HTTPSendOptions, HyperdeckOptions, OBSOptions, OSCOptions, PharosOptions, QuantelOptions, SingularLiveOptions, SisyfosOptions, TCPSendOptions, AbstractOptions, LawoOptions, PanasonicPTZOptions, HTTPWatcherOptions, VizMSEOptions, VMixOptions } from '.'; | ||
options?: T; | ||
debug?: boolean; | ||
} | ||
@@ -12,0 +13,0 @@ export interface SlowReportOptions { |
@@ -9,5 +9,6 @@ import { Mapping } from './mapping'; | ||
CHANNEL = "channel", | ||
CHANNEL_BY_LABEL = "channel_by_label", | ||
CHANNELS = "channels" | ||
} | ||
export declare type MappingSisyfos = MappingSisyfosChannel | MappingSisyfosChannels; | ||
export declare type MappingSisyfos = MappingSisyfosChannel | MappingSisyfosChannelByLabel | MappingSisyfosChannels; | ||
interface MappingSisyfosBase extends Mapping { | ||
@@ -17,2 +18,6 @@ device: DeviceType.SISYFOS; | ||
} | ||
export interface MappingSisyfosChannelByLabel extends MappingSisyfosBase { | ||
mappingType: MappingSisyfosType.CHANNEL_BY_LABEL; | ||
label: string; | ||
} | ||
export interface MappingSisyfosChannel extends MappingSisyfosBase { | ||
@@ -19,0 +24,0 @@ mappingType: MappingSisyfosType.CHANNEL; |
@@ -7,2 +7,3 @@ "use strict"; | ||
MappingSisyfosType["CHANNEL"] = "channel"; | ||
MappingSisyfosType["CHANNEL_BY_LABEL"] = "channel_by_label"; | ||
MappingSisyfosType["CHANNELS"] = "channels"; | ||
@@ -9,0 +10,0 @@ })(MappingSisyfosType = exports.MappingSisyfosType || (exports.MappingSisyfosType = {})); |
@@ -23,2 +23,4 @@ import { Mapping } from './mapping'; | ||
preloadAllElements?: boolean; | ||
/** Whether unknown elements should be purged from the rundown upon activation */ | ||
purgeUnknownElements?: boolean; | ||
/** Whether internal elements should automatically be loaded when added to expectedPlayoutItems */ | ||
@@ -25,0 +27,0 @@ autoLoadInternalElements?: boolean; |
{ | ||
"name": "@tv2media/timeline-state-resolver-types", | ||
"version": "1.0.0-release37.3", | ||
"version": "1.0.0-release37.4", | ||
"description": "Have timeline, control stuff", | ||
@@ -48,3 +48,2 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"info": "npm-scripts-info", | ||
"test": "yarn lint && yarn unit", | ||
@@ -64,11 +63,2 @@ "unit": "jest", | ||
}, | ||
"scripts-info": { | ||
"info": "Display information about the scripts", | ||
"build": "(Trash and re)build the library", | ||
"build:main": "Builds main build command without trash.", | ||
"lint": "Lint all typescript source files", | ||
"validate:dependencies": "Scan dependencies for vulnerabilities and check licenses", | ||
"validate:dev-dependencies": "Scan development dependencies for vulnerabilities", | ||
"license-validate": "Validate licenses for dependencies." | ||
}, | ||
"engines": { | ||
@@ -98,3 +88,3 @@ "node": ">=12.18" | ||
"dependencies": { | ||
"tslib": "^2.1.0" | ||
"tslib": "^2.3.1" | ||
}, | ||
@@ -112,3 +102,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "bce0db57a551854e48b8cb23ac7eef8564a83a69" | ||
"gitHead": "3047e39ef876d9d717b6b6b6cccca28984251361" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
199393
3158
Updatedtslib@^2.3.1