Type Alias LifecycleOutput
LifecycleOutput: {
nodes: {
id: string;
inferredPhase: "unknown" | "early" | "middle" | "late" | "terminal";
inferredState: string;
lifecycle?: Record<string, string | boolean>;
name: string;
status?:
| "deprecated"
| "proposed"
| "accepted"
| "active"
| "implemented"
| "adopted"
| "defined"
| "introduced"
| "in_progress"
| "complete"
| "consolidated"
| "experimental"
| "retired"
| "superseded"
| "abandoned"
| "deferred";
type: string;
}[];
summary: Record<string, number>;
}
Type Declaration
nodes: {
id: string;
inferredPhase: "unknown" | "early" | "middle" | "late" | "terminal";
inferredState: string;
lifecycle?: Record<string, string | boolean>;
name: string;
status?:
| "deprecated"
| "proposed"
| "accepted"
| "active"
| "implemented"
| "adopted"
| "defined"
| "introduced"
| "in_progress"
| "complete"
| "consolidated"
| "experimental"
| "retired"
| "superseded"
| "abandoned"
| "deferred";
type: string;
}[]
summary: Record<string, number>
Output of lifecycle inference operation.