@video-editor/protocol 0.0.1-beta.24 → 0.0.1-beta.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +3479 -3298
  3. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -442,6 +442,7 @@ export declare function createVideoProtocolManager(protocol: IVideoProtocol, opt
442
442
  removeTransition: (segmentId: string) => boolean;
443
443
  updateTransition: (segmentId: string, updater: (transition: ITransition) => void) => boolean;
444
444
  replaceTrackId: (oldTrackId: string, newTrackId: string) => boolean;
445
+ replaceSegmentId: (oldSegmentId: string, newSegmentId: string) => boolean;
445
446
  undo: () => {
446
447
  success: boolean;
447
448
  affectedSegments: SegmentUnion[];