posthog-js 1.276.0 → 1.278.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/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/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/posthog-recorder.js.map +1 -1
- package/dist/src/types.d.ts +6 -0
- package/dist/surveys-preview.d.ts +6 -0
- package/lib/package.json +4 -4
- package/lib/src/types.d.ts +6 -0
- package/lib/src/types.js.map +1 -1
- package/package.json +4 -4
|
@@ -1009,6 +1009,12 @@ interface PostHogConfig {
|
|
|
1009
1009
|
* you may wish to turn off the call completely to avoid an extra request
|
|
1010
1010
|
* and reduce resource usage on both the client and the server.
|
|
1011
1011
|
*
|
|
1012
|
+
* WARNING: Disabling this will also prevent remote configuration from loading,
|
|
1013
|
+
* which could mean features like web vitals, surveys, and other features configured
|
|
1014
|
+
* in PostHog settings are disabled unless explicitly enabled via client-side config.
|
|
1015
|
+
* When setting this to true, make sure to explicitly configure any features you
|
|
1016
|
+
* want to use (e.g., capture_performance, autocapture, etc.) in your SDK's init config.
|
|
1017
|
+
*
|
|
1012
1018
|
* @default false
|
|
1013
1019
|
*/
|
|
1014
1020
|
advanced_disable_flags?: boolean;
|