@allurereport/core-api 3.8.2 → 3.10.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/config.d.ts CHANGED
@@ -1 +1,9 @@
1
1
  export type DefaultLabelsConfig = Record<string, string | string[]>;
2
+ export type AllureServiceConfig = {
3
+ accessToken?: string;
4
+ private?: boolean;
5
+ uploadConcurrency?: number;
6
+ uploadMaxAttempts?: number;
7
+ uploadMaxSimultaneousFailures?: number;
8
+ };
9
+ export type ResolvedAllureServiceConfig = AllureServiceConfig & Required<Pick<AllureServiceConfig, "uploadConcurrency" | "uploadMaxAttempts" | "uploadMaxSimultaneousFailures">>;
package/dist/model.d.ts CHANGED
@@ -48,7 +48,8 @@ export interface TestResult {
48
48
  muted: boolean;
49
49
  known: boolean;
50
50
  transition?: TestStatusTransition;
51
- hidden: boolean;
51
+ retryHash?: string;
52
+ isRetry: boolean;
52
53
  hostId?: string;
53
54
  threadId?: string;
54
55
  labels: TestLabel[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/core-api",
3
- "version": "3.8.2",
3
+ "version": "3.10.0",
4
4
  "description": "Allure Core API",
5
5
  "keywords": [
6
6
  "allure"
@@ -30,12 +30,13 @@
30
30
  },
31
31
  "devDependencies": {
32
32
  "@types/d3-shape": "^3.1.6",
33
- "@types/node": "^20.17.9",
34
- "@vitest/runner": "^2.1.9",
33
+ "@types/node": "^20",
34
+ "@vitest/runner": "^2",
35
35
  "@vitest/snapshot": "^2.1.9",
36
- "allure-vitest": "^3.3.3",
37
- "rimraf": "^6.0.1",
38
- "typescript": "^5.6.3",
39
- "vitest": "^2.1.9"
36
+ "allure-js-commons": "^3",
37
+ "allure-vitest": "^3",
38
+ "rimraf": "^6",
39
+ "typescript": "^5",
40
+ "vitest": "^4.1.0"
40
41
  }
41
42
  }