npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@acoustic-content-sdk/redux-feature-login

v9.0.10076

Published

Feature store for authentication related aspects of Acoustic Content.

Downloads

71

Readme

npm

Feature store for authentication related aspects of Acoustic Content.

API Documentation

Home > @acoustic-content-sdk/redux-feature-login

redux-feature-login package

Feature store for authentication related aspects of Acoustic Content.

Interfaces

| Interface | Description | | --- | --- | | LoggedInFeatureState | | | LoginCredentials | Credentials used to login | | NextLoginReduxState | |

Variables

| Variable | Description | | --- | --- | | ACTION_CHECKED_LOGGED_IN | | | ACTION_FEDERATED_LOGIN | | | ACTION_LOGGED_IN | | | ACTION_LOGGED_OUT | | | ACTION_PASSWORD_LOGIN | | | checkLoggedInAction | Action to check if the system is logged in or not | | federatedLoginAction | Action to execute a login | | loggedInAction | Action to indicate that a successful login occurred | | loggedInFeature | Exposes the feature module selector | | loggedInFeatureReducer | | | loggedOutAction | Action to indicate that a successful logout occurred | | nextLogin | Returns an operator that emits once when a user logged in | | passwordLoginAction | Action to execute a login | | selectLoggedInFeature | Select the login feature | | VERSION | Version and build number of the package |

Type Aliases

| Type Alias | Description | | --- | --- | | CheckLoggedInAction | | | FederatedLoginAction | | | LoggedInAction | | | LoggedOutAction | | | PasswordLoginAction | |

Home > @acoustic-content-sdk/redux-feature-login > LoggedInFeatureState

LoggedInFeatureState interface

Signature:

export interface LoggedInFeatureState 

Properties

| Property | Type | Description | | --- | --- | --- | | loggedIn | LoggedInState | |

Home > @acoustic-content-sdk/redux-feature-login > LoginCredentials

LoginCredentials interface

Credentials used to login

Signature:

export interface LoginCredentials 

Properties

| Property | Type | Description | | --- | --- | --- | | password | string | The WCH password | | username | string | The WCH username, typically an email or the string 'apikey' |

Home > @acoustic-content-sdk/redux-feature-login > NextLoginReduxState

NextLoginReduxState interface

Signature:

export interface NextLoginReduxState extends LoggedInFeatureState 

Home > @acoustic-content-sdk/redux-feature-login > ACTION_CHECKED_LOGGED_IN

ACTION_CHECKED_LOGGED_IN variable

Signature:

ACTION_CHECKED_LOGGED_IN = "ACTION_CHECKED_LOGGED_IN"

Home > @acoustic-content-sdk/redux-feature-login > ACTION_FEDERATED_LOGIN

ACTION_FEDERATED_LOGIN variable

Signature:

ACTION_FEDERATED_LOGIN = "ACTION_FEDERATED_LOGIN"

Home > @acoustic-content-sdk/redux-feature-login > ACTION_LOGGED_IN

ACTION_LOGGED_IN variable

Signature:

ACTION_LOGGED_IN = "ACTION_LOGGED_IN"

Home > @acoustic-content-sdk/redux-feature-login > ACTION_LOGGED_OUT

ACTION_LOGGED_OUT variable

Signature:

ACTION_LOGGED_OUT = "ACTION_LOGGED_OUT"

Home > @acoustic-content-sdk/redux-feature-login > ACTION_PASSWORD_LOGIN

ACTION_PASSWORD_LOGIN variable

Signature:

ACTION_PASSWORD_LOGIN = "ACTION_PASSWORD_LOGIN"

Home > @acoustic-content-sdk/redux-feature-login > checkLoggedInAction

checkLoggedInAction variable

Action to check if the system is logged in or not

Signature:

checkLoggedInAction: Generator<CheckLoggedInAction>

Home > @acoustic-content-sdk/redux-feature-login > federatedLoginAction

federatedLoginAction variable

Action to execute a login

Signature:

federatedLoginAction: Generator<FederatedLoginAction>

Home > @acoustic-content-sdk/redux-feature-login > loggedInAction

loggedInAction variable

Action to indicate that a successful login occurred

Signature:

loggedInAction: Generator<LoggedInAction>

Home > @acoustic-content-sdk/redux-feature-login > loggedInFeature

loggedInFeature variable

Exposes the feature module selector

Signature:

loggedInFeature: import("@acoustic-content-sdk/redux-store").ReduxFeatureModule<boolean, LoggedInFeatureState, import("redux").AnyAction, import("redux").AnyAction, any>

Home > @acoustic-content-sdk/redux-feature-login > loggedInFeatureReducer

loggedInFeatureReducer variable

Signature:

loggedInFeatureReducer: {
    loggedIn: import("redux").Reducer<boolean, import("redux").AnyAction>;
}

Home > @acoustic-content-sdk/redux-feature-login > loggedOutAction

loggedOutAction variable

Action to indicate that a successful logout occurred

Signature:

loggedOutAction: Generator<LoggedOutAction>

Home > @acoustic-content-sdk/redux-feature-login > nextLogin

nextLogin variable

Returns an operator that emits once when a user logged in

Signature:

nextLogin: OperatorFunction<NextLoginReduxState, boolean>

Home > @acoustic-content-sdk/redux-feature-login > passwordLoginAction

passwordLoginAction variable

Action to execute a login

Signature:

passwordLoginAction: UnaryFunction<LoginCredentials, PasswordLoginAction>

Home > @acoustic-content-sdk/redux-feature-login > selectLoggedInFeature

selectLoggedInFeature variable

Select the login feature

Signature:

selectLoggedInFeature: import("rxjs").UnaryFunction<Record<string, any>, boolean>

Home > @acoustic-content-sdk/redux-feature-login > VERSION

VERSION variable

Version and build number of the package

Signature:

VERSION: {
    version: {
        major: string;
        minor: string;
        patch: string;
        branch: string;
    };
    build: Date;
}

Home > @acoustic-content-sdk/redux-feature-login > LoggedInFeatureState > loggedIn

LoggedInFeatureState.loggedIn property

Signature:

[LOGIN_FEATURE]: LoggedInState;

Home > @acoustic-content-sdk/redux-feature-login > LoginCredentials > password

LoginCredentials.password property

The WCH password

Signature:

password: string;

Home > @acoustic-content-sdk/redux-feature-login > LoginCredentials > username

LoginCredentials.username property

The WCH username, typically an email or the string 'apikey'

Signature:

username: string;