@digipair/skill-vespa 0.31.0 → 0.31.2
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.cjs.js +5 -12
- package/index.esm.js +5 -12
- package/package.json +1 -1
package/index.cjs.js
CHANGED
@@ -63882,14 +63882,14 @@ function indent(str, spaces) {
|
|
63882
63882
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
63883
63883
|
// match is required
|
63884
63884
|
if (!match) {
|
63885
|
-
return
|
63885
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
63886
63886
|
v: nextMatch1
|
63887
63887
|
};
|
63888
63888
|
}
|
63889
63889
|
var token = match.token, offset = match.offset;
|
63890
63890
|
i1 += offset;
|
63891
63891
|
if (token === " ") {
|
63892
|
-
return
|
63892
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
63893
63893
|
}
|
63894
63894
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
63895
63895
|
token
|
@@ -63908,7 +63908,7 @@ function indent(str, spaces) {
|
|
63908
63908
|
if (contextKeys.some(function(el) {
|
63909
63909
|
return el.startsWith(name);
|
63910
63910
|
})) {
|
63911
|
-
return
|
63911
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
63912
63912
|
}
|
63913
63913
|
if (dateTimeIdentifiers.some(function(el) {
|
63914
63914
|
return el === name;
|
@@ -63927,9 +63927,9 @@ function indent(str, spaces) {
|
|
63927
63927
|
if (dateTimeIdentifiers.some(function(el) {
|
63928
63928
|
return el.startsWith(name);
|
63929
63929
|
})) {
|
63930
|
-
return
|
63930
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, "continue";
|
63931
63931
|
}
|
63932
|
-
return
|
63932
|
+
return tokens = tokens1, nextMatch = nextMatch1, i = i1, {
|
63933
63933
|
v: nextMatch1
|
63934
63934
|
};
|
63935
63935
|
};
|
@@ -67805,17 +67805,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
67805
67805
|
};
|
67806
67806
|
const executePinsList = async (pinsSettingsList, context)=>{
|
67807
67807
|
let previous = {};
|
67808
|
-
const steps = [];
|
67809
67808
|
// parcourir tous les pins
|
67810
67809
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
67811
67810
|
const settings = pinsSettingsList[i];
|
67812
67811
|
try {
|
67813
67812
|
previous = await executePins(settings, _extends({}, context, {
|
67814
67813
|
previous,
|
67815
|
-
steps,
|
67816
67814
|
parent: {
|
67817
67815
|
previous: context.previous,
|
67818
|
-
steps: context.steps,
|
67819
67816
|
parent: context.parent
|
67820
67817
|
}
|
67821
67818
|
}));
|
@@ -67825,10 +67822,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
67825
67822
|
}
|
67826
67823
|
throw error;
|
67827
67824
|
}
|
67828
|
-
steps[i] = {
|
67829
|
-
name: settings.name,
|
67830
|
-
result: previous
|
67831
|
-
};
|
67832
67825
|
}
|
67833
67826
|
return previous;
|
67834
67827
|
};
|
package/index.esm.js
CHANGED
@@ -63860,14 +63860,14 @@ function indent(str, spaces) {
|
|
63860
63860
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
63861
63861
|
// match is required
|
63862
63862
|
if (!match) {
|
63863
|
-
return nextMatch = nextMatch1,
|
63863
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
63864
63864
|
v: nextMatch1
|
63865
63865
|
};
|
63866
63866
|
}
|
63867
63867
|
var token = match.token, offset = match.offset;
|
63868
63868
|
i1 += offset;
|
63869
63869
|
if (token === " ") {
|
63870
|
-
return nextMatch = nextMatch1,
|
63870
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
63871
63871
|
}
|
63872
63872
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
63873
63873
|
token
|
@@ -63886,7 +63886,7 @@ function indent(str, spaces) {
|
|
63886
63886
|
if (contextKeys.some(function(el) {
|
63887
63887
|
return el.startsWith(name);
|
63888
63888
|
})) {
|
63889
|
-
return nextMatch = nextMatch1,
|
63889
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
63890
63890
|
}
|
63891
63891
|
if (dateTimeIdentifiers.some(function(el) {
|
63892
63892
|
return el === name;
|
@@ -63905,9 +63905,9 @@ function indent(str, spaces) {
|
|
63905
63905
|
if (dateTimeIdentifiers.some(function(el) {
|
63906
63906
|
return el.startsWith(name);
|
63907
63907
|
})) {
|
63908
|
-
return nextMatch = nextMatch1,
|
63908
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
63909
63909
|
}
|
63910
|
-
return nextMatch = nextMatch1,
|
63910
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
63911
63911
|
v: nextMatch1
|
63912
63912
|
};
|
63913
63913
|
};
|
@@ -67783,17 +67783,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
67783
67783
|
};
|
67784
67784
|
const executePinsList = async (pinsSettingsList, context)=>{
|
67785
67785
|
let previous = {};
|
67786
|
-
const steps = [];
|
67787
67786
|
// parcourir tous les pins
|
67788
67787
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
67789
67788
|
const settings = pinsSettingsList[i];
|
67790
67789
|
try {
|
67791
67790
|
previous = await executePins(settings, _extends({}, context, {
|
67792
67791
|
previous,
|
67793
|
-
steps,
|
67794
67792
|
parent: {
|
67795
67793
|
previous: context.previous,
|
67796
|
-
steps: context.steps,
|
67797
67794
|
parent: context.parent
|
67798
67795
|
}
|
67799
67796
|
}));
|
@@ -67803,10 +67800,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
67803
67800
|
}
|
67804
67801
|
throw error;
|
67805
67802
|
}
|
67806
|
-
steps[i] = {
|
67807
|
-
name: settings.name,
|
67808
|
-
result: previous
|
67809
|
-
};
|
67810
67803
|
}
|
67811
67804
|
return previous;
|
67812
67805
|
};
|