unbrowse 2.1.2 → 2.1.4
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/cli.js +1 -1
- package/dist/index.js +638 -83
- package/package.json +1 -1
- package/runtime-src/api/routes.ts +1 -1
- package/runtime-src/cli.ts +1 -1
- package/runtime-src/execution/index.ts +91 -12
- package/runtime-src/extraction/index.ts +131 -1
- package/runtime-src/intent-match.ts +2 -2
- package/runtime-src/orchestrator/index.ts +453 -77
package/dist/cli.js
CHANGED
|
@@ -1302,7 +1302,7 @@ async function handleMessage(msg, unbrowseBin, timeoutMs) {
|
|
|
1302
1302
|
loadEnv({ quiet: true });
|
|
1303
1303
|
loadEnv({ path: ".env.runtime", quiet: true });
|
|
1304
1304
|
var BASE_URL = process.env.UNBROWSE_URL || "http://localhost:6969";
|
|
1305
|
-
var CLI_CLIENT_ID = process.env.UNBROWSE_CLIENT_ID ||
|
|
1305
|
+
var CLI_CLIENT_ID = process.env.UNBROWSE_CLIENT_ID || "cli-local";
|
|
1306
1306
|
function parseArgs(argv) {
|
|
1307
1307
|
const raw = argv.slice(2);
|
|
1308
1308
|
const command = raw[0] && !raw[0].startsWith("--") ? raw[0] : "help";
|