@skyramp/skyramp 0.4.44 → 0.4.46

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
@@ -118,7 +118,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
118
118
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription);
119
119
  extern char* buildRequestsWrapper(char* mockDescription);
120
120
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
121
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult);
121
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult, GoUint8 isDockerEnv);
122
122
  extern char* runTesterStatusWrapper(char* namespace, char* address);
123
123
 
124
124
  #ifdef __cplusplus
Binary file
@@ -118,7 +118,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
118
118
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription);
119
119
  extern char* buildRequestsWrapper(char* mockDescription);
120
120
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
121
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult);
121
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult, GoUint8 isDockerEnv);
122
122
  extern char* runTesterStatusWrapper(char* namespace, char* address);
123
123
 
124
124
  #ifdef __cplusplus
@@ -118,7 +118,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
118
118
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription);
119
119
  extern char* buildRequestsWrapper(char* mockDescription);
120
120
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
121
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult);
121
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult, GoUint8 isDockerEnv);
122
122
  extern char* runTesterStatusWrapper(char* namespace, char* address);
123
123
 
124
124
  #ifdef __cplusplus
Binary file
@@ -118,7 +118,7 @@ extern char* writeTestDescriptionWrapper(char* testDescription, char* testName);
118
118
  extern char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription);
119
119
  extern char* buildRequestsWrapper(char* mockDescription);
120
120
  extern char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
121
- extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult);
121
+ extern char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult, GoUint8 isDockerEnv);
122
122
  extern char* runTesterStatusWrapper(char* namespace, char* address);
123
123
 
124
124
  #ifdef __cplusplus
Binary file
Binary file
@@ -118,7 +118,7 @@ extern __declspec(dllexport) char* writeTestDescriptionWrapper(char* testDescrip
118
118
  extern __declspec(dllexport) char* applyMockDescriptionWrapper(char* namespace, char* address, char* mockDescription);
119
119
  extern __declspec(dllexport) char* buildRequestsWrapper(char* mockDescription);
120
120
  extern __declspec(dllexport) char* runTesterStartWrapper(char* namespace, char* address, char* testDescription, GoUint8 generateResult);
121
- extern __declspec(dllexport) char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult);
121
+ extern __declspec(dllexport) char* runTesterStartWrapperWithGlobalHeaders(char* namespace, char* address, char* testDescription, char* globalJsonHeaders, GoUint8 generateResult, GoUint8 isDockerEnv);
122
122
  extern __declspec(dllexport) char* runTesterStatusWrapper(char* namespace, char* address);
123
123
 
124
124
  #ifdef __cplusplus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/skyramp",
3
- "version": "0.4.44",
3
+ "version": "0.4.46",
4
4
  "description": "module for leveraging skyramp cli functionality",
5
5
  "scripts": {
6
6
  "pack": "npm pack"
@@ -14,7 +14,7 @@ export declare class SkyrampClient {
14
14
  testerStartFromFile(namespace: string, address: string, filePath: string): Promise<void>;
15
15
  runTesterStart(namespace: string, address: string, testYamlContent: string, generateReport: boolean): Promise<void>;
16
16
  initTarget(targetName: string): Promise<void>;
17
- deployTarget(targetDescription: string, namespace: string, workerImage?: string, localImage?: bool): Promise<void>;
17
+ deployTarget(targetDescription: string, namespace: string, workerImage?: string, localImage?: boolean): Promise<void>;
18
18
  deleteTarget(targetDescription: string, namespace: string): Promise<void>;
19
19
 
20
20
  // login / oauth related