@alwaysmeticulous/sdk-bundles-api 2.63.0 → 2.67.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
@@ -4,4 +4,5 @@ export { ReplayAndStoreResultsOptions, ReplayTarget, SnapshottedAssetsReplayTarg
4
4
  export { ExecuteTestRunOptions } from "./replay-orchestrator/sdk-to-bundle/execute-test-run";
5
5
  export { ExecuteScheduledTestRunOptions } from "./replay-orchestrator/sdk-to-bundle/execute-scheduled-test-run";
6
6
  export { ExecuteTestRunResult, TestRunExecution, RunningTestRunExecution, FinishedTestRunExecution, TestRunProgress, DetailedTestCaseResult, } from "./replay-orchestrator/bundle-to-sdk/execute-test-run";
7
+ export { InProgressTestRun } from "./replay-orchestrator/bundle-to-sdk/execute-scheduled-test-run";
7
8
  export { ReplayAndStoreResultsResult, ReplayExecution, BeforeUserEventResult, } from "./replay-orchestrator/bundle-to-sdk/execute-replay";
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/record/index.ts"],"names":[],"mappings":""}
@@ -1,3 +1,4 @@
1
1
  "use strict";
2
2
  // Settings sent from the recorder-loader to the recorder bundle
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
+ //# sourceMappingURL=record-settings.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"record-settings.js","sourceRoot":"","sources":["../../src/record/record-settings.ts"],"names":[],"mappings":";AAAA,gEAAgE"}
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=execute-replay.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute-replay.js","sourceRoot":"","sources":["../../../src/replay-orchestrator/bundle-to-sdk/execute-replay.ts"],"names":[],"mappings":""}
@@ -0,0 +1,8 @@
1
+ import { ExecuteTestRunResult } from "./execute-test-run";
2
+ export interface InProgressTestRun {
3
+ /**
4
+ * The results of the tests that were executed. Resolves when the test run completes.
5
+ */
6
+ result: Promise<ExecuteTestRunResult>;
7
+ markTestRunAsFailed: () => Promise<void>;
8
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=execute-scheduled-test-run.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute-scheduled-test-run.js","sourceRoot":"","sources":["../../../src/replay-orchestrator/bundle-to-sdk/execute-scheduled-test-run.ts"],"names":[],"mappings":""}
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=execute-test-run.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute-test-run.js","sourceRoot":"","sources":["../../../src/replay-orchestrator/bundle-to-sdk/execute-test-run.ts"],"names":[],"mappings":""}
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=execute-replay.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute-replay.js","sourceRoot":"","sources":["../../../src/replay-orchestrator/sdk-to-bundle/execute-replay.ts"],"names":[],"mappings":""}
@@ -1,7 +1,13 @@
1
1
  import { ExecuteTestRunOptions } from "./execute-test-run";
2
- export type ExecuteScheduledTestRunOptions = Pick<ExecuteTestRunOptions, "chromeExecutablePath" | "apiToken" | "parallelTasks" | "maxRetriesOnFailure" | "rerunTestsNTimes" | "logLevel" | "logicalEnvironmentVersion"> & {
2
+ export type ExecuteScheduledTestRunOptions = Pick<ExecuteTestRunOptions, "chromeExecutablePath" | "apiToken" | "parallelTasks" | "logLevel" | "logicalEnvironmentVersion"> & {
3
3
  /**
4
4
  * The ID of the scheduled test run to execute.
5
5
  */
6
6
  testRunId: string;
7
+ /**
8
+ * If true then the test run will be restarted even if it's already completed or in the process of running.
9
+ *
10
+ * Existing test run results will be deleted and overwritten.
11
+ */
12
+ forceRestart?: boolean;
7
13
  };
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=execute-scheduled-test-run.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute-scheduled-test-run.js","sourceRoot":"","sources":["../../../src/replay-orchestrator/sdk-to-bundle/execute-scheduled-test-run.ts"],"names":[],"mappings":""}
@@ -1,2 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=execute-test-run.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute-test-run.js","sourceRoot":"","sources":["../../../src/replay-orchestrator/sdk-to-bundle/execute-test-run.ts"],"names":[],"mappings":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.63.0",
3
+ "version": "2.67.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.63.0"
22
+ "@alwaysmeticulous/api": "^2.67.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": "e94ad2f32e0b5a85f52782b008121302282cbd0e"
49
+ "gitHead": "8653b5d179014abff2f181f6361d8229d3a3ec5e"
50
50
  }