diff --git a/src/interfaces/jwt.interface.ts b/src/interfaces/jwt.interface.ts index 6edd4ff..d6a3524 100644 --- a/src/interfaces/jwt.interface.ts +++ b/src/interfaces/jwt.interface.ts @@ -61,4 +61,9 @@ export interface JWTPayload { * Permissions granted to the user associated with the JWT */ permissions?: string[]; + + /** + * Feature flags granted to the organization associated with the JWT + */ + feature_flags?: string[]; }