Skip to content

Commit 20b3f05

Browse files
https://api.playfab.com/releaseNotes/#190304
1 parent 64cecf8 commit 20b3f05

31 files changed

+403
-153
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.40.190219",
3+
"version": "1.41.190304",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";
@@ -229,6 +229,11 @@ PlayFab.AdminApi = {
229229
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/CreateCloudScriptTask", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
230230
},
231231

232+
CreateOpenIdConnection: function (request, callback, customData, extraHeaders) {
233+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
234+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/CreateOpenIdConnection", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
235+
},
236+
232237
CreatePlayerSharedSecret: function (request, callback, customData, extraHeaders) {
233238
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
234239
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/CreatePlayerSharedSecret", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -249,6 +254,11 @@ PlayFab.AdminApi = {
249254
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/DeleteMasterPlayerAccount", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
250255
},
251256

257+
DeleteOpenIdConnection: function (request, callback, customData, extraHeaders) {
258+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
259+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/DeleteOpenIdConnection", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
260+
},
261+
252262
DeletePlayer: function (request, callback, customData, extraHeaders) {
253263
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
254264
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/DeletePlayer", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -489,6 +499,11 @@ PlayFab.AdminApi = {
489499
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/IncrementPlayerStatisticVersion", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
490500
},
491501

502+
ListOpenIdConnection: function (request, callback, customData, extraHeaders) {
503+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
504+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/ListOpenIdConnection", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
505+
},
506+
492507
ListServerBuilds: function (request, callback, customData, extraHeaders) {
493508
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
494509
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/ListServerBuilds", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
@@ -639,6 +654,11 @@ PlayFab.AdminApi = {
639654
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/UpdateCloudScript", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
640655
},
641656

657+
UpdateOpenIdConnection: function (request, callback, customData, extraHeaders) {
658+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
659+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/UpdateOpenIdConnection", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
660+
},
661+
642662
UpdatePlayerSharedSecret: function (request, callback, customData, extraHeaders) {
643663
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
644664
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/UpdatePlayerSharedSecret", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabGroupsApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabLocalizationApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24-
sdkVersion: "1.40.190219",
24+
sdkVersion: "1.41.190304",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.40.190219"
26+
sdk: "JavaScriptSDK-1.41.190304"
2727
},
2828
sessionTicket: null,
2929
verticalName: null, // The name of a customer vertical. This is only for customers running a private cluster. Generally you shouldn't touch this
@@ -156,8 +156,8 @@ if(!PlayFab._internalSettings) {
156156
}
157157
}
158158

159-
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-1_0";
160-
PlayFab.sdkVersion = "1.40.190219";
159+
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_0";
160+
PlayFab.sdkVersion = "1.41.190304";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

0 commit comments

Comments
 (0)