@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818if ( ! PlayFab . _internalSettings ) {
1919 PlayFab . _internalSettings = {
2020 sessionTicket : null ,
21- sdkVersion : "0.20.160613 " ,
21+ sdkVersion : "0.21.160627 " ,
2222 buildIdentifier : "jbuild_0" ,
2323 productionServerUrl : ".playfabapi.com" ,
2424 logicServerUrl : null ,
@@ -292,6 +292,12 @@ PlayFab.AdminApi = {
292292 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/GetTitleData" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback ) ;
293293 } ,
294294
295+ GetTitleInternalData : function ( request , callback ) {
296+ if ( PlayFab . settings . developerSecretKey == null ) throw "Must have PlayFab.settings.developerSecretKey set to call this method" ;
297+
298+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/GetTitleInternalData" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback ) ;
299+ } ,
300+
295301 ListVirtualCurrencyTypes : function ( request , callback ) {
296302 if ( PlayFab . settings . developerSecretKey == null ) throw "Must have PlayFab.settings.developerSecretKey set to call this method" ;
297303
@@ -316,6 +322,12 @@ PlayFab.AdminApi = {
316322 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/SetTitleData" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback ) ;
317323 } ,
318324
325+ SetTitleInternalData : function ( request , callback ) {
326+ if ( PlayFab . settings . developerSecretKey == null ) throw "Must have PlayFab.settings.developerSecretKey set to call this method" ;
327+
328+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/SetTitleInternalData" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback ) ;
329+ } ,
330+
319331 SetupPushNotification : function ( request , callback ) {
320332 if ( PlayFab . settings . developerSecretKey == null ) throw "Must have PlayFab.settings.developerSecretKey set to call this method" ;
321333
0 commit comments