pxengine 0.1.131 → 0.1.132
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.cjs +11 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.mjs +11 -3
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -16788,7 +16788,11 @@ var PresentationJobCard = ({
|
|
|
16788
16788
|
onCompleteRef.current({
|
|
16789
16789
|
title: newTitle,
|
|
16790
16790
|
slide_count: newSlideCount,
|
|
16791
|
-
formats: newFormats
|
|
16791
|
+
formats: newFormats,
|
|
16792
|
+
status: newStatus,
|
|
16793
|
+
review_status: output.review_status,
|
|
16794
|
+
generation_mode: output.generation_mode,
|
|
16795
|
+
template_id: output.template_id
|
|
16792
16796
|
});
|
|
16793
16797
|
}
|
|
16794
16798
|
}
|
|
@@ -16833,10 +16837,14 @@ var PresentationJobCard = ({
|
|
|
16833
16837
|
onCompleteRef.current({
|
|
16834
16838
|
title: out.title ?? title,
|
|
16835
16839
|
slide_count: out.slide_count ?? slideCount,
|
|
16836
|
-
formats: out.formats ?? formats
|
|
16840
|
+
formats: out.formats ?? formats,
|
|
16841
|
+
status: "complete",
|
|
16842
|
+
review_status: out.review_status || "pending_review",
|
|
16843
|
+
generation_mode: out.generation_mode ?? generationMode,
|
|
16844
|
+
template_id: out.template_id ?? templateId
|
|
16837
16845
|
});
|
|
16838
16846
|
}
|
|
16839
|
-
}, [title, slideCount, formats]);
|
|
16847
|
+
}, [title, slideCount, formats, generationMode, templateId]);
|
|
16840
16848
|
const refetchSourceAndApply = (0, import_react80.useCallback)(async () => {
|
|
16841
16849
|
if (!pollUrl) return;
|
|
16842
16850
|
try {
|