@xuda.io/xuda-worker-bundle-min 1.3.1118 → 1.3.1120
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/index.js +6 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -8439,6 +8439,8 @@ func.events.execute = async function (
|
|
|
8439
8439
|
refIdP,
|
|
8440
8440
|
dsSession
|
|
8441
8441
|
);
|
|
8442
|
+
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result);
|
|
8443
|
+
return result
|
|
8442
8444
|
},
|
|
8443
8445
|
call_evaluate_javascript: async function () {
|
|
8444
8446
|
const module = await func.common.get_module(
|
|
@@ -8452,6 +8454,8 @@ func.events.execute = async function (
|
|
|
8452
8454
|
dsSession,
|
|
8453
8455
|
true
|
|
8454
8456
|
);
|
|
8457
|
+
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result);
|
|
8458
|
+
return result
|
|
8455
8459
|
},
|
|
8456
8460
|
execute_native_javascript: async function () {
|
|
8457
8461
|
const module = await func.common.get_module(
|
|
@@ -8467,6 +8471,7 @@ func.events.execute = async function (
|
|
|
8467
8471
|
${refIdP.value}
|
|
8468
8472
|
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`
|
|
8469
8473
|
);
|
|
8474
|
+
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result);
|
|
8470
8475
|
return result
|
|
8471
8476
|
},
|
|
8472
8477
|
execute_evaluate_javascript: async function () {
|
|
@@ -8484,6 +8489,7 @@ func.events.execute = async function (
|
|
|
8484
8489
|
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
|
|
8485
8490
|
true
|
|
8486
8491
|
);
|
|
8492
|
+
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result);
|
|
8487
8493
|
return result
|
|
8488
8494
|
},
|
|
8489
8495
|
loader_on: async function () {
|