@digipair/skill-tool 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 +1 -1
- package/dist/index.esm.js +6 -6
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -30,8 +30,8 @@ let ToolService = class ToolService {
|
|
|
30
30
|
async execute(params, _pinsSettingsList, _context) {
|
|
31
31
|
const { execute, context = {} } = params;
|
|
32
32
|
const result = await engine.executePinsList(execute, {
|
|
33
|
-
...context,
|
|
34
33
|
..._context,
|
|
34
|
+
...context,
|
|
35
35
|
request: _context.requester?.request ?? _context.request
|
|
36
36
|
}, `${context.__PATH__}.execute`);
|
|
37
37
|
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
|
|
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
|
|
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
|
|
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
|
|
22886
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
22887
22887
|
}
|
|
22888
|
-
return
|
|
22888
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
22889
22889
|
v: nextMatch1
|
|
22890
22890
|
};
|
|
22891
22891
|
};
|
|
@@ -44598,8 +44598,8 @@ let ToolService = class ToolService {
|
|
|
44598
44598
|
async execute(params, _pinsSettingsList, _context) {
|
|
44599
44599
|
const { execute, context = {} } = params;
|
|
44600
44600
|
const result = await executePinsList(execute, {
|
|
44601
|
-
...context,
|
|
44602
44601
|
..._context,
|
|
44602
|
+
...context,
|
|
44603
44603
|
request: _context.requester?.request ?? _context.request
|
|
44604
44604
|
}, `${context.__PATH__}.execute`);
|
|
44605
44605
|
return result;
|