Skip to content

Commit 8acb2e9

Browse files
author
PlayFabJenkinsBot
committed
https://api.playfab.com/releaseNotes/#180529
1 parent fc42e5d commit 8acb2e9

34 files changed

+619
-34
lines changed

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,8 @@ public static enum EntityTypes {
907907
master_player_account,
908908
title_player_account,
909909
character,
910-
group
910+
group,
911+
service
911912
}
912913

913914
public static class ExecuteCloudScriptRequest {
@@ -988,6 +989,8 @@ public static class FriendInfo {
988989
public UserGameCenterInfo GameCenterInfo;
989990
/** The profile of the user, if requested. */
990991
public PlayerProfileModel Profile;
992+
/** Available PSN information, if the user and PlayFab friend are both connected to PSN. */
993+
public UserPsnInfo PSNInfo;
991994
/** Available Steam information (if the user and PlayFab friend are also connected in Steam). */
992995
public UserSteamInfo SteamInfo;
993996
/** Tags which have been associated with this friend. */
@@ -996,6 +999,8 @@ public static class FriendInfo {
996999
public String TitleDisplayName;
9971000
/** PlayFab unique username for this friend. */
9981001
public String Username;
1002+
/** Available Xbox information, if the user and PlayFab friend are both connected to Xbox Live. */
1003+
public UserXboxInfo XboxInfo;
9991004

10001005
}
10011006

@@ -1233,6 +1238,8 @@ public static class GetFriendLeaderboardAroundPlayerRequest {
12331238
public String StatisticName;
12341239
/** The version of the leaderboard to get. */
12351240
public Integer Version;
1241+
/** Xbox token if Xbox friends should be included. Requires Xbox be configured on PlayFab. */
1242+
public String XboxToken;
12361243

12371244
}
12381245

@@ -1265,6 +1272,8 @@ public static class GetFriendLeaderboardRequest {
12651272
public String StatisticName;
12661273
/** The version of the leaderboard to get. */
12671274
public Integer Version;
1275+
/** Xbox token if Xbox friends should be included. Requires Xbox be configured on PlayFab. */
1276+
public String XboxToken;
12681277

12691278
}
12701279

@@ -1279,6 +1288,8 @@ public static class GetFriendsListRequest {
12791288
* the Game Manager "Client Profile Options" tab in the "Settings" section.
12801289
*/
12811290
public PlayerProfileViewConstraints ProfileConstraints;
1291+
/** Xbox token if Xbox friends should be included. Requires Xbox be configured on PlayFab. */
1292+
public String XboxToken;
12821293

12831294
}
12841295

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabEntityModels.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,8 @@ public static enum EntityTypes {
296296
master_player_account,
297297
title_player_account,
298298
character,
299-
group
299+
group,
300+
service
300301
}
301302

302303
/** Entity wrapper class that contains the entity key and the entities that make up the lineage of the entity. */

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,17 @@ public static enum PlayFabErrorCode {
379379
InvalidTokenResultFromAad(1375),
380380
NoValidCertificateForAad(1376),
381381
InvalidCertificateForAad(1377),
382-
DuplicateDropTableId(1378);
382+
DuplicateDropTableId(1378),
383+
ComputeOK(1379),
384+
ComputeAccepted(1380),
385+
ComputeNoContent(1381),
386+
ComputeBadRequest(1382),
387+
ComputeUnauthorized(1383),
388+
ComputeForbidden(1384),
389+
ComputeNotFound(1385),
390+
ComputeConflict(1386),
391+
ComputeInternalServerError(1387),
392+
ComputeServiceUnavailable(1388);
383393

384394
public int id;
385395

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
import com.playfab.PlayFabErrors.ErrorCallback;
55

66
public class PlayFabSettings {
7-
public static String SdkVersion = "0.66.180507";
8-
public static String BuildIdentifier = "jbuild_javasdk_1";
9-
public static String SdkVersionString = "JavaSDK-0.66.180507";
7+
public static String SdkVersion = "0.67.180529";
8+
public static String BuildIdentifier = "jbuild_javasdk_0";
9+
public static String SdkVersionString = "JavaSDK-0.67.180529";
1010

1111
public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
1212
public static ErrorCallback GlobalErrorHandler;

PlayFabClientSDK/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- GAV & Meta -->
1515
<groupId>com.playfab</groupId>
1616
<artifactId>client-sdk</artifactId>
17-
<version>0.66.180507</version>
17+
<version>0.67.180529</version>
1818
<name>PlayFab Client API</name>
1919
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
2020
<url>http://api.playfab.com/</url>

PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,8 @@ public static enum EntityTypes {
907907
master_player_account,
908908
title_player_account,
909909
character,
910-
group
910+
group,
911+
service
911912
}
912913

913914
public static class ExecuteCloudScriptRequest {
@@ -988,6 +989,8 @@ public static class FriendInfo {
988989
public UserGameCenterInfo GameCenterInfo;
989990
/** The profile of the user, if requested. */
990991
public PlayerProfileModel Profile;
992+
/** Available PSN information, if the user and PlayFab friend are both connected to PSN. */
993+
public UserPsnInfo PSNInfo;
991994
/** Available Steam information (if the user and PlayFab friend are also connected in Steam). */
992995
public UserSteamInfo SteamInfo;
993996
/** Tags which have been associated with this friend. */
@@ -996,6 +999,8 @@ public static class FriendInfo {
996999
public String TitleDisplayName;
9971000
/** PlayFab unique username for this friend. */
9981001
public String Username;
1002+
/** Available Xbox information, if the user and PlayFab friend are both connected to Xbox Live. */
1003+
public UserXboxInfo XboxInfo;
9991004

10001005
}
10011006

@@ -1233,6 +1238,8 @@ public static class GetFriendLeaderboardAroundPlayerRequest {
12331238
public String StatisticName;
12341239
/** The version of the leaderboard to get. */
12351240
public Integer Version;
1241+
/** Xbox token if Xbox friends should be included. Requires Xbox be configured on PlayFab. */
1242+
public String XboxToken;
12361243

12371244
}
12381245

@@ -1265,6 +1272,8 @@ public static class GetFriendLeaderboardRequest {
12651272
public String StatisticName;
12661273
/** The version of the leaderboard to get. */
12671274
public Integer Version;
1275+
/** Xbox token if Xbox friends should be included. Requires Xbox be configured on PlayFab. */
1276+
public String XboxToken;
12681277

12691278
}
12701279

@@ -1279,6 +1288,8 @@ public static class GetFriendsListRequest {
12791288
* the Game Manager "Client Profile Options" tab in the "Settings" section.
12801289
*/
12811290
public PlayerProfileViewConstraints ProfileConstraints;
1291+
/** Xbox token if Xbox friends should be included. Requires Xbox be configured on PlayFab. */
1292+
public String XboxToken;
12821293

12831294
}
12841295

PlayFabClientSDK/src/main/java/com/playfab/PlayFabEntityModels.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,8 @@ public static enum EntityTypes {
296296
master_player_account,
297297
title_player_account,
298298
character,
299-
group
299+
group,
300+
service
300301
}
301302

302303
/** Entity wrapper class that contains the entity key and the entities that make up the lineage of the entity. */

PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,17 @@ public static enum PlayFabErrorCode {
379379
InvalidTokenResultFromAad(1375),
380380
NoValidCertificateForAad(1376),
381381
InvalidCertificateForAad(1377),
382-
DuplicateDropTableId(1378);
382+
DuplicateDropTableId(1378),
383+
ComputeOK(1379),
384+
ComputeAccepted(1380),
385+
ComputeNoContent(1381),
386+
ComputeBadRequest(1382),
387+
ComputeUnauthorized(1383),
388+
ComputeForbidden(1384),
389+
ComputeNotFound(1385),
390+
ComputeConflict(1386),
391+
ComputeInternalServerError(1387),
392+
ComputeServiceUnavailable(1388);
383393

384394
public int id;
385395

PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
import com.playfab.PlayFabErrors.ErrorCallback;
44

55
public class PlayFabSettings {
6-
public static String SdkVersion = "0.66.180507";
7-
public static String BuildIdentifier = "jbuild_javasdk_1";
8-
public static String SdkVersionString = "JavaSDK-0.66.180507";
6+
public static String SdkVersion = "0.67.180529";
7+
public static String BuildIdentifier = "jbuild_javasdk_0";
8+
public static String SdkVersionString = "JavaSDK-0.67.180529";
99

1010
public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
1111
public static ErrorCallback GlobalErrorHandler;

PlayFabSDK/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- GAV & Meta -->
1515
<groupId>com.playfab</groupId>
1616
<artifactId>combo-sdk</artifactId>
17-
<version>0.66.180507</version>
17+
<version>0.67.180529</version>
1818
<name>PlayFab Combo API</name>
1919
<description>PlayFab is the unified backend platform for games — everything you need to build and operate your game, all in one place, so you can focus on creating and delivering a great player experience. </description>
2020
<url>http://api.playfab.com/</url>

0 commit comments

Comments
 (0)