@skyramp/skyramp 1.3.2 → 1.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/skyramp",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "module for leveraging skyramp cli functionality",
5
5
  "scripts": {
6
6
  "lint": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
@@ -125,6 +125,7 @@ interface GenerateRestTestOptions {
125
125
  playwrightInput?: string;
126
126
  playwrightViewportSize?: string;
127
127
  playwrightStoragePath?: string;
128
+ playwrightSaveStoragePath?: string;
128
129
  loadCount?: string;
129
130
  loadDuration?: string;
130
131
  loadNumThreads?: string;
@@ -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', 'string', 'string', 'bool', 'string', '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', '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
 
@@ -865,6 +865,7 @@ class SkyrampClient {
865
865
  options.playwrightInput || "",
866
866
  options.playwrightViewportSize || "",
867
867
  options.playwrightStoragePath || "",
868
+ options.playwrightSaveStoragePath || "",
868
869
  options.loadCount || "0",
869
870
  options.loadDuration || "0",
870
871
  options.loadNumThreads || "0",