diff --git a/BuiltIOBackend.podspec b/BuiltIOBackend.podspec index 513fbfc..e4ae052 100644 --- a/BuiltIOBackend.podspec +++ b/BuiltIOBackend.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BuiltIOBackend' -s.version = '3.1.3' +s.version = '3.2.0' s.summary = 'The BuiltIO Backend helps you to create apps quickly and effortlessly, taking care of all the backend requirements.' s.description = <<-DESC diff --git a/SDK/iOS/BuiltIO.framework/.DS_Store b/SDK/iOS/BuiltIO.framework/.DS_Store new file mode 100644 index 0000000..524fca1 Binary files /dev/null and b/SDK/iOS/BuiltIO.framework/.DS_Store differ diff --git a/SDK/iOS/BuiltIO.framework/BuiltIO b/SDK/iOS/BuiltIO.framework/BuiltIO index a0498f6..667aaa3 100644 Binary files a/SDK/iOS/BuiltIO.framework/BuiltIO and b/SDK/iOS/BuiltIO.framework/BuiltIO differ diff --git a/SDK/iOS/BuiltIO.framework/Headers/BuiltIO.h b/SDK/iOS/BuiltIO.framework/Headers/BuiltIO.h index 034fc1d..70f319c 100644 --- a/SDK/iOS/BuiltIO.framework/Headers/BuiltIO.h +++ b/SDK/iOS/BuiltIO.framework/Headers/BuiltIO.h @@ -6,7 +6,7 @@ // Copyright (c) 2013 raweng. All rights reserved. // -// sdk-version: 3.1.3 +// sdk-version: 3.2.0 #import diff --git a/SDK/iOS/BuiltIO.framework/Headers/BuiltUser.h b/SDK/iOS/BuiltIO.framework/Headers/BuiltUser.h index 6987e82..2640f72 100644 --- a/SDK/iOS/BuiltIO.framework/Headers/BuiltUser.h +++ b/SDK/iOS/BuiltIO.framework/Headers/BuiltUser.h @@ -348,7 +348,30 @@ Login BuiltUser asynchronously by providing email as ID and signup password andPassword:(NSString *)password completion:(BuiltRequestCompletionHandler)completionBlock; +/** + Login BuiltUser asynchronously by providing username as ID and signup password + + //Obj-C + BuiltUser *userObject = [builtApplication user]; + [userObject loginWithUsername:@"johncena" andPassword:@"password" completion:^(BuiltResponseType responseType, NSError *error) { + + }]; + + //Swift + var userObject:BuiltUser = builtApplication.user() + userObject.loginWithUsername("johncena", andPassword:"password") { (responseType, error!) -> Void in + + } + +@param username username that you used to signup. +@param password Your signup password. +@param completionBlock Completion block with params (BuiltResponseType responseType, id responseJSON, NSError *error) +*/ +- (void)loginWithUsername:(NSString *)username + andPassword:(NSString *)password + completion:(BuiltRequestCompletionHandler)completionBlock; + /** Asynchronously login using Google OAuth 2.0 access token @@ -369,6 +392,8 @@ Asynchronously login using Google OAuth 2.0 access token @param accessToken Google OAuth 2.0 Access Token @param completionBlock Completion block with params (BuiltResponseType responseType, id responseJSON, NSError *error) */ + + - (void)loginWithGoogleAuthAccessToken:(NSString *)accessToken completion:(BuiltRequestCompletionHandler)completionBlock; diff --git a/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeDirectory b/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeDirectory index 6f33dde..bebca21 100644 Binary files a/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeDirectory and b/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeDirectory differ diff --git a/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 b/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 index 7022799..e9090d6 100644 Binary files a/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 and b/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeResources b/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeResources index 01df7fc..e97ba44 100644 --- a/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeResources +++ b/SDK/iOS/BuiltIO.framework/_CodeSignature/CodeResources @@ -4,6 +4,10 @@ files + .DS_Store + + y8YKedYTNEpd6OPNN46oZQ2ix1M= + Headers/Built.h VwwAmdOlxcWyIoTvLMYsZiyAceA= @@ -66,7 +70,7 @@ Headers/BuiltIO.h - 9vcrF5tq//4R5EdofMYUFNnFPxA= + W6diQ92nZMwTbIpM9a46xbMS9Bc= Headers/BuiltIOLocalStore.h @@ -134,7 +138,7 @@ Headers/BuiltUser.h - u3VFg3v5ePVDllzZMKsUedAtXm8= + UyiIyP77TyYf9cQs6Ds06ggpEUw= Headers/BuiltUserPresence.h @@ -146,7 +150,7 @@ Info.plist - k+Zj+4yP1mDC4uSRPuCQJAPAQSg= + glVb1tpljoltAnDgiVmF7TdDglg= Modules/module.modulemap @@ -324,11 +328,11 @@ hash - 9vcrF5tq//4R5EdofMYUFNnFPxA= + W6diQ92nZMwTbIpM9a46xbMS9Bc= hash2 - rFnIs6j+4oSzzpHFbBRaPxPLFryTlGcO4H8UH7heihU= + g/7bu0QUXudU2bla/oNXQTiYRxDBZ/SteblObYba9xs= Headers/BuiltIOLocalStore.h @@ -511,11 +515,11 @@ hash - u3VFg3v5ePVDllzZMKsUedAtXm8= + UyiIyP77TyYf9cQs6Ds06ggpEUw= hash2 - km9QvA58faKxZ6iaw+pl5uPXv51FQmtWkSfXsEQ3e60= + /AMoBitikRAfYNHwvweSgkIkjLQj0LuH27daWJxTcBI= Headers/BuiltUserPresence.h diff --git a/SDK/watchOS/.DS_Store b/SDK/watchOS/.DS_Store index 5008ddf..723b6d9 100644 Binary files a/SDK/watchOS/.DS_Store and b/SDK/watchOS/.DS_Store differ diff --git a/SDK/watchOS/BuiltIO.framework/BuiltIO b/SDK/watchOS/BuiltIO.framework/BuiltIO index ffbc994..9b58368 100644 Binary files a/SDK/watchOS/BuiltIO.framework/BuiltIO and b/SDK/watchOS/BuiltIO.framework/BuiltIO differ diff --git a/SDK/watchOS/BuiltIO.framework/Headers/BuiltIO.h b/SDK/watchOS/BuiltIO.framework/Headers/BuiltIO.h index 6105d35..cba3c48 100644 --- a/SDK/watchOS/BuiltIO.framework/Headers/BuiltIO.h +++ b/SDK/watchOS/BuiltIO.framework/Headers/BuiltIO.h @@ -8,7 +8,7 @@ #import -// sdk-version: 3.1.3 +// sdk-version: 3.2.0 //! Project version number for BuiltIO-watchOS. FOUNDATION_EXPORT double BuiltIO_watchOSVersionNumber; diff --git a/SDK/watchOS/BuiltIO.framework/Headers/BuiltUser.h b/SDK/watchOS/BuiltIO.framework/Headers/BuiltUser.h index 6987e82..2640f72 100644 --- a/SDK/watchOS/BuiltIO.framework/Headers/BuiltUser.h +++ b/SDK/watchOS/BuiltIO.framework/Headers/BuiltUser.h @@ -348,7 +348,30 @@ Login BuiltUser asynchronously by providing email as ID and signup password andPassword:(NSString *)password completion:(BuiltRequestCompletionHandler)completionBlock; +/** + Login BuiltUser asynchronously by providing username as ID and signup password + + //Obj-C + BuiltUser *userObject = [builtApplication user]; + [userObject loginWithUsername:@"johncena" andPassword:@"password" completion:^(BuiltResponseType responseType, NSError *error) { + + }]; + + //Swift + var userObject:BuiltUser = builtApplication.user() + userObject.loginWithUsername("johncena", andPassword:"password") { (responseType, error!) -> Void in + + } + +@param username username that you used to signup. +@param password Your signup password. +@param completionBlock Completion block with params (BuiltResponseType responseType, id responseJSON, NSError *error) +*/ +- (void)loginWithUsername:(NSString *)username + andPassword:(NSString *)password + completion:(BuiltRequestCompletionHandler)completionBlock; + /** Asynchronously login using Google OAuth 2.0 access token @@ -369,6 +392,8 @@ Asynchronously login using Google OAuth 2.0 access token @param accessToken Google OAuth 2.0 Access Token @param completionBlock Completion block with params (BuiltResponseType responseType, id responseJSON, NSError *error) */ + + - (void)loginWithGoogleAuthAccessToken:(NSString *)accessToken completion:(BuiltRequestCompletionHandler)completionBlock; diff --git a/SDK/watchOS/BuiltIO.framework/Info.plist b/SDK/watchOS/BuiltIO.framework/Info.plist index 284ed44..ec279e3 100644 Binary files a/SDK/watchOS/BuiltIO.framework/Info.plist and b/SDK/watchOS/BuiltIO.framework/Info.plist differ diff --git a/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeDirectory b/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeDirectory index a248e8f..dfa7154 100644 Binary files a/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeDirectory and b/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeDirectory differ diff --git a/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 b/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 index 2a5bda6..b02b493 100644 Binary files a/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 and b/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeResources b/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeResources index 19ba4bb..cc3fcd6 100644 --- a/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeResources +++ b/SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeResources @@ -46,15 +46,15 @@ Headers/BuiltGroup.h - k9famjcRtw3vMlRDrl2V85ls9Xo= + B+Ur3rLzr9iFsO+ijj/ZwmsEs1M= Headers/BuiltGroupMultiple.h - 5+34Va1byqOdpKjl94UlDWGbX2k= + AuhUEx7HsHH3slbxW1o88z1dYqg= Headers/BuiltIO.h - reBaetwZgBdTSEnhzHqC22+RrmE= + 9301G7tIJ/9AyNSWCAlLDfpRUXQ= Headers/BuiltKeyStore.h @@ -66,7 +66,7 @@ Headers/BuiltObject.h - PYI+9S5Sj7ISIxweHVN2gsXpuH0= + BOxkIDGFzxZ2+tHXLwfHBxTTbRU= Headers/BuiltQuery.h @@ -86,7 +86,7 @@ Headers/BuiltUser.h - u3VFg3v5ePVDllzZMKsUedAtXm8= + UyiIyP77TyYf9cQs6Ds06ggpEUw= Headers/BuiltUserRoleMapper.h @@ -94,7 +94,7 @@ Info.plist - glFdJXtTRbSkuePohZd6LD8b4Bc= + to5bKU6w/rCkBWGZDYmb/yKmJIw= Modules/module.modulemap @@ -217,33 +217,33 @@ hash - k9famjcRtw3vMlRDrl2V85ls9Xo= + B+Ur3rLzr9iFsO+ijj/ZwmsEs1M= hash2 - GwLNYbV27m19exSvvlzzqomouH1tTzJBKUFvqv0adCg= + v2zLB2KOra3Q0UPakKkRyq0Z80gtuSZ9zAkB+rr2MTo= Headers/BuiltGroupMultiple.h hash - 5+34Va1byqOdpKjl94UlDWGbX2k= + AuhUEx7HsHH3slbxW1o88z1dYqg= hash2 - uMIDJ9JllkB5oCAQRAtsVFvsHr7ANDjMjlrM2oGLjD8= + TJWMCL8RxDEM98+x/KSBsPBu4N/2im6NScbwmpMOW8o= Headers/BuiltIO.h hash - reBaetwZgBdTSEnhzHqC22+RrmE= + 9301G7tIJ/9AyNSWCAlLDfpRUXQ= hash2 - JPq9iuJUgWZVTrn9eTwKVf6uwuMaImsZgue77FO3f0g= + DHZ5rroAnXd1oSO+93i7334VmHy3EFIZM12QwFD4Yro= Headers/BuiltKeyStore.h @@ -272,11 +272,11 @@ hash - PYI+9S5Sj7ISIxweHVN2gsXpuH0= + BOxkIDGFzxZ2+tHXLwfHBxTTbRU= hash2 - Xsl+HR2lBHp7aL0WlhPwzFSRuhNqnxwdwRaYFbvobQw= + RinuZB2g6h8EjyGyWX3WtBEuAUE4IXr4ubVj/GpDDWM= Headers/BuiltQuery.h @@ -327,11 +327,11 @@ hash - u3VFg3v5ePVDllzZMKsUedAtXm8= + UyiIyP77TyYf9cQs6Ds06ggpEUw= hash2 - km9QvA58faKxZ6iaw+pl5uPXv51FQmtWkSfXsEQ3e60= + /AMoBitikRAfYNHwvweSgkIkjLQj0LuH27daWJxTcBI= Headers/BuiltUserRoleMapper.h diff --git a/changelogs-ios.txt b/changelogs-ios.txt index 91e66c7..58f86c3 100644 --- a/changelogs-ios.txt +++ b/changelogs-ios.txt @@ -1,11 +1,23 @@ +Version: 3.2.0 +Date: 23-Nov-2017 + +New Features: + + * BuiltUser: + - Added method ‘loginWithUsername:andPassword:completion:()’ + +Bug Fixes: + + * BuiltUpload: + - fix issue while updating new file for existing file + +===================================================================================== Version: 3.1.3 Date: 9-Feb-2017 - NOTE: BuiltGroupMultiple class has been deprecated and will be removed in future release. - Bug Fixes: - - Fix issue while attempting to reconnect the server when realtime mode is enabled. + - Realtime issue fix while attempting to reconnect the server =====================================================================================