Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#240719
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Jul 22, 2024
2 parents f777b19 + 0d3b835 commit 5f2d233
Show file tree
Hide file tree
Showing 17 changed files with 139 additions and 29 deletions.
20 changes: 19 additions & 1 deletion PlayFabSDK/source/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2798,8 +2798,16 @@ public enum GenericErrorCodes
StatisticDefinitionModificationNotAllowedWhileLinked,
LeaderboardUpdateNotAllowedWhileLinked,
CloudScriptAzureFunctionsEventHubRequestError,
LeaderboardRateLimitExceeded,
ExternalEntityNotAllowedForTier,
InvalidBaseTimeForInterval,
EntityTypeMismatchWithStatDefinition,
SpecifiedVersionLeaderboardNotFound,
LeaderboardColumnLengthMismatchWithStatDefinition,
DuplicateColumnNameFound,
LinkedStatisticColumnNotFound,
LinkedStatisticColumnRequired,
MultipleLinkedStatisticsNotAllowed,
MaxQueryableVerionsValueNotAllowedForTier,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2977,6 +2985,7 @@ public enum GenericErrorCodes
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
EventSinkTenantIdInvalid,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand Down Expand Up @@ -3058,7 +3067,16 @@ public enum GenericErrorCodes
TrueSkillInvalidAnomalyThreshold,
TrueSkillConditionKeyLimitExceeded,
TrueSkillConditionValuePerKeyLimitExceeded,
TrueSkillInvalidTimestamp,
TrueSkillEventLimitExceeded,
TrueSkillInvalidPlayers,
TrueSkillTrueSkillPlayerNull,
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
StateShareForbidden,
StateShareTitleNotInFlight,
StateShareStateNotFound,
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabEconomyAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public static async Task<PlayFabResult<DeleteItemResponse>> DeleteItemAsync(Dele
}

/// <summary>
/// Execute a list of Inventory Operations. A maximum list of 250 operations can be performed by a single request. There is
/// Execute a list of Inventory Operations. A maximum list of 50 operations can be performed by a single request. There is
/// also a limit to 300 items that can be modified/added in a single request. For example, adding a bundle with 50 items
/// counts as 50 items modified. All operations must be done within a single inventory collection. This API has a reduced
/// RPS compared to an individual inventory operation with Player Entities limited to 60 requests in 90 seconds.
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabEconomyInstanceAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public async Task<PlayFabResult<DeleteItemResponse>> DeleteItemAsync(DeleteItemR
}

/// <summary>
/// Execute a list of Inventory Operations. A maximum list of 250 operations can be performed by a single request. There is
/// Execute a list of Inventory Operations. A maximum list of 50 operations can be performed by a single request. There is
/// also a limit to 300 items that can be modified/added in a single request. For example, adding a bundle with 50 items
/// counts as 50 items modified. All operations must be done within a single inventory collection. This API has a reduced
/// RPS compared to an individual inventory operation with Player Entities limited to 60 requests in 90 seconds.
Expand Down
24 changes: 21 additions & 3 deletions PlayFabSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -580,8 +580,16 @@ public enum PlayFabErrorCode
StatisticDefinitionModificationNotAllowedWhileLinked = 1577,
LeaderboardUpdateNotAllowedWhileLinked = 1578,
CloudScriptAzureFunctionsEventHubRequestError = 1579,
LeaderboardRateLimitExceeded = 1580,
ExternalEntityNotAllowedForTier = 1581,
ExternalEntityNotAllowedForTier = 1580,
InvalidBaseTimeForInterval = 1581,
EntityTypeMismatchWithStatDefinition = 1582,
SpecifiedVersionLeaderboardNotFound = 1583,
LeaderboardColumnLengthMismatchWithStatDefinition = 1584,
DuplicateColumnNameFound = 1585,
LinkedStatisticColumnNotFound = 1586,
LinkedStatisticColumnRequired = 1587,
MultipleLinkedStatisticsNotAllowed = 1588,
MaxQueryableVerionsValueNotAllowedForTier = 1589,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down Expand Up @@ -759,6 +767,7 @@ public enum PlayFabErrorCode
EventSinkTitleUnauthorized = 15012,
EventSinkInsufficientRoleAssignment = 15013,
EventSinkContainerNotFound = 15014,
EventSinkTenantIdInvalid = 15015,
OperationCanceled = 16000,
InvalidDisplayNameRandomSuffixLength = 17000,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed = 17001,
Expand Down Expand Up @@ -840,7 +849,16 @@ public enum PlayFabErrorCode
TrueSkillInvalidAnomalyThreshold = 20056,
TrueSkillConditionKeyLimitExceeded = 20057,
TrueSkillConditionValuePerKeyLimitExceeded = 20058,
TrueSkillEventLimitExceeded = 20059,
TrueSkillInvalidTimestamp = 20059,
TrueSkillEventLimitExceeded = 20060,
TrueSkillInvalidPlayers = 20061,
TrueSkillTrueSkillPlayerNull = 20062,
TrueSkillInvalidPlayerId = 20063,
TrueSkillInvalidSquadSize = 20064,
TrueSkillConditionSetNotInModel = 20065,
GameSaveManifestNotFound = 20300,
GameSaveManifestVersionAlreadyExists = 20301,
GameSaveConflictUpdatingManifest = 20302,
StateShareForbidden = 21000,
StateShareTitleNotInFlight = 21001,
StateShareStateNotFound = 21002,
Expand Down
3 changes: 2 additions & 1 deletion PlayFabSDK/source/PlayFabMultiplayerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1935,7 +1935,8 @@ public enum DirectPeerConnectivityOptions
SameEntityLoginProvider,
DifferentEntityLoginProvider,
AnyEntityLoginProvider,
AnyPlatformTypeAndEntityLoginProvider
AnyPlatformTypeAndEntityLoginProvider,
OnlyServers
}

