From b2e0f697c885ee76aa61d217dd78a2ac11d7940f Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Mon, 11 May 2026 12:54:06 +0530 Subject: [PATCH] refactor: update URL validation in schema --- src/core/ConfigManager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/ConfigManager.ts b/src/core/ConfigManager.ts index d23c0db..2d9a350 100644 --- a/src/core/ConfigManager.ts +++ b/src/core/ConfigManager.ts @@ -4,9 +4,9 @@ import { z } from "zod"; export const ProviderConfigSchema = z.object({ clientId: z.string(), clientSecret: z.string(), - redirectUri: z.string().url().optional(), - authUrl: z.string().url(), - tokenUrl: z.string().url(), + redirectUri: z.url().optional(), + authUrl: z.url(), + tokenUrl: z.url(), scope: z.string(), });