Type Alias: ServiceInfo
Makaio Framework / kernel / ServiceInfo
Type Alias: ServiceInfo
Section titled “Type Alias: ServiceInfo”ServiceInfo =
z.infer<typeofServiceInfoSchema>
Defined in: ../../../packages/kernel/src/observability/shared-schemas.ts:74
Inferred type for a platform service info record.
Type Composition
Section titled “Type Composition”ServiceInfoz.infer<typeof ServiceInfoSchema>typeof ServiceInfoSchema
Resolved Shape
Section titled “Resolved Shape”type ServiceInfo = { name: string; displayName: string; state: 'active' | 'stopped' | 'discovered' | 'failed' | 'skipped' | 'initializing'; critical: boolean; error?: string | undefined;};