2.0.33 • Published 6 months ago

@types/firebase-token-generator v2.0.33

Weekly downloads
495
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/firebase-token-generator

Summary

This package contains type definitions for firebase-token-generator (https://github.com/firebase/firebase-token-generator-node).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/firebase-token-generator.

index.d.ts

// Type definitions for firebase-token-generator v2.0.0
// Project: https://github.com/firebase/firebase-token-generator-node
// Definitions by: Hans Van den Keybus <https://github.com/dotdotcommadot>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

interface TokenOptions {
  expires?: number | undefined;
  notBefore?: number | undefined;
  admin?: boolean | undefined;
  debug?: boolean | undefined;
  simulate?: boolean | undefined;
  iat?: number | undefined;
}

declare class FirebaseTokenGenerator {

  /**
   * Builds a new object that can generate Firebase authentication tokens.
   * @constructor
   * @param { String } secret The secret for the Firebase being used (get yours from the Firebase Admin Console).
   */
  constructor(secret: string);

  /**
   * Creates a token that authenticates a client with arbitrary data "data", and the specified options.
   *
   * @param { any } data JSON data that will be passed to the Firebase Rules API once a client authenticates. Unless the
   *                "admin" flag is set, it must contain a "uid" key, and if it does it must be a string of length
   *                256 or less.
   * @param { TokenOptions } options The developer-supplied options for this token. Supported options are:
   *                a) "expires" -- A timestamp (as a number of seconds since the epoch) denoting a time after which
   *                          this token should no longer be valid.
   *                b) "notBefore" -- A timestamp (as a number of seconds since the epoch) denoting a time before
   *                          which this token should be rejected by the server.
   *                c) "admin" -- Set to true to bypass all security rules (use this for your trusted servers).
   *                d) "debug" -- Set to true to enable debug mode (so you can see the results of Rules API operations)
   *                e) "simulate" -- (internal-only for now) Set to true to neuter all API operations (listens / puts
   *                                 will run security rules but not actually write or return data)
   *                f) "iat" -- (Number) (internal-only, for testing) Set the issued at time for the generated token
   * @return {String} The authentication token
   */
  createToken(data: any, options?: TokenOptions): string;
}

declare module 'firebase-token-generator' {
  export = FirebaseTokenGenerator;
}

Additional Details

  • Last updated: Thu, 08 Jul 2021 12:01:38 GMT
  • Dependencies: none
  • Global values: FirebaseTokenGenerator

Credits

These definitions were written by Hans Van den Keybus.

2.0.33

6 months ago

2.0.31

8 months ago

2.0.32

7 months ago

2.0.30

1 year ago

2.0.29

3 years ago

2.0.28

8 years ago

2.0.27

8 years ago

2.0.26-alpha

8 years ago

2.0.25-alpha

8 years ago

2.0.24-alpha

8 years ago

2.0.23-alpha

8 years ago

2.0.22-alpha

8 years ago

2.0.21-alpha

8 years ago

2.0.20-alpha

8 years ago

2.0.15-alpha

8 years ago

2.0.14-alpha

8 years ago