@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/skyramp",
3
- "version": "1.2.25",
3
+ "version": "1.2.27",
4
4
  "description": "module for leveraging skyramp cli functionality",
5
5
  "scripts": {
6
6
  "lint": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
@@ -132,6 +132,7 @@ interface GenerateRestTestOptions {
132
132
  rawTrace?: string;
133
133
  unblock?: boolean;
134
134
  entrypoint?: string;
135
+ chainingKey?: string;
135
136
  }
136
137
 
137
138
  interface SendScenarioOptions {
@@ -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("check", null, ...args);
552
+ return this.SmartRetryWithFallback("uncheck", null, ...args);
553
553
  }
554
554
 
555
555
  async selectOption(value, ...args) {