@alwaysmeticulous/api 2.242.5 → 2.242.6

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.
@@ -2,6 +2,7 @@ import { TestRunStatus } from "./test-run.types";
2
2
  /**
3
3
  * Execution of a chunk of a test run chunk.
4
4
  *
5
- * The values and their meanings are the same as for {@link TestRunStatus}.
5
+ * The values and their meanings are the same as for {@link TestRunStatus}, except
6
+ * it's not possible for a test run chunk to be in the `PostProcessing` status.
6
7
  */
7
- export type TestRunChunkStatus = TestRunStatus;
8
+ export type TestRunChunkStatus = Omit<TestRunStatus, "PostProcessing">;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.242.5",
3
+ "version": "2.242.6",
4
4
  "description": "Meticulous API types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
37
37
  },
38
- "gitHead": "53aeb46a0ef2d76a465f19efb0c492a28344b1b0"
38
+ "gitHead": "cc70e0ab15df8baad2ae3036a8bc6615ea87d9c3"
39
39
  }