-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #382 from Sidekick-Poe/feature/uncut-gems
Implemented uncut gem functionality
- Loading branch information
Showing
19 changed files
with
165 additions
and
169 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
src/Sidekick.Apis.Poe/Metadata/IInvariantMetadataProvider.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
using Sidekick.Common.Game.Items; | ||
using Sidekick.Common.Initialization; | ||
|
||
namespace Sidekick.Apis.Poe.Metadata | ||
namespace Sidekick.Apis.Poe.Metadata; | ||
|
||
public interface IInvariantMetadataProvider : IInitializableService | ||
{ | ||
public interface IInvariantMetadataProvider : IInitializableService | ||
{ | ||
Dictionary<string, ItemMetadata> IdDictionary { get; } | ||
} | ||
Dictionary<string, ItemMetadata> IdDictionary { get; } | ||
|
||
List<string> UncutGemIds { get; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace Sidekick.Apis.Poe.Trade.Requests.Filters | ||
{ | ||
internal class TypeFilters | ||
{ | ||
public SearchFilterOption? Category { get; set; } | ||
|
||
public SearchFilterOption? Rarity { get; set; } | ||
|
||
/// <remarks> | ||
/// The item level filter for Path of Exile 2 is inside the type filters instead of the misc filters. | ||
/// </remarks> | ||
[JsonPropertyName("ilvl")] | ||
public SearchFilterValue? ItemLevel { get; set; } | ||
} | ||
} |
Oops, something went wrong.