diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java index 7d1b49cf..4197e261 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java @@ -2740,11 +2740,11 @@ public static class LoginWithAndroidDeviceIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2768,11 +2768,11 @@ public static class LoginWithCustomIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2816,11 +2816,11 @@ public static class LoginWithFacebookRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2844,11 +2844,11 @@ public static class LoginWithGameCenterRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2872,11 +2872,11 @@ public static class LoginWithGoogleAccountRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2908,11 +2908,11 @@ public static class LoginWithIOSDeviceIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2944,11 +2944,11 @@ public static class LoginWithKongregateRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; @@ -2988,11 +2988,11 @@ public static class LoginWithSteamRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3016,11 +3016,11 @@ public static class LoginWithTwitchRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3617,11 +3617,11 @@ public static class RegisterPlayFabUserRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3669,11 +3669,11 @@ public static class RegisterWithWindowsHelloRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -4365,7 +4365,7 @@ public static class UpdateCharacterDataRequest { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -4421,7 +4421,7 @@ public static class UpdateSharedGroupDataRequest { */ public String SharedGroupId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -4441,7 +4441,7 @@ public static class UpdateSharedGroupDataResult { public static class UpdateUserDataRequest { /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java index b6dcbf75..c0158317 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java @@ -297,7 +297,10 @@ public static enum PlayFabErrorCode { PlayerSecretAlreadyConfigured(1294), APIRequestsDisabledForTitle(1295), InvalidSharedSecretKey(1296), - PrizeTableHasNoRanks(1297); + PrizeTableHasNoRanks(1297), + ProfileDoesNotExist(1298), + ContentS3OriginBucketNotConfigured(1299), + InvalidEnvironmentForReceipt(1300); public int id; diff --git a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java index ffef257b..45c6df64 100644 --- a/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java +++ b/AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java @@ -5,7 +5,7 @@ public class PlayFabSettings { public static String SdkVersion = "0.48.170411"; - public static String BuildIdentifier = "jbuild_javasdk_1"; + public static String BuildIdentifier = "jbuild_javasdk_0"; public static String SdkVersionString = "JavaSDK-0.48.170411"; 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) diff --git a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java index 7d1b49cf..4197e261 100644 --- a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java +++ b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java @@ -2740,11 +2740,11 @@ public static class LoginWithAndroidDeviceIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2768,11 +2768,11 @@ public static class LoginWithCustomIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2816,11 +2816,11 @@ public static class LoginWithFacebookRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2844,11 +2844,11 @@ public static class LoginWithGameCenterRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2872,11 +2872,11 @@ public static class LoginWithGoogleAccountRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2908,11 +2908,11 @@ public static class LoginWithIOSDeviceIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2944,11 +2944,11 @@ public static class LoginWithKongregateRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; @@ -2988,11 +2988,11 @@ public static class LoginWithSteamRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3016,11 +3016,11 @@ public static class LoginWithTwitchRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3617,11 +3617,11 @@ public static class RegisterPlayFabUserRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3669,11 +3669,11 @@ public static class RegisterWithWindowsHelloRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -4365,7 +4365,7 @@ public static class UpdateCharacterDataRequest { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -4421,7 +4421,7 @@ public static class UpdateSharedGroupDataRequest { */ public String SharedGroupId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -4441,7 +4441,7 @@ public static class UpdateSharedGroupDataResult { public static class UpdateUserDataRequest { /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** diff --git a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java index b6dcbf75..c0158317 100644 --- a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java +++ b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java @@ -297,7 +297,10 @@ public static enum PlayFabErrorCode { PlayerSecretAlreadyConfigured(1294), APIRequestsDisabledForTitle(1295), InvalidSharedSecretKey(1296), - PrizeTableHasNoRanks(1297); + PrizeTableHasNoRanks(1297), + ProfileDoesNotExist(1298), + ContentS3OriginBucketNotConfigured(1299), + InvalidEnvironmentForReceipt(1300); public int id; diff --git a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java index a195d405..6d1c81a8 100644 --- a/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java +++ b/PlayFabClientSDK/src/main/java/com/playfab/PlayFabSettings.java @@ -4,7 +4,7 @@ public class PlayFabSettings { public static String SdkVersion = "0.48.170411"; - public static String BuildIdentifier = "jbuild_javasdk_1"; + public static String BuildIdentifier = "jbuild_javasdk_0"; public static String SdkVersionString = "JavaSDK-0.48.170411"; 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) diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java index dac83b91..2db21871 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java @@ -2035,7 +2035,7 @@ public static class ItemGrant { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -2543,11 +2543,6 @@ public static class PlayerStatisticVersion { * time when the statistic version became inactive due to statistic version incrementing */ public Date DeactivationTime; - /** - * @deprecated Please use Status instead. - */ - @Deprecated - public StatisticVersionArchivalStatus ArchivalStatus; /** * status of the statistic version */ @@ -3378,7 +3373,7 @@ public static class UpdateUserDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3406,7 +3401,7 @@ public static class UpdateUserInternalDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java index 7d1b49cf..4197e261 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java @@ -2740,11 +2740,11 @@ public static class LoginWithAndroidDeviceIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2768,11 +2768,11 @@ public static class LoginWithCustomIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2816,11 +2816,11 @@ public static class LoginWithFacebookRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2844,11 +2844,11 @@ public static class LoginWithGameCenterRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2872,11 +2872,11 @@ public static class LoginWithGoogleAccountRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2908,11 +2908,11 @@ public static class LoginWithIOSDeviceIDRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -2944,11 +2944,11 @@ public static class LoginWithKongregateRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; @@ -2988,11 +2988,11 @@ public static class LoginWithSteamRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3016,11 +3016,11 @@ public static class LoginWithTwitchRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3617,11 +3617,11 @@ public static class RegisterPlayFabUserRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -3669,11 +3669,11 @@ public static class RegisterWithWindowsHelloRequest { */ public String TitleId; /** - * Base64 encoded body that is encrypted with the Title's public RSA key + * Base64 encoded body that is encrypted with the Title's public RSA key (Enterprise Only). */ public String EncryptedRequest; /** - * Player secret that is used to verify API request signatures + * Player secret that is used to verify API request signatures (Enterprise Only). */ public String PlayerSecret; /** @@ -4365,7 +4365,7 @@ public static class UpdateCharacterDataRequest { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -4421,7 +4421,7 @@ public static class UpdateSharedGroupDataRequest { */ public String SharedGroupId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -4441,7 +4441,7 @@ public static class UpdateSharedGroupDataResult { public static class UpdateUserDataRequest { /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java index b6dcbf75..c0158317 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java @@ -297,7 +297,10 @@ public static enum PlayFabErrorCode { PlayerSecretAlreadyConfigured(1294), APIRequestsDisabledForTitle(1295), InvalidSharedSecretKey(1296), - PrizeTableHasNoRanks(1297); + PrizeTableHasNoRanks(1297), + ProfileDoesNotExist(1298), + ContentS3OriginBucketNotConfigured(1299), + InvalidEnvironmentForReceipt(1300); public int id; diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java index d43ad29b..a1c5fb0e 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java @@ -2330,7 +2330,7 @@ public static class ItemGrant { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3744,7 +3744,7 @@ public static class UpdateCharacterDataRequest { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3812,7 +3812,7 @@ public static class UpdateSharedGroupDataRequest { */ public String SharedGroupId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3836,7 +3836,7 @@ public static class UpdateUserDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3864,7 +3864,7 @@ public static class UpdateUserInternalDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3888,7 +3888,7 @@ public static class UpdateUserInventoryItemDataRequest { */ public String ItemInstanceId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** diff --git a/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java b/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java index c4b1b7d6..434144e1 100644 --- a/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java +++ b/PlayFabSDK/src/main/java/com/playfab/PlayFabSettings.java @@ -4,7 +4,7 @@ public class PlayFabSettings { public static String SdkVersion = "0.48.170411"; - public static String BuildIdentifier = "jbuild_javasdk_1"; + public static String BuildIdentifier = "jbuild_javasdk_0"; public static String SdkVersionString = "JavaSDK-0.48.170411"; 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) diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java index dac83b91..2db21871 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabAdminModels.java @@ -2035,7 +2035,7 @@ public static class ItemGrant { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -2543,11 +2543,6 @@ public static class PlayerStatisticVersion { * time when the statistic version became inactive due to statistic version incrementing */ public Date DeactivationTime; - /** - * @deprecated Please use Status instead. - */ - @Deprecated - public StatisticVersionArchivalStatus ArchivalStatus; /** * status of the statistic version */ @@ -3378,7 +3373,7 @@ public static class UpdateUserDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3406,7 +3401,7 @@ public static class UpdateUserInternalDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java index b6dcbf75..c0158317 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java @@ -297,7 +297,10 @@ public static enum PlayFabErrorCode { PlayerSecretAlreadyConfigured(1294), APIRequestsDisabledForTitle(1295), InvalidSharedSecretKey(1296), - PrizeTableHasNoRanks(1297); + PrizeTableHasNoRanks(1297), + ProfileDoesNotExist(1298), + ContentS3OriginBucketNotConfigured(1299), + InvalidEnvironmentForReceipt(1300); public int id; diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java index d43ad29b..a1c5fb0e 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabServerModels.java @@ -2330,7 +2330,7 @@ public static class ItemGrant { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3744,7 +3744,7 @@ public static class UpdateCharacterDataRequest { */ public String CharacterId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3812,7 +3812,7 @@ public static class UpdateSharedGroupDataRequest { */ public String SharedGroupId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3836,7 +3836,7 @@ public static class UpdateUserDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3864,7 +3864,7 @@ public static class UpdateUserInternalDataRequest { */ public String PlayFabId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** @@ -3888,7 +3888,7 @@ public static class UpdateUserInventoryItemDataRequest { */ public String ItemInstanceId; /** - * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character. + * Key-value pairs to be written to the custom data. Note that keys are trimmed of whitespace, are limited in size, and may not begin with a '!' character or be null. */ public Map Data; /** diff --git a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java index e9e5fc08..2018aff1 100644 --- a/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java +++ b/PlayFabServerSDK/src/main/java/com/playfab/PlayFabSettings.java @@ -4,7 +4,7 @@ public class PlayFabSettings { public static String SdkVersion = "0.48.170411"; - public static String BuildIdentifier = "jbuild_javasdk_1"; + public static String BuildIdentifier = "jbuild_javasdk_0"; public static String SdkVersionString = "JavaSDK-0.48.170411"; 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) diff --git a/builds/README.md b/builds/README.md new file mode 100644 index 00000000..564c731a --- /dev/null +++ b/builds/README.md @@ -0,0 +1 @@ +This folder contains the jar files for the built java projects. \ No newline at end of file diff --git a/builds/client-sdk-0.48.170411-javadoc.jar b/builds/client-sdk-0.48.170411-javadoc.jar new file mode 100644 index 00000000..75633c5b Binary files /dev/null and b/builds/client-sdk-0.48.170411-javadoc.jar differ diff --git a/builds/client-sdk-0.48.170411.jar b/builds/client-sdk-0.48.170411.jar new file mode 100644 index 00000000..8e02924d Binary files /dev/null and b/builds/client-sdk-0.48.170411.jar differ diff --git a/builds/combo-sdk-0.48.170411-javadoc.jar b/builds/combo-sdk-0.48.170411-javadoc.jar new file mode 100644 index 00000000..8bdfe7be Binary files /dev/null and b/builds/combo-sdk-0.48.170411-javadoc.jar differ diff --git a/builds/combo-sdk-0.48.170411.jar b/builds/combo-sdk-0.48.170411.jar new file mode 100644 index 00000000..4a8bb783 Binary files /dev/null and b/builds/combo-sdk-0.48.170411.jar differ diff --git a/builds/server-sdk-0.48.170411-javadoc.jar b/builds/server-sdk-0.48.170411-javadoc.jar new file mode 100644 index 00000000..816e8c8c Binary files /dev/null and b/builds/server-sdk-0.48.170411-javadoc.jar differ diff --git a/builds/server-sdk-0.48.170411.jar b/builds/server-sdk-0.48.170411.jar new file mode 100644 index 00000000..c99455b0 Binary files /dev/null and b/builds/server-sdk-0.48.170411.jar differ