@tracktor/shared-module 0.15.4 → 0.15.6

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
@@ -1,4 +1,5 @@
1
1
  # [Versions](https://github.com/Tracktor/shared-module/releases)
2
2
 
3
- ## v0.15.4
4
- - **[fix]** : Orval header description type
3
+ ## v0.15.6
4
+ - **[fix]** : fix sentry send error in `SentryConfig` component
5
+ - **[fix]** : fix `RequireAuth` multiple listener interceptors axios
@@ -43,7 +43,7 @@ interface SentryConfigProps<T> {
43
43
  /**
44
44
  * This function is used to instrument React Router v6.
45
45
  */
46
- Replay: any;
46
+ replayIntegration: any;
47
47
  /**
48
48
  * This function is used to instrument React Router v6.
49
49
  */
@@ -84,7 +84,7 @@ interface SentryConfigProps<T> {
84
84
  replaysOnErrorSampleRate?: number;
85
85
  /**
86
86
  * List of strings/regex controlling to which outgoing requests the SDK will attach tracing headers.
87
- * By default the SDK will attach those headers to all requests to localhost and same origin. If this option is provided, the SDK will match the request URL of outgoing requests against the items in this array, and only attach tracing headers if a match was found.
87
+ * By default, the SDK will attach those headers to all requests to localhost and same origin. If this option is provided, the SDK will match the request URL of outgoing requests against the items in this array, and only attach tracing headers if a match was found.
88
88
  * Example:
89
89
  * Sentry.init({
90
90
  * tracePropagationTargets: ['api.site.com'],