Skip to content

Commit 8bfbdb9

Browse files
PlayFab SDK TeamPlayFab SDK Team
authored andcommitted
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#250314
1 parent 63eb30c commit 8bfbdb9

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

+1161
-143
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.187.250228",
3+
"version": "1.188.250314",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAddonApi.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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 20 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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";
@@ -325,6 +325,10 @@ PlayFab.AdminApi = {
325325
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/DeletePlayer", request, "X-SecretKey", callback, customData, extraHeaders);
326326
},
327327

328+
DeletePlayerCustomProperties: function (request, callback, customData, extraHeaders) {
329+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/DeletePlayerCustomProperties", request, "X-SecretKey", callback, customData, extraHeaders);
330+
},
331+
328332
DeletePlayerSharedSecret: function (request, callback, customData, extraHeaders) {
329333
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/DeletePlayerSharedSecret", request, "X-SecretKey", callback, customData, extraHeaders);
330334
},
@@ -397,6 +401,10 @@ PlayFab.AdminApi = {
397401
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetPlayedTitleList", request, "X-SecretKey", callback, customData, extraHeaders);
398402
},
399403

404+
GetPlayerCustomProperty: function (request, callback, customData, extraHeaders) {
405+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetPlayerCustomProperty", request, "X-SecretKey", callback, customData, extraHeaders);
406+
},
407+
400408
GetPlayerIdFromAuthToken: function (request, callback, customData, extraHeaders) {
401409
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/GetPlayerIdFromAuthToken", request, "X-SecretKey", callback, customData, extraHeaders);
402410
},
@@ -521,6 +529,10 @@ PlayFab.AdminApi = {
521529
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/ListOpenIdConnection", request, "X-SecretKey", callback, customData, extraHeaders);
522530
},
523531

532+
ListPlayerCustomProperties: function (request, callback, customData, extraHeaders) {
533+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/ListPlayerCustomProperties", request, "X-SecretKey", callback, customData, extraHeaders);
534+
},
535+
524536
ListVirtualCurrencyTypes: function (request, callback, customData, extraHeaders) {
525537
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/ListVirtualCurrencyTypes", request, "X-SecretKey", callback, customData, extraHeaders);
526538
},
@@ -637,6 +649,10 @@ PlayFab.AdminApi = {
637649
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdateOpenIdConnection", request, "X-SecretKey", callback, customData, extraHeaders);
638650
},
639651

652+
UpdatePlayerCustomProperties: function (request, callback, customData, extraHeaders) {
653+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdatePlayerCustomProperties", request, "X-SecretKey", callback, customData, extraHeaders);
654+
},
655+
640656
UpdatePlayerSharedSecret: function (request, callback, customData, extraHeaders) {
641657
return PlayFab._internalSettings.ExecuteRequestWrapper("/Admin/UpdatePlayerSharedSecret", request, "X-SecretKey", callback, customData, extraHeaders);
642658
},

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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 20 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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";
@@ -313,6 +313,10 @@ PlayFab.ClientApi = {
313313
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/CreateSharedGroup", request, "X-Authorization", callback, customData, extraHeaders);
314314
},
315315

316+
DeletePlayerCustomProperties: function (request, callback, customData, extraHeaders) {
317+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/DeletePlayerCustomProperties", request, "X-Authorization", callback, customData, extraHeaders);
318+
},
319+
316320
ExecuteCloudScript: function (request, callback, customData, extraHeaders) {
317321
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/ExecuteCloudScript", request, "X-Authorization", callback, customData, extraHeaders);
318322
},
@@ -397,6 +401,10 @@ PlayFab.ClientApi = {
397401
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetPlayerCombinedInfo", request, "X-Authorization", callback, customData, extraHeaders);
398402
},
399403

404+
GetPlayerCustomProperty: function (request, callback, customData, extraHeaders) {
405+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetPlayerCustomProperty", request, "X-Authorization", callback, customData, extraHeaders);
406+
},
407+
400408
GetPlayerProfile: function (request, callback, customData, extraHeaders) {
401409
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetPlayerProfile", request, "X-Authorization", callback, customData, extraHeaders);
402410
},
@@ -609,6 +617,10 @@ PlayFab.ClientApi = {
609617
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/LinkXboxAccount", request, "X-Authorization", callback, customData, extraHeaders);
610618
},
611619

620+
ListPlayerCustomProperties: function (request, callback, customData, extraHeaders) {
621+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/ListPlayerCustomProperties", request, "X-Authorization", callback, customData, extraHeaders);
622+
},
623+
612624
LoginWithAndroidDeviceID: function (request, callback, customData, extraHeaders) {
613625
request.TitleId = PlayFab.settings.titleId ? PlayFab.settings.titleId : request.TitleId; if (!request.TitleId) throw PlayFab._internalSettings.errorTitleId;
614626
// PlayFab._internalSettings.authenticationContext can be modified by other asynchronous login attempts
@@ -1255,6 +1267,10 @@ PlayFab.ClientApi = {
12551267
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UpdateCharacterStatistics", request, "X-Authorization", callback, customData, extraHeaders);
12561268
},
12571269

1270+
UpdatePlayerCustomProperties: function (request, callback, customData, extraHeaders) {
1271+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UpdatePlayerCustomProperties", request, "X-Authorization", callback, customData, extraHeaders);
1272+
},
1273+
12581274
UpdatePlayerStatistics: function (request, callback, customData, extraHeaders) {
12591275
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UpdatePlayerStatistics", request, "X-Authorization", callback, customData, extraHeaders);
12601276
},

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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
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.187.250228",
17+
sdkVersion: "1.188.250314",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.187.250228"
19+
sdk: "JavaScriptSDK-1.188.250314"
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_8";
227-
PlayFab.sdkVersion = "1.187.250228";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_114";
227+
PlayFab.sdkVersion = "1.188.250314";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

0 commit comments

Comments
 (0)