adcp 2.19.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 +84 -0
- 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 -14
- adcp/types/_generated.py +346 -52
- adcp/types/aliases.py +13 -20
- adcp/types/base.py +1 -1
- adcp/types/generated_poc/adagents.py +196 -189
- 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 +9 -9
- adcp/types/generated_poc/core/assets/audio_asset.py +6 -6
- adcp/types/generated_poc/core/assets/css_asset.py +3 -3
- adcp/types/generated_poc/core/assets/daast_asset.py +19 -19
- adcp/types/generated_poc/core/assets/html_asset.py +3 -3
- adcp/types/generated_poc/core/assets/image_asset.py +7 -7
- adcp/types/generated_poc/core/assets/javascript_asset.py +4 -4
- adcp/types/generated_poc/core/assets/text_asset.py +3 -3
- adcp/types/generated_poc/core/assets/url_asset.py +4 -4
- adcp/types/generated_poc/core/assets/vast_asset.py +19 -19
- adcp/types/generated_poc/core/assets/video_asset.py +8 -8
- adcp/types/generated_poc/core/assets/webhook_asset.py +10 -10
- adcp/types/generated_poc/core/async_response_data.py +3 -3
- adcp/types/generated_poc/core/brand_manifest.py +122 -59
- adcp/types/generated_poc/core/brand_manifest_ref.py +10 -10
- adcp/types/generated_poc/core/context.py +2 -2
- adcp/types/generated_poc/core/creative_asset.py +20 -19
- adcp/types/generated_poc/core/creative_assignment.py +4 -4
- adcp/types/generated_poc/core/creative_filters.py +18 -28
- adcp/types/generated_poc/core/creative_manifest.py +3 -3
- adcp/types/generated_poc/core/creative_policy.py +5 -5
- adcp/types/generated_poc/core/delivery_metrics.py +33 -33
- adcp/types/generated_poc/core/deployment.py +21 -21
- adcp/types/generated_poc/core/destination.py +12 -12
- adcp/types/generated_poc/core/error.py +7 -7
- adcp/types/generated_poc/core/ext.py +2 -2
- adcp/types/generated_poc/core/format.py +66 -66
- adcp/types/generated_poc/core/format_id.py +6 -6
- adcp/types/generated_poc/core/frequency_cap.py +3 -3
- adcp/types/generated_poc/core/identifier.py +3 -3
- adcp/types/generated_poc/core/mcp_webhook_payload.py +11 -11
- adcp/types/generated_poc/core/measurement.py +9 -9
- adcp/types/generated_poc/core/media_buy.py +8 -8
- 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 +9 -9
- adcp/types/generated_poc/core/performance_feedback.py +19 -19
- adcp/types/generated_poc/core/placement.py +5 -5
- adcp/types/generated_poc/core/pricing_option.py +9 -15
- adcp/types/generated_poc/core/product.py +21 -21
- adcp/types/generated_poc/core/product_allocation.py +48 -0
- adcp/types/generated_poc/core/product_filters.py +89 -24
- adcp/types/generated_poc/core/promoted_offerings.py +29 -38
- adcp/types/generated_poc/core/promoted_products.py +3 -3
- adcp/types/generated_poc/core/property.py +10 -10
- adcp/types/generated_poc/core/property_id.py +5 -5
- adcp/types/generated_poc/core/property_list_ref.py +5 -5
- adcp/types/generated_poc/core/property_tag.py +5 -5
- adcp/types/generated_poc/core/proposal.py +64 -0
- adcp/types/generated_poc/core/protocol_envelope.py +9 -9
- adcp/types/generated_poc/core/publisher_property_selector.py +14 -14
- adcp/types/generated_poc/core/push_notification_config.py +6 -6
- adcp/types/generated_poc/core/reporting_capabilities.py +9 -9
- adcp/types/generated_poc/core/reporting_webhook.py +70 -0
- adcp/types/generated_poc/core/response.py +5 -5
- adcp/types/generated_poc/core/signal_filters.py +6 -6
- adcp/types/generated_poc/core/start_timing.py +4 -4
- adcp/types/generated_poc/core/sub_asset.py +15 -15
- adcp/types/generated_poc/core/targeting.py +59 -18
- adcp/types/generated_poc/creative/list_creative_formats_request.py +21 -21
- adcp/types/generated_poc/creative/list_creative_formats_response.py +6 -6
- adcp/types/generated_poc/creative/preview_creative_request.py +25 -25
- adcp/types/generated_poc/creative/preview_creative_response.py +29 -29
- adcp/types/generated_poc/creative/preview_render.py +26 -26
- adcp/types/generated_poc/enums/adcp_domain.py +5 -5
- adcp/types/generated_poc/enums/asset_content_type.py +14 -14
- adcp/types/generated_poc/enums/auth_scheme.py +3 -3
- adcp/types/generated_poc/enums/available_metric.py +10 -10
- adcp/types/generated_poc/enums/channels.py +21 -11
- adcp/types/generated_poc/enums/co_branding_requirement.py +4 -4
- adcp/types/generated_poc/enums/creative_action.py +6 -6
- adcp/types/generated_poc/enums/creative_agent_capability.py +5 -5
- adcp/types/generated_poc/enums/creative_sort_field.py +7 -7
- adcp/types/generated_poc/enums/creative_status.py +6 -5
- adcp/types/generated_poc/enums/daast_tracking_event.py +12 -12
- adcp/types/generated_poc/enums/daast_version.py +3 -3
- adcp/types/generated_poc/enums/delivery_type.py +3 -3
- adcp/types/generated_poc/enums/dimension_unit.py +5 -5
- adcp/types/generated_poc/enums/feed_format.py +4 -4
- adcp/types/generated_poc/enums/feedback_source.py +5 -5
- adcp/types/generated_poc/enums/format_category.py +8 -8
- adcp/types/generated_poc/enums/format_id_parameter.py +3 -3
- adcp/types/generated_poc/enums/frequency_cap_scope.py +4 -4
- adcp/types/generated_poc/enums/geo_level.py +14 -0
- adcp/types/generated_poc/enums/history_entry_type.py +3 -3
- adcp/types/generated_poc/enums/http_method.py +3 -3
- adcp/types/generated_poc/enums/identifier_types.py +20 -20
- adcp/types/generated_poc/enums/javascript_module_type.py +4 -4
- adcp/types/generated_poc/enums/landing_page_requirement.py +4 -4
- adcp/types/generated_poc/enums/markdown_flavor.py +3 -3
- adcp/types/generated_poc/enums/media_buy_status.py +5 -5
- adcp/types/generated_poc/enums/metric_type.py +9 -9
- adcp/types/generated_poc/enums/metro_system.py +15 -0
- adcp/types/generated_poc/enums/notification_type.py +5 -5
- adcp/types/generated_poc/enums/pacing.py +4 -4
- adcp/types/generated_poc/enums/postal_system.py +19 -0
- adcp/types/generated_poc/enums/preview_output_format.py +3 -3
- adcp/types/generated_poc/enums/pricing_model.py +8 -8
- adcp/types/generated_poc/enums/property_type.py +9 -8
- adcp/types/generated_poc/enums/publisher_identifier_types.py +6 -6
- adcp/types/generated_poc/enums/reporting_frequency.py +4 -4
- adcp/types/generated_poc/enums/signal_catalog_type.py +4 -4
- adcp/types/generated_poc/enums/sort_direction.py +3 -3
- adcp/types/generated_poc/enums/task_status.py +10 -10
- adcp/types/generated_poc/enums/task_type.py +12 -12
- adcp/types/generated_poc/enums/update_frequency.py +5 -5
- adcp/types/generated_poc/enums/url_asset_type.py +4 -4
- adcp/types/generated_poc/enums/validation_mode.py +3 -3
- adcp/types/generated_poc/enums/vast_tracking_event.py +17 -17
- adcp/types/generated_poc/enums/vast_version.py +6 -6
- adcp/types/generated_poc/enums/webhook_response_type.py +5 -5
- adcp/types/generated_poc/enums/webhook_security_method.py +4 -4
- adcp/types/generated_poc/extensions/extension_meta.py +20 -12
- adcp/types/generated_poc/media_buy/build_creative_request.py +5 -5
- adcp/types/generated_poc/media_buy/build_creative_response.py +7 -7
- adcp/types/generated_poc/media_buy/create_media_buy_async_response_input_required.py +6 -6
- adcp/types/generated_poc/media_buy/create_media_buy_async_response_submitted.py +2 -2
- adcp/types/generated_poc/media_buy/create_media_buy_async_response_working.py +6 -6
- adcp/types/generated_poc/media_buy/create_media_buy_request.py +65 -37
- adcp/types/generated_poc/media_buy/create_media_buy_response.py +8 -8
- adcp/types/generated_poc/media_buy/get_media_buy_delivery_request.py +9 -9
- adcp/types/generated_poc/media_buy/get_media_buy_delivery_response.py +52 -52
- adcp/types/generated_poc/media_buy/get_products_async_response_input_required.py +7 -7
- adcp/types/generated_poc/media_buy/get_products_async_response_submitted.py +3 -3
- adcp/types/generated_poc/media_buy/get_products_async_response_working.py +5 -5
- adcp/types/generated_poc/media_buy/get_products_request.py +14 -5
- adcp/types/generated_poc/media_buy/get_products_response.py +12 -6
- adcp/types/generated_poc/media_buy/list_authorized_properties_request.py +4 -4
- adcp/types/generated_poc/media_buy/list_authorized_properties_response.py +9 -9
- adcp/types/generated_poc/media_buy/list_creative_formats_request.py +10 -10
- adcp/types/generated_poc/media_buy/list_creative_formats_response.py +6 -6
- adcp/types/generated_poc/media_buy/list_creatives_request.py +24 -24
- adcp/types/generated_poc/media_buy/list_creatives_response.py +54 -57
- adcp/types/generated_poc/media_buy/package_request.py +12 -12
- adcp/types/generated_poc/media_buy/package_update.py +119 -0
- adcp/types/generated_poc/media_buy/provide_performance_feedback_request.py +20 -20
- adcp/types/generated_poc/media_buy/provide_performance_feedback_response.py +7 -7
- adcp/types/generated_poc/media_buy/sync_creatives_async_response_input_required.py +6 -6
- adcp/types/generated_poc/media_buy/sync_creatives_async_response_submitted.py +2 -2
- adcp/types/generated_poc/media_buy/sync_creatives_async_response_working.py +8 -8
- adcp/types/generated_poc/media_buy/sync_creatives_request.py +8 -8
- adcp/types/generated_poc/media_buy/sync_creatives_response.py +16 -16
- adcp/types/generated_poc/media_buy/update_media_buy_async_response_input_required.py +5 -5
- adcp/types/generated_poc/media_buy/update_media_buy_async_response_submitted.py +2 -2
- adcp/types/generated_poc/media_buy/update_media_buy_async_response_working.py +6 -6
- adcp/types/generated_poc/media_buy/update_media_buy_request.py +28 -124
- adcp/types/generated_poc/media_buy/update_media_buy_response.py +8 -8
- adcp/types/generated_poc/pricing_options/cpc_option.py +40 -15
- adcp/types/generated_poc/pricing_options/cpcv_option.py +41 -16
- adcp/types/generated_poc/pricing_options/cpm_option.py +62 -0
- adcp/types/generated_poc/pricing_options/cpp_option.py +46 -23
- adcp/types/generated_poc/pricing_options/cpv_option.py +45 -26
- adcp/types/generated_poc/pricing_options/flat_rate_option.py +53 -47
- adcp/types/generated_poc/pricing_options/vcpm_option.py +70 -0
- adcp/types/generated_poc/property/base_property_source.py +16 -16
- adcp/types/generated_poc/property/create_property_list_request.py +5 -5
- adcp/types/generated_poc/property/create_property_list_response.py +4 -4
- adcp/types/generated_poc/property/delete_property_list_request.py +3 -3
- adcp/types/generated_poc/property/delete_property_list_response.py +4 -4
- adcp/types/generated_poc/property/feature_requirement.py +8 -8
- adcp/types/generated_poc/property/get_property_list_request.py +6 -6
- adcp/types/generated_poc/property/get_property_list_response.py +12 -12
- adcp/types/generated_poc/property/list_property_lists_request.py +6 -6
- adcp/types/generated_poc/property/list_property_lists_response.py +9 -9
- adcp/types/generated_poc/property/property_error.py +11 -11
- adcp/types/generated_poc/property/property_feature.py +5 -5
- adcp/types/generated_poc/property/property_feature_definition.py +19 -19
- adcp/types/generated_poc/property/property_list.py +12 -12
- adcp/types/generated_poc/property/property_list_changed_webhook.py +12 -12
- adcp/types/generated_poc/property/property_list_filters.py +9 -9
- adcp/types/generated_poc/property/update_property_list_request.py +9 -9
- adcp/types/generated_poc/property/update_property_list_response.py +3 -3
- 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 +14 -17
- adcp/types/generated_poc/signals/activate_signal_request.py +4 -4
- adcp/types/generated_poc/signals/activate_signal_response.py +7 -7
- adcp/types/generated_poc/signals/get_signals_request.py +9 -9
- adcp/types/generated_poc/signals/get_signals_response.py +16 -16
- 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.19.0.dist-info → adcp-3.0.0.dist-info}/METADATA +1 -1
- adcp-3.0.0.dist-info/RECORD +264 -0
- {adcp-2.19.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_auction_option.py +0 -58
- adcp/types/generated_poc/pricing_options/cpm_fixed_option.py +0 -43
- adcp/types/generated_poc/pricing_options/vcpm_auction_option.py +0 -61
- adcp/types/generated_poc/pricing_options/vcpm_fixed_option.py +0 -47
- adcp/types/generated_poc/property/list_property_features_request.py +0 -25
- adcp/types/generated_poc/property/list_property_features_response.py +0 -24
- adcp-2.19.0.dist-info/RECORD +0 -220
- {adcp-2.19.0.dist-info → adcp-3.0.0.dist-info}/entry_points.txt +0 -0
- {adcp-2.19.0.dist-info → adcp-3.0.0.dist-info}/licenses/LICENSE +0 -0
- {adcp-2.19.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
|
|
@@ -29,6 +29,100 @@ from adcp.types.generated_poc.adagents import (
|
|
|
29
29
|
PropertyFeature,
|
|
30
30
|
Tags,
|
|
31
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
|
+
)
|
|
32
126
|
from adcp.types.generated_poc.core.activation_key import (
|
|
33
127
|
ActivationKey,
|
|
34
128
|
ActivationKey1,
|
|
@@ -47,16 +141,18 @@ from adcp.types.generated_poc.core.assets.video_asset import VideoAsset
|
|
|
47
141
|
from adcp.types.generated_poc.core.assets.webhook_asset import Security, WebhookAsset
|
|
48
142
|
from adcp.types.generated_poc.core.async_response_data import AdcpAsyncResponseData
|
|
49
143
|
from adcp.types.generated_poc.core.brand_manifest import (
|
|
144
|
+
AgenticCheckout,
|
|
50
145
|
Asset,
|
|
146
|
+
Avatar,
|
|
51
147
|
BrandManifest,
|
|
52
148
|
Colors,
|
|
53
149
|
Disclaimer,
|
|
54
150
|
FeedFormat,
|
|
55
151
|
Fonts,
|
|
56
152
|
Logo,
|
|
57
|
-
Metadata,
|
|
58
153
|
ProductCatalog,
|
|
59
154
|
UpdateFrequency,
|
|
155
|
+
Voice,
|
|
60
156
|
)
|
|
61
157
|
from adcp.types.generated_poc.core.brand_manifest_ref import BrandManifestReference
|
|
62
158
|
from adcp.types.generated_poc.core.context import ContextObject
|
|
@@ -77,8 +173,7 @@ from adcp.types.generated_poc.core.error import Error
|
|
|
77
173
|
from adcp.types.generated_poc.core.ext import ExtensionObject
|
|
78
174
|
from adcp.types.generated_poc.core.format import (
|
|
79
175
|
Asset2,
|
|
80
|
-
|
|
81
|
-
Assets1,
|
|
176
|
+
Assets5,
|
|
82
177
|
AssetsRequired,
|
|
83
178
|
AssetsRequired1,
|
|
84
179
|
Dimensions,
|
|
@@ -96,10 +191,11 @@ from adcp.types.generated_poc.core.identifier import Identifier
|
|
|
96
191
|
from adcp.types.generated_poc.core.mcp_webhook_payload import McpWebhookPayload
|
|
97
192
|
from adcp.types.generated_poc.core.measurement import Measurement
|
|
98
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
|
|
99
196
|
from adcp.types.generated_poc.core.performance_feedback import (
|
|
100
197
|
MeasurementPeriod,
|
|
101
198
|
PerformanceFeedback,
|
|
102
|
-
Status,
|
|
103
199
|
)
|
|
104
200
|
from adcp.types.generated_poc.core.placement import Placement
|
|
105
201
|
from adcp.types.generated_poc.core.pricing_option import PricingOption
|
|
@@ -109,16 +205,19 @@ from adcp.types.generated_poc.core.product import (
|
|
|
109
205
|
ProductCard,
|
|
110
206
|
ProductCardDetailed,
|
|
111
207
|
)
|
|
208
|
+
from adcp.types.generated_poc.core.product_allocation import ProductAllocation
|
|
112
209
|
from adcp.types.generated_poc.core.product_filters import (
|
|
113
210
|
BudgetRange,
|
|
114
211
|
BudgetRange1,
|
|
115
212
|
Country,
|
|
213
|
+
Metro,
|
|
116
214
|
ProductFilters,
|
|
215
|
+
Region,
|
|
216
|
+
RequiredGeoTargetingItem,
|
|
117
217
|
)
|
|
118
218
|
from adcp.types.generated_poc.core.promoted_offerings import (
|
|
119
219
|
AssetSelectors,
|
|
120
220
|
AssetType,
|
|
121
|
-
Offering,
|
|
122
221
|
PromotedOfferings,
|
|
123
222
|
)
|
|
124
223
|
from adcp.types.generated_poc.core.promoted_products import PromotedProducts
|
|
@@ -126,6 +225,7 @@ from adcp.types.generated_poc.core.property import Property
|
|
|
126
225
|
from adcp.types.generated_poc.core.property_id import PropertyId
|
|
127
226
|
from adcp.types.generated_poc.core.property_list_ref import PropertyListReference
|
|
128
227
|
from adcp.types.generated_poc.core.property_tag import PropertyTag
|
|
228
|
+
from adcp.types.generated_poc.core.proposal import Proposal, TotalBudgetGuidance
|
|
129
229
|
from adcp.types.generated_poc.core.protocol_envelope import ProtocolEnvelope
|
|
130
230
|
from adcp.types.generated_poc.core.publisher_property_selector import (
|
|
131
231
|
PublisherPropertySelector,
|
|
@@ -138,11 +238,18 @@ from adcp.types.generated_poc.core.push_notification_config import (
|
|
|
138
238
|
PushNotificationConfig,
|
|
139
239
|
)
|
|
140
240
|
from adcp.types.generated_poc.core.reporting_capabilities import ReportingCapabilities
|
|
241
|
+
from adcp.types.generated_poc.core.reporting_webhook import ReportingFrequency, ReportingWebhook
|
|
141
242
|
from adcp.types.generated_poc.core.response import ProtocolResponse
|
|
142
243
|
from adcp.types.generated_poc.core.signal_filters import SignalFilters
|
|
143
244
|
from adcp.types.generated_poc.core.start_timing import StartTiming
|
|
144
245
|
from adcp.types.generated_poc.core.sub_asset import SubAsset, SubAsset1, SubAsset2
|
|
145
|
-
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
|
+
)
|
|
146
253
|
from adcp.types.generated_poc.creative.list_creative_formats_request import (
|
|
147
254
|
ListCreativeFormatsRequestCreativeAgent,
|
|
148
255
|
Type,
|
|
@@ -182,7 +289,7 @@ from adcp.types.generated_poc.enums.adcp_domain import AdcpDomain
|
|
|
182
289
|
from adcp.types.generated_poc.enums.asset_content_type import AssetContentType
|
|
183
290
|
from adcp.types.generated_poc.enums.auth_scheme import AuthenticationScheme
|
|
184
291
|
from adcp.types.generated_poc.enums.available_metric import AvailableMetric
|
|
185
|
-
from adcp.types.generated_poc.enums.channels import
|
|
292
|
+
from adcp.types.generated_poc.enums.channels import MediaChannel
|
|
186
293
|
from adcp.types.generated_poc.enums.co_branding_requirement import CoBrandingRequirement
|
|
187
294
|
from adcp.types.generated_poc.enums.creative_action import CreativeAction
|
|
188
295
|
from adcp.types.generated_poc.enums.creative_agent_capability import CreativeAgentCapability
|
|
@@ -196,6 +303,7 @@ from adcp.types.generated_poc.enums.feedback_source import FeedbackSource
|
|
|
196
303
|
from adcp.types.generated_poc.enums.format_category import FormatCategory
|
|
197
304
|
from adcp.types.generated_poc.enums.format_id_parameter import FormatIdParameter
|
|
198
305
|
from adcp.types.generated_poc.enums.frequency_cap_scope import FrequencyCapScope
|
|
306
|
+
from adcp.types.generated_poc.enums.geo_level import GeographicTargetingLevel
|
|
199
307
|
from adcp.types.generated_poc.enums.history_entry_type import HistoryEntryType
|
|
200
308
|
from adcp.types.generated_poc.enums.http_method import HttpMethod
|
|
201
309
|
from adcp.types.generated_poc.enums.identifier_types import PropertyIdentifierTypes
|
|
@@ -204,16 +312,16 @@ from adcp.types.generated_poc.enums.landing_page_requirement import LandingPageR
|
|
|
204
312
|
from adcp.types.generated_poc.enums.markdown_flavor import MarkdownFlavor
|
|
205
313
|
from adcp.types.generated_poc.enums.media_buy_status import MediaBuyStatus
|
|
206
314
|
from adcp.types.generated_poc.enums.metric_type import MetricType
|
|
315
|
+
from adcp.types.generated_poc.enums.metro_system import MetroAreaSystem
|
|
207
316
|
from adcp.types.generated_poc.enums.notification_type import NotificationType
|
|
208
317
|
from adcp.types.generated_poc.enums.pacing import Pacing
|
|
318
|
+
from adcp.types.generated_poc.enums.postal_system import PostalCodeSystem
|
|
209
319
|
from adcp.types.generated_poc.enums.preview_output_format import PreviewOutputFormat
|
|
210
320
|
from adcp.types.generated_poc.enums.pricing_model import PricingModel
|
|
211
321
|
from adcp.types.generated_poc.enums.property_type import PropertyType
|
|
212
322
|
from adcp.types.generated_poc.enums.publisher_identifier_types import PublisherIdentifierTypes
|
|
213
|
-
from adcp.types.generated_poc.enums.reporting_frequency import ReportingFrequency
|
|
214
323
|
from adcp.types.generated_poc.enums.signal_catalog_type import SignalCatalogType
|
|
215
324
|
from adcp.types.generated_poc.enums.sort_direction import SortDirection
|
|
216
|
-
from adcp.types.generated_poc.enums.standard_format_ids import StandardFormatIds
|
|
217
325
|
from adcp.types.generated_poc.enums.task_status import TaskStatus
|
|
218
326
|
from adcp.types.generated_poc.enums.task_type import TaskType
|
|
219
327
|
from adcp.types.generated_poc.enums.url_asset_type import UrlAssetType
|
|
@@ -240,9 +348,11 @@ from adcp.types.generated_poc.media_buy.create_media_buy_async_response_working
|
|
|
240
348
|
CreateMediaBuyWorking,
|
|
241
349
|
)
|
|
242
350
|
from adcp.types.generated_poc.media_buy.create_media_buy_request import (
|
|
351
|
+
ArtifactWebhook,
|
|
352
|
+
BatchFrequency,
|
|
243
353
|
CreateMediaBuyRequest,
|
|
244
|
-
|
|
245
|
-
|
|
354
|
+
DeliveryMode,
|
|
355
|
+
TotalBudget,
|
|
246
356
|
)
|
|
247
357
|
from adcp.types.generated_poc.media_buy.create_media_buy_response import (
|
|
248
358
|
CreateMediaBuyResponse,
|
|
@@ -290,7 +400,6 @@ from adcp.types.generated_poc.media_buy.list_creative_formats_response import (
|
|
|
290
400
|
from adcp.types.generated_poc.media_buy.list_creatives_request import (
|
|
291
401
|
FieldModel,
|
|
292
402
|
ListCreativesRequest,
|
|
293
|
-
Pagination,
|
|
294
403
|
Sort,
|
|
295
404
|
)
|
|
296
405
|
from adcp.types.generated_poc.media_buy.list_creatives_response import (
|
|
@@ -304,6 +413,11 @@ from adcp.types.generated_poc.media_buy.list_creatives_response import (
|
|
|
304
413
|
StatusSummary,
|
|
305
414
|
)
|
|
306
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
|
+
)
|
|
307
421
|
from adcp.types.generated_poc.media_buy.provide_performance_feedback_request import (
|
|
308
422
|
ProvidePerformanceFeedbackRequest,
|
|
309
423
|
ProvidePerformanceFeedbackRequest1,
|
|
@@ -339,10 +453,6 @@ from adcp.types.generated_poc.media_buy.update_media_buy_async_response_working
|
|
|
339
453
|
UpdateMediaBuyWorking,
|
|
340
454
|
)
|
|
341
455
|
from adcp.types.generated_poc.media_buy.update_media_buy_request import (
|
|
342
|
-
Packages,
|
|
343
|
-
Packages1,
|
|
344
|
-
Packages2,
|
|
345
|
-
Packages3,
|
|
346
456
|
UpdateMediaBuyRequest,
|
|
347
457
|
UpdateMediaBuyRequest1,
|
|
348
458
|
UpdateMediaBuyRequest2,
|
|
@@ -352,13 +462,9 @@ from adcp.types.generated_poc.media_buy.update_media_buy_response import (
|
|
|
352
462
|
UpdateMediaBuyResponse1,
|
|
353
463
|
UpdateMediaBuyResponse2,
|
|
354
464
|
)
|
|
355
|
-
from adcp.types.generated_poc.pricing_options.cpc_option import CpcPricingOption
|
|
465
|
+
from adcp.types.generated_poc.pricing_options.cpc_option import CpcPricingOption, PriceGuidance
|
|
356
466
|
from adcp.types.generated_poc.pricing_options.cpcv_option import CpcvPricingOption
|
|
357
|
-
from adcp.types.generated_poc.pricing_options.
|
|
358
|
-
CpmAuctionPricingOption,
|
|
359
|
-
PriceGuidance,
|
|
360
|
-
)
|
|
361
|
-
from adcp.types.generated_poc.pricing_options.cpm_fixed_option import CpmFixedRatePricingOption
|
|
467
|
+
from adcp.types.generated_poc.pricing_options.cpm_option import CpmPricingOption
|
|
362
468
|
from adcp.types.generated_poc.pricing_options.cpp_option import CppPricingOption, Parameters
|
|
363
469
|
from adcp.types.generated_poc.pricing_options.cpv_option import (
|
|
364
470
|
CpvPricingOption,
|
|
@@ -366,8 +472,7 @@ from adcp.types.generated_poc.pricing_options.cpv_option import (
|
|
|
366
472
|
ViewThreshold1,
|
|
367
473
|
)
|
|
368
474
|
from adcp.types.generated_poc.pricing_options.flat_rate_option import FlatRatePricingOption
|
|
369
|
-
from adcp.types.generated_poc.pricing_options.
|
|
370
|
-
from adcp.types.generated_poc.pricing_options.vcpm_fixed_option import VcpmFixedRatePricingOption
|
|
475
|
+
from adcp.types.generated_poc.pricing_options.vcpm_option import VcpmPricingOption
|
|
371
476
|
from adcp.types.generated_poc.property.base_property_source import (
|
|
372
477
|
BasePropertySource,
|
|
373
478
|
BasePropertySource1,
|
|
@@ -385,12 +490,6 @@ from adcp.types.generated_poc.property.delete_property_list_response import (
|
|
|
385
490
|
from adcp.types.generated_poc.property.feature_requirement import FeatureRequirement, IfNotCovered
|
|
386
491
|
from adcp.types.generated_poc.property.get_property_list_request import GetPropertyListRequest
|
|
387
492
|
from adcp.types.generated_poc.property.get_property_list_response import GetPropertyListResponse
|
|
388
|
-
from adcp.types.generated_poc.property.list_property_features_request import (
|
|
389
|
-
ListPropertyFeaturesRequest,
|
|
390
|
-
)
|
|
391
|
-
from adcp.types.generated_poc.property.list_property_features_response import (
|
|
392
|
-
ListPropertyFeaturesResponse,
|
|
393
|
-
)
|
|
394
493
|
from adcp.types.generated_poc.property.list_property_lists_request import ListPropertyListsRequest
|
|
395
494
|
from adcp.types.generated_poc.property.list_property_lists_response import ListPropertyListsResponse
|
|
396
495
|
from adcp.types.generated_poc.property.property_error import Code, PropertyError
|
|
@@ -412,9 +511,32 @@ from adcp.types.generated_poc.property.update_property_list_request import Updat
|
|
|
412
511
|
from adcp.types.generated_poc.property.update_property_list_response import (
|
|
413
512
|
UpdatePropertyListResponse,
|
|
414
513
|
)
|
|
415
|
-
from adcp.types.generated_poc.
|
|
416
|
-
|
|
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,
|
|
417
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
|
+
)
|
|
538
|
+
from adcp.types.generated_poc.protocols.adcp_extension import (
|
|
539
|
+
AdcpAgentCardExtensionParamsDeprecated,
|
|
418
540
|
ProtocolsSupportedEnum,
|
|
419
541
|
)
|
|
420
542
|
from adcp.types.generated_poc.signals.activate_signal_request import ActivateSignalRequest
|
|
@@ -429,15 +551,69 @@ from adcp.types.generated_poc.signals.get_signals_response import (
|
|
|
429
551
|
Pricing,
|
|
430
552
|
Signal,
|
|
431
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
|
|
432
608
|
|
|
433
609
|
# Special imports for name collisions (qualified names for types defined in multiple modules)
|
|
434
610
|
from adcp.types.generated_poc.core.package import Package as _PackageFromPackage
|
|
435
611
|
|
|
436
|
-
# Backward compatibility aliases for renamed types
|
|
437
|
-
Channels = AdvertisingChannels
|
|
438
|
-
|
|
439
612
|
# Explicit exports
|
|
440
613
|
__all__ = [
|
|
614
|
+
"AcpHandoff",
|
|
615
|
+
"Action",
|
|
616
|
+
"ActionResponse",
|
|
441
617
|
"ActivateSignalRequest",
|
|
442
618
|
"ActivateSignalResponse",
|
|
443
619
|
"ActivateSignalResponse1",
|
|
@@ -445,19 +621,30 @@ __all__ = [
|
|
|
445
621
|
"ActivationKey",
|
|
446
622
|
"ActivationKey1",
|
|
447
623
|
"ActivationKey2",
|
|
448
|
-
"
|
|
624
|
+
"Adcp",
|
|
625
|
+
"AdcpAgentCardExtensionParamsDeprecated",
|
|
449
626
|
"AdcpAsyncResponseData",
|
|
450
627
|
"AdcpDomain",
|
|
451
628
|
"AdcpExtensionFileSchema",
|
|
452
|
-
"
|
|
629
|
+
"AgenticCheckout",
|
|
453
630
|
"AggregatedTotals",
|
|
631
|
+
"Artifact",
|
|
632
|
+
"ArtifactWebhook",
|
|
633
|
+
"ArtifactWebhookPayload",
|
|
454
634
|
"Asset",
|
|
455
635
|
"Asset2",
|
|
636
|
+
"AssetAccess",
|
|
637
|
+
"AssetAccess1",
|
|
638
|
+
"AssetAccess2",
|
|
639
|
+
"AssetAccess3",
|
|
456
640
|
"AssetContentType",
|
|
457
641
|
"AssetSelectors",
|
|
458
642
|
"AssetType",
|
|
459
643
|
"Assets",
|
|
460
644
|
"Assets1",
|
|
645
|
+
"Assets2",
|
|
646
|
+
"Assets3",
|
|
647
|
+
"Assets5",
|
|
461
648
|
"AssetsRequired",
|
|
462
649
|
"AssetsRequired1",
|
|
463
650
|
"AssignedPackage",
|
|
@@ -473,10 +660,13 @@ __all__ = [
|
|
|
473
660
|
"AuthorizedSalesAgents1",
|
|
474
661
|
"AuthorizedSalesAgents2",
|
|
475
662
|
"AvailableMetric",
|
|
663
|
+
"Avatar",
|
|
476
664
|
"BasePropertySource",
|
|
477
665
|
"BasePropertySource1",
|
|
478
666
|
"BasePropertySource2",
|
|
479
667
|
"BasePropertySource3",
|
|
668
|
+
"BatchFrequency",
|
|
669
|
+
"BrandContext",
|
|
480
670
|
"BrandManifest",
|
|
481
671
|
"BrandManifestReference",
|
|
482
672
|
"BudgetRange",
|
|
@@ -486,22 +676,34 @@ __all__ = [
|
|
|
486
676
|
"BuildCreativeResponse1",
|
|
487
677
|
"BuildCreativeResponse2",
|
|
488
678
|
"ByPackageItem",
|
|
679
|
+
"CalibrateContentRequest",
|
|
680
|
+
"CalibrateContentResponse",
|
|
681
|
+
"CalibrateContentResponse1",
|
|
682
|
+
"CalibrateContentResponse2",
|
|
683
|
+
"CalibrationExemplars",
|
|
489
684
|
"ChangeSummary",
|
|
490
|
-
"Channels",
|
|
491
685
|
"CoBrandingRequirement",
|
|
492
686
|
"Code",
|
|
493
687
|
"Colors",
|
|
688
|
+
"Commerce",
|
|
689
|
+
"Components",
|
|
690
|
+
"ConsentScopeEnum",
|
|
494
691
|
"Contact",
|
|
692
|
+
"ContentStandards",
|
|
693
|
+
"ContextForCheckout",
|
|
495
694
|
"ContextObject",
|
|
496
695
|
"CountriesAllItem",
|
|
497
696
|
"Country",
|
|
498
697
|
"Coverage",
|
|
499
698
|
"CpcPricingOption",
|
|
500
699
|
"CpcvPricingOption",
|
|
501
|
-
"
|
|
502
|
-
"CpmFixedRatePricingOption",
|
|
700
|
+
"CpmPricingOption",
|
|
503
701
|
"CppPricingOption",
|
|
504
702
|
"CpvPricingOption",
|
|
703
|
+
"CreateContentStandardsRequest",
|
|
704
|
+
"CreateContentStandardsResponse",
|
|
705
|
+
"CreateContentStandardsResponse1",
|
|
706
|
+
"CreateContentStandardsResponse2",
|
|
505
707
|
"CreateMediaBuyInputRequired",
|
|
506
708
|
"CreateMediaBuyRequest",
|
|
507
709
|
"CreateMediaBuyResponse",
|
|
@@ -521,6 +723,7 @@ __all__ = [
|
|
|
521
723
|
"CreativeManifest",
|
|
522
724
|
"CreativePolicy",
|
|
523
725
|
"CreativeSortField",
|
|
726
|
+
"CreativeSpecs",
|
|
524
727
|
"CreativeStatus",
|
|
525
728
|
"CssAsset",
|
|
526
729
|
"DaastAsset",
|
|
@@ -534,6 +737,7 @@ __all__ = [
|
|
|
534
737
|
"DeliverTo",
|
|
535
738
|
"DeliveryMeasurement",
|
|
536
739
|
"DeliveryMetrics",
|
|
740
|
+
"DeliveryMode",
|
|
537
741
|
"DeliveryStatus",
|
|
538
742
|
"DeliveryType",
|
|
539
743
|
"Deployment",
|
|
@@ -548,14 +752,19 @@ __all__ = [
|
|
|
548
752
|
"Disclaimer",
|
|
549
753
|
"DoohMetrics",
|
|
550
754
|
"Embedding",
|
|
755
|
+
"Endpoint",
|
|
551
756
|
"Error",
|
|
757
|
+
"Execution",
|
|
552
758
|
"ExtensionObject",
|
|
553
759
|
"ExtensionsSupportedItem",
|
|
760
|
+
"Fail",
|
|
761
|
+
"Feature",
|
|
554
762
|
"FeatureRequirement",
|
|
555
763
|
"FeedFormat",
|
|
556
764
|
"FeedbackSource",
|
|
557
765
|
"FieldModel",
|
|
558
766
|
"FlatRatePricingOption",
|
|
767
|
+
"FollowUp",
|
|
559
768
|
"Fonts",
|
|
560
769
|
"Format",
|
|
561
770
|
"FormatCard",
|
|
@@ -565,7 +774,23 @@ __all__ = [
|
|
|
565
774
|
"FormatIdParameter",
|
|
566
775
|
"FrequencyCap",
|
|
567
776
|
"FrequencyCapScope",
|
|
568
|
-
"
|
|
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",
|
|
569
794
|
"GetMediaBuyDeliveryRequest",
|
|
570
795
|
"GetMediaBuyDeliveryResponse",
|
|
571
796
|
"GetProductsInputRequired",
|
|
@@ -577,53 +802,72 @@ __all__ = [
|
|
|
577
802
|
"GetPropertyListResponse",
|
|
578
803
|
"GetSignalsRequest",
|
|
579
804
|
"GetSignalsResponse",
|
|
805
|
+
"Governance",
|
|
806
|
+
"Handoff",
|
|
580
807
|
"HistoryEntryType",
|
|
581
808
|
"HtmlAsset",
|
|
582
809
|
"HttpMethod",
|
|
583
810
|
"Identifier",
|
|
811
|
+
"Identifiers",
|
|
584
812
|
"IfNotCovered",
|
|
585
813
|
"ImageAsset",
|
|
586
814
|
"Input",
|
|
587
815
|
"Input2",
|
|
588
816
|
"Input4",
|
|
817
|
+
"Intent",
|
|
589
818
|
"JavascriptAsset",
|
|
590
819
|
"JavascriptModuleType",
|
|
591
820
|
"LandingPageRequirement",
|
|
592
821
|
"ListAuthorizedPropertiesRequest",
|
|
593
822
|
"ListAuthorizedPropertiesResponse",
|
|
823
|
+
"ListContentStandardsRequest",
|
|
824
|
+
"ListContentStandardsResponse",
|
|
825
|
+
"ListContentStandardsResponse1",
|
|
826
|
+
"ListContentStandardsResponse2",
|
|
594
827
|
"ListCreativeFormatsRequest",
|
|
595
828
|
"ListCreativeFormatsRequestCreativeAgent",
|
|
596
829
|
"ListCreativeFormatsResponse",
|
|
597
830
|
"ListCreativeFormatsResponseCreativeAgent",
|
|
598
831
|
"ListCreativesRequest",
|
|
599
832
|
"ListCreativesResponse",
|
|
600
|
-
"ListPropertyFeaturesRequest",
|
|
601
|
-
"ListPropertyFeaturesResponse",
|
|
602
833
|
"ListPropertyListsRequest",
|
|
603
834
|
"ListPropertyListsResponse",
|
|
835
|
+
"LocalVerdict",
|
|
604
836
|
"Logo",
|
|
837
|
+
"MajorVersion",
|
|
605
838
|
"MarkdownFlavor",
|
|
839
|
+
"MatchingProduct",
|
|
606
840
|
"McpWebhookPayload",
|
|
607
841
|
"Measurement",
|
|
608
842
|
"MeasurementPeriod",
|
|
609
843
|
"MediaBuy",
|
|
610
844
|
"MediaBuyDelivery",
|
|
845
|
+
"MediaBuyFeatures",
|
|
611
846
|
"MediaBuyStatus",
|
|
847
|
+
"MediaChannel",
|
|
612
848
|
"Metadata",
|
|
849
|
+
"Method",
|
|
613
850
|
"MetricType",
|
|
851
|
+
"Metro",
|
|
852
|
+
"MetroAreaSystem",
|
|
853
|
+
"Modalities",
|
|
854
|
+
"MraidVersion",
|
|
614
855
|
"NotificationType",
|
|
615
856
|
"Offering",
|
|
616
857
|
"Pacing",
|
|
617
858
|
"PackageRequest",
|
|
618
|
-
"
|
|
619
|
-
"
|
|
620
|
-
"
|
|
621
|
-
"Packages3",
|
|
859
|
+
"PackageUpdate",
|
|
860
|
+
"PackageUpdate1",
|
|
861
|
+
"PackageUpdate2",
|
|
622
862
|
"Pagination",
|
|
623
863
|
"Parameters",
|
|
864
|
+
"Pass",
|
|
624
865
|
"Performance",
|
|
625
866
|
"PerformanceFeedback",
|
|
626
867
|
"Placement",
|
|
868
|
+
"Portfolio",
|
|
869
|
+
"PostalCodeSystem",
|
|
870
|
+
"Preferred",
|
|
627
871
|
"Preview",
|
|
628
872
|
"Preview1",
|
|
629
873
|
"Preview2",
|
|
@@ -638,12 +882,15 @@ __all__ = [
|
|
|
638
882
|
"PreviewRender1",
|
|
639
883
|
"PreviewRender2",
|
|
640
884
|
"PreviewRender3",
|
|
885
|
+
"Price",
|
|
641
886
|
"PriceGuidance",
|
|
642
887
|
"Pricing",
|
|
643
888
|
"PricingModel",
|
|
644
889
|
"PricingOption",
|
|
645
890
|
"PrimaryCountry",
|
|
891
|
+
"PrivacyPolicyAcknowledged",
|
|
646
892
|
"Product",
|
|
893
|
+
"ProductAllocation",
|
|
647
894
|
"ProductCard",
|
|
648
895
|
"ProductCardDetailed",
|
|
649
896
|
"ProductCatalog",
|
|
@@ -662,6 +909,8 @@ __all__ = [
|
|
|
662
909
|
"PropertyListReference",
|
|
663
910
|
"PropertyTag",
|
|
664
911
|
"PropertyType",
|
|
912
|
+
"Proposal",
|
|
913
|
+
"Protocol",
|
|
665
914
|
"ProtocolEnvelope",
|
|
666
915
|
"ProtocolResponse",
|
|
667
916
|
"ProtocolsSupportedEnum",
|
|
@@ -671,6 +920,7 @@ __all__ = [
|
|
|
671
920
|
"ProvidePerformanceFeedbackResponse",
|
|
672
921
|
"ProvidePerformanceFeedbackResponse1",
|
|
673
922
|
"ProvidePerformanceFeedbackResponse2",
|
|
923
|
+
"Provider",
|
|
674
924
|
"PublisherDomain",
|
|
675
925
|
"PublisherIdentifierTypes",
|
|
676
926
|
"PublisherPropertySelector",
|
|
@@ -682,6 +932,8 @@ __all__ = [
|
|
|
682
932
|
"QuerySummary",
|
|
683
933
|
"Range",
|
|
684
934
|
"Reason",
|
|
935
|
+
"Record",
|
|
936
|
+
"Region",
|
|
685
937
|
"Renders",
|
|
686
938
|
"Renders1",
|
|
687
939
|
"ReportingCapabilities",
|
|
@@ -689,26 +941,50 @@ __all__ = [
|
|
|
689
941
|
"ReportingPeriod",
|
|
690
942
|
"ReportingWebhook",
|
|
691
943
|
"Request",
|
|
692
|
-
"
|
|
944
|
+
"RequiredGeoTargetingItem",
|
|
693
945
|
"Response",
|
|
694
946
|
"Response1",
|
|
695
947
|
"Responsive",
|
|
948
|
+
"Result",
|
|
696
949
|
"Results",
|
|
697
950
|
"Results1",
|
|
951
|
+
"Role",
|
|
952
|
+
"Sampling",
|
|
953
|
+
"SamplingInfo",
|
|
954
|
+
"Scope",
|
|
698
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",
|
|
699
971
|
"Signal",
|
|
700
972
|
"SignalCatalogType",
|
|
701
973
|
"SignalFilters",
|
|
974
|
+
"Signals",
|
|
702
975
|
"Sort",
|
|
703
976
|
"SortApplied",
|
|
704
977
|
"SortDirection",
|
|
705
|
-
"
|
|
978
|
+
"SponsoredIntelligence",
|
|
979
|
+
"StandardEnum",
|
|
706
980
|
"StartTiming",
|
|
707
981
|
"Status",
|
|
708
982
|
"StatusSummary",
|
|
709
983
|
"SubAsset",
|
|
710
984
|
"SubAsset1",
|
|
711
985
|
"SubAsset2",
|
|
986
|
+
"Summary",
|
|
987
|
+
"SupportedProtocol",
|
|
712
988
|
"SyncCreativesInputRequired",
|
|
713
989
|
"SyncCreativesRequest",
|
|
714
990
|
"SyncCreativesResponse",
|
|
@@ -717,12 +993,23 @@ __all__ = [
|
|
|
717
993
|
"SyncCreativesSubmitted",
|
|
718
994
|
"SyncCreativesWorking",
|
|
719
995
|
"Tags",
|
|
996
|
+
"Targeting",
|
|
720
997
|
"TargetingOverlay",
|
|
721
998
|
"TaskStatus",
|
|
722
999
|
"TaskType",
|
|
1000
|
+
"TerminationContext",
|
|
723
1001
|
"TextAsset",
|
|
1002
|
+
"TimeRange",
|
|
1003
|
+
"TotalBudget",
|
|
1004
|
+
"TotalBudgetGuidance",
|
|
724
1005
|
"Totals",
|
|
1006
|
+
"TransactionIntent",
|
|
1007
|
+
"TranscriptSource",
|
|
1008
|
+
"TranscriptSource1",
|
|
1009
|
+
"Transport",
|
|
725
1010
|
"Type",
|
|
1011
|
+
"UpdateContentStandardsRequest",
|
|
1012
|
+
"UpdateContentStandardsResponse",
|
|
726
1013
|
"UpdateFrequency",
|
|
727
1014
|
"UpdateMediaBuyInputRequired",
|
|
728
1015
|
"UpdateMediaBuyRequest",
|
|
@@ -737,18 +1024,25 @@ __all__ = [
|
|
|
737
1024
|
"UpdatePropertyListResponse",
|
|
738
1025
|
"UrlAsset",
|
|
739
1026
|
"UrlAssetType",
|
|
1027
|
+
"User",
|
|
1028
|
+
"ValidateContentDeliveryRequest",
|
|
1029
|
+
"ValidateContentDeliveryResponse",
|
|
1030
|
+
"ValidateContentDeliveryResponse1",
|
|
1031
|
+
"ValidateContentDeliveryResponse2",
|
|
740
1032
|
"ValidationMode",
|
|
741
1033
|
"VastAsset",
|
|
742
1034
|
"VastAsset1",
|
|
743
1035
|
"VastAsset2",
|
|
744
1036
|
"VastTrackingEvent",
|
|
745
1037
|
"VastVersion",
|
|
746
|
-
"
|
|
747
|
-
"VcpmFixedRatePricingOption",
|
|
1038
|
+
"VcpmPricingOption",
|
|
748
1039
|
"VenueBreakdownItem",
|
|
1040
|
+
"Verdict",
|
|
1041
|
+
"Video",
|
|
749
1042
|
"VideoAsset",
|
|
750
1043
|
"ViewThreshold",
|
|
751
1044
|
"ViewThreshold1",
|
|
1045
|
+
"Voice",
|
|
752
1046
|
"WebhookAsset",
|
|
753
1047
|
"WebhookResponseType",
|
|
754
1048
|
"WebhookSecurityMethod",
|