@alwaysmeticulous/sdk-bundles-api 2.53.0 → 2.56.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.
@@ -36,6 +36,12 @@ export interface ReplayAndStoreResultsOptions {
36
36
  * that all clients bump the version number passed when they upgrade to the types.
37
37
  */
38
38
  maxSemanticVersionSupported: 1;
39
+ /**
40
+ * The version of the environment in which a replay is executed. This should be bumped
41
+ * whenever the environment changes in a way that affects the replay, e.g. the version of
42
+ * Chromium, or the version of Puppeteer.
43
+ */
44
+ logicalEnvironmentVersion?: number;
39
45
  }
40
46
  export interface BeforeUserEventOptions {
41
47
  /**
@@ -1,5 +1,5 @@
1
1
  import { ExecuteTestRunOptions } from "./execute-test-run";
2
- export type ExecuteScheduledTestRunOptions = Pick<ExecuteTestRunOptions, "chromeExecutablePath" | "apiToken" | "parallelTasks" | "maxRetriesOnFailure" | "rerunTestsNTimes" | "logLevel"> & {
2
+ export type ExecuteScheduledTestRunOptions = Pick<ExecuteTestRunOptions, "chromeExecutablePath" | "apiToken" | "parallelTasks" | "maxRetriesOnFailure" | "rerunTestsNTimes" | "logLevel" | "logicalEnvironmentVersion"> & {
3
3
  /**
4
4
  * The ID of the scheduled test run to execute.
5
5
  */
@@ -58,4 +58,10 @@ export interface ExecuteTestRunOptions {
58
58
  * that all clients bump the version number passed when they upgrade to the types.
59
59
  */
60
60
  maxSemanticVersionSupported: 1;
61
+ /**
62
+ * The version of the environment in which a replay is executed. This should be bumped
63
+ * whenever the environment changes in a way that affects the replay, e.g. the version of
64
+ * Chromium, or the version of Puppeteer.
65
+ */
66
+ logicalEnvironmentVersion?: number;
61
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.53.0",
3
+ "version": "2.56.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.53.0"
22
+ "@alwaysmeticulous/api": "^2.56.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": "ab27f3ab8a2190402938ac64f0a8847e130bd9f3"
49
+ "gitHead": "78222a2650425ced6537f3077ad47199a1fa45c3"
50
50
  }