@naturalcycles/js-lib 15.27.0 → 15.28.0

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.
@@ -55,7 +55,7 @@ export interface ErrorData {
55
55
  *
56
56
  * Sentry takes string[], but for convenience we allow to pass a singe string.
57
57
  */
58
- fingerprint?: string | string[];
58
+ fingerprint?: string;
59
59
  /**
60
60
  * Set when throwing an error from your backend code, to indicate desired http status code.
61
61
  * e.g throw new AppError('oj', { backendResponseStatusCode: 401 })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
3
  "type": "module",
4
- "version": "15.27.0",
4
+ "version": "15.28.0",
5
5
  "dependencies": {
6
6
  "tslib": "^2",
7
7
  "zod": "^4"
@@ -63,7 +63,7 @@ export interface ErrorData {
63
63
  *
64
64
  * Sentry takes string[], but for convenience we allow to pass a singe string.
65
65
  */
66
- fingerprint?: string | string[]
66
+ fingerprint?: string
67
67
 
68
68
  /**
69
69
  * Set when throwing an error from your backend code, to indicate desired http status code.