Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes/#190410
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Apr 10, 2019
2 parents 9a015f2 + 0899a02 commit 8a018f6
Show file tree
Hide file tree
Showing 24 changed files with 1,412 additions and 1,667 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,7 @@ public static enum PlayFabErrorCode {
CannotEnableMultiplayerServersForTitle(1443),
WriteAttemptedDuringExport(1444),
MultiplayerServerTitleQuotaCoresExceeded(1445),
AutomationRuleNotFound(1446),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand All @@ -464,6 +465,7 @@ public static enum PlayFabErrorCode {
MatchmakingRateLimitExceeded(2054),
MatchmakingTicketMembershipLimitExceeded(2055),
MatchmakingUnauthorized(2056),
MatchmakingQueueLimitExceeded(2057),
TitleConfigNotFound(3001),
TitleConfigUpdateConflict(3002),
TitleConfigSerializationError(3003),
Expand All @@ -481,13 +483,27 @@ public static enum PlayFabErrorCode {
CatalogConfigContentTypeTooLong(4102),
CatalogConfigTooManyTags(4103),
CatalogConfigTagTooLong(4104),
CatalogConfigInvalidDeepLinkObject(4105),
CatalogConfigInvalidDeepLinkPlatform(4106),
CatalogConfigInvalidDeepLinkFormat(4107),
CatalogConfigInvalidDisplayPropertyObject(4108),
CatalogConfigInvalidDisplayPropertyName(4109),
CatalogConfigInvalidDisplayPropertyType(4110),
CatalogConfigDisplayPropertyMappingLimit(4111),
ExportInvalidStatusUpdate(5000),
ExportInvalidPrefix(5001),
ExportBlobContainerDoesNotExist(5002),
ExportEventNameNotFound(5003),
ExportExportTitleIdNotFound(5004),
ExportCouldNotUpdate(5005),
ExportInvalidStorageType(5006);
ExportInvalidStorageType(5006),
ExportAmazonBucketDoesNotExist(5007),
ExportInvalidBlobStorage(5008),
ExportKustoException(5009),
ExportKustoExceptionNew_SomeResources(5010),
ExportKustoExceptionEdit(5011),
ExportKustoConnectionFailed(5012),
ExportUnknownError(5013);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ public static class EntityProfileBody {
* profile, not global statements from titles and namespaces.
*/
public ArrayList<EntityPermissionStatement> Permissions;
/** The statistics on this profile. */
public Map<String,EntityStatisticValue> Statistics;
/**
* The version number of the profile in persistent storage at the time of the read. Used for optional optimistic
* concurrency during update.
Expand All @@ -108,6 +110,30 @@ public static class EntityProfileFileMetadata {

}

public static class EntityStatisticChildValue {
/** Child name value, if child statistic */
public String ChildName;
/** Child statistic metadata */
public String Metadata;
/** Child statistic value */
public Integer Value;

}

public static class EntityStatisticValue {
/** Child statistic values */
public Map<String,EntityStatisticChildValue> ChildStatistics;
/** Statistic metadata */
public String Metadata;
/** Statistic name */
public String Name;
/** Statistic value */
public Integer Value;
/** Statistic version */
public Integer Version;

}

/**
* Given an entity type and entity identifier will retrieve the profile from the entity store. If the profile being
* retrieved is the caller's, then the read operation is consistent, if not it is an inconsistent read. An inconsistent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.87.190312";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-2_0";
public static String SdkVersionString = "JavaSDK-0.87.190312";
public static String SdkVersion = "0.88.190410";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-2_2";
public static String SdkVersionString = "JavaSDK-0.88.190410";

public static Map<String, String> RequestGetParams;
static {
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.87.190312</version>
<version>0.88.190410</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
Loading

0 comments on commit 8a018f6

Please sign in to comment.