Add external object new circuit command
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import type { ExternalObjectNewCircuitProjectCommand } from "../models/external-object-new-circuit-project-command.model.js";
|
||||
import type { AppendedProjectRevision, ProjectRevisionSource } from "./project-revision.store.js";
|
||||
|
||||
export interface ExecuteExternalObjectNewCircuitCommandInput {
|
||||
projectId: string;
|
||||
expectedRevision: number;
|
||||
source: ProjectRevisionSource;
|
||||
description?: string;
|
||||
actorId?: string;
|
||||
historyTargetChangeSetId?: string;
|
||||
command: ExternalObjectNewCircuitProjectCommand;
|
||||
}
|
||||
|
||||
export interface ExternalObjectNewCircuitProjectCommandStore {
|
||||
execute(input: ExecuteExternalObjectNewCircuitCommandInput): {
|
||||
revision: AppendedProjectRevision;
|
||||
inverse: ExternalObjectNewCircuitProjectCommand;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user