Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

chore: remove AsRunEventContext getIngestData* functions [publish] #81

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions src/context.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { IBlueprintAsRunLogEvent } from './asRunLog'
import { IngestPart, ExtendedIngestRundown } from './ingest'
import { IBlueprintExternalMessageQueueObj } from './message'
import { OmitId } from './lib'
import {
Expand Down Expand Up @@ -177,15 +176,4 @@ export interface AsRunEventContext extends RundownContext {
* @param id Id of partInstance to fetch items in
*/
getPieceInstances(partInstanceId: string): Readonly<IBlueprintPieceInstance[]>

/** Ingest Data */

/** Get the ingest data related to the rundown */
getIngestDataForRundown(): Readonly<ExtendedIngestRundown> | undefined

/** Get the ingest data related to a part */
getIngestDataForPart(part: Readonly<IBlueprintPartDB>): Readonly<IngestPart> | undefined

/** Get the ingest data related to a partInstance */
getIngestDataForPartInstance(partInstance: Readonly<IBlueprintPartInstance>): Readonly<IngestPart> | undefined
}