build: trident-sync prepare

This commit is contained in:
xiaojunnuo
2023-01-29 13:44:19 +08:00
parent dcd1023a39
commit 07a45b4530
589 changed files with 36886 additions and 2 deletions
@@ -0,0 +1,12 @@
import { HistoryEntity } from '../history';
import { HistoryLogEntity } from '../history-log';
export class HistoryDetail {
history: HistoryEntity;
log: HistoryLogEntity;
constructor(history: HistoryEntity, log: HistoryLogEntity) {
this.history = history;
this.log = log;
}
}
@@ -0,0 +1,13 @@
import { PipelineEntity } from '../pipeline';
import { HistoryEntity } from '../history';
import { HistoryLogEntity } from '../history-log';
export class PipelineDetail {
pipeline: PipelineEntity;
constructor(pipeline: PipelineEntity) {
this.pipeline = pipeline;
}
last: HistoryEntity;
logs: HistoryLogEntity[];
}