public class DynamicStandbySettings
Expand Down
4 changes: 2 additions & 2 deletions PlayFabSDK/source/PlayFabSDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<FileAlignment>512</FileAlignment>

<PackageId>PlayFabAllSDK</PackageId>
<Version>1.183.240621</Version>
<Version>1.184.240719</Version>
<Title>PlayFab CSharp Sdk</Title>
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
Expand All @@ -21,7 +21,7 @@
<Company>PlayFab</Company>
<Product>PlayFabSDK</Product>
<PackageTags>PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native</PackageTags>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240621</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240719</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
20 changes: 19 additions & 1 deletion PlayFabSDK/source/PlayFabServerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2118,8 +2118,16 @@ public enum GenericErrorCodes
StatisticDefinitionModificationNotAllowedWhileLinked,
LeaderboardUpdateNotAllowedWhileLinked,
CloudScriptAzureFunctionsEventHubRequestError,
LeaderboardRateLimitExceeded,
ExternalEntityNotAllowedForTier,
InvalidBaseTimeForInterval,
EntityTypeMismatchWithStatDefinition,
SpecifiedVersionLeaderboardNotFound,
LeaderboardColumnLengthMismatchWithStatDefinition,
DuplicateColumnNameFound,
LinkedStatisticColumnNotFound,
LinkedStatisticColumnRequired,
MultipleLinkedStatisticsNotAllowed,
MaxQueryableVerionsValueNotAllowedForTier,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2297,6 +2305,7 @@ public enum GenericErrorCodes
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
EventSinkTenantIdInvalid,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand Down Expand Up @@ -2378,7 +2387,16 @@ public enum GenericErrorCodes
TrueSkillInvalidAnomalyThreshold,
TrueSkillConditionKeyLimitExceeded,
TrueSkillConditionValuePerKeyLimitExceeded,
TrueSkillInvalidTimestamp,
TrueSkillEventLimitExceeded,
TrueSkillInvalidPlayers,
TrueSkillTrueSkillPlayerNull,
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
StateShareForbidden,
StateShareTitleNotInFlight,
StateShareStateNotFound,
Expand Down
6 changes: 3 additions & 3 deletions PlayFabSDK/source/PlayFabSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ namespace PlayFab
{
public class PlayFabSettings
{
public const string SdkVersion = "1.183.240621";
public const string BuildIdentifier = "adobuild_csharpsdk_118";
public const string SdkVersionString = "CSharpSDK-1.183.240621";
public const string SdkVersion = "1.184.240719";
public const string BuildIdentifier = "adobuild_csharpsdk_114";
public const string SdkVersionString = "CSharpSDK-1.184.240719";
/// <summary> This is only for customers running a private cluster. Generally you shouldn't touch this </summary>
public static string DefaultProductionEnvironmentUrl = "playfabapi.com";

Expand Down
6 changes: 3 additions & 3 deletions Plugins/CloudScript/source/PlayFabCloudScriptPlugin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<FileAlignment>512</FileAlignment>

<PackageId>PlayFabCloudScriptPlugin</PackageId>
<Version>1.183.240621-alpha</Version>
<Version>1.184.240719-alpha</Version>
<Title>PlayFab CSharp CloudScript Plugin</Title>
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
Expand All @@ -21,7 +21,7 @@
<Product>PlayFabCloudScriptPlugin</Product>
<Copyright>Copyright 2024</Copyright>
<PackageTags>PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native</PackageTags>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240621</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240719</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand All @@ -45,7 +45,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PlayFabAllSDK" Version="1.183.240621" />
<PackageReference Include="PlayFabAllSDK" Version="1.184.240719" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2798,8 +2798,16 @@ public enum GenericErrorCodes
StatisticDefinitionModificationNotAllowedWhileLinked,
LeaderboardUpdateNotAllowedWhileLinked,
CloudScriptAzureFunctionsEventHubRequestError,
LeaderboardRateLimitExceeded,
ExternalEntityNotAllowedForTier,
InvalidBaseTimeForInterval,
EntityTypeMismatchWithStatDefinition,
SpecifiedVersionLeaderboardNotFound,
LeaderboardColumnLengthMismatchWithStatDefinition,
DuplicateColumnNameFound,
LinkedStatisticColumnNotFound,
LinkedStatisticColumnRequired,
MultipleLinkedStatisticsNotAllowed,
MaxQueryableVerionsValueNotAllowedForTier,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2977,6 +2985,7 @@ public enum GenericErrorCodes
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
EventSinkTenantIdInvalid,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand Down Expand Up @@ -3058,7 +3067,16 @@ public enum GenericErrorCodes
TrueSkillInvalidAnomalyThreshold,
TrueSkillConditionKeyLimitExceeded,
TrueSkillConditionValuePerKeyLimitExceeded,
TrueSkillInvalidTimestamp,
TrueSkillEventLimitExceeded,
TrueSkillInvalidPlayers,
TrueSkillTrueSkillPlayerNull,
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
StateShareForbidden,
StateShareTitleNotInFlight,
StateShareStateNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ public static async Task<PlayFabResult<DeleteItemResponse>> DeleteItemAsync(Dele
}

/// <summary>
/// Execute a list of Inventory Operations. A maximum list of 250 operations can be performed by a single request. There is
/// Execute a list of Inventory Operations. A maximum list of 50 operations can be performed by a single request. There is
/// also a limit to 300 items that can be modified/added in a single request. For example, adding a bundle with 50 items
/// counts as 50 items modified. All operations must be done within a single inventory collection. This API has a reduced
/// RPS compared to an individual inventory operation with Player Entities limited to 60 requests in 90 seconds.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public async Task<PlayFabResult<DeleteItemResponse>> DeleteItemAsync(DeleteItemR
}

/// <summary>
/// Execute a list of Inventory Operations. A maximum list of 250 operations can be performed by a single request. There is
/// Execute a list of Inventory Operations. A maximum list of 50 operations can be performed by a single request. There is
/// also a limit to 300 items that can be modified/added in a single request. For example, adding a bundle with 50 items
/// counts as 50 items modified. All operations must be done within a single inventory collection. This API has a reduced
/// RPS compared to an individual inventory operation with Player Entities limited to 60 requests in 90 seconds.
Expand Down
24 changes: 21 additions & 3 deletions XamarinTestRunner/XamarinTestRunner/PlayFabSDK/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -580,8 +580,16 @@ public enum PlayFabErrorCode
StatisticDefinitionModificationNotAllowedWhileLinked = 1577,
LeaderboardUpdateNotAllowedWhileLinked = 1578,
CloudScriptAzureFunctionsEventHubRequestError = 1579,
LeaderboardRateLimitExceeded = 1580,
ExternalEntityNotAllowedForTier = 1581,
ExternalEntityNotAllowedForTier = 1580,
InvalidBaseTimeForInterval = 1581,
EntityTypeMismatchWithStatDefinition = 1582,
SpecifiedVersionLeaderboardNotFound = 1583,
LeaderboardColumnLengthMismatchWithStatDefinition = 1584,
DuplicateColumnNameFound = 1585,
LinkedStatisticColumnNotFound = 1586,
LinkedStatisticColumnRequired = 1587,
MultipleLinkedStatisticsNotAllowed = 1588,
MaxQueryableVerionsValueNotAllowedForTier = 1589,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down Expand Up @@ -759,6 +767,7 @@ public enum PlayFabErrorCode
EventSinkTitleUnauthorized = 15012,
EventSinkInsufficientRoleAssignment = 15013,
EventSinkContainerNotFound = 15014,
EventSinkTenantIdInvalid = 15015,
OperationCanceled = 16000,
InvalidDisplayNameRandomSuffixLength = 17000,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed = 17001,
Expand Down Expand Up @@ -840,7 +849,16 @@ public enum PlayFabErrorCode
TrueSkillInvalidAnomalyThreshold = 20056,
TrueSkillConditionKeyLimitExceeded = 20057,
TrueSkillConditionValuePerKeyLimitExceeded = 20058,
TrueSkillEventLimitExceeded = 20059,
TrueSkillInvalidTimestamp = 20059,
TrueSkillEventLimitExceeded = 20060,
TrueSkillInvalidPlayers = 20061,
TrueSkillTrueSkillPlayerNull = 20062,
TrueSkillInvalidPlayerId = 20063,
TrueSkillInvalidSquadSize = 20064,
TrueSkillConditionSetNotInModel = 20065,
GameSaveManifestNotFound = 20300,
GameSaveManifestVersionAlreadyExists = 20301,
GameSaveConflictUpdatingManifest = 20302,
StateShareForbidden = 21000,
StateShareTitleNotInFlight = 21001,
StateShareStateNotFound = 21002,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1935,7 +1935,8 @@ public enum DirectPeerConnectivityOptions
SameEntityLoginProvider,
DifferentEntityLoginProvider,
AnyEntityLoginProvider,
AnyPlatformTypeAndEntityLoginProvider
AnyPlatformTypeAndEntityLoginProvider,
OnlyServers
}

public class DynamicStandbySettings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<FileAlignment>512</FileAlignment>

<PackageId>PlayFabAllSDK</PackageId>
<Version>1.183.240621</Version>
<Version>1.184.240719</Version>
<Title>PlayFab CSharp Sdk</Title>
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
Expand All @@ -21,7 +21,7 @@
<Company>PlayFab</Company>
<Product>PlayFabSDK</Product>
<PackageTags>PlayFab, Baas, Paas, JSON, REST, HTTP, SSL, API, cloud, liveops, game, gamedev, native</PackageTags>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240621</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240719</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2118,8 +2118,16 @@ public enum GenericErrorCodes
StatisticDefinitionModificationNotAllowedWhileLinked,
LeaderboardUpdateNotAllowedWhileLinked,
CloudScriptAzureFunctionsEventHubRequestError,
LeaderboardRateLimitExceeded,
ExternalEntityNotAllowedForTier,
InvalidBaseTimeForInterval,
EntityTypeMismatchWithStatDefinition,
SpecifiedVersionLeaderboardNotFound,
LeaderboardColumnLengthMismatchWithStatDefinition,
DuplicateColumnNameFound,
LinkedStatisticColumnNotFound,
LinkedStatisticColumnRequired,
MultipleLinkedStatisticsNotAllowed,
MaxQueryableVerionsValueNotAllowedForTier,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2297,6 +2305,7 @@ public enum GenericErrorCodes
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
EventSinkTenantIdInvalid,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand Down Expand Up @@ -2378,7 +2387,16 @@ public enum GenericErrorCodes
TrueSkillInvalidAnomalyThreshold,
TrueSkillConditionKeyLimitExceeded,
TrueSkillConditionValuePerKeyLimitExceeded,
TrueSkillInvalidTimestamp,
TrueSkillEventLimitExceeded,
TrueSkillInvalidPlayers,
TrueSkillTrueSkillPlayerNull,
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
StateShareForbidden,
StateShareTitleNotInFlight,
StateShareStateNotFound,
Expand Down
Loading

0 comments on commit 5f2d233

Please sign in to comment.