Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#221010
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Oct 11, 2022
2 parents 0672eff + 3f8335f commit 3ec064a
Show file tree
Hide file tree
Showing 34 changed files with 47 additions and 39 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.174.220926.jar -Destination ../../builds/client-sdk-0.174.220926.jar
Copy-Item client-sdk-0.175.221010.jar -Destination ../../builds/client-sdk-0.175.221010.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.174.220926.jar ../../builds/client-sdk-0.174.220926.jar
cp client-sdk-0.175.221010.jar ../../builds/client-sdk-0.175.221010.jar
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ private static PlayFabResult<AuthenticateCustomIdResult> privateAuthenticateGame

PlayFabJsonSuccess<AuthenticateCustomIdResult> resultData = gson.fromJson(resultRawJson, new TypeToken<PlayFabJsonSuccess<AuthenticateCustomIdResult>>(){}.getType());
AuthenticateCustomIdResult result = resultData.data;
PlayFabSettings.EntityToken = (result.EntityToken != null && result.EntityToken.EntityToken != null) ? result.EntityToken.EntityToken : PlayFabSettings.EntityToken;

PlayFabResult<AuthenticateCustomIdResult> pfResult = new PlayFabResult<AuthenticateCustomIdResult>();
pfResult.Result = result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@ public static class ScanResult {
public static class SearchItemsRequest {
/** An opaque token used to retrieve the next page of items, if any are available. */
public String ContinuationToken;
/** Number of items to retrieve. Maximum page size is 225. Default value is 10. */
/** Number of items to retrieve. Maximum page size is 50. Default value is 10. */
public Integer Count;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@ public static enum PlayFabErrorCode {
AutomationRuleLimitExceeded(1544),
InvalidGooglePlayGamesServerAuthCode(1545),
StorageAccountNotFound(1546),
PlayStreamConnectionFailed(1547),
InvalidEventContents(1548),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
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.174.220926";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.174.220926";
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";

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.174.220926.jar -Destination ../../builds/client-sdk-0.174.220926.jar
Copy-Item client-sdk-0.175.221010.jar -Destination ../../builds/client-sdk-0.175.221010.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.174.220926.jar ../../builds/client-sdk-0.174.220926.jar
cp client-sdk-0.175.221010.jar ../../builds/client-sdk-0.175.221010.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.174.220926</version>
<version>0.175.221010</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>https://docs.microsoft.com/gaming/playfab/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ private static PlayFabResult<AuthenticateCustomIdResult> privateAuthenticateGame

PlayFabJsonSuccess<AuthenticateCustomIdResult> resultData = gson.fromJson(resultRawJson, new TypeToken<PlayFabJsonSuccess<AuthenticateCustomIdResult>>(){}.getType());
AuthenticateCustomIdResult result = resultData.data;
PlayFabSettings.EntityToken = (result.EntityToken != null && result.EntityToken.EntityToken != null) ? result.EntityToken.EntityToken : PlayFabSettings.EntityToken;

PlayFabResult<AuthenticateCustomIdResult> pfResult = new PlayFabResult<AuthenticateCustomIdResult>();
pfResult.Result = result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@ public static class ScanResult {
public static class SearchItemsRequest {
/** An opaque token used to retrieve the next page of items, if any are available. */
public String ContinuationToken;
/** Number of items to retrieve. Maximum page size is 225. Default value is 10. */
/** Number of items to retrieve. Maximum page size is 50. Default value is 10. */
public Integer Count;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
Expand Down
2 changes: 2 additions & 0 deletions PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@ public static enum PlayFabErrorCode {
AutomationRuleLimitExceeded(1544),
InvalidGooglePlayGamesServerAuthCode(1545),
StorageAccountNotFound(1546),
PlayStreamConnectionFailed(1547),
InvalidEventContents(1548),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
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.174.220926";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.174.220926";
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";

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.174.220926.jar -Destination ../../builds/combo-sdk-0.174.220926.jar
Copy-Item combo-sdk-0.175.221010.jar -Destination ../../builds/combo-sdk-0.175.221010.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.174.220926.jar ../../builds/combo-sdk-0.174.220926.jar
cp combo-sdk-0.175.221010.jar ../../builds/combo-sdk-0.175.221010.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.174.220926</version>
<version>0.175.221010</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>https://docs.microsoft.com/gaming/playfab/</url>
Expand Down
6 changes: 2 additions & 4 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1920,6 +1920,8 @@ public static enum GenericErrorCodes {
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -4486,8 +4488,6 @@ public static class SetPublisherDataResult {
* or not.
*/
public static class SetTitleDataAndOverridesRequest {
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/**
* List of titleData key-value pairs to set/delete. Use an empty value to delete an existing key; use a non-empty value to
* create/update a key.
Expand All @@ -4510,8 +4510,6 @@ public static class SetTitleDataAndOverridesResult {
* already exists, the Value for that key will be overwritten with the new Value.
*/
public static class SetTitleDataRequest {
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/**
* key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
* name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ private static PlayFabResult<AuthenticateCustomIdResult> privateAuthenticateGame

PlayFabJsonSuccess<AuthenticateCustomIdResult> resultData = gson.fromJson(resultRawJson, new TypeToken<PlayFabJsonSuccess<AuthenticateCustomIdResult>>(){}.getType());
AuthenticateCustomIdResult result = resultData.data;
PlayFabSettings.EntityToken = (result.EntityToken != null && result.EntityToken.EntityToken != null) ? result.EntityToken.EntityToken : PlayFabSettings.EntityToken;

PlayFabResult<AuthenticateCustomIdResult> pfResult = new PlayFabResult<AuthenticateCustomIdResult>();
pfResult.Result = result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@ public static class ScanResult {
public static class SearchItemsRequest {
/** An opaque token used to retrieve the next page of items, if any are available. */
public String ContinuationToken;
/** Number of items to retrieve. Maximum page size is 225. Default value is 10. */
/** Number of items to retrieve. Maximum page size is 50. Default value is 10. */
public Integer Count;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
Expand Down
2 changes: 2 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@ public static enum PlayFabErrorCode {
AutomationRuleLimitExceeded(1544),
InvalidGooglePlayGamesServerAuthCode(1545),
StorageAccountNotFound(1546),
PlayStreamConnectionFailed(1547),
InvalidEventContents(1548),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down
4 changes: 2 additions & 2 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1639,6 +1639,8 @@ public static enum GenericErrorCodes {
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -4182,8 +4184,6 @@ public static class SetPublisherDataResult {
* Value. If it already exists, the Value for that key will be overwritten with the new Value.
*/
public static class SetTitleDataRequest {
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/**
* key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
* name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
Expand Down
6 changes: 3 additions & 3 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java
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.174.220926";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.174.220926";
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";

public static Map<String, String> RequestGetParams;
static {
Expand Down
2 changes: 1 addition & 1 deletion PlayFabServerSDK/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 server-sdk-0.174.220926.jar -Destination ../../builds/server-sdk-0.174.220926.jar
Copy-Item server-sdk-0.175.221010.jar -Destination ../../builds/server-sdk-0.175.221010.jar
2 changes: 1 addition & 1 deletion PlayFabServerSDK/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 server-sdk-0.174.220926.jar ../../builds/server-sdk-0.174.220926.jar
cp server-sdk-0.175.221010.jar ../../builds/server-sdk-0.175.221010.jar
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.174.220926</version>
<version>0.175.221010</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>https://docs.microsoft.com/gaming/playfab/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1920,6 +1920,8 @@ public static enum GenericErrorCodes {
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -4486,8 +4488,6 @@ public static class SetPublisherDataResult {
* or not.
*/
public static class SetTitleDataAndOverridesRequest {
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/**
* List of titleData key-value pairs to set/delete. Use an empty value to delete an existing key; use a non-empty value to
* create/update a key.
Expand All @@ -4510,8 +4510,6 @@ public static class SetTitleDataAndOverridesResult {
* already exists, the Value for that key will be overwritten with the new Value.
*/
public static class SetTitleDataRequest {
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/**
* key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
* name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ private static PlayFabResult<AuthenticateCustomIdResult> privateAuthenticateGame

PlayFabJsonSuccess<AuthenticateCustomIdResult> resultData = gson.fromJson(resultRawJson, new TypeToken<PlayFabJsonSuccess<AuthenticateCustomIdResult>>(){}.getType());
AuthenticateCustomIdResult result = resultData.data;
PlayFabSettings.EntityToken = (result.EntityToken != null && result.EntityToken.EntityToken != null) ? result.EntityToken.EntityToken : PlayFabSettings.EntityToken;

PlayFabResult<AuthenticateCustomIdResult> pfResult = new PlayFabResult<AuthenticateCustomIdResult>();
pfResult.Result = result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1478,7 +1478,7 @@ public static class ScanResult {
public static class SearchItemsRequest {
/** An opaque token used to retrieve the next page of items, if any are available. */
public String ContinuationToken;
/** Number of items to retrieve. Maximum page size is 225. Default value is 10. */
/** Number of items to retrieve. Maximum page size is 50. Default value is 10. */
public Integer Count;
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
Expand Down
2 changes: 2 additions & 0 deletions PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@ public static enum PlayFabErrorCode {
AutomationRuleLimitExceeded(1544),
InvalidGooglePlayGamesServerAuthCode(1545),
StorageAccountNotFound(1546),
PlayStreamConnectionFailed(1547),
InvalidEventContents(1548),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1639,6 +1639,8 @@ public static enum GenericErrorCodes {
AutomationRuleLimitExceeded,
InvalidGooglePlayGamesServerAuthCode,
StorageAccountNotFound,
PlayStreamConnectionFailed,
InvalidEventContents,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -4182,8 +4184,6 @@ public static class SetPublisherDataResult {
* Value. If it already exists, the Value for that key will be overwritten with the new Value.
*/
public static class SetTitleDataRequest {
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
public Map<String,String> CustomTags;
/**
* key we want to set a value on (note, this is additive - will only replace an existing key's value if they are the same
* name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
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.174.220926";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.174.220926";
public static String SdkVersion = "0.175.221010";
public static String BuildIdentifier = "adobuild_javasdk_115";
public static String SdkVersionString = "JavaSDK-0.175.221010";

public static Map<String, String> RequestGetParams;
static {
Expand Down
Binary file added builds/client-sdk-0.175.221010.jar
Binary file not shown.
Binary file added builds/combo-sdk-0.175.221010.jar
Binary file not shown.
Binary file added builds/server-sdk-0.175.221010.jar
Binary file not shown.

0 comments on commit 3ec064a

Please sign in to comment.