Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#240301
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Mar 5, 2024
2 parents dcf3878 + 7292883 commit 243e2ac
Show file tree
Hide file tree
Showing 34 changed files with 63 additions and 79 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.211.240202.jar -Destination ../../builds/client-sdk-0.211.240202.jar
Copy-Item client-sdk-0.212.240301.jar -Destination ../../builds/client-sdk-0.212.240301.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.211.240202.jar ../../builds/client-sdk-0.211.240202.jar
cp client-sdk-0.212.240301.jar ../../builds/client-sdk-0.212.240301.jar
Original file line number Diff line number Diff line change
Expand Up @@ -1416,6 +1416,10 @@ public static class Rating {

}

public static class RealMoneyPriceDetails {

}

/** Redeem items from the Apple App Store. */
public static class RedeemAppleAppStoreInventoryItemsRequest {
/** The id of the entity's collection to perform this action on. (Default="default") */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,9 @@ public static enum PlayFabErrorCode {
InvalidAttributeStatisticsSpecified(1566),
LeaderboardNotFound(1567),
TokenSigningKeyNotFound(1568),
LeaderboardNameConflict(1569),
LinkedStatisticColumnMismatch(1570),
NoLinkedStatisticToLeaderboard(1571),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 +114,13 @@ public static class EntityProfileFileMetadata {

}

public static class EntityStatisticAttributeValue {
/** Metadata associated with the Statistic. */
public String Metadata;
/** Attribute name. */
public String Name;
/** Attribute Statistic scores. */
public ArrayList<String> Scores;

}

public static class EntityStatisticValue {
/** Attribute Statistic values. */
public Map<String,EntityStatisticAttributeValue> AttributeStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
/** Statistic name */
public String Name;
/** Statistic scores */
public ArrayList<String> Scores;
/** Statistic value */
public Integer Value;
/** Statistic version */
public Integer Version;

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.211.240202";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.211.240202";
public static String SdkVersion = "0.212.240301";
public static String BuildIdentifier = "adobuild_javasdk_8";
public static String SdkVersionString = "JavaSDK-0.212.240301";

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.211.240202.jar -Destination ../../builds/client-sdk-0.211.240202.jar
Copy-Item client-sdk-0.212.240301.jar -Destination ../../builds/client-sdk-0.212.240301.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.211.240202.jar ../../builds/client-sdk-0.211.240202.jar
cp client-sdk-0.212.240301.jar ../../builds/client-sdk-0.212.240301.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.211.240202</version>
<version>0.212.240301</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 @@ -1416,6 +1416,10 @@ public static class Rating {

}

public static class RealMoneyPriceDetails {

}

/** Redeem items from the Apple App Store. */
public static class RedeemAppleAppStoreInventoryItemsRequest {
/** The id of the entity's collection to perform this action on. (Default="default") */
Expand Down
3 changes: 3 additions & 0 deletions PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,9 @@ public static enum PlayFabErrorCode {
InvalidAttributeStatisticsSpecified(1566),
LeaderboardNotFound(1567),
TokenSigningKeyNotFound(1568),
LeaderboardNameConflict(1569),
LinkedStatisticColumnMismatch(1570),
NoLinkedStatisticToLeaderboard(1571),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 +114,13 @@ public static class EntityProfileFileMetadata {

}

public static class EntityStatisticAttributeValue {
/** Metadata associated with the Statistic. */
public String Metadata;
/** Attribute name. */
public String Name;
/** Attribute Statistic scores. */
public ArrayList<String> Scores;

}

public static class EntityStatisticValue {
/** Attribute Statistic values. */
public Map<String,EntityStatisticAttributeValue> AttributeStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
/** Statistic name */
public String Name;
/** Statistic scores */
public ArrayList<String> Scores;
/** Statistic value */
public Integer Value;
/** Statistic version */
public Integer Version;

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.211.240202";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.211.240202";
public static String SdkVersion = "0.212.240301";
public static String BuildIdentifier = "adobuild_javasdk_8";
public static String SdkVersionString = "JavaSDK-0.212.240301";

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.211.240202.jar -Destination ../../builds/combo-sdk-0.211.240202.jar
Copy-Item combo-sdk-0.212.240301.jar -Destination ../../builds/combo-sdk-0.212.240301.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.211.240202.jar ../../builds/combo-sdk-0.211.240202.jar
cp combo-sdk-0.212.240301.jar ../../builds/combo-sdk-0.212.240301.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.211.240202</version>
<version>0.212.240301</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
3 changes: 3 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -2056,6 +2056,9 @@ public static enum GenericErrorCodes {
InvalidAttributeStatisticsSpecified,
LeaderboardNotFound,
TokenSigningKeyNotFound,
LeaderboardNameConflict,
LinkedStatisticColumnMismatch,
NoLinkedStatisticToLeaderboard,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1416,6 +1416,10 @@ public static class Rating {

}

public static class RealMoneyPriceDetails {

}

/** Redeem items from the Apple App Store. */
public static class RedeemAppleAppStoreInventoryItemsRequest {
/** The id of the entity's collection to perform this action on. (Default="default") */
Expand Down
3 changes: 3 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,9 @@ public static enum PlayFabErrorCode {
InvalidAttributeStatisticsSpecified(1566),
LeaderboardNotFound(1567),
TokenSigningKeyNotFound(1568),
LeaderboardNameConflict(1569),
LinkedStatisticColumnMismatch(1570),
NoLinkedStatisticToLeaderboard(1571),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down
14 changes: 0 additions & 14 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabProfilesModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 +114,13 @@ public static class EntityProfileFileMetadata {

}

public static class EntityStatisticAttributeValue {
/** Metadata associated with the Statistic. */
public String Metadata;
/** Attribute name. */
public String Name;
/** Attribute Statistic scores. */
public ArrayList<String> Scores;

}

public static class EntityStatisticValue {
/** Attribute Statistic values. */
public Map<String,EntityStatisticAttributeValue> AttributeStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
/** Statistic name */
public String Name;
/** Statistic scores */
public ArrayList<String> Scores;
/** Statistic value */
public Integer Value;
/** Statistic version */
public Integer Version;

Expand Down
3 changes: 3 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1661,6 +1661,9 @@ public static enum GenericErrorCodes {
InvalidAttributeStatisticsSpecified,
LeaderboardNotFound,
TokenSigningKeyNotFound,
LeaderboardNameConflict,
LinkedStatisticColumnMismatch,
NoLinkedStatisticToLeaderboard,
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.211.240202";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.211.240202";
public static String SdkVersion = "0.212.240301";
public static String BuildIdentifier = "adobuild_javasdk_8";
public static String SdkVersionString = "JavaSDK-0.212.240301";

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.211.240202.jar -Destination ../../builds/server-sdk-0.211.240202.jar
Copy-Item server-sdk-0.212.240301.jar -Destination ../../builds/server-sdk-0.212.240301.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.211.240202.jar ../../builds/server-sdk-0.211.240202.jar
cp server-sdk-0.212.240301.jar ../../builds/server-sdk-0.212.240301.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.211.240202</version>
<version>0.212.240301</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 @@ -2056,6 +2056,9 @@ public static enum GenericErrorCodes {
InvalidAttributeStatisticsSpecified,
LeaderboardNotFound,
TokenSigningKeyNotFound,
LeaderboardNameConflict,
LinkedStatisticColumnMismatch,
NoLinkedStatisticToLeaderboard,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1416,6 +1416,10 @@ public static class Rating {

}

public static class RealMoneyPriceDetails {

}

/** Redeem items from the Apple App Store. */
public static class RedeemAppleAppStoreInventoryItemsRequest {
/** The id of the entity's collection to perform this action on. (Default="default") */
Expand Down
3 changes: 3 additions & 0 deletions PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,9 @@ public static enum PlayFabErrorCode {
InvalidAttributeStatisticsSpecified(1566),
LeaderboardNotFound(1567),
TokenSigningKeyNotFound(1568),
LeaderboardNameConflict(1569),
LinkedStatisticColumnMismatch(1570),
NoLinkedStatisticToLeaderboard(1571),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 +114,13 @@ public static class EntityProfileFileMetadata {

}

public static class EntityStatisticAttributeValue {
/** Metadata associated with the Statistic. */
public String Metadata;
/** Attribute name. */
public String Name;
/** Attribute Statistic scores. */
public ArrayList<String> Scores;

}

public static class EntityStatisticValue {
/** Attribute Statistic values. */
public Map<String,EntityStatisticAttributeValue> AttributeStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
/** Statistic name */
public String Name;
/** Statistic scores */
public ArrayList<String> Scores;
/** Statistic value */
public Integer Value;
/** Statistic version */
public Integer Version;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1661,6 +1661,9 @@ public static enum GenericErrorCodes {
InvalidAttributeStatisticsSpecified,
LeaderboardNotFound,
TokenSigningKeyNotFound,
LeaderboardNameConflict,
LinkedStatisticColumnMismatch,
NoLinkedStatisticToLeaderboard,
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.211.240202";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.211.240202";
public static String SdkVersion = "0.212.240301";
public static String BuildIdentifier = "adobuild_javasdk_8";
public static String SdkVersionString = "JavaSDK-0.212.240301";

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

0 comments on commit 243e2ac

Please sign in to comment.