pypomes-iam 0.1.3__tar.gz → 0.1.4__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.1.3
3
+ Version: 0.1.4
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.1.3"
9
+ version = "0.1.4"
10
10
  authors = [
11
11
  { name="GT Nunes", email="wisecoder01@gmail.com" }
12
12
  ]
@@ -157,7 +157,7 @@ def service_login() -> Response:
157
157
  user_data["cache-obj"] = safe_cache
158
158
  auth_url: str = (f"{_jusbr_registry["auth-url"]}/protocol/openid-connect/auth?response_type=code"
159
159
  f"&client_id={_jusbr_registry["client-id"]}"
160
- f"&redirect_url={_jusbr_registry["callback-url"]}"
160
+ f"&redirect_uri={_jusbr_registry["callback-url"]}"
161
161
  f"&state={oauth_state}")
162
162
  if user_data.get("oauth-scope"):
163
163
  auth_url += f"&scope={user_data.get("oauth-scope")}"
@@ -439,7 +439,7 @@ def __post_jusbr(user_data: dict[str, Any],
439
439
  For code for token exchange, *body_data* will have the attributes
440
440
  - "grant_type": "authorization_code"
441
441
  - "code": <16-character-random-code>
442
- - "redirect_url": <callback-url>
442
+ - "redirect_uri": <callback-url>
443
443
  For token refresh, *body_data* will have the attributes
444
444
  - "grant_type": "refresh_token"
445
445
  - "refresh_token": <current-refresh-token>
File without changes
File without changes
File without changes