UNPKG

auth0

Version:
47 lines 3.53 kB
export * from './managers/index.js'; export * from './models/index.js'; import { ActionsManager, AnomalyManager, AttackProtectionManager, BlacklistsManager, BrandingManager, ClientGrantsManager, ClientsManager, ConnectionsManager, CustomDomainsManager, DeviceCredentialsManager, EmailTemplatesManager, EmailsManager, FlowsManager, FormsManager, GrantsManager, GuardianManager, HooksManager, JobsManager, KeysManager, LogStreamsManager, LogsManager, NetworkAclsManager, OrganizationsManager, PromptsManager, RefreshTokensManager, ResourceServersManager, RolesManager, RulesManager, RulesConfigsManager, SelfServiceProfilesManager, SessionsManager, StatsManager, TenantsManager, TicketsManager, TokenExchangeProfilesManager, UserBlocksManager, UsersManager, UsersByEmailManager, } from './managers/index.js'; export class ManagementClientBase { constructor(configuration) { this.configuration = configuration; this.actions = new ActionsManager(this.configuration); this.anomaly = new AnomalyManager(this.configuration); this.attackProtection = new AttackProtectionManager(this.configuration); this.blacklists = new BlacklistsManager(this.configuration); this.branding = new BrandingManager(this.configuration); this.clientGrants = new ClientGrantsManager(this.configuration); this.clients = new ClientsManager(this.configuration); this.connections = new ConnectionsManager(this.configuration); this.customDomains = new CustomDomainsManager(this.configuration); this.deviceCredentials = new DeviceCredentialsManager(this.configuration); this.emailTemplates = new EmailTemplatesManager(this.configuration); this.emails = new EmailsManager(this.configuration); this.flows = new FlowsManager(this.configuration); this.forms = new FormsManager(this.configuration); this.grants = new GrantsManager(this.configuration); this.guardian = new GuardianManager(this.configuration); this.hooks = new HooksManager(this.configuration); this.jobs = new JobsManager(this.configuration); this.keys = new KeysManager(this.configuration); this.logStreams = new LogStreamsManager(this.configuration); this.logs = new LogsManager(this.configuration); this.networkAcls = new NetworkAclsManager(this.configuration); this.organizations = new OrganizationsManager(this.configuration); this.prompts = new PromptsManager(this.configuration); this.refreshTokens = new RefreshTokensManager(this.configuration); this.resourceServers = new ResourceServersManager(this.configuration); this.roles = new RolesManager(this.configuration); this.rules = new RulesManager(this.configuration); this.rulesConfigs = new RulesConfigsManager(this.configuration); this.selfServiceProfiles = new SelfServiceProfilesManager(this.configuration); this.sessions = new SessionsManager(this.configuration); this.stats = new StatsManager(this.configuration); this.tenants = new TenantsManager(this.configuration); this.tickets = new TicketsManager(this.configuration); this.tokenExchangeProfiles = new TokenExchangeProfilesManager(this.configuration); this.userBlocks = new UserBlocksManager(this.configuration); this.users = new UsersManager(this.configuration); this.usersByEmail = new UsersByEmailManager(this.configuration); } } //# sourceMappingURL=index.js.map