Variable AuthorizationResultSchemaConst
AuthorizationResultSchema: ZodObject<
{
status: ZodUnion<
readonly [
ZodLiteral<"authorized">,
ZodLiteral<"unauthorized">,
ZodLiteral<"unknown">,
],
>;
publisher_domain: ZodOptional<ZodString>;
sales_agent_url: ZodOptional<ZodString>;
violation: ZodOptional<
ZodObject<{ code: ZodString; message: ZodString }, $loose>,
>;
},
$loose,
> = ...