@skyramp/skyramp 0.5.19 → 0.5.20

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.19",
3
+ "version": "0.5.20",
4
4
  "description": "module for leveraging skyramp cli functionality",
5
5
  "scripts": {
6
6
  "lint": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
@@ -82,7 +82,7 @@ interface GenerateRestTestOptions {
82
82
  outputDir?: string;
83
83
  runtime?: string;
84
84
  dockerNetwork?: string;
85
- dockerWorkerPort?: number;
85
+ dockerWorkerPort?: string;
86
86
  k8sNamespace?: string;
87
87
  k8sConfig?: string;
88
88
  k8sContext?: string;
@@ -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', 'string', 'bool', 'string', 'bool', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string']);
54
+ 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', 'bool', 'string']);
55
55
  const traceCollectWrapper = lib.func('traceCollectWrapper', 'string', ['string', 'string', 'bool', 'string']);
56
56
  const analyzeOpenapiWrapper = lib.func('analyzeOpenapiWrapper', 'string', ['string', 'string']);
57
57
 
@@ -730,7 +730,7 @@ class SkyrampClient {
730
730
  options.outputDir || "",
731
731
  options.runtime || "",
732
732
  options.dockerNetwork || "",
733
- options.dockerWorkerPort || 0,
733
+ options.dockerWorkerPort || "0",
734
734
  options.k8sNamespace || "",
735
735
  options.k8sConfig || "",
736
736
  options.k8sContext || "",