@alwaysmeticulous/sdk-bundles-api 2.45.0 → 2.46.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.
@@ -134,8 +134,8 @@ export type StoryboardOptions = {
134
134
  } | {
135
135
  enabled: true;
136
136
  };
137
- export type NotebookRunId = StringId<"NotebookRunId">;
138
- export type TestRunId = StringId<"TestRunId">;
137
+ export type NotebookRunId = StringId<"notebookRunId">;
138
+ export type TestRunId = StringId<"testRunId">;
139
139
  export type GeneratedBy = GeneratedByNotebookRun | GeneratedByTestRun | GeneratedByReplayCommand;
140
140
  export interface GeneratedByNotebookRun {
141
141
  type: "notebook";
@@ -1,4 +1,4 @@
1
- import { ScreenshotAssertionsEnabledOptions, TestCaseResult, TestRunEnvironment } from "@alwaysmeticulous/api";
1
+ import { ScreenshotAssertionsEnabledOptions, TestRunEnvironment } from "@alwaysmeticulous/api";
2
2
  import { LogLevelNumbers } from "loglevel";
3
3
  import { RunningTestRunExecution } from "../bundle-to-sdk/execute-test-run";
4
4
  import { ReplayExecutionOptions } from "./execute-replay";
@@ -36,12 +36,6 @@ export interface ExecuteTestRunOptions {
36
36
  */
37
37
  rerunTestsNTimes: number;
38
38
  githubSummary: boolean;
39
- /**
40
- * If provided it will incorportate the cachedTestRunResults in any calls to store
41
- * test run results in the BE, but won't include the cachedTestRunResults in the returned
42
- * ExecuteTestRunResult.
43
- */
44
- cachedTestRunResults?: TestCaseResult[];
45
39
  /**
46
40
  * Captured environment for this run
47
41
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.45.0",
3
+ "version": "2.46.0",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -19,7 +19,7 @@
19
19
  "depcheck": "depcheck --ignore-patterns=dist"
20
20
  },
21
21
  "devDependencies": {
22
- "@alwaysmeticulous/api": "^2.44.1"
22
+ "@alwaysmeticulous/api": "^2.46.0"
23
23
  },
24
24
  "peerDependencies": {
25
25
  "loglevel": "^1.8.0"
@@ -46,5 +46,5 @@
46
46
  "bugs": {
47
47
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
48
48
  },
49
- "gitHead": "3cfa8654dc5bf8a1426c4a3e2458d2ced7c94205"
49
+ "gitHead": "c03e5e034eb89d79d16f0eee09f95fa58341e038"
50
50
  }