From cf5412173b1c38bfddb37f85a93d3314d4737703 Mon Sep 17 00:00:00 2001 From: simonredfern Date: Thu, 11 Dec 2025 20:07:07 +0100 Subject: [PATCH] scanned api versions uses is_active --- src/obp/resource-docs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obp/resource-docs.ts b/src/obp/resource-docs.ts index 21d95b3..f4e4958 100644 --- a/src/obp/resource-docs.ts +++ b/src/obp/resource-docs.ts @@ -122,7 +122,7 @@ export async function cacheDoc(cacheStorageOfResourceDocs: any): Promise { } const scannedAPIVersions = apiVersions.scanned_api_versions // Filter to only include active versions - const activeVersions = scannedAPIVersions.filter((version: any) => version.active === true) + const activeVersions = scannedAPIVersions.filter((version: any) => version.is_active === true) console.log( `[CACHE] Found ${scannedAPIVersions.length} total versions, ${activeVersions.length} are active` )