/
sbars
/
claude-code
Обзор
Документация
Войти
/
sbars
/
claude-code
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
services/remoteManagedSettings/types.ts
31 строка
1 KB
kuberwastaken
init
31 мар 2026, 13:55
31 мар 2026, 13:55
ec53fcb
Код
Авторство
О чём код?
import { z } from 'zod/v4' import { lazySchema } from '../../utils/lazySchema.js' import type { SettingsJson } from '../../utils/settings/types.js' /** * Schema for the remotely managed settings response. * Note: Uses permissive z.record() instead of SettingsSchema to avoid circular dependency. * Full validation is performed in index.ts after parsing using SettingsSchema.safeParse(). */ export const RemoteManagedSettingsResponseSchema = lazySchema(() => z.object({ uuid: z.string(), // Settings UUID checksum: z.string(), settings: z.record(z.string(), z.unknown()) as z.ZodType<SettingsJson>, }), ) export type RemoteManagedSettingsResponse = z.infer< ReturnType<typeof RemoteManagedSettingsResponseSchema> > /** * Result of fetching remotely managed settings */ export type RemoteManagedSettingsFetchResult = { success: boolean settings?: SettingsJson | null // null means 304 Not Modified (cache is valid) checksum?: string error?: string skipRetry?: boolean // If true, don't retry on failure (e.g., auth errors) }