Skip to content

Commit 682fa51

Browse files
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#200402
2 parents 62b5950 + a226f53 commit 682fa51

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

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

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 4 additions & 4 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 4 additions & 4 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 8 additions & 7 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";
@@ -1310,12 +1310,13 @@ PlayFab.ClientApi = {
13101310
_MultiStepClientLogin: function (needsAttribution) {
13111311
if (needsAttribution && !PlayFab.settings.disableAdvertising && PlayFab.settings.advertisingIdType !== null && PlayFab.settings.advertisingIdValue !== null) {
13121312
var request = {};
1313-
if (PlayFab.settings.advertisingIdType === PlayFab.settings.AD_TYPE_IDFA)
1313+
if (PlayFab.settings.advertisingIdType === PlayFab.settings.AD_TYPE_IDFA) {
13141314
request.Idfa = PlayFab.settings.advertisingIdValue;
1315-
else if (PlayFab.settings.advertisingIdType === PlayFab.settings.AD_TYPE_ANDROID_ID)
1315+
} else if (PlayFab.settings.advertisingIdType === PlayFab.settings.AD_TYPE_ANDROID_ID) {
13161316
request.Adid = PlayFab.settings.advertisingIdValue;
1317-
else
1317+
} else {
13181318
return;
1319+
}
13191320
PlayFab.ClientApi.AttributeInstall(request, null);
13201321
}
13211322
}

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 4 additions & 4 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 4 additions & 4 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 4 additions & 4 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabExperimentationApi.js

Lines changed: 4 additions & 4 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabGroupsApi.js

Lines changed: 4 additions & 4 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.61.200303",
24+
sdkVersion: "1.63.200402",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.61.200303"
26+
sdk: "JavaScriptSDK-1.63.200402"
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
@@ -231,8 +231,8 @@ if(!PlayFab._internalSettings) {
231231
}
232232
}
233233

234-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_2";
235-
PlayFab.sdkVersion = "1.61.200303";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
235+
PlayFab.sdkVersion = "1.63.200402";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

0 commit comments

Comments
 (0)