Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes/#180618
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Jun 18, 2018
2 parents 343cdbb + 423aa78 commit 8577ea0
Show file tree
Hide file tree
Showing 29 changed files with 363 additions and 249 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2547,16 +2547,6 @@ public static class ModifyUserVirtualCurrencyResult {

}

/**
* Identifier by either name or ID. Note that a name may change due to renaming, or reused after being deleted. ID is
* immutable and unique.
*/
public static class NameIdentifier {
public String Id;
public String Name;

}

public static class OpenTradeRequest {
/**
* Players who are allowed to accept the trade. If null, the trade may be accepted by any player. If empty, the trade may
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public static enum PlayFabErrorCode {
Unknown(1),
ConnectionError(2),
JsonParseError(3),
MatchmakingHopperIdInvalid(230),
UnkownError(500),
InvalidParams(1000),
AccountNotFound(1001),
Expand Down Expand Up @@ -380,16 +381,47 @@ public static enum PlayFabErrorCode {
NoValidCertificateForAad(1376),
InvalidCertificateForAad(1377),
DuplicateDropTableId(1378),
ComputeOK(1379),
ComputeAccepted(1380),
ComputeNoContent(1381),
ComputeBadRequest(1382),
ComputeUnauthorized(1383),
ComputeForbidden(1384),
ComputeNotFound(1385),
ComputeConflict(1386),
ComputeInternalServerError(1387),
ComputeServiceUnavailable(1388);
GameServerOk(1379),
GameServerAccepted(1380),
GameServerNoContent(1381),
GameServerBadRequest(1382),
GameServerUnauthorized(1383),
GameServerForbidden(1384),
GameServerNotFound(1385),
GameServerConflict(1386),
GameServerInternalServerError(1387),
GameServerServiceUnavailable(1388),
MatchmakingInvalidEntityKeyList(2000),
MatchmakingInvalidTicketCreatorProfile(2001),
MatchmakingInvalidUserAttributes(2002),
MatchmakingCreateRequestMissing(2003),
MatchmakingCreateRequestCreatorMissing(2004),
MatchmakingCreateRequestCreatorIdMissing(2005),
MatchmakingCreateRequestUserListMissing(2006),
MatchmakingCreateRequestGiveUpAfterInvalid(2007),
MatchmakingTicketIdMissing(2008),
MatchmakingMatchIdMissing(2009),
MatchmakingMatchIdIdMissing(2010),
MatchmakingHopperIdMissing(2011),
MatchmakingTitleIdMissing(2012),
MatchmakingTicketIdIdMissing(2013),
MatchmakingUserIdMissing(2014),
MatchmakingJoinRequestUserMissing(2015),
MatchmakingHopperConfigNotFound(2016),
MatchmakingMatchNotFound(2017),
MatchmakingTicketNotFound(2018),
MatchmakingCreateTicketServerIdentityInvalid(2019),
MatchmakingCreateTicketClientIdentityInvalid(2020),
MatchmakingGetTicketUserMismatch(2021),
MatchmakingJoinTicketServerIdentityInvalid(2022),
MatchmakingJoinTicketUserIdentityMismatch(2023),
MatchmakingCancelTicketServerIdentityInvalid(2024),
MatchmakingCancelTicketUserIdentityMismatch(2025),
MatchmakingGetMatchIdentityMismatch(2026),
MatchmakingUserIdentityMismatch(2027),
MatchmakingAlreadyJoinedTicket(2028),
MatchmakingTicketAlreadyCompleted(2029),
MatchmakingHopperConfigInvalid(2031);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.67.180529";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.67.180529";
public static String SdkVersion = "0.68.180618";
public static String BuildIdentifier = "jbuild_javasdk_1";
public static String SdkVersionString = "JavaSDK-0.68.180618";

public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
public static ErrorCallback GlobalErrorHandler;
Expand Down
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.67.180529</version>
<version>0.68.180618</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>http://api.playfab.com/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2547,16 +2547,6 @@ public static class ModifyUserVirtualCurrencyResult {

}

/**
* Identifier by either name or ID. Note that a name may change due to renaming, or reused after being deleted. ID is
* immutable and unique.
*/
public static class NameIdentifier {
public String Id;
public String Name;

}

public static class OpenTradeRequest {
/**
* Players who are allowed to accept the trade. If null, the trade may be accepted by any player. If empty, the trade may
Expand Down
52 changes: 42 additions & 10 deletions PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public static enum PlayFabErrorCode {
Unknown(1),
ConnectionError(2),
JsonParseError(3),
MatchmakingHopperIdInvalid(230),
UnkownError(500),
InvalidParams(1000),
AccountNotFound(1001),
Expand Down Expand Up @@ -380,16 +381,47 @@ public static enum PlayFabErrorCode {
NoValidCertificateForAad(1376),
InvalidCertificateForAad(1377),
DuplicateDropTableId(1378),
ComputeOK(1379),
ComputeAccepted(1380),
ComputeNoContent(1381),
ComputeBadRequest(1382),
ComputeUnauthorized(1383),
ComputeForbidden(1384),
ComputeNotFound(1385),
ComputeConflict(1386),
ComputeInternalServerError(1387),
ComputeServiceUnavailable(1388);
GameServerOk(1379),
GameServerAccepted(1380),
GameServerNoContent(1381),
GameServerBadRequest(1382),
GameServerUnauthorized(1383),
GameServerForbidden(1384),
GameServerNotFound(1385),
GameServerConflict(1386),
GameServerInternalServerError(1387),
GameServerServiceUnavailable(1388),
MatchmakingInvalidEntityKeyList(2000),
MatchmakingInvalidTicketCreatorProfile(2001),
MatchmakingInvalidUserAttributes(2002),
MatchmakingCreateRequestMissing(2003),
MatchmakingCreateRequestCreatorMissing(2004),
MatchmakingCreateRequestCreatorIdMissing(2005),
MatchmakingCreateRequestUserListMissing(2006),
MatchmakingCreateRequestGiveUpAfterInvalid(2007),
MatchmakingTicketIdMissing(2008),
MatchmakingMatchIdMissing(2009),
MatchmakingMatchIdIdMissing(2010),
MatchmakingHopperIdMissing(2011),
MatchmakingTitleIdMissing(2012),
MatchmakingTicketIdIdMissing(2013),
MatchmakingUserIdMissing(2014),
MatchmakingJoinRequestUserMissing(2015),
MatchmakingHopperConfigNotFound(2016),
MatchmakingMatchNotFound(2017),
MatchmakingTicketNotFound(2018),
MatchmakingCreateTicketServerIdentityInvalid(2019),
MatchmakingCreateTicketClientIdentityInvalid(2020),
MatchmakingGetTicketUserMismatch(2021),
MatchmakingJoinTicketServerIdentityInvalid(2022),
MatchmakingJoinTicketUserIdentityMismatch(2023),
MatchmakingCancelTicketServerIdentityInvalid(2024),
MatchmakingCancelTicketUserIdentityMismatch(2025),
MatchmakingGetMatchIdentityMismatch(2026),
MatchmakingUserIdentityMismatch(2027),
MatchmakingAlreadyJoinedTicket(2028),
MatchmakingTicketAlreadyCompleted(2029),
MatchmakingHopperConfigInvalid(2031);

public int id;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import com.playfab.PlayFabErrors.ErrorCallback;

public class PlayFabSettings {
public static String SdkVersion = "0.67.180529";
public static String BuildIdentifier = "jbuild_javasdk_0";
public static String SdkVersionString = "JavaSDK-0.67.180529";
public static String SdkVersion = "0.68.180618";
public static String BuildIdentifier = "jbuild_javasdk_1";
public static String SdkVersionString = "JavaSDK-0.68.180618";

public static String TitleId = null; // You must set this value for PlayFabSdk to work properly (Found in the Game Manager for your title, at the PlayFab Website)
public static ErrorCallback GlobalErrorHandler;
Expand Down
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.67.180529</version>
<version>0.68.180618</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>http://api.playfab.com/</url>
Expand Down
75 changes: 48 additions & 27 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1013,21 +1013,6 @@ public static class DeleteTitleResult {

}

public static class DeleteUsersRequest {
/** An array of unique PlayFab assigned ID of the user on whom the operation will be performed. */
public ArrayList<String> PlayFabIds;
/**
* Unique identifier for the title, found in the Settings &gt; Game Properties section of the PlayFab developer site when a
* title has been selected.
*/
public String TitleId;

}

public static class DeleteUsersResult {

}

public static enum EffectType {
Allow,
Deny
Expand Down Expand Up @@ -1138,6 +1123,7 @@ public static class GameModeInfo {

public static enum GenericErrorCodes {
Success,
MatchmakingHopperIdInvalid,
UnkownError,
InvalidParams,
AccountNotFound,
Expand Down Expand Up @@ -1506,16 +1492,47 @@ public static enum GenericErrorCodes {
NoValidCertificateForAad,
InvalidCertificateForAad,
DuplicateDropTableId,
ComputeOK,
ComputeAccepted,
ComputeNoContent,
ComputeBadRequest,
ComputeUnauthorized,
ComputeForbidden,
ComputeNotFound,
ComputeConflict,
ComputeInternalServerError,
ComputeServiceUnavailable
GameServerOk,
GameServerAccepted,
GameServerNoContent,
GameServerBadRequest,
GameServerUnauthorized,
GameServerForbidden,
GameServerNotFound,
GameServerConflict,
GameServerInternalServerError,
GameServerServiceUnavailable,
MatchmakingInvalidEntityKeyList,
MatchmakingInvalidTicketCreatorProfile,
MatchmakingInvalidUserAttributes,
MatchmakingCreateRequestMissing,
MatchmakingCreateRequestCreatorMissing,
MatchmakingCreateRequestCreatorIdMissing,
MatchmakingCreateRequestUserListMissing,
MatchmakingCreateRequestGiveUpAfterInvalid,
MatchmakingTicketIdMissing,
MatchmakingMatchIdMissing,
MatchmakingMatchIdIdMissing,
MatchmakingHopperIdMissing,
MatchmakingTitleIdMissing,
MatchmakingTicketIdIdMissing,
MatchmakingUserIdMissing,
MatchmakingJoinRequestUserMissing,
MatchmakingHopperConfigNotFound,
MatchmakingMatchNotFound,
MatchmakingTicketNotFound,
MatchmakingCreateTicketServerIdentityInvalid,
MatchmakingCreateTicketClientIdentityInvalid,
MatchmakingGetTicketUserMismatch,
MatchmakingJoinTicketServerIdentityInvalid,
MatchmakingJoinTicketUserIdentityMismatch,
MatchmakingCancelTicketServerIdentityInvalid,
MatchmakingCancelTicketUserIdentityMismatch,
MatchmakingGetMatchIdentityMismatch,
MatchmakingUserIdentityMismatch,
MatchmakingAlreadyJoinedTicket,
MatchmakingTicketAlreadyCompleted,
MatchmakingHopperConfigInvalid
}

public static class GetActionsOnPlayersInSegmentTaskInstanceResult {
Expand Down Expand Up @@ -2408,7 +2425,9 @@ public static class ModifyUserVirtualCurrencyResult {
* immutable and unique.
*/
public static class NameIdentifier {
/** Id Identifier, if present */
public String Id;
/** Name Identifier, if present */
public String Name;

}
Expand Down Expand Up @@ -2678,7 +2697,8 @@ public static class RefundPurchaseRequest {
/** Unique PlayFab assigned ID of the user on whom the operation will be performed. */
public String PlayFabId;
/**
* Reason for refund. In the case of Facebook this must match one of their refund or dispute resolution enums (See:
* The Reason parameter should correspond with the payment providers reason field, if they require one such as Facebook. In
* the case of Facebook this must match one of their refund or dispute resolution enums (See:
* https://developers.facebook.com/docs/payments/implementation-guide/handling-disputes-refunds)
*/
public String Reason;
Expand Down Expand Up @@ -2780,7 +2800,8 @@ public static class ResolvePurchaseDisputeRequest {
/** Unique PlayFab assigned ID of the user on whom the operation will be performed. */
public String PlayFabId;
/**
* Reason for refund. In the case of Facebook this must match one of their refund or dispute resolution enums (See:
* The Reason parameter should correspond with the payment providers reason field, if they require one such as Facebook. In
* the case of Facebook this must match one of their refund or dispute resolution enums (See:
* https://developers.facebook.com/docs/payments/implementation-guide/handling-disputes-refunds)
*/
public String Reason;
Expand Down
10 changes: 0 additions & 10 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabClientModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -2547,16 +2547,6 @@ public static class ModifyUserVirtualCurrencyResult {

}

/**
* Identifier by either name or ID. Note that a name may change due to renaming, or reused after being deleted. ID is
* immutable and unique.
*/
public static class NameIdentifier {
public String Id;
public String Name;

}

public static class OpenTradeRequest {
/**
* Players who are allowed to accept the trade. If null, the trade may be accepted by any player. If empty, the trade may
Expand Down
Loading

0 comments on commit 8577ea0

Please sign in to comment.