ppt2json 0.3.1 → 0.3.2

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.mjs CHANGED
@@ -9742,7 +9742,7 @@ var DEFAULT_THEME = {
9742
9742
  async function parsePptxToJson(file) {
9743
9743
  const fileBuffer = await file.arrayBuffer();
9744
9744
  return {
9745
- deck: await buildDeckFromPptx(fileBuffer),
9745
+ presentation: await buildDeckFromPptx(fileBuffer),
9746
9746
  warnings: []
9747
9747
  };
9748
9748
  }