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
+
1
5
## 12.0.1
2
6
3
7
* Fixed parameters using enum types
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ class Account extends Service {
188
188
///
189
189
/// Add an authenticator app to be used as an MFA factor. Verify the
190
190
/// authenticator using the [verify
191
- /// authenticator](/docs/references/cloud/client-web/account#verifyAuthenticator )
191
+ /// authenticator](/docs/references/cloud/client-web/account#updateMfaAuthenticator )
192
192
/// method.
193
193
Future <models.MfaType > createMfaAuthenticator ({required enums.AuthenticatorType type}) async {
194
194
final String apiPath = '/account/mfa/authenticators/{type}' .replaceAll ('{type}' , type.value);
@@ -209,8 +209,8 @@ class Account extends Service {
209
209
/// Verify Authenticator
210
210
///
211
211
/// 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
214
214
Future <models.User > updateMfaAuthenticator ({required enums.AuthenticatorType type, required String otp}) async {
215
215
final String apiPath = '/account/mfa/authenticators/{type}' .replaceAll ('{type}' , type.value);
216
216
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ enum Flag {
142
142
palau (value: 'pw' ),
143
143
papuaNewGuinea (value: 'pg' ),
144
144
poland (value: 'pl' ),
145
+ frenchPolynesia (value: 'pf' ),
145
146
northKorea (value: 'kp' ),
146
147
portugal (value: 'pt' ),
147
148
paraguay (value: 'py' ),
You can’t perform that action at this time.
0 commit comments