Add project device structure history
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import type { ProjectDeviceStructureProjectCommand } from "../models/project-device-structure-project-command.model.js";
|
||||
import type {
|
||||
AppendedProjectRevision,
|
||||
ProjectRevisionSource,
|
||||
} from "./project-revision.store.js";
|
||||
|
||||
export interface ExecuteProjectDeviceStructureCommandInput {
|
||||
projectId: string;
|
||||
expectedRevision: number;
|
||||
source: ProjectRevisionSource;
|
||||
description?: string;
|
||||
actorId?: string;
|
||||
historyTargetChangeSetId?: string;
|
||||
command: ProjectDeviceStructureProjectCommand;
|
||||
}
|
||||
|
||||
export interface ExecutedProjectDeviceStructureCommand {
|
||||
revision: AppendedProjectRevision;
|
||||
inverse: ProjectDeviceStructureProjectCommand;
|
||||
}
|
||||
|
||||
export interface ProjectDeviceStructureProjectCommandStore {
|
||||
execute(
|
||||
input: ExecuteProjectDeviceStructureCommandInput
|
||||
): ExecutedProjectDeviceStructureCommand;
|
||||
}
|
||||
Reference in New Issue
Block a user