@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121if ( ! PlayFab . _internalSettings ) {
2222 PlayFab . _internalSettings = {
2323 entityToken : null ,
24- sdkVersion : "1.59.200121 " ,
24+ sdkVersion : "1.60.200218 " ,
2525 requestGetParams : {
26- sdk : "JavaScriptSDK-1.59.200121 "
26+ sdk : "JavaScriptSDK-1.60.200218 "
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231 }
232232}
233233
234- PlayFab . buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1 " ;
235- PlayFab . sdkVersion = "1.59.200121 " ;
234+ PlayFab . buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0 " ;
235+ PlayFab . sdkVersion = "1.60.200218 " ;
236236PlayFab . GenerateErrorReport = function ( error ) {
237237 if ( error == null )
238238 return "" ;
@@ -252,6 +252,50 @@ PlayFab.CloudScriptApi = {
252252 ExecuteEntityCloudScript : function ( request , callback , customData , extraHeaders ) {
253253 return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/ExecuteEntityCloudScript" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
254254 } ,
255+
256+ ExecuteFunction : function ( request , callback , customData , extraHeaders ) {
257+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/ExecuteFunction" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
258+ } ,
259+
260+ ListFunctions : function ( request , callback , customData , extraHeaders ) {
261+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/ListFunctions" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
262+ } ,
263+
264+ ListHttpFunctions : function ( request , callback , customData , extraHeaders ) {
265+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/ListHttpFunctions" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
266+ } ,
267+
268+ ListQueuedFunctions : function ( request , callback , customData , extraHeaders ) {
269+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/ListQueuedFunctions" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
270+ } ,
271+
272+ PostFunctionResultForEntityTriggeredAction : function ( request , callback , customData , extraHeaders ) {
273+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/PostFunctionResultForEntityTriggeredAction" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
274+ } ,
275+
276+ PostFunctionResultForFunctionExecution : function ( request , callback , customData , extraHeaders ) {
277+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/PostFunctionResultForFunctionExecution" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
278+ } ,
279+
280+ PostFunctionResultForPlayerTriggeredAction : function ( request , callback , customData , extraHeaders ) {
281+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/PostFunctionResultForPlayerTriggeredAction" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
282+ } ,
283+
284+ PostFunctionResultForScheduledTask : function ( request , callback , customData , extraHeaders ) {
285+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/PostFunctionResultForScheduledTask" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
286+ } ,
287+
288+ RegisterHttpFunction : function ( request , callback , customData , extraHeaders ) {
289+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/RegisterHttpFunction" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
290+ } ,
291+
292+ RegisterQueuedFunction : function ( request , callback , customData , extraHeaders ) {
293+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/RegisterQueuedFunction" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
294+ } ,
295+
296+ UnregisterFunction : function ( request , callback , customData , extraHeaders ) {
297+ return PlayFab . _internalSettings . ExecuteRequestWrapper ( "/CloudScript/UnregisterFunction" , request , "X-EntityToken" , callback , customData , extraHeaders ) ;
298+ } ,
255299} ;
256300
257301var PlayFabCloudScriptSDK = PlayFab . CloudScriptApi ;
0 commit comments