@digipair/skill-mongodb 0.31.0 → 0.31.3
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
|
@@ -23581,14 +23581,14 @@ function indent(str, spaces) {
|
|
|
23581
23581
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23582
23582
|
// match is required
|
|
23583
23583
|
if (!match) {
|
|
23584
|
-
return
|
|
23584
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23585
23585
|
v: nextMatch1
|
|
23586
23586
|
};
|
|
23587
23587
|
}
|
|
23588
23588
|
var token = match.token, offset = match.offset;
|
|
23589
23589
|
i1 += offset;
|
|
23590
23590
|
if (token === " ") {
|
|
23591
|
-
return
|
|
23591
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23592
23592
|
}
|
|
23593
23593
|
tokens1 = _to_consumable_array$a(tokens1).concat([
|
|
23594
23594
|
token
|
|
@@ -23607,7 +23607,7 @@ function indent(str, spaces) {
|
|
|
23607
23607
|
if (contextKeys.some(function(el) {
|
|
23608
23608
|
return el.startsWith(name);
|
|
23609
23609
|
})) {
|
|
23610
|
-
return
|
|
23610
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23611
23611
|
}
|
|
23612
23612
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23613
23613
|
return el === name;
|
|
@@ -23626,9 +23626,9 @@ function indent(str, spaces) {
|
|
|
23626
23626
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23627
23627
|
return el.startsWith(name);
|
|
23628
23628
|
})) {
|
|
23629
|
-
return
|
|
23629
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23630
23630
|
}
|
|
23631
|
-
return
|
|
23631
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23632
23632
|
v: nextMatch1
|
|
23633
23633
|
};
|
|
23634
23634
|
};
|
|
@@ -27504,17 +27504,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27504
27504
|
};
|
|
27505
27505
|
const executePinsList = async (pinsSettingsList, context)=>{
|
|
27506
27506
|
let previous = {};
|
|
27507
|
-
const steps = [];
|
|
27508
27507
|
// parcourir tous les pins
|
|
27509
27508
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
|
27510
27509
|
const settings = pinsSettingsList[i];
|
|
27511
27510
|
try {
|
|
27512
27511
|
previous = await executePins(settings, _extends$1({}, context, {
|
|
27513
27512
|
previous,
|
|
27514
|
-
steps,
|
|
27515
27513
|
parent: {
|
|
27516
27514
|
previous: context.previous,
|
|
27517
|
-
steps: context.steps,
|
|
27518
27515
|
parent: context.parent
|
|
27519
27516
|
}
|
|
27520
27517
|
}));
|
|
@@ -27524,10 +27521,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
|
27524
27521
|
}
|
|
27525
27522
|
throw error;
|
|
27526
27523
|
}
|
|
27527
|
-
steps[i] = {
|
|
27528
|
-
name: settings.name,
|
|
27529
|
-
result: previous
|
|
27530
|
-
};
|
|
27531
27524
|
}
|
|
27532
27525
|
return previous;
|
|
27533
27526
|
};
|
package/index.esm.js
CHANGED
|
@@ -23531,14 +23531,14 @@ function indent(str, spaces) {
|
|
|
23531
23531
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23532
23532
|
// match is required
|
|
23533
23533
|
if (!match) {
|
|
23534
|
-
return
|
|
23534
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23535
23535
|
v: nextMatch1
|
|
23536
23536
|
};
|
|
23537
23537
|
}
|
|
23538
23538
|
var token = match.token, offset = match.offset;
|
|
23539
23539
|
i1 += offset;
|
|
23540
23540
|
if (token === " ") {
|
|
23541
|
-
return
|
|
23541
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23542
23542
|
}
|
|
23543
23543
|
tokens1 = _to_consumable_array$a(tokens1).concat([
|
|
23544
23544
|
token
|
|
@@ -23557,7 +23557,7 @@ function indent(str, spaces) {
|
|
|
23557
23557
|
if (contextKeys.some(function(el) {
|
|
23558
23558
|
return el.startsWith(name);
|
|
23559
23559
|
})) {
|
|
23560
|
-
return
|
|
23560
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23561
23561
|
}
|
|
23562
23562
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23563
23563
|
return el === name;
|
|
@@ -23576,9 +23576,9 @@ function indent(str, spaces) {
|
|
|
23576
23576
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23577
23577
|
return el.startsWith(name);
|
|
23578
23578
|
})) {
|
|
23579
|
-
return
|
|
23579
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23580
23580
|
}
|
|
23581
|
-
return
|
|
23581
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23582
23582
|
v: nextMatch1
|
|
23583
23583
|
};
|
|
23584
23584
|
};
|
|
@@ -27454,17 +27454,14 @@ const executePins = async (settingsOrigin, context = {})=>{
|
|
|
27454
27454
|
};
|
|
27455
27455
|
const executePinsList = async (pinsSettingsList, context)=>{
|
|
27456
27456
|
let previous = {};
|
|
27457
|
-
const steps = [];
|
|
27458
27457
|
// parcourir tous les pins
|
|
27459
27458
|
for(let i = 0; i < pinsSettingsList.length; i++){
|
|
27460
27459
|
const settings = pinsSettingsList[i];
|
|
27461
27460
|
try {
|
|
27462
27461
|
previous = await executePins(settings, _extends$1({}, context, {
|
|
27463
27462
|
previous,
|
|
27464
|
-
steps,
|
|
27465
27463
|
parent: {
|
|
27466
27464
|
previous: context.previous,
|
|
27467
|
-
steps: context.steps,
|
|
27468
27465
|
parent: context.parent
|
|
27469
27466
|
}
|
|
27470
27467
|
}));
|
|
@@ -27474,10 +27471,6 @@ const executePinsList = async (pinsSettingsList, context)=>{
|
|
|
27474
27471
|
}
|
|
27475
27472
|
throw error;
|
|
27476
27473
|
}
|
|
27477
|
-
steps[i] = {
|
|
27478
|
-
name: settings.name,
|
|
27479
|
-
result: previous
|
|
27480
|
-
};
|
|
27481
27474
|
}
|
|
27482
27475
|
return previous;
|
|
27483
27476
|
};
|