Skip to content

Commit c4730d2

Browse files
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#210521
2 parents d306b23 + 80d6491 commit c4730d2

39 files changed

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

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,17 @@ if(!PlayFab.settings) {
66
PlayFab.settings = {
77
titleId: null, // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
88
developerSecretKey: null, // For security reasons you must never expose this value to the client or players - You must set this value for Server-APIs to work properly (Found in the Game Manager for your title, at the PlayFab Website)
9-
advertisingIdType: null,
10-
advertisingIdValue: null,
119
GlobalHeaderInjection: null,
12-
13-
// disableAdvertising is provided for completeness, but changing it is not suggested
14-
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
15-
disableAdvertising: false,
16-
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid",
1810
productionServerUrl: ".playfabapi.com"
1911
}
2012
}
2113

2214
if(!PlayFab._internalSettings) {
2315
PlayFab._internalSettings = {
2416
entityToken: null,
25-
sdkVersion: "1.86.210511",
17+
sdkVersion: "1.87.210521",
2618
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.86.210511"
19+
sdk: "JavaScriptSDK-1.87.210521"
2820
},
2921
sessionTicket: null,
3022
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +223,8 @@ if(!PlayFab._internalSettings) {
231223
}
232224
}
233225

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_0";
235-
PlayFab.sdkVersion = "1.86.210511";
226+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
227+
PlayFab.sdkVersion = "1.87.210521";
236228
PlayFab.GenerateErrorReport = function (error) {
237229
if (error == null)
238230
return "";
@@ -716,6 +708,7 @@ PlayFab.AdminApi = {
716708
UpdateUserTitleDisplayName: function (request, callback, customData, extraHeaders) {
717709
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdateUserTitleDisplayName", request, "X-SecretKey", callback, customData, extraHeaders);
718710
},
711+
719712
};
720713

721714
var PlayFabAdminSDK = PlayFab.AdminApi;

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,17 @@ if(!PlayFab.settings) {
66
PlayFab.settings = {
77
titleId: null, // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
88
developerSecretKey: null, // For security reasons you must never expose this value to the client or players - You must set this value for Server-APIs to work properly (Found in the Game Manager for your title, at the PlayFab Website)
9-
advertisingIdType: null,
10-
advertisingIdValue: null,
119
GlobalHeaderInjection: null,
12-
13-
// disableAdvertising is provided for completeness, but changing it is not suggested
14-
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
15-
disableAdvertising: false,
16-
AD_TYPE_IDFA: "Idfa",
17-
AD_TYPE_ANDROID_ID: "Adid",
1810
productionServerUrl: ".playfabapi.com"
1911
}
2012
}
2113

2214
if(!PlayFab._internalSettings) {
2315
PlayFab._internalSettings = {
2416
entityToken: null,
25-
sdkVersion: "1.86.210511",
17+
sdkVersion: "1.87.210521",
2618
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.86.210511"
19+
sdk: "JavaScriptSDK-1.87.210521"
2820
},
2921
sessionTicket: null,
3022
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -231,8 +223,8 @@ if(!PlayFab._internalSettings) {
231223
}
232224
}
233225

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_0";
235-
PlayFab.sdkVersion = "1.86.210511";
226+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
227+
PlayFab.sdkVersion = "1.87.210521";
236228
PlayFab.GenerateErrorReport = function (error) {
237229
if (error == null)
238230
return "";
@@ -265,6 +257,7 @@ PlayFab.AuthenticationApi = {
265257
ValidateEntityToken: function (request, callback, customData, extraHeaders) {
266258
return PlayFab._internalSettings.ExecuteRequestWrapper("/Authentication/ValidateEntityToken", request, "X-EntityToken", callback, customData, extraHeaders);
267259
},
260+
268261
};
269262

270263
var PlayFabAuthenticationSDK = PlayFab.AuthenticationApi;

0 commit comments

Comments
 (0)