From a1ab9758213b8962818a910df326bf18eb0ad2b7 Mon Sep 17 00:00:00 2001 From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com> Date: Mon, 18 Aug 2025 10:09:21 +0200 Subject: [PATCH 1/3] fix typos --- src/input/localResponse.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/input/localResponse.ts b/src/input/localResponse.ts index 4b278f8e3..a8f28fdad 100644 --- a/src/input/localResponse.ts +++ b/src/input/localResponse.ts @@ -81,13 +81,12 @@ export class LocalResponse { } /** - * Deserialize the loaded local response into the requested CommonResponse`-derived class. + * Deserialize the loaded local response into the requested CommonResponse-derived class. * * Typically used when dealing with V2 webhook callbacks. * * @typeParam ResponseT - A class that extends `CommonResponse`. - * @param responseClass - The constructor of the class into which - * the payload should be deserialized. + * @param responseClass - The constructor of the class into which the payload should be deserialized. * @returns An instance of `responseClass` populated with the file content. * @throws MindeeError If the provided class cannot be instantiated. */ From db758f4f64ca6a2ef9b251a8e560674528a8c041 Mon Sep 17 00:00:00 2001 From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com> Date: Mon, 18 Aug 2025 10:41:05 +0200 Subject: [PATCH 2/3] fix npm vulnerability --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 80a29e13b..827f4fa0a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3755,9 +3755,9 @@ } }, "node_modules/tmp": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.3.tgz", - "integrity": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==", + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", "license": "MIT", "engines": { "node": ">=14.14" From c09cf79bf74ad45886eb46214e9b42645a5c13db Mon Sep 17 00:00:00 2001 From: sebastianMindee <130448732+sebastianMindee@users.noreply.github.com> Date: Mon, 18 Aug 2025 10:46:30 +0200 Subject: [PATCH 3/3] remove console log --- src/parsing/v2/field/fieldLocation.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/parsing/v2/field/fieldLocation.ts b/src/parsing/v2/field/fieldLocation.ts index 16a0fb74d..9a291d963 100644 --- a/src/parsing/v2/field/fieldLocation.ts +++ b/src/parsing/v2/field/fieldLocation.ts @@ -12,7 +12,6 @@ export class FieldLocation { readonly page: number | undefined; constructor(serverResponse: StringDict) { - console.log("paj???", serverResponse["page"]); this.polygon = serverResponse["polygon"] as Polygon; this.page = "page" in serverResponse ? serverResponse["page"] : undefined; }