File tree Expand file tree Collapse file tree 6 files changed +7
-8
lines changed
blueprints-integration/src Expand file tree Collapse file tree 6 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1- import { UserEditingDefinition } from '../userEditing'
1+ import type { UserEditingDefinition } from '../userEditing'
22import type { NoteSeverity } from '../lib'
33import type { ITranslatableMessage } from '../translations'
44
Original file line number Diff line number Diff line change 1- import { UserEditingDefinition } from '../userEditing'
1+ import type { UserEditingDefinition } from '../userEditing'
22import type { IBlueprintPieceGeneric } from './pieceGeneric'
33
44/** Special types of pieces. Some are not always used in all circumstances */
Original file line number Diff line number Diff line change 1- import { UserEditingDefinition } from '../userEditing'
1+ import type { UserEditingDefinition } from '../userEditing'
22import type { RundownPlaylistTiming } from './playlistTiming'
33
44/** The Rundown generated from Blueprint */
Original file line number Diff line number Diff line change 1- import { UserEditingDefinition } from '../userEditing'
1+ import type { UserEditingDefinition } from '../userEditing'
22
33export enum SegmentDisplayMode {
44 Timeline = 'timeline' ,
Original file line number Diff line number Diff line change 1- import { JSONBlob } from '@sofie-automation/shared-lib/dist/lib/JSONBlob'
1+ import type { JSONBlob } from '@sofie-automation/shared-lib/dist/lib/JSONBlob'
22import type { ITranslatableMessage } from './translations'
3- import { JSONSchema } from '@sofie-automation/shared-lib/dist/lib/JSONSchemaTypes'
3+ import type { JSONSchema } from '@sofie-automation/shared-lib/dist/lib/JSONSchemaTypes'
44
55/**
66 * Description of a user performed editing operation allowed on an document
Original file line number Diff line number Diff line change @@ -455,7 +455,7 @@ async function applyCalculatedIngestChangesToModel(
455455 context ,
456456 ingestModel ,
457457 newIngestRundown ,
458- GenerateRundownMode . MetadataChange // TODO - full vs metadata?
458+ GenerateRundownMode . MetadataChange
459459 )
460460 if ( regenerateCommitData ?. regenerateAllContents ) {
461461 const regeneratedSegmentIds = await calculateSegmentsAndRemovalsFromIngestData (
@@ -488,7 +488,6 @@ async function applyCalculatedIngestChangesToModel(
488488 for ( const segmentId of Object . keys ( computedIngestChanges . segmentsUpdatedRanks ) ) {
489489 changedSegmentIdsSet . add ( ingestModel . getSegmentIdFromExternalId ( segmentId ) )
490490 }
491- // TODO - include changed external ids?
492491
493492 // Remove/orphan old segments
494493 const orphanedSegmentIds : SegmentId [ ] = [ ]
You can’t perform that action at this time.
0 commit comments