@alwaysmeticulous/api 2.175.0 → 2.177.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
CHANGED
|
@@ -2,6 +2,7 @@ export { Organization } from "./organization.types";
|
|
|
2
2
|
export { Project, ProjectSettingsScreenshottingOptions } from "./project.types";
|
|
3
3
|
export { EndStateScreenshot, ScreenshotAfterEvent, ScreenshotDiffResult, ScreenshotDiffResultCompared, ScreenshotDiffResultDifferentSize, ScreenshotDiffResultMissingBase, ScreenshotDiffResultMissingBaseAndHead, ScreenshotDiffResultMissingHead, ScreenshotDiffResultDifference, ScreenshotDiffResultNoDifference, ScreenshotIdentifier, ScreenshotVariant, SingleTryScreenshotDiffResult, ScreenshotDiffRetryResult, SingleTryScreenshotDiffRetryResult, RedactedScreenshotIncompatible, RedactedScreenshotsCompared, } from "./sdk-bundle-api/bundle-to-sdk/screenshot-diff-result";
|
|
4
4
|
export { TestCase, TestCaseReplayOptions, TestRunStatus, TestCaseResult, TestCaseResultStatus, } from "./replay/test-run.types";
|
|
5
|
+
export { TestRunChunkStatus } from "./replay/test-run-chunk.types";
|
|
5
6
|
export * from "./sdk-bundle-api/sdk-to-bundle/test-run-environment";
|
|
6
7
|
export { ReplayableEvent } from "./sdk-bundle-api/bidirectional/replayable-event";
|
|
7
8
|
export { HarEntry, HarLog, HarRequest, HarResponse, } from "./sdk-bundle-api/sdk-to-bundle/har-log";
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AA6BA,sFAAoE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"test-run-chunk.types.js","sourceRoot":"","sources":["../../src/replay/test-run-chunk.types.ts"],"names":[],"mappings":""}
|
|
@@ -24,6 +24,12 @@ export interface TestCaseReplayOptions extends Partial<ScreenshotDiffOptions> {
|
|
|
24
24
|
* into 'Running' in this case, if the worker retries it.
|
|
25
25
|
*/
|
|
26
26
|
export type TestRunStatus = "Scheduled" | "Running" | "Success" | "Failure" | "ExecutionError";
|
|
27
|
+
/**
|
|
28
|
+
* Execution of a chunk of a test run chunk.
|
|
29
|
+
*
|
|
30
|
+
* The values and their meanings are the same as for {@link TestRunStatus}.
|
|
31
|
+
*/
|
|
32
|
+
export type TestRunChunkStatus = TestRunStatus;
|
|
27
33
|
export type TestCaseResultStatus = "pass" | "fail" | "flake";
|
|
28
34
|
export interface TestCaseResult extends TestCase {
|
|
29
35
|
headReplayId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.177.0",
|
|
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": "
|
|
38
|
+
"gitHead": "99b38cab406ba8de7e0fde5fd53cd98a81449ed1"
|
|
39
39
|
}
|