Skip to content

Commit ae5c16a

Browse files
author
Playfab Jenkins Bot
committed
Automated build from Jenkins
1 parent af5bdf0 commit ae5c16a

File tree

3 files changed

+0
-90
lines changed

3 files changed

+0
-90
lines changed

PlayFabSDK/PlayFabAdminApi.js

Lines changed: 0 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,6 @@ PlayFab.AdminApi = {
128128
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/UpdateUserTitleDisplayName", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
129129
},
130130

131-
CreatePlayerStatisticDefinition: function (request, callback) {
132-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
133-
134-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/CreatePlayerStatisticDefinition", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
135-
},
136-
137131
DeleteUsers: function (request, callback) {
138132
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
139133

@@ -146,18 +140,6 @@ PlayFab.AdminApi = {
146140
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetDataReport", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
147141
},
148142

149-
GetPlayerStatisticDefinitions: function (request, callback) {
150-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
151-
152-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetPlayerStatisticDefinitions", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
153-
},
154-
155-
GetPlayerStatisticVersions: function (request, callback) {
156-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
157-
158-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetPlayerStatisticVersions", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
159-
},
160-
161143
GetUserData: function (request, callback) {
162144
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
163145

@@ -194,36 +176,12 @@ PlayFab.AdminApi = {
194176
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetUserReadOnlyData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
195177
},
196178

197-
IncrementPlayerStatisticVersion: function (request, callback) {
198-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
199-
200-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/IncrementPlayerStatisticVersion", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
201-
},
202-
203-
RefundPurchase: function (request, callback) {
204-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
205-
206-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RefundPurchase", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
207-
},
208-
209179
ResetUserStatistics: function (request, callback) {
210180
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
211181

212182
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/ResetUserStatistics", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
213183
},
214184

215-
ResolvePurchaseDispute: function (request, callback) {
216-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
217-
218-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/ResolvePurchaseDispute", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
219-
},
220-
221-
UpdatePlayerStatisticDefinition: function (request, callback) {
222-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
223-
224-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/UpdatePlayerStatisticDefinition", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
225-
},
226-
227185
UpdateUserData: function (request, callback) {
228186
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
229187

PlayFabSDK/PlayFabClientApi.js

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -495,12 +495,6 @@ PlayFab.ClientApi = {
495495
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/GetLeaderboardAroundCurrentUser", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
496496
},
497497

498-
GetPlayerStatistics: function (request, callback) {
499-
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
500-
501-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/GetPlayerStatistics", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
502-
},
503-
504498
GetUserData: function (request, callback) {
505499
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
506500

@@ -531,12 +525,6 @@ PlayFab.ClientApi = {
531525
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/GetUserStatistics", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
532526
},
533527

534-
UpdatePlayerStatistics: function (request, callback) {
535-
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
536-
537-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/UpdatePlayerStatistics", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
538-
},
539-
540528
UpdateUserData: function (request, callback) {
541529
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
542530

PlayFabSDK/PlayFabServerApi.js

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,6 @@ PlayFab.ServerApi = {
134134
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/DeleteUsers", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
135135
},
136136

137-
GetFriendLeaderboard: function (request, callback) {
138-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
139-
140-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetFriendLeaderboard", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
141-
},
142-
143137
GetLeaderboard: function (request, callback) {
144138
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
145139

@@ -152,12 +146,6 @@ PlayFab.ServerApi = {
152146
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetLeaderboardAroundUser", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
153147
},
154148

155-
GetPlayerStatistics: function (request, callback) {
156-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
157-
158-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetPlayerStatistics", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
159-
},
160-
161149
GetUserData: function (request, callback) {
162150
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
163151

@@ -200,12 +188,6 @@ PlayFab.ServerApi = {
200188
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetUserStatistics", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
201189
},
202190

203-
UpdatePlayerStatistics: function (request, callback) {
204-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
205-
206-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/UpdatePlayerStatistics", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
207-
},
208-
209191
UpdateUserData: function (request, callback) {
210192
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
211193

@@ -380,24 +362,6 @@ PlayFab.ServerApi = {
380362
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/UpdateUserInventoryItemCustomData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
381363
},
382364

383-
AddFriend: function (request, callback) {
384-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
385-
386-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/AddFriend", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
387-
},
388-
389-
GetFriendsList: function (request, callback) {
390-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
391-
392-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetFriendsList", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
393-
},
394-
395-
RemoveFriend: function (request, callback) {
396-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
397-
398-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/RemoveFriend", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
399-
},
400-
401365
NotifyMatchmakerPlayerLeft: function (request, callback) {
402366
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
403367

0 commit comments

Comments
 (0)