@databutton/firebase-types 1.91.17 → 1.91.19
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.
|
@@ -64,6 +64,8 @@ interface AccountConfigBase {
|
|
|
64
64
|
}
|
|
65
65
|
export interface SSOConfig extends AccountConfigBase {
|
|
66
66
|
type: ConfigTypes.SSO;
|
|
67
|
+
connectionName: string;
|
|
68
|
+
provider: "microsoft";
|
|
67
69
|
/**
|
|
68
70
|
* Organization ID from WorkOS
|
|
69
71
|
*/
|
|
@@ -72,6 +74,10 @@ export interface SSOConfig extends AccountConfigBase {
|
|
|
72
74
|
* Email domains
|
|
73
75
|
*/
|
|
74
76
|
emailDomains: string[];
|
|
77
|
+
/**
|
|
78
|
+
* Email address of the admin user for SSO configuration
|
|
79
|
+
*/
|
|
80
|
+
adminEmail: string;
|
|
75
81
|
/**
|
|
76
82
|
* Whether to automatically add new users to the account when they sign
|
|
77
83
|
* in with an email domain that is allowed by the SSO config
|