pxengine 0.1.77 → 0.1.79

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pxengine/ui",
3
3
  "version": "1.0.0",
4
- "lastUpdated": "2026-05-14T12:55:25.854Z",
4
+ "lastUpdated": "2026-05-15T09:44:49.767Z",
5
5
  "components": {
6
6
  "AccordionAtom": {
7
7
  "name": "AccordionAtom",
@@ -17661,6 +17661,11 @@
17661
17661
  "required": false,
17662
17662
  "description": "URL polled every 3 s while status is pending/running.\nExpected response shape: { status, output: { slide_count, formats } }\ne.g. /api/agents-proxy/jobs/{job_id}/status"
17663
17663
  },
17664
+ "authToken": {
17665
+ "type": "string",
17666
+ "required": false,
17667
+ "description": "Bearer token for authenticated polling requests.\nIf provided, will be sent as Authorization header."
17668
+ },
17664
17669
  "shareUrl": {
17665
17670
  "type": "string",
17666
17671
  "required": false,
@@ -17680,6 +17685,16 @@
17680
17685
  "type": "(message: string) => void",
17681
17686
  "required": false,
17682
17687
  "description": ""
17688
+ },
17689
+ "onComplete": {
17690
+ "type": "(output: presentationjoboutput) => void",
17691
+ "required": false,
17692
+ "description": "Called when the job completes successfully via polling.\nUse this to persist the job result to session state."
17693
+ },
17694
+ "onFailed": {
17695
+ "type": "(error: string) => void",
17696
+ "required": false,
17697
+ "description": "Called when the job fails via polling."
17683
17698
  }
17684
17699
  },
17685
17700
  "preview": null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxengine",
3
- "version": "0.1.77",
3
+ "version": "0.1.79",
4
4
  "type": "module",
5
5
  "description": "Shadcn-based UI component library for agent-driven interfaces",
6
6
  "main": "./dist/index.cjs",