@xdsjs/dossierx-daemon 0.1.4 → 0.1.6
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 +4 -9
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -820,7 +820,7 @@ function createTaskArchive(options) {
|
|
|
820
820
|
|
|
821
821
|
// src/version.ts
|
|
822
822
|
var DAEMON_PACKAGE_NAME = "@xdsjs/dossierx-daemon";
|
|
823
|
-
var DAEMON_VERSION = "0.1.
|
|
823
|
+
var DAEMON_VERSION = "0.1.6";
|
|
824
824
|
|
|
825
825
|
// src/local-api/server.ts
|
|
826
826
|
var DEFAULT_MAX_FILE_BYTES = 5 * 1024 * 1024;
|
|
@@ -1506,6 +1506,7 @@ import {
|
|
|
1506
1506
|
downloadSecReports,
|
|
1507
1507
|
primaryMarket,
|
|
1508
1508
|
primaryTicker,
|
|
1509
|
+
renderSecHtmlToPdf,
|
|
1509
1510
|
runNotebookLmFinancialReportsIngest
|
|
1510
1511
|
} from "@xdsjs/dossier-financial-reports";
|
|
1511
1512
|
import {
|
|
@@ -1528,13 +1529,7 @@ function defaultFetch() {
|
|
|
1528
1529
|
return async (url, init) => fetch(url, init);
|
|
1529
1530
|
}
|
|
1530
1531
|
function defaultRenderHtmlToPdf() {
|
|
1531
|
-
return
|
|
1532
|
-
throw new FinancialReportsRuntimeError(
|
|
1533
|
-
"RUNTIME_NOT_FOUND",
|
|
1534
|
-
"SEC HTML-to-PDF renderer is not configured",
|
|
1535
|
-
"financial_reports.render_html_to_pdf"
|
|
1536
|
-
);
|
|
1537
|
-
};
|
|
1532
|
+
return renderSecHtmlToPdf;
|
|
1538
1533
|
}
|
|
1539
1534
|
function requireNotebookLmClient(context) {
|
|
1540
1535
|
const client = context.financialReports?.notebookLmClient;
|
|
@@ -2499,7 +2494,7 @@ async function detectCapabilities() {
|
|
|
2499
2494
|
python: python3 || python,
|
|
2500
2495
|
financialReports: true,
|
|
2501
2496
|
financialReportsNotebookLm: false,
|
|
2502
|
-
financialReportsSecHtmlRenderer:
|
|
2497
|
+
financialReportsSecHtmlRenderer: true,
|
|
2503
2498
|
investWikiRuntime,
|
|
2504
2499
|
codex,
|
|
2505
2500
|
claude
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xdsjs/dossierx-daemon",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"execa": "^9.0.0",
|
|
29
29
|
"pino": "^10.0.0",
|
|
30
30
|
"zod": "^4.0.0",
|
|
31
|
-
"@xdsjs/dossier-financial-reports": "^0.1.
|
|
31
|
+
"@xdsjs/dossier-financial-reports": "^0.1.1",
|
|
32
32
|
"@xdsjs/dossierx-git-mirror": "^0.1.2",
|
|
33
|
-
"@xdsjs/dossierx-
|
|
34
|
-
"@xdsjs/dossierx-
|
|
33
|
+
"@xdsjs/dossierx-workspace": "^0.1.1",
|
|
34
|
+
"@xdsjs/dossierx-shared": "^0.1.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^24.0.0",
|