Variable WebhookConfigSchemaConst
WebhookConfigSchema: ZodObject<
{
headers: ZodOptional<ZodNullable<ZodRecord<ZodString, ZodString>>>;
max_attempts: ZodOptional<ZodNullable<ZodNumber>>;
secret_ref: ZodOptional<ZodNullable<ZodString>>;
signing_secret: ZodOptional<ZodNullable<ZodString>>;
timeout_seconds: ZodOptional<ZodNullable<ZodNumber>>;
url: ZodString;
},
"strict",
ZodTypeAny,
{
headers?: Record<string, string>
| null;
max_attempts?: number | null;
secret_ref?: string | null;
signing_secret?: string | null;
timeout_seconds?: number | null;
url: string;
},
{
headers?: Record<string, string>
| null;
max_attempts?: number | null;
secret_ref?: string | null;
signing_secret?: string | null;
timeout_seconds?: number | null;
url: string;
},
> = ...
Runtime schema for webhook callback configuration included on job and schedule requests.