Skip to content

Commit b465af2

Browse files
PlayFab SDK TeamPlayFab SDK Team
authored andcommitted
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#220815
1 parent 22d22ed commit b465af2

39 files changed

+327
-121
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.122.220804",
3+
"version": "1.123.220815",
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
@@ -14,9 +14,9 @@ if(!PlayFab.settings) {
1414
if(!PlayFab._internalSettings) {
1515
PlayFab._internalSettings = {
1616
entityToken: null,
17-
sdkVersion: "1.122.220804",
17+
sdkVersion: "1.123.220815",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.122.220804"
19+
sdk: "JavaScriptSDK-1.123.220815"
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_115";
227-
PlayFab.sdkVersion = "1.122.220804";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.123.220815";
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.122.220804",
17+
sdkVersion: "1.123.220815",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.122.220804"
19+
sdk: "JavaScriptSDK-1.123.220815"
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_115";
227-
PlayFab.sdkVersion = "1.122.220804";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.123.220815";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.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.122.220804",
17+
sdkVersion: "1.123.220815",
1818
requestGetParams: {
19-
sdk: "JavaScriptSDK-1.122.220804"
19+
sdk: "JavaScriptSDK-1.123.220815"
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_115";
227-
PlayFab.sdkVersion = "1.122.220804";
226+
PlayFab.buildIdentifier = "adobuild_javascriptsdk_116";
227+
PlayFab.sdkVersion = "1.123.220815";
228228
PlayFab.GenerateErrorReport = function (error) {
229229
if (error == null)
230230
return "";
@@ -449,6 +449,10 @@ PlayFab.ClientApi = {
449449
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetPlayFabIDsFromGoogleIDs", request, "X-Authorization", callback, customData, extraHeaders);
450450
},
451451

452+
GetPlayFabIDsFromGooglePlayGamesPlayerIDs: function (request, callback, customData, extraHeaders) {
453+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetPlayFabIDsFromGooglePlayGamesPlayerIDs", request, "X-Authorization", callback, customData, extraHeaders);
454+
},
455+
452456
GetPlayFabIDsFromKongregateIDs: function (request, callback, customData, extraHeaders) {
453457
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/GetPlayFabIDsFromKongregateIDs", request, "X-Authorization", callback, customData, extraHeaders);
454458
},
@@ -565,6 +569,10 @@ PlayFab.ClientApi = {
565569
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/LinkGoogleAccount", request, "X-Authorization", callback, customData, extraHeaders);
566570
},
567571

572+
LinkGooglePlayGamesServicesAccount: function (request, callback, customData, extraHeaders) {
573+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/LinkGooglePlayGamesServicesAccount", request, "X-Authorization", callback, customData, extraHeaders);
574+
},
575+
568576
LinkIOSDeviceID: function (request, callback, customData, extraHeaders) {
569577
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/LinkIOSDeviceID", request, "X-Authorization", callback, customData, extraHeaders);
570578
},
@@ -1184,6 +1192,10 @@ PlayFab.ClientApi = {
11841192
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UnlinkGoogleAccount", request, "X-Authorization", callback, customData, extraHeaders);
11851193
},
11861194

1195+
UnlinkGooglePlayGamesServicesAccount: function (request, callback, customData, extraHeaders) {
1196+
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UnlinkGooglePlayGamesServicesAccount", request, "X-Authorization", callback, customData, extraHeaders);
1197+
},
1198+
11871199
UnlinkIOSDeviceID: function (request, callback, customData, extraHeaders) {
11881200
return PlayFab._internalSettings.ExecuteRequestWrapper("/Client/UnlinkIOSDeviceID", request, "X-Authorization", callback, customData, extraHeaders);
11891201
},

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

0 commit comments

Comments
 (0)