pxengine 0.1.81 → 0.1.83
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.cjs +1186 -840
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +62 -1
- package/dist/index.d.ts +62 -1
- package/dist/index.mjs +1170 -825
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +107 -1
- package/package.json +1 -1
package/dist/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pxengine/ui",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"lastUpdated": "2026-05-
|
|
4
|
+
"lastUpdated": "2026-05-19T10:20:36.580Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -17832,6 +17832,112 @@
|
|
|
17832
17832
|
"preview": null,
|
|
17833
17833
|
"layoutHints": null
|
|
17834
17834
|
},
|
|
17835
|
+
"ResearchReportJobCard": {
|
|
17836
|
+
"name": "ResearchReportJobCard",
|
|
17837
|
+
"type": "molecule",
|
|
17838
|
+
"isBuilderComponent": true,
|
|
17839
|
+
"description": "",
|
|
17840
|
+
"props": {
|
|
17841
|
+
"job_id": {
|
|
17842
|
+
"type": "string",
|
|
17843
|
+
"required": true,
|
|
17844
|
+
"description": "Unique job identifier"
|
|
17845
|
+
},
|
|
17846
|
+
"title": {
|
|
17847
|
+
"type": "string",
|
|
17848
|
+
"required": true,
|
|
17849
|
+
"description": "Report title"
|
|
17850
|
+
},
|
|
17851
|
+
"status": {
|
|
17852
|
+
"type": "enum",
|
|
17853
|
+
"required": true,
|
|
17854
|
+
"description": "Current job status",
|
|
17855
|
+
"enums": [
|
|
17856
|
+
"complete",
|
|
17857
|
+
"failed",
|
|
17858
|
+
"pending",
|
|
17859
|
+
"running"
|
|
17860
|
+
]
|
|
17861
|
+
},
|
|
17862
|
+
"topic": {
|
|
17863
|
+
"type": "string",
|
|
17864
|
+
"required": false,
|
|
17865
|
+
"description": "Research topic"
|
|
17866
|
+
},
|
|
17867
|
+
"depth": {
|
|
17868
|
+
"type": "string",
|
|
17869
|
+
"required": false,
|
|
17870
|
+
"description": "Research depth (executive, detailed, comprehensive)"
|
|
17871
|
+
},
|
|
17872
|
+
"section_count": {
|
|
17873
|
+
"type": "number",
|
|
17874
|
+
"required": false,
|
|
17875
|
+
"description": "Number of sections in the report"
|
|
17876
|
+
},
|
|
17877
|
+
"source_count": {
|
|
17878
|
+
"type": "number",
|
|
17879
|
+
"required": false,
|
|
17880
|
+
"description": "Number of sources cited"
|
|
17881
|
+
},
|
|
17882
|
+
"word_count": {
|
|
17883
|
+
"type": "number",
|
|
17884
|
+
"required": false,
|
|
17885
|
+
"description": "Total word count"
|
|
17886
|
+
},
|
|
17887
|
+
"executive_summary": {
|
|
17888
|
+
"type": "string",
|
|
17889
|
+
"required": false,
|
|
17890
|
+
"description": "Brief executive summary"
|
|
17891
|
+
},
|
|
17892
|
+
"key_findings": {
|
|
17893
|
+
"type": "string[]",
|
|
17894
|
+
"required": false,
|
|
17895
|
+
"description": "Key findings (first 5)"
|
|
17896
|
+
},
|
|
17897
|
+
"html_url": {
|
|
17898
|
+
"type": "string",
|
|
17899
|
+
"required": false,
|
|
17900
|
+
"description": "HTML report URL"
|
|
17901
|
+
},
|
|
17902
|
+
"theme": {
|
|
17903
|
+
"type": "reporttheme",
|
|
17904
|
+
"required": false,
|
|
17905
|
+
"description": "Dynamic theme colors generated based on topic"
|
|
17906
|
+
},
|
|
17907
|
+
"error": {
|
|
17908
|
+
"type": "string",
|
|
17909
|
+
"required": false,
|
|
17910
|
+
"description": "Error message if job failed"
|
|
17911
|
+
},
|
|
17912
|
+
"pollUrl": {
|
|
17913
|
+
"type": "string",
|
|
17914
|
+
"required": false,
|
|
17915
|
+
"description": "URL to poll for status updates"
|
|
17916
|
+
},
|
|
17917
|
+
"authToken": {
|
|
17918
|
+
"type": "string",
|
|
17919
|
+
"required": false,
|
|
17920
|
+
"description": "Auth token for polling requests"
|
|
17921
|
+
},
|
|
17922
|
+
"className": {
|
|
17923
|
+
"type": "string",
|
|
17924
|
+
"required": false,
|
|
17925
|
+
"description": "Additional CSS classes"
|
|
17926
|
+
},
|
|
17927
|
+
"onComplete": {
|
|
17928
|
+
"type": "(output: researchreportjoboutput) => void",
|
|
17929
|
+
"required": false,
|
|
17930
|
+
"description": "Callback when job completes"
|
|
17931
|
+
},
|
|
17932
|
+
"onFailed": {
|
|
17933
|
+
"type": "(error: string) => void",
|
|
17934
|
+
"required": false,
|
|
17935
|
+
"description": "Callback when job fails"
|
|
17936
|
+
}
|
|
17937
|
+
},
|
|
17938
|
+
"preview": null,
|
|
17939
|
+
"layoutHints": null
|
|
17940
|
+
},
|
|
17835
17941
|
"RiskSignalCard": {
|
|
17836
17942
|
"name": "RiskSignalCard",
|
|
17837
17943
|
"type": "molecule",
|