skyplatform-iam 1.2.2__tar.gz → 1.2.3__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.
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/PKG-INFO +1 -1
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/pyproject.toml +1 -1
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/skyplatform_iam/__init__.py +1 -1
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/skyplatform_iam/connect_agenterra_iam.py +4 -3
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/skyplatform_iam/middleware.py +0 -3
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/README.md +0 -0
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/skyplatform_iam/config.py +0 -0
- {skyplatform_iam-1.2.2 → skyplatform_iam-1.2.3}/skyplatform_iam/exceptions.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: skyplatform-iam
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: SkyPlatform IAM认证SDK,提供FastAPI中间件和认证路由
|
|
5
5
|
Project-URL: Homepage, https://github.com/xinmayoujiang12621/agenterra_iam
|
|
6
6
|
Project-URL: Documentation, https://skyplatform-iam.readthedocs.io/
|
|
@@ -838,12 +838,13 @@ class ConnectAgenterraIam(object):
|
|
|
838
838
|
"access_key": self.access_key,
|
|
839
839
|
"machine_token": self.machine_token,
|
|
840
840
|
"user_id": user_id,
|
|
841
|
-
"config_name": config_name
|
|
841
|
+
"config_name": config_name,
|
|
842
|
+
"config_value": config_value
|
|
842
843
|
}
|
|
843
844
|
|
|
844
845
|
# 添加可选参数
|
|
845
|
-
if config_value is not None:
|
|
846
|
-
|
|
846
|
+
# if config_value is not None:
|
|
847
|
+
# body["config_value"] = config_value
|
|
847
848
|
|
|
848
849
|
uri = "/api/v2/service/add_custom_config"
|
|
849
850
|
url = self.agenterra_iam_host + uri
|
|
File without changes
|
|
File without changes
|
|
File without changes
|