Skip to content

Commit cc40800

Browse files
author
Playfab Jenkins Bot
committed
https://api.playfab.com/releaseNotes/#161107
2 parents a75d484 + 88a19b5 commit cc40800

File tree

17 files changed

+3527
-27
lines changed

17 files changed

+3527
-27
lines changed

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

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ public static class CatalogItem implements Comparable<CatalogItem> {
288288
*/
289289
public Boolean IsLimitedEdition;
290290
/**
291-
* BETA: If IsLImitedEdition is true, then this determines amount of the item initially available. Note that this fieldis ignored if the catalog item already existed in this catalog, or the field is less than 1.
291+
* If IsLImitedEdition is true, then this determines amount of the item initially available. Note that this fieldis ignored if the catalog item already existed in this catalog, or the field is less than 1.
292292
*/
293293
public Integer InitialLimitedEditionCount;
294294

@@ -898,6 +898,14 @@ public static class GameInfo {
898898
* last heartbeat of the game server instance, used in external game server provider mode
899899
*/
900900
public Date LastHeartbeat;
901+
/**
902+
* IP address of the server
903+
*/
904+
public String ServerHostname;
905+
/**
906+
* port number to use for non-http communications with the server
907+
*/
908+
public Integer ServerPort;
901909

902910
}
903911

@@ -964,7 +972,7 @@ public static class GetAccountInfoRequest {
964972
*/
965973
public String Email;
966974
/**
967-
* Title-specific username for the account to find (if no Email is set).
975+
* Title-specific username for the account to find (if no Email is set). Note that if the non-unique Title Display Names option is enabled for the title, attempts to look up users by Title Display Name will always return AccountNotFound.
968976
*/
969977
public String TitleDisplayName;
970978

@@ -2906,6 +2914,10 @@ public static class RedeemCouponRequest {
29062914
* Catalog version of the coupon. If null, uses the default catalog
29072915
*/
29082916
public String CatalogVersion;
2917+
/**
2918+
* Optional identifier for the Character that should receive the item. If null, item is added to the player
2919+
*/
2920+
public String CharacterId;
29092921

29102922
}
29112923

@@ -4177,7 +4189,7 @@ public static class WriteClientPlayerEventRequest {
41774189

41784190
public static class WriteEventResponse {
41794191
/**
4180-
* The unique identifier of the event. This can be used to retrieve the event's properties using the GetEvent API. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
4192+
* The unique identifier of the event. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
41814193
*/
41824194
public String EventId;
41834195

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,11 @@ public static enum PlayFabErrorCode {
259259
ScheduledTaskCreateConflict(1255),
260260
InvalidScheduledTaskName(1256),
261261
InvalidTaskSchedule(1257),
262-
SteamNotEnabledForTitle(1258);
262+
SteamNotEnabledForTitle(1258),
263+
LimitNotAnUpgradeOption(1259),
264+
NoSecretKeyEnabledForCloudScript(1260),
265+
TaskNotFound(1261),
266+
TaskInstanceNotFound(1262);
263267

264268
public int id;
265269

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

Lines changed: 2 additions & 2 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.39.161017";
7+
public static String SdkVersion = "0.40.161107";
88
public static String BuildIdentifier = "jbuild_javasdk_1";
9-
public static String SdkVersionString = "JavaSDK-0.39.161017";
9+
public static String SdkVersionString = "JavaSDK-0.40.161107";
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/src/com/playfab/PlayFabClientModels.java

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ public static class CatalogItem implements Comparable<CatalogItem> {
288288
*/
289289
public Boolean IsLimitedEdition;
290290
/**
291-
* BETA: If IsLImitedEdition is true, then this determines amount of the item initially available. Note that this fieldis ignored if the catalog item already existed in this catalog, or the field is less than 1.
291+
* If IsLImitedEdition is true, then this determines amount of the item initially available. Note that this fieldis ignored if the catalog item already existed in this catalog, or the field is less than 1.
292292
*/
293293
public Integer InitialLimitedEditionCount;
294294

@@ -898,6 +898,14 @@ public static class GameInfo {
898898
* last heartbeat of the game server instance, used in external game server provider mode
899899
*/
900900
public Date LastHeartbeat;
901+
/**
902+
* IP address of the server
903+
*/
904+
public String ServerHostname;
905+
/**
906+
* port number to use for non-http communications with the server
907+
*/
908+
public Integer ServerPort;
901909

902910
}
903911

@@ -964,7 +972,7 @@ public static class GetAccountInfoRequest {
964972
*/
965973
public String Email;
966974
/**
967-
* Title-specific username for the account to find (if no Email is set).
975+
* Title-specific username for the account to find (if no Email is set). Note that if the non-unique Title Display Names option is enabled for the title, attempts to look up users by Title Display Name will always return AccountNotFound.
968976
*/
969977
public String TitleDisplayName;
970978

@@ -2906,6 +2914,10 @@ public static class RedeemCouponRequest {
29062914
* Catalog version of the coupon. If null, uses the default catalog
29072915
*/
29082916
public String CatalogVersion;
2917+
/**
2918+
* Optional identifier for the Character that should receive the item. If null, item is added to the player
2919+
*/
2920+
public String CharacterId;
29092921

29102922
}
29112923

@@ -4177,7 +4189,7 @@ public static class WriteClientPlayerEventRequest {
41774189

41784190
public static class WriteEventResponse {
41794191
/**
4180-
* The unique identifier of the event. This can be used to retrieve the event's properties using the GetEvent API. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
4192+
* The unique identifier of the event. The values of this identifier consist of ASCII characters and are not constrained to any particular format.
41814193
*/
41824194
public String EventId;
41834195

PlayFabClientSDK/src/com/playfab/PlayFabErrors.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,11 @@ public static enum PlayFabErrorCode {
259259
ScheduledTaskCreateConflict(1255),
260260
InvalidScheduledTaskName(1256),
261261
InvalidTaskSchedule(1257),
262-
SteamNotEnabledForTitle(1258);
262+
SteamNotEnabledForTitle(1258),
263+
LimitNotAnUpgradeOption(1259),
264+
NoSecretKeyEnabledForCloudScript(1260),
265+
TaskNotFound(1261),
266+
TaskInstanceNotFound(1262);
263267

264268
public int id;
265269

PlayFabClientSDK/src/com/playfab/PlayFabSettings.java

Lines changed: 2 additions & 2 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.39.161017";
6+
public static String SdkVersion = "0.40.161107";
77
public static String BuildIdentifier = "jbuild_javasdk_1";
8-
public static String SdkVersionString = "JavaSDK-0.39.161017";
8+
public static String SdkVersionString = "JavaSDK-0.40.161107";
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;

0 commit comments

Comments
 (0)