supertokens-node
Version:
NodeJS driver for SuperTokens core
20 lines (19 loc) • 448 B
TypeScript
// @ts-nocheck
import { APIFunction } from "../../types";
export type Response =
| {
status: "OK";
}
| {
status: "RECIPE_NOT_CONFIGURED_ON_BACKEND_SDK_ERROR";
message: string;
}
| {
status: "UNKNOWN_TENANT_ERROR";
};
export default function updateTenantFirstFactor({
stInstance,
tenantId,
options,
userContext,
}: Parameters<APIFunction>[0]): Promise<Response>;