Skip to content

Commit

Permalink
Update continuous integration YAML file
Browse files Browse the repository at this point in the history
  • Loading branch information
bbye98 committed Jan 1, 2024
1 parent d9816fb commit 05e4533
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
Binary file removed .coverage
Binary file not shown.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: continuous integration
on: [push]
env:
DISCOGS_CONSUMER_KEY: ${{ secrets.DISCOGS_CONSUMER_KEY }}
DISCOGS_CONSUMER_SECRET: ${{ secrets.DISCOGS_CONSUMER_SECRET }}
SPOTIFY_CLIENT_ID: ${{ secrets.SPOTIFY_CLIENT_ID }}
SPOTIFY_CLIENT_SECRET: ${{ secrets.SPOTIFY_CLIENT_SECRET }}
SPOTIFY_SP_DC: ${{ secrets.SPOTIFY_SP_DC }}
Expand Down
44 changes: 44 additions & 0 deletions src/minim/discogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1701,6 +1701,50 @@ def search(
)

### MARKETPLACE ###########################################################

def get_inventory(
self, username: str, *, status: str = None, page: str = None,
per_page: str = None, sort: str = None, sort_order: str = None
) -> dict[str, Any]:

pass

def get_listing(
self, listing_id: Union[int, str], *, curr_abbr: str = None
) -> dict[str, Any]:

pass

def edit_listing(
self, listing_id: Union[int, str], release_id: Union[int, str],
condition: str, price: float, status: str, *,
sleeve_condition: str = None, comments: str = None,
allow_offers: bool = None, external_id: str = None,
location: str = None, weight: float = None,
format_quantity: int = None) -> None:

pass

def delete_listing(self, listing_id: Union[int, str]) -> None:

pass

def create_listing(
self, release_id: Union[int, str], condition: str, price: float,
status: str, *, sleeve_condition: str = None, comments: str = None,
allow_offers: bool = None, external_id: str = None,
location: str = None, weight: float = None,
format_quantity: int = None) -> dict[str, Any]:

pass

def get_order(self, order_id: Union[int, str]) -> dict[str, Any]:

pass

def edit_order(self, order_id: Union[int, str], status: str) -> None:

pass

### INVENTORY EXPORT ######################################################

Expand Down

0 comments on commit 05e4533

Please sign in to comment.