Skip to content

Commit 20968e3

Browse files
committed
chore: merge conflicts
1 parent 20aee34 commit 20968e3

File tree

5 files changed

+3
-20
lines changed

5 files changed

+3
-20
lines changed

packages/blueprints-integration/src/api/studio.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -117,17 +117,6 @@ export interface StudioBlueprintManifest<TRawConfig = IBlueprintConfig, TProcess
117117
* If this method is not defined the config object will be used directly
118118
*/
119119
blueprintConfigToAPI?: (context: ICommonContext, config: TRawConfig) => object
120-
121-
/**
122-
* Process an ingest operation, to apply changes to the sofie interpretation of the ingest data
123-
*/
124-
processIngestData?: (
125-
context: IProcessIngestDataContext,
126-
mutableIngestRundown: MutableIngestRundown<any, any, any>,
127-
nrcsIngestRundown: IngestRundown,
128-
previousNrcsIngestRundown: IngestRundown | undefined,
129-
changes: NrcsIngestChangeDetails | UserOperationChange
130-
) => Promise<void>
131120
}
132121

133122
export interface BlueprintResultStudioBaseline {

packages/job-worker/src/ingest/mosDevice/__tests__/mosIngest.test.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -543,9 +543,7 @@ describe('Test recieved mos ingest payloads', () => {
543543
replace: false,
544544
})
545545
).rejects.toThrow(
546-
`Part ${getMosIngestSegmentId(mosTypes.mosString128.stringify(beforeStoryId))} in rundown ${
547-
rundown.externalId
548-
} not found`
546+
`Part ${mosTypes.mosString128.stringify(beforeStoryId)} in rundown ${rundown.externalId} not found`
549547
)
550548

551549
expect(
@@ -677,9 +675,7 @@ describe('Test recieved mos ingest payloads', () => {
677675
replace: true,
678676
})
679677
).rejects.toThrow(
680-
`Part ${getMosIngestSegmentId(mosTypes.mosString128.stringify(beforeStoryId))} in rundown ${
681-
rundown.externalId
682-
} not found`
678+
`Part ${mosTypes.mosString128.stringify(beforeStoryId)} in rundown ${rundown.externalId} not found`
683679
)
684680

685681
expect(

packages/job-worker/src/playout/quickLoopMarkers.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { QuickLoopMarker, QuickLoopMarkerType } from '@sofie-automation/corelib/
1010
import { SegmentId } from '@sofie-automation/corelib/dist/dataModel/Ids'
1111
import { PlayoutModel } from './model/PlayoutModel'
1212
import { clone } from 'underscore'
13-
import { PlayoutModel } from './model/PlayoutModel'
1413

1514
export async function handleSetQuickLoopMarker(context: JobContext, data: SetQuickLoopMarkerProps): Promise<void> {
1615
return runJobWithPlayoutModel(

packages/live-status-gateway/src/topics/activePlaylistTopic.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ import { SegmentHandler } from '../collections/segmentHandler'
2424
import { SegmentsHandler } from '../collections/segmentsHandler'
2525
import { normalizeArray } from '@sofie-automation/corelib/dist/lib'
2626
import { PlaylistTimingType } from '@sofie-automation/blueprints-integration'
27-
import { SegmentsHandler } from '../collections/segmentsHandler'
28-
import { normalizeArray } from '@sofie-automation/corelib/dist/lib'
2927

3028
const THROTTLE_PERIOD_MS = 100
3129

packages/meteor-lib/src/api/pubsub.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import {
22
BucketId,
33
OrganizationId,
44
PartId,
5+
RundownId,
56
RundownPlaylistActivationId,
67
RundownPlaylistId,
78
ShowStyleBaseId,

0 commit comments

Comments
 (0)