posthog-js 1.282.0 → 1.283.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/all-external-dependencies.js.map +1 -1
- package/dist/array.full.es5.js +1 -1
- package/dist/array.full.es5.js.map +1 -1
- package/dist/array.full.js +1 -1
- package/dist/array.full.js.map +1 -1
- package/dist/array.full.no-external.js +1 -1
- package/dist/array.full.no-external.js.map +1 -1
- package/dist/array.js +1 -1
- package/dist/array.js.map +1 -1
- package/dist/array.no-external.js +1 -1
- package/dist/array.no-external.js.map +1 -1
- package/dist/customizations.full.js +1 -1
- package/dist/exception-autocapture.js.map +1 -1
- package/dist/lazy-recorder.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/module.d.ts +6 -0
- package/dist/module.full.d.ts +6 -0
- package/dist/module.full.js +1 -1
- package/dist/module.full.js.map +1 -1
- package/dist/module.full.no-external.d.ts +6 -0
- package/dist/module.full.no-external.js +1 -1
- package/dist/module.full.no-external.js.map +1 -1
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/dist/module.no-external.d.ts +6 -0
- package/dist/module.no-external.js +1 -1
- package/dist/module.no-external.js.map +1 -1
- package/dist/posthog-recorder.js +1 -1
- package/dist/src/types.d.ts +6 -0
- package/dist/src/utils/blocked-uas.d.ts +1 -5
- package/dist/surveys-preview.d.ts +6 -0
- package/lib/package.json +1 -1
- package/lib/src/posthog-core.js +12 -1
- package/lib/src/posthog-core.js.map +1 -1
- package/lib/src/types.d.ts +6 -0
- package/lib/src/types.js.map +1 -1
- package/lib/src/utils/blocked-uas.d.ts +1 -5
- package/lib/src/utils/blocked-uas.js +8 -106
- package/lib/src/utils/blocked-uas.js.map +1 -1
- package/package.json +2 -2
package/dist/module.d.ts
CHANGED
|
@@ -1714,6 +1714,12 @@ interface PostHogConfig {
|
|
|
1714
1714
|
* Disables sending credentials when using XHR requests.
|
|
1715
1715
|
*/
|
|
1716
1716
|
__preview_disable_xhr_credentials?: boolean;
|
|
1717
|
+
/**
|
|
1718
|
+
* PREVIEW - MAY CHANGE WITHOUT WARNING - DO NOT USE IN PRODUCTION
|
|
1719
|
+
* Enables collection of bot traffic as $bot_pageview events with detailed bot detection
|
|
1720
|
+
* properties instead of dropping them entirely. Use it alongside opt_out_useragent_filter
|
|
1721
|
+
*/
|
|
1722
|
+
__preview_capture_bot_pageviews?: boolean;
|
|
1717
1723
|
/**
|
|
1718
1724
|
* @deprecated - does nothing
|
|
1719
1725
|
* was present only for PostHog testing of replay lazy loading
|
package/dist/module.full.d.ts
CHANGED
|
@@ -1714,6 +1714,12 @@ interface PostHogConfig {
|
|
|
1714
1714
|
* Disables sending credentials when using XHR requests.
|
|
1715
1715
|
*/
|
|
1716
1716
|
__preview_disable_xhr_credentials?: boolean;
|
|
1717
|
+
/**
|
|
1718
|
+
* PREVIEW - MAY CHANGE WITHOUT WARNING - DO NOT USE IN PRODUCTION
|
|
1719
|
+
* Enables collection of bot traffic as $bot_pageview events with detailed bot detection
|
|
1720
|
+
* properties instead of dropping them entirely. Use it alongside opt_out_useragent_filter
|
|
1721
|
+
*/
|
|
1722
|
+
__preview_capture_bot_pageviews?: boolean;
|
|
1717
1723
|
/**
|
|
1718
1724
|
* @deprecated - does nothing
|
|
1719
1725
|
* was present only for PostHog testing of replay lazy loading
|