pxengine 0.1.116 → 0.1.118

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.d.cts CHANGED
@@ -3558,6 +3558,8 @@ interface DeckOutlineSlide {
3558
3558
  message?: string;
3559
3559
  /** Informational review flag (DEV-194) — never gates Approve & Build. */
3560
3560
  approved?: boolean;
3561
+ /** Per-slide design template override (DEV-194) — unset means "inherit the deck's template". */
3562
+ template_id?: string;
3561
3563
  [key: string]: unknown;
3562
3564
  }
3563
3565
  /** The planned deck outline (deck_plan) shown for approval before rendering. */
@@ -3647,6 +3649,18 @@ interface PresentationJobCardProps {
3647
3649
  * never gates the whole-outline Approve & Build action.
3648
3650
  */
3649
3651
  approveSlideUrl?: string;
3652
+ /**
3653
+ * Set-slide-template endpoint (POST), DEV-194 "slide-level design
3654
+ * templates". Defaults to `/api/presentations/{job_id}/outline/set-slide-template`.
3655
+ * Gives one outline slide its own design template, overriding the deck's
3656
+ * overall template for just that slide.
3657
+ */
3658
+ setSlideTemplateUrl?: string;
3659
+ /**
3660
+ * Templates list endpoint (GET), used to populate the per-slide template
3661
+ * override <select>. Defaults to `/api/presentations/templates`.
3662
+ */
3663
+ templatesUrl?: string;
3650
3664
  /** Regenerate endpoint (POST). Defaults to `/api/presentations/{job_id}/regenerate`. */
3651
3665
  regenerateUrl?: string;
3652
3666
  /**
package/dist/index.d.ts CHANGED
@@ -3558,6 +3558,8 @@ interface DeckOutlineSlide {
3558
3558
  message?: string;
3559
3559
  /** Informational review flag (DEV-194) — never gates Approve & Build. */
3560
3560
  approved?: boolean;
3561
+ /** Per-slide design template override (DEV-194) — unset means "inherit the deck's template". */
3562
+ template_id?: string;
3561
3563
  [key: string]: unknown;
3562
3564
  }
3563
3565
  /** The planned deck outline (deck_plan) shown for approval before rendering. */
@@ -3647,6 +3649,18 @@ interface PresentationJobCardProps {
3647
3649
  * never gates the whole-outline Approve & Build action.
3648
3650
  */
3649
3651
  approveSlideUrl?: string;
3652
+ /**
3653
+ * Set-slide-template endpoint (POST), DEV-194 "slide-level design
3654
+ * templates". Defaults to `/api/presentations/{job_id}/outline/set-slide-template`.
3655
+ * Gives one outline slide its own design template, overriding the deck's
3656
+ * overall template for just that slide.
3657
+ */
3658
+ setSlideTemplateUrl?: string;
3659
+ /**
3660
+ * Templates list endpoint (GET), used to populate the per-slide template
3661
+ * override <select>. Defaults to `/api/presentations/templates`.
3662
+ */
3663
+ templatesUrl?: string;
3650
3664
  /** Regenerate endpoint (POST). Defaults to `/api/presentations/{job_id}/regenerate`. */
3651
3665
  regenerateUrl?: string;
3652
3666
  /**