Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes/#191001
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Oct 1, 2019
2 parents 166ff1e + 8e2069a commit f523f19
Show file tree
Hide file tree
Showing 35 changed files with 160 additions and 75 deletions.
2 changes: 1 addition & 1 deletion AndroidStudioExample/app/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item client-sdk-0.98.190916.jar -Destination ../../builds/client-sdk-0.98.190916.jar
Copy-Item client-sdk-0.99.191001.jar -Destination ../../builds/client-sdk-0.99.191001.jar
2 changes: 1 addition & 1 deletion AndroidStudioExample/app/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp client-sdk-0.98.190916.jar ../../builds/client-sdk-0.98.190916.jar
cp client-sdk-0.99.191001.jar ../../builds/client-sdk-0.99.191001.jar
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,11 @@ public static class GetLeaderboardForUsersCharactersRequest {

}

/** Note that the Position of the character in the results is for the overall leaderboard. */
/**
* NOTE: The position of the character in the results is relative to the other characters for that specific user. This mean
* the values will always be between 0 and one less than the number of characters returned regardless of the size of the
* actual leaderboard.
*/
public static class GetLeaderboardForUsersCharactersResult {
/** Ordered list of leaderboard entries. */
public ArrayList<CharacterLeaderboardEntry> Leaderboard;
Expand Down Expand Up @@ -2182,7 +2186,10 @@ public static class ItemInstance implements Comparable<ItemInstance> {
public String BundleParent;
/** Catalog version for the inventory item, when this instance was created. */
public String CatalogVersion;
/** A set of custom key-value pairs on the inventory item. */
/**
* A set of custom key-value pairs on the instance of the inventory item, which is not to be confused with the catalog
* item's custom data.
*/
public Map<String,String> CustomData;
/** CatalogItem.DisplayName at the time this item was purchased. */
public String DisplayName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1519,7 +1519,8 @@ private static PlayFabResult<ListAssetSummariesResponse> privateListAssetSummari
}

/**
* Lists summarized details of all multiplayer server builds for a title.
* Lists summarized details of all multiplayer server builds for a title. Accepts tokens for title and if game client
* access is enabled, allows game client to request list of builds with player entity token.
* @param request ListBuildSummariesRequest
* @return Async Task will return ListBuildSummariesResponse
*/
Expand All @@ -1533,7 +1534,8 @@ public PlayFabResult<ListBuildSummariesResponse> call() throws Exception {
}

/**
* Lists summarized details of all multiplayer server builds for a title.
* Lists summarized details of all multiplayer server builds for a title. Accepts tokens for title and if game client
* access is enabled, allows game client to request list of builds with player entity token.
* @param request ListBuildSummariesRequest
* @return ListBuildSummariesResponse
*/
Expand All @@ -1552,7 +1554,10 @@ public PlayFabResult<ListBuildSummariesResponse> call() throws Exception {
}
}

/** Lists summarized details of all multiplayer server builds for a title. */
/**
* Lists summarized details of all multiplayer server builds for a title. Accepts tokens for title and if game client
* access is enabled, allows game client to request list of builds with player entity token.
*/
@SuppressWarnings("unchecked")
private static PlayFabResult<ListBuildSummariesResponse> privateListBuildSummariesAsync(final ListBuildSummariesRequest request) throws Exception {
if (PlayFabSettings.EntityToken == null) throw new Exception ("Must call GetEntityToken before you can use the Entity API");
Expand Down Expand Up @@ -2118,7 +2123,7 @@ private static PlayFabResult<ListVirtualMachineSummariesResponse> privateListVir
}

