From 2fb1cf200e6207e127befef5fee80e30bc804253 Mon Sep 17 00:00:00 2001 From: Mendy Man Date: Thu, 16 Jan 2025 15:05:14 -0500 Subject: [PATCH] Add authentication.py *Options to __init__.py --- python/svix/api/__init__.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/python/svix/api/__init__.py b/python/svix/api/__init__.py index 38de3ef2e..842f6648f 100644 --- a/python/svix/api/__init__.py +++ b/python/svix/api/__init__.py @@ -10,7 +10,14 @@ ApplicationCreateOptions, ApplicationGetOrCreateOptions, ) -from .authentication import AuthenticationAsync, Authentication +from .authentication import ( + AuthenticationAsync, + Authentication, + AuthenticationAppPortalAccessOptions, + AuthenticationDashboardAccessOptions, + AuthenticationExpireAllOptions, + AuthenticationLogoutOptions, +) from .endpoint import ( EndpointAsync, Endpoint,