File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
clerk-js/src/core/resources Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,6 @@ export class Session extends BaseResource implements SessionResource {
185185 emailAddressId : factor . emailAddressId ,
186186 enterpriseConnectionId : factor . enterpriseConnectionId ,
187187 redirectUrl : factor . redirectUrl ,
188- actionCompleteRedirectUrl : factor . actionCompleteRedirectUrl ,
189188 } as EnterpriseSSOConfig ;
190189 break ;
191190 default :
Original file line number Diff line number Diff line change @@ -356,7 +356,10 @@ export type SessionVerifyPrepareFirstFactorParams =
356356 | EmailCodeConfig
357357 | PhoneCodeConfig
358358 | PassKeyConfig
359- | EnterpriseSSOConfig ;
359+ /**
360+ * @experimental
361+ */
362+ | Omit < EnterpriseSSOConfig , 'action_complete_redirect_url' > ;
360363export type SessionVerifyAttemptFirstFactorParams =
361364 | EmailCodeAttempt
362365 | PhoneCodeAttempt
Original file line number Diff line number Diff line change @@ -55,5 +55,5 @@ export type SessionVerificationFirstFactor =
5555 | PhoneCodeFactor
5656 | PasswordFactor
5757 | PasskeyFactor
58- | EnterpriseSSOFactor ;
58+ | Omit < EnterpriseSSOFactor , 'action_complete_redirect_url' > ;
5959export type SessionVerificationSecondFactor = PhoneCodeFactor | TOTPFactor | BackupCodeFactor ;
You can’t perform that action at this time.
0 commit comments