Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@accounts/types

accounts-js10.6kMIT0.33.2TypeScript support: included

Accounts-js Types

rest, graphql, grant, auth, authentication, accounts, users, oauth

readme

@accounts/types

npm npm downloads codecov License

This package is a devDependency for most packages of the suite.

It contains the types used across the accounts-js Suite.

Installation

yarn add @accounts/types

Contributing

Any contribution is very welcome, read our contributing guide to see how to locally setup the repository and see our development process.

changelog

@accounts/types

0.33.2

Patch Changes

0.33.1

Patch Changes

0.33.0

Minor Changes

  • #1150 22056642 Thanks @larsivi! - Add support for magic-link strategy 🎉.

    Installation:

    yarn add @accounts/magic-link

    Usage:

    import AccountsMagicLink from '@accounts/magic-link';
    
    const accountsMagicLink = new AccountsMagicLink({});
    
    const accountsServer = new AccountsServer(
      { db: accountsDb, tokenSecret: 'secret' },
      {
        magicLink: accountsMagicLink,
      }
    );