@skyramp/skyramp 0.5.17 → 0.5.18

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": "0.5.17",
3
+ "version": "0.5.18",
4
4
  "description": "module for leveraging skyramp cli functionality",
5
5
  "scripts": {
6
6
  "lint": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
@@ -100,6 +100,7 @@ interface GenerateRestTestOptions {
100
100
  traceFilePath?: string;
101
101
  generateInclude?: string[];
102
102
  generateExclude?: string[];
103
+ generateNoProxy?: string[];
103
104
  generateInsecure?: boolean;
104
105
  assertOption?: string;
105
106
  playwright?: boolean;
@@ -51,7 +51,7 @@ const deployTargetWrapper = lib.func('deployTargetWrapper', 'string', ['string',
51
51
  const deleteTargetWrapper = lib.func('deleteTargetWrapper', 'string', ['string', 'string', 'string', 'string', 'string']);
52
52
  const runTesterGenerateRestWrapper = lib.func('runTesterGenerateRestWrapper', testerGenerateType, ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'int', 'bool', 'bool', 'bool']);
53
53
 
54
- const generateRestTestWrapper = lib.func('generateRestTestWrapper', 'string', ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'int', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'bool', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string', 'bool', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool']);
54
+ const generateRestTestWrapper = lib.func('generateRestTestWrapper', 'string', ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'int', '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', 'bool']);
55
55
  const traceCollectWrapper = lib.func('traceCollectWrapper', 'string', ['string', 'string', 'bool', 'string']);
56
56
  const analyzeOpenapiWrapper = lib.func('analyzeOpenapiWrapper', 'string', ['string', 'string']);
57
57
 
@@ -750,6 +750,7 @@ class SkyrampClient {
750
750
  options.traceFilePath || "",
751
751
  JSON.stringify(options.generateInclude || []),
752
752
  JSON.stringify(options.generateExclude || []),
753
+ JSON.stringify(options.generateNoProxy || []),
753
754
  options.generateInsecure || false,
754
755
  options.assertOption || "",
755
756
  options.playwright || false,