@better-auth-ui/core 1.6.13 → 1.6.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -56,6 +56,12 @@ export interface AuthConfig {
|
|
|
56
56
|
* @default "/"
|
|
57
57
|
*/
|
|
58
58
|
redirectTo: string;
|
|
59
|
+
/**
|
|
60
|
+
* Allow users to link multiple accounts from the same social provider.
|
|
61
|
+
* When false, providers already linked to the account are hidden from the available-to-link list.
|
|
62
|
+
* @default true
|
|
63
|
+
*/
|
|
64
|
+
multipleAccountsPerProvider?: boolean;
|
|
59
65
|
/**
|
|
60
66
|
* List of enabled social authentication providers
|
|
61
67
|
* @remarks `SocialProvider[]`
|
package/package.json
CHANGED
|
@@ -59,6 +59,12 @@ export interface AuthConfig {
|
|
|
59
59
|
* @default "/"
|
|
60
60
|
*/
|
|
61
61
|
redirectTo: string
|
|
62
|
+
/**
|
|
63
|
+
* Allow users to link multiple accounts from the same social provider.
|
|
64
|
+
* When false, providers already linked to the account are hidden from the available-to-link list.
|
|
65
|
+
* @default true
|
|
66
|
+
*/
|
|
67
|
+
multipleAccountsPerProvider?: boolean
|
|
62
68
|
/**
|
|
63
69
|
* List of enabled social authentication providers
|
|
64
70
|
* @remarks `SocialProvider[]`
|