Skip to content

Commit 56f8da6

Browse files
author
pgilmorepf
committed
https://api.playfab.com/releaseNotes#160627
resolve merge conflicts
2 parents 51e2810 + 08a2757 commit 56f8da6

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

PlayFabApiTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ var PlayFabApiTests = {
165165

166166
/// <summary>
167167
/// CLIENT API
168-
/// Try to deliberately register a character with an invalid email and password.
168+
/// Try to deliberately register a user with an invalid email and password
169169
/// Verify that errorDetails are populated correctly.
170170
/// </summary>
171171
InvalidRegistration: function (assert) {

PlayFabSDK/PlayFabAdminApi.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.20.160613",
21+
sdkVersion: "0.21.160627",
2222
buildIdentifier: "jbuild_0",
2323
productionServerUrl: ".playfabapi.com",
2424
logicServerUrl: null,
@@ -292,6 +292,12 @@ PlayFab.AdminApi = {
292292
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetTitleData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
293293
},
294294

295+
GetTitleInternalData: function (request, callback) {
296+
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
297+
298+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/GetTitleInternalData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
299+
},
300+
295301
ListVirtualCurrencyTypes: function (request, callback) {
296302
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
297303

@@ -316,6 +322,12 @@ PlayFab.AdminApi = {
316322
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetTitleData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
317323
},
318324

325+
SetTitleInternalData: function (request, callback) {
326+
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
327+
328+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/SetTitleInternalData", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback);
329+
},
330+
319331
SetupPushNotification: function (request, callback) {
320332
if (PlayFab.settings.developerSecretKey == null) throw "Must have PlayFab.settings.developerSecretKey set to call this method";
321333

PlayFabSDK/PlayFabClientApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.20.160613",
21+
sdkVersion: "0.21.160627",
2222
buildIdentifier: "jbuild_0",
2323
productionServerUrl: ".playfabapi.com",
2424
logicServerUrl: null,

PlayFabSDK/PlayFabMatchmakerApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.20.160613",
21+
sdkVersion: "0.21.160627",
2222
buildIdentifier: "jbuild_0",
2323
productionServerUrl: ".playfabapi.com",
2424
logicServerUrl: null,

PlayFabSDK/PlayFabServerApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(!PlayFab.settings) {
1818
if(!PlayFab._internalSettings) {
1919
PlayFab._internalSettings = {
2020
sessionTicket: null,
21-
sdkVersion: "0.20.160613",
21+
sdkVersion: "0.21.160627",
2222
buildIdentifier: "jbuild_0",
2323
productionServerUrl: ".playfabapi.com",
2424
logicServerUrl: null,

0 commit comments

Comments
 (0)