@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
18
18
if ( ! PlayFab . _internalSettings ) {
19
19
PlayFab . _internalSettings = {
20
20
sessionTicket : null ,
21
- sdkVersion : "0.7.160118 " ,
21
+ sdkVersion : "0.8.160125 " ,
22
22
productionServerUrl : ".playfabapi.com" ,
23
23
logicServerUrl : null ,
24
24
@@ -322,6 +322,12 @@ PlayFab.ClientApi = {
322
322
PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GetPlayFabIDsFromGoogleIDs" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
323
323
} ,
324
324
325
+ GetPlayFabIDsFromKongregateIDs : function ( request , callback ) {
326
+ if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
327
+
328
+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GetPlayFabIDsFromKongregateIDs" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
329
+ } ,
330
+
325
331
GetPlayFabIDsFromPSNAccountIDs : function ( request , callback ) {
326
332
if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
327
333
@@ -824,6 +830,12 @@ PlayFab.ClientApi = {
824
830
PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GetCharacterLeaderboard" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
825
831
} ,
826
832
833
+ GetCharacterStatistics : function ( request , callback ) {
834
+ if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
835
+
836
+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GetCharacterStatistics" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
837
+ } ,
838
+
827
839
GetLeaderboardAroundCharacter : function ( request , callback ) {
828
840
if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
829
841
@@ -842,6 +854,11 @@ PlayFab.ClientApi = {
842
854
PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GrantCharacterToUser" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
843
855
} ,
844
856
857
+ UpdateCharacterStatistics : function ( request , callback ) {
858
+
859
+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/UpdateCharacterStatistics" , request , null , null , callback ) ;
860
+ } ,
861
+
845
862
GetCharacterData : function ( request , callback ) {
846
863
if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
847
864
0 commit comments