mcp-scraper 0.3.27 → 0.3.40
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/bin/api-server.cjs +2475 -1154
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +3 -3
- package/dist/bin/mcp-scraper-cli.cjs +1 -1
- package/dist/bin/mcp-scraper-cli.cjs.map +1 -1
- package/dist/bin/mcp-scraper-cli.js +1 -1
- package/dist/bin/mcp-scraper-install.cjs +1 -1
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +1 -1
- package/dist/bin/mcp-stdio-server.cjs +346 -7
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +7 -4
- package/dist/bin/mcp-stdio-server.js.map +1 -1
- package/dist/bin/paa-harvest.cjs +109 -5
- package/dist/bin/paa-harvest.cjs.map +1 -1
- package/dist/bin/paa-harvest.js +2 -2
- package/dist/{chunk-TRNSXR46.js → chunk-DVRPXPYH.js} +22 -3
- package/dist/chunk-DVRPXPYH.js.map +1 -0
- package/dist/{chunk-QSSH4RCX.js → chunk-GMTS35L6.js} +111 -7
- package/dist/chunk-GMTS35L6.js.map +1 -0
- package/dist/chunk-I5EFBTYE.js +7 -0
- package/dist/chunk-I5EFBTYE.js.map +1 -0
- package/dist/{chunk-H74L743B.js → chunk-KJWNVQFL.js} +39 -2
- package/dist/chunk-KJWNVQFL.js.map +1 -0
- package/dist/{chunk-6KHGYJIT.js → chunk-QLQYNE7E.js} +255 -14
- package/dist/chunk-QLQYNE7E.js.map +1 -0
- package/dist/{db-FP2ABUU4.js → db-LYQENFPW.js} +2 -2
- package/dist/index.cjs +109 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +2 -2
- package/dist/{server-KUNOK47B.js → server-HB7WJO3N.js} +1155 -274
- package/dist/server-HB7WJO3N.js.map +1 -0
- package/dist/{worker-NV4GTIRG.js → worker-TL4J65DE.js} +4 -4
- package/package.json +1 -1
- package/dist/chunk-6KHGYJIT.js.map +0 -1
- package/dist/chunk-DYV72F6A.js +0 -7
- package/dist/chunk-DYV72F6A.js.map +0 -1
- package/dist/chunk-H74L743B.js.map +0 -1
- package/dist/chunk-QSSH4RCX.js.map +0 -1
- package/dist/chunk-TRNSXR46.js.map +0 -1
- package/dist/server-KUNOK47B.js.map +0 -1
- /package/dist/{db-FP2ABUU4.js.map → db-LYQENFPW.js.map} +0 -0
- /package/dist/{worker-NV4GTIRG.js.map → worker-TL4J65DE.js.map} +0 -0
package/dist/index.d.cts
CHANGED
|
@@ -114,10 +114,17 @@ interface HarvestDiagnosticWarning {
|
|
|
114
114
|
message: string;
|
|
115
115
|
retryable: boolean;
|
|
116
116
|
}
|
|
117
|
+
interface HarvestCompleteness {
|
|
118
|
+
paaWithoutAnswer: number;
|
|
119
|
+
paaWithoutSource: number;
|
|
120
|
+
paaAnswersRecovered: number;
|
|
121
|
+
aioShareCaptured: boolean | null;
|
|
122
|
+
}
|
|
117
123
|
interface HarvestDiagnostics {
|
|
118
124
|
completionStatus: HarvestCompletionStatus;
|
|
119
125
|
problem: null;
|
|
120
126
|
warnings?: HarvestDiagnosticWarning[];
|
|
127
|
+
completeness?: HarvestCompleteness;
|
|
121
128
|
debug?: HarvestDebugSnapshot;
|
|
122
129
|
}
|
|
123
130
|
interface BrowserNetworkLocationDebug {
|
|
@@ -267,6 +274,7 @@ interface AIOverviewResult {
|
|
|
267
274
|
expanded?: boolean;
|
|
268
275
|
fullyExpanded?: boolean;
|
|
269
276
|
sections?: string[];
|
|
277
|
+
shareUrl?: string | null;
|
|
270
278
|
}
|
|
271
279
|
interface AIModeResult {
|
|
272
280
|
detected: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -114,10 +114,17 @@ interface HarvestDiagnosticWarning {
|
|
|
114
114
|
message: string;
|
|
115
115
|
retryable: boolean;
|
|
116
116
|
}
|
|
117
|
+
interface HarvestCompleteness {
|
|
118
|
+
paaWithoutAnswer: number;
|
|
119
|
+
paaWithoutSource: number;
|
|
120
|
+
paaAnswersRecovered: number;
|
|
121
|
+
aioShareCaptured: boolean | null;
|
|
122
|
+
}
|
|
117
123
|
interface HarvestDiagnostics {
|
|
118
124
|
completionStatus: HarvestCompletionStatus;
|
|
119
125
|
problem: null;
|
|
120
126
|
warnings?: HarvestDiagnosticWarning[];
|
|
127
|
+
completeness?: HarvestCompleteness;
|
|
121
128
|
debug?: HarvestDebugSnapshot;
|
|
122
129
|
}
|
|
123
130
|
interface BrowserNetworkLocationDebug {
|
|
@@ -267,6 +274,7 @@ interface AIOverviewResult {
|
|
|
267
274
|
expanded?: boolean;
|
|
268
275
|
fullyExpanded?: boolean;
|
|
269
276
|
sections?: string[];
|
|
277
|
+
shareUrl?: string | null;
|
|
270
278
|
}
|
|
271
279
|
interface AIModeResult {
|
|
272
280
|
detected: boolean;
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
harvest
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-GMTS35L6.js";
|
|
4
4
|
import "./chunk-3PRO376E.js";
|
|
5
5
|
import "./chunk-K443GQY5.js";
|
|
6
6
|
import "./chunk-BP27CZ5Q.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-DVRPXPYH.js";
|
|
8
8
|
|
|
9
9
|
// src/video/VideoGenerator.ts
|
|
10
10
|
import { execSync as execSync2 } from "child_process";
|