Skip to content

Commit cef70b3

Browse files
https://api.playfab.com/releaseNotes/#181001
1 parent 486c3be commit cef70b3

25 files changed

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

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";
@@ -329,11 +329,6 @@ PlayFab.AdminApi = {
329329
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetMatchmakerGameModes", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
330330
},
331331

332-
GetMatchmakingQueue: function (request, callback, customData, extraHeaders) {
333-
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
334-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetMatchmakingQueue", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
335-
},
336-
337332
GetPlayedTitleList: function (request, callback, customData, extraHeaders) {
338333
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
339334
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetPlayedTitleList", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -489,11 +484,6 @@ PlayFab.AdminApi = {
489484
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/IncrementPlayerStatisticVersion", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
490485
},
491486

492-
ListMatchmakingQueues: function (request, callback, customData, extraHeaders) {
493-
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
494-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/ListMatchmakingQueues", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
495-
},
496-
497487
ListServerBuilds: function (request, callback, customData, extraHeaders) {
498488
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
499489
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/ListServerBuilds", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -519,11 +509,6 @@ PlayFab.AdminApi = {
519509
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RefundPurchase", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
520510
},
521511

522-
RemoveMatchmakingQueue: function (request, callback, customData, extraHeaders) {
523-
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
524-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RemoveMatchmakingQueue", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
525-
},
526-
527512
RemovePlayerTag: function (request, callback, customData, extraHeaders) {
528513
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
529514
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/RemovePlayerTag", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -594,11 +579,6 @@ PlayFab.AdminApi = {
594579
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetCatalogItems", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
595580
},
596581

597-
SetMatchmakingQueue: function (request, callback, customData, extraHeaders) {
598-
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
599-
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetMatchmakingQueue", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
600-
},
601-
602582
SetPlayerSecret: function (request, callback, customData, extraHeaders) {
603583
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
604584
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetPlayerSecret", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabGroupsApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabLocalizationApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.32.180924",
24+
sdkVersion: "1.33.181001",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.32.180924"
26+
sdk: "JavaScriptSDK-1.33.181001"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-slave2016-3_0";
160-
PlayFab.sdkVersion = "1.32.180924";
160+
PlayFab.sdkVersion = "1.33.181001";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

0 commit comments

Comments
 (0)