@@ -103,7 +103,6 @@ export class SignIn extends BaseResource implements SignInResource {
103103 private _status : SignInStatus | null = null ;
104104 supportedIdentifiers : SignInIdentifier [ ] = [ ] ;
105105 supportedFirstFactors : SignInFirstFactor [ ] | null = [ ] ;
106- untrustedFirstFactors : SignInFirstFactor [ ] | null = [ ] ;
107106 supportedSecondFactors : SignInSecondFactor [ ] | null = null ;
108107 firstFactorVerification : VerificationResource = new Verification ( null ) ;
109108 secondFactorVerification : VerificationResource = new Verification ( null ) ;
@@ -528,7 +527,6 @@ export class SignIn extends BaseResource implements SignInResource {
528527 this . supportedIdentifiers = data . supported_identifiers ;
529528 this . identifier = data . identifier ;
530529 this . supportedFirstFactors = deepSnakeToCamel ( data . supported_first_factors ) as SignInFirstFactor [ ] | null ;
531- this . untrustedFirstFactors = deepSnakeToCamel ( data . untrusted_first_factors ) as SignInFirstFactor [ ] | null ;
532530 this . supportedSecondFactors = deepSnakeToCamel ( data . supported_second_factors ) as SignInSecondFactor [ ] | null ;
533531 this . firstFactorVerification = new Verification ( data . first_factor_verification ) ;
534532 this . secondFactorVerification = new Verification ( data . second_factor_verification ) ;
@@ -547,7 +545,6 @@ export class SignIn extends BaseResource implements SignInResource {
547545 status : this . status || null ,
548546 supported_identifiers : this . supportedIdentifiers ,
549547 supported_first_factors : deepCamelToSnake ( this . supportedFirstFactors ) ,
550- untrusted_first_factors : deepCamelToSnake ( this . untrustedFirstFactors ) ,
551548 supported_second_factors : deepCamelToSnake ( this . supportedSecondFactors ) ,
552549 first_factor_verification : this . firstFactorVerification . __internal_toSnapshot ( ) ,
553550 second_factor_verification : this . secondFactorVerification . __internal_toSnapshot ( ) ,
0 commit comments