We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abfd5ef commit 636b496Copy full SHA for 636b496
2 files changed
.changeset/session-minter-oiat-type.md
@@ -0,0 +1,5 @@
1
+---
2
+'@clerk/shared': patch
3
4
+
5
+Add `oiat` (original_issued_at) field to `JwtHeader` type for Session Minter monotonic token freshness checks.
packages/shared/src/types/jwtv2.ts
@@ -25,6 +25,8 @@ export interface JwtHeader {
25
'x5t#S256'?: string;
26
x5t?: string;
27
x5c?: string | string[];
28
+ /** @internal - used by Session Minter for monotonic token freshness checks. Do not depend on this field. */
29
+ oiat?: number;
30
}
31
32
declare global {
0 commit comments