@alwaysmeticulous/sdk-bundles-api 2.175.0 → 2.176.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,7 +1,7 @@
|
|
|
1
1
|
export { RecordConfig, RecordSettings } from "./record";
|
|
2
2
|
export { MeticulousWindowConfig, NetworkResponseSanitizer, } from "./record/record-settings";
|
|
3
3
|
export * from "./record/middleware";
|
|
4
|
-
export { ReplayAndStoreResultsOptions, ReplayTarget, SnapshottedAssetsReplayTarget, URLReplayTarget, OriginalRecordedURLReplayTarget, ReplayExecutionOptions, ReplayOrchestratorScreenshottingOptions, GeneratedBy, GeneratedByNotebookRun, GeneratedByTestRun, GeneratedByReplayCommand, ScreenshotComparisonOptions, ScreenshotComparisonEnabledOptions, CompareScreenshotsTo, CompareScreenshotsToSpecificReplay, CompareScreenshotsToTestRun, DoNotCompareScreenshots, OutOfDateClientError, BeforeUserEventOptions, AppUrlConfig, } from "./replay-orchestrator/sdk-to-bundle/execute-replay";
|
|
4
|
+
export { ReplayAndStoreResultsOptions, ReplayTarget, SnapshottedAssetsReplayTarget, URLReplayTarget, OriginalRecordedURLReplayTarget, ReplayExecutionOptions, ReplayOrchestratorScreenshottingOptions, GeneratedBy, GeneratedByNotebookRun, GeneratedByTestRun, GeneratedByReplayCommand, ScreenshotComparisonOptions, ScreenshotComparisonEnabledOptions, CompareScreenshotsTo, CompareScreenshotsToSpecificReplay, CompareScreenshotsToTestRun, DoNotCompareScreenshots, OutOfDateClientError, BeforeUserEventOptions, AppUrlConfig, PreNavigationResult, } from "./replay-orchestrator/sdk-to-bundle/execute-replay";
|
|
5
5
|
export { ExecuteTestRunOptions } from "./replay-orchestrator/sdk-to-bundle/execute-test-run";
|
|
6
6
|
export { ExecuteScheduledTestRunOptions } from "./replay-orchestrator/sdk-to-bundle/execute-scheduled-test-run";
|
|
7
7
|
export { ExecuteTestRunResult, TestRunExecution, RunningTestRunExecution, FinishedTestRunExecution, TestRunProgress, DetailedTestCaseResult, } from "./replay-orchestrator/bundle-to-sdk/execute-test-run";
|
|
@@ -19,6 +19,7 @@ export interface ReplayAndStoreResultsOptions {
|
|
|
19
19
|
* The git ref used if there was one e.g. refs/head/master
|
|
20
20
|
*/
|
|
21
21
|
gitRef: string | null | undefined;
|
|
22
|
+
projectId: string;
|
|
22
23
|
sessionId: string;
|
|
23
24
|
/**
|
|
24
25
|
* The ID of the session to use for seeding the application state (cookies, local storage, session storage),
|
|
@@ -63,6 +64,13 @@ export interface ReplayAndStoreResultsOptions {
|
|
|
63
64
|
* If set to true, capture snapshots of assets.
|
|
64
65
|
*/
|
|
65
66
|
snapshotAssets?: boolean;
|
|
67
|
+
/**
|
|
68
|
+
* If present, contains the result of the pre-navigation step.
|
|
69
|
+
*/
|
|
70
|
+
preNavigationResult?: PreNavigationResult;
|
|
71
|
+
}
|
|
72
|
+
export interface PreNavigationResult {
|
|
73
|
+
cookies: Cookie[];
|
|
66
74
|
}
|
|
67
75
|
export interface BeforeUserEventOptions {
|
|
68
76
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/sdk-bundles-api",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.176.0",
|
|
4
4
|
"description": "Meticulous common types",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"bugs": {
|
|
47
47
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "c925c0c59a21297a179f3369ac9980b8eab714a5"
|
|
50
50
|
}
|