@xuda.io/xuda-worker-bundle-min 1.3.1115 → 1.3.1116

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.
Files changed (2) hide show
  1. package/index.js +4 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -8433,25 +8433,27 @@ func.events.execute = async function (
8433
8433
  SESSION_ID,
8434
8434
  "xuda-event-javascript-module.mjs"
8435
8435
  );
8436
- return await module.call_javascript(
8436
+ const result = await module.call_javascript(
8437
8437
  SESSION_ID,
8438
8438
  jobNoP,
8439
8439
  refIdP,
8440
8440
  dsSession
8441
8441
  );
8442
+ return result
8442
8443
  },
8443
8444
  call_evaluate_javascript: async function () {
8444
8445
  const module = await func.common.get_module(
8445
8446
  SESSION_ID,
8446
8447
  "xuda-event-javascript-module.mjs"
8447
8448
  );
8448
- return await module.call_javascript(
8449
+ const result = await module.call_javascript(
8449
8450
  SESSION_ID,
8450
8451
  jobNoP,
8451
8452
  refIdP,
8452
8453
  dsSession,
8453
8454
  true
8454
8455
  );
8456
+ return result
8455
8457
  },
8456
8458
  execute_native_javascript: async function () {
8457
8459
  const module = await func.common.get_module(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/xuda-worker-bundle-min",
3
- "version": "1.3.1115",
3
+ "version": "1.3.1116",
4
4
  "description": "xuda framework min",
5
5
  "main": "index.js",
6
6
  "scripts": {