JSPM

@unitedeffects/auth

1.32.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q34231F
  • License MIT

OpenAPI client SDK for UE Auth by United Effects.

Package Exports

  • @unitedeffects/auth
  • @unitedeffects/auth/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@unitedeffects/auth) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

UE Auth Client SDK

This is an openAPI generated client SDK for the UE Auth API. It utilizes Axios. For any support or help, please contact United Effects directly.

Full API

The full API can be viewed in the UE documents site: https://docs.unitedeffects.com

Install and Use

Example is with yarn but you could use npm. All APIs are provided as classes.

yarn i @unitedeffects/auth
// Example for SystemApi with basic JavaScript
const { SystemApi } = require('@unitedeffects/auth');
const sys = new SystemApi();

sys.apiHealthGet()
.then(d => console.info(d.data))
.catch(e => console.info(e));
// Example for SystemApi with import and async/await
import { SystemApi } from '@unitedeffects/auth';
const sys = new SystemApi();

async function example() {
    try {
        const resp = await sys.apiHealthGet();   
        console.info(resp.data);
    } catch (e) {
        console.info(e);
    }
    
}

API List

These classes are exported and available via import or require.

  • AccountDashboardApi
  • ClientAccessApi
  • ClientsApi
  • DeviceChallengeApi
  • NotificationApi
  • OIDCApi
  • OperationsAPI
  • OrganizationDomainsApi
  • OrganizationNotificationApi
  • OrganizationPermissionsApi
  • OrganizationProductsApi
  • OrganizationRolesApi
  • OrganizationUserProfilesApi
  • OrganizationUsersAccessApi
  • OrganizationApi
  • PermissionsApi
  • ProductsApi
  • ProfileAccessApi
  • ProfileRequestsApi
  • ProfilesApi
  • RolesApi
  • SystemApi
  • UsersApi
  • ValidateAccessApi
  • WebAuthNApi

Environments

This SDK can be used in the following environments:

Environment

  • Node.js
  • Webpack
  • Browserify

Language level

  • ES5 - you must have a Promises/A+ library installed
  • ES6

Module system

  • CommonJS
  • ES6 module system

It can be used in both TypeScript and JavaScript. In TypeScript, the definition should be automatically resolved via package.json. (Reference)

Additional Information

Investment Opportunities

If you are interested in learning about investment opportunities with United Effects, contact invest@unitedeffects.com

Copyright (c) 2023 United Effects LLC, all rights reserved.