Skip to content

Commit

Permalink
fix: blueprint-integration missed typing in #1077
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Jan 15, 2024
1 parent dc22c58 commit bd5e36f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ export interface IActionExecutionContext
options?: {
excludeCurrentPart?: boolean
originalOnly?: boolean
pieceMetaDataFilter?: any // Mongo query against properties inside of piece.metaData
piecePrivateDataFilter?: any // Mongo query against properties inside of piece.metaData
}
): Promise<IBlueprintPieceInstance | undefined>
/** Get the previous scripted piece on a given layer, looking backwards from the current part. */
findLastScriptedPieceOnLayer(
sourceLayerId: string | string[],
options?: {
excludeCurrentPart?: boolean
pieceMetaDataFilter?: any
piecePrivateDataFilter?: any
}
): Promise<IBlueprintPiece | undefined>
/** Gets the PartInstance for a PieceInstance retrieved from findLastPieceOnLayer. This primarily allows for accessing metadata of the PartInstance */
Expand Down

0 comments on commit bd5e36f

Please sign in to comment.