Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#240105
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Jan 9, 2024
2 parents ce9fac6 + 55f80af commit b1fa849
Show file tree
Hide file tree
Showing 11 changed files with 136 additions and 22 deletions.
21 changes: 20 additions & 1 deletion PlayFabSDK/source/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2774,6 +2774,7 @@ public enum GenericErrorCodes
InvalidStatisticScore,
LeaderboardColumnsNotSpecified,
LeaderboardMaxSizeTooLarge,
InvalidAttributeStatisticsSpecified,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2949,6 +2950,8 @@ public enum GenericErrorCodes
EventSinkAadNotFound,
EventSinkDatabaseNotFound,
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand All @@ -2971,7 +2974,23 @@ public enum GenericErrorCodes
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest,
TrueSkillUnauthorized
TrueSkillUnauthorized,
TrueSkillBadRequest,
TrueSkillMatchResultAlreadySubmitted,
TrueSkillDuplicatePlayerInMatchResult,
TrueSkillInvalidRanksInMatchResult,
TrueSkillNoWinnerInMatchResult,
TrueSkillMissingRequiredConditionInMatchResult,
TrueSkillMissingRequiredEventInMatchResult,
TrueSkillUnknownEventInMatchResult,
TrueSkillUnknownConditionName,
TrueSkillUnknownConditionValue,
TrueSkillUnknownScenarioId,
TrueSkillUnknownModelId,
TrueSkillNoActiveModelInScenario,
StateShareUnauthorized,
StateShareStateNotFound,
StateShareLinkNotFound
}

public class GetActionsOnPlayersInSegmentTaskInstanceResult : PlayFabResultCommon
Expand Down
23 changes: 21 additions & 2 deletions PlayFabSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,7 @@ public enum PlayFabErrorCode
InvalidStatisticScore = 1563,
LeaderboardColumnsNotSpecified = 1564,
LeaderboardMaxSizeTooLarge = 1565,
InvalidAttributeStatisticsSpecified = 1566,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down Expand Up @@ -741,6 +742,8 @@ public enum PlayFabErrorCode
EventSinkAadNotFound = 15010,
EventSinkDatabaseNotFound = 15011,
EventSinkTitleUnauthorized = 15012,
EventSinkInsufficientRoleAssignment = 15013,
EventSinkContainerNotFound = 15014,
OperationCanceled = 16000,
InvalidDisplayNameRandomSuffixLength = 17000,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed = 17001,
Expand All @@ -763,7 +766,23 @@ public enum PlayFabErrorCode
AddonDoesntExist = 19009,
CopilotDisabled = 19100,
CopilotInvalidRequest = 19101,
TrueSkillUnauthorized = 20000
TrueSkillUnauthorized = 20000,
TrueSkillBadRequest = 20001,
TrueSkillMatchResultAlreadySubmitted = 20002,
TrueSkillDuplicatePlayerInMatchResult = 20003,
TrueSkillInvalidRanksInMatchResult = 20004,
TrueSkillNoWinnerInMatchResult = 20005,
TrueSkillMissingRequiredConditionInMatchResult = 20006,
TrueSkillMissingRequiredEventInMatchResult = 20007,
TrueSkillUnknownEventInMatchResult = 20008,
TrueSkillUnknownConditionName = 20009,
TrueSkillUnknownConditionValue = 20010,
TrueSkillUnknownScenarioId = 20011,
TrueSkillUnknownModelId = 20012,
TrueSkillNoActiveModelInScenario = 20013,
StateShareUnauthorized = 21000,
StateShareStateNotFound = 21001,
StateShareLinkNotFound = 21002
}

public class PlayFabError
Expand Down Expand Up @@ -796,7 +815,7 @@ public string GenerateErrorReport()

if(RequestId != null)
{
Sb.Append("\n "+RequestId+"\n");
Sb.Append("\nRequestId: "+RequestId+"\n");
}

