@multiplayer-app/session-recorder-browser 2.0.17 → 2.0.23

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.umd.js CHANGED
@@ -24436,7 +24436,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
24436
24436
  const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
24437
24437
  const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
24438
24438
  const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
24439
- const PACKAGE_VERSION_EXPORT = "2.0.17" || 0;
24439
+ const PACKAGE_VERSION_EXPORT = "2.0.23" || 0;
24440
24440
  // Regex patterns for OpenTelemetry ignore URLs
24441
24441
  const OTEL_IGNORE_URLS = [
24442
24442
  // Traces endpoint
@@ -24521,8 +24521,11 @@ const BASE_CONFIG = {
24521
24521
  apiBaseUrl: _multiplayer_app_session_recorder_common__WEBPACK_IMPORTED_MODULE_0__.MULTIPLAYER_BASE_API_URL,
24522
24522
  exporterEndpoint: _multiplayer_app_session_recorder_common__WEBPACK_IMPORTED_MODULE_0__.MULTIPLAYER_OTEL_DEFAULT_TRACES_EXPORTER_HTTP_URL,
24523
24523
  recordCanvas: false,
24524
- inlineImages: true,
24525
- inlineStylesheet: true,
24524
+ // Off by default: inlining reads pixels via canvas and requires CORS on cross-origin hosts (e.g. S3).
24525
+ // Set true when asset URLs send Access-Control-Allow-Origin for your app origin.
24526
+ inlineImages: false,
24527
+ // Off by default: inlining fetches stylesheet text; cross-origin <link> assets need CORS when enabled.
24528
+ inlineStylesheet: false,
24526
24529
  recordNavigation: true,
24527
24530
  schemifyDocSpanPayload: true,
24528
24531
  ignoreUrls: [],