1
+ import type { ActClaim , JwtHeader , JwtPayload } from './jwtv2' ;
1
2
import type { OrganizationCustomRoleKey } from './organizationMembership' ;
2
3
3
4
export interface JWT {
4
5
encoded : { header : string ; payload : string ; signature : string } ;
5
- header : JWTHeader ;
6
- claims : JWTClaims ;
6
+ header : JwtHeader ;
7
+ claims : JwtPayload ;
7
8
}
8
9
9
10
type NonEmptyArray < T > = [ T , ...T [ ] ] ;
10
11
11
12
// standard names https://www.rfc-editor.org/rfc/rfc7515.html#section-4.1
13
+ /**
14
+ * @deprecated use `JwtHeader` instead
15
+ */
12
16
export interface JWTHeader {
13
17
alg : string | Algorithm ;
14
18
typ ?: string ;
@@ -22,14 +26,20 @@ export interface JWTHeader {
22
26
x5c ?: string | string [ ] ;
23
27
}
24
28
29
+ /**
30
+ * @deprecated use `JwtPayload` instead
31
+ */
25
32
export interface JWTClaims extends ClerkJWTClaims {
26
33
/**
27
34
* Encoded token supporting the `getRawString` method.
28
35
*/
29
36
__raw : string ;
30
37
}
31
38
32
- /* Clerk-issued JWT payload */
39
+ /**
40
+ * Clerk-issued JWT payload
41
+ * @deprecated use `JwtPayload` instead
42
+ */
33
43
export interface ClerkJWTClaims {
34
44
/**
35
45
* JWT Issuer - [RFC7519#section-4.1.1](https://tools.ietf.org/html/rfc7519#section-4.1.1).
@@ -69,7 +79,7 @@ export interface ClerkJWTClaims {
69
79
/**
70
80
* JWT Actor - [RFC8693](https://www.rfc-editor.org/rfc/rfc8693.html#name-act-actor-claim).
71
81
*/
72
- act ?: ActJWTClaim ;
82
+ act ?: ActClaim ;
73
83
74
84
/**
75
85
* Active organization id.
@@ -95,10 +105,15 @@ export interface ClerkJWTClaims {
95
105
/**
96
106
* JWT Actor - [RFC8693](https://www.rfc-editor.org/rfc/rfc8693.html#name-act-actor-claim).
97
107
* @inline
108
+ * @deprecated use `ActClaim` instead
98
109
*/
99
110
export interface ActJWTClaim {
100
111
sub : string ;
112
+
101
113
[ x : string ] : unknown ;
102
114
}
103
115
116
+ /**
117
+ * @deprecated This type will be removed in the next major version.
118
+ */
104
119
export type OrganizationsJWTClaim = Record < string , OrganizationCustomRoleKey > ;
0 commit comments