Skip to content

Commit

Permalink
https://api.playfab.com/releaseNotes/#160815
Browse files Browse the repository at this point in the history
  • Loading branch information
pgilmorepf committed Aug 15, 2016
2 parents ddde692 + 73d8f8b commit 9428dc0
Show file tree
Hide file tree
Showing 20 changed files with 52 additions and 39 deletions.
2 changes: 0 additions & 2 deletions PlayFabClientSDK/build.bat

This file was deleted.

2 changes: 1 addition & 1 deletion PlayFabClientSDK/source/PlayFabClientAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ public static async Task<PlayFabResult<AddGenericIDResult>> AddGenericIDAsync(Ad
}

/// <summary>
/// Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method.
/// Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login.
/// </summary>
public static async Task<PlayFabResult<AddUsernamePasswordResult>> AddUsernamePasswordAsync(AddUsernamePasswordRequest request)
{
Expand Down
4 changes: 2 additions & 2 deletions PlayFabClientSDK/source/PlayFabClientModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ public class GetAccountInfoResult : PlayFabResultCommon
public class GetCatalogItemsRequest
{
/// <summary>
/// Which catalog is being requested.
/// Which catalog is being requested. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -2392,7 +2392,7 @@ public class GrantCharacterToUserResult : PlayFabResultCommon
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down
3 changes: 2 additions & 1 deletion PlayFabClientSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ public enum PlayFabErrorCode
ExpiredContinuationToken = 1241,
InvalidSegment = 1242,
InvalidSessionId = 1243,
SessionLogNotFound = 1244
SessionLogNotFound = 1244,
InvalidSearchTerm = 1245
}

public class PlayFabError
Expand Down
4 changes: 2 additions & 2 deletions PlayFabClientSDK/source/PlayFabSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ namespace PlayFab
{
public class PlayFabSettings
{
public const string SdkVersion = "0.33.160801";
public const string SdkVersion = "0.34.160815";
public const string BuildIdentifier = "jbuild_csharpsdk_0";
public const string SdkVersionString = "CSharpSDK-0.33.160801";
public const string SdkVersionString = "CSharpSDK-0.34.160815";

/// <summary> This is for PlayFab internal debugging. Generally you shouldn't touch this </summary>
public static bool UseDevelopmentEnvironment = false;
Expand Down
4 changes: 0 additions & 4 deletions PlayFabSDK/build+unit.bat

This file was deleted.

2 changes: 0 additions & 2 deletions PlayFabSDK/build.bat

This file was deleted.

13 changes: 9 additions & 4 deletions PlayFabSDK/source/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ public class GetAllSegmentsResult : PlayFabResultCommon
public class GetCatalogItemsRequest
{
/// <summary>
/// Which catalog is being requested.
/// Which catalog is being requested. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -1439,7 +1439,7 @@ public class ItemGrant
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down Expand Up @@ -1816,6 +1816,11 @@ public class PlayerProfile
/// </summary>
public Dictionary<string,int> Statistics { get; set;}

/// <summary>
/// Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals.
/// </summary>
public Dictionary<string,uint> ValuesToDate { get; set;}

/// <summary>
/// Dictionary of player's virtual currency balances
/// </summary>
Expand Down Expand Up @@ -2305,7 +2310,7 @@ public enum TitleActivationStatus
public class UpdateCatalogItemsRequest
{
/// <summary>
/// Which catalog is being updated
/// Which catalog is being updated. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -2409,7 +2414,7 @@ public class UpdateRandomResultTablesResult : PlayFabResultCommon
public class UpdateStoreItemsRequest
{
/// <summary>
/// catalog version of the store to update. Use default catalog version if null
/// catalog version of the store to update. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabClientAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ public static async Task<PlayFabResult<AddGenericIDResult>> AddGenericIDAsync(Ad
}

/// <summary>
/// Adds playfab username/password auth to an existing semi-anonymous account created via a 3rd party auth method.
/// Adds playfab username/password auth to an existing account created via an anonymous auth method, e.g. automatic device ID login.
/// </summary>
public static async Task<PlayFabResult<AddUsernamePasswordResult>> AddUsernamePasswordAsync(AddUsernamePasswordRequest request)
{
Expand Down
4 changes: 2 additions & 2 deletions PlayFabSDK/source/PlayFabClientModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1117,7 +1117,7 @@ public class GetAccountInfoResult : PlayFabResultCommon
public class GetCatalogItemsRequest
{
/// <summary>
/// Which catalog is being requested.
/// Which catalog is being requested. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -2392,7 +2392,7 @@ public class GrantCharacterToUserResult : PlayFabResultCommon
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down
3 changes: 2 additions & 1 deletion PlayFabSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ public enum PlayFabErrorCode
ExpiredContinuationToken = 1241,
InvalidSegment = 1242,
InvalidSessionId = 1243,
SessionLogNotFound = 1244
SessionLogNotFound = 1244,
InvalidSearchTerm = 1245
}

public class PlayFabError
Expand Down
2 changes: 1 addition & 1 deletion PlayFabSDK/source/PlayFabMatchmakerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class AuthUserResponse : PlayFabResultCommon
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down
9 changes: 7 additions & 2 deletions PlayFabSDK/source/PlayFabServerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ public class GetAllSegmentsResult : PlayFabResultCommon
public class GetCatalogItemsRequest
{
/// <summary>
/// Which catalog is being requested.
/// Which catalog is being requested. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -1971,7 +1971,7 @@ public class ItemGrant
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down Expand Up @@ -2423,6 +2423,11 @@ public class PlayerProfile
/// </summary>
public Dictionary<string,int> Statistics { get; set;}

/// <summary>
/// Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals.
/// </summary>
public Dictionary<string,uint> ValuesToDate { get; set;}

/// <summary>
/// Dictionary of player's virtual currency balances
/// </summary>
Expand Down
4 changes: 2 additions & 2 deletions PlayFabSDK/source/PlayFabSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ namespace PlayFab
{
public class PlayFabSettings
{
public const string SdkVersion = "0.33.160801";
public const string SdkVersion = "0.34.160815";
public const string BuildIdentifier = "jbuild_csharpsdk_0";
public const string SdkVersionString = "CSharpSDK-0.33.160801";
public const string SdkVersionString = "CSharpSDK-0.34.160815";

/// <summary> This is for PlayFab internal debugging. Generally you shouldn't touch this </summary>
public static bool UseDevelopmentEnvironment = false;
Expand Down
2 changes: 0 additions & 2 deletions PlayFabServerSDK/build.bat

This file was deleted.

13 changes: 9 additions & 4 deletions PlayFabServerSDK/source/PlayFabAdminModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ public class GetAllSegmentsResult : PlayFabResultCommon
public class GetCatalogItemsRequest
{
/// <summary>
/// Which catalog is being requested.
/// Which catalog is being requested. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -1439,7 +1439,7 @@ public class ItemGrant
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down Expand Up @@ -1816,6 +1816,11 @@ public class PlayerProfile
/// </summary>
public Dictionary<string,int> Statistics { get; set;}

/// <summary>
/// Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals.
/// </summary>
public Dictionary<string,uint> ValuesToDate { get; set;}

/// <summary>
/// Dictionary of player's virtual currency balances
/// </summary>
Expand Down Expand Up @@ -2305,7 +2310,7 @@ public enum TitleActivationStatus
public class UpdateCatalogItemsRequest
{
/// <summary>
/// Which catalog is being updated
/// Which catalog is being updated. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -2409,7 +2414,7 @@ public class UpdateRandomResultTablesResult : PlayFabResultCommon
public class UpdateStoreItemsRequest
{
/// <summary>
/// catalog version of the store to update. Use default catalog version if null
/// catalog version of the store to update. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down
3 changes: 2 additions & 1 deletion PlayFabServerSDK/source/PlayFabErrors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@ public enum PlayFabErrorCode
ExpiredContinuationToken = 1241,
InvalidSegment = 1242,
InvalidSessionId = 1243,
SessionLogNotFound = 1244
SessionLogNotFound = 1244,
InvalidSearchTerm = 1245
}

public class PlayFabError
Expand Down
2 changes: 1 addition & 1 deletion PlayFabServerSDK/source/PlayFabMatchmakerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class AuthUserResponse : PlayFabResultCommon
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down
9 changes: 7 additions & 2 deletions PlayFabServerSDK/source/PlayFabServerModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ public class GetAllSegmentsResult : PlayFabResultCommon
public class GetCatalogItemsRequest
{
/// <summary>
/// Which catalog is being requested.
/// Which catalog is being requested. If null, uses the default catalog.
/// </summary>
public string CatalogVersion { get; set;}

Expand Down Expand Up @@ -1971,7 +1971,7 @@ public class ItemGrant
}

/// <summary>
/// A unique instance of an item in a user's inventory. Note, To retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information.
/// A unique instance of an item in a user's inventory. Note, to retrieve additional information for an item instance (such as Tags, Description, or Custom Data that are set on the root catalog item), a call to GetCatalogItems is required. The Item ID of the instance can then be matched to a catalog entry, which contains the additional information. Also note that Custom Data is only set here from a call to UpdateUserInventoryItemCustomData.
/// </summary>
public class ItemInstance : IComparable<ItemInstance>
{
Expand Down Expand Up @@ -2423,6 +2423,11 @@ public class PlayerProfile
/// </summary>
public Dictionary<string,int> Statistics { get; set;}

/// <summary>
/// Dictionary of player's total currency purchases. The key VTD is a sum of all player_realmoney_purchase events OrderTotals.
/// </summary>
public Dictionary<string,uint> ValuesToDate { get; set;}

/// <summary>
/// Dictionary of player's virtual currency balances
/// </summary>
Expand Down
4 changes: 2 additions & 2 deletions PlayFabServerSDK/source/PlayFabSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ namespace PlayFab
{
public class PlayFabSettings
{
public const string SdkVersion = "0.33.160801";
public const string SdkVersion = "0.34.160815";
public const string BuildIdentifier = "jbuild_csharpsdk_0";
public const string SdkVersionString = "CSharpSDK-0.33.160801";
public const string SdkVersionString = "CSharpSDK-0.34.160815";

/// <summary> This is for PlayFab internal debugging. Generally you shouldn't touch this </summary>
public static bool UseDevelopmentEnvironment = false;
Expand Down

0 comments on commit 9428dc0

Please sign in to comment.