Skip to content

Commit 1045db0

Browse files
author
Playfab Jenkins Bot
committed
Automated build from Jenkins
1 parent a9de6ef commit 1045db0

File tree

3 files changed

+30
-30
lines changed

3 files changed

+30
-30
lines changed

PlayFabSDK/PlayFabAdminApi.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,12 @@ PlayFab.AdminApi = {
266266
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetCatalogItems", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
267267
},
268268

269+
GetPublisherData: function (request, callback) {
270+
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
271+
272+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetPublisherData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
273+
},
274+
269275
GetRandomResultTables: function (request, callback) {
270276
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
271277

@@ -416,12 +422,6 @@ PlayFab.AdminApi = {
416422
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RemoveServerBuild", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
417423
},
418424

419-
GetPublisherData: function (request, callback) {
420-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
421-
422-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetPublisherData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
423-
},
424-
425425
SetPublisherData: function (request, callback) {
426426
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
427427

PlayFabSDK/PlayFabClientApi.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,12 @@ PlayFab.ClientApi = {
360360
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/LinkSteamAccount", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
361361
},
362362

363+
ReportPlayer: function (request, callback) {
364+
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
365+
366+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/ReportPlayer", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
367+
},
368+
363369
SendAccountRecoveryEmail: function (request, callback) {
364370

365371
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/SendAccountRecoveryEmail", request, null, null, callback);
@@ -527,6 +533,12 @@ PlayFab.ClientApi = {
527533
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/GetCatalogItems", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
528534
},
529535

536+
GetPublisherData: function (request, callback) {
537+
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
538+
539+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/GetPublisherData", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
540+
},
541+
530542
GetStoreItems: function (request, callback) {
531543
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
532544

@@ -599,12 +611,6 @@ PlayFab.ClientApi = {
599611
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/RedeemCoupon", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
600612
},
601613

602-
ReportPlayer: function (request, callback) {
603-
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
604-
605-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/ReportPlayer", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
606-
},
607-
608614
StartPurchase: function (request, callback) {
609615
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
610616

@@ -725,12 +731,6 @@ PlayFab.ClientApi = {
725731
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/CreateSharedGroup", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
726732
},
727733

728-
GetPublisherData: function (request, callback) {
729-
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
730-
731-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Client/GetPublisherData", request, "X-Authorization", PlayFab._internalSettings.sessionTicket, callback);
732-
},
733-
734734
GetSharedGroupData: function (request, callback) {
735735
if (PlayFab._internalSettings.sessionTicket == null) throw "Must be logged in to call this method";
736736

PlayFabSDK/PlayFabServerApi.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,12 @@ PlayFab.ServerApi = {
260260
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetCatalogItems", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
261261
},
262262

263+
GetPublisherData: function (request, callback) {
264+
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
265+
266+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetPublisherData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
267+
},
268+
263269
GetTitleData: function (request, callback) {
264270
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
265271

@@ -278,6 +284,12 @@ PlayFab.ServerApi = {
278284
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetTitleNews", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
279285
},
280286

287+
SetPublisherData: function (request, callback) {
288+
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
289+
290+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/SetPublisherData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
291+
},
292+
281293
SetTitleData: function (request, callback) {
282294
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
283295

@@ -452,12 +464,6 @@ PlayFab.ServerApi = {
452464
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/DeleteSharedGroup", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
453465
},
454466

455-
GetPublisherData: function (request, callback) {
456-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
457-
458-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/GetPublisherData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
459-
},
460-
461467
GetSharedGroupData: function (request, callback) {
462468
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
463469

@@ -470,12 +476,6 @@ PlayFab.ServerApi = {
470476
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/RemoveSharedGroupMembers", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
471477
},
472478

473-
SetPublisherData: function (request, callback) {
474-
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
475-
476-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/SetPublisherData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
477-
},
478-
479479
UpdateSharedGroupData: function (request, callback) {
480480
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
481481

0 commit comments

Comments
 (0)