@xuda.io/xuda-worker-bundle-min 1.3.1054 → 1.3.1056

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 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -8765,9 +8765,10 @@ func.events.execute = async function (
8765
8765
  };
8766
8766
 
8767
8767
  for await (let [key, val] of Object.entries(_payload)) {
8768
- if (key.substring(0, 7) !== "xu-exp:") {
8769
- payload[key] = await get_payload_property_value(key);
8770
- }
8768
+ // if (key.substring(0, 7) !== "xu-exp:") {
8769
+ const new_key = key.replaceAll("xu-exp:", ""); //key.substring(0, 7) === "xu-exp:" ? key.substring(7): key
8770
+ payload[new_key] = await get_payload_property_value(new_key);
8771
+ // }
8771
8772
  }
8772
8773
  }
8773
8774
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/xuda-worker-bundle-min",
3
- "version": "1.3.1054",
3
+ "version": "1.3.1056",
4
4
  "description": "xuda framework min",
5
5
  "main": "index.js",
6
6
  "scripts": {