Skip to content

Commit

Permalink
version upgraded to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Priyanka Mistry committed Nov 28, 2017
1 parent d157cfb commit 0d88a33
Show file tree
Hide file tree
Showing 17 changed files with 95 additions and 29 deletions.
2 changes: 1 addition & 1 deletion BuiltIOBackend.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Binary file added SDK/iOS/BuiltIO.framework/.DS_Store
Binary file not shown.
Binary file modified SDK/iOS/BuiltIO.framework/BuiltIO
Binary file not shown.
2 changes: 1 addition & 1 deletion SDK/iOS/BuiltIO.framework/Headers/BuiltIO.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2013 raweng. All rights reserved.
//

// sdk-version: 3.1.3
// sdk-version: 3.2.0

#import <Foundation/Foundation.h>

Expand Down
25 changes: 25 additions & 0 deletions SDK/iOS/BuiltIO.framework/Headers/BuiltUser.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;

Expand Down
Binary file modified SDK/iOS/BuiltIO.framework/_CodeSignature/CodeDirectory
Binary file not shown.
Binary file modified SDK/iOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1
Binary file not shown.
18 changes: 11 additions & 7 deletions SDK/iOS/BuiltIO.framework/_CodeSignature/CodeResources
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
<dict>
<key>files</key>
<dict>
<key>.DS_Store</key>
<data>
y8YKedYTNEpd6OPNN46oZQ2ix1M=
</data>
<key>Headers/Built.h</key>
<data>
VwwAmdOlxcWyIoTvLMYsZiyAceA=
Expand Down Expand Up @@ -66,7 +70,7 @@
</data>
<key>Headers/BuiltIO.h</key>
<data>
9vcrF5tq//4R5EdofMYUFNnFPxA=
W6diQ92nZMwTbIpM9a46xbMS9Bc=
</data>
<key>Headers/BuiltIOLocalStore.h</key>
<data>
Expand Down Expand Up @@ -134,7 +138,7 @@
</data>
<key>Headers/BuiltUser.h</key>
<data>
u3VFg3v5ePVDllzZMKsUedAtXm8=
UyiIyP77TyYf9cQs6Ds06ggpEUw=
</data>
<key>Headers/BuiltUserPresence.h</key>
<data>
Expand All @@ -146,7 +150,7 @@
</data>
<key>Info.plist</key>
<data>
k+Zj+4yP1mDC4uSRPuCQJAPAQSg=
glVb1tpljoltAnDgiVmF7TdDglg=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -324,11 +328,11 @@
<dict>
<key>hash</key>
<data>
9vcrF5tq//4R5EdofMYUFNnFPxA=
W6diQ92nZMwTbIpM9a46xbMS9Bc=
</data>
<key>hash2</key>
<data>
rFnIs6j+4oSzzpHFbBRaPxPLFryTlGcO4H8UH7heihU=
g/7bu0QUXudU2bla/oNXQTiYRxDBZ/SteblObYba9xs=
</data>
</dict>
<key>Headers/BuiltIOLocalStore.h</key>
Expand Down Expand Up @@ -511,11 +515,11 @@
<dict>
<key>hash</key>
<data>
u3VFg3v5ePVDllzZMKsUedAtXm8=
UyiIyP77TyYf9cQs6Ds06ggpEUw=
</data>
<key>hash2</key>
<data>
km9QvA58faKxZ6iaw+pl5uPXv51FQmtWkSfXsEQ3e60=
/AMoBitikRAfYNHwvweSgkIkjLQj0LuH27daWJxTcBI=
</data>
</dict>
<key>Headers/BuiltUserPresence.h</key>
Expand Down
Binary file modified SDK/watchOS/.DS_Store
Binary file not shown.
Binary file modified SDK/watchOS/BuiltIO.framework/BuiltIO
Binary file not shown.
2 changes: 1 addition & 1 deletion SDK/watchOS/BuiltIO.framework/Headers/BuiltIO.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#import <WatchKit/WatchKit.h>

// sdk-version: 3.1.3
// sdk-version: 3.2.0

//! Project version number for BuiltIO-watchOS.
FOUNDATION_EXPORT double BuiltIO_watchOSVersionNumber;
Expand Down
25 changes: 25 additions & 0 deletions SDK/watchOS/BuiltIO.framework/Headers/BuiltUser.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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;

