From 6994ec11067c9780a18d4eba786dced696d666aa Mon Sep 17 00:00:00 2001 From: Playfab Jenkins Bot Date: Tue, 16 Feb 2016 19:00:13 +0000 Subject: [PATCH 1/5] Automated build from Jenkins --- PlayFabSDK/PlayFabServerApi.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/PlayFabSDK/PlayFabServerApi.js b/PlayFabSDK/PlayFabServerApi.js index effad36a..e1d21232 100644 --- a/PlayFabSDK/PlayFabServerApi.js +++ b/PlayFabSDK/PlayFabServerApi.js @@ -116,6 +116,12 @@ PlayFab.ServerApi = { PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetPlayFabIDsFromFacebookIDs", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); }, + GetPlayFabIDsFromSteamIDs: function (request, callback) { + if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; + + PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetPlayFabIDsFromSteamIDs", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); + }, + GetUserAccountInfo: function (request, callback) { if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; From 2fa5dcf1fa08ac46254556128c8ed3ea8cb84801 Mon Sep 17 00:00:00 2001 From: Playfab Jenkins Bot Date: Tue, 16 Feb 2016 20:22:35 +0000 Subject: [PATCH 2/5] Automated build from Jenkins --- PlayFabSDK/PlayFabServerApi.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/PlayFabSDK/PlayFabServerApi.js b/PlayFabSDK/PlayFabServerApi.js index e1d21232..f853b381 100644 --- a/PlayFabSDK/PlayFabServerApi.js +++ b/PlayFabSDK/PlayFabServerApi.js @@ -152,6 +152,12 @@ PlayFab.ServerApi = { PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetLeaderboardAroundUser", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); }, + GetPlayerStatistics: function (request, callback) { + if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; + + PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetPlayerStatistics", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); + }, + GetUserData: function (request, callback) { if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; @@ -194,6 +200,12 @@ PlayFab.ServerApi = { PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetUserStatistics", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); }, + UpdatePlayerStatistics: function (request, callback) { + if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; + + PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/UpdatePlayerStatistics", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); + }, + UpdateUserData: function (request, callback) { if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; From 9f2cc042b69a442d56baca04b27e9f4f414a76c3 Mon Sep 17 00:00:00 2001 From: Playfab Jenkins Bot Date: Wed, 17 Feb 2016 18:57:15 +0000 Subject: [PATCH 3/5] Automated build from Jenkins --- PlayFabSDK/PlayFabServerApi.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/PlayFabSDK/PlayFabServerApi.js b/PlayFabSDK/PlayFabServerApi.js index f853b381..13a17e37 100644 --- a/PlayFabSDK/PlayFabServerApi.js +++ b/PlayFabSDK/PlayFabServerApi.js @@ -476,6 +476,18 @@ PlayFab.ServerApi = { PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/UpdateSharedGroupData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); }, + GetCloudScriptUrl: function (request, callback) { + if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; + + PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetCloudScriptUrl", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); + }, + + RunServerCloudScript: function (request, callback) { + if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; + + PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/RunServerCloudScript", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); + }, + GetContentDownloadUrl: function (request, callback) { if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; From 88c207d65c366c343223b1a6c35559f776241db7 Mon Sep 17 00:00:00 2001 From: Playfab Jenkins Bot Date: Wed, 17 Feb 2016 23:35:26 +0000 Subject: [PATCH 4/5] Automated build from Jenkins --- PlayFabSDK/PlayFabServerApi.js | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/PlayFabSDK/PlayFabServerApi.js b/PlayFabSDK/PlayFabServerApi.js index 13a17e37..f853b381 100644 --- a/PlayFabSDK/PlayFabServerApi.js +++ b/PlayFabSDK/PlayFabServerApi.js @@ -476,18 +476,6 @@ PlayFab.ServerApi = { PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/UpdateSharedGroupData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); }, - GetCloudScriptUrl: function (request, callback) { - if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; - - PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetCloudScriptUrl", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); - }, - - RunServerCloudScript: function (request, callback) { - if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; - - PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/RunServerCloudScript", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback); - }, - GetContentDownloadUrl: function (request, callback) { if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method"; From 0c44c08080efd8878f16e3d26c1afa78932e6de9 Mon Sep 17 00:00:00 2001 From: Playfab Jenkins Bot Date: Mon, 22 Feb 2016 17:14:54 +0000 Subject: [PATCH 5/5] Automated build from Jenkins --- PlayFabSDK/PlayFabAdminApi.js | 2 +- PlayFabSDK/PlayFabClientApi.js | 2 +- PlayFabSDK/PlayFabMatchmakerApi.js | 2 +- PlayFabSDK/PlayFabServerApi.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/PlayFabSDK/PlayFabAdminApi.js b/PlayFabSDK/PlayFabAdminApi.js index aa4eb1fb..567d289f 100644 --- a/PlayFabSDK/PlayFabAdminApi.js +++ b/PlayFabSDK/PlayFabAdminApi.js @@ -18,7 +18,7 @@ if(!PlayFab.settings) { if(!PlayFab._internalSettings) { PlayFab._internalSettings = { sessionTicket: null, - sdkVersion: "0.10.160215", + sdkVersion: "0.11.160222", productionServerUrl: ".playfabapi.com", logicServerUrl: null, diff --git a/PlayFabSDK/PlayFabClientApi.js b/PlayFabSDK/PlayFabClientApi.js index 8b4f69cc..2ad129e4 100644 --- a/PlayFabSDK/PlayFabClientApi.js +++ b/PlayFabSDK/PlayFabClientApi.js @@ -18,7 +18,7 @@ if(!PlayFab.settings) { if(!PlayFab._internalSettings) { PlayFab._internalSettings = { sessionTicket: null, - sdkVersion: "0.10.160215", + sdkVersion: "0.11.160222", productionServerUrl: ".playfabapi.com", logicServerUrl: null, diff --git a/PlayFabSDK/PlayFabMatchmakerApi.js b/PlayFabSDK/PlayFabMatchmakerApi.js index add78535..8d654cd8 100644 --- a/PlayFabSDK/PlayFabMatchmakerApi.js +++ b/PlayFabSDK/PlayFabMatchmakerApi.js @@ -18,7 +18,7 @@ if(!PlayFab.settings) { if(!PlayFab._internalSettings) { PlayFab._internalSettings = { sessionTicket: null, - sdkVersion: "0.10.160215", + sdkVersion: "0.11.160222", productionServerUrl: ".playfabapi.com", logicServerUrl: null, diff --git a/PlayFabSDK/PlayFabServerApi.js b/PlayFabSDK/PlayFabServerApi.js index f853b381..61c2cabc 100644 --- a/PlayFabSDK/PlayFabServerApi.js +++ b/PlayFabSDK/PlayFabServerApi.js @@ -18,7 +18,7 @@ if(!PlayFab.settings) { if(!PlayFab._internalSettings) { PlayFab._internalSettings = { sessionTicket: null, - sdkVersion: "0.10.160215", + sdkVersion: "0.11.160222", productionServerUrl: ".playfabapi.com", logicServerUrl: null,