pypomes-iam 0.0.7__tar.gz → 0.0.8__tar.gz

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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pypomes_iam
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Summary: A collection of Python pomes, penyeach (IAM modules)
5
5
  Project-URL: Homepage, https://github.com/TheWiseCoder/PyPomes-IAM
6
6
  Project-URL: Bug Tracker, https://github.com/TheWiseCoder/PyPomes-IAM/issues
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
6
 
7
7
  [project]
8
8
  name = "pypomes_iam"
9
- version = "0.0.7"
9
+ version = "0.0.8"
10
10
  authors = [
11
11
  { name="GT Nunes", email="wisecoder01@gmail.com" }
12
12
  ]
@@ -1,14 +1,14 @@
1
- from .iam_jusbr import (
1
+ from .jusbr_pomes import (
2
2
  jusbr_setup, jusbr_get_token, jusbr_set_scope
3
3
  )
4
- from .iam_provider import (
4
+ from .provider_pomes import (
5
5
  provider_register, provider_get_token
6
6
  )
7
7
 
8
8
  __all__ = [
9
- # iam_jusbr
9
+ # jusbr_pomes
10
10
  "jusbr_setup", "jusbr_get_token", "jusbr_set_scope",
11
- # jwt_provider
11
+ # provider_pomes
12
12
  "provider_register", "provider_get_token"
13
13
  ]
14
14
 
@@ -205,7 +205,7 @@ def service_logout() -> Response:
205
205
  # methods=["POST"])
206
206
  def service_callback() -> Response:
207
207
  """
208
- Entry point for the callback from JusBR on authentication.
208
+ Entry point for the callback from JusBR on authentication operation.
209
209
 
210
210
  :return: the response containing the token, or *NOT AUTHORIZED*
211
211
  """
File without changes
File without changes
File without changes