Skip to content

Commit da3148d

Browse files
author
PlayFabJenkinsBot
committed
https://api.playfab.com/releaseNotes/#180122
1 parent 249f9fb commit da3148d

File tree

11 files changed

+28
-16
lines changed

11 files changed

+28
-16
lines changed

PlayFabSdk/package.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "playfab-web-sdk",
3+
"version": "1.17.180122",
4+
"description": "Playfab SDK for JS client applications",
5+
"license": "Apache-2.0",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/playfab/JavaScriptSDK"
9+
}
10+
}

PlayFabSdk/src/PlayFab/PlayFabAdminApi.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24+
sdkVersion: "1.17.180122",
2425
sessionTicket: null,
2526
productionServerUrl: ".playfabapi.com",
2627
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -125,7 +126,7 @@ if(!PlayFab._internalSettings) {
125126
}
126127

127128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
128-
PlayFab.sdkVersion = "1.17.171127";
129+
PlayFab.sdkVersion = "1.17.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

PlayFabSdk/src/PlayFab/PlayFabClientApi.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24+
sdkVersion: "1.17.180122",
2425
sessionTicket: null,
2526
productionServerUrl: ".playfabapi.com",
2627
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -125,7 +126,7 @@ if(!PlayFab._internalSettings) {
125126
}
126127

127128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
128-
PlayFab.sdkVersion = "1.17.171127";
129+
PlayFab.sdkVersion = "1.17.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

PlayFabSdk/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24+
sdkVersion: "1.17.180122",
2425
sessionTicket: null,
2526
productionServerUrl: ".playfabapi.com",
2627
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -125,7 +126,7 @@ if(!PlayFab._internalSettings) {
125126
}
126127

127128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
128-
PlayFab.sdkVersion = "1.17.171127";
129+
PlayFab.sdkVersion = "1.17.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

PlayFabSdk/src/PlayFab/PlayFabServerApi.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24+
sdkVersion: "1.17.180122",
2425
sessionTicket: null,
2526
productionServerUrl: ".playfabapi.com",
2627
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -125,7 +126,7 @@ if(!PlayFab._internalSettings) {
125126
}
126127

127128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
128-
PlayFab.sdkVersion = "1.17.171127";
129+
PlayFab.sdkVersion = "1.17.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

PlayFabTestingExample/PlayFabApiTest.js

Lines changed: 1 addition & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PlayFabTestingExample/PlayFabApiTest.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ var PlayFabApiTests = {
1010
titleId: null, // put titleId here
1111
developerSecretKey: null, // put secretKey here
1212
userEmail: "put valid email associated with an existing account here",
13-
characterName: "put any character name here",
1413
extraHeaders: {}
1514
},
1615
testData: {
@@ -89,8 +88,7 @@ var PlayFabApiTests = {
8988
// All of these must exist for the titleData load to be successful
9089
var titleDataValid = inputTitleData.hasOwnProperty("titleId") && inputTitleData.titleId != null
9190
&& inputTitleData.hasOwnProperty("developerSecretKey") && inputTitleData.developerSecretKey != null
92-
&& inputTitleData.hasOwnProperty("userEmail")
93-
&& inputTitleData.hasOwnProperty("characterName");
91+
&& inputTitleData.hasOwnProperty("userEmail");
9492

9593
if (titleDataValid)
9694
PlayFabApiTests.titleData = inputTitleData;

PlayFabTestingExample/src/PlayFab/PlayFabAdminApi.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24+
sdkVersion: "1.17.180122",
2425
sessionTicket: null,
2526
productionServerUrl: ".playfabapi.com",
2627
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -125,7 +126,7 @@ if(!PlayFab._internalSettings) {
125126
}
126127

127128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
128-
PlayFab.sdkVersion = "1.17.171127";
129+
PlayFab.sdkVersion = "1.17.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

PlayFabTestingExample/src/PlayFab/PlayFabClientApi.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24+
sdkVersion: "1.17.180122",
2425
sessionTicket: null,
2526
productionServerUrl: ".playfabapi.com",
2627
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -125,7 +126,7 @@ if(!PlayFab._internalSettings) {
125126
}
126127

127128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
128-
PlayFab.sdkVersion = "1.17.171127";
129+
PlayFab.sdkVersion = "1.17.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

PlayFabTestingExample/src/PlayFab/PlayFabMatchmakerApi.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if(!PlayFab.settings) {
2121
if(!PlayFab._internalSettings) {
2222
PlayFab._internalSettings = {
2323
entityToken: null,
24+
sdkVersion: "1.17.180122",
2425
sessionTicket: null,
2526
productionServerUrl: ".playfabapi.com",
2627
errorTitleId: "Must be have PlayFab.settings.titleId set to call this method",
@@ -125,7 +126,7 @@ if(!PlayFab._internalSettings) {
125126
}
126127

127128
PlayFab.buildIdentifier = "jbuild_javascriptsdk_0";
128-
PlayFab.sdkVersion = "1.17.171127";
129+
PlayFab.sdkVersion = "1.17.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

0 commit comments

Comments
 (0)