@arsedizioni/ars-utils 19.3.14 → 19.3.15

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.
@@ -41,6 +41,7 @@ export interface ErrorInfo {
41
41
  title?: string;
42
42
  message?: string;
43
43
  errorStatus?: number;
44
+ service?: string;
44
45
  }
45
46
  export interface NameValueItem<T> {
46
47
  name: string;
@@ -3221,7 +3221,8 @@ class ClipperAuthInterceptor {
3221
3221
  invalidateSession: errorStatus === 405 || errorStatus === 410,
3222
3222
  message: message,
3223
3223
  title: "Errore in Clipper",
3224
- errorStatus: errorStatus
3224
+ errorStatus: errorStatus,
3225
+ service: this.clipperService.serviceUri
3225
3226
  });
3226
3227
  }
3227
3228
  }