if (ErrorDetails == null)
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.171.231208</Version>
<Version>1.172.240105</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#231208</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240105</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
21 changes: 20 additions & 1 deletion PlayFabSDK/source/PlayFabServerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2094,6 +2094,7 @@ public enum GenericErrorCodes
InvalidStatisticScore,
LeaderboardColumnsNotSpecified,
LeaderboardMaxSizeTooLarge,
InvalidAttributeStatisticsSpecified,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2269,6 +2270,8 @@ public enum GenericErrorCodes
EventSinkAadNotFound,
EventSinkDatabaseNotFound,
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand All @@ -2291,7 +2294,23 @@ public enum GenericErrorCodes
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest,
TrueSkillUnauthorized
TrueSkillUnauthorized,
TrueSkillBadRequest,
TrueSkillMatchResultAlreadySubmitted,
TrueSkillDuplicatePlayerInMatchResult,
TrueSkillInvalidRanksInMatchResult,
TrueSkillNoWinnerInMatchResult,
TrueSkillMissingRequiredConditionInMatchResult,
TrueSkillMissingRequiredEventInMatchResult,
TrueSkillUnknownEventInMatchResult,
TrueSkillUnknownConditionName,
TrueSkillUnknownConditionValue,
TrueSkillUnknownScenarioId,
TrueSkillUnknownModelId,
TrueSkillNoActiveModelInScenario,
StateShareUnauthorized,
StateShareStateNotFound,
StateShareLinkNotFound
}

public class GenericPlayFabIdPair
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.171.231208";
public const string BuildIdentifier = "adobuild_csharpsdk_114";
public const string SdkVersionString = "CSharpSDK-1.171.231208";
public const string SdkVersion = "1.172.240105";
public const string BuildIdentifier = "adobuild_csharpsdk_116";
public const string SdkVersionString = "CSharpSDK-1.172.240105";
/// <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
8 changes: 4 additions & 4 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.171.231208-alpha</Version>
<Version>1.172.240105-alpha</Version>
<Title>PlayFab CSharp CloudScript Plugin</Title>
<Authors>Microsoft</Authors>
<Owners>Microsoft</Owners>
Expand All @@ -19,9 +19,9 @@
<Description>Authentication, in-game commerce, player data, title data, inventory, characters, statistics, leaderboards, analytics and reporting, friends, multiplayer, matchmaking, tournaments, cloud script, trading, real-time event handling, player management, live ops, and server hosting for all major platforms/devices and games of any scale. This sdk gives your game the ability log into PlayFab and access cloud data and services.</Description>
<Company>PlayFab</Company>
<Product>PlayFabCloudScriptPlugin</Product>
<Copyright>Copyright 2023</Copyright>
<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#231208</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240105</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand All @@ -45,7 +45,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PlayFabAllSDK" Version="1.171.231208" />
<PackageReference Include="PlayFabAllSDK" Version="1.172.240105" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2774,6 +2774,7 @@ public enum GenericErrorCodes
InvalidStatisticScore,
LeaderboardColumnsNotSpecified,
LeaderboardMaxSizeTooLarge,
InvalidAttributeStatisticsSpecified,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2949,6 +2950,8 @@ public enum GenericErrorCodes
EventSinkAadNotFound,
EventSinkDatabaseNotFound,
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand All @@ -2971,7 +2974,23 @@ public enum GenericErrorCodes
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest,
TrueSkillUnauthorized
TrueSkillUnauthorized,
TrueSkillBadRequest,
TrueSkillMatchResultAlreadySubmitted,
TrueSkillDuplicatePlayerInMatchResult,
TrueSkillInvalidRanksInMatchResult,
TrueSkillNoWinnerInMatchResult,
TrueSkillMissingRequiredConditionInMatchResult,
TrueSkillMissingRequiredEventInMatchResult,
TrueSkillUnknownEventInMatchResult,
TrueSkillUnknownConditionName,
TrueSkillUnknownConditionValue,
TrueSkillUnknownScenarioId,
TrueSkillUnknownModelId,
TrueSkillNoActiveModelInScenario,
StateShareUnauthorized,
StateShareStateNotFound,
StateShareLinkNotFound
}

