File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 12.0.2
2+
3+ * Fixed realtime multiple subscription issues
4+
15## 12.0.1
26
37* Fixed parameters using enum types
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ class Account extends Service {
188188 ///
189189 /// Add an authenticator app to be used as an MFA factor. Verify the
190190 /// authenticator using the [verify
191- /// authenticator](/docs/references/cloud/client-web/account#verifyAuthenticator )
191+ /// authenticator](/docs/references/cloud/client-web/account#updateMfaAuthenticator )
192192 /// method.
193193 Future <models.MfaType > createMfaAuthenticator ({required enums.AuthenticatorType type}) async {
194194 final String apiPath = '/account/mfa/authenticators/{type}' .replaceAll ('{type}' , type.value);
@@ -209,8 +209,8 @@ class Account extends Service {
209209 /// Verify Authenticator
210210 ///
211211 /// Verify an authenticator app after adding it using the [add
212- /// authenticator](/docs/references/cloud/client-web/account#addAuthenticator )
213- /// method.
212+ /// authenticator](/docs/references/cloud/client-web/account#createMfaAuthenticator )
213+ /// method. add
214214 Future <models.User > updateMfaAuthenticator ({required enums.AuthenticatorType type, required String otp}) async {
215215 final String apiPath = '/account/mfa/authenticators/{type}' .replaceAll ('{type}' , type.value);
216216
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ enum Flag {
142142 palau (value: 'pw' ),
143143 papuaNewGuinea (value: 'pg' ),
144144 poland (value: 'pl' ),
145+ frenchPolynesia (value: 'pf' ),
145146 northKorea (value: 'kp' ),
146147 portugal (value: 'pt' ),
147148 paraguay (value: 'py' ),
You can’t perform that action at this time.
0 commit comments