Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#231124
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Nov 27, 2023
2 parents 969a670 + b308a76 commit e64e549
Show file tree
Hide file tree
Showing 30 changed files with 83 additions and 67 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.205.231110.jar -Destination ../../builds/client-sdk-0.205.231110.jar
Copy-Item client-sdk-0.206.231124.jar -Destination ../../builds/client-sdk-0.206.231124.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.205.231110.jar ../../builds/client-sdk-0.205.231110.jar
cp client-sdk-0.206.231124.jar ../../builds/client-sdk-0.206.231124.jar
Original file line number Diff line number Diff line change
Expand Up @@ -707,10 +707,10 @@ public static enum PlayFabErrorCode {
LobbyNewOwnerMustBeConnected(13009),
LobbyCurrentOwnerStillConnected(13010),
LobbyMemberIsNotOwner(13011),
LobbyAssociatedServerMismatch(13012),
LobbyAssociatedServerNotFound(13013),
LobbyAssociatedToDifferentServer(13014),
LobbyServerAlreadyAssociated(13015),
LobbyServerMismatch(13012),
LobbyServerNotFound(13013),
LobbyDifferentServerAlreadyJoined(13014),
LobbyServerAlreadyJoined(13015),
LobbyIsNotClientOwned(13016),
LobbyDoesNotUseConnections(13017),
EventSamplingInvalidRatio(14000),
Expand Down Expand Up @@ -758,7 +758,8 @@ public static enum PlayFabErrorCode {
AddonAlreadyExists(19008),
AddonDoesntExist(19009),
CopilotDisabled(19100),
CopilotInvalidRequest(19101);
CopilotInvalidRequest(19101),
TrueSkillUnauthorized(20000);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
/**
* API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
* together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
* The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
* from this service are commonly used by a matchmaking service to provide players with balanced matches.
*/
public class PlayFabMultiplayerAPI {
private static Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").create();
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.205.231110";
public static String BuildIdentifier = "adobuild_javasdk_114";
public static String SdkVersionString = "JavaSDK-0.205.231110";
public static String SdkVersion = "0.206.231124";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.206.231124";

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.205.231110.jar -Destination ../../builds/client-sdk-0.205.231110.jar
Copy-Item client-sdk-0.206.231124.jar -Destination ../../builds/client-sdk-0.206.231124.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.205.231110.jar ../../builds/client-sdk-0.205.231110.jar
cp client-sdk-0.206.231124.jar ../../builds/client-sdk-0.206.231124.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.205.231110</version>
<version>0.206.231124</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
11 changes: 6 additions & 5 deletions PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -707,10 +707,10 @@ public static enum PlayFabErrorCode {
LobbyNewOwnerMustBeConnected(13009),
LobbyCurrentOwnerStillConnected(13010),
LobbyMemberIsNotOwner(13011),
LobbyAssociatedServerMismatch(13012),
LobbyAssociatedServerNotFound(13013),
LobbyAssociatedToDifferentServer(13014),
LobbyServerAlreadyAssociated(13015),
LobbyServerMismatch(13012),
LobbyServerNotFound(13013),
LobbyDifferentServerAlreadyJoined(13014),
LobbyServerAlreadyJoined(13015),
LobbyIsNotClientOwned(13016),
LobbyDoesNotUseConnections(13017),
EventSamplingInvalidRatio(14000),
Expand Down Expand Up @@ -758,7 +758,8 @@ public static enum PlayFabErrorCode {
AddonAlreadyExists(19008),
AddonDoesntExist(19009),
CopilotDisabled(19100),
CopilotInvalidRequest(19101);
CopilotInvalidRequest(19101),
TrueSkillUnauthorized(20000);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
/**
* API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
* together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
* The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
* from this service are commonly used by a matchmaking service to provide players with balanced matches.
*/
public class PlayFabMultiplayerAPI {
private static Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").create();
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.205.231110";
public static String BuildIdentifier = "adobuild_javasdk_114";
public static String SdkVersionString = "JavaSDK-0.205.231110";
public static String SdkVersion = "0.206.231124";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.206.231124";

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.205.231110.jar -Destination ../../builds/combo-sdk-0.205.231110.jar
Copy-Item combo-sdk-0.206.231124.jar -Destination ../../builds/combo-sdk-0.206.231124.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.205.231110.jar ../../builds/combo-sdk-0.205.231110.jar
cp combo-sdk-0.206.231124.jar ../../builds/combo-sdk-0.206.231124.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.205.231110</version>
<version>0.206.231124</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
15 changes: 8 additions & 7 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static class AbortTaskInstanceRequest {

/** The work to be performed on each entity which can only be of one type. */
public static class Action {
/** Action content to Add Inventory item v2 */
/** Action content to add inventory item v2 */
public AddInventoryItemV2Content AddInventoryItemV2Content;
/** Action content to ban player */
public BanPlayerContent BanPlayerContent;
Expand All @@ -38,7 +38,7 @@ public static class Action {
public PushNotificationContent PushNotificationContent;
/** Action content to send email */
public SendEmailContent SendEmailContent;
/** Action content to Subtract Inventory item v2 */
/** Action content to subtract inventory item v2 */
public SubtractInventoryItemV2Content SubtractInventoryItemV2Content;

}
Expand Down Expand Up @@ -2172,10 +2172,10 @@ public static enum GenericErrorCodes {
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -2223,7 +2223,8 @@ public static enum GenericErrorCodes {
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

public static class GetActionsOnPlayersInSegmentTaskInstanceResult {
Expand Down
11 changes: 6 additions & 5 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -707,10 +707,10 @@ public static enum PlayFabErrorCode {
LobbyNewOwnerMustBeConnected(13009),
LobbyCurrentOwnerStillConnected(13010),
LobbyMemberIsNotOwner(13011),
LobbyAssociatedServerMismatch(13012),
LobbyAssociatedServerNotFound(13013),
LobbyAssociatedToDifferentServer(13014),
LobbyServerAlreadyAssociated(13015),
LobbyServerMismatch(13012),
LobbyServerNotFound(13013),
LobbyDifferentServerAlreadyJoined(13014),
LobbyServerAlreadyJoined(13015),
LobbyIsNotClientOwned(13016),
LobbyDoesNotUseConnections(13017),
EventSamplingInvalidRatio(14000),
Expand Down Expand Up @@ -758,7 +758,8 @@ public static enum PlayFabErrorCode {
AddonAlreadyExists(19008),
AddonDoesntExist(19009),
CopilotDisabled(19100),
CopilotInvalidRequest(19101);
CopilotInvalidRequest(19101),
TrueSkillUnauthorized(20000);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
/**
* API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
* together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
* The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
* from this service are commonly used by a matchmaking service to provide players with balanced matches.
*/
public class PlayFabMultiplayerAPI {
private static Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").create();
Expand Down
11 changes: 6 additions & 5 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1801,10 +1801,10 @@ public static enum GenericErrorCodes {
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -1852,7 +1852,8 @@ public static enum GenericErrorCodes {
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

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.205.231110";
public static String BuildIdentifier = "adobuild_javasdk_114";
public static String SdkVersionString = "JavaSDK-0.205.231110";
public static String SdkVersion = "0.206.231124";
public static String BuildIdentifier = "adobuild_javasdk_118";
public static String SdkVersionString = "JavaSDK-0.206.231124";

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.205.231110.jar -Destination ../../builds/server-sdk-0.205.231110.jar
Copy-Item server-sdk-0.206.231124.jar -Destination ../../builds/server-sdk-0.206.231124.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.205.231110.jar ../../builds/server-sdk-0.205.231110.jar
cp server-sdk-0.206.231124.jar ../../builds/server-sdk-0.206.231124.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.205.231110</version>
<version>0.206.231124</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 @@ -16,7 +16,7 @@ public static class AbortTaskInstanceRequest {

/** The work to be performed on each entity which can only be of one type. */
public static class Action {
/** Action content to Add Inventory item v2 */
/** Action content to add inventory item v2 */
public AddInventoryItemV2Content AddInventoryItemV2Content;
/** Action content to ban player */
public BanPlayerContent BanPlayerContent;
Expand All @@ -38,7 +38,7 @@ public static class Action {
public PushNotificationContent PushNotificationContent;
/** Action content to send email */
public SendEmailContent SendEmailContent;
/** Action content to Subtract Inventory item v2 */
/** Action content to subtract inventory item v2 */
public SubtractInventoryItemV2Content SubtractInventoryItemV2Content;

}
Expand Down Expand Up @@ -2172,10 +2172,10 @@ public static enum GenericErrorCodes {
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -2223,7 +2223,8 @@ public static enum GenericErrorCodes {
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

public static class GetActionsOnPlayersInSegmentTaskInstanceResult {
Expand Down
11 changes: 6 additions & 5 deletions PlayFabServerSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -707,10 +707,10 @@ public static enum PlayFabErrorCode {
LobbyNewOwnerMustBeConnected(13009),
LobbyCurrentOwnerStillConnected(13010),
LobbyMemberIsNotOwner(13011),
LobbyAssociatedServerMismatch(13012),
LobbyAssociatedServerNotFound(13013),
LobbyAssociatedToDifferentServer(13014),
LobbyServerAlreadyAssociated(13015),
LobbyServerMismatch(13012),
LobbyServerNotFound(13013),
LobbyDifferentServerAlreadyJoined(13014),
LobbyServerAlreadyJoined(13015),
LobbyIsNotClientOwned(13016),
LobbyDoesNotUseConnections(13017),
EventSamplingInvalidRatio(14000),
Expand Down Expand Up @@ -758,7 +758,8 @@ public static enum PlayFabErrorCode {
AddonAlreadyExists(19008),
AddonDoesntExist(19009),
CopilotDisabled(19100),
CopilotInvalidRequest(19101);
CopilotInvalidRequest(19101),
TrueSkillUnauthorized(20000);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
/**
* API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
* together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
* The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
* from this service are commonly used by a matchmaking service to provide players with balanced matches.
*/
public class PlayFabMultiplayerAPI {
private static Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'").create();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1801,10 +1801,10 @@ public static enum GenericErrorCodes {
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -1852,7 +1852,8 @@ public static enum GenericErrorCodes {
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

public static class GenericPlayFabIdPair {
Expand Down
Loading

0 comments on commit e64e549

Please sign in to comment.