|
|
@@ -240,9 +240,6 @@ import Foundation
|
|
|
/// user was provided.
|
|
|
case nullUser = 17067
|
|
|
|
|
|
- /// Indicates that a Firebase Dynamic Link is not activated.
|
|
|
- case dynamicLinkNotActivated = 17068
|
|
|
-
|
|
|
/// Represents the error code for when the given provider id for a web operation is invalid.
|
|
|
case invalidProviderID = 17071
|
|
|
|
|
|
@@ -254,10 +251,6 @@ import Foundation
|
|
|
/// ID for an operation that does not support multi-tenancy.
|
|
|
case unsupportedTenantOperation = 17073
|
|
|
|
|
|
- /// Indicates that the Firebase Dynamic Link domain used is either not configured or is
|
|
|
- /// unauthorized for the current project.
|
|
|
- case invalidDynamicLinkDomain = 17074
|
|
|
-
|
|
|
/// Indicates that the provided Firebase Hosting Link domain is not owned by the current project.
|
|
|
case invalidHostingLinkDomain = 17214
|
|
|
|
|
|
@@ -469,8 +462,6 @@ import Foundation
|
|
|
return kErrorNullUser
|
|
|
case .invalidProviderID:
|
|
|
return kErrorInvalidProviderID
|
|
|
- case .invalidDynamicLinkDomain:
|
|
|
- return kErrorInvalidDynamicLinkDomain
|
|
|
case .invalidHostingLinkDomain:
|
|
|
return kErrorInvalidHostingLinkDomain
|
|
|
case .webInternalError:
|
|
|
@@ -505,8 +496,6 @@ import Foundation
|
|
|
return FIRAuthErrorMessageUnsupportedFirstFactor
|
|
|
case .emailChangeNeedsVerification:
|
|
|
return FIRAuthErrorMessageEmailChangeNeedsVerification
|
|
|
- case .dynamicLinkNotActivated:
|
|
|
- return kErrorDynamicLinkNotActivated
|
|
|
case .rejectedCredential:
|
|
|
return kErrorRejectedCredential
|
|
|
case .missingOrInvalidNonce:
|
|
|
@@ -664,8 +653,6 @@ import Foundation
|
|
|
return "ERROR_NULL_USER"
|
|
|
case .invalidProviderID:
|
|
|
return "ERROR_INVALID_PROVIDER_ID"
|
|
|
- case .invalidDynamicLinkDomain:
|
|
|
- return "ERROR_INVALID_DYNAMIC_LINK_DOMAIN"
|
|
|
case .invalidHostingLinkDomain:
|
|
|
return "ERROR_INVALID_HOSTING_LINK_DOMAIN"
|
|
|
case .webInternalError:
|
|
|
@@ -700,8 +687,6 @@ import Foundation
|
|
|
return "ERROR_UNSUPPORTED_FIRST_FACTOR"
|
|
|
case .emailChangeNeedsVerification:
|
|
|
return "ERROR_EMAIL_CHANGE_NEEDS_VERIFICATION"
|
|
|
- case .dynamicLinkNotActivated:
|
|
|
- return "ERROR_DYNAMIC_LINK_NOT_ACTIVATED"
|
|
|
case .rejectedCredential:
|
|
|
return "ERROR_REJECTED_CREDENTIAL"
|
|
|
case .missingOrInvalidNonce:
|