@xuda.io/runtime-bundle 1.0.777 → 1.0.779

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.
@@ -9650,14 +9650,14 @@ func.events.execute = async function (
9650
9650
 
9651
9651
  call_native_javascript: async function () {
9652
9652
  const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
9653
- const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession);
9653
+ const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $(containerP));
9654
9654
  await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
9655
9655
 
9656
9656
  return result;
9657
9657
  },
9658
9658
  call_evaluate_javascript: async function () {
9659
9659
  const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
9660
- const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true);
9660
+ const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $(containerP));
9661
9661
  await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
9662
9662
 
9663
9663
  return result;
@@ -13781,14 +13781,14 @@ func.events.execute = async function (
13781
13781
 
13782
13782
  call_native_javascript: async function () {
13783
13783
  const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
13784
- const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession);
13784
+ const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $(containerP));
13785
13785
  await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
13786
13786
 
13787
13787
  return result;
13788
13788
  },
13789
13789
  call_evaluate_javascript: async function () {
13790
13790
  const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
13791
- const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true);
13791
+ const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $(containerP));
13792
13792
  await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
13793
13793
 
13794
13794
  return result;