Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes/#170814
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Aug 14, 2017
2 parents a7c1b68 + db6b008 commit f1cdcba
Show file tree
Hide file tree
Showing 27 changed files with 100 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,10 @@ public static class FriendInfo {
* Available Game Center information (if the user and PlayFab friend are also connected in Game Center).
*/
public UserGameCenterInfo GameCenterInfo;
/**
* The profile of the user, if requested.
*/
public PlayerProfileModel Profile;

}

Expand Down Expand Up @@ -1447,7 +1451,7 @@ public static class GetFriendLeaderboardAroundPlayerRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1495,7 +1499,7 @@ public static class GetFriendLeaderboardRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand All @@ -1510,6 +1514,10 @@ public static class GetFriendsListRequest {
* Indicates whether Facebook friends should be included in the response. Default is true.
*/
public Boolean IncludeFacebookFriends;
/**
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

}

Expand Down Expand Up @@ -1567,7 +1575,7 @@ public static class GetLeaderboardAroundPlayerRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1627,7 +1635,7 @@ public static class GetLeaderboardRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1816,7 +1824,7 @@ public static class GetPlayerProfileRequest {
*/
public String PlayFabId;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,11 @@ public static enum PlayFabErrorCode {
AccountDeleted(1322),
PlayerSecretNotConfigured(1323),
InvalidSignatureTime(1324),
NoContactEmailAddressFound(1325);
NoContactEmailAddressFound(1325),
InvalidAuthToken(1326),
AuthTokenDoesNotExist(1327),
AuthTokenExpired(1328),
AuthTokenAlreadyUsedToResetPassword(1329);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.53.170807";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.53.170807";
public static String SdkVersion = "0.54.170814";
public static String BuildIdentifier = "jbuild_javasdk_1";
public static String SdkVersionString = "JavaSDK-0.54.170814";

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)
public static ErrorCallback GlobalErrorHandler;
Expand Down
2 changes: 1 addition & 1 deletion PlayFabClientSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<inceptionYear>2016</inceptionYear>
<groupId>com.playfab</groupId>
<artifactId>client-sdk</artifactId>
<version>0.53.170807</version>
<version>0.54.170814</version>
<name>PlayFab Client API</name>
<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>
<url>http://api.playfab.com/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,10 @@ public static class FriendInfo {
* Available Game Center information (if the user and PlayFab friend are also connected in Game Center).
*/
public UserGameCenterInfo GameCenterInfo;
/**
* The profile of the user, if requested.
*/
public PlayerProfileModel Profile;

}

Expand Down Expand Up @@ -1447,7 +1451,7 @@ public static class GetFriendLeaderboardAroundPlayerRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1495,7 +1499,7 @@ public static class GetFriendLeaderboardRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand All @@ -1510,6 +1514,10 @@ public static class GetFriendsListRequest {
* Indicates whether Facebook friends should be included in the response. Default is true.
*/
public Boolean IncludeFacebookFriends;
/**
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

}

Expand Down Expand Up @@ -1567,7 +1575,7 @@ public static class GetLeaderboardAroundPlayerRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1627,7 +1635,7 @@ public static class GetLeaderboardRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1816,7 +1824,7 @@ public static class GetPlayerProfileRequest {
*/
public String PlayFabId;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,11 @@ public static enum PlayFabErrorCode {
AccountDeleted(1322),
PlayerSecretNotConfigured(1323),
InvalidSignatureTime(1324),
NoContactEmailAddressFound(1325);
NoContactEmailAddressFound(1325),
InvalidAuthToken(1326),
AuthTokenDoesNotExist(1327),
AuthTokenExpired(1328),
AuthTokenAlreadyUsedToResetPassword(1329);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.53.170807";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.53.170807";
public static String SdkVersion = "0.54.170814";
public static String BuildIdentifier = "jbuild_javasdk_1";
public static String SdkVersionString = "JavaSDK-0.54.170814";

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)
public static ErrorCallback GlobalErrorHandler;
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<inceptionYear>2016</inceptionYear>
<groupId>com.playfab</groupId>
<artifactId>combo-sdk</artifactId>
<version>0.53.170807</version>
<version>0.54.170814</version>
<name>PlayFab Combo API</name>
<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>
<url>http://api.playfab.com/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3565,7 +3565,7 @@ public static class UpdateUserTitleDisplayNameRequest {
*/
public String PlayFabId;
/**
* new title display name for the user - must be between 3 and 25 characters
* New title display name for the user - must be between 3 and 25 characters
*/
public String DisplayName;

Expand Down
18 changes: 13 additions & 5 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,10 @@ public static class FriendInfo {
* Available Game Center information (if the user and PlayFab friend are also connected in Game Center).
*/
public UserGameCenterInfo GameCenterInfo;
/**
* The profile of the user, if requested.
*/
public PlayerProfileModel Profile;

}

Expand Down Expand Up @@ -1447,7 +1451,7 @@ public static class GetFriendLeaderboardAroundPlayerRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1495,7 +1499,7 @@ public static class GetFriendLeaderboardRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand All @@ -1510,6 +1514,10 @@ public static class GetFriendsListRequest {
* Indicates whether Facebook friends should be included in the response. Default is true.
*/
public Boolean IncludeFacebookFriends;
/**
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

}

Expand Down Expand Up @@ -1567,7 +1575,7 @@ public static class GetLeaderboardAroundPlayerRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1627,7 +1635,7 @@ public static class GetLeaderboardRequest {
*/
public Integer Version;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down Expand Up @@ -1816,7 +1824,7 @@ public static class GetPlayerProfileRequest {
*/
public String PlayFabId;
/**
* If non-null, this determines which properties of the profile to return. If null, playfab will only include display names. For API calls from the client, only ShowDisplayName, ShowAvatarUrl are allowed at this time.
* If non-null, this determines which properties of the resulting player profiles to return. For API calls from the client, only the allowed client profile properties for the title may be requested. These allowed properties are configured in the Game Manager "Client Profile Options" tab in the "Settings" section.
*/
public PlayerProfileViewConstraints ProfileConstraints;

Expand Down
6 changes: 5 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,11 @@ public static enum PlayFabErrorCode {
AccountDeleted(1322),
PlayerSecretNotConfigured(1323),
InvalidSignatureTime(1324),
NoContactEmailAddressFound(1325);
NoContactEmailAddressFound(1325),
InvalidAuthToken(1326),
AuthTokenDoesNotExist(1327),
AuthTokenExpired(1328),
AuthTokenAlreadyUsedToResetPassword(1329);

public int id;

Expand Down
Loading

0 comments on commit f1cdcba

Please sign in to comment.