@argos-ci/core 4.0.2 → 4.1.0
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/dist/index.d.ts +17 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -165,13 +165,29 @@ interface components {
|
|
|
165
165
|
repeat?: number | null;
|
|
166
166
|
/** @description The location of the test in the source code */
|
|
167
167
|
location?: {
|
|
168
|
-
/** @description The file
|
|
168
|
+
/** @description The located file */
|
|
169
169
|
file: string;
|
|
170
170
|
/** @description The line number in the file */
|
|
171
171
|
line: number;
|
|
172
172
|
/** @description The column number in the file */
|
|
173
173
|
column: number;
|
|
174
174
|
};
|
|
175
|
+
/** @description Annotations associated to the test */
|
|
176
|
+
annotations?: {
|
|
177
|
+
/** @description The type of annotation */
|
|
178
|
+
type: string;
|
|
179
|
+
/** @description The description of the annotation */
|
|
180
|
+
description?: string;
|
|
181
|
+
/** @description The location of the annotation in the source code */
|
|
182
|
+
location?: {
|
|
183
|
+
/** @description The located file */
|
|
184
|
+
file: string;
|
|
185
|
+
/** @description The line number in the file */
|
|
186
|
+
line: number;
|
|
187
|
+
/** @description The column number in the file */
|
|
188
|
+
column: number;
|
|
189
|
+
};
|
|
190
|
+
}[];
|
|
175
191
|
} | null) | null;
|
|
176
192
|
browser?: {
|
|
177
193
|
/** @description The name of the browser */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argos-ci/core",
|
|
3
3
|
"description": "Node.js SDK for visual testing with Argos.",
|
|
4
|
-
"version": "4.0
|
|
4
|
+
"version": "4.1.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"exports": {
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@argos-ci/api-client": "0.
|
|
44
|
-
"@argos-ci/util": "3.
|
|
43
|
+
"@argos-ci/api-client": "0.11.0",
|
|
44
|
+
"@argos-ci/util": "3.1.0",
|
|
45
45
|
"convict": "^6.2.4",
|
|
46
46
|
"debug": "^4.4.0",
|
|
47
47
|
"fast-glob": "^3.3.3",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"lint": "eslint .",
|
|
65
65
|
"test": "vitest"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "74818a1d3fe21574d0884c828ee709e62605d974"
|
|
68
68
|
}
|