mulmocast 1.2.47 → 1.2.48

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.
@@ -228,7 +228,7 @@ const audioAgents = {
228
228
  export const generateBeatAudio = async (index, context, args) => {
229
229
  const { settings, callbacks, langs } = args ?? {};
230
230
  try {
231
- MulmoStudioContextMethods.setSessionState(context, "audio", true);
231
+ // MulmoStudioContextMethods.setSessionState(context, "audio", true);
232
232
  const fileName = MulmoStudioContextMethods.getFileName(context);
233
233
  const audioDirPath = MulmoStudioContextMethods.getAudioDirPath(context);
234
234
  const outDirPath = MulmoStudioContextMethods.getOutDirPath(context);
@@ -255,10 +255,10 @@ export const generateBeatAudio = async (index, context, args) => {
255
255
  });
256
256
  }
257
257
  await graph.run();
258
- MulmoStudioContextMethods.setSessionState(context, "audio", false, true);
258
+ // MulmoStudioContextMethods.setSessionState(context, "audio", false, true);
259
259
  }
260
260
  catch (__error) {
261
- MulmoStudioContextMethods.setSessionState(context, "audio", false, false);
261
+ // MulmoStudioContextMethods.setSessionState(context, "audio", false, false);
262
262
  }
263
263
  };
264
264
  export const audio = async (context, args) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mulmocast",
3
- "version": "1.2.47",
3
+ "version": "1.2.48",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "lib/index.node.js",