From e8741b48d1466bcf13a5fba3de0bcc146b6bdfff Mon Sep 17 00:00:00 2001 From: Enes Date: Tue, 26 Mar 2024 21:24:42 +0200 Subject: [PATCH 1/3] fix gh actions for main (remove build on main) --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fb9a8e2..4cc161d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -3,7 +3,7 @@ name: "🏗️ Build TS + Docs" on: workflow_dispatch: push: - branches: [development, main] + branches: [development] jobs: build: From 295b62b73d328ac3faa534a3e26249fda67da60d Mon Sep 17 00:00:00 2001 From: ExWeiv GitHub BOT Date: Tue, 26 Mar 2024 19:24:56 +0000 Subject: [PATCH 2/3] Build and Generate Docs - BOT --- docs/functions/discord.getTokens.html | 4 ++-- docs/functions/discord.redirectURL.html | 4 ++-- docs/functions/discord.userAuth.html | 4 ++-- docs/functions/facebook.authUser.html | 4 ++-- docs/functions/facebook.getTokens.html | 4 ++-- docs/functions/facebook.redirectURL.html | 4 ++-- docs/functions/github.authUser.html | 4 ++-- docs/functions/github.getTokens.html | 4 ++-- docs/functions/github.redirectURL.html | 4 ++-- docs/functions/google.authUser.html | 4 ++-- docs/functions/google.getTokens.html | 4 ++-- docs/functions/google.redirectURL.html | 4 ++-- docs/functions/oauth.getSessionToken.html | 4 ++-- docs/functions/steam.redirectURL.html | 4 ++-- docs/functions/steam.userAuth.html | 4 ++-- docs/index.html | 2 +- docs/modules.html | 2 +- docs/modules/discord.html | 4 ++-- docs/modules/facebook.html | 4 ++-- docs/modules/github.html | 4 ++-- docs/modules/google.html | 4 ++-- docs/modules/oauth.html | 4 ++-- docs/modules/steam.html | 4 ++-- docs/types/AuthResponse.html | 4 ++-- docs/types/discord.AuthOptions.html | 4 ++-- docs/types/discord.RedirectURLOptions.html | 4 ++-- docs/types/discord.TokensOptions.html | 4 ++-- docs/types/discord.TokensResponse.html | 4 ++-- docs/types/facebook.AuthOptions.html | 4 ++-- docs/types/facebook.RedirectURLOptions.html | 4 ++-- docs/types/facebook.TokensOptions.html | 4 ++-- docs/types/facebook.TokensResponse.html | 4 ++-- docs/types/github.AuthOptions.html | 4 ++-- docs/types/github.RedirectURLOptions.html | 4 ++-- docs/types/github.TokensOptions.html | 4 ++-- docs/types/github.TokensResponse.html | 4 ++-- docs/types/google.AuthOptions.html | 4 ++-- docs/types/google.RedirectURLOptions.html | 4 ++-- docs/types/google.TokensOptions.html | 4 ++-- docs/types/google.TokensResponse.html | 4 ++-- docs/types/oauth.OAuthOptions.html | 4 ++-- docs/types/oauth.OAuthProviders.html | 4 ++-- docs/types/steam.AuthOptions.html | 4 ++-- docs/types/steam.RedirectURLOptions.html | 4 ++-- 44 files changed, 86 insertions(+), 86 deletions(-) diff --git a/docs/functions/discord.getTokens.html b/docs/functions/discord.getTokens.html index 0907f51..2e591b9 100644 --- a/docs/functions/discord.getTokens.html +++ b/docs/functions/discord.getTokens.html @@ -1,10 +1,10 @@ getTokens | Easy Auth API Reference | ExWeiv Apps

Generated using TypeDoc
+

Returns Promise<discord.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Discord

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

  • Gets tokens for API calls to Facebook. Keep in mind Facebook has a different system for tokens. Facebook doesn't have any refresh_tokens instead you exhcnage expired tokens with new ones.

    Parameters

    Returns Promise<facebook.TokensResponse>

