@alwaysmeticulous/sdk-bundles-api 2.266.2 → 2.271.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.
@@ -15,6 +15,12 @@ export interface ReplayAndStoreResultsOptions {
15
15
  disableAssetCache?: boolean;
16
16
  apiToken: string | null | undefined;
17
17
  commitSha: string | null | undefined;
18
+ /**
19
+ * The base commit SHA that this replay's test run is compared against (typically the
20
+ * commit on the main branch that the PR branch forked from). Null if no base commit
21
+ * was specified or could be determined.
22
+ */
23
+ baseCommitSha?: string | null | undefined;
18
24
  /**
19
25
  * The git ref used if there was one e.g. refs/head/master
20
26
  */
@@ -140,11 +140,17 @@ export interface MeticulousPublicReplayApi {
140
140
  */
141
141
  commitUnderTest: {
142
142
  /**
143
- * The full commit SHA being test
143
+ * The full commit SHA being tested.
144
144
  */
145
145
  sha: string;
146
146
  /**
147
- * The git branch name (e.g., "main", "feature/foo"). Null if not available
147
+ * The base commit SHA that this test run is compared against (typically the
148
+ * commit on the main branch that the PR branch forked from). Null if no base
149
+ * commit was specified or could be determined.
150
+ */
151
+ baseCommitSha: string | null;
152
+ /**
153
+ * The git branch name (e.g., "main", "feature/foo"). Null if not available.
148
154
  */
149
155
  branchName: string | null;
150
156
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.266.2",
3
+ "version": "2.271.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
  "dependencies": {
22
- "@alwaysmeticulous/api": "2.264.0"
22
+ "@alwaysmeticulous/api": "2.267.0"
23
23
  },
24
24
  "author": {
25
25
  "name": "The Meticulous Team",
@@ -38,5 +38,5 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
40
40
  },
41
- "gitHead": "e53ba8db26dfb37ef55377f9d6e571b2689d4c53"
41
+ "gitHead": "21cdfe19a96b8cad5924dd55b3bf65a832508bb5"
42
42
  }