Skip to content

Commit 020a6d4

Browse files
author
PlayFabJenkinsBot
committed
https://api.playfab.com/releaseNotes/#180122
2 parents 05f70b4 + 3ab081f commit 020a6d4

File tree

14 files changed

+52
-49
lines changed

14 files changed

+52
-49
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.18.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.18.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.18.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.18.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.18.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.18.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.18.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.18.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.18.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;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
2+
3+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
4+
5+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
6+
7+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8+
9+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

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.18.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.18.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.18.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.18.180122";
129130
PlayFab.GenerateErrorReport = function (error) {
130131
if (error == null)
131132
return "";

0 commit comments

Comments
 (0)