http-request-manager 18.13.28 → 18.13.29

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/README.md CHANGED
@@ -183,16 +183,15 @@ export class UsersComponent {
183
183
  ```typescript
184
184
  service.fetchRecords(RequestOptions.adapt({
185
185
  path: ['ai/pagination?page=0&size=25'],
186
- watchParams: ['page', 'size'],
187
- watchExpiresAt: '10s'
186
+ ignoreQueryParams: ['page', 'size'],
187
+ queryParamsExpiresIn: '10s'
188
188
  }));
189
189
  ```
190
190
 
191
191
  Supported request options:
192
192
 
193
- - `watchParams`: Query keys you want to track for request-change behavior.
194
- - `watchExpiresAt`: Expiry window for tracked values (examples: `10s`, `5mn`, `1h`).
195
- - `watchParamExpiry` / `watchParamsExpire`: Alias naming used in demos/legacy wiring; map to the same expiry behavior.
193
+ - `ignoreQueryParams`: Query keys to track for request-change behavior.
194
+ - `queryParamsExpiresIn`: Expiry window for tracked values (examples: `10s`, `5mn`, `1h`).
196
195
 
197
196
  Behavior notes:
198
197