From 2edce1da6a6fec0a5bd0de64ac532d7132f70012 Mon Sep 17 00:00:00 2001 From: Nicolas Ayral Seydoux Date: Tue, 17 Dec 2024 10:47:20 +0100 Subject: [PATCH] WIP: export query function for local testing --- src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.ts b/src/index.ts index d9e51d1b..bda9da18 100644 --- a/src/index.ts +++ b/src/index.ts @@ -63,6 +63,12 @@ export { REQUEST_VC_URL_PARAM_NAME, } from "./gConsent"; +export { + query, + CredentialFilter, + CredentialResult, +} from "./gConsent/query/query"; + // Add an API object to the exports to allow explicitly relying on the gConsent-based // functions even when not relying on named exports. export * as gConsent from "./gConsent";