|
13 | 13 | from .events.client import EventsClient |
14 | 14 | from .jobs.client import JobsClient |
15 | 15 | from .identity.client import IdentityClient |
| 16 | +from .notifications.client import NotificationsClient |
16 | 17 | from .organization.client import OrganizationClient |
17 | 18 | from .users.client import UsersClient |
18 | 19 | from .webhooks.client import WebhooksClient |
|
27 | 28 | from .events.client import AsyncEventsClient |
28 | 29 | from .jobs.client import AsyncJobsClient |
29 | 30 | from .identity.client import AsyncIdentityClient |
| 31 | +from .notifications.client import AsyncNotificationsClient |
30 | 32 | from .organization.client import AsyncOrganizationClient |
31 | 33 | from .users.client import AsyncUsersClient |
32 | 34 | from .webhooks.client import AsyncWebhooksClient |
@@ -104,6 +106,7 @@ def __init__( |
104 | 106 | self.events = EventsClient(client_wrapper=self._client_wrapper) |
105 | 107 | self.jobs = JobsClient(client_wrapper=self._client_wrapper) |
106 | 108 | self.identity = IdentityClient(client_wrapper=self._client_wrapper) |
| 109 | + self.notifications = NotificationsClient(client_wrapper=self._client_wrapper) |
107 | 110 | self.organization = OrganizationClient(client_wrapper=self._client_wrapper) |
108 | 111 | self.users = UsersClient(client_wrapper=self._client_wrapper) |
109 | 112 | self.webhooks = WebhooksClient(client_wrapper=self._client_wrapper) |
@@ -181,6 +184,7 @@ def __init__( |
181 | 184 | self.events = AsyncEventsClient(client_wrapper=self._client_wrapper) |
182 | 185 | self.jobs = AsyncJobsClient(client_wrapper=self._client_wrapper) |
183 | 186 | self.identity = AsyncIdentityClient(client_wrapper=self._client_wrapper) |
| 187 | + self.notifications = AsyncNotificationsClient(client_wrapper=self._client_wrapper) |
184 | 188 | self.organization = AsyncOrganizationClient(client_wrapper=self._client_wrapper) |
185 | 189 | self.users = AsyncUsersClient(client_wrapper=self._client_wrapper) |
186 | 190 | self.webhooks = AsyncWebhooksClient(client_wrapper=self._client_wrapper) |
|
0 commit comments