@skyramp/skyramp 0.4.66 → 0.4.67

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.
Binary file
@@ -125,7 +125,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
125
125
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription, char* mockPath, char* projectPath);
126
126
  extern char* buildRequestsWrapper(char* mockDescription);
127
127
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
128
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath);
128
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath, char* overrideFile);
129
129
  extern char* runTesterStatusWrapper(char* namespace, char* address);
130
130
 
131
131
  #ifdef __cplusplus
Binary file
@@ -125,7 +125,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
125
125
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription, char* mockPath, char* projectPath);
126
126
  extern char* buildRequestsWrapper(char* mockDescription);
127
127
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
128
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath);
128
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath, char* overrideFile);
129
129
  extern char* runTesterStatusWrapper(char* namespace, char* address);
130
130
 
131
131
  #ifdef __cplusplus
@@ -125,7 +125,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
125
125
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription, char* mockPath, char* projectPath);
126
126
  extern char* buildRequestsWrapper(char* mockDescription);
127
127
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
128
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath);
128
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath, char* overrideFile);
129
129
  extern char* runTesterStatusWrapper(char* namespace, char* address);
130
130
 
131
131
  #ifdef __cplusplus
Binary file
@@ -125,7 +125,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
125
125
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription, char* mockPath, char* projectPath);
126
126
  extern char* buildRequestsWrapper(char* mockDescription);
127
127
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
128
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath);
128
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath, char* overrideFile);
129
129
  extern char* runTesterStatusWrapper(char* namespace, char* address);
130
130
 
131
131
  #ifdef __cplusplus
Binary file
Binary file
@@ -125,7 +125,7 @@ extern __declspec(dllexport) char* writeTestDescriptionWrapper(char* testDescrip
125
125
  extern __declspec(dllexport) char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription, char* mockPath, char* projectPath);
126
126
  extern __declspec(dllexport) char* buildRequestsWrapper(char* mockDescription);
127
127
  extern __declspec(dllexport) char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
128
- extern __declspec(dllexport) char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath);
128
+ extern __declspec(dllexport) char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* testFileName, char* testName, char* globalJsonHeaders, GoUint8 generateResult, char* projectPath, char* overrideFile);
129
129
  extern __declspec(dllexport) char* runTesterStatusWrapper(char* namespace, char* address);
130
130
 
131
131
  #ifdef __cplusplus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/skyramp",
3
- "version": "0.4.66",
3
+ "version": "0.4.67",
4
4
  "description": "module for leveraging skyramp cli functionality",
5
5
  "scripts": {
6
6
  "lint": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
@@ -40,7 +40,7 @@ const newDeleteDockerSkyrampWorkerWrapper = lib.func('newDeleteDockerSkyrampWork
40
40
  // tester related
41
41
  const runTesterStartWrapper = lib.func('runTesterStartWrapper', 'string', ['string', 'string', 'string', 'bool']);
42
42
  // mocker related
43
- const runTesterStartWrapperv1 = lib.func('runTesterStartWrapperWithGlobalHeaders', 'string', ['string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string']);
43
+ const runTesterStartWrapperv1 = lib.func('runTesterStartWrapperWithGlobalHeaders', 'string', ['string', 'string', 'string', 'string', 'string', 'string', 'bool', 'string', 'string']);
44
44
  const applyMockDescriptionWrapper = lib.func('applyMockDescriptionWrapper', 'string', ['string', 'string', 'string', 'string', 'string']);
45
45
  // NPM only: for VS code extension use
46
46
  const initTargetWrapper = lib.func('initTargetWrapper', 'string', ['string']);
@@ -442,7 +442,7 @@ class SkyrampClient {
442
442
 
443
443
  async runTesterStartv1(namespace, address, testYamlContent, testName, globalHeaders, generateReport = true) {
444
444
  return new Promise((resolve, reject) => {
445
- runTesterStartWrapperv1.async(namespace, address, testYamlContent, "", testName, globalHeaders, generateReport, "", (err, res) => {
445
+ runTesterStartWrapperv1.async(namespace, address, testYamlContent, "", testName, globalHeaders, generateReport, "", "", (err, res) => {
446
446
  if (err) {
447
447
  reject(err);
448
448
  } else if (res) {