feat: client gen default configurations (#499)

This commit is contained in:
Abhishek 2026-07-04 18:37:50 +05:30 committed by GitHub
parent a9947cec04
commit ceb01a16a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 353 additions and 87 deletions

View file

@ -227,7 +227,7 @@ export function ServiceConfigurationForm({
console.error("Failed to fetch configurations");
return;
}
defaultsData = response.data as ServiceConfigurationDefaults;
defaultsData = response.data as unknown as ServiceConfigurationDefaults;
}
const realtimeSchemas = (defaultsData.realtime || {}) as Record<string, ProviderSchema>;