UNPKG

supertokens-node

Version:
13 lines (12 loc) 376 B
// @ts-nocheck import { APIFunction } from "../../types"; export type Response = { status: "OK"; createdNew: boolean; } | { status: "UNKNOWN_TENANT_ERROR"; } | { status: "BOXY_ERROR"; message: string; }; export default function createOrUpdateThirdPartyConfig({ stInstance, tenantId, options, userContext, }: Parameters<APIFunction>[0]): Promise<Response>;