diff --git a/AndroidStudioExample/app/packageMe.ps1 b/AndroidStudioExample/app/packageMe.ps1 index 958fd11be..e2cb0dcbb 100644 --- a/AndroidStudioExample/app/packageMe.ps1 +++ b/AndroidStudioExample/app/packageMe.ps1 @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds popd cd target -Copy-Item client-sdk-0.180.230123.jar -Destination ../../builds/client-sdk-0.180.230123.jar \ No newline at end of file +Copy-Item client-sdk-0.181.230206.jar -Destination ../../builds/client-sdk-0.181.230206.jar \ No newline at end of file diff --git a/AndroidStudioExample/app/packageMe.sh b/AndroidStudioExample/app/packageMe.sh index e0a2f4b9e..a900fe534 100644 --- a/AndroidStudioExample/app/packageMe.sh +++ b/AndroidStudioExample/app/packageMe.sh @@ -7,4 +7,4 @@ mkdir -p ./builds popd cd target -cp client-sdk-0.180.230123.jar ../../builds/client-sdk-0.180.230123.jar +cp client-sdk-0.181.230206.jar ../../builds/client-sdk-0.181.230206.jar diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java index f9a08020f..d167ff69c 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java @@ -3053,7 +3053,8 @@ public static class LoginWithFacebookRequest { * this is the first time a user has signed in with Game Center and CreateAccount is set to true, a new PlayFab account * will be created and linked to the Game Center identifier. In this case, no email or username will be associated with the * PlayFab account. Otherwise, if no PlayFab account is linked to the Game Center account, an error indicating this will be - * returned, so that the title can guide the user through creation of a PlayFab account. + * returned, so that the title can guide the user through creation of a PlayFab account. If an invalid iOS Game Center + * player identifier is used, an error indicating this will be returned. */ public static class LoginWithGameCenterRequest { /** Automatically create a PlayFab account if one is not currently linked to this ID. */ diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabEconomyModels.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabEconomyModels.java index ce5390747..a56d0ca62 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabEconomyModels.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabEconomyModels.java @@ -1644,7 +1644,7 @@ public static class SubtractInventoryItemsOperation { /** Given an entity type, entity identifier and container details, will subtract the specified inventory items. */ public static class SubtractInventoryItemsRequest { - /** The amount to add for the current item. */ + /** The amount to subtract for the current item. */ public Integer Amount; /** The id of the entity's collection to perform this action on. (Default="default") */ public String CollectionId; diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java index 90bbfba7c..3684eac7d 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java @@ -548,6 +548,11 @@ public static enum PlayFabErrorCode { PlayStreamConnectionFailed(1547), InvalidEventContents(1548), InsightsV1Deprecated(1549), + AnalysisSubscriptionNotFound(1550), + AnalysisSubscriptionFailed(1551), + AnalysisSubscriptionFoundAlready(1552), + AnalysisSubscriptionManagementInvalidInput(1553), + InvalidGameCenterId(1554), MatchmakingEntityInvalid(2001), MatchmakingPlayerAttributesInvalid(2002), MatchmakingQueueNotFound(2016), diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java index 748f18364..2f10d04c2 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java @@ -9,9 +9,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.180.230123"; - public static String BuildIdentifier = "adobuild_javasdk_114"; - public static String SdkVersionString = "JavaSDK-0.180.230123"; + public static String SdkVersion = "0.181.230206"; + public static String BuildIdentifier = "adobuild_javasdk_116"; + public static String SdkVersionString = "JavaSDK-0.181.230206"; public static Map RequestGetParams; static { diff --git a/PlayFabClientSDK/packageMe.ps1 b/PlayFabClientSDK/packageMe.ps1 index 958fd11be..e2cb0dcbb 100644 --- a/PlayFabClientSDK/packageMe.ps1 +++ b/PlayFabClientSDK/packageMe.ps1 @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds popd cd target -Copy-Item client-sdk-0.180.230123.jar -Destination ../../builds/client-sdk-0.180.230123.jar \ No newline at end of file +Copy-Item client-sdk-0.181.230206.jar -Destination ../../builds/client-sdk-0.181.230206.jar \ No newline at end of file diff --git a/PlayFabClientSDK/packageMe.sh b/PlayFabClientSDK/packageMe.sh index e0a2f4b9e..a900fe534 100644 --- a/PlayFabClientSDK/packageMe.sh +++ b/PlayFabClientSDK/packageMe.sh @@ -7,4 +7,4 @@ mkdir -p ./builds popd cd target -cp client-sdk-0.180.230123.jar ../../builds/client-sdk-0.180.230123.jar +cp client-sdk-0.181.230206.jar ../../builds/client-sdk-0.181.230206.jar diff --git a/PlayFabClientSDK/pom.xml b/PlayFabClientSDK/pom.xml index 91622944e..971c64806 100644 --- a/PlayFabClientSDK/pom.xml +++ b/PlayFabClientSDK/pom.xml @@ -14,7 +14,7 @@ com.playfab client-sdk - 0.180.230123 + 0.181.230206 PlayFab Client API 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. https://docs.microsoft.com/gaming/playfab/ diff --git a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java index f9a08020f..d167ff69c 100644 --- a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java +++ b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java @@ -3053,7 +3053,8 @@ public static class LoginWithFacebookRequest { * this is the first time a user has signed in with Game Center and CreateAccount is set to true, a new PlayFab account * will be created and linked to the Game Center identifier. In this case, no email or username will be associated with the * PlayFab account. Otherwise, if no PlayFab account is linked to the Game Center account, an error indicating this will be - * returned, so that the title can guide the user through creation of a PlayFab account. + * returned, so that the title can guide the user through creation of a PlayFab account. If an invalid iOS Game Center + * player identifier is used, an error indicating this will be returned. */ public static class LoginWithGameCenterRequest { /** Automatically create a PlayFab account if one is not currently linked to this ID. */ diff --git a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabEconomyModels.java b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabEconomyModels.java index ce5390747..a56d0ca62 100644 --- a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabEconomyModels.java +++ b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabEconomyModels.java @@ -1644,7 +1644,7 @@ public static class SubtractInventoryItemsOperation { /** Given an entity type, entity identifier and container details, will subtract the specified inventory items. */ public static class SubtractInventoryItemsRequest { - /** The amount to add for the current item. */ + /** The amount to subtract for the current item. */ public Integer Amount; /** The id of the entity's collection to perform this action on. (Default="default") */ public String CollectionId; diff --git a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java index 90bbfba7c..3684eac7d 100644 --- a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java +++ b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java @@ -548,6 +548,11 @@ public static enum PlayFabErrorCode { PlayStreamConnectionFailed(1547), InvalidEventContents(1548), InsightsV1Deprecated(1549), + AnalysisSubscriptionNotFound(1550), + AnalysisSubscriptionFailed(1551), + AnalysisSubscriptionFoundAlready(1552), + AnalysisSubscriptionManagementInvalidInput(1553), + InvalidGameCenterId(1554), MatchmakingEntityInvalid(2001), MatchmakingPlayerAttributesInvalid(2002), MatchmakingQueueNotFound(2016), diff --git a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java index f08906ea6..93a3b1d91 100644 --- a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java +++ b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java @@ -8,9 +8,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.180.230123"; - public static String BuildIdentifier = "adobuild_javasdk_114"; - public static String SdkVersionString = "JavaSDK-0.180.230123"; + public static String SdkVersion = "0.181.230206"; + public static String BuildIdentifier = "adobuild_javasdk_116"; + public static String SdkVersionString = "JavaSDK-0.181.230206"; public static Map RequestGetParams; static { diff --git a/PlayFabSDK/packageMe.ps1 b/PlayFabSDK/packageMe.ps1 index 52a97882f..7604b14d7 100644 --- a/PlayFabSDK/packageMe.ps1 +++ b/PlayFabSDK/packageMe.ps1 @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds popd cd target -Copy-Item combo-sdk-0.180.230123.jar -Destination ../../builds/combo-sdk-0.180.230123.jar \ No newline at end of file +Copy-Item combo-sdk-0.181.230206.jar -Destination ../../builds/combo-sdk-0.181.230206.jar \ No newline at end of file diff --git a/PlayFabSDK/packageMe.sh b/PlayFabSDK/packageMe.sh index 6140a94af..e5525c5c2 100644 --- a/PlayFabSDK/packageMe.sh +++ b/PlayFabSDK/packageMe.sh @@ -7,4 +7,4 @@ mkdir -p ./builds popd cd target -cp combo-sdk-0.180.230123.jar ../../builds/combo-sdk-0.180.230123.jar +cp combo-sdk-0.181.230206.jar ../../builds/combo-sdk-0.181.230206.jar diff --git a/PlayFabSDK/pom.xml b/PlayFabSDK/pom.xml index 8ebeb5610..4ccbab312 100644 --- a/PlayFabSDK/pom.xml +++ b/PlayFabSDK/pom.xml @@ -14,7 +14,7 @@ com.playfab combo-sdk - 0.180.230123 + 0.181.230206 PlayFab Combo API 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. https://docs.microsoft.com/gaming/playfab/ diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java index 3da0750d7..cf2c2f56b 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java @@ -1930,6 +1930,11 @@ public static enum GenericErrorCodes { PlayStreamConnectionFailed, InvalidEventContents, InsightsV1Deprecated, + AnalysisSubscriptionNotFound, + AnalysisSubscriptionFailed, + AnalysisSubscriptionFoundAlready, + AnalysisSubscriptionManagementInvalidInput, + InvalidGameCenterId, MatchmakingEntityInvalid, MatchmakingPlayerAttributesInvalid, MatchmakingQueueNotFound, diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java index f9a08020f..d167ff69c 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java @@ -3053,7 +3053,8 @@ public static class LoginWithFacebookRequest { * this is the first time a user has signed in with Game Center and CreateAccount is set to true, a new PlayFab account * will be created and linked to the Game Center identifier. In this case, no email or username will be associated with the * PlayFab account. Otherwise, if no PlayFab account is linked to the Game Center account, an error indicating this will be - * returned, so that the title can guide the user through creation of a PlayFab account. + * returned, so that the title can guide the user through creation of a PlayFab account. If an invalid iOS Game Center + * player identifier is used, an error indicating this will be returned. */ public static class LoginWithGameCenterRequest { /** Automatically create a PlayFab account if one is not currently linked to this ID. */ diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabEconomyModels.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabEconomyModels.java index ce5390747..a56d0ca62 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabEconomyModels.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabEconomyModels.java @@ -1644,7 +1644,7 @@ public static class SubtractInventoryItemsOperation { /** Given an entity type, entity identifier and container details, will subtract the specified inventory items. */ public static class SubtractInventoryItemsRequest { - /** The amount to add for the current item. */ + /** The amount to subtract for the current item. */ public Integer Amount; /** The id of the entity's collection to perform this action on. (Default="default") */ public String CollectionId; diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java index 90bbfba7c..3684eac7d 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java @@ -548,6 +548,11 @@ public static enum PlayFabErrorCode { PlayStreamConnectionFailed(1547), InvalidEventContents(1548), InsightsV1Deprecated(1549), + AnalysisSubscriptionNotFound(1550), + AnalysisSubscriptionFailed(1551), + AnalysisSubscriptionFoundAlready(1552), + AnalysisSubscriptionManagementInvalidInput(1553), + InvalidGameCenterId(1554), MatchmakingEntityInvalid(2001), MatchmakingPlayerAttributesInvalid(2002), MatchmakingQueueNotFound(2016), diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java index 0c763c551..cbd243676 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java @@ -1657,6 +1657,11 @@ public static enum GenericErrorCodes { PlayStreamConnectionFailed, InvalidEventContents, InsightsV1Deprecated, + AnalysisSubscriptionNotFound, + AnalysisSubscriptionFailed, + AnalysisSubscriptionFoundAlready, + AnalysisSubscriptionManagementInvalidInput, + InvalidGameCenterId, MatchmakingEntityInvalid, MatchmakingPlayerAttributesInvalid, MatchmakingQueueNotFound, diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java index f08906ea6..93a3b1d91 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java @@ -8,9 +8,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.180.230123"; - public static String BuildIdentifier = "adobuild_javasdk_114"; - public static String SdkVersionString = "JavaSDK-0.180.230123"; + public static String SdkVersion = "0.181.230206"; + public static String BuildIdentifier = "adobuild_javasdk_116"; + public static String SdkVersionString = "JavaSDK-0.181.230206"; public static Map RequestGetParams; static { diff --git a/PlayFabServerSDK/packageMe.ps1 b/PlayFabServerSDK/packageMe.ps1 index 8665506e8..41f8c0a9a 100644 --- a/PlayFabServerSDK/packageMe.ps1 +++ b/PlayFabServerSDK/packageMe.ps1 @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds popd cd target -Copy-Item server-sdk-0.180.230123.jar -Destination ../../builds/server-sdk-0.180.230123.jar \ No newline at end of file +Copy-Item server-sdk-0.181.230206.jar -Destination ../../builds/server-sdk-0.181.230206.jar \ No newline at end of file diff --git a/PlayFabServerSDK/packageMe.sh b/PlayFabServerSDK/packageMe.sh index 77196eeef..371cf8c1b 100644 --- a/PlayFabServerSDK/packageMe.sh +++ b/PlayFabServerSDK/packageMe.sh @@ -7,4 +7,4 @@ mkdir -p ./builds popd cd target -cp server-sdk-0.180.230123.jar ../../builds/server-sdk-0.180.230123.jar +cp server-sdk-0.181.230206.jar ../../builds/server-sdk-0.181.230206.jar diff --git a/PlayFabServerSDK/pom.xml b/PlayFabServerSDK/pom.xml index a3dab43bb..3a520ea21 100644 --- a/PlayFabServerSDK/pom.xml +++ b/PlayFabServerSDK/pom.xml @@ -14,7 +14,7 @@ com.playfab server-sdk - 0.180.230123 + 0.181.230206 PlayFab Server API 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. https://docs.microsoft.com/gaming/playfab/ diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java index 3da0750d7..cf2c2f56b 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java @@ -1930,6 +1930,11 @@ public static enum GenericErrorCodes { PlayStreamConnectionFailed, InvalidEventContents, InsightsV1Deprecated, + AnalysisSubscriptionNotFound, + AnalysisSubscriptionFailed, + AnalysisSubscriptionFoundAlready, + AnalysisSubscriptionManagementInvalidInput, + InvalidGameCenterId, MatchmakingEntityInvalid, MatchmakingPlayerAttributesInvalid, MatchmakingQueueNotFound, diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabEconomyModels.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabEconomyModels.java index ce5390747..a56d0ca62 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabEconomyModels.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabEconomyModels.java @@ -1644,7 +1644,7 @@ public static class SubtractInventoryItemsOperation { /** Given an entity type, entity identifier and container details, will subtract the specified inventory items. */ public static class SubtractInventoryItemsRequest { - /** The amount to add for the current item. */ + /** The amount to subtract for the current item. */ public Integer Amount; /** The id of the entity's collection to perform this action on. (Default="default") */ public String CollectionId; diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java index 90bbfba7c..3684eac7d 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java @@ -548,6 +548,11 @@ public static enum PlayFabErrorCode { PlayStreamConnectionFailed(1547), InvalidEventContents(1548), InsightsV1Deprecated(1549), + AnalysisSubscriptionNotFound(1550), + AnalysisSubscriptionFailed(1551), + AnalysisSubscriptionFoundAlready(1552), + AnalysisSubscriptionManagementInvalidInput(1553), + InvalidGameCenterId(1554), MatchmakingEntityInvalid(2001), MatchmakingPlayerAttributesInvalid(2002), MatchmakingQueueNotFound(2016), diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java index 0c763c551..cbd243676 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java @@ -1657,6 +1657,11 @@ public static enum GenericErrorCodes { PlayStreamConnectionFailed, InvalidEventContents, InsightsV1Deprecated, + AnalysisSubscriptionNotFound, + AnalysisSubscriptionFailed, + AnalysisSubscriptionFoundAlready, + AnalysisSubscriptionManagementInvalidInput, + InvalidGameCenterId, MatchmakingEntityInvalid, MatchmakingPlayerAttributesInvalid, MatchmakingQueueNotFound, diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java index dca76d946..c6a8be04b 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java @@ -8,9 +8,9 @@ import com.playfab.PlayFabErrors.ErrorCallback; public class PlayFabSettings { - public static String SdkVersion = "0.180.230123"; - public static String BuildIdentifier = "adobuild_javasdk_114"; - public static String SdkVersionString = "JavaSDK-0.180.230123"; + public static String SdkVersion = "0.181.230206"; + public static String BuildIdentifier = "adobuild_javasdk_116"; + public static String SdkVersionString = "JavaSDK-0.181.230206"; public static Map RequestGetParams; static { diff --git a/builds/client-sdk-0.181.230206.jar b/builds/client-sdk-0.181.230206.jar new file mode 100644 index 000000000..61d976b87 Binary files /dev/null and b/builds/client-sdk-0.181.230206.jar differ diff --git a/builds/combo-sdk-0.181.230206.jar b/builds/combo-sdk-0.181.230206.jar new file mode 100644 index 000000000..44ebf7cfb Binary files /dev/null and b/builds/combo-sdk-0.181.230206.jar differ diff --git a/builds/server-sdk-0.181.230206.jar b/builds/server-sdk-0.181.230206.jar new file mode 100644 index 000000000..cda89d6cc Binary files /dev/null and b/builds/server-sdk-0.181.230206.jar differ