Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230206
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Feb 7, 2023
2 parents c8b6056 + e1a3760 commit ebcdee5
Show file tree
Hide file tree
Showing 33 changed files with 73 additions and 30 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.180.230123.jar -Destination ../../builds/client-sdk-0.180.230123.jar
Copy-Item client-sdk-0.181.230206.jar -Destination ../../builds/client-sdk-0.181.230206.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.180.230123.jar ../../builds/client-sdk-0.180.230123.jar
cp client-sdk-0.181.230206.jar ../../builds/client-sdk-0.181.230206.jar
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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),
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.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<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.180.230123.jar -Destination ../../builds/client-sdk-0.180.230123.jar
Copy-Item client-sdk-0.181.230206.jar -Destination ../../builds/client-sdk-0.181.230206.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.180.230123.jar ../../builds/client-sdk-0.180.230123.jar
cp client-sdk-0.181.230206.jar ../../builds/client-sdk-0.181.230206.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.180.230123</version>
<version>0.181.230206</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 @@ -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. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
5 changes: 5 additions & 0 deletions PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -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),
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.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<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.180.230123.jar -Destination ../../builds/combo-sdk-0.180.230123.jar
Copy-Item combo-sdk-0.181.230206.jar -Destination ../../builds/combo-sdk-0.181.230206.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.180.230123.jar ../../builds/combo-sdk-0.180.230123.jar
cp combo-sdk-0.181.230206.jar ../../builds/combo-sdk-0.181.230206.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.180.230123</version>
<version>0.181.230206</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
5 changes: 5 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1930,6 +1930,11 @@ public static enum GenericErrorCodes {
PlayStreamConnectionFailed,
InvalidEventContents,
InsightsV1Deprecated,
AnalysisSubscriptionNotFound,
AnalysisSubscriptionFailed,
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
5 changes: 5 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
5 changes: 5 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1657,6 +1657,11 @@ public static enum GenericErrorCodes {
PlayStreamConnectionFailed,
InvalidEventContents,
InsightsV1Deprecated,
AnalysisSubscriptionNotFound,
AnalysisSubscriptionFailed,
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
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.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<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.180.230123.jar -Destination ../../builds/server-sdk-0.180.230123.jar
Copy-Item server-sdk-0.181.230206.jar -Destination ../../builds/server-sdk-0.181.230206.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.180.230123.jar ../../builds/server-sdk-0.180.230123.jar
cp server-sdk-0.181.230206.jar ../../builds/server-sdk-0.181.230206.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.180.230123</version>
<version>0.181.230206</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 @@ -1930,6 +1930,11 @@ public static enum GenericErrorCodes {
PlayStreamConnectionFailed,
InvalidEventContents,
InsightsV1Deprecated,
AnalysisSubscriptionNotFound,
AnalysisSubscriptionFailed,
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
5 changes: 5 additions & 0 deletions PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1657,6 +1657,11 @@ public static enum GenericErrorCodes {
PlayStreamConnectionFailed,
InvalidEventContents,
InsightsV1Deprecated,
AnalysisSubscriptionNotFound,
AnalysisSubscriptionFailed,
AnalysisSubscriptionFoundAlready,
AnalysisSubscriptionManagementInvalidInput,
InvalidGameCenterId,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
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.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<String, String> RequestGetParams;
static {
Expand Down
Binary file added builds/client-sdk-0.181.230206.jar
Binary file not shown.
Binary file added builds/combo-sdk-0.181.230206.jar
Binary file not shown.
Binary file added builds/server-sdk-0.181.230206.jar
Binary file not shown.

0 comments on commit ebcdee5

Please sign in to comment.