Skip to content

Commit 01fbe8e

Browse files
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#210406
2 parents 670f642 + c400b21 commit 01fbe8e

Some content is hidden

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

41 files changed

+683
-179
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.79.201217",
3+
"version": "1.84.210406",
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";
@@ -312,6 +312,10 @@ PlayFab.ClientApi = {
312312
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/ConsumeMicrosoftStoreEntitlements", request, "X-Authorization", callback, customData, extraHeaders);
313313
},
314314

315+
ConsumePS5Entitlements: function (request, callback, customData, extraHeaders) {
316+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/ConsumePS5Entitlements", request, "X-Authorization", callback, customData, extraHeaders);
317+
},
318+
315319
ConsumePSNEntitlements: function (request, callback, customData, extraHeaders) {
316320
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/ConsumePSNEntitlements", request, "X-Authorization", callback, customData, extraHeaders);
317321
},
@@ -540,6 +544,9 @@ PlayFab.ClientApi = {
540544
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetUserReadOnlyData", request, "X-Authorization", callback, customData, extraHeaders);
541545
},
542546

547+
/**
548+
* @deprecated Do not use
549+
*/
543550
GetWindowsHelloChallenge: function (request, callback, customData, extraHeaders) {
544551
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetWindowsHelloChallenge", request, null, callback, customData, extraHeaders);
545552
},
@@ -608,6 +615,9 @@ PlayFab.ClientApi = {
608615
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/LinkTwitch", request, "X-Authorization", callback, customData, extraHeaders);
609616
},
610617

618+
/**
619+
* @deprecated Do not use
620+
*/
611621
LinkWindowsHello: function (request, callback, customData, extraHeaders) {
612622
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/LinkWindowsHello", request, "X-Authorization", callback, customData, extraHeaders);
613623
},
@@ -1041,6 +1051,9 @@ PlayFab.ClientApi = {
10411051
return new Promise(function(resolve){resolve(authenticationContext);});
10421052
},
10431053

1054+
/**
1055+
* @deprecated Do not use
1056+
*/
10441057
LoginWithWindowsHello: function (request, callback, customData, extraHeaders) {
10451058
request.TitleId = PlayFab.settings.titleId ? PlayFab.settings.titleId : request.TitleId; if (!request.TitleId) throw PlayFab._internalSettings.errorTitleId;
10461059
// PlayFab._internalSettings.authenticationContext can be modified by other asynchronous login attempts
@@ -1135,6 +1148,9 @@ PlayFab.ClientApi = {
11351148
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/RegisterPlayFabUser", request, null, overloadCallback, customData, extraHeaders);
11361149
},
11371150

1151+
/**
1152+
* @deprecated Do not use
1153+
*/
11381154
RegisterWithWindowsHello: function (request, callback, customData, extraHeaders) {
11391155
request.TitleId = PlayFab.settings.titleId ? PlayFab.settings.titleId : request.TitleId; if (!request.TitleId) throw PlayFab._internalSettings.errorTitleId;
11401156
// PlayFab._internalSettings.authenticationContext can be modified by other asynchronous login attempts
@@ -1280,6 +1296,9 @@ PlayFab.ClientApi = {
12801296
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UnlinkTwitch", request, "X-Authorization", callback, customData, extraHeaders);
12811297
},
12821298

1299+
/**
1300+
* @deprecated Do not use
1301+
*/
12831302
UnlinkWindowsHello: function (request, callback, customData, extraHeaders) {
12841303
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UnlinkWindowsHello", request, "X-Authorization", callback, customData, extraHeaders);
12851304
},

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";
@@ -250,11 +250,11 @@ PlayFab.CloudScriptApi = {
250250
},
251251

252252
ExecuteEntityCloudScript: function (request, callback, customData, extraHeaders) {
253-
return PlayFab._internalSettings.ExecuteRequestWrapper("/CloudScript/ExecuteEntityCloudScript", request, null, callback, customData, extraHeaders);
253+
return PlayFab._internalSettings.ExecuteRequestWrapper("/CloudScript/ExecuteEntityCloudScript", request, "X-EntityToken", callback, customData, extraHeaders);
254254
},
255255

256256
ExecuteFunction: function (request, callback, customData, extraHeaders) {
257-
return PlayFab._internalSettings.ExecuteRequestWrapper("/CloudScript/ExecuteFunction", request, null, callback, customData, extraHeaders);
257+
return PlayFab._internalSettings.ExecuteRequestWrapper("/CloudScript/ExecuteFunction", request, "X-EntityToken", callback, customData, extraHeaders);
258258
},
259259

260260
ListFunctions: function (request, callback, customData, extraHeaders) {

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
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
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

PlayFabSdk/src/PlayFab/PlayFabInsightsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if(!PlayFab.settings) {
2222
if(!PlayFab._internalSettings) {
2323
PlayFab._internalSettings = {
2424
entityToken: null,
25-
sdkVersion: "1.79.201217",
25+
sdkVersion: "1.84.210406",
2626
requestGetParams: {
27-
sdk: "JavaScriptSDK-1.79.201217"
27+
sdk: "JavaScriptSDK-1.84.210406"
2828
},
2929
sessionTicket: null,
3030
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-generic-2_1";
235-
PlayFab.sdkVersion = "1.79.201217";
234+
PlayFab.buildIdentifier = "jbuild_javascriptsdk_sdk-generic-3_1";
235+
PlayFab.sdkVersion = "1.84.210406";
236236
PlayFab.GenerateErrorReport = function (error) {
237237
if (error == null)
238238
return "";

0 commit comments

Comments
 (0)