Variable LocalIdentityStoreSchemaConst
LocalIdentityStoreSchema: ZodObject<
{
kind: ZodLiteral<"local">;
name: ZodString;
params: ZodObject<
{ path: ZodString; realm: ZodOptional<ZodString> },
"strip",
ZodTypeAny,
{ path: string; realm?: string },
{ path: string; realm?: string },
>;
},
"strip",
ZodTypeAny,
{ kind: "local"; name: string; params: { path: string; realm?: string } },
{ kind: "local"; name: string; params: { path: string; realm?: string } },
> = ...
Local identity store schema Uses the authcrunch wrapper structure: name, kind, params