Skip to content

Commit 9e8ee71

Browse files
authored
fix: add plannedStartedPlayback and plannedStoppedPlayback to IBlueprintPartInstanceTimings interface (#1515)
1 parent e7ef19c commit 9e8ee71

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/blueprints-integration/src/documents/partInstance.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,16 @@ export interface IBlueprintPartInstanceTimings {
3131
reportedStartedPlayback?: Time
3232
/** Point in time the Part stopped playing (ie the time of the playout) */
3333
reportedStoppedPlayback?: Time
34+
35+
/**
36+
* Point in time where the Part is planned to start playing.
37+
* This gets set when the part is taken
38+
* It may get set to a point in the past, if an offset is chosen when starting to play the part
39+
*/
40+
plannedStartedPlayback?: Time
41+
/**
42+
* Point in time where the Part is planned to stop playing
43+
* This gets set when the plannedStartedPlayback of the following part is set
44+
*/
45+
plannedStoppedPlayback?: Time
3446
}

0 commit comments

Comments
 (0)