@@ -240,9 +240,6 @@ import Foundation
240240 /// user was provided.
241241 case nullUser = 17067
242242
243- /// Indicates that a Firebase Dynamic Link is not activated.
244- case dynamicLinkNotActivated = 17068
245-
246243 /// Represents the error code for when the given provider id for a web operation is invalid.
247244 case invalidProviderID = 17071
248245
@@ -254,10 +251,6 @@ import Foundation
254251 /// ID for an operation that does not support multi-tenancy.
255252 case unsupportedTenantOperation = 17073
256253
257- /// Indicates that the Firebase Dynamic Link domain used is either not configured or is
258- /// unauthorized for the current project.
259- case invalidDynamicLinkDomain = 17074
260-
261254 /// Indicates that the provided Firebase Hosting Link domain is not owned by the current project.
262255 case invalidHostingLinkDomain = 17214
263256
@@ -469,8 +462,6 @@ import Foundation
469462 return kErrorNullUser
470463 case . invalidProviderID:
471464 return kErrorInvalidProviderID
472- case . invalidDynamicLinkDomain:
473- return kErrorInvalidDynamicLinkDomain
474465 case . invalidHostingLinkDomain:
475466 return kErrorInvalidHostingLinkDomain
476467 case . webInternalError:
@@ -505,8 +496,6 @@ import Foundation
505496 return FIRAuthErrorMessageUnsupportedFirstFactor
506497 case . emailChangeNeedsVerification:
507498 return FIRAuthErrorMessageEmailChangeNeedsVerification
508- case . dynamicLinkNotActivated:
509- return kErrorDynamicLinkNotActivated
510499 case . rejectedCredential:
511500 return kErrorRejectedCredential
512501 case . missingOrInvalidNonce:
@@ -664,8 +653,6 @@ import Foundation
664653 return " ERROR_NULL_USER "
665654 case . invalidProviderID:
666655 return " ERROR_INVALID_PROVIDER_ID "
667- case . invalidDynamicLinkDomain:
668- return " ERROR_INVALID_DYNAMIC_LINK_DOMAIN "
669656 case . invalidHostingLinkDomain:
670657 return " ERROR_INVALID_HOSTING_LINK_DOMAIN "
671658 case . webInternalError:
@@ -700,8 +687,6 @@ import Foundation
700687 return " ERROR_UNSUPPORTED_FIRST_FACTOR "
701688 case . emailChangeNeedsVerification:
702689 return " ERROR_EMAIL_CHANGE_NEEDS_VERIFICATION "
703- case . dynamicLinkNotActivated:
704- return " ERROR_DYNAMIC_LINK_NOT_ACTIVATED "
705690 case . rejectedCredential:
706691 return " ERROR_REJECTED_CREDENTIAL "
707692 case . missingOrInvalidNonce:
0 commit comments