timeline-state-resolver-types
Advanced tools
Comparing version 9.2.0-alpha.0 to 9.2.0-nightly-feat-connection-mgmt-SOFIE-1152-20240909-113333-004243e02.0
@@ -6,8 +6,6 @@ # Change Log | ||
## [9.2.0-alpha.0](https://github.com/nrkno/sofie-timeline-state-resolver/compare/9.1.0...9.2.0-alpha.0) (2024-09-09) | ||
### [9.2.0-release52](https://github.com/nrkno/sofie-timeline-state-resolver/compare/9.1.0...9.2.0-release52) (2024-08-19) | ||
### Features | ||
**Note:** Version bump only for package timeline-state-resolver-types | ||
- allow sequential executionMode to paralelize multiple queues of Commands ([84a53cd](https://github.com/nrkno/sofie-timeline-state-resolver/commit/84a53cd5f1ee0978767d46ad766c01841559983d)) | ||
## [9.1.0](https://github.com/nrkno/sofie-timeline-state-resolver/compare/9.0.2...9.1.0) (2024-08-19) | ||
@@ -14,0 +12,0 @@ |
@@ -137,5 +137,13 @@ import * as Timeline from './superfly-timeline'; | ||
Error = "ERROR", | ||
IgnoredNotRelevant = "IGNORED", | ||
Ok = "OK" | ||
} | ||
/** This resolves to a string, where parts can be defined by the datastore */ | ||
export interface TemplateString { | ||
/** The string template. Example: "http://google.com?q={{searchString}}" */ | ||
key: string; | ||
/** Values for the arguments in the key string. Example: { searchString: "TSR" } */ | ||
args?: { | ||
[k: string]: any; | ||
}; | ||
} | ||
//# sourceMappingURL=index.d.ts.map |
@@ -69,5 +69,4 @@ "use strict"; | ||
ActionExecutionResultCode["Error"] = "ERROR"; | ||
ActionExecutionResultCode["IgnoredNotRelevant"] = "IGNORED"; | ||
ActionExecutionResultCode["Ok"] = "OK"; | ||
})(ActionExecutionResultCode = exports.ActionExecutionResultCode || (exports.ActionExecutionResultCode = {})); | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
import { DeviceType } from '..'; | ||
import { DeviceType, TemplateString } from '..'; | ||
export declare enum TimelineContentTypeCasparCg { | ||
@@ -97,3 +97,3 @@ MEDIA = "media", | ||
/** The URL to load */ | ||
url: string; | ||
url: string | TemplateString; | ||
} | ||
@@ -100,0 +100,0 @@ export interface TimelineContentCCGTemplate extends TimelineContentCasparCGBase, TimelineContentCCGProducerBase { |
@@ -1,2 +0,2 @@ | ||
import { DeviceType, HTTPSendCommandContent } from '..'; | ||
import { DeviceType, HTTPSendCommandContent, TemplateString } from '..'; | ||
export type TimelineContentHTTPSendAny = TimelineContentHTTPRequest; | ||
@@ -6,3 +6,6 @@ export interface TimelineContentHTTPSendBase { | ||
} | ||
export type TimelineContentHTTPRequest = TimelineContentHTTPSendBase & HTTPSendCommandContent; | ||
export interface HTTPSendCommandContentExt extends Omit<HTTPSendCommandContent, 'url'> { | ||
url: string | TemplateString; | ||
} | ||
export type TimelineContentHTTPRequest = TimelineContentHTTPSendBase & HTTPSendCommandContentExt; | ||
//# sourceMappingURL=httpSend.d.ts.map |
@@ -1,2 +0,2 @@ | ||
import { DeviceType } from '..'; | ||
import { DeviceType, TemplateString } from '..'; | ||
export declare enum TimelineContentTypeSofieChef { | ||
@@ -12,4 +12,4 @@ URL = "url" | ||
type: TimelineContentTypeSofieChef.URL; | ||
url: string; | ||
url: string | TemplateString; | ||
} | ||
//# sourceMappingURL=sofieChef.d.ts.map |
{ | ||
"name": "timeline-state-resolver-types", | ||
"version": "9.2.0-alpha.0", | ||
"version": "9.2.0-nightly-feat-connection-mgmt-SOFIE-1152-20240909-113333-004243e02.0", | ||
"description": "Have timeline, control stuff", | ||
@@ -86,3 +86,3 @@ "main": "dist/index.js", | ||
"dependencies": { | ||
"tslib": "^2.6.2" | ||
"tslib": "^2.6.3" | ||
}, | ||
@@ -100,3 +100,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "5c359565fef3b0e05868aa05d56d9bdd1716a061" | ||
"gitHead": "8443e1ef02bb79cdc6f10ab6bb6bd4b6e6c8b640" | ||
} |
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
329098
4701
Updatedtslib@^2.6.3