@digipair/skill-worker 0.119.7 → 0.119.9

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/dist/index.cjs.js CHANGED
@@ -46,8 +46,8 @@ let WorkerService = class WorkerService {
46
46
  async execute(params, _pinsSettingsList, _context) {
47
47
  const { execute, context = {} } = params;
48
48
  const result = await engine.executePinsList(execute, {
49
- ...context,
50
49
  ..._context,
50
+ ...context,
51
51
  request: _context.requester?.request ?? _context.request
52
52
  }, `${context.__PATH__}.execute`);
53
53
  return result;
package/dist/index.esm.js CHANGED
@@ -22838,14 +22838,14 @@ function indent(str, spaces) {
22838
22838
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
22839
22839
  // match is required
22840
22840
  if (!match) {
22841
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
22841
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
22842
22842
  v: nextMatch1
22843
22843
  };
22844
22844
  }
22845
22845
  var token = match.token, offset = match.offset;
22846
22846
  i1 += offset;
22847
22847
  if (token === ' ') {
22848
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
22848
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
22849
22849
  }
22850
22850
  tokens1 = _to_consumable_array$4(tokens1).concat([
22851
22851
  token
@@ -22864,7 +22864,7 @@ function indent(str, spaces) {
22864
22864
  if (contextKeys.some(function(el) {
22865
22865
  return el.startsWith(name);
22866
22866
  })) {
22867
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
22867
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
22868
22868
  }
22869
22869
  if (dateTimeIdentifiers.some(function(el) {
22870
22870
  return el === name;
@@ -22883,9 +22883,9 @@ function indent(str, spaces) {
22883
22883
  if (dateTimeIdentifiers.some(function(el) {
22884
22884
  return el.startsWith(name);
22885
22885
  })) {
22886
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
22886
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
22887
22887
  }
22888
- return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
22888
+ return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
22889
22889
  v: nextMatch1
22890
22890
  };
22891
22891
  };
@@ -44614,8 +44614,8 @@ let WorkerService = class WorkerService {
44614
44614
  async execute(params, _pinsSettingsList, _context) {
44615
44615
  const { execute, context = {} } = params;
44616
44616
  const result = await executePinsList(execute, {
44617
- ...context,
44618
44617
  ..._context,
44618
+ ...context,
44619
44619
  request: _context.requester?.request ?? _context.request
44620
44620
  }, `${context.__PATH__}.execute`);
44621
44621
  return result;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-worker",
3
- "version": "0.119.7",
3
+ "version": "0.119.9",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",