Variable PushNotificationConfigSchemaConst
PushNotificationConfigSchema: ZodObject<
{
url: ZodString;
token: ZodOptional<ZodNullable<ZodString>>;
authentication: ZodObject<
{
schemes: ZodArray<
ZodUnion<readonly [ZodLiteral<"Bearer">, ZodLiteral<"HMAC-SHA256">]>,
>;
credentials: ZodString;
},
$loose,
>;
},
$loose,
> = ...