forked from jappel/leistungsbilanz-ts
Add atomic Revit initial import
This commit is contained in:
parent
e87a3289fa
commit
c634570018
16 changed files with 3150 additions and 8 deletions
|
|
@ -0,0 +1,19 @@
|
|||
import type { ExternalInitialImportProjectCommand } from "../models/external-initial-import-project-command.model.js";
|
||||
import type { AppendedProjectRevision, ProjectRevisionSource } from "./project-revision.store.js";
|
||||
|
||||
export interface ExecuteExternalInitialImportCommandInput {
|
||||
projectId: string;
|
||||
expectedRevision: number;
|
||||
source: ProjectRevisionSource;
|
||||
description?: string;
|
||||
actorId?: string;
|
||||
historyTargetChangeSetId?: string;
|
||||
command: ExternalInitialImportProjectCommand;
|
||||
}
|
||||
|
||||
export interface ExternalInitialImportProjectCommandStore {
|
||||
execute(input: ExecuteExternalInitialImportCommandInput): {
|
||||
revision: AppendedProjectRevision;
|
||||
inverse: ExternalInitialImportProjectCommand;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue