Add external object new circuit command

This commit is contained in:
2026-08-02 18:55:57 +02:00
parent 347b3717c3
commit a69b7b603f
13 changed files with 880 additions and 228 deletions
@@ -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;
};
}