Introduces a ProblemManager that detects and surfaces actionable issues (stale config, legacy frigate-hass-card resources, slow/failed streams) via status bar indicators and notification popups with fix actions.
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const linkSchema = z.object({
|
|
url: z.string(),
|
|
title: z.string(),
|
|
});
|
|
export type Link = z.infer<typeof linkSchema>;
|