@multiplayer-app/session-recorder-browser 2.0.18 → 2.0.25

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.js CHANGED
@@ -24263,7 +24263,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
24263
24263
  const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
24264
24264
  const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
24265
24265
  const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
24266
- const PACKAGE_VERSION_EXPORT = "2.0.18" || 0;
24266
+ const PACKAGE_VERSION_EXPORT = "2.0.25" || 0;
24267
24267
  // Regex patterns for OpenTelemetry ignore URLs
24268
24268
  const OTEL_IGNORE_URLS = [
24269
24269
  // Traces endpoint
@@ -24347,8 +24347,11 @@ const BASE_CONFIG = {
24347
24347
  apiBaseUrl: _multiplayer_app_session_recorder_common__WEBPACK_IMPORTED_MODULE_0__.MULTIPLAYER_BASE_API_URL,
24348
24348
  exporterEndpoint: _multiplayer_app_session_recorder_common__WEBPACK_IMPORTED_MODULE_0__.MULTIPLAYER_OTEL_DEFAULT_TRACES_EXPORTER_HTTP_URL,
24349
24349
  recordCanvas: false,
24350
- inlineImages: true,
24351
- inlineStylesheet: true,
24350
+ // Off by default: inlining reads pixels via canvas and requires CORS on cross-origin hosts (e.g. S3).
24351
+ // Set true when asset URLs send Access-Control-Allow-Origin for your app origin.
24352
+ inlineImages: false,
24353
+ // Off by default: inlining fetches stylesheet text; cross-origin <link> assets need CORS when enabled.
24354
+ inlineStylesheet: false,
24352
24355
  recordNavigation: true,
24353
24356
  schemifyDocSpanPayload: true,
24354
24357
  ignoreUrls: [],