UNPKG

@datalayer/core

Version:

[![Datalayer](https://assets.datalayer.tech/datalayer-25.svg)](https://datalayer.io)

18 lines (17 loc) 808 B
/** * IAM (Identity and Access Management) API exports. * * Provides organized access to authentication, OAuth2, and user profile functionality. * * @module api/iam */ export * as authentication from './authentication'; export * as oauth2 from './oauth2'; export * as profile from './profile'; export * as healthz from './healthz'; export * as usage from './usage'; export { login, logout, checkAuth } from './authentication'; export { getOAuth2AuthzUrl, getOAuth2AuthzUrlForLink, handleGitHubOAuth2Callback, handleLinkedInOAuth2Callback, handleOktaOAuth2Callback, type OAuth2Provider, type OAuth2AuthzUrlResponse, type OAuth2CallbackParams, type OAuth2CallbackResponse, } from './oauth2'; export { me, whoami } from './profile'; export { ping } from './healthz'; export { getCredits } from './usage';