Skip to content

Type Alias: ServiceInfo

Makaio Framework


Makaio Framework / kernel / ServiceInfo

ServiceInfo = z.infer<typeof ServiceInfoSchema>

Defined in: ../../../packages/kernel/src/observability/shared-schemas.ts:74

Inferred type for a platform service info record.

  • ServiceInfo
    • z.infer<typeof ServiceInfoSchema>
      • typeof ServiceInfoSchema
type ServiceInfo = {
name: string;
displayName: string;
state: 'active' | 'stopped' | 'discovered' | 'failed' | 'skipped' | 'initializing';
critical: boolean;
error?: string | undefined;
};