scandoc-ai-components 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11196,17 +11196,6 @@ class ExtractorVideo {
|
|
|
11196
11196
|
this.hasShownTurnMessage = false;
|
|
11197
11197
|
this.turnMessageTimer = null;
|
|
11198
11198
|
|
|
11199
|
-
// DEBUG: detect overwrites
|
|
11200
|
-
Object.defineProperty(this, "onExtractedResults", {
|
|
11201
|
-
configurable: true,
|
|
11202
|
-
get: () => this.__onExtractedResults,
|
|
11203
|
-
set: v => {
|
|
11204
|
-
console.log("[ScanDocAI] onExtractedResults set to:", v, "type:", typeof v);
|
|
11205
|
-
console.trace("[ScanDocAI] onExtractedResults overwrite stack");
|
|
11206
|
-
this.__onExtractedResults = v;
|
|
11207
|
-
}
|
|
11208
|
-
});
|
|
11209
|
-
|
|
11210
11199
|
// initialize through setter so we see the first set too:
|
|
11211
11200
|
this.onExtractedResults = onExtractedResults;
|
|
11212
11201
|
}
|