@alwaysmeticulous/sdk-bundles-api 2.206.5 → 2.208.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, PreNavigationResult, StorageEntryOverride, } 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, StorageEntryOverride, NetworkDebuggingOptions, } 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 { ExecuteScheduledTestRunChunkOptions } from "./replay-orchestrator/sdk-to-bundle/execute-scheduled-test-run-chunk";
@@ -205,6 +205,7 @@ export interface ReplayExecutionOptions {
205
205
  * If true records CSS coverage for the replay.
206
206
  */
207
207
  enableCssCoverage?: boolean;
208
+ networkDebuggingOptions?: NetworkDebuggingOptions;
208
209
  }
209
210
  export interface StorageEntryOverride extends StorageEntry {
210
211
  /**
@@ -264,6 +265,12 @@ export interface AppUrlConfig {
264
265
  */
265
266
  ignoreAppUrlPathAfterPreNavigation?: boolean;
266
267
  }
268
+ export interface NetworkDebuggingOptions {
269
+ requestRegexes: string[];
270
+ transformationsFns: string[];
271
+ requestTypes: ("original-recorded-request" | "request-to-match")[];
272
+ websocketUrlRegexes: string[];
273
+ }
267
274
  type StringId<FlavorT> = Flavor<string, FlavorT>;
268
275
  type Flavor<T, FlavorT> = T & {
269
276
  _type?: FlavorT;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwaysmeticulous/sdk-bundles-api",
3
- "version": "2.206.5",
3
+ "version": "2.208.0",
4
4
  "description": "Meticulous common types",
5
5
  "license": "ISC",
6
6
  "main": "dist/index.js",
@@ -38,5 +38,5 @@
38
38
  "bugs": {
39
39
  "url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
40
40
  },
41
- "gitHead": "2534907bacb620822002c0eb717c9c26f4b5c442"
41
+ "gitHead": "76c65150e5d9ef59ccbebe44cb3ee3573e0ef9fb"
42
42
  }