@capxul/observability 2.5.2 → 2.5.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/dist/index.d.mts CHANGED
@@ -1537,6 +1537,11 @@ type PostHogBrowserOptions = PostHogUtilityAppOptions;
1537
1537
  * recorder script loads from PostHog, so external dependency loading is on.
1538
1538
  * (Ruling 2026-09-01: pre-launch, every failure needs its evidence; replay
1539
1539
  * gated to production left staging failures with no recording at all.)
1540
+ * Flags stay ENABLED for this client: posthog-js starts the recorder only
1541
+ * after it loads the project's remote config, and it skips that load when
1542
+ * `advanced_disable_flags` is true ("Remote config is disabled. Falling back
1543
+ * to local config."). With flags disabled the SDK captured events but never
1544
+ * recorded a session (0 replay rows in 7 days, verified 2026-09-02).
1540
1545
  *
1541
1546
  * Autocapture stays OFF: funnels run on catalog events, not on DOM guesses.
1542
1547
  */
@@ -1560,7 +1565,7 @@ interface PostHogProductAppOptions {
1560
1565
  readonly disable_conversations: true;
1561
1566
  readonly disable_external_dependency_loading: false;
1562
1567
  readonly person_profiles: "identified_only";
1563
- readonly advanced_disable_flags: true;
1568
+ readonly advanced_disable_flags: false;
1564
1569
  readonly save_campaign_params: false;
1565
1570
  readonly save_referrer: false;
1566
1571
  readonly session_recording: {
package/dist/index.mjs CHANGED
@@ -1073,7 +1073,7 @@ function productAppAnalytics(input) {
1073
1073
  disable_conversations: true,
1074
1074
  disable_external_dependency_loading: false,
1075
1075
  person_profiles: "identified_only",
1076
- advanced_disable_flags: true,
1076
+ advanced_disable_flags: false,
1077
1077
  save_campaign_params: false,
1078
1078
  save_referrer: false,
1079
1079
  session_recording: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capxul/observability",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",