djangoflow_auth 0.2.1+3 
djangoflow_auth: ^0.2.1+3 copied to clipboard
djangoflow_auth is your ultimate Flutter authentication companion, packed with Djangoflow API supports.
0.2.1+1 #
- REFACTOR: update 
SocialTokenObtainProviderEnum providertoProviderEnum. (f6685e40) - REFACTOR: rename 
loginWithOTPtologinWithOTP. (b7aa9dd3) - REFACTOR: requestOtp now takes 
OTPObtainRequestinstead of only email. (bbe91299) - REFACTOR: renamed 
registrationWithEmailtoregisterOrInviteUser. (746a1c3d) - DOCS: update 
SocialTokenObtainProviderEnum providertoProviderEnum. (0c231686) - DOCS: update method documentation. (0988879c)
 
0.2.0+1 #
0.2.0 #
- Updated 
djangoflow_openapidepdendency - Breaking Changes Changed 
ProviderEnumtoSocialTokenObtainProviderEnum 
0.1.1 #
- Added example URL
 
0.1.0 #
- Removed implementations of SocialLogin support from djangoflow_auth, but they are now in djangoflow_auth_google, djangoflow_auth_facebook, djangoflow_auth_apple, djangoflow_auth_discord.
 - Added 
SocialLoginListExtensions 
Breaking Changes
// Before
abstract class SocialLogin<R> {
  /// The name of the provider
  final ProviderEnum type;
  //...
}
// After
abstract class SocialLogin<R> {
  /// Type of SocialLogin
  final SocialLoginType type;
0.0.1 #
We are excited to announce the initial release of djangoflow_auth!
Added
- Initial release of the 
djangoflow_authFlutter package. - Support for Google, Facebook, Apple, and Discord social logins.
 - Integration with 
bloc,dio, andhydrated_blocfor handling authentication. - Example code snippets showcasing usage of different social login providers.