@aakash58/chatbot 1.1.2 → 1.1.4

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.
@@ -867,7 +867,7 @@ class PersonalizationService {
867
867
  effect(() => {
868
868
  const status = this.authStatus();
869
869
  this._settings.set(this.loadSettings());
870
- });
870
+ }, { allowSignalWrites: true });
871
871
  // Automatically persist changes when settings signal updates
872
872
  effect(() => {
873
873
  const currentSettings = this._settings();
@@ -949,8 +949,8 @@ class PersonalizationService {
949
949
  ...DEFAULT_SETTINGS,
950
950
  appearance: {
951
951
  ...DEFAULT_SETTINGS.appearance,
952
- ...this._developerDefaults()
953
- }
952
+ ...this._developerDefaults(),
953
+ },
954
954
  };
955
955
  }
956
956
  saveSettings(settings) {
@@ -2564,7 +2564,7 @@ class ChatUIStateService {
2564
2564
  }
2565
2565
  }
2566
2566
  }
2567
- }, ...(ngDevMode ? [{ debugName: "markAsReadEffect" }] : []));
2567
+ }, ...(ngDevMode ? [{ debugName: "markAsReadEffect", allowSignalWrites: true }] : [{ allowSignalWrites: true }]));
2568
2568
  //! =================== PUBLIC METHODS ===========================
2569
2569
  /**
2570
2570
  * Set the messages signal reference from an external source