From 2071a98a83a7e8e998a42be6c86524087cdc0d97 Mon Sep 17 00:00:00 2001 From: RafaelSzmarowski Date: Fri, 12 Jul 2024 10:26:39 +0200 Subject: [PATCH] feat(api-client): add getParams method to Query class --- packages/api-client/src/odsql/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/api-client/src/odsql/index.ts b/packages/api-client/src/odsql/index.ts index d7cbdc36..150ac87f 100644 --- a/packages/api-client/src/odsql/index.ts +++ b/packages/api-client/src/odsql/index.ts @@ -17,6 +17,10 @@ export class Query { this.path = path; } + getParams(): Record { + return this.params; + } + getPath(): string { return this.path; }