UNPKG

moleculer-iam

Version:

Centralized IAM module for moleculer. Including a certified OIDC provider and an Identity provider for user profile, credentials, and custom claims management. Custom claims could be defined/updated by declarative schema which contains claims validation a

16 lines (15 loc) 311 B
export interface IdentityMetadata { federation: { [key: string]: any; }; softDeleted: boolean; scope: { [scopeName: string]: boolean; }; [key: string]: any; } export declare const defaultIdentityMetadata: { federation: {}; scope: {}; softDeleted: boolean; };