1.0.3 • Published 6 months ago

@types/discourse-sso v1.0.3

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

Installation

npm install --save @types/discourse-sso

Summary

This package contains type definitions for discourse-sso (https://github.com/ArmedGuy/discourse_sso_node).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/discourse-sso.

index.d.ts

// Type definitions for discourse-sso 1.0
// Project: https://github.com/ArmedGuy/discourse_sso_node
// Definitions by: Arnav Gupta <https://github.com/championswimmer>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

declare class DiscourseSSO {
    constructor(ssoSecret: string);
    validate(payload: string, sig: string): boolean;
    getNonce(payload: string): string;
    buildLoginString(params: DiscourseSSO.UserParams): string;
}

declare namespace DiscourseSSO {
    interface UserParams {
        nonce: string;
        external_id: string;
        email: string;
        admin?: boolean | undefined;
        moderator?: boolean | undefined;
        username?: string | undefined;
        name?: string | undefined;
        avatar_url?: string | undefined;
        add_groups?: string[] | undefined;
        remove_groups?: string[] | undefined;
    }
}
export = DiscourseSSO;

Additional Details

  • Last updated: Thu, 08 Jul 2021 09:08:44 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Arnav Gupta.