From 8ea65a7bb70974823c18421f54dd48ccc364a1f2 Mon Sep 17 00:00:00 2001 From: bamader Date: Thu, 17 Oct 2024 14:21:52 -0400 Subject: [PATCH] Version bump --- query-connector/src/app/database-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/query-connector/src/app/database-service.ts b/query-connector/src/app/database-service.ts index 59ab3a4f9..a7bee9daa 100644 --- a/query-connector/src/app/database-service.ts +++ b/query-connector/src/app/database-service.ts @@ -101,7 +101,7 @@ type ErsdOrVsacResponse = Bundle | OperationOutcome; * @returns The eRSD Specification as a FHIR Bundle or an OperationOutcome if an error occurs. */ export async function getERSD( - eRSDVersion: number = 2, + eRSDVersion: number = 3, ): Promise { const ERSD_API_KEY = process.env.ERSD_API_KEY; const eRSDUrl = `https://ersd.aimsplatform.org/api/ersd/v${eRSDVersion}specification?format=json&api-key=${ERSD_API_KEY}`;