Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#231124
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Nov 27, 2023
2 parents 29f47d2 + c056620 commit b3e1686
Show file tree
Hide file tree
Showing 15 changed files with 61 additions and 47 deletions.
15 changes: 8 additions & 7 deletions PlayFabSDK/source/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class AbortTaskInstanceRequest : PlayFabRequestCommon
public class Action
{
/// <summary>
/// Action content to Add Inventory item v2
/// Action content to add inventory item v2
/// </summary>
public AddInventoryItemV2Content AddInventoryItemV2Content ;

Expand Down Expand Up @@ -82,7 +82,7 @@ public class Action
public SendEmailContent SendEmailContent ;

/// <summary>
/// Action content to Subtract Inventory item v2
/// Action content to subtract inventory item v2
/// </summary>
public SubtractInventoryItemV2Content SubtractInventoryItemV2Content ;

Expand Down Expand Up @@ -2869,10 +2869,10 @@ public enum GenericErrorCodes
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -2920,7 +2920,8 @@ public enum GenericErrorCodes
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

public class GetActionsOnPlayersInSegmentTaskInstanceResult : PlayFabResultCommon
Expand Down
11 changes: 6 additions & 5 deletions PlayFabSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -709,10 +709,10 @@ public enum PlayFabErrorCode
LobbyNewOwnerMustBeConnected = 13009,
LobbyCurrentOwnerStillConnected = 13010,
LobbyMemberIsNotOwner = 13011,
LobbyAssociatedServerMismatch = 13012,
LobbyAssociatedServerNotFound = 13013,
LobbyAssociatedToDifferentServer = 13014,
LobbyServerAlreadyAssociated = 13015,
LobbyServerMismatch = 13012,
LobbyServerNotFound = 13013,
LobbyDifferentServerAlreadyJoined = 13014,
LobbyServerAlreadyJoined = 13015,
LobbyIsNotClientOwned = 13016,
LobbyDoesNotUseConnections = 13017,
EventSamplingInvalidRatio = 14000,
Expand Down Expand Up @@ -760,7 +760,8 @@ public enum PlayFabErrorCode
AddonAlreadyExists = 19008,
AddonDoesntExist = 19009,
CopilotDisabled = 19100,
CopilotInvalidRequest = 19101
CopilotInvalidRequest = 19101,
TrueSkillUnauthorized = 20000
}

