@clerk/upgrade 2.0.0-snapshot.v20251218183643 → 2.0.0-snapshot.v20251224145055
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.
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: '`ClerkAPIError.kind` value updated'
|
|
3
|
+
matcher: 'ClerkApiError'
|
|
4
|
+
category: 'behavior-change'
|
|
5
|
+
warning: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
`ClerkAPIError.kind` has been updated to match the class name:
|
|
9
|
+
|
|
10
|
+
```diff
|
|
11
|
+
- static kind = 'ClerkApiError'
|
|
12
|
+
+ static kind = 'ClerkAPIError'
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Most users should not be affected. If you were checking this string directly (for example, `error.constructor.kind === 'ClerkApiError'`), update the comparison value.
|
|
16
|
+
|
|
17
|
+
No other changes are required.
|