/**
* Request a multiplayer server session. Accepts tokens for title and if game client accesss is enabled, allows game client
* Request a multiplayer server session. Accepts tokens for title and if game client access is enabled, allows game client
* to request a server with player entity token.
* @param request RequestMultiplayerServerRequest
* @return Async Task will return RequestMultiplayerServerResponse
Expand All @@ -2133,7 +2138,7 @@ public PlayFabResult<RequestMultiplayerServerResponse> call() throws Exception {
}

/**
* Request a multiplayer server session. Accepts tokens for title and if game client accesss is enabled, allows game client
* Request a multiplayer server session. Accepts tokens for title and if game client access is enabled, allows game client
* to request a server with player entity token.
* @param request RequestMultiplayerServerRequest
* @return RequestMultiplayerServerResponse
Expand All @@ -2154,7 +2159,7 @@ public PlayFabResult<RequestMultiplayerServerResponse> call() throws Exception {
}

/**
* Request a multiplayer server session. Accepts tokens for title and if game client accesss is enabled, allows game client
* Request a multiplayer server session. Accepts tokens for title and if game client access is enabled, allows game client
* to request a server with player entity token.
*/
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public static class CreateBuildWithCustomContainerRequest {
public ArrayList<GameCertificateReferenceParams> GameCertificateReferences;
/**
* Metadata to tag the build. The keys are case insensitive. The build metadata is made available to the server through
* Game Server SDK (GSDK).
* Game Server SDK (GSDK).Constraints: Maximum number of keys: 30, Maximum key length: 50, Maximum value length: 100
*/
public Map<String,String> Metadata;
/** The number of multiplayer servers to host on a single VM. */
Expand Down Expand Up @@ -298,7 +298,7 @@ public static class CreateBuildWithManagedContainerRequest {
public InstrumentationConfiguration InstrumentationConfiguration;
/**
* Metadata to tag the build. The keys are case insensitive. The build metadata is made available to the server through
* Game Server SDK (GSDK).
* Game Server SDK (GSDK).Constraints: Maximum number of keys: 30, Maximum key length: 50, Maximum value length: 100
*/
public Map<String,String> Metadata;
/** The number of multiplayer servers to host on a single VM. */
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.98.190916";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-2_2";
public static String SdkVersionString = "JavaSDK-0.98.190916";
public static String SdkVersion = "0.99.191001";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-1_0";
public static String SdkVersionString = "JavaSDK-0.99.191001";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabClientSDK/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item client-sdk-0.98.190916.jar -Destination ../../builds/client-sdk-0.98.190916.jar
Copy-Item client-sdk-0.99.191001.jar -Destination ../../builds/client-sdk-0.99.191001.jar
2 changes: 1 addition & 1 deletion PlayFabClientSDK/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp client-sdk-0.98.190916.jar ../../builds/client-sdk-0.98.190916.jar
cp client-sdk-0.99.191001.jar ../../builds/client-sdk-0.99.191001.jar
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.98.190916</version>
<version>0.99.191001</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 @@ -1461,7 +1461,11 @@ public static class GetLeaderboardForUsersCharactersRequest {

}

/** Note that the Position of the character in the results is for the overall leaderboard. */
/**
* NOTE: The position of the character in the results is relative to the other characters for that specific user. This mean
* the values will always be between 0 and one less than the number of characters returned regardless of the size of the
* actual leaderboard.
*/
public static class GetLeaderboardForUsersCharactersResult {
/** Ordered list of leaderboard entries. */
public ArrayList<CharacterLeaderboardEntry> Leaderboard;
Expand Down Expand Up @@ -2182,7 +2186,10 @@ public static class ItemInstance implements Comparable<ItemInstance> {
public String BundleParent;
/** Catalog version for the inventory item, when this instance was created. */
public String CatalogVersion;
/** A set of custom key-value pairs on the inventory item. */
/**
* A set of custom key-value pairs on the instance of the inventory item, which is not to be confused with the catalog
* item's custom data.
*/
public Map<String,String> CustomData;
/** CatalogItem.DisplayName at the time this item was purchased. */
public String DisplayName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1519,7 +1519,8 @@ private static PlayFabResult<ListAssetSummariesResponse> privateListAssetSummari
}

/**
* Lists summarized details of all multiplayer server builds for a title.
* Lists summarized details of all multiplayer server builds for a title. Accepts tokens for title and if game client
* access is enabled, allows game client to request list of builds with player entity token.
* @param request ListBuildSummariesRequest
* @return Async Task will return ListBuildSummariesResponse
*/
Expand All @@ -1533,7 +1534,8 @@ public PlayFabResult<ListBuildSummariesResponse> call() throws Exception {
}

/**
* Lists summarized details of all multiplayer server builds for a title.
* Lists summarized details of all multiplayer server builds for a title. Accepts tokens for title and if game client
* access is enabled, allows game client to request list of builds with player entity token.
* @param request ListBuildSummariesRequest
* @return ListBuildSummariesResponse
*/
Expand All @@ -1552,7 +1554,10 @@ public PlayFabResult<ListBuildSummariesResponse> call() throws Exception {
}
}

/** Lists summarized details of all multiplayer server builds for a title. */
/**
* Lists summarized details of all multiplayer server builds for a title. Accepts tokens for title and if game client
* access is enabled, allows game client to request list of builds with player entity token.
*/
@SuppressWarnings("unchecked")
private static PlayFabResult<ListBuildSummariesResponse> privateListBuildSummariesAsync(final ListBuildSummariesRequest request) throws Exception {
if (PlayFabSettings.EntityToken == null) throw new Exception ("Must call GetEntityToken before you can use the Entity API");
Expand Down Expand Up @@ -2118,7 +2123,7 @@ private static PlayFabResult<ListVirtualMachineSummariesResponse> privateListVir
}

/**
* Request a multiplayer server session. Accepts tokens for title and if game client accesss is enabled, allows game client
* Request a multiplayer server session. Accepts tokens for title and if game client access is enabled, allows game client
* to request a server with player entity token.
* @param request RequestMultiplayerServerRequest
* @return Async Task will return RequestMultiplayerServerResponse
Expand All @@ -2133,7 +2138,7 @@ public PlayFabResult<RequestMultiplayerServerResponse> call() throws Exception {
}

/**
* Request a multiplayer server session. Accepts tokens for title and if game client accesss is enabled, allows game client
* Request a multiplayer server session. Accepts tokens for title and if game client access is enabled, allows game client
* to request a server with player entity token.
* @param request RequestMultiplayerServerRequest
* @return RequestMultiplayerServerResponse
Expand All @@ -2154,7 +2159,7 @@ public PlayFabResult<RequestMultiplayerServerResponse> call() throws Exception {
}

/**
* Request a multiplayer server session. Accepts tokens for title and if game client accesss is enabled, allows game client
* Request a multiplayer server session. Accepts tokens for title and if game client access is enabled, allows game client
* to request a server with player entity token.
*/
@SuppressWarnings("unchecked")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public static class CreateBuildWithCustomContainerRequest {
public ArrayList<GameCertificateReferenceParams> GameCertificateReferences;
/**
* Metadata to tag the build. The keys are case insensitive. The build metadata is made available to the server through
* Game Server SDK (GSDK).
* Game Server SDK (GSDK).Constraints: Maximum number of keys: 30, Maximum key length: 50, Maximum value length: 100
*/
public Map<String,String> Metadata;
/** The number of multiplayer servers to host on a single VM. */
Expand Down Expand Up @@ -298,7 +298,7 @@ public static class CreateBuildWithManagedContainerRequest {
public InstrumentationConfiguration InstrumentationConfiguration;
/**
* Metadata to tag the build. The keys are case insensitive. The build metadata is made available to the server through
* Game Server SDK (GSDK).
* Game Server SDK (GSDK).Constraints: Maximum number of keys: 30, Maximum key length: 50, Maximum value length: 100
*/
public Map<String,String> Metadata;
/** The number of multiplayer servers to host on a single VM. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.98.190916";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-2_2";
public static String SdkVersionString = "JavaSDK-0.98.190916";
public static String SdkVersion = "0.99.191001";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-1_0";
public static String SdkVersionString = "JavaSDK-0.99.191001";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item combo-sdk-0.98.190916.jar -Destination ../../builds/combo-sdk-0.98.190916.jar
Copy-Item combo-sdk-0.99.191001.jar -Destination ../../builds/combo-sdk-0.99.191001.jar
2 changes: 1 addition & 1 deletion PlayFabSDK/packageMe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ mkdir -p ./builds
popd

cd target
cp combo-sdk-0.98.190916.jar ../../builds/combo-sdk-0.98.190916.jar
cp combo-sdk-0.99.191001.jar ../../builds/combo-sdk-0.99.191001.jar
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.98.190916</version>
<version>0.99.191001</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
15 changes: 12 additions & 3 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1911,7 +1911,10 @@ public static class GetDataReportRequest {
}

public static class GetDataReportResult {
/** The URL where the requested report can be downloaded. */
/**
* The URL where the requested report can be downloaded. This can be any PlayFab generated reports. The full list of
* reports can be found at: https://docs.microsoft.com/en-us/gaming/playfab/features/analytics/reports/quickstart.
*/
public String DownloadUrl;

}
Expand Down Expand Up @@ -2452,7 +2455,10 @@ public static class GrantedItemInstance implements Comparable<GrantedItemInstanc
public String CatalogVersion;
/** Unique PlayFab assigned ID for a specific character owned by a user */
public String CharacterId;
/** A set of custom key-value pairs on the inventory item. */
/**
* A set of custom key-value pairs on the instance of the inventory item, which is not to be confused with the catalog
* item's custom data.
*/
public Map<String,String> CustomData;
/** CatalogItem.DisplayName at the time this item was purchased. */
public String DisplayName;
Expand Down Expand Up @@ -2591,7 +2597,10 @@ public static class ItemInstance implements Comparable<ItemInstance> {
public String BundleParent;
/** Catalog version for the inventory item, when this instance was created. */
public String CatalogVersion;
/** A set of custom key-value pairs on the inventory item. */
/**
* A set of custom key-value pairs on the instance of the inventory item, which is not to be confused with the catalog
* item's custom data.
*/
public Map<String,String> CustomData;
/** CatalogItem.DisplayName at the time this item was purchased. */
public String DisplayName;
Expand Down
11 changes: 9 additions & 2 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1461,7 +1461,11 @@ public static class GetLeaderboardForUsersCharactersRequest {

}

/** Note that the Position of the character in the results is for the overall leaderboard. */
/**
* NOTE: The position of the character in the results is relative to the other characters for that specific user. This mean
* the values will always be between 0 and one less than the number of characters returned regardless of the size of the
* actual leaderboard.
*/
public static class GetLeaderboardForUsersCharactersResult {
/** Ordered list of leaderboard entries. */
public ArrayList<CharacterLeaderboardEntry> Leaderboard;
Expand Down Expand Up @@ -2182,7 +2186,10 @@ public static class ItemInstance implements Comparable<ItemInstance> {
public String BundleParent;
/** Catalog version for the inventory item, when this instance was created. */
public String CatalogVersion;
/** A set of custom key-value pairs on the inventory item. */
/**
* A set of custom key-value pairs on the instance of the inventory item, which is not to be confused with the catalog
* item's custom data.
*/
public Map<String,String> CustomData;
/** CatalogItem.DisplayName at the time this item was purchased. */
public String DisplayName;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ public static class ItemInstance implements Comparable<ItemInstance> {
public String BundleParent;
/** Catalog version for the inventory item, when this instance was created. */
public String CatalogVersion;
/** A set of custom key-value pairs on the inventory item. */
/**
* A set of custom key-value pairs on the instance of the inventory item, which is not to be confused with the catalog
* item's custom data.
*/
public Map<String,String> CustomData;
/** CatalogItem.DisplayName at the time this item was purchased. */
public String DisplayName;
Expand Down
Loading

0 comments on commit f523f19

Please sign in to comment.