@alwaysmeticulous/api 2.256.0 → 2.259.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
@@ -1,7 +1,7 @@
1
1
  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, RedactedScreenshotsComparison, } from "./sdk-bundle-api/bundle-to-sdk/screenshot-diff-result";
4
- export { SessionRelevance, isPrAuthorRelevance, TestCase, TestCaseReplayOptions, TestRunStatus, TestCaseResult, TestCaseResultStatus, TestRunDataLocations, } from "./replay/test-run.types";
4
+ export { SessionRelevance, isPrAuthorRelevance, TestCase, TestCaseReplayOptions, TestRunStatus, TestCaseResult, TestCaseResultStatus, AppContainerLogsLocations, TestRunDataLocations, } from "./replay/test-run.types";
5
5
  export { TestRunChunkStatus } from "./replay/test-run-chunk.types";
6
6
  export * from "./sdk-bundle-api/sdk-to-bundle/test-run-environment";
7
7
  export { ReplayableEvent } from "./sdk-bundle-api/bidirectional/replayable-event";
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAsBA,0DASiC;AAR/B,kHAAA,gBAAgB,OAAA;AAChB,qHAAA,mBAAmB,OAAA;AASrB,sFAAoE;AAQpE,4EAoBqD;AAPnD,8HAAA,8BAA8B,OAAA;AAoBhC,mFAAiE"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAsBA,0DAUiC;AAT/B,kHAAA,gBAAgB,OAAA;AAChB,qHAAA,mBAAmB,OAAA;AAUrB,sFAAoE;AAQpE,4EAoBqD;AAPnD,8HAAA,8BAA8B,OAAA;AAoBhC,mFAAiE"}
@@ -37,10 +37,12 @@ export interface TestCaseReplayOptions extends Partial<ScreenshotDiffOptions> {
37
37
  *
38
38
  * `Success` = completed, and no replays had notable differences
39
39
  *
40
+ * `Aborted` = the test run was stopped before it could complete
41
+ *
40
42
  * `ExecutionError` = the test run failed fatally, and didn't complete. To get accurate results it'll need to be re-run. The test run may shortly switch back
41
43
  * into 'Running' in this case, if the worker retries it.
42
44
  */
43
- export type TestRunStatus = "Scheduled" | "Running" | "PostProcessing" | "Success" | "Failure" | "ExecutionError";
45
+ export type TestRunStatus = "Scheduled" | "Running" | "PostProcessing" | "Success" | "Failure" | "Aborted" | "ExecutionError";
44
46
  /**
45
47
  * Execution of a chunk of a test run chunk.
46
48
  *
@@ -58,6 +60,13 @@ export interface TestCaseResult extends TestCase {
58
60
  */
59
61
  result: TestCaseResultStatus;
60
62
  }
63
+ export interface AppContainerLogsLocations {
64
+ signedBaseUrl: string;
65
+ pods: Array<{
66
+ podName: string;
67
+ chunkKeys: string[];
68
+ }>;
69
+ }
61
70
  export interface TestRunDataLocations {
62
71
  coverage: S3Location;
63
72
  coverageStats: S3Location;
@@ -70,4 +79,5 @@ export interface TestRunDataLocations {
70
79
  coverageByReplayPr?: S3Location;
71
80
  diversityByReplay?: S3Location;
72
81
  relevantReplayContexts: S3Location;
82
+ appContainerLogs?: AppContainerLogsLocations;
73
83
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.256.0",
3
+ "version": "2.259.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": "3da89148a69dda31d41c95abc561eaa346e3e78f"
38
+ "gitHead": "92a9eb21cc6e9f19b5c322581e45a08b23376c3c"
39
39
  }