-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements GraphQL endpoint for the Search Class
- Adds a new JSON file with search results for Universal Context Search. - Uses NotRequired from typing_extension. - Updates Tests for Search Class. - Improves Type Hinting for Search Class.
- Loading branch information
1 parent
88eaf5f
commit c586e33
Showing
9 changed files
with
6,449 additions
and
122 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,16 +1,17 @@ | ||
from psnawp_api.models.client import Client | ||
from psnawp_api.models.game_title import GameTitle | ||
from psnawp_api.models.group import Group | ||
from psnawp_api.models.search import Search | ||
from psnawp_api.models.search import SearchDomain, UniversalSearch | ||
from psnawp_api.models.title_stats import TitleStats, TitleStatsIterator | ||
from psnawp_api.models.user import User | ||
|
||
__all__ = [ | ||
"Client", | ||
"GameTitle", | ||
"Group", | ||
"Search", | ||
"User", | ||
"SearchDomain", | ||
"UniversalSearch", | ||
"TitleStats", | ||
"TitleStatsIterator", | ||
"User", | ||
] |
Oops, something went wrong.