pxengine 0.1.113 → 0.1.115

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-07-31T10:21:31.397Z",
4
+ "lastUpdated": "2026-08-03T13:20:12.529Z",
5
5
  "components": {
6
6
  "AccordionAtom": {
7
7
  "name": "AccordionAtom",
@@ -8126,6 +8126,31 @@
8126
8126
  "defaultValue": "{}",
8127
8127
  "description": ""
8128
8128
  },
8129
+ "generation_mode": {
8130
+ "type": "string",
8131
+ "required": false,
8132
+ "description": "How the deck was generated: template (default) or legacy."
8133
+ },
8134
+ "template_id": {
8135
+ "type": "string",
8136
+ "required": false,
8137
+ "description": "Design template id used to render the deck."
8138
+ },
8139
+ "template_version_id": {
8140
+ "type": "string",
8141
+ "required": false,
8142
+ "description": "Saved version id after the deck is approved as the standard format."
8143
+ },
8144
+ "review_status": {
8145
+ "type": "string",
8146
+ "required": false,
8147
+ "description": "User review state for template-based decks."
8148
+ },
8149
+ "outline": {
8150
+ "type": "deckoutline",
8151
+ "required": false,
8152
+ "description": "The planned deck outline (deck_plan) shown for approval BEFORE the deck is\nrendered. Present while `review_status === \"pending_outline_approval\"`."
8153
+ },
8129
8154
  "error": {
8130
8155
  "type": "string",
8131
8156
  "required": false,
@@ -8151,6 +8176,27 @@
8151
8176
  "required": false,
8152
8177
  "description": "Shareable link copied when the user clicks Share.\nFalls back to `${origin}/p/{job_id}`, then formats.html_url."
8153
8178
  },
8179
+ "approveUrl": {
8180
+ "type": "string",
8181
+ "required": false,
8182
+ "description": "Approve-standard endpoint (POST). Defaults to\n`/api/presentations/{job_id}/approve-standard`. Locks this deck's format."
8183
+ },
8184
+ "approveOutlineUrl": {
8185
+ "type": "string",
8186
+ "required": false,
8187
+ "description": "Approve-outline endpoint (POST). Defaults to\n`/api/presentations/{job_id}/approve-outline`. Proceeds to render the deck."
8188
+ },
8189
+ "regenerateUrl": {
8190
+ "type": "string",
8191
+ "required": false,
8192
+ "description": "Regenerate endpoint (POST). Defaults to `/api/presentations/{job_id}/regenerate`."
8193
+ },
8194
+ "hideApproval": {
8195
+ "type": "boolean",
8196
+ "required": false,
8197
+ "defaultValue": "false",
8198
+ "description": "Hide the FINISHED-phase approve/regenerate buttons (the outline-approval\nphase is unaffected). Used when a host wrapper owns those actions."
8199
+ },
8154
8200
  "className": {
8155
8201
  "type": "string",
8156
8202
  "required": false,
@@ -8384,6 +8430,11 @@
8384
8430
  "required": false,
8385
8431
  "description": "HTML report URL"
8386
8432
  },
8433
+ "pdf_url": {
8434
+ "type": "string",
8435
+ "required": false,
8436
+ "description": "PDF export URL (paginated print export; may be absent if PDF rendering failed)"
8437
+ },
8387
8438
  "generation_mode": {
8388
8439
  "type": "string",
8389
8440
  "required": false,
@@ -8404,6 +8455,11 @@
8404
8455
  "required": false,
8405
8456
  "description": "User review state for template-based reports"
8406
8457
  },
8458
+ "outline": {
8459
+ "type": "reportoutline",
8460
+ "required": false,
8461
+ "description": "The planned outline (report_data) shown for approval BEFORE the report is\nrendered. Present while `review_status === \"pending_outline_approval\"`."
8462
+ },
8407
8463
  "theme": {
8408
8464
  "type": "reporttheme",
8409
8465
  "required": false,
@@ -8439,11 +8495,21 @@
8439
8495
  "required": false,
8440
8496
  "description": "Approve endpoint (POST). Defaults to `/api/reports/{job_id}/approve`."
8441
8497
  },
8498
+ "approveOutlineUrl": {
8499
+ "type": "string",
8500
+ "required": false,
8501
+ "description": "Approve-outline endpoint (POST). Defaults to\n`/api/reports/{job_id}/approve-outline`. Called from the outline-review\nphase to proceed to rendering the full report."
8502
+ },
8442
8503
  "regenerateUrl": {
8443
8504
  "type": "string",
8444
8505
  "required": false,
8445
8506
  "description": "Regenerate endpoint (POST). Defaults to `/api/reports/{job_id}/regenerate`."
8446
8507
  },
8508
+ "hideApproval": {
8509
+ "type": "boolean",
8510
+ "required": false,
8511
+ "description": "Hide the FINISHED-phase approve/regenerate buttons (the outline-approval\nphase is unaffected). Used when a host wrapper owns those actions in its own\naction bar, so the card doesn't render duplicates."
8512
+ },
8447
8513
  "className": {
8448
8514
  "type": "string",
8449
8515
  "required": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxengine",
3
- "version": "0.1.113",
3
+ "version": "0.1.115",
4
4
  "type": "module",
5
5
  "description": "Shadcn-based UI component library for agent-driven interfaces",
6
6
  "main": "./dist/index.cjs",