Variable OidcDataSchemaConst
OidcDataSchema: Struct<
{
_tag: Literal<["oidc"]>;
clientId: optional<typeof String$>;
errorCode: optional<typeof String$>;
errorMessage: optional<typeof String$>;
phase: Union<
[
Literal<["authorize"]>,
Literal<["exchange"]>,
Literal<["revoke"]>,
Literal<["userinfo"]>,
Literal<["logout"]>,
],
>;
status: Union<[Literal<["success"]>, Literal<["error"]>]>;
},
> = ...