@alwaysmeticulous/sdk-bundles-api 2.72.0 → 2.73.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { RecordConfig, RecordSettings, RecordState } from "./record";
|
|
2
2
|
export { MeticulousWindowConfig, NetworkResponseSanitizer, } from "./record/record-settings";
|
|
3
|
-
export { ReplayAndStoreResultsOptions, ReplayTarget, SnapshottedAssetsReplayTarget, URLReplayTarget, OriginalRecordedURLReplayTarget, ReplayExecutionOptions, ReplayOrchestratorScreenshottingOptions,
|
|
3
|
+
export { ReplayAndStoreResultsOptions, ReplayTarget, SnapshottedAssetsReplayTarget, URLReplayTarget, OriginalRecordedURLReplayTarget, ReplayExecutionOptions, ReplayOrchestratorScreenshottingOptions, GeneratedBy, GeneratedByNotebookRun, GeneratedByTestRun, GeneratedByReplayCommand, ScreenshotComparisonOptions, ScreenshotComparisonEnabledOptions, CompareScreenshotsTo, CompareScreenshotsToSpecificReplay, CompareScreenshotsToTestRun, DoNotCompareScreenshots, OutOfDateClientError, BeforeUserEventOptions, } from "./replay-orchestrator/sdk-to-bundle/execute-replay";
|
|
4
4
|
export { ExecuteTestRunOptions } from "./replay-orchestrator/sdk-to-bundle/execute-test-run";
|
|
5
5
|
export { ExecuteScheduledTestRunOptions } from "./replay-orchestrator/sdk-to-bundle/execute-scheduled-test-run";
|
|
6
6
|
export { ExecuteTestRunResult, TestRunExecution, RunningTestRunExecution, FinishedTestRunExecution, TestRunProgress, DetailedTestCaseResult, } from "./replay-orchestrator/bundle-to-sdk/execute-test-run";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ScreenshotDiffOptions,
|
|
1
|
+
import { NetworkStubbingMode, ScreenshotAssertionsEnabledOptions, ScreenshotDiffOptions, ScreenshottingEnabledOptions } from "@alwaysmeticulous/api";
|
|
2
2
|
import { LogLevelNumbers } from "loglevel";
|
|
3
3
|
import { BeforeUserEventResult } from "../bundle-to-sdk/execute-replay";
|
|
4
4
|
export interface ReplayAndStoreResultsOptions {
|
|
@@ -142,16 +142,7 @@ export interface ReplayExecutionOptions {
|
|
|
142
142
|
}
|
|
143
143
|
export type ReplayOrchestratorScreenshottingOptions = {
|
|
144
144
|
enabled: false;
|
|
145
|
-
} |
|
|
146
|
-
export interface ScreenshottingEnabledOptions {
|
|
147
|
-
enabled: true;
|
|
148
|
-
storyboardOptions: StoryboardOptions;
|
|
149
|
-
}
|
|
150
|
-
export type StoryboardOptions = {
|
|
151
|
-
enabled: false;
|
|
152
|
-
} | {
|
|
153
|
-
enabled: true;
|
|
154
|
-
};
|
|
145
|
+
} | Omit<ScreenshotAssertionsEnabledOptions, "diffOptions">;
|
|
155
146
|
export type NotebookRunId = StringId<"notebookRunId">;
|
|
156
147
|
export type TestRunId = StringId<"testRunId">;
|
|
157
148
|
export type GeneratedBy = GeneratedByNotebookRun | GeneratedByTestRun | GeneratedByReplayCommand;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.73.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.
|
|
22
|
+
"@alwaysmeticulous/api": "^2.73.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": "
|
|
49
|
+
"gitHead": "a26ecc580c2922d8dcbb9200ef4593e8b68e15ee"
|
|
50
50
|
}
|