Skip to content

Commit 23ff653

Browse files
PlayFab SDK TeamPlayFab SDK Team
authored andcommitted
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230403
1 parent 9f45416 commit 23ff653

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

+1011
-351
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.138.230306",
3+
"version": "1.141.230403",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";
@@ -389,10 +389,16 @@ PlayFab.AdminApi = {
389389
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetDataReport", request, "X-SecretKey", callback, customData, extraHeaders);
390390
},
391391

392+
/**
393+
* @deprecated Please use MultiplayerServer/GetMultiplayerSessionLogsBySessionId instead.
394+
*/
392395
GetMatchmakerGameInfo: function (request, callback, customData, extraHeaders) {
393396
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetMatchmakerGameInfo", request, "X-SecretKey", callback, customData, extraHeaders);
394397
},
395398

399+
/**
400+
* @deprecated Do not use
401+
*/
396402
GetMatchmakerGameModes: function (request, callback, customData, extraHeaders) {
397403
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetMatchmakerGameModes", request, "X-SecretKey", callback, customData, extraHeaders);
398404
},
@@ -529,6 +535,9 @@ PlayFab.AdminApi = {
529535
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/ListVirtualCurrencyTypes", request, "X-SecretKey", callback, customData, extraHeaders);
530536
},
531537

538+
/**
539+
* @deprecated Do not use
540+
*/
532541
ModifyServerBuild: function (request, callback, customData, extraHeaders) {
533542
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/ModifyServerBuild", request, "X-SecretKey", callback, customData, extraHeaders);
534543
},

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";
@@ -357,6 +357,9 @@ PlayFab.ClientApi = {
357357
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetContentDownloadUrl", request, "X-Authorization", callback, customData, extraHeaders);
358358
},
359359

360+
/**
361+
* @deprecated Please use MultiplayerServer/ListMultiplayerServers instead.
362+
*/
360363
GetCurrentGames: function (request, callback, customData, extraHeaders) {
361364
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetCurrentGames", request, "X-Authorization", callback, customData, extraHeaders);
362365
},
@@ -373,6 +376,9 @@ PlayFab.ClientApi = {
373376
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetFriendsList", request, "X-Authorization", callback, customData, extraHeaders);
374377
},
375378

379+
/**
380+
* @deprecated Please use MultiplayerServer/ListMultiplayerServers instead.
381+
*/
376382
GetGameServerRegions: function (request, callback, customData, extraHeaders) {
377383
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetGameServerRegions", request, "X-Authorization", callback, customData, extraHeaders);
378384
},
@@ -1065,6 +1071,9 @@ PlayFab.ClientApi = {
10651071
return new Promise(function(resolve){resolve(authenticationContext);});
10661072
},
10671073

1074+
/**
1075+
* @deprecated Please use Match/CreateMatchmakingTicket instead.
1076+
*/
10681077
Matchmake: function (request, callback, customData, extraHeaders) {
10691078
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/Matchmake", request, "X-Authorization", callback, customData, extraHeaders);
10701079
},

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabEconomyApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabExperimentationApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabGroupsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.138.230306",
17+
sdkVersion: "1.141.230403",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.138.230306"
19+
sdk: "JavaScriptSDK-1.141.230403"
2020
},
2121
sessionTicket: null,
2222
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -223,8 +223,8 @@ if(!PlayFab._internalSettings) {
223223
}
224224
}
225225

226-
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227-
PlayFab.sdkVersion = "1.138.230306";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.141.230403";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

0 commit comments

Comments
 (0)