diff --git a/packages/blueprints-integration/src/documents/pieceGeneric.ts b/packages/blueprints-integration/src/documents/pieceGeneric.ts index 10384ce440d..f3be1875760 100644 --- a/packages/blueprints-integration/src/documents/pieceGeneric.ts +++ b/packages/blueprints-integration/src/documents/pieceGeneric.ts @@ -15,11 +15,13 @@ export interface IBlueprintDirectPlayBase { type: IBlueprintDirectPlayType } export interface IBlueprintDirectPlayAdLibPiece extends IBlueprintDirectPlayBase { + /** Copy the Piece and insert it dynamically at the playhead, as if it were an adlib */ type: IBlueprintDirectPlayType.AdLibPiece } export interface IBlueprintDirectPlayAdLibAction extends IBlueprintDirectPlayBase { + /** When direct playing a Piece execute a specified AdLib Action */ type: IBlueprintDirectPlayType.AdLibAction - /** Id of the action */ + /** Id of the action to be executed when user requests to direct play a Piece */ actionId: string /** Properties defining the action behaviour */ userData: ActionUserData @@ -69,7 +71,7 @@ export interface IBlueprintPieceGeneric