Variable msUnifiedEntitySchemaConst
msUnifiedEntitySchema: ZodObject<
{
visibility: ZodOptional<
ZodUnion<[ZodLiteral<"public">, ZodLiteral<"private">]>,
>;
} & {
id: ZodType<string, ZodTypeDef, string>;
mimetype: ZodOptional<ZodString>;
size: ZodOptional<ZodNumber>;
title: ZodType<string, ZodTypeDef, string>;
type: ZodType<string, ZodTypeDef, string>;
webUrl: ZodOptional<ZodString>;
},
"strip",
ZodTypeAny,
{
id: string;
mimetype?: string;
size?: number;
title: string;
type: string;
visibility?: "public"
| "private";
webUrl?: string;
},
{
id: string;
mimetype?: string;
size?: number;
title: string;
type: string;
visibility?: "public"
| "private";
webUrl?: string;
},
> = ...