Skip to content

Commit

Permalink
https://docs.microsoft.com/en-us/gaming/playfab/release-notes/#240830
Browse files Browse the repository at this point in the history
  • Loading branch information
PlayFab SDK Team authored and PlayFab SDK Team committed Sep 3, 2024
2 parents 2024c91 + 552303a commit 1baed83
Show file tree
Hide file tree
Showing 23 changed files with 91 additions and 1,207 deletions.
14 changes: 14 additions & 0 deletions PlayFabSDK/source/PlayFabAddonModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,13 @@ public class CreateOrUpdateGoogleRequest : PlayFabRequestCommon
/// </summary>
public string OAuthClientSecret ;

/// <summary>
/// Authorized Redirect Uri obtained through the Google Developer Console. This currently defaults to
/// https://oauth.playfab.com/oauth2/google. If you are authenticating players via browser, please update this to your own
/// domain.
/// </summary>
public string OAuthCustomRedirectUri ;

/// <summary>
/// Needed to enable pending purchase handling and subscription processing.
/// </summary>
Expand Down Expand Up @@ -664,6 +671,13 @@ public class GetGoogleResponse : PlayFabResultCommon
/// </summary>
public string OAuthClientID ;

/// <summary>
/// Authorized Redirect Uri obtained through the Google Developer Console. This currently defaults to
/// https://oauth.playfab.com/oauth2/google. If you are authenticating players via browser, please update this to your own
/// domain.
/// </summary>
public string OauthCustomRedirectUri ;

}

public class GetKongregateRequest : PlayFabRequestCommon
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2809,7 +2809,7 @@ public enum GenericErrorCodes
MultipleLinkedStatisticsNotAllowed,
DuplicateLinkedStatisticColumnNameFound,
AggregationTypeNotAllowedForMultiColumnStatistic,
MaxQueryableVerionsValueNotAllowedForTier,
MaxQueryableVersionsValueNotAllowedForTier,
StatisticDefinitionHasNullOrEmptyVersionConfiguration,
StatisticColumnLengthMismatch,
MatchmakingEntityInvalid,
Expand Down
13 changes: 7 additions & 6 deletions PlayFabSDK/source/PlayFabClientModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1561,7 +1561,7 @@ public class FacebookPlayFabIdPair
public class FriendInfo
{
/// <summary>
/// Available Facebook information (if the user and PlayFab friend are also connected in Facebook).
/// Available Facebook information (if the user and connected Facebook friend both have PlayFab Accounts in the same title).
/// </summary>
public UserFacebookInfo FacebookInfo ;

Expand All @@ -1571,7 +1571,8 @@ public class FriendInfo
public string FriendPlayFabId ;

/// <summary>
/// Available Game Center information (if the user and PlayFab friend are also connected in Game Center).
/// Available Game Center information (if the user and connected Game Center friend both have PlayFab Accounts in the same
/// title).
/// </summary>
public UserGameCenterInfo GameCenterInfo ;

Expand All @@ -1581,13 +1582,13 @@ public class FriendInfo
public PlayerProfileModel Profile ;

/// <summary>
/// Available PlayStation :tm: Network information, if the user and PlayFab friend are both connected to PlayStation :tm:
/// Network.
/// Available PlayStation :tm: Network information, if the user connected PlayStation :tm Network friend both have PlayFab
/// Accounts in the same title.
/// </summary>
public UserPsnInfo PSNInfo ;

/// <summary>
/// Available Steam information (if the user and PlayFab friend are also connected in Steam).
/// Available Steam information (if the user and connected Steam friend both have PlayFab Accounts in the same title).
/// </summary>
public UserSteamInfo SteamInfo ;

Expand All @@ -1607,7 +1608,7 @@ public class FriendInfo
public string Username ;

/// <summary>
/// Available Xbox information, if the user and PlayFab friend are both connected to Xbox Live.
/// Available Xbox information, (if the user and connected Xbox Live friend both have PlayFab Accounts in the same title).
/// </summary>
public UserXboxInfo XboxInfo ;

Expand Down
16 changes: 8 additions & 8 deletions PlayFabSDK/source/PlayFabEconomyModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2652,28 +2652,28 @@ public class RedemptionFailure
public string FailureDetails ;

/// <summary>
/// The transaction id in the external marketplace.
/// The Marketplace Alternate ID being redeemed.
/// </summary>
public string MarketplaceTransactionId ;
public string MarketplaceAlternateId ;

/// <summary>
/// The ID of the offer being redeemed.
/// The transaction id in the external marketplace.
/// </summary>
public string OfferId ;
public string MarketplaceTransactionId ;

}

public class RedemptionSuccess
{
/// <summary>
/// The transaction id in the external marketplace.
/// The Marketplace Alternate ID being redeemed.
/// </summary>
public string MarketplaceTransactionId ;
public string MarketplaceAlternateId ;

/// <summary>
/// The ID of the offer being redeemed.
/// The transaction id in the external marketplace.
/// </summary>
public string OfferId ;
public string MarketplaceTransactionId ;

/// <summary>
/// The timestamp for when the redeem was completed.
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ public enum PlayFabErrorCode
MultipleLinkedStatisticsNotAllowed = 1588,
DuplicateLinkedStatisticColumnNameFound = 1589,
AggregationTypeNotAllowedForMultiColumnStatistic = 1590,
MaxQueryableVerionsValueNotAllowedForTier = 1591,
MaxQueryableVersionsValueNotAllowedForTier = 1591,
StatisticDefinitionHasNullOrEmptyVersionConfiguration = 1592,
StatisticColumnLengthMismatch = 1593,
MatchmakingEntityInvalid = 2001,
Expand Down
143 changes: 0 additions & 143 deletions PlayFabSDK/source/PlayFabMatchmakerAPI.cs

This file was deleted.

Loading

0 comments on commit 1baed83

Please sign in to comment.