Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#210521
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed May 21, 2021
2 parents d306b23 + 80d6491 commit c4730d2
Show file tree
Hide file tree
Showing 39 changed files with 149 additions and 872 deletions.
2 changes: 1 addition & 1 deletion PlayFabSdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playfab-web-sdk",
"version": "1.86.210511",
"version": "1.87.210521",
"description": "Playfab SDK for JS client applications",
"license": "Apache-2.0",
"repository": {
Expand Down
17 changes: 5 additions & 12 deletions PlayFabSdk/src/PlayFab/PlayFabAdminApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,17 @@ if(!PlayFab.settings) {
PlayFab.settings = {
titleId: null, // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
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)
advertisingIdType: null,
advertisingIdValue: null,
GlobalHeaderInjection: null,

// disableAdvertising is provided for completeness, but changing it is not suggested
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
disableAdvertising: false,
AD_TYPE_IDFA: "Idfa",
AD_TYPE_ANDROID_ID: "Adid",
productionServerUrl: ".playfabapi.com"
}
}

if(!PlayFab._internalSettings) {
PlayFab._internalSettings = {
entityToken: null,
sdkVersion: "1.86.210511",
sdkVersion: "1.87.210521",
requestGetParams: {
sdk: "JavaScriptSDK-1.86.210511"
sdk: "JavaScriptSDK-1.87.210521"
},
sessionTicket: null,
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
Expand Down Expand Up @@ -231,8 +223,8 @@ if(!PlayFab._internalSettings) {
}
}

PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_0";
PlayFab.sdkVersion = "1.86.210511";
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
PlayFab.sdkVersion = "1.87.210521";
PlayFab.GenerateErrorReport = function (error) {
if (error == null)
return "";
Expand Down Expand Up @@ -716,6 +708,7 @@ PlayFab.AdminApi = {
UpdateUserTitleDisplayName: function (request, callback, customData, extraHeaders) {
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdateUserTitleDisplayName", request, "X-SecretKey", callback, customData, extraHeaders);
},

};

var PlayFabAdminSDK = PlayFab.AdminApi;
Expand Down
17 changes: 5 additions & 12 deletions PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,17 @@ if(!PlayFab.settings) {
PlayFab.settings = {
titleId: null, // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
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)
advertisingIdType: null,
advertisingIdValue: null,
GlobalHeaderInjection: null,

// disableAdvertising is provided for completeness, but changing it is not suggested
// Disabling this may prevent your advertising-related PlayFab marketplace partners from working correctly
disableAdvertising: false,
AD_TYPE_IDFA: "Idfa",
AD_TYPE_ANDROID_ID: "Adid",
productionServerUrl: ".playfabapi.com"
}
}

if(!PlayFab._internalSettings) {
PlayFab._internalSettings = {
entityToken: null,
sdkVersion: "1.86.210511",
sdkVersion: "1.87.210521",
requestGetParams: {
sdk: "JavaScriptSDK-1.86.210511"
sdk: "JavaScriptSDK-1.87.210521"
},
sessionTicket: null,
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
Expand Down Expand Up @@ -231,8 +223,8 @@ if(!PlayFab._internalSettings) {
}
}

PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_0";
PlayFab.sdkVersion = "1.86.210511";
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
PlayFab.sdkVersion = "1.87.210521";
PlayFab.GenerateErrorReport = function (error) {
if (error == null)
return "";
Expand Down Expand Up @@ -265,6 +257,7 @@ PlayFab.AuthenticationApi = {
ValidateEntityToken: function (request, callback, customData, extraHeaders) {
return PlayFab._internalSettings.ExecuteRequestWrapper("/Authentication/ValidateEntityToken", request, "X-EntityToken", callback, customData, extraHeaders);
},

};

var PlayFabAuthenticationSDK = PlayFab.AuthenticationApi;
Expand Down
Loading

0 comments on commit c4730d2

Please sign in to comment.