@alwaysmeticulous/api 2.34.0 → 2.37.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.
@@ -9,7 +9,7 @@ export interface TestRunConfigData {
9
9
  export interface TestCase {
10
10
  sessionId: string;
11
11
  title?: string;
12
- baseReplayId?: string;
12
+ baseTestRunId?: string;
13
13
  options?: TestCaseReplayOptions;
14
14
  }
15
15
  export interface TestCaseReplayOptions extends Partial<ScreenshotDiffOptions> {
@@ -27,7 +27,6 @@ export interface TestRunArguments {
27
27
  commitSha?: string;
28
28
  baseCommitSha?: string | null;
29
29
  appUrl?: string | null;
30
- useAssetsSnapshottedInBaseSimulation?: boolean;
31
30
  parallelTasks?: number | null;
32
31
  deflake?: boolean;
33
32
  githubSummary?: boolean;
@@ -28,6 +28,6 @@ export interface FatalErrorTimelineEntry extends GenericReplayTimelineEntry {
28
28
  * The Meticulous BE code internally uses additional timeline entries, but these
29
29
  * types are stored seperately.
30
30
  */
31
- export type SDKReplayTimelineEntry = FatalErrorTimelineEntry | unknown;
31
+ export type SDKReplayTimelineEntry = FatalErrorTimelineEntry;
32
32
  export type SDKReplayTimelineData = SDKReplayTimelineEntry[];
33
33
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.34.0",
3
+ "version": "2.37.0",
4
4
  "description": "Meticulous API types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -34,5 +34,5 @@
34
34
  "bugs": {
35
35
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
36
36
  },
37
- "gitHead": "239b51bf54a4114e6134d1a4d38bb1f992284af4"
37
+ "gitHead": "4ad32ef54767510ad29b08254603b774e4001f4b"
38
38
  }