diff --git a/packages/blueprints-integration/src/api/studio.ts b/packages/blueprints-integration/src/api/studio.ts index b56f85187b..3818645f2b 100644 --- a/packages/blueprints-integration/src/api/studio.ts +++ b/packages/blueprints-integration/src/api/studio.ts @@ -117,17 +117,6 @@ export interface StudioBlueprintManifest object - - /** - * Process an ingest operation, to apply changes to the sofie interpretation of the ingest data - */ - processIngestData?: ( - context: IProcessIngestDataContext, - mutableIngestRundown: MutableIngestRundown, - nrcsIngestRundown: IngestRundown, - previousNrcsIngestRundown: IngestRundown | undefined, - changes: NrcsIngestChangeDetails | UserOperationChange - ) => Promise } export interface BlueprintResultStudioBaseline { diff --git a/packages/job-worker/src/ingest/mosDevice/__tests__/mosIngest.test.ts b/packages/job-worker/src/ingest/mosDevice/__tests__/mosIngest.test.ts index 780604efbb..9f1907ab44 100644 --- a/packages/job-worker/src/ingest/mosDevice/__tests__/mosIngest.test.ts +++ b/packages/job-worker/src/ingest/mosDevice/__tests__/mosIngest.test.ts @@ -543,9 +543,7 @@ describe('Test recieved mos ingest payloads', () => { replace: false, }) ).rejects.toThrow( - `Part ${getMosIngestSegmentId(mosTypes.mosString128.stringify(beforeStoryId))} in rundown ${ - rundown.externalId - } not found` + `Part ${mosTypes.mosString128.stringify(beforeStoryId)} in rundown ${rundown.externalId} not found` ) expect( @@ -677,9 +675,7 @@ describe('Test recieved mos ingest payloads', () => { replace: true, }) ).rejects.toThrow( - `Part ${getMosIngestSegmentId(mosTypes.mosString128.stringify(beforeStoryId))} in rundown ${ - rundown.externalId - } not found` + `Part ${mosTypes.mosString128.stringify(beforeStoryId)} in rundown ${rundown.externalId} not found` ) expect( diff --git a/packages/job-worker/src/playout/quickLoopMarkers.ts b/packages/job-worker/src/playout/quickLoopMarkers.ts index 15bb3a8e27..d29dfe6d0f 100644 --- a/packages/job-worker/src/playout/quickLoopMarkers.ts +++ b/packages/job-worker/src/playout/quickLoopMarkers.ts @@ -10,7 +10,6 @@ import { QuickLoopMarker, QuickLoopMarkerType } from '@sofie-automation/corelib/ import { SegmentId } from '@sofie-automation/corelib/dist/dataModel/Ids' import { PlayoutModel } from './model/PlayoutModel' import { clone } from 'underscore' -import { PlayoutModel } from './model/PlayoutModel' export async function handleSetQuickLoopMarker(context: JobContext, data: SetQuickLoopMarkerProps): Promise { return runJobWithPlayoutModel( diff --git a/packages/live-status-gateway/src/topics/activePlaylistTopic.ts b/packages/live-status-gateway/src/topics/activePlaylistTopic.ts index 0de62272ca..4d54bf1d43 100644 --- a/packages/live-status-gateway/src/topics/activePlaylistTopic.ts +++ b/packages/live-status-gateway/src/topics/activePlaylistTopic.ts @@ -24,8 +24,6 @@ import { SegmentHandler } from '../collections/segmentHandler' import { SegmentsHandler } from '../collections/segmentsHandler' import { normalizeArray } from '@sofie-automation/corelib/dist/lib' import { PlaylistTimingType } from '@sofie-automation/blueprints-integration' -import { SegmentsHandler } from '../collections/segmentsHandler' -import { normalizeArray } from '@sofie-automation/corelib/dist/lib' const THROTTLE_PERIOD_MS = 100 diff --git a/packages/meteor-lib/src/api/pubsub.ts b/packages/meteor-lib/src/api/pubsub.ts index d4b6f88564..9c61409c18 100644 --- a/packages/meteor-lib/src/api/pubsub.ts +++ b/packages/meteor-lib/src/api/pubsub.ts @@ -2,6 +2,7 @@ import { BucketId, OrganizationId, PartId, + RundownId, RundownPlaylistActivationId, RundownPlaylistId, ShowStyleBaseId,