Skip to content

Commit 895c671

Browse files
Merge pull request #197 from appwrite/dev
fix changelog
2 parents 7186e87 + 3080973 commit 895c671

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 12.0.2
2+
3+
* Fixed realtime multiple subscription issues
4+
15
## 12.0.1
26

37
* Fixed parameters using enum types

lib/services/account.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

lib/src/enums/flag.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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'),

0 commit comments

Comments
 (0)