Add component structure commands
This commit is contained in:
parent
9d4d4082fe
commit
604604f056
15 changed files with 1058 additions and 5 deletions
|
|
@ -0,0 +1,24 @@
|
|||
import type { DistributionBoardComponentStructureProjectCommand } from "../models/distribution-board-component-structure-project-command.model.js";
|
||||
import type {
|
||||
AppendedProjectRevision,
|
||||
ProjectRevisionSource,
|
||||
} from "./project-revision.store.js";
|
||||
|
||||
export interface ExecuteDistributionBoardComponentStructureCommandInput {
|
||||
projectId: string;
|
||||
expectedRevision: number;
|
||||
source: ProjectRevisionSource;
|
||||
description?: string;
|
||||
actorId?: string;
|
||||
historyTargetChangeSetId?: string;
|
||||
command: DistributionBoardComponentStructureProjectCommand;
|
||||
}
|
||||
|
||||
export interface DistributionBoardComponentStructureProjectCommandStore {
|
||||
execute(
|
||||
input: ExecuteDistributionBoardComponentStructureCommandInput
|
||||
): {
|
||||
revision: AppendedProjectRevision;
|
||||
inverse: DistributionBoardComponentStructureProjectCommand;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue