@@ -464,7 +464,7 @@ export namespace ManagedAuth {
464464 * If this field is associated with an MFA option, the type of that option (e.g.,
465465 * password field linked to "Enter password" option)
466466 */
467- linked_mfa_type ?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | null ;
467+ linked_mfa_type ?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch' | null ;
468468
469469 /**
470470 * Field placeholder
@@ -487,9 +487,11 @@ export namespace ManagedAuth {
487487 label : string ;
488488
489489 /**
490- * The MFA delivery method type (includes password for auth method selection pages)
490+ * The MFA delivery method type. Includes 'password' for auth method selection
491+ * pages and 'switch' for generic method-switcher links like "Use another method"
492+ * that do not name a specific method.
491493 */
492- type : 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' ;
494+ type : 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch' ;
493495
494496 /**
495497 * Additional instructions from the site
@@ -927,7 +929,7 @@ export namespace ConnectionFollowResponse {
927929 * If this field is associated with an MFA option, the type of that option (e.g.,
928930 * password field linked to "Enter password" option)
929931 */
930- linked_mfa_type ?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | null ;
932+ linked_mfa_type ?: 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch' | null ;
931933
932934 /**
933935 * Field placeholder
@@ -950,9 +952,11 @@ export namespace ConnectionFollowResponse {
950952 label : string ;
951953
952954 /**
953- * The MFA delivery method type (includes password for auth method selection pages)
955+ * The MFA delivery method type. Includes 'password' for auth method selection
956+ * pages and 'switch' for generic method-switcher links like "Use another method"
957+ * that do not name a specific method.
954958 */
955- type : 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' ;
959+ type : 'sms' | 'call' | 'email' | 'totp' | 'push' | 'password' | 'switch' ;
956960
957961 /**
958962 * Additional instructions from the site
0 commit comments