@arsedizioni/ars-utils 20.3.35 → 20.3.36
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
- package/package.json +13 -13
|
@@ -2293,7 +2293,7 @@ class ClipperService {
|
|
|
2293
2293
|
: new HttpHeaders()
|
|
2294
2294
|
.set("Authorization", 'Bearer ' + oauthAccessToken)
|
|
2295
2295
|
})
|
|
2296
|
-
.pipe(
|
|
2296
|
+
.pipe(catchError(err => {
|
|
2297
2297
|
return throwError(() => err);
|
|
2298
2298
|
}), map((r) => {
|
|
2299
2299
|
if (r.success) {
|
|
@@ -2338,7 +2338,7 @@ class ClipperService {
|
|
|
2338
2338
|
confirmIdentity(code, flags = ClipperLoginFlags.None) {
|
|
2339
2339
|
return this.httpClient
|
|
2340
2340
|
.post(this._serviceUri + '/login/confirm/' + code + '/?flags=' + flags, {})
|
|
2341
|
-
.pipe(
|
|
2341
|
+
.pipe(catchError((err) => {
|
|
2342
2342
|
return throwError(() => err);
|
|
2343
2343
|
}), map((r) => {
|
|
2344
2344
|
if (r.success) {
|