Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#230623
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Jun 26, 2023
2 parents 73cf26e + f7f6eed commit 9d1e1ab
Show file tree
Hide file tree
Showing 33 changed files with 91 additions and 39 deletions.
2 changes: 1 addition & 1 deletion AndroidStudioExample/app/packageMe.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
popd

cd target
Copy-Item client-sdk-0.191.230609.jar -Destination ../../builds/client-sdk-0.191.230609.jar
Copy-Item client-sdk-0.192.230623.jar -Destination ../../builds/client-sdk-0.192.230623.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.191.230609.jar ../../builds/client-sdk-0.191.230609.jar
cp client-sdk-0.192.230623.jar ../../builds/client-sdk-0.192.230623.jar
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ public static class CatalogItem {
* required. Titles have a 512 character limit per country code.
*/
public Map<String,String> Title;
/** The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc. */
/**
* The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc,
* subscription.
*/
public String Type;

}
Expand Down Expand Up @@ -1690,6 +1693,8 @@ public static class SearchItemsRequest {
* can be found here: https://learn.microsoft.com/en-us/gaming/playfab/features/economy-v2/catalog/search#limits
*/
public String Filter;
/** The locale to be returned in the result. */
public String Language;
/** An OData orderBy used to order the results of the search query. For example: "rating/average asc" */
public String OrderBy;
/** The text to search for. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,9 @@ public static enum PlayFabErrorCode {
PlayerCustomPropertiesVersionMismatch(19004),
PlayerCustomPropertiesPropertyCountTooHigh(19005),
PlayerCustomPropertiesDuplicatePropertyName(19006),
PlayerCustomPropertiesPropertyDoesNotExist(19007);
PlayerCustomPropertiesPropertyDoesNotExist(19007),
AddonAlreadyExists(19008),
AddonDoesntExist(19009);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,11 @@ public static class EntityStatisticChildValue {
}

public static class EntityStatisticValue {
/** Child statistic values */
/**
* Child statistic values
* @deprecated Please use AttributeStatistics instead.
*/
@Deprecated
public Map<String,EntityStatisticChildValue> ChildStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
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.191.230609";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.191.230609";
public static String SdkVersion = "0.192.230623";
public static String BuildIdentifier = "adobuild_javasdk_117";
public static String SdkVersionString = "JavaSDK-0.192.230623";

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.191.230609.jar -Destination ../../builds/client-sdk-0.191.230609.jar
Copy-Item client-sdk-0.192.230623.jar -Destination ../../builds/client-sdk-0.192.230623.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.191.230609.jar ../../builds/client-sdk-0.191.230609.jar
cp client-sdk-0.192.230623.jar ../../builds/client-sdk-0.192.230623.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.191.230609</version>
<version>0.192.230623</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 @@ -187,7 +187,10 @@ public static class CatalogItem {
* required. Titles have a 512 character limit per country code.
*/
public Map<String,String> Title;
/** The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc. */
/**
* The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc,
* subscription.
*/
public String Type;

}
Expand Down Expand Up @@ -1690,6 +1693,8 @@ public static class SearchItemsRequest {
* can be found here: https://learn.microsoft.com/en-us/gaming/playfab/features/economy-v2/catalog/search#limits
*/
public String Filter;
/** The locale to be returned in the result. */
public String Language;
/** An OData orderBy used to order the results of the search query. For example: "rating/average asc" */
public String OrderBy;
/** The text to search for. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,9 @@ public static enum PlayFabErrorCode {
PlayerCustomPropertiesVersionMismatch(19004),
PlayerCustomPropertiesPropertyCountTooHigh(19005),
PlayerCustomPropertiesDuplicatePropertyName(19006),
PlayerCustomPropertiesPropertyDoesNotExist(19007);
PlayerCustomPropertiesPropertyDoesNotExist(19007),
AddonAlreadyExists(19008),
AddonDoesntExist(19009);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,11 @@ public static class EntityStatisticChildValue {
}

public static class EntityStatisticValue {
/** Child statistic values */
/**
* Child statistic values
* @deprecated Please use AttributeStatistics instead.
*/
@Deprecated
public Map<String,EntityStatisticChildValue> ChildStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
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.191.230609";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.191.230609";
public static String SdkVersion = "0.192.230623";
public static String BuildIdentifier = "adobuild_javasdk_117";
public static String SdkVersionString = "JavaSDK-0.192.230623";

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.191.230609.jar -Destination ../../builds/combo-sdk-0.191.230609.jar
Copy-Item combo-sdk-0.192.230623.jar -Destination ../../builds/combo-sdk-0.192.230623.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.191.230609.jar ../../builds/combo-sdk-0.191.230609.jar
cp combo-sdk-0.192.230623.jar ../../builds/combo-sdk-0.192.230623.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.191.230609</version>
<version>0.192.230623</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
4 changes: 3 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -2125,7 +2125,9 @@ public static enum GenericErrorCodes {
PlayerCustomPropertiesVersionMismatch,
PlayerCustomPropertiesPropertyCountTooHigh,
PlayerCustomPropertiesDuplicatePropertyName,
PlayerCustomPropertiesPropertyDoesNotExist
PlayerCustomPropertiesPropertyDoesNotExist,
AddonAlreadyExists,
AddonDoesntExist
}

public static class GetActionsOnPlayersInSegmentTaskInstanceResult {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ public static class CatalogItem {
* required. Titles have a 512 character limit per country code.
*/
public Map<String,String> Title;
/** The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc. */
/**
* The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc,
* subscription.
*/
public String Type;

}
Expand Down Expand Up @@ -1690,6 +1693,8 @@ public static class SearchItemsRequest {
* can be found here: https://learn.microsoft.com/en-us/gaming/playfab/features/economy-v2/catalog/search#limits
*/
public String Filter;
/** The locale to be returned in the result. */
public String Language;
/** An OData orderBy used to order the results of the search query. For example: "rating/average asc" */
public String OrderBy;
/** The text to search for. */
Expand Down
4 changes: 3 additions & 1 deletion PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,9 @@ public static enum PlayFabErrorCode {
PlayerCustomPropertiesVersionMismatch(19004),
PlayerCustomPropertiesPropertyCountTooHigh(19005),
PlayerCustomPropertiesDuplicatePropertyName(19006),
PlayerCustomPropertiesPropertyDoesNotExist(19007);
PlayerCustomPropertiesPropertyDoesNotExist(19007),
AddonAlreadyExists(19008),
AddonDoesntExist(19009);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,11 @@ public static class EntityStatisticChildValue {
}

public static class EntityStatisticValue {
/** Child statistic values */
/**
* Child statistic values
* @deprecated Please use AttributeStatistics instead.
*/
@Deprecated
public Map<String,EntityStatisticChildValue> ChildStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,9 @@ public static enum GenericErrorCodes {
PlayerCustomPropertiesVersionMismatch,
PlayerCustomPropertiesPropertyCountTooHigh,
PlayerCustomPropertiesDuplicatePropertyName,
PlayerCustomPropertiesPropertyDoesNotExist
PlayerCustomPropertiesPropertyDoesNotExist,
AddonAlreadyExists,
AddonDoesntExist
}

public static class GenericPlayFabIdPair {
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.191.230609";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.191.230609";
public static String SdkVersion = "0.192.230623";
public static String BuildIdentifier = "adobuild_javasdk_117";
public static String SdkVersionString = "JavaSDK-0.192.230623";

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.191.230609.jar -Destination ../../builds/server-sdk-0.191.230609.jar
Copy-Item server-sdk-0.192.230623.jar -Destination ../../builds/server-sdk-0.192.230623.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.191.230609.jar ../../builds/server-sdk-0.191.230609.jar
cp server-sdk-0.192.230623.jar ../../builds/server-sdk-0.192.230623.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.191.230609</version>
<version>0.192.230623</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 @@ -2125,7 +2125,9 @@ public static enum GenericErrorCodes {
PlayerCustomPropertiesVersionMismatch,
PlayerCustomPropertiesPropertyCountTooHigh,
PlayerCustomPropertiesDuplicatePropertyName,
PlayerCustomPropertiesPropertyDoesNotExist
PlayerCustomPropertiesPropertyDoesNotExist,
AddonAlreadyExists,
AddonDoesntExist
}

public static class GetActionsOnPlayersInSegmentTaskInstanceResult {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,10 @@ public static class CatalogItem {
* required. Titles have a 512 character limit per country code.
*/
public Map<String,String> Title;
/** The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc. */
/**
* The high-level type of the item. The following item types are supported: bundle, catalogItem, currency, store, ugc,
* subscription.
*/
public String Type;

}
Expand Down Expand Up @@ -1690,6 +1693,8 @@ public static class SearchItemsRequest {
* can be found here: https://learn.microsoft.com/en-us/gaming/playfab/features/economy-v2/catalog/search#limits
*/
public String Filter;
/** The locale to be returned in the result. */
public String Language;
/** An OData orderBy used to order the results of the search query. For example: "rating/average asc" */
public String OrderBy;
/** The text to search for. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,9 @@ public static enum PlayFabErrorCode {
PlayerCustomPropertiesVersionMismatch(19004),
PlayerCustomPropertiesPropertyCountTooHigh(19005),
PlayerCustomPropertiesDuplicatePropertyName(19006),
PlayerCustomPropertiesPropertyDoesNotExist(19007);
PlayerCustomPropertiesPropertyDoesNotExist(19007),
AddonAlreadyExists(19008),
AddonDoesntExist(19009);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,11 @@ public static class EntityStatisticChildValue {
}

public static class EntityStatisticValue {
/** Child statistic values */
/**
* Child statistic values
* @deprecated Please use AttributeStatistics instead.
*/
@Deprecated
public Map<String,EntityStatisticChildValue> ChildStatistics;
/** Metadata associated with the Statistic. */
public String Metadata;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,9 @@ public static enum GenericErrorCodes {
PlayerCustomPropertiesVersionMismatch,
PlayerCustomPropertiesPropertyCountTooHigh,
PlayerCustomPropertiesDuplicatePropertyName,
PlayerCustomPropertiesPropertyDoesNotExist
PlayerCustomPropertiesPropertyDoesNotExist,
AddonAlreadyExists,
AddonDoesntExist
}

public static class GenericPlayFabIdPair {
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.191.230609";
public static String BuildIdentifier = "adobuild_javasdk_116";
public static String SdkVersionString = "JavaSDK-0.191.230609";
public static String SdkVersion = "0.192.230623";
public static String BuildIdentifier = "adobuild_javasdk_117";
public static String SdkVersionString = "JavaSDK-0.192.230623";

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

0 comments on commit 9d1e1ab

Please sign in to comment.