diff --git a/packages/network/src/auth/token.ts b/packages/network/src/auth/token.ts index 96edc1e3..e8bb1b2b 100644 --- a/packages/network/src/auth/token.ts +++ b/packages/network/src/auth/token.ts @@ -10,6 +10,10 @@ export interface MonkJwtPayload extends JwtPayload { * The array of permissions that the user has. */ permissions?: MonkApiPermission[]; + /** + * The Auth0 Client ID of the application. + */ + azp?: string; } /**