Skip to content

Commit 598dcd0

Browse files
PlayFab SDK TeamPlayFab SDK Team
authored andcommitted
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#251107
2 parents 0caac37 + e65dd44 commit 598dcd0

33 files changed

+101
-31
lines changed

AndroidStudioExample/app/packageMe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
55
popd
66

77
cd target
8-
Copy-Item client-sdk-0.247.251024.jar -Destination ../../builds/client-sdk-0.247.251024.jar
8+
Copy-Item client-sdk-0.248.251107.jar -Destination ../../builds/client-sdk-0.248.251107.jar

AndroidStudioExample/app/packageMe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ mkdir -p ./builds
77
popd
88

99
cd target
10-
cp client-sdk-0.247.251024.jar ../../builds/client-sdk-0.247.251024.jar
10+
cp client-sdk-0.248.251107.jar ../../builds/client-sdk-0.248.251107.jar

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabClientModels.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5283,6 +5283,8 @@ public static class ValidateIOSReceiptRequest {
52835283
public String CurrencyCode;
52845284
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
52855285
public Map<String,String> CustomTags;
5286+
/** Base64 encoded receipt data, passed back by the App Store as a result of a successful purchase. */
5287+
public String JwsReceiptData;
52865288
/** Amount of the stated currency paid, in centesimal units. */
52875289
public Integer PurchasePrice;
52885290
/** Base64 encoded receipt data, passed back by the App Store as a result of a successful purchase. */

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabErrors.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -610,6 +610,7 @@ public static enum PlayFabErrorCode {
610610
PreconditionFailed(1610),
611611
CannotEnableAnonymousPlayerCreation(1611),
612612
ParentCustomerAccountNotFound(1612),
613+
AccountLinkedToABannedPlayer(1613),
613614
MatchmakingEntityInvalid(2001),
614615
MatchmakingPlayerAttributesInvalid(2002),
615616
MatchmakingQueueNotFound(2016),

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabProgressionModels.java

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,24 +470,38 @@ public static class LinkedStatisticColumn {
470470
public static class ListLeaderboardDefinitionsRequest {
471471
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
472472
public Map<String,String> CustomTags;
473+
/** The page size for the request. */
474+
public Integer PageSize;
475+
/** The skip token for the paged request. */
476+
public String SkipToken;
473477

474478
}
475479

476480
public static class ListLeaderboardDefinitionsResponse {
477481
/** List of leaderboard definitions for the title. */
478482
public ArrayList<LeaderboardDefinition> LeaderboardDefinitions;
483+
/** The page size on the response. */
484+
public Integer PageSize;
485+
/** The skip token for the paged response. */
486+
public String SkipToken;
479487

480488
}
481489

482490
public static class ListStatisticDefinitionsRequest {
483491
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
484492
public Map<String,String> CustomTags;
493+
/** The page size for the request. */
494+
public Integer PageSize;
495+
/** The skip token for the paged request. */
496+
public String SkipToken;
485497

486498
}
487499

488500
public static class ListStatisticDefinitionsResponse {
489-
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
490-
public Map<String,String> CustomTags;
501+
/** The page size on the response. */
502+
public Integer PageSize;
503+
/** The skip token for the paged response. */
504+
public String SkipToken;
491505
/** List of statistic definitions for the title. */
492506
public ArrayList<StatisticDefinition> StatisticDefinitions;
493507

AndroidStudioExample/app/src/main/java/com/playfab/PlayFabSettings.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
import com.playfab.PlayFabErrors.ErrorCallback;
1010

1111
public class PlayFabSettings {
12-
public static String SdkVersion = "0.247.251024";
13-
public static String BuildIdentifier = "adobuild_javasdk_118";
14-
public static String SdkVersionString = "JavaSDK-0.247.251024";
12+
public static String SdkVersion = "0.248.251107";
13+
public static String BuildIdentifier = "adobuild_javasdk_8";
14+
public static String SdkVersionString = "JavaSDK-0.248.251107";
1515

1616
public static Map<String, String> RequestGetParams;
1717
static {

PlayFabClientSDK/packageMe.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ New-Item -ItemType Directory -Force ./builds
55
popd
66

77
cd target
8-
Copy-Item client-sdk-0.247.251024.jar -Destination ../../builds/client-sdk-0.247.251024.jar
8+
Copy-Item client-sdk-0.248.251107.jar -Destination ../../builds/client-sdk-0.248.251107.jar

PlayFabClientSDK/packageMe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ mkdir -p ./builds
77
popd
88

99
cd target
10-
cp client-sdk-0.247.251024.jar ../../builds/client-sdk-0.247.251024.jar
10+
cp client-sdk-0.248.251107.jar ../../builds/client-sdk-0.248.251107.jar

PlayFabClientSDK/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<!-- GAV & Meta -->
1515
<groupId>com.playfab</groupId>
1616
<artifactId>client-sdk</artifactId>
17-
<version>0.247.251024</version>
17+
<version>0.248.251107</version>
1818
<name>PlayFab Client API</name>
1919
<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>
2020
<url>https://docs.microsoft.com/gaming/playfab/</url>

PlayFabClientSDK/src/main/java/com/playfab/PlayFabClientModels.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5283,6 +5283,8 @@ public static class ValidateIOSReceiptRequest {
52835283
public String CurrencyCode;
52845284
/** The optional custom tags associated with the request (e.g. build number, external trace identifiers, etc.). */
52855285
public Map<String,String> CustomTags;
5286+
/** Base64 encoded receipt data, passed back by the App Store as a result of a successful purchase. */
5287+
public String JwsReceiptData;
52865288
/** Amount of the stated currency paid, in centesimal units. */
52875289
public Integer PurchasePrice;
52885290
/** Base64 encoded receipt data, passed back by the App Store as a result of a successful purchase. */

0 commit comments

Comments
 (0)