@alwaysmeticulous/sdk-bundles-api 2.158.1 → 2.159.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, GeneratedBy, GeneratedByNotebookRun, GeneratedByTestRun, GeneratedByReplayCommand, ScreenshotComparisonOptions, ScreenshotComparisonEnabledOptions, CompareScreenshotsTo, CompareScreenshotsToSpecificReplay, CompareScreenshotsToTestRun, DoNotCompareScreenshots, OutOfDateClientError, BeforeUserEventOptions, } from "./replay-orchestrator/sdk-to-bundle/execute-replay";
3
+ 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
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";
@@ -182,6 +182,7 @@ export interface ReplayExecutionOptions {
182
182
  * If true deletes window.SharedWorker (pretends the browser doesn't support shared workers).
183
183
  */
184
184
  disableSharedWorkers?: boolean;
185
+ appUrlConfig?: AppUrlConfig;
185
186
  }
186
187
  export interface VercelExecutionSettings {
187
188
  /**
@@ -212,6 +213,14 @@ export interface GeneratedByTestRun {
212
213
  export interface GeneratedByReplayCommand {
213
214
  type: "replayCommand";
214
215
  }
216
+ export interface AppUrlConfig {
217
+ /**
218
+ * If set, we will ensure that the appUrl pathname is prefixed with this value for the initial navigation.
219
+ *
220
+ * __Note:__ When checking if the appUrl is already prefixed, we check against {@link URL.pathname} which will always have a leading "/".
221
+ */
222
+ pathnamePrefix: string;
223
+ }
215
224
  type StringId<FlavorT> = Flavor<string, FlavorT>;
216
225
  type Flavor<T, FlavorT> = T & {
217
226
  _type?: FlavorT;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.158.1",
3
+ "version": "2.159.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": "8ae58d8f96ea232e0b76abce0324803611030ccb"
49
+ "gitHead": "887a4a6010a3d0aa7fc5e52e0180f48a76e5bf65"
50
50
  }