scim2-client 0.2.1__py3-none-any.whl → 0.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
scim2_client/__init__.py CHANGED
@@ -1,4 +1,5 @@
1
- from .client import SCIMClient
1
+ from .client import BaseSCIMClient
2
+ from .client import BaseSyncSCIMClient
2
3
  from .errors import RequestNetworkError
3
4
  from .errors import RequestPayloadValidationError
4
5
  from .errors import ResponsePayloadValidationError
@@ -11,7 +12,8 @@ from .errors import UnexpectedContentType
11
12
  from .errors import UnexpectedStatusCode
12
13
 
13
14
  __all__ = [
14
- "SCIMClient",
15
+ "BaseSCIMClient",
16
+ "BaseSyncSCIMClient",
15
17
  "SCIMClientError",
16
18
  "SCIMRequestError",
17
19
  "SCIMResponseError",