From b93cf17e8e72af3836ee603ae1038d69d6333555 Mon Sep 17 00:00:00 2001 From: Rafael Mestre Date: Wed, 27 Aug 2025 08:52:46 -0400 Subject: [PATCH] feat: update URLs to new APIs --- src/config/constants.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/config/constants.ts b/src/config/constants.ts index 8ba931ff..c20d6bf4 100644 --- a/src/config/constants.ts +++ b/src/config/constants.ts @@ -1,7 +1,7 @@ -export const EOL_REPORT_URL = 'https://eol-report-card.apps.herodevs.com/reports'; -export const GRAPHQL_HOST = 'https://api.nes.herodevs.com'; +export const EOL_REPORT_URL = 'https://apps.herodevs.com/eol/reports'; +export const GRAPHQL_HOST = 'https://gateway.prod.apps.herodevs.io'; export const GRAPHQL_PATH = '/graphql'; -export const ANALYTICS_URL = 'https://eol-api.herodevs.com/track'; +export const ANALYTICS_URL = 'https://apps.herodevs.com/api/eol/track'; export const CONCURRENT_PAGE_REQUESTS = 3; export const PAGE_SIZE = 500; @@ -22,7 +22,6 @@ export const config = { graphqlHost: process.env.GRAPHQL_HOST || GRAPHQL_HOST, graphqlPath: process.env.GRAPHQL_PATH || GRAPHQL_PATH, analyticsUrl: process.env.ANALYTICS_URL || ANALYTICS_URL, - showVulnCount: true, concurrentPageRequests, pageSize, };