pxengine 0.1.112 → 0.1.114

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-30T11:56:26.463Z",
4
+ "lastUpdated": "2026-08-03T11:56:18.822Z",
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,
@@ -8404,6 +8450,11 @@
8404
8450
  "required": false,
8405
8451
  "description": "User review state for template-based reports"
8406
8452
  },
8453
+ "outline": {
8454
+ "type": "reportoutline",
8455
+ "required": false,
8456
+ "description": "The planned outline (report_data) shown for approval BEFORE the report is\nrendered. Present while `review_status === \"pending_outline_approval\"`."
8457
+ },
8407
8458
  "theme": {
8408
8459
  "type": "reporttheme",
8409
8460
  "required": false,
@@ -8439,11 +8490,21 @@
8439
8490
  "required": false,
8440
8491
  "description": "Approve endpoint (POST). Defaults to `/api/reports/{job_id}/approve`."
8441
8492
  },
8493
+ "approveOutlineUrl": {
8494
+ "type": "string",
8495
+ "required": false,
8496
+ "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."
8497
+ },
8442
8498
  "regenerateUrl": {
8443
8499
  "type": "string",
8444
8500
  "required": false,
8445
8501
  "description": "Regenerate endpoint (POST). Defaults to `/api/reports/{job_id}/regenerate`."
8446
8502
  },
8503
+ "hideApproval": {
8504
+ "type": "boolean",
8505
+ "required": false,
8506
+ "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."
8507
+ },
8447
8508
  "className": {
8448
8509
  "type": "string",
8449
8510
  "required": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxengine",
3
- "version": "0.1.112",
3
+ "version": "0.1.114",
4
4
  "type": "module",
5
5
  "description": "Shadcn-based UI component library for agent-driven interfaces",
6
6
  "main": "./dist/index.cjs",