52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { z } from "zod";
|
|
|
|
export const ShortcutBindingSchema = z.object({
|
|
id: z.string(),
|
|
name: z.string(),
|
|
description: z.string(),
|
|
default_binding: z.string(),
|
|
current_binding: z.string(),
|
|
});
|
|
|
|
export const ShortcutBindingsMapSchema = z.record(
|
|
z.string(),
|
|
ShortcutBindingSchema,
|
|
);
|
|
|
|
export const AudioDeviceSchema = z.object({
|
|
index: z.string(),
|
|
name: z.string(),
|
|
is_default: z.boolean(),
|
|
});
|
|
|
|
export const SettingsSchema = z.object({
|
|
bindings: ShortcutBindingsMapSchema,
|
|
push_to_talk: z.boolean(),
|
|
audio_feedback: z.boolean(),
|
|
selected_model: z.string(),
|
|
always_on_microphone: z.boolean(),
|
|
selected_microphone: z.string().nullable().optional(),
|
|
selected_output_device: z.string().nullable().optional(),
|
|
});
|
|
|
|
export const BindingResponseSchema = z.object({
|
|
success: z.boolean(),
|
|
binding: ShortcutBindingSchema.nullable(),
|
|
error: z.string().nullable(),
|
|
});
|
|
|
|
export type AudioDevice = z.infer<typeof AudioDeviceSchema>;
|
|
export type BindingResponse = z.infer<typeof BindingResponseSchema>;
|
|
export type ShortcutBinding = z.infer<typeof ShortcutBindingSchema>;
|
|
export type ShortcutBindingsMap = z.infer<typeof ShortcutBindingsMapSchema>;
|
|
export type Settings = z.infer<typeof SettingsSchema>;
|
|
|
|
export const ModelInfoSchema = z.object({
|
|
id: z.string(),
|
|
name: z.string(),
|
|
description: z.string(),
|
|
size_mb: z.number(),
|
|
is_downloaded: z.boolean(),
|
|
});
|
|
|
|
export type ModelInfo = z.infer<typeof ModelInfoSchema>;
|