sealights-newman-wrapper 2.0.129 → 2.0.133
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/README.md
CHANGED
|
@@ -65,7 +65,7 @@ Create a file `sl.conf` and fill it with config in JSON format
|
|
|
65
65
|
- labId - Pre-defined Sealights lab-id (optional)
|
|
66
66
|
- proxy - Proxy server (optional)
|
|
67
67
|
- testProjectId - Test project ID differentiates between different test stages with the same test stage name of different teams/products/etc.
|
|
68
|
-
-
|
|
68
|
+
- prID - Identifies PR pipeline executions, allowing them to be distinguished from eachother and from other executions of the same test-stage.
|
|
69
69
|
|
|
70
70
|
## Author
|
|
71
71
|
|
package/bin/index.js
CHANGED
|
File without changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { CollectionDefinition
|
|
1
|
+
import type { CollectionDefinition } from 'postman-collection';
|
|
2
2
|
export declare class CollectionModifier {
|
|
3
3
|
private logger;
|
|
4
4
|
protected _excludedItems: string[];
|
|
@@ -8,7 +8,7 @@ export declare class CollectionModifier {
|
|
|
8
8
|
get excludedItems(): string[];
|
|
9
9
|
setItemsToExclude(itemsToExclude?: Record<string, boolean>): void;
|
|
10
10
|
modify(pathToCollection: string): Promise<ItemGroupDefinition>;
|
|
11
|
-
getCollectionName():
|
|
11
|
+
getCollectionName(): any;
|
|
12
12
|
private parseCollection;
|
|
13
13
|
private filterItemsByName;
|
|
14
14
|
}
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.0.
|
|
1
|
+
export declare const version = "2.0.133";
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sealights-newman-wrapper",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.133",
|
|
4
4
|
"description": "Sealights agent for Newman",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": "bin/index.js",
|
|
@@ -12,17 +12,13 @@
|
|
|
12
12
|
"type": "git",
|
|
13
13
|
"url": "git+https://github.com/Sealights/SL.OnPremis.Plugins.JavaScript.git"
|
|
14
14
|
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"prebuild": "node -p \"'export const version = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
|
|
17
|
-
"build": "npx tsc",
|
|
18
|
-
"test": "npx cross-env TS_NODE_PROJECT=./tsconfig.mocha.json mocha"
|
|
19
|
-
},
|
|
20
15
|
"author": "",
|
|
21
16
|
"license": "ISC",
|
|
22
17
|
"dependencies": {
|
|
23
18
|
"lodash": "^4.17.21",
|
|
24
19
|
"minimist": "^1.2.8",
|
|
25
|
-
"
|
|
20
|
+
"postman-collection": "^4.4.0",
|
|
21
|
+
"sealights-plugins-common": "2.0.131"
|
|
26
22
|
},
|
|
27
23
|
"devDependencies": {
|
|
28
24
|
"@types/lodash": "^4.14.200",
|
|
@@ -35,5 +31,9 @@
|
|
|
35
31
|
"peerDependencies": {
|
|
36
32
|
"newman": ">= 2 < 7"
|
|
37
33
|
},
|
|
38
|
-
"
|
|
39
|
-
|
|
34
|
+
"scripts": {
|
|
35
|
+
"prebuild": "node -p \"'export const version = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
|
|
36
|
+
"build": "npx tsc",
|
|
37
|
+
"test": "npx cross-env TS_NODE_PROJECT=./tsconfig.mocha.json mocha"
|
|
38
|
+
}
|
|
39
|
+
}
|