Skip to content

Commit 55281be

Browse files
https://api.playfab.com/releaseNotes/#190205
2 parents cc8312d + 6a52d55 commit 55281be

33 files changed

+265
-103
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.38.190123",
3+
"version": "1.39.190205",
44
"description": "Playfab SDK for JS client applications",
55
"license": "Apache-2.0",
66
"repository": {

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 8 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";
@@ -179,6 +179,11 @@ PlayFab.AdminApi = {
179179
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/AbortTaskInstance", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
180180
},
181181

182+
AddLocalizedNews: function (request, callback, customData, extraHeaders) {
183+
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
184+
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/AddLocalizedNews", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);
185+
},
186+
182187
AddNews: function (request, callback, customData, extraHeaders) {
183188
if (!PlayFab.settings.developerSecretKey) throw PlayFab._internalSettings.errorSecretKey;
184189
PlayFab._internalSettings.ExecuteRequest(PlayFab._internalSettings.GetServerUrl() + "/Admin/AddNews", request, "X-SecretKey", PlayFab.settings.developerSecretKey, callback, customData, extraHeaders);

PlayFabSdk/src/PlayFab/PlayFabAuthenticationApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabCloudScriptApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabDataApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabEventsApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabGroupsApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabLocalizationApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

PlayFabSdk/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 3 additions & 3 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.38.190123",
24+
sdkVersion: "1.39.190205",
2525
requestGetParams: {
26-
sdk: "JavaScriptSDK-1.38.190123"
26+
sdk: "JavaScriptSDK-1.39.190205"
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
@@ -157,7 +157,7 @@ if(!PlayFab._internalSettings) {
157157
}
158158

159159
PlayFab.buildIdentifier = "jbuild_javascriptsdk__sdk-genericslave-3_1";
160-
PlayFab.sdkVersion = "1.38.190123";
160+
PlayFab.sdkVersion = "1.39.190205";
161161
PlayFab.GenerateErrorReport = function (error) {
162162
if (error == null)
163163
return "";

0 commit comments

Comments
 (0)