From 1beff579f6e074063d2db5f4b06e5f01276293c6 Mon Sep 17 00:00:00 2001 From: Arno V Date: Wed, 26 Jun 2024 08:37:48 -0400 Subject: [PATCH] feat: adding common nonce custom JWT claim (#40) --- packages/auth-common/src/components/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/auth-common/src/components/index.ts b/packages/auth-common/src/components/index.ts index 834e170..d8d73d7 100644 --- a/packages/auth-common/src/components/index.ts +++ b/packages/auth-common/src/components/index.ts @@ -14,6 +14,7 @@ export const JWT = { ALG: "RS256", USER_ID_KEY: "_id", TOKEN_ID_KEY: "__raw", + NONCE_KEY: "_nonce", ISSUER: "gizmette.com", };