pypomes-iam 0.2.3__py3-none-any.whl → 0.7.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.

Potentially problematic release.


This version of pypomes-iam might be problematic. Click here for more details.

pypomes_iam/__init__.py CHANGED
@@ -1,8 +1,15 @@
1
- from .jusbr_pomes import (
2
- jusbr_setup, jusbr_get_token
1
+ from .iam_actions import (
2
+ action_callback, action_exchange,
3
+ action_login, action_logout, action_token
3
4
  )
4
- from .keycloak_pomes import (
5
- keycloak_setup, keycloak_get_token
5
+ from .iam_common import (
6
+ IamServer, IamParam
7
+ )
8
+ from .iam_pomes import (
9
+ iam_setup, iam_get_env_parameters, iam_get_token
10
+ )
11
+ from .iam_services import (
12
+ jwt_required, logger_register
6
13
  )
7
14
  from .provider_pomes import (
8
15
  provider_register, provider_get_token
@@ -12,10 +19,15 @@ from .token_pomes import (
12
19
  )
13
20
 
14
21
  __all__ = [
15
- # jusbr_pomes
16
- "jusbr_setup", "jusbr_get_token",
17
- # keycloak_pomes
18
- "keycloak_setup", "keycloak_get_token",
22
+ # iam_actions
23
+ "action_callback", "action_exchange",
24
+ "action_login", "action_logout", "action_token",
25
+ # iam_commons
26
+ "IamServer", "IamParam",
27
+ # iam_pomes
28
+ "iam_setup", "iam_get_env_parameters", "iam_get_token",
29
+ # iam_services
30
+ "jwt_required", "logger_register",
19
31
  # provider_pomes
20
32
  "provider_register", "provider_get_token",
21
33
  # token_pomes