pypomes-iam 0.5.1__py3-none-any.whl → 0.6.9__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.
- pypomes_iam/__init__.py +16 -18
- pypomes_iam/iam_actions.py +870 -0
- pypomes_iam/iam_common.py +217 -83
- pypomes_iam/iam_pomes.py +131 -486
- pypomes_iam/iam_services.py +138 -53
- pypomes_iam/provider_pomes.py +160 -79
- pypomes_iam/token_pomes.py +39 -2
- {pypomes_iam-0.5.1.dist-info → pypomes_iam-0.6.9.dist-info}/METADATA +1 -2
- pypomes_iam-0.6.9.dist-info/RECORD +11 -0
- pypomes_iam/jusbr_pomes.py +0 -122
- pypomes_iam/keycloak_pomes.py +0 -136
- pypomes_iam-0.5.1.dist-info/RECORD +0 -12
- {pypomes_iam-0.5.1.dist-info → pypomes_iam-0.6.9.dist-info}/WHEEL +0 -0
- {pypomes_iam-0.5.1.dist-info → pypomes_iam-0.6.9.dist-info}/licenses/LICENSE +0 -0
pypomes_iam/__init__.py
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
from .
|
|
2
|
-
|
|
3
|
-
|
|
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 .
|
|
7
|
-
|
|
5
|
+
from .iam_common import (
|
|
6
|
+
IamServer, IamParam
|
|
8
7
|
)
|
|
9
|
-
from .
|
|
10
|
-
|
|
8
|
+
from .iam_pomes import (
|
|
9
|
+
iam_setup, iam_get_env_parameters, iam_get_token
|
|
11
10
|
)
|
|
12
|
-
from .
|
|
13
|
-
|
|
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
|
-
"
|
|
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
|