@tracktor/shared-module 0.16.0 → 0.17.1

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,4 @@
1
1
  # [Versions](https://github.com/Tracktor/shared-module/releases)
2
2
 
3
- ## v0.16.0
4
- - **[feat]** : ignore sentry error by default _`Failed to fetch dynamically imported module`_ in`SentryConfig`
3
+ ## v0.17.1
4
+ - **[feat]** : improve `printErrorCode` function
@@ -29,5 +29,6 @@ export interface useResponseErrorParams {
29
29
  */
30
30
  export declare const useResponseError: <T = ResponseError>(params?: useResponseErrorParams) => {
31
31
  printError: (error?: any) => string;
32
+ printErrorCode: (error?: any) => string;
32
33
  };
33
34
  export default useResponseError;