pypomes-iam 0.5.2__py3-none-any.whl → 0.6.2__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,16 +1,15 @@
1
- from .iam_pomes import (
2
- IamServer,
3
- login_callback, token_exchange,
4
- user_login, user_logout, user_token
1
+ from .iam_actions import (
2
+ action_callback, action_exchange,
3
+ action_login, action_logout, action_token
5
4
  )
6
- from .iam_services import (
7
- logger_register
5
+ from .iam_common import (
6
+ IamServer, IamParam
8
7
  )
9
- from .jusbr_pomes import (
10
- jusbr_setup, jusbr_get_token
8
+ from .iam_pomes import (
9
+ iam_setup, iam_get_env_parameters, iam_get_token
11
10
  )
12
- from .keycloak_pomes import (
13
- keycloak_setup, keycloak_get_token
11
+ from .iam_services import (
12
+ jwt_required, logger_register
14
13
  )
15
14
  from .provider_pomes import (
16
15
  provider_register, provider_get_token
@@ -20,16 +19,15 @@ from .token_pomes import (
20
19
  )
21
20
 
22
21
  __all__ = [
22
+ # iam_actions
23
+ "action_callback", "action_exchange",
24
+ "action_login", "action_logout", "action_token",
25
+ # iam_commons
26
+ "IamServer", "IamParam",
23
27
  # iam_pomes
24
- "IamServer",
25
- "login_callback", "token_exchange",
26
- "user_login", "user_logout", "user_token",
28
+ "iam_setup", "iam_get_env_parameters", "iam_get_token",
27
29
  # iam_services
28
- "logger_register",
29
- # jusbr_pomes
30
- "jusbr_setup", "jusbr_get_token",
31
- # keycloak_pomes
32
- "keycloak_setup", "keycloak_get_token",
30
+ "jwt_required", "logger_register",
33
31
  # provider_pomes
34
32
  "provider_register", "provider_get_token",
35
33
  # token_pomes