@skyramp/skyramp 1.2.25 → 1.2.27
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/package.json
CHANGED
|
@@ -57,7 +57,7 @@ const deployTargetWrapper = lib.func('deployTargetWrapper', 'string', ['string',
|
|
|
57
57
|
const deleteTargetWrapper = lib.func('deleteTargetWrapper', 'string', ['string', 'string', 'string', 'string', 'string']);
|
|
58
58
|
const runTesterGenerateRestWrapper = lib.func('runTesterGenerateRestWrapper', testerGenerateType, ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'int', 'bool', 'bool', 'bool']);
|
|
59
59
|
|
|
60
|
-
const generateRestTestWrapper = lib.func('generateRestTestWrapper', 'string', ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'bool', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string', 'bool', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string']);
|
|
60
|
+
const generateRestTestWrapper = lib.func('generateRestTestWrapper', 'string', ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'bool', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string', 'bool', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string', 'string']);
|
|
61
61
|
const traceCollectWrapper = lib.func('traceCollectWrapper', 'string', ['string', 'string', 'bool', 'string', 'string']);
|
|
62
62
|
const analyzeOpenapiWrapper = lib.func('analyzeOpenapiWrapper', 'string', ['string', 'string']);
|
|
63
63
|
|
|
@@ -869,6 +869,7 @@ class SkyrampClient {
|
|
|
869
869
|
options.rawTrace || "",
|
|
870
870
|
options.unblock || false,
|
|
871
871
|
options.entrypoint || "",
|
|
872
|
+
options.chainingKey || "",
|
|
872
873
|
(err, res) => {
|
|
873
874
|
if (err) {
|
|
874
875
|
reject(err);
|
|
@@ -549,7 +549,7 @@ class SkyrampPlaywrightLocator {
|
|
|
549
549
|
}
|
|
550
550
|
|
|
551
551
|
async uncheck(...args) {
|
|
552
|
-
return this.SmartRetryWithFallback("
|
|
552
|
+
return this.SmartRetryWithFallback("uncheck", null, ...args);
|
|
553
553
|
}
|
|
554
554
|
|
|
555
555
|
async selectOption(value, ...args) {
|