@@ -240,9 +240,6 @@ import Foundation
240
240
/// user was provided.
241
241
case nullUser = 17067
242
242
243
- /// Indicates that a Firebase Dynamic Link is not activated.
244
- case dynamicLinkNotActivated = 17068
245
-
246
243
/// Represents the error code for when the given provider id for a web operation is invalid.
247
244
case invalidProviderID = 17071
248
245
@@ -254,10 +251,6 @@ import Foundation
254
251
/// ID for an operation that does not support multi-tenancy.
255
252
case unsupportedTenantOperation = 17073
256
253
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
-
261
254
/// Indicates that the provided Firebase Hosting Link domain is not owned by the current project.
262
255
case invalidHostingLinkDomain = 17214
263
256
@@ -469,8 +462,6 @@ import Foundation
469
462
return kErrorNullUser
470
463
case . invalidProviderID:
471
464
return kErrorInvalidProviderID
472
- case . invalidDynamicLinkDomain:
473
- return kErrorInvalidDynamicLinkDomain
474
465
case . invalidHostingLinkDomain:
475
466
return kErrorInvalidHostingLinkDomain
476
467
case . webInternalError:
@@ -505,8 +496,6 @@ import Foundation
505
496
return FIRAuthErrorMessageUnsupportedFirstFactor
506
497
case . emailChangeNeedsVerification:
507
498
return FIRAuthErrorMessageEmailChangeNeedsVerification
508
- case . dynamicLinkNotActivated:
509
- return kErrorDynamicLinkNotActivated
510
499
case . rejectedCredential:
511
500
return kErrorRejectedCredential
512
501
case . missingOrInvalidNonce:
@@ -664,8 +653,6 @@ import Foundation
664
653
return " ERROR_NULL_USER "
665
654
case . invalidProviderID:
666
655
return " ERROR_INVALID_PROVIDER_ID "
667
- case . invalidDynamicLinkDomain:
668
- return " ERROR_INVALID_DYNAMIC_LINK_DOMAIN "
669
656
case . invalidHostingLinkDomain:
670
657
return " ERROR_INVALID_HOSTING_LINK_DOMAIN "
671
658
case . webInternalError:
@@ -700,8 +687,6 @@ import Foundation
700
687
return " ERROR_UNSUPPORTED_FIRST_FACTOR "
701
688
case . emailChangeNeedsVerification:
702
689
return " ERROR_EMAIL_CHANGE_NEEDS_VERIFICATION "
703
- case . dynamicLinkNotActivated:
704
- return " ERROR_DYNAMIC_LINK_NOT_ACTIVATED "
705
690
case . rejectedCredential:
706
691
return " ERROR_REJECTED_CREDENTIAL "
707
692
case . missingOrInvalidNonce:
0 commit comments