@alwaysmeticulous/api 2.68.0 → 2.69.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
|
@@ -2,7 +2,7 @@ export { Organization } from "./organization.types";
|
|
|
2
2
|
export { Project, ProjectConfigurationData } from "./project.types";
|
|
3
3
|
export { EndStateScreenshot, ScreenshotAfterEvent, ScreenshotDiffResult, ScreenshotDiffResultCompared, ScreenshotDiffResultDifferentSize, ScreenshotDiffResultMissingBase, ScreenshotDiffResultMissingBaseAndHead, ScreenshotDiffResultMissingHead, ScreenshotIdentifier, SingleTryScreenshotDiffResult, } from "./sdk-bundle-api/bundle-to-sdk/screenshot-diff-result";
|
|
4
4
|
export { TestCase, TestCaseReplayOptions, TestRunStatus, TestCaseResult, TestCaseResultStatus, } from "./replay/test-run.types";
|
|
5
|
-
export { TestRunEnvironment, TestRunGitHubContext, TestRunGitHubPullRequestContext, TestRunGitHubPushContext, TestRunGitHubWorkflowDispatchContext, TestRunGitLabContext, TestRunGitLabMergeRequestContext, } from "./sdk-bundle-api/sdk-to-bundle/test-run-environment";
|
|
5
|
+
export { TestRunEnvironment, TestRunGitHubContext, TestRunGitHubPullRequestContext, TestRunGitHubPushContext, TestRunGitHubWorkflowDispatchContext, TestRunGitLabContext, TestRunGitLabMergeRequestContext, TestRunGitLabPushContext, } from "./sdk-bundle-api/sdk-to-bundle/test-run-environment";
|
|
6
6
|
export { ReplayableEvent } from "./sdk-bundle-api/bidirectional/replayable-event";
|
|
7
7
|
export { HarEntry, HarLog, HarRequest, HarResponse, } from "./sdk-bundle-api/sdk-to-bundle/har-log";
|
|
8
8
|
export { Cookie, SessionData, UrlHistoryEvent, WindowData, } from "./sdk-bundle-api/sdk-to-bundle/session-data";
|
|
@@ -44,7 +44,7 @@ export interface TestRunGitHubWorkflowDispatchContext {
|
|
|
44
44
|
/** Resolved head commit hash */
|
|
45
45
|
headSha: string;
|
|
46
46
|
}
|
|
47
|
-
export type TestRunGitLabContext = TestRunGitLabMergeRequestContext;
|
|
47
|
+
export type TestRunGitLabContext = TestRunGitLabMergeRequestContext | TestRunGitLabPushContext;
|
|
48
48
|
export interface TestRunGitLabMergeRequestContext {
|
|
49
49
|
type: "gitlab";
|
|
50
50
|
event: "merge-request";
|
|
@@ -59,3 +59,11 @@ export interface TestRunGitLabMergeRequestContext {
|
|
|
59
59
|
/** Merge request URL (web page) */
|
|
60
60
|
webUrl: string;
|
|
61
61
|
}
|
|
62
|
+
export interface TestRunGitLabPushContext {
|
|
63
|
+
type: "gitlab";
|
|
64
|
+
event: "push";
|
|
65
|
+
/** Commit hash before the push event */
|
|
66
|
+
beforeSha: string;
|
|
67
|
+
/** Commit hash after the push event */
|
|
68
|
+
afterSha: string;
|
|
69
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.69.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": "21e126bd937dbad568c8923ed95ba1f1ccb026f8"
|
|
39
39
|
}
|