File tree Expand file tree Collapse file tree 7 files changed +14
-7
lines changed Expand file tree Collapse file tree 7 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ namespace CommunityFabs.NET.Common;
22
33public static class Constants
44{
5- public const string SdkVersion = "1.209.250926 " ;
5+ public const string SdkVersion = "1.210.251010 " ;
66 public const string BuildIdentifier = "custom_community-playfab-csharp-sdk" ;
7- public const string SdkVersionString = "CSharpSDK-1.209.250926 " ;
7+ public const string SdkVersionString = "CSharpSDK-1.210.251010 " ;
88 public const string DefaultProductionEnvironmentUrl = "playfabapi.com" ;
99
1010 public struct EnvVars
Original file line number Diff line number Diff line change @@ -107,8 +107,8 @@ public interface IPlayFabMultiplayerApi {
107107 /// "Deaths"
108108 /// ],
109109 /// "InitialSettingsModelId": "73a2506e-9fd3-4d84-8dd7-570c8e9e02cf",
110- /// "MatchResultStartTimeUtc": "2025-09-26T13:32:19.8Z ",
111- /// "MatchResultEndTimeUtc": "2025-09-26T14:02:19.8Z ",
110+ /// "MatchResultStartTimeUtc": "2025-10-10T13:31:54.877Z ",
111+ /// "MatchResultEndTimeUtc": "2025-10-10T14:01:54.877Z ",
112112 /// "MaxIterations": 100,
113113 /// "AnomalousMatchResultIgnoreThreshold": -20.0
114114 /// });
@@ -2131,8 +2131,8 @@ public interface IPlayFabMultiplayerApi {
21312131 /// "Rank": 1
21322132 /// }
21332133 /// ],
2134- /// "StartDateTimeUtc": "2025-09-26T13:32:19.785Z ",
2135- /// "EndDateTimeUtc": "2025-09-26T14:02:19.785Z "
2134+ /// "StartDateTimeUtc": "2025-10-10T13:31:54.865Z ",
2135+ /// "EndDateTimeUtc": "2025-10-10T14:01:54.865Z "
21362136 /// }
21372137 /// });
21382138 /// </code></example>
Original file line number Diff line number Diff line change @@ -2982,6 +2982,7 @@ public enum GenericErrorCodes {
29822982 StudioDeletionInitiated ,
29832983 ProductDisabledForTitle ,
29842984 PreconditionFailed ,
2985+ CannotEnableAnonymousPlayerCreation ,
29852986 MatchmakingEntityInvalid ,
29862987 MatchmakingPlayerAttributesInvalid ,
29872988 MatchmakingQueueNotFound ,
Original file line number Diff line number Diff line change @@ -5214,6 +5214,10 @@ public class RequestPartyServiceRequest : PlayFabRequestCommon {
52145214 /// </summary>
52155215 public string ? PartyId { get ; set ; }
52165216 /// <summary>
5217+ /// A player entity Id on behalf of whom the request is being made.
5218+ /// </summary>
5219+ public string ? PlayFabId { get ; set ; }
5220+ /// <summary>
52175221 /// The preferred regions to request a party session from. The party service will iterate through the regions in the
52185222 /// specified order and allocate a party session from the first one that is available.
52195223 /// </summary>
Original file line number Diff line number Diff line change @@ -2062,6 +2062,7 @@ public enum GenericErrorCodes {
20622062 StudioDeletionInitiated ,
20632063 ProductDisabledForTitle ,
20642064 PreconditionFailed ,
2065+ CannotEnableAnonymousPlayerCreation ,
20652066 MatchmakingEntityInvalid ,
20662067 MatchmakingPlayerAttributesInvalid ,
20672068 MatchmakingQueueNotFound ,
Original file line number Diff line number Diff line change @@ -608,6 +608,7 @@ public enum PlayFabErrorCode
608608 StudioDeletionInitiated = 1608 ,
609609 ProductDisabledForTitle = 1609 ,
610610 PreconditionFailed = 1610 ,
611+ CannotEnableAnonymousPlayerCreation = 1611 ,
611612 MatchmakingEntityInvalid = 2001 ,
612613 MatchmakingPlayerAttributesInvalid = 2002 ,
613614 MatchmakingQueueNotFound = 2016 ,
Original file line number Diff line number Diff line change 11<Project >
22 <PropertyGroup >
33 <!-- PlayFab SDK version -->
4- <SdkVersion >1.209.250926 </SdkVersion >
4+ <SdkVersion >1.210.251010 </SdkVersion >
55
66 <!-- Common project properties -->
77 <AssemblyVersion >1.0.0.0</AssemblyVersion >
You can’t perform that action at this time.
0 commit comments