From 5b5c39af0812bc86eb8792555f24092a2658c5c8 Mon Sep 17 00:00:00 2001 From: Dave Marcotte Date: Thu, 16 Nov 2023 08:56:25 -0500 Subject: [PATCH 1/2] Update API_EVENTS_ENDPOINT --- pyhilo/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhilo/const.py b/pyhilo/const.py index 82ff21f..1b382c2 100644 --- a/pyhilo/const.py +++ b/pyhilo/const.py @@ -36,7 +36,7 @@ API_AUTOMATION_ENDPOINT: Final = f"/Automation/{API_END}" API_GD_SERVICE_ENDPOINT: Final = f"/GDService/{API_END}" API_NOTIFICATIONS_ENDPOINT: Final = "/Notifications" -API_EVENTS_ENDPOINT: Final = "/Events" +API_EVENTS_ENDPOINT: Final = "/Notifications" API_REGISTRATION_ENDPOINT: Final = f"{API_NOTIFICATIONS_ENDPOINT}/Registrations" API_REGISTRATION_HEADERS: Final = { From 342281138744864d11ee587f0b572a63312a7d53 Mon Sep 17 00:00:00 2001 From: Dave Marcotte Date: Thu, 16 Nov 2023 11:29:59 -0500 Subject: [PATCH 2/2] Update version --- pyhilo/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhilo/const.py b/pyhilo/const.py index 1b382c2..0c81874 100644 --- a/pyhilo/const.py +++ b/pyhilo/const.py @@ -12,7 +12,7 @@ TOKEN_EXPIRATION_PADDING: Final = 300 VERIFY: Final = True DEVICE_REFRESH_TIME: Final = 1800 -PYHILO_VERSION: Final = "2023.11.01" +PYHILO_VERSION: Final = "2023.11.02" # TODO: Find a way to keep previous line in sync with pyproject.toml automatically CONTENT_TYPE_FORM: Final = "application/x-www-form-urlencoded"