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