adcp 1.3.0__tar.gz → 1.3.1__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 (39) hide show
  1. {adcp-1.3.0/src/adcp.egg-info → adcp-1.3.1}/PKG-INFO +1 -1
  2. {adcp-1.3.0 → adcp-1.3.1}/pyproject.toml +1 -1
  3. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/__init__.py +9 -1
  4. {adcp-1.3.0 → adcp-1.3.1/src/adcp.egg-info}/PKG-INFO +1 -1
  5. {adcp-1.3.0 → adcp-1.3.1}/LICENSE +0 -0
  6. {adcp-1.3.0 → adcp-1.3.1}/README.md +0 -0
  7. {adcp-1.3.0 → adcp-1.3.1}/setup.cfg +0 -0
  8. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/__main__.py +0 -0
  9. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/client.py +0 -0
  10. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/config.py +0 -0
  11. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/exceptions.py +0 -0
  12. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/protocols/__init__.py +0 -0
  13. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/protocols/a2a.py +0 -0
  14. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/protocols/base.py +0 -0
  15. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/protocols/mcp.py +0 -0
  16. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/testing/__init__.py +0 -0
  17. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/testing/test_helpers.py +0 -0
  18. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/types/__init__.py +0 -0
  19. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/types/core.py +0 -0
  20. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/types/generated.py +0 -0
  21. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/types/tasks.py +0 -0
  22. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/utils/__init__.py +0 -0
  23. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/utils/operation_id.py +0 -0
  24. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/utils/preview_cache.py +0 -0
  25. {adcp-1.3.0 → adcp-1.3.1}/src/adcp/utils/response_parser.py +0 -0
  26. {adcp-1.3.0 → adcp-1.3.1}/src/adcp.egg-info/SOURCES.txt +0 -0
  27. {adcp-1.3.0 → adcp-1.3.1}/src/adcp.egg-info/dependency_links.txt +0 -0
  28. {adcp-1.3.0 → adcp-1.3.1}/src/adcp.egg-info/entry_points.txt +0 -0
  29. {adcp-1.3.0 → adcp-1.3.1}/src/adcp.egg-info/requires.txt +0 -0
  30. {adcp-1.3.0 → adcp-1.3.1}/src/adcp.egg-info/top_level.txt +0 -0
  31. {adcp-1.3.0 → adcp-1.3.1}/tests/test_cli.py +0 -0
  32. {adcp-1.3.0 → adcp-1.3.1}/tests/test_client.py +0 -0
  33. {adcp-1.3.0 → adcp-1.3.1}/tests/test_code_generation.py +0 -0
  34. {adcp-1.3.0 → adcp-1.3.1}/tests/test_discriminated_unions.py +0 -0
  35. {adcp-1.3.0 → adcp-1.3.1}/tests/test_format_id_validation.py +0 -0
  36. {adcp-1.3.0 → adcp-1.3.1}/tests/test_helpers.py +0 -0
  37. {adcp-1.3.0 → adcp-1.3.1}/tests/test_preview_html.py +0 -0
  38. {adcp-1.3.0 → adcp-1.3.1}/tests/test_protocols.py +0 -0
  39. {adcp-1.3.0 → adcp-1.3.1}/tests/test_response_parser.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: adcp
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: Official Python client for the Ad Context Protocol (AdCP)
5
5
  Author-email: AdCP Community <maintainers@adcontextprotocol.org>
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "adcp"
7
- version = "1.3.0"
7
+ version = "1.3.1"
8
8
  description = "Official Python client for the Ad Context Protocol (AdCP)"
9
9
  authors = [
10
10
  {name = "AdCP Community", email = "maintainers@adcontextprotocol.org"}
@@ -23,13 +23,17 @@ from adcp.exceptions import (
23
23
  from adcp.testing import (
24
24
  CREATIVE_AGENT_CONFIG,
25
25
  TEST_AGENT_A2A_CONFIG,
26
+ TEST_AGENT_A2A_NO_AUTH_CONFIG,
26
27
  TEST_AGENT_MCP_CONFIG,
28
+ TEST_AGENT_MCP_NO_AUTH_CONFIG,
27
29
  TEST_AGENT_TOKEN,
28
30
  create_test_agent,
29
31
  creative_agent,
30
32
  test_agent,
31
33
  test_agent_a2a,
34
+ test_agent_a2a_no_auth,
32
35
  test_agent_client,
36
+ test_agent_no_auth,
33
37
  )
34
38
  from adcp.types.core import AgentConfig, Protocol, TaskResult, TaskStatus, WebhookMetadata
35
39
  from adcp.types.generated import (
@@ -146,7 +150,7 @@ from adcp.types.generated import (
146
150
  TaskStatus as GeneratedTaskStatus,
147
151
  )
148
152
 
149
- __version__ = "1.3.0"
153
+ __version__ = "1.3.1"
150
154
 
151
155
  __all__ = [
152
156
  # Client classes
@@ -161,12 +165,16 @@ __all__ = [
161
165
  # Test helpers
162
166
  "test_agent",
163
167
  "test_agent_a2a",
168
+ "test_agent_no_auth",
169
+ "test_agent_a2a_no_auth",
164
170
  "creative_agent",
165
171
  "test_agent_client",
166
172
  "create_test_agent",
167
173
  "TEST_AGENT_TOKEN",
168
174
  "TEST_AGENT_MCP_CONFIG",
169
175
  "TEST_AGENT_A2A_CONFIG",
176
+ "TEST_AGENT_MCP_NO_AUTH_CONFIG",
177
+ "TEST_AGENT_A2A_NO_AUTH_CONFIG",
170
178
  "CREATIVE_AGENT_CONFIG",
171
179
  # Exceptions
172
180
  "ADCPError",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: adcp
3
- Version: 1.3.0
3
+ Version: 1.3.1
4
4
  Summary: Official Python client for the Ad Context Protocol (AdCP)
5
5
  Author-email: AdCP Community <maintainers@adcontextprotocol.org>
6
6
  License: Apache-2.0
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes