Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes/#180409
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Apr 9, 2018
2 parents 959ba47 + 51fc9d0 commit 9fd8309
Show file tree
Hide file tree
Showing 31 changed files with 127 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3731,6 +3731,8 @@ public static class UserTitleInfo {
public Date LastLogin;
/** source by which the user first joined the game, if known */
public UserOrigination Origination;
/** Title player account entity for this user */
public EntityKey TitlePlayerAccount;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ public static enum PlayFabErrorCode {
RoleNameNotAvailable(1367),
GroupNameNotAvailable(1368),
EmailReportAlreadySent(1369),
EmailReportRecipientBlacklisted(1370);
EmailReportRecipientBlacklisted(1370),
EventNamespaceNotAllowed(1371),
EventEntityNotAllowed(1372);

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.65.180316";
public static String SdkVersion = "0.65.180409";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.65.180316";
public static String SdkVersionString = "JavaSDK-0.65.180409";

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
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static void oneTimeSetUp() {
TitleData resultData = gson.fromJson(testTitleJson, new TypeToken<TitleData>(){}.getType());
PlayFabSettings.TitleId = resultData.titleId;
USER_EMAIL = resultData.userEmail;

PlayFabSettings.DeveloperSecretKey = resultData.developerSecretKey;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion PlayFabClientSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- GAV & Meta -->
<groupId>com.playfab</groupId>
<artifactId>client-sdk</artifactId>
<version>0.65.180316</version>
<version>0.65.180409</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 @@ -3731,6 +3731,8 @@ public static class UserTitleInfo {
public Date LastLogin;
/** source by which the user first joined the game, if known */
public UserOrigination Origination;
/** Title player account entity for this user */
public EntityKey TitlePlayerAccount;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ public static enum PlayFabErrorCode {
RoleNameNotAvailable(1367),
GroupNameNotAvailable(1368),
EmailReportAlreadySent(1369),
EmailReportRecipientBlacklisted(1370);
EmailReportRecipientBlacklisted(1370),
EventNamespaceNotAllowed(1371),
EventEntityNotAllowed(1372);

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.65.180316";
public static String SdkVersion = "0.65.180409";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.65.180316";
public static String SdkVersionString = "JavaSDK-0.65.180409";

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
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static void oneTimeSetUp() {
TitleData resultData = gson.fromJson(testTitleJson, new TypeToken<TitleData>(){}.getType());
PlayFabSettings.TitleId = resultData.titleId;
USER_EMAIL = resultData.userEmail;

PlayFabSettings.DeveloperSecretKey = resultData.developerSecretKey;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- GAV & Meta -->
<groupId>com.playfab</groupId>
<artifactId>combo-sdk</artifactId>
<version>0.65.180316</version>
<version>0.65.180409</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
25 changes: 24 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,25 @@ public static class EmptyResult {

}

/** Entity identifier class that contains both the ID and type. */
public static class EntityKey {
/** Entity profile ID. */
public String Id;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public EntityTypes Type;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public String TypeString;

}

public static enum EntityTypes {
title,
master_player_account,
title_player_account,
character,
group
}

public static class ExecuteCloudScriptResult {
/** Number of PlayFab API requests issued by the CloudScript function */
public Integer APIRequestsIssued;
Expand Down Expand Up @@ -1444,7 +1463,9 @@ public static enum GenericErrorCodes {
RoleNameNotAvailable,
GroupNameNotAvailable,
EmailReportAlreadySent,
EmailReportRecipientBlacklisted
EmailReportRecipientBlacklisted,
EventNamespaceNotAllowed,
EventEntityNotAllowed
}

public static class GetActionsOnPlayersInSegmentTaskInstanceResult {
Expand Down Expand Up @@ -3527,6 +3548,8 @@ public static class UserTitleInfo {
public Date LastLogin;
/** source by which the user first joined the game, if known */
public UserOrigination Origination;
/** Title player account entity for this user */
public EntityKey TitlePlayerAccount;

}

Expand Down
2 changes: 2 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -3731,6 +3731,8 @@ public static class UserTitleInfo {
public Date LastLogin;
/** source by which the user first joined the game, if known */
public UserOrigination Origination;
/** Title player account entity for this user */
public EntityKey TitlePlayerAccount;

}

Expand Down
4 changes: 3 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ public static enum PlayFabErrorCode {
RoleNameNotAvailable(1367),
GroupNameNotAvailable(1368),
EmailReportAlreadySent(1369),
EmailReportRecipientBlacklisted(1370);
EmailReportRecipientBlacklisted(1370),
EventNamespaceNotAllowed(1371),
EventEntityNotAllowed(1372);

public int id;

Expand Down
25 changes: 24 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,25 @@ public static class EmptyResult {

}

/** Entity identifier class that contains both the ID and type. */
public static class EntityKey {
/** Entity profile ID. */
public String Id;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public EntityTypes Type;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public String TypeString;

}

public static enum EntityTypes {
title,
master_player_account,
title_player_account,
character,
group
}

public static class EvaluateRandomResultTableRequest {
/**
* Specifies the catalog version that should be used to evaluate the Random Result Table. If unspecified, uses
Expand Down Expand Up @@ -1357,7 +1376,9 @@ public static enum GenericErrorCodes {
RoleNameNotAvailable,
GroupNameNotAvailable,
EmailReportAlreadySent,
EmailReportRecipientBlacklisted
EmailReportRecipientBlacklisted,
EventNamespaceNotAllowed,
EventEntityNotAllowed
}

public static class GetAllSegmentsRequest {
Expand Down Expand Up @@ -3554,6 +3575,8 @@ public static class UserTitleInfo {
public Date LastLogin;
/** source by which the user first joined the game, if known */
public UserOrigination Origination;
/** Title player account entity for this user */
public EntityKey TitlePlayerAccount;

}

Expand Down
4 changes: 2 additions & 2 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java
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.65.180316";
public static String SdkVersion = "0.65.180409";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.65.180316";
public static String SdkVersionString = "JavaSDK-0.65.180409";

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
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ public static void oneTimeSetUp() {
PlayFabSettings.TitleId = resultData.titleId;
USER_EMAIL = resultData.userEmail;
PlayFabSettings.DeveloperSecretKey = resultData.developerSecretKey;

}

/**
Expand Down
2 changes: 1 addition & 1 deletion PlayFabServerSDK/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!-- GAV & Meta -->
<groupId>com.playfab</groupId>
<artifactId>server-sdk</artifactId>
<version>0.65.180316</version>
<version>0.65.180409</version>
<name>PlayFab Server 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 @@ -1026,6 +1026,25 @@ public static class EmptyResult {

}

/** Entity identifier class that contains both the ID and type. */
public static class EntityKey {
/** Entity profile ID. */
public String Id;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public EntityTypes Type;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public String TypeString;

}

public static enum EntityTypes {
title,
master_player_account,
title_player_account,
character,
group
}

public static class ExecuteCloudScriptResult {
/** Number of PlayFab API requests issued by the CloudScript function */
public Integer APIRequestsIssued;
Expand Down Expand Up @@ -1444,7 +1463,9 @@ public static enum GenericErrorCodes {
RoleNameNotAvailable,
GroupNameNotAvailable,
EmailReportAlreadySent,
EmailReportRecipientBlacklisted
EmailReportRecipientBlacklisted,
EventNamespaceNotAllowed,
EventEntityNotAllowed
}

public static class GetActionsOnPlayersInSegmentTaskInstanceResult {
Expand Down Expand Up @@ -3527,6 +3548,8 @@ public static class UserTitleInfo {
public Date LastLogin;
/** source by which the user first joined the game, if known */
public UserOrigination Origination;
/** Title player account entity for this user */
public EntityKey TitlePlayerAccount;

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,9 @@ public static enum PlayFabErrorCode {
RoleNameNotAvailable(1367),
GroupNameNotAvailable(1368),
EmailReportAlreadySent(1369),
EmailReportRecipientBlacklisted(1370);
EmailReportRecipientBlacklisted(1370),
EventNamespaceNotAllowed(1371),
EventEntityNotAllowed(1372);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,25 @@ public static class EmptyResult {

}

/** Entity identifier class that contains both the ID and type. */
public static class EntityKey {
/** Entity profile ID. */
public String Id;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public EntityTypes Type;
/** Entity type. Optional to be used but one of EntityType or EntityTypeString must be set. */
public String TypeString;

}

public static enum EntityTypes {
title,
master_player_account,
title_player_account,
character,
group
}

public static class EvaluateRandomResultTableRequest {
/**
* Specifies the catalog version that should be used to evaluate the Random Result Table. If unspecified, uses
Expand Down Expand Up @@ -1357,7 +1376,9 @@ public static enum GenericErrorCodes {
RoleNameNotAvailable,
GroupNameNotAvailable,
EmailReportAlreadySent,
EmailReportRecipientBlacklisted
EmailReportRecipientBlacklisted,
EventNamespaceNotAllowed,
EventEntityNotAllowed
}

public static class GetAllSegmentsRequest {
Expand Down Expand Up @@ -3554,6 +3575,8 @@ public static class UserTitleInfo {
public Date LastLogin;
/** source by which the user first joined the game, if known */
public UserOrigination Origination;
/** Title player account entity for this user */
public EntityKey TitlePlayerAccount;

}

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.65.180316";
public static String SdkVersion = "0.65.180409";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.65.180316";
public static String SdkVersionString = "JavaSDK-0.65.180409";

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
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ public static void oneTimeSetUp() {
PlayFabSettings.TitleId = resultData.titleId;
USER_EMAIL = resultData.userEmail;
PlayFabSettings.DeveloperSecretKey = resultData.developerSecretKey;

}

/**
Expand Down
Binary file removed builds/client-sdk-0.65.180316-javadoc.jar
Binary file not shown.
Binary file added builds/client-sdk-0.65.180409-javadoc.jar
Binary file not shown.
Binary file not shown.
Binary file removed builds/combo-sdk-0.65.180316-javadoc.jar
Binary file not shown.
Binary file added builds/combo-sdk-0.65.180409-javadoc.jar
Binary file not shown.
Binary file not shown.
Binary file removed builds/server-sdk-0.65.180316-javadoc.jar
Binary file not shown.
Binary file added builds/server-sdk-0.65.180409-javadoc.jar
Binary file not shown.
Binary file not shown.

0 comments on commit 9fd8309

Please sign in to comment.