@dsivd/prestations-ng 18.3.6 → 18.3.7

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/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@
6
6
 
7
7
  ---
8
8
 
9
+ ## [18.3.7]
10
+
11
+ ### Fixed
12
+
13
+ - [support-alert.service.ts](projects/prestations-ng/src/sdk-support-alert/support-alert.service.ts)
14
+ - fixed `canBypassAlerts` (removed extra trailing slash)
15
+
9
16
  ## [18.3.6]
10
17
 
11
18
  ### Updated
Binary file
@@ -4232,7 +4232,7 @@ class SupportAlertService {
4232
4232
  ? new HttpParams().set('alertsByPassUUID', alertsByPassUUID)
4233
4233
  : null;
4234
4234
  return this.http
4235
- .get('api/support-alert/alerts/can-bypass/', { params })
4235
+ .get('api/support-alert/alerts/can-bypass', { params })
4236
4236
  .pipe(catchError(() => of(false)));
4237
4237
  }
4238
4238
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: SupportAlertService, deps: [{ token: i1.HttpClient }, { token: i1$1.Router }, { token: i1$1.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }