@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121if ( ! PlayFab . _internalSettings ) {
2222 PlayFab . _internalSettings = {
2323 entityToken : null ,
24- sdkVersion : "1.40.190219 " ,
24+ sdkVersion : "1.41.190304 " ,
2525 requestGetParams : {
26- sdk : "JavaScriptSDK-1.40.190219 "
26+ sdk : "JavaScriptSDK-1.41.190304 "
2727 } ,
2828 sessionTicket : null ,
2929 verticalName : null , // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156 }
157157}
158158
159- PlayFab . buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0 " ;
160- PlayFab . sdkVersion = "1.40.190219 " ;
159+ PlayFab . buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0 " ;
160+ PlayFab . sdkVersion = "1.41.190304 " ;
161161PlayFab . GenerateErrorReport = function ( error ) {
162162 if ( error == null )
163163 return "" ;
@@ -229,6 +229,11 @@ PlayFab.AdminApi = {
229229 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/CreateCloudScriptTask" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
230230 } ,
231231
232+ CreateOpenIdConnection : function ( request , callback , customData , extraHeaders ) {
233+ if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
234+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/CreateOpenIdConnection" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
235+ } ,
236+
232237 CreatePlayerSharedSecret : function ( request , callback , customData , extraHeaders ) {
233238 if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
234239 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/CreatePlayerSharedSecret" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
@@ -249,6 +254,11 @@ PlayFab.AdminApi = {
249254 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/DeleteMasterPlayerAccount" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
250255 } ,
251256
257+ DeleteOpenIdConnection : function ( request , callback , customData , extraHeaders ) {
258+ if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
259+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/DeleteOpenIdConnection" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
260+ } ,
261+
252262 DeletePlayer : function ( request , callback , customData , extraHeaders ) {
253263 if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
254264 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/DeletePlayer" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
@@ -489,6 +499,11 @@ PlayFab.AdminApi = {
489499 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/IncrementPlayerStatisticVersion" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
490500 } ,
491501
502+ ListOpenIdConnection : function ( request , callback , customData , extraHeaders ) {
503+ if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
504+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/ListOpenIdConnection" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
505+ } ,
506+
492507 ListServerBuilds : function ( request , callback , customData , extraHeaders ) {
493508 if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
494509 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/ListServerBuilds" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
@@ -639,6 +654,11 @@ PlayFab.AdminApi = {
639654 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/UpdateCloudScript" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
640655 } ,
641656
657+ UpdateOpenIdConnection : function ( request , callback , customData , extraHeaders ) {
658+ if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
659+ PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/UpdateOpenIdConnection" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
660+ } ,
661+
642662 UpdatePlayerSharedSecret : function ( request , callback , customData , extraHeaders ) {
643663 if ( ! PlayFab . settings . developerSecretKey ) throw PlayFab . _internalSettings . errorSecretKey ;
644664 PlayFab . _internalSettings . ExecuteRequest ( PlayFab . _internalSettings . GetServerUrl ( ) + "/Admin/UpdatePlayerSharedSecret" , request , "X-SecretKey" , PlayFab . settings . developerSecretKey , callback , customData , extraHeaders ) ;
0 commit comments