Generated using TypeDoc
+

Returns Promise<facebook.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Facebook

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

Generated using TypeDoc
+

Returns Promise<github.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via GitHub

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

Generated using TypeDoc
+

Returns Promise<google.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Google

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

  • This function handles the user authentication and returns a session token to be used in the frontend with wix-members-frontend APIs.

    Parameters

    • provider: OAuthProviders

      Provider you want to use for the process (This function currently does not support Steam)

    • options: OAuthOptions

      authUser options for the process related options based on the provider

      -

    Returns Promise<string>

Generated using TypeDoc
+

Returns Promise<string>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Steam

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

  • Gets user data from Steam

    Parameters

    • options: steam.AuthOptions

      Options that's used when getting user data from Steam.

    • Optional client_secret: string

      Defaults to undefined, if you don't pass a client_secret (apiKey) API will use Wix Secret Manager to find client_secret named as SteamClientSecret.

      -

    Returns Promise<AuthResponse>

Generated using TypeDoc
+

Returns Promise<AuthResponse>

Generated using TypeDoc

Read Discord Docs for more info about anything here.

-

Index

Type Aliases

Index

Type Aliases

Generated using TypeDoc

Read Facebook Docs for more info about anything here.

-

Index

Type Aliases

Index

Type Aliases

Generated using TypeDoc

Read GitHub Docs for more info about anything here.

-

Index

Type Aliases

Index

Type Aliases

Generated using TypeDoc

Read Google Docs for more info about anything here.

-

Index

Type Aliases

Index

Type Aliases

Generated using TypeDoc

Helper functions to quickly integrate OAuth providers with Wix Members in backend

-

Index

Type Aliases

Index

Type Aliases

Functions

Generated using TypeDoc

Steam itself doesn't provide any OAuth 2.0 or something similar to authenticate users with their APIs. You'll need to implement a secure way to authenticate users via Steam. This isn't a realy OAuth 2.0 method since you won't get any access_token after user sign-in to Steam, what you'll get is users's public Steam ID (number). That you can use to get public info of that user after successful login.

-

Index

Type Aliases

Index

Type Aliases

Functions

Generated using TypeDoc
-

AuthResponse: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any

Generated using TypeDoc
+

AuthResponse: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any

Generated using TypeDoc
-

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
-

