@digipair/skill-sse 0.71.4 → 0.71.6
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.esm.js +7 -7
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -25127,14 +25127,14 @@ function indent(str, spaces) {
|
|
|
25127
25127
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
25128
25128
|
// match is required
|
|
25129
25129
|
if (!match) {
|
|
25130
|
-
return
|
|
25130
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
25131
25131
|
v: nextMatch1
|
|
25132
25132
|
};
|
|
25133
25133
|
}
|
|
25134
25134
|
var token = match.token, offset = match.offset;
|
|
25135
25135
|
i1 += offset;
|
|
25136
25136
|
if (token === " ") {
|
|
25137
|
-
return
|
|
25137
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
25138
25138
|
}
|
|
25139
25139
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
|
25140
25140
|
token
|
|
@@ -25153,7 +25153,7 @@ function indent(str, spaces) {
|
|
|
25153
25153
|
if (contextKeys.some(function(el) {
|
|
25154
25154
|
return el.startsWith(name);
|
|
25155
25155
|
})) {
|
|
25156
|
-
return
|
|
25156
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
25157
25157
|
}
|
|
25158
25158
|
if (dateTimeIdentifiers.some(function(el) {
|
|
25159
25159
|
return el === name;
|
|
@@ -25172,9 +25172,9 @@ function indent(str, spaces) {
|
|
|
25172
25172
|
if (dateTimeIdentifiers.some(function(el) {
|
|
25173
25173
|
return el.startsWith(name);
|
|
25174
25174
|
})) {
|
|
25175
|
-
return
|
|
25175
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, "continue";
|
|
25176
25176
|
}
|
|
25177
|
-
return
|
|
25177
|
+
return nextMatch = nextMatch1, i = i1, tokens = tokens1, {
|
|
25178
25178
|
v: nextMatch1
|
|
25179
25179
|
};
|
|
25180
25180
|
};
|
|
@@ -29105,8 +29105,8 @@ const applyTemplate = (value, context)=>{
|
|
|
29105
29105
|
};
|
|
29106
29106
|
const executePins = async (settingsOrigin, context = {})=>{
|
|
29107
29107
|
var _settings_conditions, _settings_conditions1;
|
|
29108
|
-
_config.LOGGER('INFO', context.__PATH__, 'execute:start', context);
|
|
29109
29108
|
let settings = preparePinsSettings(settingsOrigin, context);
|
|
29109
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.library}:${settings.element}:start`, context, settings);
|
|
29110
29110
|
const alias = _config.ALIAS.find((alias)=>settings.library.split(':')[0] === alias.name);
|
|
29111
29111
|
const config = context.config || {};
|
|
29112
29112
|
let version = (config.VERSIONS || {})[settings.library] || 'latest';
|
|
@@ -29164,7 +29164,7 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
29164
29164
|
throw new Error(`Element ${settings.element} not found in library ${settings.library}`);
|
|
29165
29165
|
}
|
|
29166
29166
|
const result = await pins(settings.properties, settings.pins, context);
|
|
29167
|
-
_config.LOGGER('INFO', context.__PATH__,
|
|
29167
|
+
_config.LOGGER('INFO', context.__PATH__, `execute:${settings.library}:${settings.element}:end`, context, result);
|
|
29168
29168
|
return result;
|
|
29169
29169
|
};
|
|
29170
29170
|
const executePinsList = async (pinsSettingsList, context, path = 'root')=>{
|