public class GetActionsOnPlayersInSegmentTaskInstanceResult : PlayFabResultCommon
Expand Down
23 changes: 21 additions & 2 deletions XamarinTestRunner/XamarinTestRunner/PlayFabSDK/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -566,6 +566,7 @@ public enum PlayFabErrorCode
InvalidStatisticScore = 1563,
LeaderboardColumnsNotSpecified = 1564,
LeaderboardMaxSizeTooLarge = 1565,
InvalidAttributeStatisticsSpecified = 1566,
MatchmakingEntityInvalid = 2001,
MatchmakingPlayerAttributesInvalid = 2002,
MatchmakingQueueNotFound = 2016,
Expand Down Expand Up @@ -741,6 +742,8 @@ public enum PlayFabErrorCode
EventSinkAadNotFound = 15010,
EventSinkDatabaseNotFound = 15011,
EventSinkTitleUnauthorized = 15012,
EventSinkInsufficientRoleAssignment = 15013,
EventSinkContainerNotFound = 15014,
OperationCanceled = 16000,
InvalidDisplayNameRandomSuffixLength = 17000,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed = 17001,
Expand All @@ -763,7 +766,23 @@ public enum PlayFabErrorCode
AddonDoesntExist = 19009,
CopilotDisabled = 19100,
CopilotInvalidRequest = 19101,
TrueSkillUnauthorized = 20000
TrueSkillUnauthorized = 20000,
TrueSkillBadRequest = 20001,
TrueSkillMatchResultAlreadySubmitted = 20002,
TrueSkillDuplicatePlayerInMatchResult = 20003,
TrueSkillInvalidRanksInMatchResult = 20004,
TrueSkillNoWinnerInMatchResult = 20005,
TrueSkillMissingRequiredConditionInMatchResult = 20006,
TrueSkillMissingRequiredEventInMatchResult = 20007,
TrueSkillUnknownEventInMatchResult = 20008,
TrueSkillUnknownConditionName = 20009,
TrueSkillUnknownConditionValue = 20010,
TrueSkillUnknownScenarioId = 20011,
TrueSkillUnknownModelId = 20012,
TrueSkillNoActiveModelInScenario = 20013,
StateShareUnauthorized = 21000,
StateShareStateNotFound = 21001,
StateShareLinkNotFound = 21002
}

public class PlayFabError
Expand Down Expand Up @@ -796,7 +815,7 @@ public string GenerateErrorReport()

if(RequestId != null)
{
Sb.Append("\n "+RequestId+"\n");
Sb.Append("\nRequestId: "+RequestId+"\n");
}

if (ErrorDetails == null)
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.171.231208</Version>
<Version>1.172.240105</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#231208</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#240105</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2094,6 +2094,7 @@ public enum GenericErrorCodes
InvalidStatisticScore,
LeaderboardColumnsNotSpecified,
LeaderboardMaxSizeTooLarge,
InvalidAttributeStatisticsSpecified,
MatchmakingEntityInvalid,
MatchmakingPlayerAttributesInvalid,
MatchmakingQueueNotFound,
Expand Down Expand Up @@ -2269,6 +2270,8 @@ public enum GenericErrorCodes
EventSinkAadNotFound,
EventSinkDatabaseNotFound,
EventSinkTitleUnauthorized,
EventSinkInsufficientRoleAssignment,
EventSinkContainerNotFound,
OperationCanceled,
InvalidDisplayNameRandomSuffixLength,
AllowNonUniquePlayerDisplayNamesDisableNotAllowed,
Expand All @@ -2291,7 +2294,23 @@ public enum GenericErrorCodes
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest,
TrueSkillUnauthorized
TrueSkillUnauthorized,
TrueSkillBadRequest,
TrueSkillMatchResultAlreadySubmitted,
TrueSkillDuplicatePlayerInMatchResult,
TrueSkillInvalidRanksInMatchResult,
TrueSkillNoWinnerInMatchResult,
TrueSkillMissingRequiredConditionInMatchResult,
TrueSkillMissingRequiredEventInMatchResult,
TrueSkillUnknownEventInMatchResult,
TrueSkillUnknownConditionName,
TrueSkillUnknownConditionValue,
TrueSkillUnknownScenarioId,
TrueSkillUnknownModelId,
TrueSkillNoActiveModelInScenario,
StateShareUnauthorized,
StateShareStateNotFound,
StateShareLinkNotFound
}

public class GenericPlayFabIdPair
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.171.231208";
public const string BuildIdentifier = "adobuild_csharpsdk_114";
public const string SdkVersionString = "CSharpSDK-1.171.231208";
public const string SdkVersion = "1.172.240105";
public const string BuildIdentifier = "adobuild_csharpsdk_116";
public const string SdkVersionString = "CSharpSDK-1.172.240105";
/// <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 b1fa849

Please sign in to comment.