Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes/#191121
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFabJenkinsBot committed Nov 22, 2019
2 parents 5b7206d + f0e5f36 commit dc2d696
Show file tree
Hide file tree
Showing 30 changed files with 103 additions and 35 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.101.191029.jar -Destination ../../builds/client-sdk-0.101.191029.jar
Copy-Item client-sdk-0.102.191121.jar -Destination ../../builds/client-sdk-0.102.191121.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.101.191029.jar ../../builds/client-sdk-0.101.191029.jar
cp client-sdk-0.102.191121.jar ../../builds/client-sdk-0.102.191121.jar
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,10 @@ public static enum PlayFabErrorCode {
InsightsManagementGetOperationStatusInvalidParameter(1488),
DuplicatePurchaseTransactionId(1489),
EvaluationModePlayerCountExceeded(1490),
GetPlayersInSegmentRateLimitExceeded(1491),
CloudScriptFunctionNameSizeExceeded(1492),
InsightsManagementTitleInEvaluationMode(1493),
CloudScriptAzureFunctionsQueueRequestError(1494),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down Expand Up @@ -543,6 +547,7 @@ public static enum PlayFabErrorCode {
ExportCantEditPendingExport(5014),
ExportLimitExports(5015),
ExportLimitEvents(5016),
ExportInvalidPartitionStatusModification(5017),
TitleNotEnabledForParty(6000),
PartyVersionNotFound(6001),
MultiplayerServerBuildReferencedByMatchmakingQueue(6002),
Expand All @@ -556,6 +561,8 @@ public static enum PlayFabErrorCode {
ExperimentationExceededMaxVariantLength(7007),
ExperimentInvalidId(7008),
ExperimentationNoScorecard(7009),
ExperimentationTreatmentAssignmentFailed(7010),
ExperimentationTreatmentAssignmentDisabled(7011),
MaxActionDepthExceeded(8000),
SnapshotNotFound(11000);

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.101.191029";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-2_0";
public static String SdkVersionString = "JavaSDK-0.101.191029";
public static String SdkVersion = "0.102.191121";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-3_2";
public static String SdkVersionString = "JavaSDK-0.102.191121";

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.101.191029.jar -Destination ../../builds/client-sdk-0.101.191029.jar
Copy-Item client-sdk-0.102.191121.jar -Destination ../../builds/client-sdk-0.102.191121.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.101.191029.jar ../../builds/client-sdk-0.101.191029.jar
cp client-sdk-0.102.191121.jar ../../builds/client-sdk-0.102.191121.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.101.191029</version>
<version>0.102.191121</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
7 changes: 7 additions & 0 deletions PlayFabClientSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,10 @@ public static enum PlayFabErrorCode {
InsightsManagementGetOperationStatusInvalidParameter(1488),
DuplicatePurchaseTransactionId(1489),
EvaluationModePlayerCountExceeded(1490),
GetPlayersInSegmentRateLimitExceeded(1491),
CloudScriptFunctionNameSizeExceeded(1492),
InsightsManagementTitleInEvaluationMode(1493),
CloudScriptAzureFunctionsQueueRequestError(1494),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down Expand Up @@ -543,6 +547,7 @@ public static enum PlayFabErrorCode {
ExportCantEditPendingExport(5014),
ExportLimitExports(5015),
ExportLimitEvents(5016),
ExportInvalidPartitionStatusModification(5017),
TitleNotEnabledForParty(6000),
PartyVersionNotFound(6001),
MultiplayerServerBuildReferencedByMatchmakingQueue(6002),
Expand All @@ -556,6 +561,8 @@ public static enum PlayFabErrorCode {
ExperimentationExceededMaxVariantLength(7007),
ExperimentInvalidId(7008),
ExperimentationNoScorecard(7009),
ExperimentationTreatmentAssignmentFailed(7010),
ExperimentationTreatmentAssignmentDisabled(7011),
MaxActionDepthExceeded(8000),
SnapshotNotFound(11000);

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.101.191029";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-2_0";
public static String SdkVersionString = "JavaSDK-0.101.191029";
public static String SdkVersion = "0.102.191121";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-3_2";
public static String SdkVersionString = "JavaSDK-0.102.191121";

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.101.191029.jar -Destination ../../builds/combo-sdk-0.101.191029.jar
Copy-Item combo-sdk-0.102.191121.jar -Destination ../../builds/combo-sdk-0.102.191121.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.101.191029.jar ../../builds/combo-sdk-0.101.191029.jar
cp combo-sdk-0.102.191121.jar ../../builds/combo-sdk-0.102.191121.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.101.191029</version>
<version>0.102.191121</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
9 changes: 6 additions & 3 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,8 @@ private static PlayFabResult<GetPlayerSharedSecretsResult> privateGetPlayerShare
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
* @param request GetPlayersInSegmentRequest
* @return Async Task will return GetPlayersInSegmentResult
*/
Expand All @@ -2417,7 +2418,8 @@ public PlayFabResult<GetPlayersInSegmentResult> call() throws Exception {
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
* @param request GetPlayersInSegmentRequest
* @return GetPlayersInSegmentResult
*/
Expand All @@ -2440,7 +2442,8 @@ public PlayFabResult<GetPlayersInSegmentResult> call() throws Exception {
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
*/
@SuppressWarnings("unchecked")
private static PlayFabResult<GetPlayersInSegmentResult> privateGetPlayersInSegmentAsync(final GetPlayersInSegmentRequest request) throws Exception {
Expand Down
7 changes: 7 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabAdminModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1722,6 +1722,10 @@ public static enum GenericErrorCodes {
InsightsManagementGetOperationStatusInvalidParameter,
DuplicatePurchaseTransactionId,
EvaluationModePlayerCountExceeded,
GetPlayersInSegmentRateLimitExceeded,
CloudScriptFunctionNameSizeExceeded,
InsightsManagementTitleInEvaluationMode,
CloudScriptAzureFunctionsQueueRequestError,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -1774,6 +1778,7 @@ public static enum GenericErrorCodes {
ExportCantEditPendingExport,
ExportLimitExports,
ExportLimitEvents,
ExportInvalidPartitionStatusModification,
TitleNotEnabledForParty,
PartyVersionNotFound,
MultiplayerServerBuildReferencedByMatchmakingQueue,
Expand All @@ -1787,6 +1792,8 @@ public static enum GenericErrorCodes {
ExperimentationExceededMaxVariantLength,
ExperimentInvalidId,
ExperimentationNoScorecard,
ExperimentationTreatmentAssignmentFailed,
ExperimentationTreatmentAssignmentDisabled,
MaxActionDepthExceeded,
SnapshotNotFound
}
Expand Down
7 changes: 7 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabErrors.java
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,10 @@ public static enum PlayFabErrorCode {
InsightsManagementGetOperationStatusInvalidParameter(1488),
DuplicatePurchaseTransactionId(1489),
EvaluationModePlayerCountExceeded(1490),
GetPlayersInSegmentRateLimitExceeded(1491),
CloudScriptFunctionNameSizeExceeded(1492),
InsightsManagementTitleInEvaluationMode(1493),
CloudScriptAzureFunctionsQueueRequestError(1494),
MatchmakingEntityInvalid(2001),
MatchmakingPlayerAttributesInvalid(2002),
MatchmakingQueueNotFound(2016),
Expand Down Expand Up @@ -543,6 +547,7 @@ public static enum PlayFabErrorCode {
ExportCantEditPendingExport(5014),
ExportLimitExports(5015),
ExportLimitEvents(5016),
ExportInvalidPartitionStatusModification(5017),
TitleNotEnabledForParty(6000),
PartyVersionNotFound(6001),
MultiplayerServerBuildReferencedByMatchmakingQueue(6002),
Expand All @@ -556,6 +561,8 @@ public static enum PlayFabErrorCode {
ExperimentationExceededMaxVariantLength(7007),
ExperimentInvalidId(7008),
ExperimentationNoScorecard(7009),
ExperimentationTreatmentAssignmentFailed(7010),
ExperimentationTreatmentAssignmentDisabled(7011),
MaxActionDepthExceeded(8000),
SnapshotNotFound(11000);

Expand Down
9 changes: 6 additions & 3 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabServerAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -2327,7 +2327,8 @@ private static PlayFabResult<GetPlayerSegmentsResult> privateGetPlayerSegmentsAs
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
* @param request GetPlayersInSegmentRequest
* @return Async Task will return GetPlayersInSegmentResult
*/
Expand All @@ -2344,7 +2345,8 @@ public PlayFabResult<GetPlayersInSegmentResult> call() throws Exception {
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
* @param request GetPlayersInSegmentRequest
* @return GetPlayersInSegmentResult
*/
Expand All @@ -2367,7 +2369,8 @@ public PlayFabResult<GetPlayersInSegmentResult> call() throws Exception {
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
*/
@SuppressWarnings("unchecked")
private static PlayFabResult<GetPlayersInSegmentResult> privateGetPlayersInSegmentAsync(final GetPlayersInSegmentRequest request) throws Exception {
Expand Down
7 changes: 7 additions & 0 deletions PlayFabSDK/src/main/java/com/playfab/PlayFabServerModels.java
Original file line number Diff line number Diff line change
Expand Up @@ -1562,6 +1562,10 @@ public static enum GenericErrorCodes {
InsightsManagementGetOperationStatusInvalidParameter,
DuplicatePurchaseTransactionId,
EvaluationModePlayerCountExceeded,
GetPlayersInSegmentRateLimitExceeded,
CloudScriptFunctionNameSizeExceeded,
InsightsManagementTitleInEvaluationMode,
CloudScriptAzureFunctionsQueueRequestError,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -1614,6 +1618,7 @@ public static enum GenericErrorCodes {
ExportCantEditPendingExport,
ExportLimitExports,
ExportLimitEvents,
ExportInvalidPartitionStatusModification,
TitleNotEnabledForParty,
PartyVersionNotFound,
MultiplayerServerBuildReferencedByMatchmakingQueue,
Expand All @@ -1627,6 +1632,8 @@ public static enum GenericErrorCodes {
ExperimentationExceededMaxVariantLength,
ExperimentInvalidId,
ExperimentationNoScorecard,
ExperimentationTreatmentAssignmentFailed,
ExperimentationTreatmentAssignmentDisabled,
MaxActionDepthExceeded,
SnapshotNotFound
}
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.101.191029";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-2_0";
public static String SdkVersionString = "JavaSDK-0.101.191029";
public static String SdkVersion = "0.102.191121";
public static String BuildIdentifier = "jbuild_javasdk__sdk-genericslave-3_2";
public static String SdkVersionString = "JavaSDK-0.102.191121";

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.101.191029.jar -Destination ../../builds/server-sdk-0.101.191029.jar
Copy-Item server-sdk-0.102.191121.jar -Destination ../../builds/server-sdk-0.102.191121.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.101.191029.jar ../../builds/server-sdk-0.101.191029.jar
cp server-sdk-0.102.191121.jar ../../builds/server-sdk-0.102.191121.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.101.191029</version>
<version>0.102.191121</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>http://api.playfab.com/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,8 @@ private static PlayFabResult<GetPlayerSharedSecretsResult> privateGetPlayerShare
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
* @param request GetPlayersInSegmentRequest
* @return Async Task will return GetPlayersInSegmentResult
*/
Expand All @@ -2417,7 +2418,8 @@ public PlayFabResult<GetPlayersInSegmentResult> call() throws Exception {
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
* @param request GetPlayersInSegmentRequest
* @return GetPlayersInSegmentResult
*/
Expand All @@ -2440,7 +2442,8 @@ public PlayFabResult<GetPlayersInSegmentResult> call() throws Exception {
* Allows for paging through all players in a given segment. This API creates a snapshot of all player profiles that match
* the segment definition at the time of its creation and lives through the Total Seconds to Live, refreshing its life span
* on each subsequent use of the Continuation Token. Profiles that change during the course of paging will not be reflected
* in the results. AB Test segments are currently not supported by this operation.
* in the results. AB Test segments are currently not supported by this operation. NOTE: This API is limited to being
* called 30 times in one minute. You will be returned an error if you exceed this threshold.
*/
@SuppressWarnings("unchecked")
private static PlayFabResult<GetPlayersInSegmentResult> privateGetPlayersInSegmentAsync(final GetPlayersInSegmentRequest request) throws Exception {
Expand Down
Loading

0 comments on commit dc2d696

Please sign in to comment.