http-request-manager 18.16.17 → 18.16.18

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.
@@ -7149,8 +7149,8 @@ class HTTPManagerStateService extends ComponentStore {
7149
7149
  this.fetchRecord = (options, method) => this.effect(() => of(RequestOptions.adapt(options)).pipe(tap(() => console.log('🔄 fetchRecord effect triggered with path:', options?.path, 'method:', method)), switchMap((options) => {
7150
7150
  this.streamedResponse = [];
7151
7151
  const requestOptions = this.updateRequestOptions(options?.headers);
7152
- console.log('🌐 Making GET request to path:', [...(requestOptions.path || []), ...(options?.path || [])]);
7153
- return this.httpManagerService.getRequest(requestOptions, options?.path)
7152
+ const effectiveParams = this.getEffectiveParams(options?.path);
7153
+ return this.httpManagerService.getRequest(requestOptions, effectiveParams)
7154
7154
  .pipe(tap((data) => {
7155
7155
  console.log('📦 fetchRecord received data:', data);
7156
7156
  // Apply adapter if provided