References
Dashboard Types
Type Aliases
APIFunction()
type APIFunction = (apiImplementation, tenantId, options, userContext) => Promise<any>;
Defined in: recipe/dashboard/types.ts:68
Parameters
Returns
Promise<any>
APIInterface
type APIInterface = object;
Defined in: recipe/dashboard/types.ts:64
Properties
APIOptions
type APIOptions = object;
Defined in: recipe/dashboard/types.ts:54
Properties
AuthMode
type AuthMode = "api-key" | "email-password";
Defined in: recipe/dashboard/types.ts:77
CoreConfigFieldInfo
type CoreConfigFieldInfo = object;
Defined in: recipe/dashboard/types.ts:84
Properties
RecipeIdForUser
type RecipeIdForUser = "emailpassword" | "thirdparty" | "passwordless" | "webauthn";
Defined in: recipe/dashboard/types.ts:75
RecipeInterface
type RecipeInterface = object;
Defined in: recipe/dashboard/types.ts:45
Methods
getDashboardBundleLocation()
getDashboardBundleLocation(input): Promise<string>;
Defined in: recipe/dashboard/types.ts:46
Parameters
Returns
Promise<string>
shouldAllowAccess()
shouldAllowAccess(input): Promise<boolean>;
Defined in: recipe/dashboard/types.ts:47
Parameters
Returns
Promise<boolean>
TypeInput
type TypeInput = object;
Defined in: recipe/dashboard/types.ts:20
Properties
TypeNormalisedInput
type TypeNormalisedInput = object;
Defined in: recipe/dashboard/types.ts:32
Properties
UserWithFirstAndLastName
type UserWithFirstAndLastName = User & object;
Defined in: recipe/dashboard/types.ts:79