adcp 2.18.0__py3-none-any.whl → 3.0.0__py3-none-any.whl
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.
- adcp/ADCP_VERSION +1 -1
- adcp/__init__.py +6 -14
- adcp/__main__.py +94 -51
- adcp/adagents.py +91 -19
- adcp/client.py +865 -0
- adcp/protocols/a2a.py +84 -0
- adcp/protocols/base.py +101 -0
- adcp/protocols/mcp.py +87 -1
- adcp/server/__init__.py +49 -0
- adcp/server/base.py +368 -0
- adcp/server/content_standards.py +561 -0
- adcp/server/governance.py +491 -0
- adcp/server/mcp_tools.py +471 -0
- adcp/server/proposal.py +334 -0
- adcp/server/sponsored_intelligence.py +444 -0
- adcp/types/__init__.py +111 -23
- adcp/types/_ergonomic.py +35 -18
- adcp/types/_generated.py +419 -44
- adcp/types/aliases.py +13 -20
- adcp/types/base.py +1 -1
- adcp/types/generated_poc/adagents.py +103 -6
- adcp/types/generated_poc/content_standards/__init__.py +3 -0
- adcp/types/generated_poc/content_standards/artifact.py +208 -0
- adcp/types/generated_poc/content_standards/artifact_webhook_payload.py +64 -0
- adcp/types/generated_poc/content_standards/calibrate_content_request.py +17 -0
- adcp/types/generated_poc/content_standards/calibrate_content_response.py +74 -0
- adcp/types/generated_poc/content_standards/content_standards.py +66 -0
- adcp/types/generated_poc/content_standards/create_content_standards_request.py +97 -0
- adcp/types/generated_poc/content_standards/create_content_standards_response.py +52 -0
- adcp/types/generated_poc/content_standards/get_content_standards_request.py +21 -0
- adcp/types/generated_poc/content_standards/get_content_standards_response.py +43 -0
- adcp/types/generated_poc/content_standards/get_media_buy_artifacts_request.py +64 -0
- adcp/types/generated_poc/content_standards/get_media_buy_artifacts_response.py +117 -0
- adcp/types/generated_poc/content_standards/list_content_standards_request.py +31 -0
- adcp/types/generated_poc/content_standards/list_content_standards_response.py +48 -0
- adcp/types/generated_poc/content_standards/update_content_standards_request.py +101 -0
- adcp/types/generated_poc/content_standards/update_content_standards_response.py +34 -0
- adcp/types/generated_poc/content_standards/validate_content_delivery_request.py +59 -0
- adcp/types/generated_poc/content_standards/validate_content_delivery_response.py +85 -0
- adcp/types/generated_poc/core/activation_key.py +1 -1
- adcp/types/generated_poc/core/assets/audio_asset.py +1 -1
- adcp/types/generated_poc/core/assets/css_asset.py +1 -1
- adcp/types/generated_poc/core/assets/daast_asset.py +1 -1
- adcp/types/generated_poc/core/assets/html_asset.py +1 -1
- adcp/types/generated_poc/core/assets/image_asset.py +1 -1
- adcp/types/generated_poc/core/assets/javascript_asset.py +1 -1
- adcp/types/generated_poc/core/assets/text_asset.py +1 -1
- adcp/types/generated_poc/core/assets/url_asset.py +1 -1
- adcp/types/generated_poc/core/assets/vast_asset.py +1 -1
- adcp/types/generated_poc/core/assets/video_asset.py +1 -1
- adcp/types/generated_poc/core/assets/webhook_asset.py +1 -1
- adcp/types/generated_poc/core/async_response_data.py +1 -1
- adcp/types/generated_poc/core/brand_manifest.py +68 -5
- adcp/types/generated_poc/core/brand_manifest_ref.py +1 -1
- adcp/types/generated_poc/core/context.py +1 -1
- adcp/types/generated_poc/core/creative_asset.py +8 -7
- adcp/types/generated_poc/core/creative_assignment.py +1 -1
- adcp/types/generated_poc/core/creative_filters.py +4 -14
- adcp/types/generated_poc/core/creative_manifest.py +1 -1
- adcp/types/generated_poc/core/creative_policy.py +1 -1
- adcp/types/generated_poc/core/delivery_metrics.py +1 -1
- adcp/types/generated_poc/core/deployment.py +1 -1
- adcp/types/generated_poc/core/destination.py +1 -1
- adcp/types/generated_poc/core/error.py +1 -1
- adcp/types/generated_poc/core/ext.py +1 -1
- adcp/types/generated_poc/core/format.py +6 -5
- adcp/types/generated_poc/core/format_id.py +1 -1
- adcp/types/generated_poc/core/frequency_cap.py +1 -1
- adcp/types/generated_poc/core/identifier.py +27 -0
- adcp/types/generated_poc/core/mcp_webhook_payload.py +1 -1
- adcp/types/generated_poc/core/measurement.py +1 -1
- adcp/types/generated_poc/core/media_buy.py +1 -1
- adcp/types/generated_poc/core/media_buy_features.py +29 -0
- adcp/types/generated_poc/core/offering.py +80 -0
- adcp/types/generated_poc/core/package.py +1 -1
- adcp/types/generated_poc/core/performance_feedback.py +1 -1
- adcp/types/generated_poc/core/placement.py +1 -1
- adcp/types/generated_poc/core/pricing_option.py +8 -14
- adcp/types/generated_poc/core/product.py +1 -1
- adcp/types/generated_poc/core/product_allocation.py +48 -0
- adcp/types/generated_poc/core/product_filters.py +72 -7
- adcp/types/generated_poc/core/promoted_offerings.py +12 -21
- adcp/types/generated_poc/core/promoted_products.py +1 -1
- adcp/types/generated_poc/core/property.py +1 -1
- adcp/types/generated_poc/core/property_id.py +1 -1
- adcp/types/generated_poc/core/property_list_ref.py +26 -0
- adcp/types/generated_poc/core/property_tag.py +1 -1
- adcp/types/generated_poc/core/proposal.py +64 -0
- adcp/types/generated_poc/core/protocol_envelope.py +1 -1
- adcp/types/generated_poc/core/publisher_property_selector.py +1 -1
- adcp/types/generated_poc/core/push_notification_config.py +1 -1
- adcp/types/generated_poc/core/reporting_capabilities.py +1 -1
- adcp/types/generated_poc/core/reporting_webhook.py +70 -0
- adcp/types/generated_poc/core/response.py +1 -1
- adcp/types/generated_poc/core/signal_filters.py +1 -1
- adcp/types/generated_poc/core/start_timing.py +4 -4
- adcp/types/generated_poc/core/sub_asset.py +1 -1
- adcp/types/generated_poc/core/targeting.py +55 -14
- adcp/types/generated_poc/creative/list_creative_formats_request.py +1 -1
- adcp/types/generated_poc/creative/list_creative_formats_response.py +1 -1
- adcp/types/generated_poc/creative/preview_creative_request.py +1 -1
- adcp/types/generated_poc/creative/preview_creative_response.py +3 -2
- adcp/types/generated_poc/creative/preview_render.py +1 -1
- adcp/types/generated_poc/enums/adcp_domain.py +3 -1
- adcp/types/generated_poc/enums/asset_content_type.py +1 -1
- adcp/types/generated_poc/enums/auth_scheme.py +1 -1
- adcp/types/generated_poc/enums/available_metric.py +1 -1
- adcp/types/generated_poc/enums/channels.py +18 -8
- adcp/types/generated_poc/enums/co_branding_requirement.py +1 -1
- adcp/types/generated_poc/enums/creative_action.py +1 -1
- adcp/types/generated_poc/enums/creative_agent_capability.py +1 -1
- adcp/types/generated_poc/enums/creative_sort_field.py +1 -1
- adcp/types/generated_poc/enums/creative_status.py +2 -1
- adcp/types/generated_poc/enums/daast_tracking_event.py +1 -1
- adcp/types/generated_poc/enums/daast_version.py +1 -1
- adcp/types/generated_poc/enums/delivery_type.py +1 -1
- adcp/types/generated_poc/enums/dimension_unit.py +1 -1
- adcp/types/generated_poc/enums/feed_format.py +1 -1
- adcp/types/generated_poc/enums/feedback_source.py +1 -1
- adcp/types/generated_poc/enums/format_category.py +1 -1
- adcp/types/generated_poc/enums/format_id_parameter.py +1 -1
- adcp/types/generated_poc/enums/frequency_cap_scope.py +1 -1
- adcp/types/generated_poc/enums/geo_level.py +14 -0
- adcp/types/generated_poc/enums/history_entry_type.py +1 -1
- adcp/types/generated_poc/enums/http_method.py +1 -1
- adcp/types/generated_poc/enums/identifier_types.py +1 -1
- adcp/types/generated_poc/enums/javascript_module_type.py +1 -1
- adcp/types/generated_poc/enums/landing_page_requirement.py +1 -1
- adcp/types/generated_poc/enums/markdown_flavor.py +1 -1
- adcp/types/generated_poc/enums/media_buy_status.py +1 -1
- adcp/types/generated_poc/enums/metric_type.py +1 -1
- adcp/types/generated_poc/enums/metro_system.py +15 -0
- adcp/types/generated_poc/enums/notification_type.py +1 -1
- adcp/types/generated_poc/enums/pacing.py +1 -1
- adcp/types/generated_poc/enums/postal_system.py +19 -0
- adcp/types/generated_poc/enums/preview_output_format.py +1 -1
- adcp/types/generated_poc/enums/pricing_model.py +1 -1
- adcp/types/generated_poc/enums/property_type.py +2 -1
- adcp/types/generated_poc/enums/publisher_identifier_types.py +1 -1
- adcp/types/generated_poc/enums/reporting_frequency.py +1 -1
- adcp/types/generated_poc/enums/signal_catalog_type.py +1 -1
- adcp/types/generated_poc/enums/sort_direction.py +1 -1
- adcp/types/generated_poc/enums/task_status.py +1 -1
- adcp/types/generated_poc/enums/task_type.py +7 -1
- adcp/types/generated_poc/enums/update_frequency.py +1 -1
- adcp/types/generated_poc/enums/url_asset_type.py +1 -1
- adcp/types/generated_poc/enums/validation_mode.py +1 -1
- adcp/types/generated_poc/enums/vast_tracking_event.py +1 -1
- adcp/types/generated_poc/enums/vast_version.py +1 -1
- adcp/types/generated_poc/enums/webhook_response_type.py +1 -1
- adcp/types/generated_poc/enums/webhook_security_method.py +1 -1
- adcp/types/generated_poc/extensions/__init__.py +3 -0
- adcp/types/generated_poc/extensions/extension_meta.py +58 -0
- adcp/types/generated_poc/media_buy/build_creative_request.py +1 -1
- adcp/types/generated_poc/media_buy/build_creative_response.py +1 -1
- adcp/types/generated_poc/media_buy/create_media_buy_async_response_input_required.py +1 -1
- adcp/types/generated_poc/media_buy/create_media_buy_async_response_submitted.py +1 -1
- adcp/types/generated_poc/media_buy/create_media_buy_async_response_working.py +1 -1
- adcp/types/generated_poc/media_buy/create_media_buy_request.py +54 -26
- adcp/types/generated_poc/media_buy/create_media_buy_response.py +1 -1
- adcp/types/generated_poc/media_buy/get_media_buy_delivery_request.py +1 -1
- adcp/types/generated_poc/media_buy/get_media_buy_delivery_response.py +1 -1
- adcp/types/generated_poc/media_buy/get_products_async_response_input_required.py +1 -1
- adcp/types/generated_poc/media_buy/get_products_async_response_submitted.py +1 -1
- adcp/types/generated_poc/media_buy/get_products_async_response_working.py +1 -1
- adcp/types/generated_poc/media_buy/get_products_request.py +18 -3
- adcp/types/generated_poc/media_buy/get_products_response.py +14 -2
- adcp/types/generated_poc/media_buy/list_authorized_properties_request.py +1 -1
- adcp/types/generated_poc/media_buy/list_authorized_properties_response.py +2 -2
- adcp/types/generated_poc/media_buy/list_creative_formats_request.py +1 -1
- adcp/types/generated_poc/media_buy/list_creative_formats_response.py +1 -1
- adcp/types/generated_poc/media_buy/list_creatives_request.py +2 -2
- adcp/types/generated_poc/media_buy/list_creatives_response.py +7 -10
- adcp/types/generated_poc/media_buy/package_request.py +15 -6
- adcp/types/generated_poc/media_buy/package_update.py +119 -0
- adcp/types/generated_poc/media_buy/provide_performance_feedback_request.py +1 -1
- adcp/types/generated_poc/media_buy/provide_performance_feedback_response.py +1 -1
- adcp/types/generated_poc/media_buy/sync_creatives_async_response_input_required.py +1 -1
- adcp/types/generated_poc/media_buy/sync_creatives_async_response_submitted.py +1 -1
- adcp/types/generated_poc/media_buy/sync_creatives_async_response_working.py +1 -1
- adcp/types/generated_poc/media_buy/sync_creatives_request.py +1 -1
- adcp/types/generated_poc/media_buy/sync_creatives_response.py +1 -1
- adcp/types/generated_poc/media_buy/update_media_buy_async_response_input_required.py +1 -1
- adcp/types/generated_poc/media_buy/update_media_buy_async_response_submitted.py +1 -1
- adcp/types/generated_poc/media_buy/update_media_buy_async_response_working.py +1 -1
- adcp/types/generated_poc/media_buy/update_media_buy_request.py +20 -108
- adcp/types/generated_poc/media_buy/update_media_buy_response.py +1 -1
- adcp/types/generated_poc/pricing_options/cpc_option.py +35 -10
- adcp/types/generated_poc/pricing_options/cpcv_option.py +35 -10
- adcp/types/generated_poc/pricing_options/{cpm_auction_option.py → cpm_option.py} +23 -19
- adcp/types/generated_poc/pricing_options/cpp_option.py +39 -16
- adcp/types/generated_poc/pricing_options/cpv_option.py +37 -18
- adcp/types/generated_poc/pricing_options/flat_rate_option.py +45 -39
- adcp/types/generated_poc/pricing_options/{vcpm_auction_option.py → vcpm_option.py} +23 -14
- adcp/types/generated_poc/property/__init__.py +3 -0
- adcp/types/generated_poc/property/base_property_source.py +86 -0
- adcp/types/generated_poc/property/create_property_list_request.py +43 -0
- adcp/types/generated_poc/property/create_property_list_response.py +27 -0
- adcp/types/generated_poc/property/delete_property_list_request.py +22 -0
- adcp/types/generated_poc/property/delete_property_list_response.py +21 -0
- adcp/types/generated_poc/property/feature_requirement.py +42 -0
- adcp/types/generated_poc/property/get_property_list_request.py +34 -0
- adcp/types/generated_poc/property/get_property_list_response.py +61 -0
- adcp/types/generated_poc/property/list_property_lists_request.py +29 -0
- adcp/types/generated_poc/property/list_property_lists_response.py +39 -0
- adcp/types/generated_poc/property/property_error.py +33 -0
- adcp/types/generated_poc/property/property_feature.py +22 -0
- adcp/types/generated_poc/property/property_feature_definition.py +80 -0
- adcp/types/generated_poc/property/property_list.py +62 -0
- adcp/types/generated_poc/property/property_list_changed_webhook.py +51 -0
- adcp/types/generated_poc/property/property_list_filters.py +47 -0
- adcp/types/generated_poc/property/update_property_list_request.py +46 -0
- adcp/types/generated_poc/property/update_property_list_response.py +21 -0
- adcp/types/generated_poc/protocol/__init__.py +3 -0
- adcp/types/generated_poc/protocol/get_adcp_capabilities_request.py +34 -0
- adcp/types/generated_poc/protocol/get_adcp_capabilities_response.py +353 -0
- adcp/types/generated_poc/protocols/adcp_extension.py +18 -5
- adcp/types/generated_poc/signals/activate_signal_request.py +1 -1
- adcp/types/generated_poc/signals/activate_signal_response.py +1 -1
- adcp/types/generated_poc/signals/get_signals_request.py +1 -1
- adcp/types/generated_poc/signals/get_signals_response.py +1 -1
- adcp/types/generated_poc/sponsored_intelligence/__init__.py +3 -0
- adcp/types/generated_poc/sponsored_intelligence/si_capabilities.py +102 -0
- adcp/types/generated_poc/sponsored_intelligence/si_get_offering_request.py +34 -0
- adcp/types/generated_poc/sponsored_intelligence/si_get_offering_response.py +100 -0
- adcp/types/generated_poc/sponsored_intelligence/si_identity.py +78 -0
- adcp/types/generated_poc/sponsored_intelligence/si_initiate_session_request.py +46 -0
- adcp/types/generated_poc/sponsored_intelligence/si_initiate_session_response.py +44 -0
- adcp/types/generated_poc/sponsored_intelligence/si_send_message_request.py +58 -0
- adcp/types/generated_poc/sponsored_intelligence/si_send_message_response.py +101 -0
- adcp/types/generated_poc/sponsored_intelligence/si_terminate_session_request.py +60 -0
- adcp/types/generated_poc/sponsored_intelligence/si_terminate_session_response.py +54 -0
- adcp/types/generated_poc/sponsored_intelligence/si_ui_element.py +30 -0
- adcp/utils/format_assets.py +5 -5
- adcp/utils/preview_cache.py +2 -2
- {adcp-2.18.0.dist-info → adcp-3.0.0.dist-info}/METADATA +1 -1
- adcp-3.0.0.dist-info/RECORD +264 -0
- {adcp-2.18.0.dist-info → adcp-3.0.0.dist-info}/WHEEL +1 -1
- adcp/types/generated_poc/enums/standard_format_ids.py +0 -45
- adcp/types/generated_poc/pricing_options/cpm_fixed_option.py +0 -43
- adcp/types/generated_poc/pricing_options/vcpm_fixed_option.py +0 -47
- adcp-2.18.0.dist-info/RECORD +0 -195
- {adcp-2.18.0.dist-info → adcp-3.0.0.dist-info}/entry_points.txt +0 -0
- {adcp-2.18.0.dist-info → adcp-3.0.0.dist-info}/licenses/LICENSE +0 -0
- {adcp-2.18.0.dist-info → adcp-3.0.0.dist-info}/top_level.txt +0 -0
adcp/types/_generated.py
CHANGED
|
@@ -10,7 +10,7 @@ Auto-generated by datamodel-code-generator from JSON schemas.
|
|
|
10
10
|
DO NOT EDIT MANUALLY.
|
|
11
11
|
|
|
12
12
|
Generated from: https://github.com/adcontextprotocol/adcp/tree/main/schemas
|
|
13
|
-
Generation date: 2026-01-
|
|
13
|
+
Generation date: 2026-01-26 13:22:20 UTC
|
|
14
14
|
"""
|
|
15
15
|
|
|
16
16
|
# ruff: noqa: E501, I001
|
|
@@ -26,8 +26,103 @@ from adcp.types.generated_poc.adagents import (
|
|
|
26
26
|
AuthorizedSalesAgents1,
|
|
27
27
|
AuthorizedSalesAgents2,
|
|
28
28
|
Contact,
|
|
29
|
+
PropertyFeature,
|
|
29
30
|
Tags,
|
|
30
31
|
)
|
|
32
|
+
from adcp.types.generated_poc.content_standards.artifact import (
|
|
33
|
+
Artifact,
|
|
34
|
+
AssetAccess,
|
|
35
|
+
AssetAccess1,
|
|
36
|
+
AssetAccess2,
|
|
37
|
+
AssetAccess3,
|
|
38
|
+
Assets,
|
|
39
|
+
Assets1,
|
|
40
|
+
Assets2,
|
|
41
|
+
Assets3,
|
|
42
|
+
Identifiers,
|
|
43
|
+
Metadata,
|
|
44
|
+
Provider,
|
|
45
|
+
Role,
|
|
46
|
+
TranscriptSource,
|
|
47
|
+
TranscriptSource1,
|
|
48
|
+
)
|
|
49
|
+
from adcp.types.generated_poc.content_standards.artifact_webhook_payload import (
|
|
50
|
+
ArtifactWebhookPayload,
|
|
51
|
+
Pagination,
|
|
52
|
+
)
|
|
53
|
+
from adcp.types.generated_poc.content_standards.calibrate_content_request import (
|
|
54
|
+
CalibrateContentRequest,
|
|
55
|
+
)
|
|
56
|
+
from adcp.types.generated_poc.content_standards.calibrate_content_response import (
|
|
57
|
+
CalibrateContentResponse,
|
|
58
|
+
CalibrateContentResponse1,
|
|
59
|
+
CalibrateContentResponse2,
|
|
60
|
+
Feature,
|
|
61
|
+
Status,
|
|
62
|
+
Verdict,
|
|
63
|
+
)
|
|
64
|
+
from adcp.types.generated_poc.content_standards.content_standards import (
|
|
65
|
+
CalibrationExemplars,
|
|
66
|
+
ContentStandards,
|
|
67
|
+
)
|
|
68
|
+
from adcp.types.generated_poc.content_standards.create_content_standards_request import (
|
|
69
|
+
CreateContentStandardsRequest,
|
|
70
|
+
Fail,
|
|
71
|
+
Pass,
|
|
72
|
+
Scope,
|
|
73
|
+
)
|
|
74
|
+
from adcp.types.generated_poc.content_standards.create_content_standards_response import (
|
|
75
|
+
CreateContentStandardsResponse,
|
|
76
|
+
CreateContentStandardsResponse1,
|
|
77
|
+
CreateContentStandardsResponse2,
|
|
78
|
+
)
|
|
79
|
+
from adcp.types.generated_poc.content_standards.get_content_standards_request import (
|
|
80
|
+
GetContentStandardsRequest,
|
|
81
|
+
)
|
|
82
|
+
from adcp.types.generated_poc.content_standards.get_content_standards_response import (
|
|
83
|
+
GetContentStandardsResponse,
|
|
84
|
+
GetContentStandardsResponse1,
|
|
85
|
+
GetContentStandardsResponse2,
|
|
86
|
+
)
|
|
87
|
+
from adcp.types.generated_poc.content_standards.get_media_buy_artifacts_request import (
|
|
88
|
+
GetMediaBuyArtifactsRequest,
|
|
89
|
+
Method,
|
|
90
|
+
Sampling,
|
|
91
|
+
TimeRange,
|
|
92
|
+
)
|
|
93
|
+
from adcp.types.generated_poc.content_standards.get_media_buy_artifacts_response import (
|
|
94
|
+
BrandContext,
|
|
95
|
+
GetMediaBuyArtifactsResponse,
|
|
96
|
+
GetMediaBuyArtifactsResponse1,
|
|
97
|
+
GetMediaBuyArtifactsResponse2,
|
|
98
|
+
LocalVerdict,
|
|
99
|
+
SamplingInfo,
|
|
100
|
+
)
|
|
101
|
+
from adcp.types.generated_poc.content_standards.list_content_standards_request import (
|
|
102
|
+
ListContentStandardsRequest,
|
|
103
|
+
)
|
|
104
|
+
from adcp.types.generated_poc.content_standards.list_content_standards_response import (
|
|
105
|
+
ListContentStandardsResponse,
|
|
106
|
+
ListContentStandardsResponse1,
|
|
107
|
+
ListContentStandardsResponse2,
|
|
108
|
+
)
|
|
109
|
+
from adcp.types.generated_poc.content_standards.update_content_standards_request import (
|
|
110
|
+
UpdateContentStandardsRequest,
|
|
111
|
+
)
|
|
112
|
+
from adcp.types.generated_poc.content_standards.update_content_standards_response import (
|
|
113
|
+
UpdateContentStandardsResponse,
|
|
114
|
+
)
|
|
115
|
+
from adcp.types.generated_poc.content_standards.validate_content_delivery_request import (
|
|
116
|
+
Record,
|
|
117
|
+
ValidateContentDeliveryRequest,
|
|
118
|
+
)
|
|
119
|
+
from adcp.types.generated_poc.content_standards.validate_content_delivery_response import (
|
|
120
|
+
Result,
|
|
121
|
+
Summary,
|
|
122
|
+
ValidateContentDeliveryResponse,
|
|
123
|
+
ValidateContentDeliveryResponse1,
|
|
124
|
+
ValidateContentDeliveryResponse2,
|
|
125
|
+
)
|
|
31
126
|
from adcp.types.generated_poc.core.activation_key import (
|
|
32
127
|
ActivationKey,
|
|
33
128
|
ActivationKey1,
|
|
@@ -46,16 +141,18 @@ from adcp.types.generated_poc.core.assets.video_asset import VideoAsset
|
|
|
46
141
|
from adcp.types.generated_poc.core.assets.webhook_asset import Security, WebhookAsset
|
|
47
142
|
from adcp.types.generated_poc.core.async_response_data import AdcpAsyncResponseData
|
|
48
143
|
from adcp.types.generated_poc.core.brand_manifest import (
|
|
144
|
+
AgenticCheckout,
|
|
49
145
|
Asset,
|
|
146
|
+
Avatar,
|
|
50
147
|
BrandManifest,
|
|
51
148
|
Colors,
|
|
52
149
|
Disclaimer,
|
|
53
150
|
FeedFormat,
|
|
54
151
|
Fonts,
|
|
55
152
|
Logo,
|
|
56
|
-
Metadata,
|
|
57
153
|
ProductCatalog,
|
|
58
154
|
UpdateFrequency,
|
|
155
|
+
Voice,
|
|
59
156
|
)
|
|
60
157
|
from adcp.types.generated_poc.core.brand_manifest_ref import BrandManifestReference
|
|
61
158
|
from adcp.types.generated_poc.core.context import ContextObject
|
|
@@ -76,8 +173,7 @@ from adcp.types.generated_poc.core.error import Error
|
|
|
76
173
|
from adcp.types.generated_poc.core.ext import ExtensionObject
|
|
77
174
|
from adcp.types.generated_poc.core.format import (
|
|
78
175
|
Asset2,
|
|
79
|
-
|
|
80
|
-
Assets1,
|
|
176
|
+
Assets5,
|
|
81
177
|
AssetsRequired,
|
|
82
178
|
AssetsRequired1,
|
|
83
179
|
Dimensions,
|
|
@@ -91,13 +187,15 @@ from adcp.types.generated_poc.core.format import (
|
|
|
91
187
|
)
|
|
92
188
|
from adcp.types.generated_poc.core.format_id import FormatId
|
|
93
189
|
from adcp.types.generated_poc.core.frequency_cap import FrequencyCap
|
|
190
|
+
from adcp.types.generated_poc.core.identifier import Identifier
|
|
94
191
|
from adcp.types.generated_poc.core.mcp_webhook_payload import McpWebhookPayload
|
|
95
192
|
from adcp.types.generated_poc.core.measurement import Measurement
|
|
96
193
|
from adcp.types.generated_poc.core.media_buy import MediaBuy
|
|
194
|
+
from adcp.types.generated_poc.core.media_buy_features import MediaBuyFeatures
|
|
195
|
+
from adcp.types.generated_poc.core.offering import Offering
|
|
97
196
|
from adcp.types.generated_poc.core.performance_feedback import (
|
|
98
197
|
MeasurementPeriod,
|
|
99
198
|
PerformanceFeedback,
|
|
100
|
-
Status,
|
|
101
199
|
)
|
|
102
200
|
from adcp.types.generated_poc.core.placement import Placement
|
|
103
201
|
from adcp.types.generated_poc.core.pricing_option import PricingOption
|
|
@@ -107,22 +205,27 @@ from adcp.types.generated_poc.core.product import (
|
|
|
107
205
|
ProductCard,
|
|
108
206
|
ProductCardDetailed,
|
|
109
207
|
)
|
|
208
|
+
from adcp.types.generated_poc.core.product_allocation import ProductAllocation
|
|
110
209
|
from adcp.types.generated_poc.core.product_filters import (
|
|
111
210
|
BudgetRange,
|
|
112
211
|
BudgetRange1,
|
|
113
212
|
Country,
|
|
213
|
+
Metro,
|
|
114
214
|
ProductFilters,
|
|
215
|
+
Region,
|
|
216
|
+
RequiredGeoTargetingItem,
|
|
115
217
|
)
|
|
116
218
|
from adcp.types.generated_poc.core.promoted_offerings import (
|
|
117
219
|
AssetSelectors,
|
|
118
220
|
AssetType,
|
|
119
|
-
Offering,
|
|
120
221
|
PromotedOfferings,
|
|
121
222
|
)
|
|
122
223
|
from adcp.types.generated_poc.core.promoted_products import PromotedProducts
|
|
123
|
-
from adcp.types.generated_poc.core.property import
|
|
224
|
+
from adcp.types.generated_poc.core.property import Property
|
|
124
225
|
from adcp.types.generated_poc.core.property_id import PropertyId
|
|
226
|
+
from adcp.types.generated_poc.core.property_list_ref import PropertyListReference
|
|
125
227
|
from adcp.types.generated_poc.core.property_tag import PropertyTag
|
|
228
|
+
from adcp.types.generated_poc.core.proposal import Proposal, TotalBudgetGuidance
|
|
126
229
|
from adcp.types.generated_poc.core.protocol_envelope import ProtocolEnvelope
|
|
127
230
|
from adcp.types.generated_poc.core.publisher_property_selector import (
|
|
128
231
|
PublisherPropertySelector,
|
|
@@ -135,11 +238,18 @@ from adcp.types.generated_poc.core.push_notification_config import (
|
|
|
135
238
|
PushNotificationConfig,
|
|
136
239
|
)
|
|
137
240
|
from adcp.types.generated_poc.core.reporting_capabilities import ReportingCapabilities
|
|
241
|
+
from adcp.types.generated_poc.core.reporting_webhook import ReportingFrequency, ReportingWebhook
|
|
138
242
|
from adcp.types.generated_poc.core.response import ProtocolResponse
|
|
139
243
|
from adcp.types.generated_poc.core.signal_filters import SignalFilters
|
|
140
244
|
from adcp.types.generated_poc.core.start_timing import StartTiming
|
|
141
245
|
from adcp.types.generated_poc.core.sub_asset import SubAsset, SubAsset1, SubAsset2
|
|
142
|
-
from adcp.types.generated_poc.core.targeting import
|
|
246
|
+
from adcp.types.generated_poc.core.targeting import (
|
|
247
|
+
GeoCountry,
|
|
248
|
+
GeoMetro,
|
|
249
|
+
GeoPostalArea,
|
|
250
|
+
GeoRegion,
|
|
251
|
+
TargetingOverlay,
|
|
252
|
+
)
|
|
143
253
|
from adcp.types.generated_poc.creative.list_creative_formats_request import (
|
|
144
254
|
ListCreativeFormatsRequestCreativeAgent,
|
|
145
255
|
Type,
|
|
@@ -179,7 +289,7 @@ from adcp.types.generated_poc.enums.adcp_domain import AdcpDomain
|
|
|
179
289
|
from adcp.types.generated_poc.enums.asset_content_type import AssetContentType
|
|
180
290
|
from adcp.types.generated_poc.enums.auth_scheme import AuthenticationScheme
|
|
181
291
|
from adcp.types.generated_poc.enums.available_metric import AvailableMetric
|
|
182
|
-
from adcp.types.generated_poc.enums.channels import
|
|
292
|
+
from adcp.types.generated_poc.enums.channels import MediaChannel
|
|
183
293
|
from adcp.types.generated_poc.enums.co_branding_requirement import CoBrandingRequirement
|
|
184
294
|
from adcp.types.generated_poc.enums.creative_action import CreativeAction
|
|
185
295
|
from adcp.types.generated_poc.enums.creative_agent_capability import CreativeAgentCapability
|
|
@@ -193,6 +303,7 @@ from adcp.types.generated_poc.enums.feedback_source import FeedbackSource
|
|
|
193
303
|
from adcp.types.generated_poc.enums.format_category import FormatCategory
|
|
194
304
|
from adcp.types.generated_poc.enums.format_id_parameter import FormatIdParameter
|
|
195
305
|
from adcp.types.generated_poc.enums.frequency_cap_scope import FrequencyCapScope
|
|
306
|
+
from adcp.types.generated_poc.enums.geo_level import GeographicTargetingLevel
|
|
196
307
|
from adcp.types.generated_poc.enums.history_entry_type import HistoryEntryType
|
|
197
308
|
from adcp.types.generated_poc.enums.http_method import HttpMethod
|
|
198
309
|
from adcp.types.generated_poc.enums.identifier_types import PropertyIdentifierTypes
|
|
@@ -201,16 +312,16 @@ from adcp.types.generated_poc.enums.landing_page_requirement import LandingPageR
|
|
|
201
312
|
from adcp.types.generated_poc.enums.markdown_flavor import MarkdownFlavor
|
|
202
313
|
from adcp.types.generated_poc.enums.media_buy_status import MediaBuyStatus
|
|
203
314
|
from adcp.types.generated_poc.enums.metric_type import MetricType
|
|
315
|
+
from adcp.types.generated_poc.enums.metro_system import MetroAreaSystem
|
|
204
316
|
from adcp.types.generated_poc.enums.notification_type import NotificationType
|
|
205
317
|
from adcp.types.generated_poc.enums.pacing import Pacing
|
|
318
|
+
from adcp.types.generated_poc.enums.postal_system import PostalCodeSystem
|
|
206
319
|
from adcp.types.generated_poc.enums.preview_output_format import PreviewOutputFormat
|
|
207
320
|
from adcp.types.generated_poc.enums.pricing_model import PricingModel
|
|
208
321
|
from adcp.types.generated_poc.enums.property_type import PropertyType
|
|
209
322
|
from adcp.types.generated_poc.enums.publisher_identifier_types import PublisherIdentifierTypes
|
|
210
|
-
from adcp.types.generated_poc.enums.reporting_frequency import ReportingFrequency
|
|
211
323
|
from adcp.types.generated_poc.enums.signal_catalog_type import SignalCatalogType
|
|
212
324
|
from adcp.types.generated_poc.enums.sort_direction import SortDirection
|
|
213
|
-
from adcp.types.generated_poc.enums.standard_format_ids import StandardFormatIds
|
|
214
325
|
from adcp.types.generated_poc.enums.task_status import TaskStatus
|
|
215
326
|
from adcp.types.generated_poc.enums.task_type import TaskType
|
|
216
327
|
from adcp.types.generated_poc.enums.url_asset_type import UrlAssetType
|
|
@@ -219,6 +330,7 @@ from adcp.types.generated_poc.enums.vast_tracking_event import VastTrackingEvent
|
|
|
219
330
|
from adcp.types.generated_poc.enums.vast_version import VastVersion
|
|
220
331
|
from adcp.types.generated_poc.enums.webhook_response_type import WebhookResponseType
|
|
221
332
|
from adcp.types.generated_poc.enums.webhook_security_method import WebhookSecurityMethod
|
|
333
|
+
from adcp.types.generated_poc.extensions.extension_meta import AdcpExtensionFileSchema
|
|
222
334
|
from adcp.types.generated_poc.media_buy.build_creative_request import BuildCreativeRequest
|
|
223
335
|
from adcp.types.generated_poc.media_buy.build_creative_response import (
|
|
224
336
|
BuildCreativeResponse,
|
|
@@ -236,9 +348,11 @@ from adcp.types.generated_poc.media_buy.create_media_buy_async_response_working
|
|
|
236
348
|
CreateMediaBuyWorking,
|
|
237
349
|
)
|
|
238
350
|
from adcp.types.generated_poc.media_buy.create_media_buy_request import (
|
|
351
|
+
ArtifactWebhook,
|
|
352
|
+
BatchFrequency,
|
|
239
353
|
CreateMediaBuyRequest,
|
|
240
|
-
|
|
241
|
-
|
|
354
|
+
DeliveryMode,
|
|
355
|
+
TotalBudget,
|
|
242
356
|
)
|
|
243
357
|
from adcp.types.generated_poc.media_buy.create_media_buy_response import (
|
|
244
358
|
CreateMediaBuyResponse,
|
|
@@ -286,7 +400,6 @@ from adcp.types.generated_poc.media_buy.list_creative_formats_response import (
|
|
|
286
400
|
from adcp.types.generated_poc.media_buy.list_creatives_request import (
|
|
287
401
|
FieldModel,
|
|
288
402
|
ListCreativesRequest,
|
|
289
|
-
Pagination,
|
|
290
403
|
Sort,
|
|
291
404
|
)
|
|
292
405
|
from adcp.types.generated_poc.media_buy.list_creatives_response import (
|
|
@@ -300,6 +413,11 @@ from adcp.types.generated_poc.media_buy.list_creatives_response import (
|
|
|
300
413
|
StatusSummary,
|
|
301
414
|
)
|
|
302
415
|
from adcp.types.generated_poc.media_buy.package_request import PackageRequest
|
|
416
|
+
from adcp.types.generated_poc.media_buy.package_update import (
|
|
417
|
+
PackageUpdate,
|
|
418
|
+
PackageUpdate1,
|
|
419
|
+
PackageUpdate2,
|
|
420
|
+
)
|
|
303
421
|
from adcp.types.generated_poc.media_buy.provide_performance_feedback_request import (
|
|
304
422
|
ProvidePerformanceFeedbackRequest,
|
|
305
423
|
ProvidePerformanceFeedbackRequest1,
|
|
@@ -335,10 +453,6 @@ from adcp.types.generated_poc.media_buy.update_media_buy_async_response_working
|
|
|
335
453
|
UpdateMediaBuyWorking,
|
|
336
454
|
)
|
|
337
455
|
from adcp.types.generated_poc.media_buy.update_media_buy_request import (
|
|
338
|
-
Packages,
|
|
339
|
-
Packages1,
|
|
340
|
-
Packages2,
|
|
341
|
-
Packages3,
|
|
342
456
|
UpdateMediaBuyRequest,
|
|
343
457
|
UpdateMediaBuyRequest1,
|
|
344
458
|
UpdateMediaBuyRequest2,
|
|
@@ -348,13 +462,9 @@ from adcp.types.generated_poc.media_buy.update_media_buy_response import (
|
|
|
348
462
|
UpdateMediaBuyResponse1,
|
|
349
463
|
UpdateMediaBuyResponse2,
|
|
350
464
|
)
|
|
351
|
-
from adcp.types.generated_poc.pricing_options.cpc_option import CpcPricingOption
|
|
465
|
+
from adcp.types.generated_poc.pricing_options.cpc_option import CpcPricingOption, PriceGuidance
|
|
352
466
|
from adcp.types.generated_poc.pricing_options.cpcv_option import CpcvPricingOption
|
|
353
|
-
from adcp.types.generated_poc.pricing_options.
|
|
354
|
-
CpmAuctionPricingOption,
|
|
355
|
-
PriceGuidance,
|
|
356
|
-
)
|
|
357
|
-
from adcp.types.generated_poc.pricing_options.cpm_fixed_option import CpmFixedRatePricingOption
|
|
467
|
+
from adcp.types.generated_poc.pricing_options.cpm_option import CpmPricingOption
|
|
358
468
|
from adcp.types.generated_poc.pricing_options.cpp_option import CppPricingOption, Parameters
|
|
359
469
|
from adcp.types.generated_poc.pricing_options.cpv_option import (
|
|
360
470
|
CpvPricingOption,
|
|
@@ -362,10 +472,71 @@ from adcp.types.generated_poc.pricing_options.cpv_option import (
|
|
|
362
472
|
ViewThreshold1,
|
|
363
473
|
)
|
|
364
474
|
from adcp.types.generated_poc.pricing_options.flat_rate_option import FlatRatePricingOption
|
|
365
|
-
from adcp.types.generated_poc.pricing_options.
|
|
366
|
-
from adcp.types.generated_poc.
|
|
475
|
+
from adcp.types.generated_poc.pricing_options.vcpm_option import VcpmPricingOption
|
|
476
|
+
from adcp.types.generated_poc.property.base_property_source import (
|
|
477
|
+
BasePropertySource,
|
|
478
|
+
BasePropertySource1,
|
|
479
|
+
BasePropertySource2,
|
|
480
|
+
BasePropertySource3,
|
|
481
|
+
)
|
|
482
|
+
from adcp.types.generated_poc.property.create_property_list_request import CreatePropertyListRequest
|
|
483
|
+
from adcp.types.generated_poc.property.create_property_list_response import (
|
|
484
|
+
CreatePropertyListResponse,
|
|
485
|
+
)
|
|
486
|
+
from adcp.types.generated_poc.property.delete_property_list_request import DeletePropertyListRequest
|
|
487
|
+
from adcp.types.generated_poc.property.delete_property_list_response import (
|
|
488
|
+
DeletePropertyListResponse,
|
|
489
|
+
)
|
|
490
|
+
from adcp.types.generated_poc.property.feature_requirement import FeatureRequirement, IfNotCovered
|
|
491
|
+
from adcp.types.generated_poc.property.get_property_list_request import GetPropertyListRequest
|
|
492
|
+
from adcp.types.generated_poc.property.get_property_list_response import GetPropertyListResponse
|
|
493
|
+
from adcp.types.generated_poc.property.list_property_lists_request import ListPropertyListsRequest
|
|
494
|
+
from adcp.types.generated_poc.property.list_property_lists_response import ListPropertyListsResponse
|
|
495
|
+
from adcp.types.generated_poc.property.property_error import Code, PropertyError
|
|
496
|
+
from adcp.types.generated_poc.property.property_feature_definition import (
|
|
497
|
+
Coverage,
|
|
498
|
+
PropertyFeatureDefinition,
|
|
499
|
+
Range,
|
|
500
|
+
)
|
|
501
|
+
from adcp.types.generated_poc.property.property_list import PropertyList
|
|
502
|
+
from adcp.types.generated_poc.property.property_list_changed_webhook import (
|
|
503
|
+
ChangeSummary,
|
|
504
|
+
PropertyListChangedWebhook,
|
|
505
|
+
)
|
|
506
|
+
from adcp.types.generated_poc.property.property_list_filters import (
|
|
507
|
+
CountriesAllItem,
|
|
508
|
+
PropertyListFilters,
|
|
509
|
+
)
|
|
510
|
+
from adcp.types.generated_poc.property.update_property_list_request import UpdatePropertyListRequest
|
|
511
|
+
from adcp.types.generated_poc.property.update_property_list_response import (
|
|
512
|
+
UpdatePropertyListResponse,
|
|
513
|
+
)
|
|
514
|
+
from adcp.types.generated_poc.protocol.get_adcp_capabilities_request import (
|
|
515
|
+
GetAdcpCapabilitiesRequest,
|
|
516
|
+
Protocol,
|
|
517
|
+
)
|
|
518
|
+
from adcp.types.generated_poc.protocol.get_adcp_capabilities_response import (
|
|
519
|
+
Adcp,
|
|
520
|
+
CreativeSpecs,
|
|
521
|
+
Endpoint,
|
|
522
|
+
Execution,
|
|
523
|
+
ExtensionsSupportedItem,
|
|
524
|
+
GeoMetros,
|
|
525
|
+
GeoPostalAreas,
|
|
526
|
+
GetAdcpCapabilitiesResponse,
|
|
527
|
+
Governance,
|
|
528
|
+
MajorVersion,
|
|
529
|
+
MraidVersion,
|
|
530
|
+
Portfolio,
|
|
531
|
+
Preferred,
|
|
532
|
+
Signals,
|
|
533
|
+
SponsoredIntelligence,
|
|
534
|
+
SupportedProtocol,
|
|
535
|
+
Targeting,
|
|
536
|
+
Transport,
|
|
537
|
+
)
|
|
367
538
|
from adcp.types.generated_poc.protocols.adcp_extension import (
|
|
368
|
-
|
|
539
|
+
AdcpAgentCardExtensionParamsDeprecated,
|
|
369
540
|
ProtocolsSupportedEnum,
|
|
370
541
|
)
|
|
371
542
|
from adcp.types.generated_poc.signals.activate_signal_request import ActivateSignalRequest
|
|
@@ -380,15 +551,69 @@ from adcp.types.generated_poc.signals.get_signals_response import (
|
|
|
380
551
|
Pricing,
|
|
381
552
|
Signal,
|
|
382
553
|
)
|
|
554
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_capabilities import (
|
|
555
|
+
Commerce,
|
|
556
|
+
Components,
|
|
557
|
+
Modalities,
|
|
558
|
+
SiCapabilities,
|
|
559
|
+
StandardEnum,
|
|
560
|
+
Video,
|
|
561
|
+
)
|
|
562
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_get_offering_request import (
|
|
563
|
+
SiGetOfferingRequest,
|
|
564
|
+
)
|
|
565
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_get_offering_response import (
|
|
566
|
+
MatchingProduct,
|
|
567
|
+
SiGetOfferingResponse,
|
|
568
|
+
)
|
|
569
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_identity import (
|
|
570
|
+
ConsentScopeEnum,
|
|
571
|
+
PrivacyPolicyAcknowledged,
|
|
572
|
+
ShippingAddress,
|
|
573
|
+
SiIdentity,
|
|
574
|
+
User,
|
|
575
|
+
)
|
|
576
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_initiate_session_request import (
|
|
577
|
+
SiInitiateSessionRequest,
|
|
578
|
+
)
|
|
579
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_initiate_session_response import (
|
|
580
|
+
SiInitiateSessionResponse,
|
|
581
|
+
)
|
|
582
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_send_message_request import (
|
|
583
|
+
ActionResponse,
|
|
584
|
+
SiSendMessageRequest,
|
|
585
|
+
SiSendMessageRequest1,
|
|
586
|
+
SiSendMessageRequest2,
|
|
587
|
+
)
|
|
588
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_send_message_response import (
|
|
589
|
+
ContextForCheckout,
|
|
590
|
+
Handoff,
|
|
591
|
+
Intent,
|
|
592
|
+
Price,
|
|
593
|
+
SessionStatus,
|
|
594
|
+
SiSendMessageResponse,
|
|
595
|
+
)
|
|
596
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_terminate_session_request import (
|
|
597
|
+
Action,
|
|
598
|
+
SiTerminateSessionRequest,
|
|
599
|
+
TerminationContext,
|
|
600
|
+
TransactionIntent,
|
|
601
|
+
)
|
|
602
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_terminate_session_response import (
|
|
603
|
+
AcpHandoff,
|
|
604
|
+
FollowUp,
|
|
605
|
+
SiTerminateSessionResponse,
|
|
606
|
+
)
|
|
607
|
+
from adcp.types.generated_poc.sponsored_intelligence.si_ui_element import SiUiElement
|
|
383
608
|
|
|
384
609
|
# Special imports for name collisions (qualified names for types defined in multiple modules)
|
|
385
610
|
from adcp.types.generated_poc.core.package import Package as _PackageFromPackage
|
|
386
611
|
|
|
387
|
-
# Backward compatibility aliases for renamed types
|
|
388
|
-
Channels = AdvertisingChannels
|
|
389
|
-
|
|
390
612
|
# Explicit exports
|
|
391
613
|
__all__ = [
|
|
614
|
+
"AcpHandoff",
|
|
615
|
+
"Action",
|
|
616
|
+
"ActionResponse",
|
|
392
617
|
"ActivateSignalRequest",
|
|
393
618
|
"ActivateSignalResponse",
|
|
394
619
|
"ActivateSignalResponse1",
|
|
@@ -396,18 +621,30 @@ __all__ = [
|
|
|
396
621
|
"ActivationKey",
|
|
397
622
|
"ActivationKey1",
|
|
398
623
|
"ActivationKey2",
|
|
399
|
-
"
|
|
624
|
+
"Adcp",
|
|
625
|
+
"AdcpAgentCardExtensionParamsDeprecated",
|
|
400
626
|
"AdcpAsyncResponseData",
|
|
401
627
|
"AdcpDomain",
|
|
402
|
-
"
|
|
628
|
+
"AdcpExtensionFileSchema",
|
|
629
|
+
"AgenticCheckout",
|
|
403
630
|
"AggregatedTotals",
|
|
631
|
+
"Artifact",
|
|
632
|
+
"ArtifactWebhook",
|
|
633
|
+
"ArtifactWebhookPayload",
|
|
404
634
|
"Asset",
|
|
405
635
|
"Asset2",
|
|
636
|
+
"AssetAccess",
|
|
637
|
+
"AssetAccess1",
|
|
638
|
+
"AssetAccess2",
|
|
639
|
+
"AssetAccess3",
|
|
406
640
|
"AssetContentType",
|
|
407
641
|
"AssetSelectors",
|
|
408
642
|
"AssetType",
|
|
409
643
|
"Assets",
|
|
410
644
|
"Assets1",
|
|
645
|
+
"Assets2",
|
|
646
|
+
"Assets3",
|
|
647
|
+
"Assets5",
|
|
411
648
|
"AssetsRequired",
|
|
412
649
|
"AssetsRequired1",
|
|
413
650
|
"AssignedPackage",
|
|
@@ -423,6 +660,13 @@ __all__ = [
|
|
|
423
660
|
"AuthorizedSalesAgents1",
|
|
424
661
|
"AuthorizedSalesAgents2",
|
|
425
662
|
"AvailableMetric",
|
|
663
|
+
"Avatar",
|
|
664
|
+
"BasePropertySource",
|
|
665
|
+
"BasePropertySource1",
|
|
666
|
+
"BasePropertySource2",
|
|
667
|
+
"BasePropertySource3",
|
|
668
|
+
"BatchFrequency",
|
|
669
|
+
"BrandContext",
|
|
426
670
|
"BrandManifest",
|
|
427
671
|
"BrandManifestReference",
|
|
428
672
|
"BudgetRange",
|
|
@@ -432,18 +676,34 @@ __all__ = [
|
|
|
432
676
|
"BuildCreativeResponse1",
|
|
433
677
|
"BuildCreativeResponse2",
|
|
434
678
|
"ByPackageItem",
|
|
435
|
-
"
|
|
679
|
+
"CalibrateContentRequest",
|
|
680
|
+
"CalibrateContentResponse",
|
|
681
|
+
"CalibrateContentResponse1",
|
|
682
|
+
"CalibrateContentResponse2",
|
|
683
|
+
"CalibrationExemplars",
|
|
684
|
+
"ChangeSummary",
|
|
436
685
|
"CoBrandingRequirement",
|
|
686
|
+
"Code",
|
|
437
687
|
"Colors",
|
|
688
|
+
"Commerce",
|
|
689
|
+
"Components",
|
|
690
|
+
"ConsentScopeEnum",
|
|
438
691
|
"Contact",
|
|
692
|
+
"ContentStandards",
|
|
693
|
+
"ContextForCheckout",
|
|
439
694
|
"ContextObject",
|
|
695
|
+
"CountriesAllItem",
|
|
440
696
|
"Country",
|
|
697
|
+
"Coverage",
|
|
441
698
|
"CpcPricingOption",
|
|
442
699
|
"CpcvPricingOption",
|
|
443
|
-
"
|
|
444
|
-
"CpmFixedRatePricingOption",
|
|
700
|
+
"CpmPricingOption",
|
|
445
701
|
"CppPricingOption",
|
|
446
702
|
"CpvPricingOption",
|
|
703
|
+
"CreateContentStandardsRequest",
|
|
704
|
+
"CreateContentStandardsResponse",
|
|
705
|
+
"CreateContentStandardsResponse1",
|
|
706
|
+
"CreateContentStandardsResponse2",
|
|
447
707
|
"CreateMediaBuyInputRequired",
|
|
448
708
|
"CreateMediaBuyRequest",
|
|
449
709
|
"CreateMediaBuyResponse",
|
|
@@ -451,6 +711,8 @@ __all__ = [
|
|
|
451
711
|
"CreateMediaBuyResponse2",
|
|
452
712
|
"CreateMediaBuySubmitted",
|
|
453
713
|
"CreateMediaBuyWorking",
|
|
714
|
+
"CreatePropertyListRequest",
|
|
715
|
+
"CreatePropertyListResponse",
|
|
454
716
|
"Creative",
|
|
455
717
|
"CreativeAction",
|
|
456
718
|
"CreativeAgent",
|
|
@@ -461,6 +723,7 @@ __all__ = [
|
|
|
461
723
|
"CreativeManifest",
|
|
462
724
|
"CreativePolicy",
|
|
463
725
|
"CreativeSortField",
|
|
726
|
+
"CreativeSpecs",
|
|
464
727
|
"CreativeStatus",
|
|
465
728
|
"CssAsset",
|
|
466
729
|
"DaastAsset",
|
|
@@ -469,9 +732,12 @@ __all__ = [
|
|
|
469
732
|
"DaastTrackingEvent",
|
|
470
733
|
"DaastVersion",
|
|
471
734
|
"DailyBreakdownItem",
|
|
735
|
+
"DeletePropertyListRequest",
|
|
736
|
+
"DeletePropertyListResponse",
|
|
472
737
|
"DeliverTo",
|
|
473
738
|
"DeliveryMeasurement",
|
|
474
739
|
"DeliveryMetrics",
|
|
740
|
+
"DeliveryMode",
|
|
475
741
|
"DeliveryStatus",
|
|
476
742
|
"DeliveryType",
|
|
477
743
|
"Deployment",
|
|
@@ -486,12 +752,19 @@ __all__ = [
|
|
|
486
752
|
"Disclaimer",
|
|
487
753
|
"DoohMetrics",
|
|
488
754
|
"Embedding",
|
|
755
|
+
"Endpoint",
|
|
489
756
|
"Error",
|
|
757
|
+
"Execution",
|
|
490
758
|
"ExtensionObject",
|
|
759
|
+
"ExtensionsSupportedItem",
|
|
760
|
+
"Fail",
|
|
761
|
+
"Feature",
|
|
762
|
+
"FeatureRequirement",
|
|
491
763
|
"FeedFormat",
|
|
492
764
|
"FeedbackSource",
|
|
493
765
|
"FieldModel",
|
|
494
766
|
"FlatRatePricingOption",
|
|
767
|
+
"FollowUp",
|
|
495
768
|
"Fonts",
|
|
496
769
|
"Format",
|
|
497
770
|
"FormatCard",
|
|
@@ -501,7 +774,23 @@ __all__ = [
|
|
|
501
774
|
"FormatIdParameter",
|
|
502
775
|
"FrequencyCap",
|
|
503
776
|
"FrequencyCapScope",
|
|
504
|
-
"
|
|
777
|
+
"GeoCountry",
|
|
778
|
+
"GeoMetro",
|
|
779
|
+
"GeoMetros",
|
|
780
|
+
"GeoPostalArea",
|
|
781
|
+
"GeoPostalAreas",
|
|
782
|
+
"GeoRegion",
|
|
783
|
+
"GeographicTargetingLevel",
|
|
784
|
+
"GetAdcpCapabilitiesRequest",
|
|
785
|
+
"GetAdcpCapabilitiesResponse",
|
|
786
|
+
"GetContentStandardsRequest",
|
|
787
|
+
"GetContentStandardsResponse",
|
|
788
|
+
"GetContentStandardsResponse1",
|
|
789
|
+
"GetContentStandardsResponse2",
|
|
790
|
+
"GetMediaBuyArtifactsRequest",
|
|
791
|
+
"GetMediaBuyArtifactsResponse",
|
|
792
|
+
"GetMediaBuyArtifactsResponse1",
|
|
793
|
+
"GetMediaBuyArtifactsResponse2",
|
|
505
794
|
"GetMediaBuyDeliveryRequest",
|
|
506
795
|
"GetMediaBuyDeliveryResponse",
|
|
507
796
|
"GetProductsInputRequired",
|
|
@@ -509,50 +798,76 @@ __all__ = [
|
|
|
509
798
|
"GetProductsResponse",
|
|
510
799
|
"GetProductsSubmitted",
|
|
511
800
|
"GetProductsWorking",
|
|
801
|
+
"GetPropertyListRequest",
|
|
802
|
+
"GetPropertyListResponse",
|
|
512
803
|
"GetSignalsRequest",
|
|
513
804
|
"GetSignalsResponse",
|
|
805
|
+
"Governance",
|
|
806
|
+
"Handoff",
|
|
514
807
|
"HistoryEntryType",
|
|
515
808
|
"HtmlAsset",
|
|
516
809
|
"HttpMethod",
|
|
517
810
|
"Identifier",
|
|
811
|
+
"Identifiers",
|
|
812
|
+
"IfNotCovered",
|
|
518
813
|
"ImageAsset",
|
|
519
814
|
"Input",
|
|
520
815
|
"Input2",
|
|
521
816
|
"Input4",
|
|
817
|
+
"Intent",
|
|
522
818
|
"JavascriptAsset",
|
|
523
819
|
"JavascriptModuleType",
|
|
524
820
|
"LandingPageRequirement",
|
|
525
821
|
"ListAuthorizedPropertiesRequest",
|
|
526
822
|
"ListAuthorizedPropertiesResponse",
|
|
823
|
+
"ListContentStandardsRequest",
|
|
824
|
+
"ListContentStandardsResponse",
|
|
825
|
+
"ListContentStandardsResponse1",
|
|
826
|
+
"ListContentStandardsResponse2",
|
|
527
827
|
"ListCreativeFormatsRequest",
|
|
528
828
|
"ListCreativeFormatsRequestCreativeAgent",
|
|
529
829
|
"ListCreativeFormatsResponse",
|
|
530
830
|
"ListCreativeFormatsResponseCreativeAgent",
|
|
531
831
|
"ListCreativesRequest",
|
|
532
832
|
"ListCreativesResponse",
|
|
833
|
+
"ListPropertyListsRequest",
|
|
834
|
+
"ListPropertyListsResponse",
|
|
835
|
+
"LocalVerdict",
|
|
533
836
|
"Logo",
|
|
837
|
+
"MajorVersion",
|
|
534
838
|
"MarkdownFlavor",
|
|
839
|
+
"MatchingProduct",
|
|
535
840
|
"McpWebhookPayload",
|
|
536
841
|
"Measurement",
|
|
537
842
|
"MeasurementPeriod",
|
|
538
843
|
"MediaBuy",
|
|
539
844
|
"MediaBuyDelivery",
|
|
845
|
+
"MediaBuyFeatures",
|
|
540
846
|
"MediaBuyStatus",
|
|
847
|
+
"MediaChannel",
|
|
541
848
|
"Metadata",
|
|
849
|
+
"Method",
|
|
542
850
|
"MetricType",
|
|
851
|
+
"Metro",
|
|
852
|
+
"MetroAreaSystem",
|
|
853
|
+
"Modalities",
|
|
854
|
+
"MraidVersion",
|
|
543
855
|
"NotificationType",
|
|
544
856
|
"Offering",
|
|
545
857
|
"Pacing",
|
|
546
858
|
"PackageRequest",
|
|
547
|
-
"
|
|
548
|
-
"
|
|
549
|
-
"
|
|
550
|
-
"Packages3",
|
|
859
|
+
"PackageUpdate",
|
|
860
|
+
"PackageUpdate1",
|
|
861
|
+
"PackageUpdate2",
|
|
551
862
|
"Pagination",
|
|
552
863
|
"Parameters",
|
|
864
|
+
"Pass",
|
|
553
865
|
"Performance",
|
|
554
866
|
"PerformanceFeedback",
|
|
555
867
|
"Placement",
|
|
868
|
+
"Portfolio",
|
|
869
|
+
"PostalCodeSystem",
|
|
870
|
+
"Preferred",
|
|
556
871
|
"Preview",
|
|
557
872
|
"Preview1",
|
|
558
873
|
"Preview2",
|
|
@@ -567,12 +882,15 @@ __all__ = [
|
|
|
567
882
|
"PreviewRender1",
|
|
568
883
|
"PreviewRender2",
|
|
569
884
|
"PreviewRender3",
|
|
885
|
+
"Price",
|
|
570
886
|
"PriceGuidance",
|
|
571
887
|
"Pricing",
|
|
572
888
|
"PricingModel",
|
|
573
889
|
"PricingOption",
|
|
574
890
|
"PrimaryCountry",
|
|
891
|
+
"PrivacyPolicyAcknowledged",
|
|
575
892
|
"Product",
|
|
893
|
+
"ProductAllocation",
|
|
576
894
|
"ProductCard",
|
|
577
895
|
"ProductCardDetailed",
|
|
578
896
|
"ProductCatalog",
|
|
@@ -580,10 +898,19 @@ __all__ = [
|
|
|
580
898
|
"PromotedOfferings",
|
|
581
899
|
"PromotedProducts",
|
|
582
900
|
"Property",
|
|
901
|
+
"PropertyError",
|
|
902
|
+
"PropertyFeature",
|
|
903
|
+
"PropertyFeatureDefinition",
|
|
583
904
|
"PropertyId",
|
|
584
905
|
"PropertyIdentifierTypes",
|
|
906
|
+
"PropertyList",
|
|
907
|
+
"PropertyListChangedWebhook",
|
|
908
|
+
"PropertyListFilters",
|
|
909
|
+
"PropertyListReference",
|
|
585
910
|
"PropertyTag",
|
|
586
911
|
"PropertyType",
|
|
912
|
+
"Proposal",
|
|
913
|
+
"Protocol",
|
|
587
914
|
"ProtocolEnvelope",
|
|
588
915
|
"ProtocolResponse",
|
|
589
916
|
"ProtocolsSupportedEnum",
|
|
@@ -593,6 +920,7 @@ __all__ = [
|
|
|
593
920
|
"ProvidePerformanceFeedbackResponse",
|
|
594
921
|
"ProvidePerformanceFeedbackResponse1",
|
|
595
922
|
"ProvidePerformanceFeedbackResponse2",
|
|
923
|
+
"Provider",
|
|
596
924
|
"PublisherDomain",
|
|
597
925
|
"PublisherIdentifierTypes",
|
|
598
926
|
"PublisherPropertySelector",
|
|
@@ -602,7 +930,10 @@ __all__ = [
|
|
|
602
930
|
"PushNotificationConfig",
|
|
603
931
|
"QuartileData",
|
|
604
932
|
"QuerySummary",
|
|
933
|
+
"Range",
|
|
605
934
|
"Reason",
|
|
935
|
+
"Record",
|
|
936
|
+
"Region",
|
|
606
937
|
"Renders",
|
|
607
938
|
"Renders1",
|
|
608
939
|
"ReportingCapabilities",
|
|
@@ -610,26 +941,50 @@ __all__ = [
|
|
|
610
941
|
"ReportingPeriod",
|
|
611
942
|
"ReportingWebhook",
|
|
612
943
|
"Request",
|
|
613
|
-
"
|
|
944
|
+
"RequiredGeoTargetingItem",
|
|
614
945
|
"Response",
|
|
615
946
|
"Response1",
|
|
616
947
|
"Responsive",
|
|
948
|
+
"Result",
|
|
617
949
|
"Results",
|
|
618
950
|
"Results1",
|
|
951
|
+
"Role",
|
|
952
|
+
"Sampling",
|
|
953
|
+
"SamplingInfo",
|
|
954
|
+
"Scope",
|
|
619
955
|
"Security",
|
|
956
|
+
"SessionStatus",
|
|
957
|
+
"ShippingAddress",
|
|
958
|
+
"SiCapabilities",
|
|
959
|
+
"SiGetOfferingRequest",
|
|
960
|
+
"SiGetOfferingResponse",
|
|
961
|
+
"SiIdentity",
|
|
962
|
+
"SiInitiateSessionRequest",
|
|
963
|
+
"SiInitiateSessionResponse",
|
|
964
|
+
"SiSendMessageRequest",
|
|
965
|
+
"SiSendMessageRequest1",
|
|
966
|
+
"SiSendMessageRequest2",
|
|
967
|
+
"SiSendMessageResponse",
|
|
968
|
+
"SiTerminateSessionRequest",
|
|
969
|
+
"SiTerminateSessionResponse",
|
|
970
|
+
"SiUiElement",
|
|
620
971
|
"Signal",
|
|
621
972
|
"SignalCatalogType",
|
|
622
973
|
"SignalFilters",
|
|
974
|
+
"Signals",
|
|
623
975
|
"Sort",
|
|
624
976
|
"SortApplied",
|
|
625
977
|
"SortDirection",
|
|
626
|
-
"
|
|
978
|
+
"SponsoredIntelligence",
|
|
979
|
+
"StandardEnum",
|
|
627
980
|
"StartTiming",
|
|
628
981
|
"Status",
|
|
629
982
|
"StatusSummary",
|
|
630
983
|
"SubAsset",
|
|
631
984
|
"SubAsset1",
|
|
632
985
|
"SubAsset2",
|
|
986
|
+
"Summary",
|
|
987
|
+
"SupportedProtocol",
|
|
633
988
|
"SyncCreativesInputRequired",
|
|
634
989
|
"SyncCreativesRequest",
|
|
635
990
|
"SyncCreativesResponse",
|
|
@@ -638,12 +993,23 @@ __all__ = [
|
|
|
638
993
|
"SyncCreativesSubmitted",
|
|
639
994
|
"SyncCreativesWorking",
|
|
640
995
|
"Tags",
|
|
996
|
+
"Targeting",
|
|
641
997
|
"TargetingOverlay",
|
|
642
998
|
"TaskStatus",
|
|
643
999
|
"TaskType",
|
|
1000
|
+
"TerminationContext",
|
|
644
1001
|
"TextAsset",
|
|
1002
|
+
"TimeRange",
|
|
1003
|
+
"TotalBudget",
|
|
1004
|
+
"TotalBudgetGuidance",
|
|
645
1005
|
"Totals",
|
|
1006
|
+
"TransactionIntent",
|
|
1007
|
+
"TranscriptSource",
|
|
1008
|
+
"TranscriptSource1",
|
|
1009
|
+
"Transport",
|
|
646
1010
|
"Type",
|
|
1011
|
+
"UpdateContentStandardsRequest",
|
|
1012
|
+
"UpdateContentStandardsResponse",
|
|
647
1013
|
"UpdateFrequency",
|
|
648
1014
|
"UpdateMediaBuyInputRequired",
|
|
649
1015
|
"UpdateMediaBuyRequest",
|
|
@@ -654,20 +1020,29 @@ __all__ = [
|
|
|
654
1020
|
"UpdateMediaBuyResponse2",
|
|
655
1021
|
"UpdateMediaBuySubmitted",
|
|
656
1022
|
"UpdateMediaBuyWorking",
|
|
1023
|
+
"UpdatePropertyListRequest",
|
|
1024
|
+
"UpdatePropertyListResponse",
|
|
657
1025
|
"UrlAsset",
|
|
658
1026
|
"UrlAssetType",
|
|
1027
|
+
"User",
|
|
1028
|
+
"ValidateContentDeliveryRequest",
|
|
1029
|
+
"ValidateContentDeliveryResponse",
|
|
1030
|
+
"ValidateContentDeliveryResponse1",
|
|
1031
|
+
"ValidateContentDeliveryResponse2",
|
|
659
1032
|
"ValidationMode",
|
|
660
1033
|
"VastAsset",
|
|
661
1034
|
"VastAsset1",
|
|
662
1035
|
"VastAsset2",
|
|
663
1036
|
"VastTrackingEvent",
|
|
664
1037
|
"VastVersion",
|
|
665
|
-
"
|
|
666
|
-
"VcpmFixedRatePricingOption",
|
|
1038
|
+
"VcpmPricingOption",
|
|
667
1039
|
"VenueBreakdownItem",
|
|
1040
|
+
"Verdict",
|
|
1041
|
+
"Video",
|
|
668
1042
|
"VideoAsset",
|
|
669
1043
|
"ViewThreshold",
|
|
670
1044
|
"ViewThreshold1",
|
|
1045
|
+
"Voice",
|
|
671
1046
|
"WebhookAsset",
|
|
672
1047
|
"WebhookResponseType",
|
|
673
1048
|
"WebhookSecurityMethod",
|