UNPKG

supertokens-node

Version:
22 lines (21 loc) 523 B
// @ts-nocheck import { APIInterface, APIOptions } from "../../types"; import { UserContext } from "../../../../types"; export type Response = | { status: "OK"; createdNew: boolean; } | { status: "UNKNOWN_TENANT_ERROR"; } | { status: "BOXY_ERROR"; message: string; }; export default function createOrUpdateThirdPartyConfig( _: APIInterface, tenantId: string, options: APIOptions, userContext: UserContext ): Promise<Response>;