public class PlayFabError
Expand Down
2 changes: 2 additions & 0 deletions PlayFabSDK/source/PlayFabMultiplayerAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace PlayFab
/// <summary>
/// API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
/// together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
/// The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
/// from this service are commonly used by a matchmaking service to provide players with balanced matches.
/// </summary>
public static class PlayFabMultiplayerAPI
{
Expand Down
2 changes: 2 additions & 0 deletions PlayFabSDK/source/PlayFabMultiplayerInstanceAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace PlayFab
/// <summary>
/// API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
/// together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
/// The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
/// from this service are commonly used by a matchmaking service to provide players with balanced matches.
/// </summary>
public class PlayFabMultiplayerInstanceAPI
{
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.169.231110</Version>
<Version>1.170.231124</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#231110</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#231124</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
11 changes: 6 additions & 5 deletions PlayFabSDK/source/PlayFabServerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2237,10 +2237,10 @@ public enum GenericErrorCodes
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -2288,7 +2288,8 @@ public enum GenericErrorCodes
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

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.169.231110";
public const string BuildIdentifier = "adobuild_csharpsdk_114";
public const string SdkVersionString = "CSharpSDK-1.169.231110";
public const string SdkVersion = "1.170.231124";
public const string BuildIdentifier = "adobuild_csharpsdk_116";
public const string SdkVersionString = "CSharpSDK-1.170.231124";
/// <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.169.231110-alpha</Version>
<Version>1.170.231124-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 2023</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#231110</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#231124</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand All @@ -45,7 +45,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PlayFabAllSDK" Version="1.169.231110" />
<PackageReference Include="PlayFabAllSDK" Version="1.170.231124" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class AbortTaskInstanceRequest : PlayFabRequestCommon
public class Action
{
/// <summary>
/// Action content to Add Inventory item v2
/// Action content to add inventory item v2
/// </summary>
public AddInventoryItemV2Content AddInventoryItemV2Content ;

Expand Down Expand Up @@ -82,7 +82,7 @@ public class Action
public SendEmailContent SendEmailContent ;

/// <summary>
/// Action content to Subtract Inventory item v2
/// Action content to subtract inventory item v2
/// </summary>
public SubtractInventoryItemV2Content SubtractInventoryItemV2Content ;

Expand Down Expand Up @@ -2869,10 +2869,10 @@ public enum GenericErrorCodes
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -2920,7 +2920,8 @@ public enum GenericErrorCodes
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

public class GetActionsOnPlayersInSegmentTaskInstanceResult : PlayFabResultCommon
Expand Down
11 changes: 6 additions & 5 deletions XamarinTestRunner/XamarinTestRunner/PlayFabSDK/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -709,10 +709,10 @@ public enum PlayFabErrorCode
LobbyNewOwnerMustBeConnected = 13009,
LobbyCurrentOwnerStillConnected = 13010,
LobbyMemberIsNotOwner = 13011,
LobbyAssociatedServerMismatch = 13012,
LobbyAssociatedServerNotFound = 13013,
LobbyAssociatedToDifferentServer = 13014,
LobbyServerAlreadyAssociated = 13015,
LobbyServerMismatch = 13012,
LobbyServerNotFound = 13013,
LobbyDifferentServerAlreadyJoined = 13014,
LobbyServerAlreadyJoined = 13015,
LobbyIsNotClientOwned = 13016,
LobbyDoesNotUseConnections = 13017,
EventSamplingInvalidRatio = 14000,
Expand Down Expand Up @@ -760,7 +760,8 @@ public enum PlayFabErrorCode
AddonAlreadyExists = 19008,
AddonDoesntExist = 19009,
CopilotDisabled = 19100,
CopilotInvalidRequest = 19101
CopilotInvalidRequest = 19101,
TrueSkillUnauthorized = 20000
}

public class PlayFabError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace PlayFab
/// <summary>
/// API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
/// together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
/// The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
/// from this service are commonly used by a matchmaking service to provide players with balanced matches.
/// </summary>
public static class PlayFabMultiplayerAPI
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace PlayFab
/// <summary>
/// API methods for managing multiplayer servers. API methods for managing parties. The lobby service helps players group
/// together to play multiplayer games. It is often used as a rendezvous point for players to share connection information.
/// The TrueSkill service helps titles to estimate a player's skill based on their match results. The player skill values
/// from this service are commonly used by a matchmaking service to provide players with balanced matches.
/// </summary>
public class PlayFabMultiplayerInstanceAPI
{
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.169.231110</Version>
<Version>1.170.231124</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#231110</PackageReleaseNotes>
<PackageReleaseNotes>https://docs.microsoft.com/gaming/playfab/release-notes#231124</PackageReleaseNotes>
<NeutralLanguage>en</NeutralLanguage>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1</FileVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2237,10 +2237,10 @@ public enum GenericErrorCodes
LobbyNewOwnerMustBeConnected,
LobbyCurrentOwnerStillConnected,
LobbyMemberIsNotOwner,
LobbyAssociatedServerMismatch,
LobbyAssociatedServerNotFound,
LobbyAssociatedToDifferentServer,
LobbyServerAlreadyAssociated,
LobbyServerMismatch,
LobbyServerNotFound,
LobbyDifferentServerAlreadyJoined,
LobbyServerAlreadyJoined,
LobbyIsNotClientOwned,
LobbyDoesNotUseConnections,
EventSamplingInvalidRatio,
Expand Down Expand Up @@ -2288,7 +2288,8 @@ public enum GenericErrorCodes
AddonAlreadyExists,
AddonDoesntExist,
CopilotDisabled,
CopilotInvalidRequest
CopilotInvalidRequest,
TrueSkillUnauthorized
}

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.169.231110";
public const string BuildIdentifier = "adobuild_csharpsdk_114";
public const string SdkVersionString = "CSharpSDK-1.169.231110";
public const string SdkVersion = "1.170.231124";
public const string BuildIdentifier = "adobuild_csharpsdk_116";
public const string SdkVersionString = "CSharpSDK-1.170.231124";
/// <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 b3e1686

Please sign in to comment.