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
- - targetTestProjectId - Test project ID to set for PR builds. The target test-project-id will be used to the statistical-model used for recommendations.
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, ItemGroupDefinition } from 'postman-collection';
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(): string;
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.129";
1
+ export declare const version = "2.0.133";
package/dist/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = "2.0.129";
4
+ exports.version = "2.0.133";
5
5
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sealights-newman-wrapper",
3
- "version": "2.0.129",
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
- "sealights-plugins-common": "^2.0.127"
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
- "gitHead": "4f60c236bf4f4437a00c56b92407daac2f2b0169"
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
+ }