@allurereport/reader 3.9.0 → 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.
@@ -1,8 +1,8 @@
1
1
  import type { XcActivities, XcTestDetails, XcTests } from "./xcModel.js";
2
2
  export declare const xcrunJson: <T>(utilityName: string, ...args: readonly string[]) => Promise<import("@allurereport/reader-api").Unknown<T>>;
3
- export declare const xcrunBinary: (utilityName: string, ...args: readonly string[]) => Promise<Buffer | undefined>;
3
+ export declare const xcrunBinary: (utilityName: string, ...args: readonly string[]) => Promise<Buffer<ArrayBuffer> | undefined>;
4
4
  export declare const xcresulttool: <T>(...args: readonly string[]) => Promise<import("@allurereport/reader-api").Unknown<T>>;
5
- export declare const xcresulttoolBinary: (...args: readonly string[]) => Promise<Buffer | undefined>;
5
+ export declare const xcresulttoolBinary: (...args: readonly string[]) => Promise<Buffer<ArrayBuffer> | undefined>;
6
6
  export declare const version: () => Promise<string>;
7
7
  export declare const getTests: (xcResultPath: string) => Promise<import("@allurereport/reader-api").Unknown<XcTests>>;
8
8
  export declare const getTestDetails: (xcResultPath: string, testId: string) => Promise<import("@allurereport/reader-api").Unknown<XcTestDetails>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@allurereport/reader",
3
- "version": "3.9.0",
3
+ "version": "3.10.0",
4
4
  "description": "Collection of utilities which helps to process different kind of test results as Allure Results",
5
5
  "keywords": [
6
6
  "allure",
@@ -26,20 +26,20 @@
26
26
  "lint:fix": "oxlint --import-plugin --fix src test features stories"
27
27
  },
28
28
  "dependencies": {
29
- "@allurereport/core-api": "3.9.0",
30
- "@allurereport/plugin-api": "3.9.0",
31
- "@allurereport/reader-api": "3.9.0",
32
- "fast-xml-parser": "^5.5.7"
29
+ "@allurereport/core-api": "3.10.0",
30
+ "@allurereport/plugin-api": "3.10.0",
31
+ "@allurereport/reader-api": "3.10.0",
32
+ "fast-xml-parser": "^5.7.0"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/archiver": "^6.0.3",
36
- "@types/node": "^20.17.9",
37
- "@vitest/runner": "^2.1.9",
38
- "allure-js-commons": "^3.3.3",
39
- "allure-vitest": "^3.3.3",
36
+ "@types/node": "^20",
37
+ "@vitest/runner": "^2",
38
+ "allure-js-commons": "^3",
39
+ "allure-vitest": "^3",
40
40
  "archiver": "^7.0.1",
41
- "rimraf": "^6.0.1",
42
- "typescript": "^5.6.3",
43
- "vitest": "^2.1.9"
41
+ "rimraf": "^6",
42
+ "typescript": "^5",
43
+ "vitest": "^4.1.0"
44
44
  }
45
45
  }