UNPKG

626 BTypeScriptView Raw
1import { SdmGoalState } from "../../typings/types";
2import { SdmProvenance } from "./SdmGoalMessage";
3import { GoalSetTag } from "./tagGoalSet";
4/**
5 * Data persisted in the Atomist Cortex
6 */
7export interface SdmGoalSetMessage {
8 sha: string;
9 branch: string;
10 repo: {
11 name: string;
12 owner: string;
13 providerId: string;
14 };
15 state: SdmGoalState;
16 goalSet: string;
17 goalSetId: string;
18 ts: number;
19 goals: Array<{
20 name: string;
21 uniqueName: string;
22 }>;
23 provenance: SdmProvenance;
24 tags?: GoalSetTag[];
25}
26//# sourceMappingURL=SdmGoalSetMessage.d.ts.map
\No newline at end of file