RedirectURLOptions: {
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
-

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string

Generated using TypeDoc
-

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
-

AuthOptions: {
    client_id: string;
    code?: string;
    fields?: string[];
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • Optional code?: string
  • Optional fields?: string[]
  • redirect_uri: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code?: string;
    fields?: string[];
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • Optional code?: string
  • Optional fields?: string[]
  • redirect_uri: string

Generated using TypeDoc
-

RedirectURLOptions: {
    client_id: string;
    redirect_uri: string;
    response_type?: string[];
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • redirect_uri: string
  • Optional response_type?: string[]
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    client_id: string;
    redirect_uri: string;
    response_type?: string[];
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • redirect_uri: string
  • Optional response_type?: string[]
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
-

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    fb_exchange_token?: string;
    grant_type?: string;
    redirect_uri?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional fb_exchange_token?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    fb_exchange_token?: string;
    grant_type?: string;
    redirect_uri?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional fb_exchange_token?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string

Generated using TypeDoc
-

TokensResponse: {
    access_token: string;
    expires_in: number;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • token_type: string

Generated using TypeDoc
-

AuthOptions: {
    client_id: string;
    code: string;
    redirect_uri: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • code: string
  • redirect_uri: string
  • Optional repository_id?: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code: string;
    redirect_uri: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • code: string
  • redirect_uri: string
  • Optional repository_id?: string

Generated using TypeDoc
-

RedirectURLOptions: {
    allow_signup?: boolean;
    client_id: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • Optional allow_signup?: boolean
  • client_id: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    allow_signup?: boolean;
    client_id: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • Optional allow_signup?: boolean
  • client_id: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc
-

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string
  • Optional repository_id?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string
  • Optional repository_id?: string

Generated using TypeDoc
-

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    refresh_token_expires_in: number;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • refresh_token_expires_in: number
  • scope: string
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    refresh_token_expires_in: number;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • refresh_token_expires_in: number
  • scope: string
  • token_type: string

Generated using TypeDoc
-

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
-

RedirectURLOptions: {
    access_type?: string;
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • Optional access_type?: string
  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    access_type?: string;
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • Optional access_type?: string
  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
-

TokensOptions: {
    client_id: string;
    client_secret?: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • Optional client_secret?: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string
  • Optional refresh_token?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret?: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • Optional client_secret?: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string
  • Optional refresh_token?: string

Generated using TypeDoc
-

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
-

Generated using TypeDoc
+

Generated using TypeDoc
-

OAuthProviders: "google" | "facebook" | "discord" | "github"

Generated using TypeDoc
+

OAuthProviders: "google" | "facebook" | "discord" | "github"

Generated using TypeDoc
-

AuthOptions: {
    steamId: string;
}

Type declaration

  • steamId: string

Generated using TypeDoc
+

AuthOptions: {
    steamId: string;
}

Type declaration

  • steamId: string

Generated using TypeDoc
-

RedirectURLOptions: {
    realm: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • realm: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    realm: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • realm: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc

Generated using TypeDoc
+

Returns Promise<discord.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Discord

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

  • Gets tokens for API calls to Facebook. Keep in mind Facebook has a different system for tokens. Facebook doesn't have any refresh_tokens instead you exhcnage expired tokens with new ones.

    Parameters

    Returns Promise<facebook.TokensResponse>

Generated using TypeDoc
+

Returns Promise<facebook.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Facebook

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

Generated using TypeDoc
+

Returns Promise<github.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via GitHub

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

Generated using TypeDoc
+

Returns Promise<google.TokensResponse>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Google

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

  • This function handles the user authentication and returns a session token to be used in the frontend with wix-members-frontend APIs.

    Parameters

    • provider: OAuthProviders

      Provider you want to use for the process (This function currently does not support Steam)

    • options: OAuthOptions

      authUser options for the process related options based on the provider

      -<<<<<<< HEAD -

    Returns Promise<string>

Generated using TypeDoc
+

Returns Promise<string>

Generated using TypeDoc

  • Creates a redirect url for authenticating user via Steam

    Parameters

    Returns string

Generated using TypeDoc
+

Returns string

Generated using TypeDoc

  • Gets user data from Steam

    Parameters

    • options: steam.AuthOptions

      Options that's used when getting user data from Steam.

    • Optional client_secret: string

      Defaults to undefined, if you don't pass a client_secret (apiKey) API will use Wix Secret Manager to find client_secret named as SteamClientSecret.

      -<<<<<<< HEAD -

    Returns Promise<AuthResponse>

Generated using TypeDoc
+

Returns Promise<AuthResponse>

Generated using TypeDoc

Read Discord Docs for more info about anything here.

-<<<<<<< HEAD -

Index

Type Aliases

AuthOptions -======= -

Index

Type Aliases

AuthOptions ->>>>>>> 295b62b73d328ac3faa534a3e26249fda67da60d +

Index

Type Aliases

Generated using TypeDoc

Read Facebook Docs for more info about anything here.

-<<<<<<< HEAD -

Index

Type Aliases

AuthOptions -======= -

Index

Type Aliases

AuthOptions ->>>>>>> 295b62b73d328ac3faa534a3e26249fda67da60d +

Index

Type Aliases

Generated using TypeDoc

Read GitHub Docs for more info about anything here.

-<<<<<<< HEAD -

Index

Type Aliases

AuthOptions -======= -

Index

Type Aliases

AuthOptions ->>>>>>> 295b62b73d328ac3faa534a3e26249fda67da60d +

Index

Type Aliases

Generated using TypeDoc

Read Google Docs for more info about anything here.

-<<<<<<< HEAD -

Index

Type Aliases

AuthOptions -======= -

Index

Type Aliases

AuthOptions ->>>>>>> 295b62b73d328ac3faa534a3e26249fda67da60d +

Index

Type Aliases

Generated using TypeDoc

Helper functions to quickly integrate OAuth providers with Wix Members in backend

-<<<<<<< HEAD -

Index

Type Aliases

OAuthOptions -======= -

Index

Type Aliases

OAuthOptions ->>>>>>> 295b62b73d328ac3faa534a3e26249fda67da60d +

Index

Type Aliases

Functions

Generated using TypeDoc

Steam itself doesn't provide any OAuth 2.0 or something similar to authenticate users with their APIs. You'll need to implement a secure way to authenticate users via Steam. This isn't a realy OAuth 2.0 method since you won't get any access_token after user sign-in to Steam, what you'll get is users's public Steam ID (number). That you can use to get public info of that user after successful login.

-<<<<<<< HEAD -

Index

Type Aliases

AuthOptions -======= -

Index

Type Aliases

AuthOptions ->>>>>>> 295b62b73d328ac3faa534a3e26249fda67da60d +

Index

Type Aliases

Functions

Generated using TypeDoc
-<<<<<<< HEAD -

AuthResponse: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any

Generated using TypeDoc
+

AuthResponse: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any

Generated using TypeDoc

AuthResponse: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any

Generated using TypeDoc
- - -<<<<<<< HEAD -

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

RedirectURLOptions: {
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc

RedirectURLOptions: {
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string

Generated using TypeDoc

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

AuthOptions: {
    client_id: string;
    code?: string;
    fields?: string[];
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • Optional code?: string
  • Optional fields?: string[]
  • redirect_uri: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code?: string;
    fields?: string[];
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • Optional code?: string
  • Optional fields?: string[]
  • redirect_uri: string

Generated using TypeDoc

AuthOptions: {
    client_id: string;
    code?: string;
    fields?: string[];
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • Optional code?: string
  • Optional fields?: string[]
  • redirect_uri: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

RedirectURLOptions: {
    client_id: string;
    redirect_uri: string;
    response_type?: string[];
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • redirect_uri: string
  • Optional response_type?: string[]
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    client_id: string;
    redirect_uri: string;
    response_type?: string[];
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • redirect_uri: string
  • Optional response_type?: string[]
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc

RedirectURLOptions: {
    client_id: string;
    redirect_uri: string;
    response_type?: string[];
    scope?: string[];
    state?: string;
}

Type declaration

  • client_id: string
  • redirect_uri: string
  • Optional response_type?: string[]
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    fb_exchange_token?: string;
    grant_type?: string;
    redirect_uri?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional fb_exchange_token?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    fb_exchange_token?: string;
    grant_type?: string;
    redirect_uri?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional fb_exchange_token?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string

Generated using TypeDoc

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    fb_exchange_token?: string;
    grant_type?: string;
    redirect_uri?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional fb_exchange_token?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensResponse: {
    access_token: string;
    expires_in: number;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • token_type: string

Generated using TypeDoc

TokensResponse: {
    access_token: string;
    expires_in: number;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • token_type: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

AuthOptions: {
    client_id: string;
    code: string;
    redirect_uri: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • code: string
  • redirect_uri: string
  • Optional repository_id?: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code: string;
    redirect_uri: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • code: string
  • redirect_uri: string
  • Optional repository_id?: string

Generated using TypeDoc

AuthOptions: {
    client_id: string;
    code: string;
    redirect_uri: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • code: string
  • redirect_uri: string
  • Optional repository_id?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

RedirectURLOptions: {
    allow_signup?: boolean;
    client_id: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • Optional allow_signup?: boolean
  • client_id: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    allow_signup?: boolean;
    client_id: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • Optional allow_signup?: boolean
  • client_id: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc

RedirectURLOptions: {
    allow_signup?: boolean;
    client_id: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • Optional allow_signup?: boolean
  • client_id: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string
  • Optional repository_id?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string
  • Optional repository_id?: string

Generated using TypeDoc

TokensOptions: {
    client_id: string;
    client_secret: string;
    code?: string;
    grant_type?: string;
    redirect_uri?: string;
    refresh_token?: string;
    repository_id?: string;
}

Type declaration

  • client_id: string
  • client_secret: string
  • Optional code?: string
  • Optional grant_type?: string
  • Optional redirect_uri?: string
  • Optional refresh_token?: string
  • Optional repository_id?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    refresh_token_expires_in: number;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • refresh_token_expires_in: number
  • scope: string
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    refresh_token_expires_in: number;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • refresh_token_expires_in: number
  • scope: string
  • token_type: string

Generated using TypeDoc

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    refresh_token_expires_in: number;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • refresh_token_expires_in: number
  • scope: string
  • token_type: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
+

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc

AuthOptions: {
    client_id: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
}

Type declaration

  • client_id: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

RedirectURLOptions: {
    access_type?: string;
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • Optional access_type?: string
  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    access_type?: string;
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • Optional access_type?: string
  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc

RedirectURLOptions: {
    access_type?: string;
    client_id: string;
    prompt?: string;
    redirect_uri: string;
    response_type?: string;
    scope?: string[];
    state?: string;
}

Type declaration

  • Optional access_type?: string
  • client_id: string
  • Optional prompt?: string
  • redirect_uri: string
  • Optional response_type?: string
  • Optional scope?: string[]
  • Optional state?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensOptions: {
    client_id: string;
    client_secret?: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • Optional client_secret?: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string
  • Optional refresh_token?: string

Generated using TypeDoc
+

TokensOptions: {
    client_id: string;
    client_secret?: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • Optional client_secret?: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string
  • Optional refresh_token?: string

Generated using TypeDoc

TokensOptions: {
    client_id: string;
    client_secret?: string;
    code: string;
    grant_type?: string;
    redirect_uri: string;
    refresh_token?: string;
}

Type declaration

  • client_id: string
  • Optional client_secret?: string
  • code: string
  • Optional grant_type?: string
  • redirect_uri: string
  • Optional refresh_token?: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
+

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc

TokensResponse: {
    access_token: string;
    expires_in: number;
    refresh_token: string;
    scope: string;
    token_type: string;
}

Type declaration

  • access_token: string
  • expires_in: number
  • refresh_token: string
  • scope: string
  • token_type: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

Generated using TypeDoc
+

Generated using TypeDoc

Generated using TypeDoc
- - -<<<<<<< HEAD -

OAuthProviders: "google" | "facebook" | "discord" | "github"

Generated using TypeDoc
+

OAuthProviders: "google" | "facebook" | "discord" | "github"

Generated using TypeDoc

OAuthProviders: "google" | "facebook" | "discord" | "github"

Generated using TypeDoc
- - -<<<<<<< HEAD -

AuthOptions: {
    steamId: string;
}

Type declaration

  • steamId: string

Generated using TypeDoc
+

AuthOptions: {
    steamId: string;
}

Type declaration

  • steamId: string

Generated using TypeDoc

AuthOptions: {
    steamId: string;
}

Type declaration

  • steamId: string

Generated using TypeDoc
- - -<<<<<<< HEAD -

RedirectURLOptions: {
    realm: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • realm: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc
+

RedirectURLOptions: {
    realm: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • realm: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc

RedirectURLOptions: {
    realm: string;
    redirect_uri: string;
    state?: string;
}

Type declaration

  • realm: string
  • redirect_uri: string
  • Optional state?: string

Generated using TypeDoc
- -