* Squash * Removed unused files Not mine, someone merged that stuff in earlier. * fix: patch redaction regressions and schema breakages --------- Co-authored-by: Peter Steinberger <steipete@gmail.com>
6 lines
192 B
TypeScript
6 lines
192 B
TypeScript
import { z } from "zod";
|
|
|
|
// Everything registered here will be redacted when the config is exposed,
|
|
// e.g. sent to the dashboard
|
|
export const sensitive = z.registry<undefined, z.ZodType>();
|