Skip to content

Commit bd47332

Browse files
PlayFab SDK TeamPlayFab SDK Team
PlayFab SDK Team
authored and
PlayFab SDK Team
committed
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#250512
2 parents 126c8bf + 826e632 commit bd47332

Some content is hidden

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

45 files changed

+841
-133
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.190.250428",
3+
"version": "1.191.250512",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAddonApi.js

Lines changed: 16 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.190.250428",
17+
sdkVersion: "1.191.250512",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.190.250428"
19+
sdk: "JavaScriptSDK-1.191.250512"
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.190.250428";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_117";
227+
PlayFab.sdkVersion = "1.191.250512";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";
@@ -273,6 +273,10 @@ PlayFab.AddonApi = {
273273
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/CreateOrUpdateSteam", request, "X-EntityToken", callback, customData, extraHeaders);
274274
},
275275

276+
CreateOrUpdateToxMod: function (request, callback, customData, extraHeaders) {
277+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/CreateOrUpdateToxMod", request, "X-EntityToken", callback, customData, extraHeaders);
278+
},
279+
276280
CreateOrUpdateTwitch: function (request, callback, customData, extraHeaders) {
277281
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/CreateOrUpdateTwitch", request, "X-EntityToken", callback, customData, extraHeaders);
278282
},
@@ -309,6 +313,10 @@ PlayFab.AddonApi = {
309313
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/DeleteSteam", request, "X-EntityToken", callback, customData, extraHeaders);
310314
},
311315

316+
DeleteToxMod: function (request, callback, customData, extraHeaders) {
317+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/DeleteToxMod", request, "X-EntityToken", callback, customData, extraHeaders);
318+
},
319+
312320
DeleteTwitch: function (request, callback, customData, extraHeaders) {
313321
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/DeleteTwitch", request, "X-EntityToken", callback, customData, extraHeaders);
314322
},
@@ -345,6 +353,10 @@ PlayFab.AddonApi = {
345353
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/GetSteam", request, "X-EntityToken", callback, customData, extraHeaders);
346354
},
347355

356+
GetToxMod: function (request, callback, customData, extraHeaders) {
357+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/GetToxMod", request, "X-EntityToken", callback, customData, extraHeaders);
358+
},
359+
348360
GetTwitch: function (request, callback, customData, extraHeaders) {
349361
return PlayFab._internalSettings.ExecuteRequestWrapper("/Addon/GetTwitch", request, "X-EntityToken", callback, customData, extraHeaders);
350362
},

PlayFabSdk/src/PlayFab/PlayFabAdminApi.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.190.250428",
17+
sdkVersion: "1.191.250512",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.190.250428"
19+
sdk: "JavaScriptSDK-1.191.250512"
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.190.250428";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_117";
227+
PlayFab.sdkVersion = "1.191.250512";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

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

PlayFabSdk/src/PlayFab/PlayFabClientApi.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.190.250428",
17+
sdkVersion: "1.191.250512",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.190.250428"
19+
sdk: "JavaScriptSDK-1.191.250512"
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.190.250428";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_117";
227+
PlayFab.sdkVersion = "1.191.250512";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

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

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 24 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.190.250428",
17+
sdkVersion: "1.191.250512",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.190.250428"
19+
sdk: "JavaScriptSDK-1.191.250512"
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.190.250428";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_117";
227+
PlayFab.sdkVersion = "1.191.250512";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";
@@ -245,18 +245,38 @@ PlayFab.EventsApi = {
245245
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/CreateTelemetryKey", request, "X-EntityToken", callback, customData, extraHeaders);
246246
},
247247

248+
DeleteDataConnection: function (request, callback, customData, extraHeaders) {
249+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/DeleteDataConnection", request, "X-EntityToken", callback, customData, extraHeaders);
250+
},
251+
248252
DeleteTelemetryKey: function (request, callback, customData, extraHeaders) {
249253
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/DeleteTelemetryKey", request, "X-EntityToken", callback, customData, extraHeaders);
250254
},
251255

256+
GetDataConnection: function (request, callback, customData, extraHeaders) {
257+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/GetDataConnection", request, "X-EntityToken", callback, customData, extraHeaders);
258+
},
259+
252260
GetTelemetryKey: function (request, callback, customData, extraHeaders) {
253261
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/GetTelemetryKey", request, "X-EntityToken", callback, customData, extraHeaders);
254262
},
255263

264+
ListDataConnections: function (request, callback, customData, extraHeaders) {
265+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/ListDataConnections", request, "X-EntityToken", callback, customData, extraHeaders);
266+
},
267+
256268
ListTelemetryKeys: function (request, callback, customData, extraHeaders) {
257269
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/ListTelemetryKeys", request, "X-EntityToken", callback, customData, extraHeaders);
258270
},
259271

272+
SetDataConnection: function (request, callback, customData, extraHeaders) {
273+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/SetDataConnection", request, "X-EntityToken", callback, customData, extraHeaders);
274+
},
275+
276+
SetDataConnectionActive: function (request, callback, customData, extraHeaders) {
277+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/SetDataConnectionActive", request, "X-EntityToken", callback, customData, extraHeaders);
278+
},
279+
260280
SetTelemetryKeyActive: function (request, callback, customData, extraHeaders) {
261281
return PlayFab._internalSettings.ExecuteRequestWrapper("/Event/SetTelemetryKeyActive", request, "X-EntityToken", callback, customData, extraHeaders);
262282
},

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

PlayFabSdk/src/PlayFab/PlayFabInsightsApi.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.190.250428",
17+
sdkVersion: "1.191.250512",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.190.250428"
19+
sdk: "JavaScriptSDK-1.191.250512"
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.190.250428";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_117";
227+
PlayFab.sdkVersion = "1.191.250512";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabLocalizationApi.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.190.250428",
17+
sdkVersion: "1.191.250512",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.190.250428"
19+
sdk: "JavaScriptSDK-1.191.250512"
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.190.250428";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_117";
227+
PlayFab.sdkVersion = "1.191.250512";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabMultiplayerApi.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.190.250428",
17+
sdkVersion: "1.191.250512",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.190.250428"
19+
sdk: "JavaScriptSDK-1.191.250512"
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.190.250428";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_117";
227+
PlayFab.sdkVersion = "1.191.250512";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

0 commit comments

Comments
 (0)