@alwaysmeticulous/api 2.149.0 → 2.152.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.
|
@@ -21,6 +21,8 @@ export interface TestRunGitHubPullRequestContext {
|
|
|
21
21
|
headSha: string;
|
|
22
22
|
/** Head ref (usually /refs/head/<branch>) */
|
|
23
23
|
headRef?: string;
|
|
24
|
+
/** GitHub Actions run ID that triggered this test run */
|
|
25
|
+
runId?: number;
|
|
24
26
|
}
|
|
25
27
|
export interface TestRunGitHubPushContext {
|
|
26
28
|
type: "github";
|
|
@@ -31,6 +33,8 @@ export interface TestRunGitHubPushContext {
|
|
|
31
33
|
afterSha: string;
|
|
32
34
|
/** Git ref (usually /refs/head/<branch>) */
|
|
33
35
|
ref: string;
|
|
36
|
+
/** GitHub Actions run ID that triggered this test run */
|
|
37
|
+
runId?: number;
|
|
34
38
|
}
|
|
35
39
|
export interface TestRunGitHubWorkflowDispatchContext {
|
|
36
40
|
type: "github";
|
|
@@ -43,6 +47,8 @@ export interface TestRunGitHubWorkflowDispatchContext {
|
|
|
43
47
|
};
|
|
44
48
|
/** Resolved head commit hash */
|
|
45
49
|
headSha: string;
|
|
50
|
+
/** GitHub Actions run ID that triggered this test run */
|
|
51
|
+
runId?: number;
|
|
46
52
|
}
|
|
47
53
|
export type TestRunGitLabContext = TestRunGitLabMergeRequestContext | TestRunGitLabPushContext;
|
|
48
54
|
export interface TestRunGitLabMergeRequestContext {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.152.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": "
|
|
38
|
+
"gitHead": "95717c6bee4830ff0c977ba642d6253753952481"
|
|
39
39
|
}
|