Expand Down
Binary file modified SDK/watchOS/BuiltIO.framework/Info.plist
Binary file not shown.
Binary file modified SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeDirectory
Binary file not shown.
Binary file modified SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeRequirements-1
Binary file not shown.
32 changes: 16 additions & 16 deletions SDK/watchOS/BuiltIO.framework/_CodeSignature/CodeResources
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@
</data>
<key>Headers/BuiltGroup.h</key>
<data>
k9famjcRtw3vMlRDrl2V85ls9Xo=
B+Ur3rLzr9iFsO+ijj/ZwmsEs1M=
</data>
<key>Headers/BuiltGroupMultiple.h</key>
<data>
5+34Va1byqOdpKjl94UlDWGbX2k=
AuhUEx7HsHH3slbxW1o88z1dYqg=
</data>
<key>Headers/BuiltIO.h</key>
<data>
reBaetwZgBdTSEnhzHqC22+RrmE=
9301G7tIJ/9AyNSWCAlLDfpRUXQ=
</data>
<key>Headers/BuiltKeyStore.h</key>
<data>
Expand All @@ -66,7 +66,7 @@
</data>
<key>Headers/BuiltObject.h</key>
<data>
PYI+9S5Sj7ISIxweHVN2gsXpuH0=
BOxkIDGFzxZ2+tHXLwfHBxTTbRU=
</data>
<key>Headers/BuiltQuery.h</key>
<data>
Expand All @@ -86,15 +86,15 @@
</data>
<key>Headers/BuiltUser.h</key>
<data>
u3VFg3v5ePVDllzZMKsUedAtXm8=
UyiIyP77TyYf9cQs6Ds06ggpEUw=
</data>
<key>Headers/BuiltUserRoleMapper.h</key>
<data>
QNsMcH1PG7tDBXTPANvycJ3epkc=
</data>
<key>Info.plist</key>
<data>
glFdJXtTRbSkuePohZd6LD8b4Bc=
to5bKU6w/rCkBWGZDYmb/yKmJIw=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -217,33 +217,33 @@
<dict>
<key>hash</key>
<data>
k9famjcRtw3vMlRDrl2V85ls9Xo=
B+Ur3rLzr9iFsO+ijj/ZwmsEs1M=
</data>
<key>hash2</key>
<data>
GwLNYbV27m19exSvvlzzqomouH1tTzJBKUFvqv0adCg=
v2zLB2KOra3Q0UPakKkRyq0Z80gtuSZ9zAkB+rr2MTo=
</data>
</dict>
<key>Headers/BuiltGroupMultiple.h</key>
<dict>
<key>hash</key>
<data>
5+34Va1byqOdpKjl94UlDWGbX2k=
AuhUEx7HsHH3slbxW1o88z1dYqg=
</data>
<key>hash2</key>
<data>
uMIDJ9JllkB5oCAQRAtsVFvsHr7ANDjMjlrM2oGLjD8=
TJWMCL8RxDEM98+x/KSBsPBu4N/2im6NScbwmpMOW8o=
</data>
</dict>
<key>Headers/BuiltIO.h</key>
<dict>
<key>hash</key>
<data>
reBaetwZgBdTSEnhzHqC22+RrmE=
9301G7tIJ/9AyNSWCAlLDfpRUXQ=
</data>
<key>hash2</key>
<data>
JPq9iuJUgWZVTrn9eTwKVf6uwuMaImsZgue77FO3f0g=
DHZ5rroAnXd1oSO+93i7334VmHy3EFIZM12QwFD4Yro=
</data>
</dict>
<key>Headers/BuiltKeyStore.h</key>
Expand Down Expand Up @@ -272,11 +272,11 @@
<dict>
<key>hash</key>
<data>
PYI+9S5Sj7ISIxweHVN2gsXpuH0=
BOxkIDGFzxZ2+tHXLwfHBxTTbRU=
</data>
<key>hash2</key>
<data>
Xsl+HR2lBHp7aL0WlhPwzFSRuhNqnxwdwRaYFbvobQw=
RinuZB2g6h8EjyGyWX3WtBEuAUE4IXr4ubVj/GpDDWM=
</data>
</dict>
<key>Headers/BuiltQuery.h</key>
Expand Down Expand Up @@ -327,11 +327,11 @@
<dict>
<key>hash</key>
<data>
u3VFg3v5ePVDllzZMKsUedAtXm8=
UyiIyP77TyYf9cQs6Ds06ggpEUw=
</data>
<key>hash2</key>
<data>
km9QvA58faKxZ6iaw+pl5uPXv51FQmtWkSfXsEQ3e60=
/AMoBitikRAfYNHwvweSgkIkjLQj0LuH27daWJxTcBI=
</data>
</dict>
<key>Headers/BuiltUserRoleMapper.h</key>
Expand Down
18 changes: 15 additions & 3 deletions changelogs-ios.txt
Original file line number Diff line number Diff line change
@@ -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

=====================================================================================

Expand Down

0 comments on commit 0d88a33

Please sign in to comment.