This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathEnums.cs
107 lines (104 loc) · 2.74 KB
/
Enums.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
using System;
using ObjCRuntime;
namespace Firebase.Auth
{
[Native]
public enum AuthApnsTokenType : long
{
Unknown,
Sandbox,
Production
}
[Native]
public enum ActionCodeOperation : long
{
Unknown = 0,
PasswordReset = 1,
VerifyEmail = 2,
RecoverEmail = 3,
EmailLink = 4,
VerifyAndChangeEmail = 5,
RevertSecondFactorAddition = 6
}
[Native]
public enum AuthErrorCode : long
{
InvalidCustomToken = 17000,
CustomTokenMismatch = 17002,
InvalidCredential = 17004,
UserDisabled = 17005,
OperationNotAllowed = 17006,
EmailAlreadyInUse = 17007,
InvalidEmail = 17008,
WrongPassword = 17009,
TooManyRequests = 17010,
UserNotFound = 17011,
AccountExistsWithDifferentCredential = 17012,
RequiresRecentLogin = 17014,
ProviderAlreadyLinked = 17015,
NoSuchProvider = 17016,
InvalidUserToken = 17017,
NetworkError = 17020,
UserTokenExpired = 17021,
InvalidAPIKey = 17023,
UserMismatch = 17024,
CredentialAlreadyInUse = 17025,
WeakPassword = 17026,
AppNotAuthorized = 17028,
ExpiredActionCode = 17029,
InvalidActionCode = 17030,
InvalidMessagePayload = 17031,
InvalidSender = 17032,
InvalidRecipientEmail = 17033,
MissingEmail = 17034,
MissingIosBundleID = 17036,
MissingAndroidPackageName = 17037,
UnauthorizedDomain = 17038,
InvalidContinueUri = 17039,
MissingContinueURI = 17040,
MissingPhoneNumber = 17041,
InvalidPhoneNumber = 17042,
MissingVerificationCode = 17043,
InvalidVerificationCode = 17044,
MissingVerificationID = 17045,
InvalidVerificationID = 17046,
MissingAppCredential = 17047,
InvalidAppCredential = 17048,
SessionExpired = 17051,
QuotaExceeded = 17052,
MissingAppToken = 17053,
NotificationNotForwarded = 17054,
AppNotVerified = 17055,
CaptchaCheckFailed = 17056,
WebContextAlreadyPresented = 17057,
WebContextCancelled = 17058,
AppVerificationUserInteractionFailure = 17059,
InvalidClientId = 17060,
WebNetworkRequestFailed = 17061,
WebInternalError = 17062,
WebSignInUserInteractionFailure = 17063,
LocalPlayerNotAuthenticated = 17066,
NullUser = 17067,
DynamicLinkNotActivated = 17068,
InvalidProviderId = 17071,
InvalidDynamicLinkDomain = 17074,
RejectedCredential = 17075,
GameKitNotLinked = 17076,
SecondFactorRequired = 17078,
MissingMultiFactorSession = 17081,
MissingMultiFactorInfo = 17082,
InvalidMultiFactorSession = 17083,
MultiFactorInfoNotFound = 17084,
AdminRestrictedOperation = 17085,
UnverifiedEmail = 17086,
SecondFactorAlreadyEnrolled = 17087,
MaximumSecondFactorCountExceeded = 17088,
UnsupportedFirstFactor = 17089,
EmailChangeNeedsVerification = 17090,
MissingClientIdentifier = 17993,
MissingOrInvalidNonce = 17094,
KeychainError = 17995,
InternalError = 17999,
MalformedJwt = 18000
}
}