Skip to content

Commit

Permalink
Merge pull request #66 from Adnuntius/jp_remove_obselete_endpoints
Browse files Browse the repository at this point in the history
remove creative collection, library creative and replace site_ruleset…
  • Loading branch information
jason-adnuntius authored Mar 29, 2024
2 parents a5e7634 + 28ec6e1 commit 76a4bf6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ test-output
build/
dist/
*.egg-info/
.venv/
2 changes: 1 addition & 1 deletion adnuntius/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.21.6"
__version__ = "1.22.0"
4 changes: 1 addition & 3 deletions adnuntius/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ def api_client(resource, accept=None): return ApiClient(resource, self, accept=a
self.creativepreviewhtml = api_client("creativepreview", accept="text/html")
self.creatives = api_client("creatives")
self.creative_info = api_client("creatives/info")
self.creative_collections = api_client("creativecollections")
self.currency_conversion = api_client("currencyconversion")
self.custom_event_types = api_client("customeventtypes")
self.data_export = api_client("dataexports")
Expand All @@ -107,7 +106,6 @@ def api_client(resource, accept=None): return ApiClient(resource, self, accept=a
self.keywords = api_client("keywords")
self.layouts = api_client("layouts")
self.layout_includes = api_client("layoutincludes")
self.library_creatives = api_client("librarycreatives")
self.line_items = api_client("lineitems")
self.line_item_reviews = api_client("lineitems/review")
self.livepreview = api_client("livepreview/create")
Expand All @@ -133,7 +131,7 @@ def api_client(resource, accept=None): return ApiClient(resource, self, accept=a
self.segments_users_upload = api_client("segments/users/upload")
self.signup = api_client("signup")
self.sites = api_client("sites")
self.site_rulesets = api_client("siterulesets")
self.rulesets = api_client("rulesets")
self.site_groups = api_client("sitegroups")
self.sui_layouts = api_client("sui/layout")
self.sui_product = api_client("sui/product")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
README = (HERE / "README.md").read_text()
setup(
name="adnuntius",
version="1.21.6",
version="1.22.0",
description="Interface and tools for using the Adnuntius API",
long_description="Interface and tools for using the Adnuntius API",
url="https://github.com/Adnuntius/api-tools",
Expand Down

0 comments on commit 76a4bf6

Please sign in to comment.