Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@bedrock/account

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bedrock/account

User accounts for Bedrock applications

  • 9.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

bedrock-account

User accounts for Bedrock Applications

API Reference

Modules

bedrock-account

Typedefs

ExplainObject : object

An object containing information on the query plan.

ExplainObject : object

An object containing information on the query plan.

ExplainObject : object

An object containing information on the query plan.

bedrock-account

bedrock-account.insert(options) ⇒ Promise

Inserts a new account. The account must contain id.

Kind: static method of bedrock-account
Returns: Promise - Resolves to the database account record.

ParamTypeDescription
optionsobjectThe options to use.
options.accountobjectThe account containing at least the minimum required data.
[options.meta]objectThe meta information to include.

bedrock-account.exists(options) ⇒ Promise

Check for the existence of an account.

Kind: static method of bedrock-account
Returns: Promise - Resolves to a boolean indicating account existence.

ParamTypeDefaultDescription
optionsobjectThe options to use.
[options.id]stringThe ID of the account to check.
[options.email]stringThe email address for the account.
[options.status]string"active"The status to check for (options: 'active', deleted').

bedrock-account.get(options) ⇒ Promise | ExplainObject

Retrieves an account by ID or email.

Kind: static method of bedrock-account
Returns: Promise | ExplainObject - - Returns a Promise that resolves to the account record ({account, meta}) or an ExplainObject if explain=true.

ParamTypeDefaultDescription
optionsobjectThe options to use.
[options.id]stringThe ID of the account to retrieve.
[options.email]stringThe email of the account to retrieve.
[options.explain]booleanfalseAn optional explain boolean.

bedrock-account.getAll(options) ⇒ Promise

Retrieves all accounts matching the given query.

Kind: static method of bedrock-account
Returns: Promise - Resolves to the records that matched the query.

ParamTypeDefaultDescription
optionsobjectThe options to use.
[options.query]object{}The query to use.
[options.options]object{}The options (eg: 'sort', 'limit').
[options._allowPending]booleanfalseFor internal use only; allows finding records that are in the process of being created.

bedrock-account.update(options) ⇒ Promise | ExplainObject

Updates an account by overwriting it with new account and / or meta information. In both cases, the expected sequence must match the existing account, but if meta is being overwritten, sequence can be omitted and the value from meta.sequence will be used.

Kind: static method of bedrock-account
Returns: Promise | ExplainObject - - Returns a Promise that resolves to true if the update succeeds or an ExplainObject if explain=true.

ParamTypeDescription
optionsobjectThe options to use.
options.idstringThe ID of the account to update.
[options.account]objectThe new account information to use.
[options.meta]objectThe new meta information to use.
[options.sequence]numberThe sequence number that must match the current record prior to the update if given; can be omitted if meta is given and has, instead, the new sequence number (which must be one more than the existing sequence number).

bedrock-account.setStatus(options) ⇒ Promise

Sets an account's status.

Kind: static method of bedrock-account
Returns: Promise - Resolves once the operation completes.

ParamTypeDescription
optionsobjectThe options to use.
options.idstringThe account ID.
options.statusstringThe status.

ExplainObject : object

An object containing information on the query plan.

Kind: global typedef

ExplainObject : object

An object containing information on the query plan.

Kind: global typedef

ExplainObject : object

An object containing information on the query plan.

Kind: global typedef

Keywords

FAQs

Package last updated on 15 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc