Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#241014
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Oct 14, 2024
2 parents ec4f10f + 13ce093 commit 1756fb2
Show file tree
Hide file tree
Showing 19 changed files with 59 additions and 25 deletions.
4 changes: 4 additions & 0 deletions PlayFabSDK/source/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3078,6 +3078,8 @@ public enum GenericErrorCodes
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
TrueSkillModelStateInvalidForOperation,
TrueSkillScenarioContainsActiveModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
Expand All @@ -3087,6 +3089,8 @@ public enum GenericErrorCodes
GameSaveUnknownFileInManifest,
GameSaveFileExceededReportedSize,
GameSaveFileNotUploaded,
GameSaveBadRequest,
GameSaveOperationNotAllowed,
StateShareForbidden,
StateShareTitleNotInFlight,
StateShareStateNotFound,
Expand Down
4 changes: 4 additions & 0 deletions PlayFabSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,8 @@ public enum PlayFabErrorCode
TrueSkillInvalidPlayerId = 20063,
TrueSkillInvalidSquadSize = 20064,
TrueSkillConditionSetNotInModel = 20065,
TrueSkillModelStateInvalidForOperation = 20066,
TrueSkillScenarioContainsActiveModel = 20067,
GameSaveManifestNotFound = 20300,
GameSaveManifestVersionAlreadyExists = 20301,
GameSaveConflictUpdatingManifest = 20302,
Expand All @@ -869,6 +871,8 @@ public enum PlayFabErrorCode
GameSaveUnknownFileInManifest = 20306,
GameSaveFileExceededReportedSize = 20307,
GameSaveFileNotUploaded = 20308,
GameSaveBadRequest = 20309,
GameSaveOperationNotAllowed = 20310,
StateShareForbidden = 21000,
StateShareTitleNotInFlight = 21001,
StateShareStateNotFound = 21002,
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabMultiplayerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4542,7 +4542,7 @@ public class PartyNetworkConfiguration
public string DirectPeerConnectivityOptions ;

/// <summary>
/// The maximum number of devices allowed to connect to the network. Must be between 1 and 32, inclusive.
/// The maximum number of devices allowed to connect to the network. Must be between 1 and 128, inclusive.
/// </summary>
public uint MaxDevices ;

Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabProgressionAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static async Task<PlayFabResult<DeleteStatisticsResponse>> DeleteStatisti
}

/// <summary>
/// Get the friend leaderboard for the specified entity. A maximum of 100 friend entries are listed in the leaderboard.
/// Get the friend leaderboard for the specified entity. A maximum of 25 friend entries are listed in the leaderboard.
/// </summary>
public static async Task<PlayFabResult<GetEntityLeaderboardResponse>> GetFriendLeaderboardForEntityAsync(GetFriendLeaderboardForEntityRequest request, object customData = null, Dictionary<string, string> extraHeaders = null)
{
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabProgressionInstanceAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public async Task<PlayFabResult<DeleteStatisticsResponse>> DeleteStatisticsAsync
}

/// <summary>
/// Get the friend leaderboard for the specified entity. A maximum of 100 friend entries are listed in the leaderboard.
/// Get the friend leaderboard for the specified entity. A maximum of 25 friend entries are listed in the leaderboard.
/// </summary>
public async Task<PlayFabResult<GetEntityLeaderboardResponse>> GetFriendLeaderboardForEntityAsync(GetFriendLeaderboardForEntityRequest request, object customData = null, Dictionary<string, string> extraHeaders = null)
{
Expand Down
11 changes: 8 additions & 3 deletions PlayFabSDK/source/PlayFabProgressionModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class CreateStatisticDefinitionRequest : PlayFabRequestCommon
public string EntityType ;

/// <summary>
/// Name of the statistic. Must be less than 50 characters. Restricted to a-Z, 0-9, '(', ')', '_', '-' and '.'.
/// Name of the statistic. Must be less than 150 characters. Restricted to a-Z, 0-9, '(', ')', '_', '-' and '.'.
/// </summary>
public string Name ;

Expand Down Expand Up @@ -287,10 +287,15 @@ public class GetEntityLeaderboardRequest : PlayFabRequestCommon
public class GetEntityLeaderboardResponse : PlayFabResultCommon
{
/// <summary>
/// Leaderboard columns describing the sort directions,
/// Leaderboard columns describing the sort directions.
/// </summary>
public List<LeaderboardColumn> Columns ;

/// <summary>
/// The number of entries on the leaderboard.
/// </summary>
public uint EntryCount ;

/// <summary>
/// Individual entity rankings in the leaderboard, in sorted order by rank.
/// </summary>
Expand Down Expand Up @@ -468,7 +473,7 @@ public class GetStatisticDefinitionRequest : PlayFabRequestCommon
public Dictionary<string,string> CustomTags ;

/// <summary>
/// Name of the statistic. Must be less than 50 characters.
/// Name of the statistic. Must be less than 150 characters.
/// </summary>
public string Name ;

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.189.240913</Version>
<Version>1.190.241014</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#240913</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#241014</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
4 changes: 4 additions & 0 deletions PlayFabSDK/source/PlayFabServerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2399,6 +2399,8 @@ public enum GenericErrorCodes
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
TrueSkillModelStateInvalidForOperation,
TrueSkillScenarioContainsActiveModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
Expand All @@ -2408,6 +2410,8 @@ public enum GenericErrorCodes
GameSaveUnknownFileInManifest,
GameSaveFileExceededReportedSize,
GameSaveFileNotUploaded,
GameSaveBadRequest,
GameSaveOperationNotAllowed,
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.189.240913";
public const string BuildIdentifier = "adobuild_csharpsdk_117";
public const string SdkVersionString = "CSharpSDK-1.189.240913";
public const string SdkVersion = "1.190.241014";
public const string BuildIdentifier = "adobuild_csharpsdk_118";
public const string SdkVersionString = "CSharpSDK-1.190.241014";
/// <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.189.240913-alpha</Version>
<Version>1.190.241014-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#240913</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#241014</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand All @@ -45,7 +45,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PlayFabAllSDK" Version="1.189.240913" />
<PackageReference Include="PlayFabAllSDK" Version="1.190.241014" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3078,6 +3078,8 @@ public enum GenericErrorCodes
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
TrueSkillModelStateInvalidForOperation,
TrueSkillScenarioContainsActiveModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
Expand All @@ -3087,6 +3089,8 @@ public enum GenericErrorCodes
GameSaveUnknownFileInManifest,
GameSaveFileExceededReportedSize,
GameSaveFileNotUploaded,
GameSaveBadRequest,
GameSaveOperationNotAllowed,
StateShareForbidden,
StateShareTitleNotInFlight,
StateShareStateNotFound,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -860,6 +860,8 @@ public enum PlayFabErrorCode
TrueSkillInvalidPlayerId = 20063,
TrueSkillInvalidSquadSize = 20064,
TrueSkillConditionSetNotInModel = 20065,
TrueSkillModelStateInvalidForOperation = 20066,
TrueSkillScenarioContainsActiveModel = 20067,
GameSaveManifestNotFound = 20300,
GameSaveManifestVersionAlreadyExists = 20301,
GameSaveConflictUpdatingManifest = 20302,
Expand All @@ -869,6 +871,8 @@ public enum PlayFabErrorCode
GameSaveUnknownFileInManifest = 20306,
GameSaveFileExceededReportedSize = 20307,
GameSaveFileNotUploaded = 20308,
GameSaveBadRequest = 20309,
GameSaveOperationNotAllowed = 20310,
StateShareForbidden = 21000,
StateShareTitleNotInFlight = 21001,
StateShareStateNotFound = 21002,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4542,7 +4542,7 @@ public class PartyNetworkConfiguration
public string DirectPeerConnectivityOptions ;

/// <summary>
/// The maximum number of devices allowed to connect to the network. Must be between 1 and 32, inclusive.
/// The maximum number of devices allowed to connect to the network. Must be between 1 and 128, inclusive.
/// </summary>
public uint MaxDevices ;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static async Task<PlayFabResult<DeleteStatisticsResponse>> DeleteStatisti
}

/// <summary>
/// Get the friend leaderboard for the specified entity. A maximum of 100 friend entries are listed in the leaderboard.
/// Get the friend leaderboard for the specified entity. A maximum of 25 friend entries are listed in the leaderboard.
/// </summary>
public static async Task<PlayFabResult<GetEntityLeaderboardResponse>> GetFriendLeaderboardForEntityAsync(GetFriendLeaderboardForEntityRequest request, object customData = null, Dictionary<string, string> extraHeaders = null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ public async Task<PlayFabResult<DeleteStatisticsResponse>> DeleteStatisticsAsync
}

/// <summary>
/// Get the friend leaderboard for the specified entity. A maximum of 100 friend entries are listed in the leaderboard.
/// Get the friend leaderboard for the specified entity. A maximum of 25 friend entries are listed in the leaderboard.
/// </summary>
public async Task<PlayFabResult<GetEntityLeaderboardResponse>> GetFriendLeaderboardForEntityAsync(GetFriendLeaderboardForEntityRequest request, object customData = null, Dictionary<string, string> extraHeaders = null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class CreateStatisticDefinitionRequest : PlayFabRequestCommon
public string EntityType ;

/// <summary>
/// Name of the statistic. Must be less than 50 characters. Restricted to a-Z, 0-9, '(', ')', '_', '-' and '.'.
/// Name of the statistic. Must be less than 150 characters. Restricted to a-Z, 0-9, '(', ')', '_', '-' and '.'.
/// </summary>
public string Name ;

Expand Down Expand Up @@ -287,10 +287,15 @@ public class GetEntityLeaderboardRequest : PlayFabRequestCommon
public class GetEntityLeaderboardResponse : PlayFabResultCommon
{
/// <summary>
/// Leaderboard columns describing the sort directions,
/// Leaderboard columns describing the sort directions.
/// </summary>
public List<LeaderboardColumn> Columns ;

/// <summary>
/// The number of entries on the leaderboard.
/// </summary>
public uint EntryCount ;

/// <summary>
/// Individual entity rankings in the leaderboard, in sorted order by rank.
/// </summary>
Expand Down Expand Up @@ -468,7 +473,7 @@ public class GetStatisticDefinitionRequest : PlayFabRequestCommon
public Dictionary<string,string> CustomTags ;

/// <summary>
/// Name of the statistic. Must be less than 50 characters.
/// Name of the statistic. Must be less than 150 characters.
/// </summary>
public string Name ;

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.189.240913</Version>
<Version>1.190.241014</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#240913</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#241014</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2399,6 +2399,8 @@ public enum GenericErrorCodes
TrueSkillInvalidPlayerId,
TrueSkillInvalidSquadSize,
TrueSkillConditionSetNotInModel,
TrueSkillModelStateInvalidForOperation,
TrueSkillScenarioContainsActiveModel,
GameSaveManifestNotFound,
GameSaveManifestVersionAlreadyExists,
GameSaveConflictUpdatingManifest,
Expand All @@ -2408,6 +2410,8 @@ public enum GenericErrorCodes
GameSaveUnknownFileInManifest,
GameSaveFileExceededReportedSize,
GameSaveFileNotUploaded,
GameSaveBadRequest,
GameSaveOperationNotAllowed,
StateShareForbidden,
StateShareTitleNotInFlight,
StateShareStateNotFound,
Expand Down
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.189.240913";
public const string BuildIdentifier = "adobuild_csharpsdk_117";
public const string SdkVersionString = "CSharpSDK-1.189.240913";
public const string SdkVersion = "1.190.241014";
public const string BuildIdentifier = "adobuild_csharpsdk_118";
public const string SdkVersionString = "CSharpSDK-1.190.241014";
/// <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

0 comments on commit 1756fb2

Please sign in to comment.