Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#240412
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Apr 17, 2024
2 parents f5f46b1 + c2413c7 commit d0daab0
Show file tree
Hide file tree
Showing 22 changed files with 508 additions and 64 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.191.240401"; } }
namespace PlayFab.PfEditor { public static partial class PlayFabEditorHelper { public static string EDEX_VERSION = "2.192.240412"; } }

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ MonoBehaviour:
m_ScaledBackgrounds: []
m_TextColor: {r: 0, g: 0, b: 0, a: 1}
m_Hover:
m_Background: {fileID: 2800000, guid: c4d407ba6647ef243a229b29b14aa546, type: 3}
m_Background: {fileID: 2800000, guid: fca758f021b2ecd44a9c1052b7d08a43, type: 3}
m_ScaledBackgrounds: []
m_TextColor: {r: 1, g: 1, b: 1, a: 1}
m_Active:
Expand Down Expand Up @@ -1426,7 +1426,7 @@ MonoBehaviour:
m_ScaledBackgrounds: []
m_TextColor: {r: 1, g: 1, b: 1, a: 1}
m_Hover:
m_Background: {fileID: 2800000, guid: c4d407ba6647ef243a229b29b14aa546, type: 3}
m_Background: {fileID: 2800000, guid: fca758f021b2ecd44a9c1052b7d08a43, type: 3}
m_ScaledBackgrounds: []
m_TextColor: {r: 1, g: 1, b: 1, a: 1}
m_Active:
Expand Down Expand Up @@ -1554,7 +1554,7 @@ MonoBehaviour:
m_StretchHeight: 0
- m_Name: textButton_selected
m_Normal:
m_Background: {fileID: 2800000, guid: ce06979c901076a4681b4a77fcf036e7, type: 3}
m_Background: {fileID: 2800000, guid: 2d332125bb3615144b5dcd1cc1417006, type: 3}
m_ScaledBackgrounds: []
m_TextColor: {r: 0.09411765, g: 0.7058824, b: 0.7607843, a: 1}
m_Hover:
Expand Down
22 changes: 16 additions & 6 deletions ExampleMacProject/Assets/PlayFabSDK/Admin/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2832,14 +2832,24 @@ public enum GenericErrorCodes
TrueSkillDuplicatePlayerInMatchResult,
TrueSkillInvalidRanksInMatchResult,
TrueSkillNoWinnerInMatchResult,
TrueSkillMissingRequiredConditionInMatchResult,
TrueSkillMissingRequiredEventInMatchResult,
TrueSkillUnknownEventInMatchResult,
TrueSkillUnknownConditionName,
TrueSkillMissingRequiredCondition,
TrueSkillMissingRequiredEvent,
TrueSkillUnknownEventName,
TrueSkillUnknownConditionKey,
TrueSkillUnknownConditionValue,
TrueSkillUnknownScenarioId,
TrueSkillUnknownModelId,
TrueSkillNoActiveModelInScenario,
TrueSkillNoPlayerInMatchResultTeam,
TrueSkillPlayersInMatchResultExceedingLimit,
TrueSkillInvalidPreMatchPartyInMatchResult,
TrueSkillInvalidTimestampInMatchResult,
TrueSkillInvalidPlayerSecondsPlayedInMatchResult,
TrueSkillNoTeamInMatchResult,
TrueSkillNotEnoughTeamsInMatchResult,
TrueSkillScenarioConfigDoesNotExist,
TrueSkillNoModelInScenario,
TrueSkillNotSupportedForTitle,
TrueSkillModelIsNotActive,
TrueSkillUnauthorizedToQueryOtherPlayerSkills,
StateShareUnauthorized,
StateShareStateNotFound,
StateShareLinkNotFound
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2935,6 +2935,10 @@ public class TransactionOperation : PlayFabBaseModel
/// </summary>
public double? DurationInSeconds;
/// <summary>
/// The friendly id of the items in this transaction.
/// </summary>
public string ItemFriendlyId;
/// <summary>
/// The item id of the items in this transaction.
/// </summary>
public string ItemId;
Expand All @@ -2955,6 +2959,10 @@ public class TransactionOperation : PlayFabBaseModel
[Serializable]
public class TransactionPurchaseDetails : PlayFabBaseModel
{
/// <summary>
/// The friendly id of the Store the item was purchased from or null.
/// </summary>
public string StoreFriendlyId;
/// <summary>
/// The id of the Store the item was purchased from or null.
/// </summary>
Expand Down
22 changes: 16 additions & 6 deletions ExampleMacProject/Assets/PlayFabSDK/Server/PlayFabServerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2200,14 +2200,24 @@ public enum GenericErrorCodes
TrueSkillDuplicatePlayerInMatchResult,
TrueSkillInvalidRanksInMatchResult,
TrueSkillNoWinnerInMatchResult,
TrueSkillMissingRequiredConditionInMatchResult,
TrueSkillMissingRequiredEventInMatchResult,
TrueSkillUnknownEventInMatchResult,
TrueSkillUnknownConditionName,
TrueSkillMissingRequiredCondition,
TrueSkillMissingRequiredEvent,
TrueSkillUnknownEventName,
TrueSkillUnknownConditionKey,
TrueSkillUnknownConditionValue,
TrueSkillUnknownScenarioId,
TrueSkillUnknownModelId,
TrueSkillNoActiveModelInScenario,
TrueSkillNoPlayerInMatchResultTeam,
TrueSkillPlayersInMatchResultExceedingLimit,
TrueSkillInvalidPreMatchPartyInMatchResult,
TrueSkillInvalidTimestampInMatchResult,
TrueSkillInvalidPlayerSecondsPlayedInMatchResult,
TrueSkillNoTeamInMatchResult,
TrueSkillNotEnoughTeamsInMatchResult,
TrueSkillScenarioConfigDoesNotExist,
TrueSkillNoModelInScenario,
TrueSkillNotSupportedForTitle,
TrueSkillModelIsNotActive,
TrueSkillUnauthorizedToQueryOtherPlayerSkills,
StateShareUnauthorized,
StateShareStateNotFound,
StateShareLinkNotFound
Expand Down
Loading

0 comments on commit d0daab0

Please sign in to comment.