Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions src/input/localResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
1 change: 0 additions & 1 deletion src/parsing/v2/field/fieldLocation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Loading