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