pxengine 0.1.115 → 0.1.117

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-08-03T13:20:12.529Z",
4
+ "lastUpdated": "2026-08-04T09:12:37.722Z",
5
5
  "components": {
6
6
  "AccordionAtom": {
7
7
  "name": "AccordionAtom",
@@ -8186,6 +8186,26 @@
8186
8186
  "required": false,
8187
8187
  "description": "Approve-outline endpoint (POST). Defaults to\n`/api/presentations/{job_id}/approve-outline`. Proceeds to render the deck."
8188
8188
  },
8189
+ "reorderSlidesUrl": {
8190
+ "type": "string",
8191
+ "required": false,
8192
+ "description": "Reorder-slides endpoint (POST), DEV-194. Defaults to\n`/api/presentations/{job_id}/outline/reorder-slides`. Called from the\noutline-review phase's move-up/move-down controls."
8193
+ },
8194
+ "approveSlideUrl": {
8195
+ "type": "string",
8196
+ "required": false,
8197
+ "description": "Approve-slide endpoint (POST), DEV-194. Defaults to\n`/api/presentations/{job_id}/outline/approve-slide`. Informational only —\nnever gates the whole-outline Approve & Build action."
8198
+ },
8199
+ "setSlideTemplateUrl": {
8200
+ "type": "string",
8201
+ "required": false,
8202
+ "description": "Set-slide-template endpoint (POST), DEV-194 \"slide-level design\ntemplates\". Defaults to `/api/presentations/{job_id}/outline/set-slide-template`.\nGives one outline slide its own design template, overriding the deck's\noverall template for just that slide."
8203
+ },
8204
+ "templatesUrl": {
8205
+ "type": "string",
8206
+ "required": false,
8207
+ "description": "Templates list endpoint (GET), used to populate the per-slide template\noverride <select>. Defaults to `/api/presentations/templates`."
8208
+ },
8189
8209
  "regenerateUrl": {
8190
8210
  "type": "string",
8191
8211
  "required": false,
@@ -8500,6 +8520,16 @@
8500
8520
  "required": false,
8501
8521
  "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
8522
  },
8523
+ "reorderSectionsUrl": {
8524
+ "type": "string",
8525
+ "required": false,
8526
+ "description": "Reorder-sections endpoint (POST), DEV-194. Defaults to\n`/api/reports/{job_id}/outline/reorder-sections`. Called from the\noutline-review phase's move-up/move-down controls."
8527
+ },
8528
+ "approveSectionUrl": {
8529
+ "type": "string",
8530
+ "required": false,
8531
+ "description": "Approve-section endpoint (POST), DEV-194. Defaults to\n`/api/reports/{job_id}/outline/approve-section`. Informational only —\nnever gates the whole-outline Approve & Build action."
8532
+ },
8503
8533
  "regenerateUrl": {
8504
8534
  "type": "string",
8505
8535
  "required": false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxengine",
3
- "version": "0.1.115",
3
+ "version": "0.1.117",
4
4
  "type": "module",
5
5
  "description": "Shadcn-based UI component library for agent-driven interfaces",
6
6
  "main": "./dist/index.cjs",
@@ -20,8 +20,8 @@
20
20
  "scripts": {
21
21
  "build": "tsup",
22
22
  "prepublishOnly": "npm run build",
23
- "generate-metadata": "tsx --env-file=.env scripts/generate-metadata.ts",
24
- "generate-molecule-registry": "tsx --env-file=.env scripts/generate-molecule-registry.ts",
23
+ "generate-metadata": "tsx --env-file-if-exists=.env scripts/generate-metadata.ts",
24
+ "generate-molecule-registry": "tsx --env-file-if-exists=.env scripts/generate-molecule-registry.ts",
25
25
  "dev": "tsup src/index.ts --format cjs,esm --watch --dts",
26
26
  "lint": "eslint src --ext .ts,.tsx",
27
27
  "type-check": "tsc --noEmit"