@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818if ( ! PlayFab . _internalSettings ) {
1919 PlayFab . _internalSettings = {
2020 sessionTicket : null ,
21- sdkVersion : "0.7.160118 " ,
21+ sdkVersion : "0.8.160125 " ,
2222 productionServerUrl : ".playfabapi.com" ,
2323 logicServerUrl : null ,
2424
@@ -322,6 +322,12 @@ PlayFab.ClientApi = {
322322 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GetPlayFabIDsFromGoogleIDs" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
323323 } ,
324324
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+
325331 GetPlayFabIDsFromPSNAccountIDs : function ( request , callback ) {
326332 if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
327333
@@ -824,6 +830,12 @@ PlayFab.ClientApi = {
824830 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GetCharacterLeaderboard" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
825831 } ,
826832
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+
827839 GetLeaderboardAroundCharacter : function ( request , callback ) {
828840 if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
829841
@@ -842,6 +854,11 @@ PlayFab.ClientApi = {
842854 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/GrantCharacterToUser" , request , "X-Authorization" , PlayFab . _internalSettings . sessionTicket , callback ) ;
843855 } ,
844856
857+ UpdateCharacterStatistics : function ( request , callback ) {
858+
859+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Client/UpdateCharacterStatistics" , request , null , null , callback ) ;
860+ } ,
861+
845862 GetCharacterData : function ( request , callback ) {
846863 if ( PlayFab . _internalSettings . sessionTicket == null ) throw "Must be logged in to call this method" ;
847864
0 commit comments