Skip to content

Commit cf67137

Browse files
author
PlayFabJenkinsBot
committed
https://api.playfab.com/releaseNotes/#180529
2 parents 0f1cf6c + 966afc9 commit cf67137

23 files changed

+1941
-1697
lines changed

PlayFabSdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "playfab-web-sdk",
3-
"version": "1.21.180507",
3+
"version": "1.22.180529",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.21.180507",
24+
sdkVersion: "1.22.180529",
2525
sessionTicket: null,
2626
productionServerUrl: ".playfabapi.com",
2727
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -126,7 +126,7 @@ if(!PlayFab._internalSettings) {
126126
}
127127

128128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
129-
PlayFab.sdkVersion = "1.21.180507";
129+
PlayFab.sdkVersion = "1.22.180529";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";
@@ -208,6 +208,11 @@ PlayFab.AdminApi = {
208208
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/DeleteContent", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
209209
},
210210

211+
DeleteMasterPlayerAccount: function (request, callback, customData, extraHeaders) {
212+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
213+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/DeleteMasterPlayerAccount", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
214+
},
215+
211216
DeletePlayer: function (request, callback, customData, extraHeaders) {
212217
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
213218
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/DeletePlayer", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -233,6 +238,11 @@ PlayFab.AdminApi = {
233238
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/DeleteTitle", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
234239
},
235240

241+
ExportMasterPlayerData: function (request, callback, customData, extraHeaders) {
242+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
243+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/ExportMasterPlayerData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
244+
},
245+
236246
GetActionsOnPlayersInSegmentTaskInstance: function (request, callback, customData, extraHeaders) {
237247
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
238248
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetActionsOnPlayersInSegmentTaskInstance", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -288,6 +298,11 @@ PlayFab.AdminApi = {
288298
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetMatchmakerGameModes", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
289299
},
290300

301+
GetPlayedTitleList: function (request, callback, customData, extraHeaders) {
302+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
303+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetPlayedTitleList", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
304+
},
305+
291306
GetPlayerIdFromAuthToken: function (request, callback, customData, extraHeaders) {
292307
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
293308
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetPlayerIdFromAuthToken", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.21.180507",
24+
sdkVersion: "1.22.180529",
2525
sessionTicket: null,
2626
productionServerUrl: ".playfabapi.com",
2727
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -126,7 +126,7 @@ if(!PlayFab._internalSettings) {
126126
}
127127

128128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
129-
PlayFab.sdkVersion = "1.21.180507";
129+
PlayFab.sdkVersion = "1.22.180529";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";

PlayFabSdk/src/PlayFab/PlayFabEntityApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.21.180507",
24+
sdkVersion: "1.22.180529",
2525
sessionTicket: null,
2626
productionServerUrl: ".playfabapi.com",
2727
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -126,7 +126,7 @@ if(!PlayFab._internalSettings) {
126126
}
127127

128128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
129-
PlayFab.sdkVersion = "1.21.180507";
129+
PlayFab.sdkVersion = "1.22.180529";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";

PlayFabSdk/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.21.180507",
24+
sdkVersion: "1.22.180529",
2525
sessionTicket: null,
2626
productionServerUrl: ".playfabapi.com",
2727
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -126,7 +126,7 @@ if(!PlayFab._internalSettings) {
126126
}
127127

128128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
129-
PlayFab.sdkVersion = "1.21.180507";
129+
PlayFab.sdkVersion = "1.22.180529";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";

PlayFabSdk/src/PlayFab/PlayFabServerApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.21.180507",
24+
sdkVersion: "1.22.180529",
2525
sessionTicket: null,
2626
productionServerUrl: ".playfabapi.com",
2727
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -126,7 +126,7 @@ if(!PlayFab._internalSettings) {
126126
}
127127

128128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_1";
129-
PlayFab.sdkVersion = "1.21.180507";
129+
PlayFab.sdkVersion = "1.22.180529";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";

0 commit comments

Comments
 (0)