@dash0/sdk-web 0.16.2 → 0.16.3

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/src/vars.ts CHANGED
@@ -165,6 +165,12 @@ export type Vars = {
165
165
  urlAttributeScrubber: UrlAttributeScrubber;
166
166
 
167
167
  pageViewInstrumentation: PageViewInstrumentationSettings;
168
+
169
+ /**
170
+ * Enables telemetry transport compression using gzip.
171
+ * experimental - in rare cases causes Chrome to crash to use at your own risk.
172
+ */
173
+ enableTransportCompression: boolean;
168
174
  };
169
175
 
170
176
  export const vars: Vars = {
@@ -191,4 +197,5 @@ export const vars: Vars = {
191
197
  trackVirtualPageViews: true,
192
198
  includeParts: [],
193
199
  },
200
+ enableTransportCompression: false,
194
201
  };