@@ -26,8 +26,6 @@ import type {
2626 ResetPasswordPhoneCodeAttempt ,
2727 ResetPasswordPhoneCodeFactor ,
2828 ResetPasswordPhoneCodeFactorConfig ,
29- SamlConfig ,
30- SamlFactor ,
3129 TOTPAttempt ,
3230 TOTPFactor ,
3331 Web3Attempt ,
@@ -53,7 +51,6 @@ import type {
5351 PhoneCodeStrategy ,
5452 ResetPasswordEmailCodeStrategy ,
5553 ResetPasswordPhoneCodeStrategy ,
56- SamlStrategy ,
5754 TicketStrategy ,
5855 TOTPStrategy ,
5956 Web3Strategy ,
@@ -83,7 +80,6 @@ export type SignInFirstFactor =
8380 | ResetPasswordEmailCodeFactor
8481 | Web3SignatureFactor
8582 | OauthFactor
86- | SamlFactor
8783 | EnterpriseSSOFactor ;
8884
8985export type SignInSecondFactor = PhoneCodeFactor | TOTPFactor | BackupCodeFactor | EmailCodeFactor | EmailLinkFactor ;
@@ -106,7 +102,6 @@ export type PrepareFirstFactorParams =
106102 | ResetPasswordPhoneCodeFactorConfig
107103 | ResetPasswordEmailCodeFactorConfig
108104 | OAuthConfig
109- | SamlConfig
110105 | EnterpriseSSOConfig ;
111106
112107export type AttemptFirstFactorParams =
@@ -124,7 +119,7 @@ export type AttemptSecondFactorParams = PhoneCodeAttempt | TOTPAttempt | BackupC
124119
125120export type SignInCreateParams = (
126121 | {
127- strategy : OAuthStrategy | SamlStrategy | EnterpriseSSOStrategy ;
122+ strategy : OAuthStrategy | EnterpriseSSOStrategy ;
128123 redirectUrl : string ;
129124 actionCompleteRedirectUrl ?: string ;
130125 identifier ?: string ;
@@ -195,5 +190,4 @@ export type SignInStrategy =
195190 | TOTPStrategy
196191 | BackupCodeStrategy
197192 | OAuthStrategy
198- | SamlStrategy
199193 | EnterpriseSSOStrategy ;
0 commit comments