Skip to content

Commit 792408d

Browse files
♻️ upgrade dependencies & fix typos in docstrings (#375)
1 parent 49b931b commit 792408d

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/input/localResponse.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,12 @@ export class LocalResponse {
8181
}
8282

8383
/**
84-
* Deserialize the loaded local response into the requested CommonResponse`-derived class.
84+
* Deserialize the loaded local response into the requested CommonResponse-derived class.
8585
*
8686
* Typically used when dealing with V2 webhook callbacks.
8787
*
8888
* @typeParam ResponseT - A class that extends `CommonResponse`.
89-
* @param responseClass - The constructor of the class into which
90-
* the payload should be deserialized.
89+
* @param responseClass - The constructor of the class into which the payload should be deserialized.
9190
* @returns An instance of `responseClass` populated with the file content.
9291
* @throws MindeeError If the provided class cannot be instantiated.
9392
*/

src/parsing/v2/field/fieldLocation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export class FieldLocation {
1212
readonly page: number | undefined;
1313

1414
constructor(serverResponse: StringDict) {
15-
console.log("paj???", serverResponse["page"]);
1615
this.polygon = serverResponse["polygon"] as Polygon;
1716
this.page = "page" in serverResponse ? serverResponse["page"] : undefined;
1817
}

0 commit comments

Comments
 (0)