@xuda.io/xuda-worker-bundle-min 1.3.1114 → 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 +6 -3
  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(
@@ -8475,7 +8477,7 @@ func.events.execute = async function (
8475
8477
  "xuda-event-javascript-module.mjs"
8476
8478
  );
8477
8479
 
8478
- return await module.run_javascript(
8480
+ const result = await module.run_javascript(
8479
8481
  SESSION_ID,
8480
8482
  jobNoP,
8481
8483
  dsSession,
@@ -8484,6 +8486,7 @@ func.events.execute = async function (
8484
8486
  })(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
8485
8487
  true
8486
8488
  );
8489
+ return result
8487
8490
  },
8488
8491
  loader_on: async function () {
8489
8492
  glb.CURRENT_APP_LOADING = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/xuda-worker-bundle-min",
3
- "version": "1.3.1114",
3
+ "version": "1.3.1116",
4
4
  "description": "xuda framework min",
5
5
  "main": "index.js",
6
6
  "scripts": {