Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.modelence.com/llms.txt

Use this file to discover all available pages before exploring further.

API Reference / modelence / client / unlinkOAuthProvider
unlinkOAuthProvider(options): Promise<void>
Defined in: packages/modelence/src/auth/client/index.ts:211 Unlink an OAuth provider from the currently signed-in user’s account.

Example

await unlinkOAuthProvider({ provider: 'github' });

Parameters

ParameterTypeDescription
options{ provider: "google" | "github"; }-
options.provider"google" | "github"The OAuth provider to unlink (‘google’ or ‘github’).

Returns

Promise<void>