agentguard-python-sdk 0.2.3__tar.gz → 0.2.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.
Files changed (22) hide show
  1. {agentguard_python_sdk-0.2.3/agentguard_python_sdk.egg-info → agentguard_python_sdk-0.2.4}/PKG-INFO +1 -1
  2. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/client.py +2 -1
  3. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4/agentguard_python_sdk.egg-info}/PKG-INFO +1 -1
  4. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/pyproject.toml +1 -1
  5. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/LICENSE +0 -0
  6. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/README.md +0 -0
  7. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/__init__.py +0 -0
  8. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/auth.py +0 -0
  9. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/config.py +0 -0
  10. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/consent.py +0 -0
  11. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/errors.py +0 -0
  12. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/observability.py +0 -0
  13. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard/types.py +0 -0
  14. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_crypto/__init__.py +0 -0
  15. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_crypto/canonical.py +0 -0
  16. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_crypto/models.py +0 -0
  17. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_crypto/signing.py +0 -0
  18. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_python_sdk.egg-info/SOURCES.txt +0 -0
  19. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_python_sdk.egg-info/dependency_links.txt +0 -0
  20. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_python_sdk.egg-info/requires.txt +0 -0
  21. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/agentguard_python_sdk.egg-info/top_level.txt +0 -0
  22. {agentguard_python_sdk-0.2.3 → agentguard_python_sdk-0.2.4}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentguard-python-sdk
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: A production-grade middleware for AI agents to perform on-chain payments and verifiable consent.
5
5
  Author: AgentGuard Team
6
6
  License-Expression: MIT
@@ -209,7 +209,8 @@ class AgentGuardClient:
209
209
  receiver=header_receiver,
210
210
  fiduciary_name=self.config.fiduciary_name,
211
211
  fiduciary_version=self.config.fiduciary_version,
212
- hash_version=self.config.hash_version
212
+ hash_version=self.config.hash_version,
213
+ schema_version=1
213
214
  )
214
215
 
215
216
  # Phase 7: Strict Transport Contract — to_wire_dict() is the ONLY authority
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentguard-python-sdk
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: A production-grade middleware for AI agents to perform on-chain payments and verifiable consent.
5
5
  Author: AgentGuard Team
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agentguard-python-sdk"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "A production-grade middleware for AI agents to perform on-chain payments and verifiable consent."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"