Skip to content

Commit fa2700d

Browse files
author
PlayFabJenkinsBot
committed
https://api.playfab.com/releaseNotes/#180316
2 parents 37cb756 + 926cf2c commit fa2700d

27 files changed

+6624
-2043
lines changed

.arcconfig

Lines changed: 0 additions & 3 deletions
This file was deleted.

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.19.180213",
3+
"version": "1.20.180316",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 7 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.19.180213",
24+
sdkVersion: "1.20.180316",
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_0";
129-
PlayFab.sdkVersion = "1.19.180213";
129+
PlayFab.sdkVersion = "1.20.180316";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";
@@ -513,6 +513,11 @@ PlayFab.AdminApi = {
513513
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RevokeInventoryItem", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
514514
},
515515

516+
RevokeInventoryItems: function (request, callback, customData, extraHeaders) {
517+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
518+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RevokeInventoryItems", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
519+
},
520+
516521
RunTask: function (request, callback, customData, extraHeaders) {
517522
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
518523
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RunTask", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 80 additions & 41 deletions
Large diffs are not rendered by default.

PlayFabSdk/src/PlayFab/PlayFabEntityApi.js

Lines changed: 341 additions & 0 deletions
Large diffs are not rendered by default.

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.19.180213",
24+
sdkVersion: "1.20.180316",
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_0";
129-
PlayFab.sdkVersion = "1.19.180213";
129+
PlayFab.sdkVersion = "1.20.180316";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";

PlayFabSdk/src/PlayFab/PlayFabServerApi.js

Lines changed: 7 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.19.180213",
24+
sdkVersion: "1.20.180316",
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_0";
129-
PlayFab.sdkVersion = "1.19.180213";
129+
PlayFab.sdkVersion = "1.20.180316";
130130
PlayFab.GenerateErrorReport = function (error) {
131131
if (error == null)
132132
return "";
@@ -528,6 +528,11 @@ PlayFab.ServerApi = {
528528
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/RevokeInventoryItem", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
529529
},
530530

531+
RevokeInventoryItems: function (request, callback, customData, extraHeaders) {
532+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
533+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/RevokeInventoryItems", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
534+
},
535+
531536
SendCustomAccountRecoveryEmail: function (request, callback, customData, extraHeaders) {
532537
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
533538
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Server/SendCustomAccountRecoveryEmail", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);

PlayFabSdk/src/Typings/PlayFab/PlayFabAdminApi.d.ts

Lines changed: 648 additions & 248 deletions
Large diffs are not rendered by default.

PlayFabSdk/src/Typings/PlayFab/PlayFabClientApi.d.ts

Lines changed: 370 additions & 357 deletions
Large diffs are not rendered by default.

PlayFabSdk/src/Typings/PlayFab/PlayFabEntityApi.d.ts

Lines changed: 1097 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)