@alwaysmeticulous/sdk-bundles-api 2.206.5 → 2.210.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";
@@ -200,11 +200,16 @@ export interface ReplayExecutionOptions {
200
200
  * If true deletes window.SharedWorker (pretends the browser doesn't support shared workers).
201
201
  */
202
202
  disableSharedWorkers?: boolean;
203
+ /**
204
+ * If true disables the rrweb recorder.
205
+ */
206
+ disableRrweb?: boolean;
203
207
  appUrlConfig?: AppUrlConfig;
204
208
  /**
205
209
  * If true records CSS coverage for the replay.
206
210
  */
207
211
  enableCssCoverage?: boolean;
212
+ networkDebuggingOptions?: NetworkDebuggingOptions;
208
213
  }
209
214
  export interface StorageEntryOverride extends StorageEntry {
210
215
  /**
@@ -264,6 +269,12 @@ export interface AppUrlConfig {
264
269
  */
265
270
  ignoreAppUrlPathAfterPreNavigation?: boolean;
266
271
  }
272
+ export interface NetworkDebuggingOptions {
273
+ requestRegexes: string[];
274
+ transformationsFns: string[];
275
+ requestTypes: ("original-recorded-request" | "request-to-match")[];
276
+ websocketUrlRegexes: string[];
277
+ }
267
278
  type StringId<FlavorT> = Flavor<string, FlavorT>;
268
279
  type Flavor<T, FlavorT> = T & {
269
280
  _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.210.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": "0c1334b963386abb7cc50756ffa237ef36f24dea"
42
42
  }