latticesql 3.3.0 → 3.3.1
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/README.md +10 -0
- package/dist/cli.js +61125 -59988
- package/dist/index.cjs +60468 -59279
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +60229 -59042
- package/docs/assistant.md +29 -0
- package/package.json +2 -1
package/dist/index.d.cts
CHANGED
|
@@ -4635,6 +4635,14 @@ interface CrawlOptions {
|
|
|
4635
4635
|
* degrades silently when Playwright or a browser is absent.
|
|
4636
4636
|
*/
|
|
4637
4637
|
noJs?: boolean;
|
|
4638
|
+
/**
|
|
4639
|
+
* Render with headless Chromium up front rather than only as a low-text
|
|
4640
|
+
* fallback — for SPA-heavy pages whose static HTML is an empty shell. When
|
|
4641
|
+
* Playwright is absent this degrades to the static extraction with a single
|
|
4642
|
+
* loud warning (it is an optional dependency, not a hard requirement).
|
|
4643
|
+
* Ignored when `noJs` is set. Default false.
|
|
4644
|
+
*/
|
|
4645
|
+
forceJs?: boolean;
|
|
4638
4646
|
}
|
|
4639
4647
|
declare function crawlUrl(rawUrl: string, opts?: CrawlOptions): Promise<CrawlResult>;
|
|
4640
4648
|
|
package/dist/index.d.ts
CHANGED
|
@@ -4635,6 +4635,14 @@ interface CrawlOptions {
|
|
|
4635
4635
|
* degrades silently when Playwright or a browser is absent.
|
|
4636
4636
|
*/
|
|
4637
4637
|
noJs?: boolean;
|
|
4638
|
+
/**
|
|
4639
|
+
* Render with headless Chromium up front rather than only as a low-text
|
|
4640
|
+
* fallback — for SPA-heavy pages whose static HTML is an empty shell. When
|
|
4641
|
+
* Playwright is absent this degrades to the static extraction with a single
|
|
4642
|
+
* loud warning (it is an optional dependency, not a hard requirement).
|
|
4643
|
+
* Ignored when `noJs` is set. Default false.
|
|
4644
|
+
*/
|
|
4645
|
+
forceJs?: boolean;
|
|
4638
4646
|
}
|
|
4639
4647
|
declare function crawlUrl(rawUrl: string, opts?: CrawlOptions): Promise<CrawlResult>;
|
|
4640
4648
|
|