@alwaysmeticulous/api 2.133.0 → 2.137.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.
@@ -58,6 +58,10 @@ export interface TestRunGitLabMergeRequestContext {
58
58
  headSha: string;
59
59
  /** Merge request URL (web page) */
60
60
  webUrl: string;
61
+ /** Git ref for the target branch (/refs/head/<target_branch>). Not defined for merge requests prior to July 2024. */
62
+ baseRef?: string;
63
+ /** Git ref for the source branch (/refs/head/<source_branch>). Not defined for merge requests prior to July 2024. */
64
+ headRef?: string;
61
65
  }
62
66
  export interface TestRunGitLabPushContext {
63
67
  type: "gitlab";
@@ -66,4 +70,6 @@ export interface TestRunGitLabPushContext {
66
70
  beforeSha: string;
67
71
  /** Commit hash after the push event */
68
72
  afterSha: string;
73
+ /** Git ref for the branch (/refs/head/<branch>). Not defined for pushes prior to July 2024. */
74
+ ref?: string;
69
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/api",
3
- "version": "2.133.0",
3
+ "version": "2.137.0",
4
4
  "description": "Meticulous API types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -35,5 +35,5 @@
35
35
  "bugs": {
36
36
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
37
37
  },
38
- "gitHead": "3176e264aa0044ea262ed55bde88dce97718bfbd"
38
+ "gitHead": "e2e4acc7ab9ddbdb8ce6dc191692812156c29c06"
39
39
  }