dependabot round 1

This commit is contained in:
Asier Isayas
2026-01-26 07:22:58 -08:00
parent 2ff01c6379
commit 237e45f1b3
7 changed files with 964 additions and 4018 deletions

View File

@@ -161,7 +161,8 @@ const propertyToType = (property: Property, prop: string, required: boolean) =>
async function main() {
const response = await fetch(schemaURL);
const schema = await response.json();
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const schema: any = await response.json();
// STEP 1: Convert all definitions to TypeScript types and interfaces
for (const definition in schema.definitions) {