Skip to content

Commit e391eea

Browse files
committed
chore: generate SDKs (SDK update 251010)
1 parent 0edf1a5 commit e391eea

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

CommunityFabs.NET.Common/Constants.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ namespace CommunityFabs.NET.Common;
22

33
public 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

CommunityFabs.NET.Common/Interfaces/IPlayFabMultiplayerApi.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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>

CommunityFabs.NET.Common/Models/PlayFabAdminApiModels.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2982,6 +2982,7 @@ public enum GenericErrorCodes {
29822982
StudioDeletionInitiated,
29832983
ProductDisabledForTitle,
29842984
PreconditionFailed,
2985+
CannotEnableAnonymousPlayerCreation,
29852986
MatchmakingEntityInvalid,
29862987
MatchmakingPlayerAttributesInvalid,
29872988
MatchmakingQueueNotFound,

CommunityFabs.NET.Common/Models/PlayFabMultiplayerApiModels.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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>

CommunityFabs.NET.Common/Models/PlayFabServerApiModels.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2062,6 +2062,7 @@ public enum GenericErrorCodes {
20622062
StudioDeletionInitiated,
20632063
ProductDisabledForTitle,
20642064
PreconditionFailed,
2065+
CannotEnableAnonymousPlayerCreation,
20652066
MatchmakingEntityInvalid,
20662067
MatchmakingPlayerAttributesInvalid,
20672068
MatchmakingQueueNotFound,

CommunityFabs.NET.Common/PlayFabErrors.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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,

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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>

0 commit comments

Comments
 (0)