adcp 2.10.0__py3-none-any.whl → 2.11.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/__init__.py +57 -53
- adcp/client.py +9 -11
- adcp/simple.py +1 -1
- adcp/types/__init__.py +330 -300
- adcp/types/_generated.py +99 -65
- adcp/types/generated_poc/adcp_domain.py +12 -0
- adcp/types/generated_poc/auth_scheme.py +12 -0
- adcp/types/generated_poc/available_metric.py +19 -0
- adcp/types/generated_poc/co_branding_requirement.py +13 -0
- adcp/types/generated_poc/creative_action.py +15 -0
- adcp/types/generated_poc/creative_agent_capability.py +14 -0
- adcp/types/generated_poc/creative_filters.py +77 -0
- adcp/types/generated_poc/creative_policy.py +9 -15
- adcp/types/generated_poc/creative_sort_field.py +16 -0
- adcp/types/generated_poc/daast_asset.py +9 -24
- adcp/types/generated_poc/daast_tracking_event.py +21 -0
- adcp/types/generated_poc/daast_version.py +12 -0
- adcp/types/generated_poc/dimension_unit.py +14 -0
- adcp/types/generated_poc/feed_format.py +13 -0
- adcp/types/generated_poc/feedback_source.py +14 -0
- adcp/types/generated_poc/format.py +5 -11
- adcp/types/generated_poc/get_media_buy_delivery_request.py +3 -19
- adcp/types/generated_poc/get_products_request.py +3 -36
- adcp/types/generated_poc/get_signals_request.py +3 -26
- adcp/types/generated_poc/get_signals_response.py +5 -10
- adcp/types/generated_poc/history_entry_type.py +12 -0
- adcp/types/generated_poc/http_method.py +12 -0
- adcp/types/generated_poc/javascript_asset.py +6 -8
- adcp/types/generated_poc/javascript_module_type.py +13 -0
- adcp/types/generated_poc/landing_page_requirement.py +13 -0
- adcp/types/generated_poc/list_creative_formats_response.py +4 -11
- adcp/types/generated_poc/list_creatives_request.py +10 -87
- adcp/types/generated_poc/list_creatives_response.py +13 -17
- adcp/types/generated_poc/markdown_asset.py +4 -8
- adcp/types/generated_poc/markdown_flavor.py +12 -0
- adcp/types/generated_poc/metric_type.py +18 -0
- adcp/types/generated_poc/notification_type.py +14 -0
- adcp/types/generated_poc/performance_feedback.py +9 -20
- adcp/types/generated_poc/preview_creative_request.py +8 -13
- adcp/types/generated_poc/preview_output_format.py +12 -0
- adcp/types/generated_poc/product_filters.py +36 -0
- adcp/types/generated_poc/property.py +5 -13
- adcp/types/generated_poc/property_type.py +17 -0
- adcp/types/generated_poc/provide_performance_feedback_request.py +71 -25
- adcp/types/generated_poc/push_notification_config.py +3 -7
- adcp/types/generated_poc/reporting_capabilities.py +4 -21
- adcp/types/generated_poc/reporting_frequency.py +13 -0
- adcp/types/generated_poc/signal_catalog_type.py +13 -0
- adcp/types/generated_poc/signal_filters.py +29 -0
- adcp/types/generated_poc/sort_direction.py +12 -0
- adcp/types/generated_poc/sync_creatives_request.py +4 -9
- adcp/types/generated_poc/sync_creatives_response.py +5 -12
- adcp/types/generated_poc/tasks_list_request.py +9 -15
- adcp/types/generated_poc/update_frequency.py +14 -0
- adcp/types/generated_poc/url_asset.py +3 -8
- adcp/types/generated_poc/url_asset_type.py +13 -0
- adcp/types/generated_poc/validation_mode.py +12 -0
- adcp/types/generated_poc/vast_asset.py +13 -36
- adcp/types/generated_poc/vast_tracking_event.py +26 -0
- adcp/types/generated_poc/vast_version.py +15 -0
- adcp/types/generated_poc/webhook_asset.py +10 -22
- adcp/types/generated_poc/webhook_payload.py +3 -9
- adcp/types/generated_poc/webhook_response_type.py +14 -0
- adcp/types/generated_poc/webhook_security_method.py +13 -0
- adcp/utils/preview_cache.py +5 -5
- {adcp-2.10.0.dist-info → adcp-2.11.0.dist-info}/METADATA +1 -1
- {adcp-2.10.0.dist-info → adcp-2.11.0.dist-info}/RECORD +71 -38
- adcp/types/stable.py +0 -449
- {adcp-2.10.0.dist-info → adcp-2.11.0.dist-info}/WHEEL +0 -0
- {adcp-2.10.0.dist-info → adcp-2.11.0.dist-info}/entry_points.txt +0 -0
- {adcp-2.10.0.dist-info → adcp-2.11.0.dist-info}/licenses/LICENSE +0 -0
- {adcp-2.10.0.dist-info → adcp-2.11.0.dist-info}/top_level.txt +0 -0
adcp/types/__init__.py
CHANGED
|
@@ -1,130 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
"""Type definitions for AdCP client.
|
|
1
|
+
"""AdCP Type System.
|
|
4
2
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
schema evolution.
|
|
3
|
+
All AdCP types exported from a single location.
|
|
4
|
+
Users should import from here or directly from adcp.
|
|
8
5
|
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
Examples:
|
|
7
|
+
from adcp.types import Product, CreativeFilters
|
|
8
|
+
from adcp import Product, CreativeFilters
|
|
11
9
|
"""
|
|
12
10
|
|
|
13
|
-
|
|
14
|
-
from adcp.types.aliases import (
|
|
15
|
-
# Activation responses
|
|
16
|
-
ActivateSignalErrorResponse,
|
|
17
|
-
ActivateSignalSuccessResponse,
|
|
18
|
-
# Agent deployment aliases
|
|
19
|
-
AgentDeployment,
|
|
20
|
-
AgentDestination,
|
|
21
|
-
# Authorized agent variants
|
|
22
|
-
AuthorizedAgent,
|
|
23
|
-
AuthorizedAgentsByInlineProperties,
|
|
24
|
-
AuthorizedAgentsByPropertyId,
|
|
25
|
-
AuthorizedAgentsByPropertyTag,
|
|
26
|
-
AuthorizedAgentsByPublisherProperties,
|
|
27
|
-
# Preview/render aliases
|
|
28
|
-
BothPreviewRender,
|
|
29
|
-
# Build creative responses
|
|
30
|
-
BuildCreativeErrorResponse,
|
|
31
|
-
BuildCreativeSuccessResponse,
|
|
32
|
-
# Create media buy responses
|
|
33
|
-
CreateMediaBuyErrorResponse,
|
|
34
|
-
CreateMediaBuySuccessResponse,
|
|
35
|
-
# Deployment union
|
|
36
|
-
Deployment,
|
|
37
|
-
# Destination union
|
|
38
|
-
Destination,
|
|
39
|
-
# Preview renders
|
|
40
|
-
HtmlPreviewRender,
|
|
41
|
-
# Asset aliases
|
|
42
|
-
InlineDaastAsset,
|
|
43
|
-
InlineVastAsset,
|
|
44
|
-
# SubAsset aliases
|
|
45
|
-
MediaSubAsset,
|
|
46
|
-
# Platform deployment
|
|
47
|
-
PlatformDeployment,
|
|
48
|
-
PlatformDestination,
|
|
49
|
-
# Preview requests
|
|
50
|
-
PreviewCreativeFormatRequest,
|
|
51
|
-
PreviewCreativeInteractiveResponse,
|
|
52
|
-
PreviewCreativeManifestRequest,
|
|
53
|
-
PreviewCreativeStaticResponse,
|
|
54
|
-
# Property types
|
|
55
|
-
PropertyId,
|
|
56
|
-
PropertyIdActivationKey,
|
|
57
|
-
PropertyTag,
|
|
58
|
-
PropertyTagActivationKey,
|
|
59
|
-
# Performance feedback
|
|
60
|
-
ProvidePerformanceFeedbackErrorResponse,
|
|
61
|
-
ProvidePerformanceFeedbackSuccessResponse,
|
|
62
|
-
# Publisher properties variants
|
|
63
|
-
PublisherProperties,
|
|
64
|
-
PublisherPropertiesAll,
|
|
65
|
-
PublisherPropertiesById,
|
|
66
|
-
PublisherPropertiesByTag,
|
|
67
|
-
# Sync creatives
|
|
68
|
-
SyncCreativesErrorResponse,
|
|
69
|
-
SyncCreativesSuccessResponse,
|
|
70
|
-
# Text assets
|
|
71
|
-
TextSubAsset,
|
|
72
|
-
# Update media buy
|
|
73
|
-
UpdateMediaBuyErrorResponse,
|
|
74
|
-
UpdateMediaBuyPackagesRequest,
|
|
75
|
-
UpdateMediaBuyPropertiesRequest,
|
|
76
|
-
UpdateMediaBuySuccessResponse,
|
|
77
|
-
# URL assets
|
|
78
|
-
UrlDaastAsset,
|
|
79
|
-
UrlPreviewRender,
|
|
80
|
-
UrlVastAsset,
|
|
81
|
-
)
|
|
82
|
-
|
|
83
|
-
# Import base types
|
|
84
|
-
from adcp.types.base import AdCPBaseModel
|
|
11
|
+
from __future__ import annotations
|
|
85
12
|
|
|
86
|
-
#
|
|
87
|
-
from adcp.types
|
|
88
|
-
|
|
89
|
-
ActivityType,
|
|
90
|
-
AgentConfig,
|
|
91
|
-
DebugInfo,
|
|
92
|
-
Protocol,
|
|
93
|
-
TaskResult,
|
|
94
|
-
WebhookMetadata,
|
|
95
|
-
)
|
|
96
|
-
from adcp.types.core import (
|
|
97
|
-
TaskStatus as CoreTaskStatus,
|
|
98
|
-
)
|
|
13
|
+
# Also make submodules available for advanced use
|
|
14
|
+
from adcp.types import _generated as generated # noqa: F401
|
|
15
|
+
from adcp.types import aliases # noqa: F401
|
|
99
16
|
|
|
100
|
-
# Import all
|
|
101
|
-
from adcp.types.
|
|
102
|
-
|
|
17
|
+
# Import all types from generated code
|
|
18
|
+
from adcp.types._generated import (
|
|
19
|
+
# Core request/response types
|
|
103
20
|
ActivateSignalRequest,
|
|
104
21
|
ActivateSignalResponse,
|
|
105
22
|
AggregatedTotals,
|
|
23
|
+
# Assets
|
|
106
24
|
Asset,
|
|
25
|
+
AssetContentType,
|
|
107
26
|
AssetSelectors,
|
|
108
27
|
AssetsRequired,
|
|
109
|
-
AssetType,
|
|
110
28
|
AssignedPackage,
|
|
111
29
|
Assignments,
|
|
112
30
|
AudioAsset,
|
|
113
31
|
Authentication,
|
|
32
|
+
AuthenticationScheme,
|
|
114
33
|
AuthorizedAgents,
|
|
115
34
|
AuthorizedSalesAgents,
|
|
116
35
|
AvailableMetric,
|
|
117
|
-
AvailableReportingFrequency,
|
|
118
36
|
BrandManifest,
|
|
119
37
|
BuildCreativeRequest,
|
|
120
38
|
BuildCreativeResponse,
|
|
121
39
|
ByPackageItem,
|
|
122
|
-
|
|
123
|
-
CatalogType,
|
|
124
|
-
CoBranding,
|
|
40
|
+
CoBrandingRequirement,
|
|
125
41
|
Colors,
|
|
126
42
|
Contact,
|
|
127
43
|
Country,
|
|
44
|
+
# Pricing options
|
|
128
45
|
CpcPricingOption,
|
|
129
46
|
CpcvPricingOption,
|
|
130
47
|
CpmAuctionPricingOption,
|
|
@@ -134,13 +51,18 @@ from adcp.types.stable import (
|
|
|
134
51
|
CreateMediaBuyRequest,
|
|
135
52
|
CreateMediaBuyResponse,
|
|
136
53
|
Creative,
|
|
54
|
+
CreativeAction,
|
|
137
55
|
CreativeAgent,
|
|
56
|
+
CreativeAgentCapability,
|
|
138
57
|
CreativeAsset,
|
|
139
58
|
CreativeAssignment,
|
|
59
|
+
CreativeFilters,
|
|
140
60
|
CreativeManifest,
|
|
141
61
|
CreativePolicy,
|
|
62
|
+
# Enums and constants
|
|
142
63
|
CreativeStatus,
|
|
143
64
|
CssAsset,
|
|
65
|
+
DaastTrackingEvent,
|
|
144
66
|
DaastVersion,
|
|
145
67
|
DailyBreakdownItem,
|
|
146
68
|
DeliverTo,
|
|
@@ -148,7 +70,7 @@ from adcp.types.stable import (
|
|
|
148
70
|
DeliveryMetrics,
|
|
149
71
|
DeliveryType,
|
|
150
72
|
Details,
|
|
151
|
-
|
|
73
|
+
DimensionUnit,
|
|
152
74
|
Disclaimer,
|
|
153
75
|
Domain,
|
|
154
76
|
DomainBreakdown,
|
|
@@ -156,7 +78,6 @@ from adcp.types.stable import (
|
|
|
156
78
|
Embedding,
|
|
157
79
|
Error,
|
|
158
80
|
FeedbackSource,
|
|
159
|
-
FeedFormat,
|
|
160
81
|
FieldModel,
|
|
161
82
|
Filters,
|
|
162
83
|
FlatRatePricingOption,
|
|
@@ -164,8 +85,8 @@ from adcp.types.stable import (
|
|
|
164
85
|
Format,
|
|
165
86
|
FormatCard,
|
|
166
87
|
FormatCardDetailed,
|
|
88
|
+
FormatCategory,
|
|
167
89
|
FormatId,
|
|
168
|
-
FormatType,
|
|
169
90
|
FrequencyCap,
|
|
170
91
|
FrequencyCapScope,
|
|
171
92
|
GeoCountryAnyOfItem,
|
|
@@ -177,11 +98,13 @@ from adcp.types.stable import (
|
|
|
177
98
|
GetSignalsResponse,
|
|
178
99
|
HistoryItem,
|
|
179
100
|
HtmlAsset,
|
|
101
|
+
HttpMethod,
|
|
180
102
|
Identifier,
|
|
181
103
|
ImageAsset,
|
|
182
104
|
Input,
|
|
183
105
|
JavascriptAsset,
|
|
184
|
-
|
|
106
|
+
JavascriptModuleType,
|
|
107
|
+
LandingPageRequirement,
|
|
185
108
|
ListAuthorizedPropertiesRequest,
|
|
186
109
|
ListAuthorizedPropertiesResponse,
|
|
187
110
|
ListCreativeFormatsRequest,
|
|
@@ -197,14 +120,10 @@ from adcp.types.stable import (
|
|
|
197
120
|
MediaBuyDelivery,
|
|
198
121
|
MediaBuyStatus,
|
|
199
122
|
Metadata,
|
|
200
|
-
Method,
|
|
201
123
|
MetricType,
|
|
202
|
-
ModuleType,
|
|
203
124
|
NotificationType,
|
|
204
125
|
Offering,
|
|
205
|
-
OutputFormat,
|
|
206
126
|
Pacing,
|
|
207
|
-
Package,
|
|
208
127
|
PackageRequest,
|
|
209
128
|
Packages,
|
|
210
129
|
PackageStatus,
|
|
@@ -216,6 +135,7 @@ from adcp.types.stable import (
|
|
|
216
135
|
Preview,
|
|
217
136
|
PreviewCreativeRequest,
|
|
218
137
|
PreviewCreativeResponse,
|
|
138
|
+
PreviewOutputFormat,
|
|
219
139
|
PreviewRender,
|
|
220
140
|
PriceGuidance,
|
|
221
141
|
Pricing,
|
|
@@ -225,6 +145,7 @@ from adcp.types.stable import (
|
|
|
225
145
|
ProductCard,
|
|
226
146
|
ProductCardDetailed,
|
|
227
147
|
ProductCatalog,
|
|
148
|
+
ProductFilters,
|
|
228
149
|
Progress,
|
|
229
150
|
PromotedOfferings,
|
|
230
151
|
PromotedProducts,
|
|
@@ -248,19 +169,16 @@ from adcp.types.stable import (
|
|
|
248
169
|
Request,
|
|
249
170
|
RequestedMetric,
|
|
250
171
|
Response,
|
|
251
|
-
ResponseType,
|
|
252
172
|
Responsive,
|
|
253
173
|
Results,
|
|
254
|
-
Scheme,
|
|
255
174
|
Security,
|
|
256
175
|
Signal,
|
|
257
|
-
|
|
176
|
+
SignalCatalogType,
|
|
177
|
+
SignalFilters,
|
|
258
178
|
Sort,
|
|
259
179
|
SortApplied,
|
|
260
180
|
StandardFormatIds,
|
|
261
181
|
Status,
|
|
262
|
-
StatusFilter,
|
|
263
|
-
StatusFilterEnum,
|
|
264
182
|
StatusSummary,
|
|
265
183
|
SyncCreativesRequest,
|
|
266
184
|
SyncCreativesResponse,
|
|
@@ -275,15 +193,13 @@ from adcp.types.stable import (
|
|
|
275
193
|
TaskType,
|
|
276
194
|
TextAsset,
|
|
277
195
|
Totals,
|
|
278
|
-
TrackingEvent,
|
|
279
|
-
Type,
|
|
280
|
-
Unit,
|
|
281
196
|
UpdateFrequency,
|
|
282
197
|
UpdateMediaBuyRequest,
|
|
283
198
|
UpdateMediaBuyResponse,
|
|
284
199
|
UrlAsset,
|
|
285
|
-
|
|
200
|
+
UrlAssetType,
|
|
286
201
|
ValidationMode,
|
|
202
|
+
VastTrackingEvent,
|
|
287
203
|
VastVersion,
|
|
288
204
|
VcpmAuctionPricingOption,
|
|
289
205
|
VcpmFixedRatePricingOption,
|
|
@@ -292,266 +208,380 @@ from adcp.types.stable import (
|
|
|
292
208
|
ViewThreshold,
|
|
293
209
|
WebhookAsset,
|
|
294
210
|
WebhookPayload,
|
|
211
|
+
WebhookResponseType,
|
|
295
212
|
)
|
|
296
|
-
from adcp.types.
|
|
213
|
+
from adcp.types._generated import (
|
|
297
214
|
TaskStatus as GeneratedTaskStatus,
|
|
298
215
|
)
|
|
216
|
+
from adcp.types._generated import (
|
|
217
|
+
_PackageFromPackage as Package,
|
|
218
|
+
)
|
|
299
219
|
|
|
300
|
-
#
|
|
301
|
-
|
|
302
|
-
#
|
|
303
|
-
|
|
220
|
+
# Import semantic aliases for discriminated unions
|
|
221
|
+
from adcp.types.aliases import (
|
|
222
|
+
# Activation responses
|
|
223
|
+
ActivateSignalErrorResponse,
|
|
224
|
+
ActivateSignalSuccessResponse,
|
|
225
|
+
# Agent deployment aliases
|
|
226
|
+
AgentDeployment,
|
|
227
|
+
AgentDestination,
|
|
228
|
+
# Authorized agent variants
|
|
229
|
+
AuthorizedAgent,
|
|
230
|
+
AuthorizedAgentsByInlineProperties,
|
|
231
|
+
AuthorizedAgentsByPropertyId,
|
|
232
|
+
AuthorizedAgentsByPropertyTag,
|
|
233
|
+
AuthorizedAgentsByPublisherProperties,
|
|
234
|
+
# Preview/render aliases
|
|
235
|
+
BothPreviewRender,
|
|
236
|
+
# Build creative responses
|
|
237
|
+
BuildCreativeErrorResponse,
|
|
238
|
+
BuildCreativeSuccessResponse,
|
|
239
|
+
# Create media buy responses
|
|
240
|
+
CreateMediaBuyErrorResponse,
|
|
241
|
+
CreateMediaBuySuccessResponse,
|
|
242
|
+
# Deployment union
|
|
243
|
+
Deployment,
|
|
244
|
+
# Destination union
|
|
245
|
+
Destination,
|
|
246
|
+
# Preview renders
|
|
247
|
+
HtmlPreviewRender,
|
|
248
|
+
# Asset aliases
|
|
249
|
+
InlineDaastAsset,
|
|
250
|
+
InlineVastAsset,
|
|
251
|
+
# SubAsset aliases
|
|
252
|
+
MediaSubAsset,
|
|
253
|
+
# Platform deployment
|
|
254
|
+
PlatformDeployment,
|
|
255
|
+
PlatformDestination,
|
|
256
|
+
# Preview requests
|
|
257
|
+
PreviewCreativeFormatRequest,
|
|
258
|
+
PreviewCreativeInteractiveResponse,
|
|
259
|
+
PreviewCreativeManifestRequest,
|
|
260
|
+
PreviewCreativeStaticResponse,
|
|
261
|
+
# Publisher property selectors
|
|
262
|
+
PropertyId,
|
|
263
|
+
PropertyIdActivationKey,
|
|
264
|
+
PropertyTag,
|
|
265
|
+
PropertyTagActivationKey,
|
|
266
|
+
ProvidePerformanceFeedbackErrorResponse,
|
|
267
|
+
ProvidePerformanceFeedbackSuccessResponse,
|
|
268
|
+
# Publisher properties variants
|
|
269
|
+
PublisherPropertiesAll,
|
|
270
|
+
PublisherPropertiesById,
|
|
271
|
+
PublisherPropertiesByTag,
|
|
272
|
+
# Sync responses
|
|
273
|
+
SyncCreativesErrorResponse,
|
|
274
|
+
SyncCreativesSuccessResponse,
|
|
275
|
+
# Text subassets
|
|
276
|
+
TextSubAsset,
|
|
277
|
+
# Update media buy variants
|
|
278
|
+
UpdateMediaBuyErrorResponse,
|
|
279
|
+
UpdateMediaBuyPackagesRequest,
|
|
280
|
+
UpdateMediaBuyPropertiesRequest,
|
|
281
|
+
UpdateMediaBuySuccessResponse,
|
|
282
|
+
# URL aliases
|
|
283
|
+
UrlDaastAsset,
|
|
284
|
+
UrlPreviewRender,
|
|
285
|
+
UrlVastAsset,
|
|
286
|
+
)
|
|
287
|
+
|
|
288
|
+
# Re-export core types (not in generated, but part of public API)
|
|
289
|
+
# Note: We don't import TaskStatus here to avoid shadowing GeneratedTaskStatus
|
|
290
|
+
# Users should import TaskStatus from adcp.types.core directly if they need the core enum
|
|
291
|
+
from adcp.types.core import AgentConfig, Protocol, TaskResult, WebhookMetadata
|
|
292
|
+
|
|
293
|
+
# Backward compatibility aliases
|
|
294
|
+
AssetType = AssetContentType # Use AssetContentType instead
|
|
295
|
+
|
|
296
|
+
# Schema renames from filter ref split (v1.0.0)
|
|
297
|
+
Action = CreativeAction
|
|
298
|
+
Capability = CreativeAgentCapability
|
|
299
|
+
CatalogType = SignalCatalogType
|
|
300
|
+
CoBranding = CoBrandingRequirement
|
|
301
|
+
FormatType = FormatCategory
|
|
302
|
+
LandingPage = LandingPageRequirement
|
|
303
|
+
Method = HttpMethod
|
|
304
|
+
ModuleType = JavascriptModuleType
|
|
305
|
+
TrackingEvent = VastTrackingEvent # Split into DaastTrackingEvent and VastTrackingEvent
|
|
306
|
+
Unit = DimensionUnit
|
|
307
|
+
OutputFormat = PreviewOutputFormat
|
|
308
|
+
ResponseType = WebhookResponseType
|
|
309
|
+
Scheme = AuthenticationScheme
|
|
310
|
+
SignalType = SignalCatalogType
|
|
311
|
+
UrlType = UrlAssetType
|
|
312
|
+
AvailableReportingFrequency = ReportingFrequency
|
|
304
313
|
|
|
305
314
|
__all__ = [
|
|
306
|
-
#
|
|
307
|
-
"AdCPBaseModel",
|
|
308
|
-
"AgentConfig",
|
|
309
|
-
"Protocol",
|
|
310
|
-
"TaskResult",
|
|
311
|
-
"TaskStatus",
|
|
312
|
-
"GeneratedTaskStatus",
|
|
313
|
-
"WebhookMetadata",
|
|
314
|
-
"Activity",
|
|
315
|
-
"ActivityType",
|
|
316
|
-
"DebugInfo",
|
|
317
|
-
# All stable types
|
|
318
|
-
"Action",
|
|
319
|
-
"ActivateSignalErrorResponse",
|
|
315
|
+
# Request/Response types
|
|
320
316
|
"ActivateSignalRequest",
|
|
321
317
|
"ActivateSignalResponse",
|
|
322
|
-
"
|
|
323
|
-
"AgentDeployment",
|
|
324
|
-
"AgentDestination",
|
|
318
|
+
"CreativeAction",
|
|
325
319
|
"AggregatedTotals",
|
|
320
|
+
"BuildCreativeRequest",
|
|
321
|
+
"BuildCreativeResponse",
|
|
322
|
+
"ByPackageItem",
|
|
323
|
+
"CreateMediaBuyRequest",
|
|
324
|
+
"CreateMediaBuyResponse",
|
|
325
|
+
"DailyBreakdownItem",
|
|
326
|
+
"Details",
|
|
327
|
+
"Domain",
|
|
328
|
+
"DomainBreakdown",
|
|
329
|
+
"GetMediaBuyDeliveryRequest",
|
|
330
|
+
"GetMediaBuyDeliveryResponse",
|
|
331
|
+
"GetProductsRequest",
|
|
332
|
+
"GetProductsResponse",
|
|
333
|
+
"GetSignalsRequest",
|
|
334
|
+
"GetSignalsResponse",
|
|
335
|
+
"HistoryItem",
|
|
336
|
+
"ListAuthorizedPropertiesRequest",
|
|
337
|
+
"ListAuthorizedPropertiesResponse",
|
|
338
|
+
"ListCreativeFormatsRequest",
|
|
339
|
+
"ListCreativeFormatsResponse",
|
|
340
|
+
"ListCreativesRequest",
|
|
341
|
+
"ListCreativesResponse",
|
|
342
|
+
"MediaBuyDelivery",
|
|
343
|
+
"PreviewCreativeRequest",
|
|
344
|
+
"PreviewCreativeResponse",
|
|
345
|
+
"Progress",
|
|
346
|
+
"ProtocolEnvelope",
|
|
347
|
+
"ProtocolResponse",
|
|
348
|
+
"ProvidePerformanceFeedbackRequest",
|
|
349
|
+
"ProvidePerformanceFeedbackResponse",
|
|
350
|
+
"QuerySummary",
|
|
351
|
+
"SortApplied",
|
|
352
|
+
"StatusSummary",
|
|
353
|
+
"SyncCreativesRequest",
|
|
354
|
+
"SyncCreativesResponse",
|
|
355
|
+
"Task",
|
|
356
|
+
"TasksGetRequest",
|
|
357
|
+
"TasksGetResponse",
|
|
358
|
+
"TasksListRequest",
|
|
359
|
+
"TasksListResponse",
|
|
360
|
+
"Totals",
|
|
361
|
+
"UpdateMediaBuyRequest",
|
|
362
|
+
"UpdateMediaBuyResponse",
|
|
363
|
+
# Domain types
|
|
326
364
|
"Asset",
|
|
327
365
|
"AssetSelectors",
|
|
328
|
-
"
|
|
366
|
+
"AssetContentType",
|
|
367
|
+
"AssetType", # Deprecated
|
|
368
|
+
"FormatCategory",
|
|
329
369
|
"AssetsRequired",
|
|
330
370
|
"AssignedPackage",
|
|
331
371
|
"Assignments",
|
|
332
|
-
"AudioAsset",
|
|
333
|
-
"Authentication",
|
|
334
|
-
"AuthorizedAgent",
|
|
335
|
-
"AuthorizedAgents",
|
|
336
|
-
"AuthorizedAgentsByInlineProperties",
|
|
337
|
-
"AuthorizedAgentsByPropertyId",
|
|
338
|
-
"AuthorizedAgentsByPropertyTag",
|
|
339
|
-
"AuthorizedAgentsByPublisherProperties",
|
|
340
|
-
"AuthorizedSalesAgents",
|
|
341
|
-
"AvailableMetric",
|
|
342
|
-
"AvailableReportingFrequency",
|
|
343
|
-
"BothPreviewRender",
|
|
344
372
|
"BrandManifest",
|
|
345
|
-
"
|
|
346
|
-
"
|
|
347
|
-
"BuildCreativeResponse",
|
|
348
|
-
"BuildCreativeSuccessResponse",
|
|
349
|
-
"ByPackageItem",
|
|
350
|
-
"Capability",
|
|
351
|
-
"CatalogType",
|
|
352
|
-
"CoBranding",
|
|
373
|
+
"CreativeAgentCapability",
|
|
374
|
+
"CoBrandingRequirement",
|
|
353
375
|
"Colors",
|
|
354
376
|
"Contact",
|
|
355
|
-
"Country",
|
|
356
|
-
"CpcPricingOption",
|
|
357
|
-
"CpcvPricingOption",
|
|
358
|
-
"CpmAuctionPricingOption",
|
|
359
|
-
"CpmFixedRatePricingOption",
|
|
360
|
-
"CppPricingOption",
|
|
361
|
-
"CpvPricingOption",
|
|
362
|
-
"CreateMediaBuyErrorResponse",
|
|
363
|
-
"CreateMediaBuyRequest",
|
|
364
|
-
"CreateMediaBuyResponse",
|
|
365
|
-
"CreateMediaBuySuccessResponse",
|
|
366
377
|
"Creative",
|
|
367
378
|
"CreativeAgent",
|
|
368
379
|
"CreativeAsset",
|
|
369
380
|
"CreativeAssignment",
|
|
381
|
+
"CreativeFilters",
|
|
370
382
|
"CreativeManifest",
|
|
371
383
|
"CreativePolicy",
|
|
372
|
-
"CreativeStatus",
|
|
373
|
-
"CssAsset",
|
|
374
|
-
"DaastVersion",
|
|
375
|
-
"DailyBreakdownItem",
|
|
376
|
-
"DeliverTo",
|
|
377
384
|
"DeliveryMeasurement",
|
|
378
385
|
"DeliveryMetrics",
|
|
379
|
-
"DeliveryType",
|
|
380
|
-
"Deployment",
|
|
381
|
-
"Destination",
|
|
382
|
-
"Details",
|
|
383
|
-
"Direction",
|
|
384
386
|
"Disclaimer",
|
|
385
|
-
"Domain",
|
|
386
|
-
"DomainBreakdown",
|
|
387
387
|
"DoohMetrics",
|
|
388
388
|
"Embedding",
|
|
389
389
|
"Error",
|
|
390
390
|
"FeedFormat",
|
|
391
|
-
"FeedbackSource",
|
|
392
|
-
"FieldModel",
|
|
393
391
|
"Filters",
|
|
394
|
-
"FlatRatePricingOption",
|
|
395
392
|
"Fonts",
|
|
396
393
|
"Format",
|
|
397
394
|
"FormatCard",
|
|
398
395
|
"FormatCardDetailed",
|
|
399
396
|
"FormatId",
|
|
400
|
-
"FormatType",
|
|
401
|
-
"FrequencyCap",
|
|
402
|
-
"FrequencyCapScope",
|
|
403
|
-
"GeoCountryAnyOfItem",
|
|
404
|
-
"GetMediaBuyDeliveryRequest",
|
|
405
|
-
"GetMediaBuyDeliveryResponse",
|
|
406
|
-
"GetProductsRequest",
|
|
407
|
-
"GetProductsResponse",
|
|
408
|
-
"GetSignalsRequest",
|
|
409
|
-
"GetSignalsResponse",
|
|
410
|
-
"HistoryItem",
|
|
411
|
-
"HtmlAsset",
|
|
412
|
-
"HtmlPreviewRender",
|
|
413
397
|
"Identifier",
|
|
414
|
-
"ImageAsset",
|
|
415
|
-
"InlineDaastAsset",
|
|
416
|
-
"InlineVastAsset",
|
|
417
398
|
"Input",
|
|
418
|
-
"
|
|
419
|
-
"LandingPage",
|
|
420
|
-
"ListAuthorizedPropertiesRequest",
|
|
421
|
-
"ListAuthorizedPropertiesResponse",
|
|
422
|
-
"ListCreativeFormatsRequest",
|
|
423
|
-
"ListCreativeFormatsResponse",
|
|
424
|
-
"ListCreativesRequest",
|
|
425
|
-
"ListCreativesResponse",
|
|
399
|
+
"LandingPageRequirement",
|
|
426
400
|
"Logo",
|
|
427
|
-
"MarkdownAsset",
|
|
428
|
-
"MarkdownFlavor",
|
|
429
|
-
"Measurement",
|
|
430
|
-
"MeasurementPeriod",
|
|
431
401
|
"MediaBuy",
|
|
432
|
-
"MediaBuyDelivery",
|
|
433
|
-
"MediaBuyStatus",
|
|
434
|
-
"MediaSubAsset",
|
|
435
402
|
"Metadata",
|
|
436
|
-
"Method",
|
|
437
|
-
"MetricType",
|
|
438
|
-
"ModuleType",
|
|
439
|
-
"NotificationType",
|
|
440
403
|
"Offering",
|
|
441
|
-
"OutputFormat",
|
|
442
|
-
"Pacing",
|
|
443
404
|
"Package",
|
|
444
405
|
"PackageRequest",
|
|
445
|
-
"PackageStatus",
|
|
446
406
|
"Packages",
|
|
447
|
-
"Pagination",
|
|
448
407
|
"Parameters",
|
|
449
408
|
"Performance",
|
|
450
409
|
"PerformanceFeedback",
|
|
451
410
|
"Placement",
|
|
452
|
-
"PlatformDeployment",
|
|
453
|
-
"PlatformDestination",
|
|
454
411
|
"Preview",
|
|
455
|
-
"PreviewCreativeFormatRequest",
|
|
456
|
-
"PreviewCreativeInteractiveResponse",
|
|
457
|
-
"PreviewCreativeManifestRequest",
|
|
458
|
-
"PreviewCreativeRequest",
|
|
459
|
-
"PreviewCreativeResponse",
|
|
460
|
-
"PreviewCreativeStaticResponse",
|
|
461
412
|
"PreviewRender",
|
|
462
|
-
"PriceGuidance",
|
|
463
413
|
"Pricing",
|
|
464
|
-
"PricingModel",
|
|
465
|
-
"PrimaryCountry",
|
|
466
414
|
"Product",
|
|
467
415
|
"ProductCard",
|
|
468
416
|
"ProductCardDetailed",
|
|
469
417
|
"ProductCatalog",
|
|
470
|
-
"
|
|
418
|
+
"ProductFilters",
|
|
471
419
|
"PromotedOfferings",
|
|
472
420
|
"PromotedProducts",
|
|
473
421
|
"Property",
|
|
474
|
-
"
|
|
475
|
-
"
|
|
422
|
+
"QuartileData",
|
|
423
|
+
"Render",
|
|
424
|
+
"Request",
|
|
425
|
+
"Response",
|
|
426
|
+
"Results",
|
|
427
|
+
"Signal",
|
|
428
|
+
"SignalFilters",
|
|
429
|
+
"Tag",
|
|
430
|
+
"Tags",
|
|
431
|
+
"TargetingOverlay",
|
|
432
|
+
"VenueBreakdownItem",
|
|
433
|
+
# Pricing types
|
|
434
|
+
"CpcPricingOption",
|
|
435
|
+
"CpcvPricingOption",
|
|
436
|
+
"CpmAuctionPricingOption",
|
|
437
|
+
"CpmFixedRatePricingOption",
|
|
438
|
+
"CppPricingOption",
|
|
439
|
+
"CpvPricingOption",
|
|
440
|
+
"FlatRatePricingOption",
|
|
441
|
+
"PriceGuidance",
|
|
442
|
+
"VcpmAuctionPricingOption",
|
|
443
|
+
"VcpmFixedRatePricingOption",
|
|
444
|
+
# Status enums & simple types
|
|
445
|
+
"SignalCatalogType",
|
|
446
|
+
"Country",
|
|
447
|
+
"CreativeStatus",
|
|
448
|
+
"DaastVersion",
|
|
449
|
+
"DeliverTo",
|
|
450
|
+
"DeliveryType",
|
|
451
|
+
"Direction",
|
|
452
|
+
"FeedbackSource",
|
|
453
|
+
"FieldModel",
|
|
454
|
+
"FrequencyCap",
|
|
455
|
+
"FrequencyCapScope",
|
|
456
|
+
"GeoCountryAnyOfItem",
|
|
457
|
+
"MarkdownFlavor",
|
|
458
|
+
"Measurement",
|
|
459
|
+
"MeasurementPeriod",
|
|
460
|
+
"MediaBuyStatus",
|
|
461
|
+
"HttpMethod",
|
|
462
|
+
"MetricType",
|
|
463
|
+
"JavascriptModuleType",
|
|
464
|
+
"NotificationType",
|
|
465
|
+
"PreviewOutputFormat",
|
|
466
|
+
"Pacing",
|
|
467
|
+
"PackageStatus",
|
|
468
|
+
"Pagination",
|
|
469
|
+
"PricingModel",
|
|
470
|
+
"PrimaryCountry",
|
|
476
471
|
"PropertyIdentifierTypes",
|
|
477
|
-
"PropertyTag",
|
|
478
|
-
"PropertyTagActivationKey",
|
|
479
472
|
"PropertyType",
|
|
480
|
-
"ProtocolEnvelope",
|
|
481
|
-
"ProtocolResponse",
|
|
482
|
-
"ProvidePerformanceFeedbackErrorResponse",
|
|
483
|
-
"ProvidePerformanceFeedbackRequest",
|
|
484
|
-
"ProvidePerformanceFeedbackResponse",
|
|
485
|
-
"ProvidePerformanceFeedbackSuccessResponse",
|
|
486
473
|
"PublisherDomain",
|
|
487
474
|
"PublisherIdentifierTypes",
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
475
|
+
"WebhookResponseType",
|
|
476
|
+
"Responsive",
|
|
477
|
+
"Sort",
|
|
478
|
+
"StandardFormatIds",
|
|
479
|
+
"Status",
|
|
480
|
+
"TaskType",
|
|
481
|
+
"DaastTrackingEvent",
|
|
482
|
+
"VastTrackingEvent",
|
|
483
|
+
"DimensionUnit",
|
|
484
|
+
"UpdateFrequency",
|
|
485
|
+
"UrlAssetType",
|
|
486
|
+
"ValidationMode",
|
|
487
|
+
"VastVersion",
|
|
488
|
+
"ViewThreshold",
|
|
489
|
+
# Configuration & infrastructure types
|
|
490
|
+
"Authentication",
|
|
491
|
+
"AuthorizedAgents",
|
|
492
|
+
"AuthorizedSalesAgents",
|
|
493
|
+
"AvailableMetric",
|
|
492
494
|
"PushNotificationConfig",
|
|
493
|
-
"QuartileData",
|
|
494
|
-
"QuerySummary",
|
|
495
|
-
"Render",
|
|
496
495
|
"ReportingCapabilities",
|
|
497
496
|
"ReportingFrequency",
|
|
498
497
|
"ReportingPeriod",
|
|
499
498
|
"ReportingWebhook",
|
|
500
|
-
"Request",
|
|
501
499
|
"RequestedMetric",
|
|
502
|
-
"
|
|
503
|
-
"ResponseType",
|
|
504
|
-
"Responsive",
|
|
505
|
-
"Results",
|
|
506
|
-
"Scheme",
|
|
500
|
+
"AuthenticationScheme",
|
|
507
501
|
"Security",
|
|
508
|
-
|
|
509
|
-
"
|
|
510
|
-
"
|
|
511
|
-
"
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
502
|
+
# Assets
|
|
503
|
+
"AudioAsset",
|
|
504
|
+
"CssAsset",
|
|
505
|
+
"HtmlAsset",
|
|
506
|
+
"ImageAsset",
|
|
507
|
+
"JavascriptAsset",
|
|
508
|
+
"MarkdownAsset",
|
|
509
|
+
"TextAsset",
|
|
510
|
+
"UrlAsset",
|
|
511
|
+
"VideoAsset",
|
|
512
|
+
"WebhookAsset",
|
|
513
|
+
"WebhookPayload",
|
|
514
|
+
# Core types
|
|
515
|
+
"AgentConfig",
|
|
516
|
+
"Protocol",
|
|
517
|
+
"TaskResult",
|
|
518
|
+
"WebhookMetadata",
|
|
519
|
+
# Semantic aliases for discriminated unions
|
|
520
|
+
"ActivateSignalErrorResponse",
|
|
521
|
+
"ActivateSignalSuccessResponse",
|
|
522
|
+
"AgentDeployment",
|
|
523
|
+
"AgentDestination",
|
|
524
|
+
"AuthorizedAgent",
|
|
525
|
+
"AuthorizedAgentsByInlineProperties",
|
|
526
|
+
"AuthorizedAgentsByPropertyId",
|
|
527
|
+
"AuthorizedAgentsByPropertyTag",
|
|
528
|
+
"AuthorizedAgentsByPublisherProperties",
|
|
529
|
+
"BothPreviewRender",
|
|
530
|
+
"BuildCreativeErrorResponse",
|
|
531
|
+
"BuildCreativeSuccessResponse",
|
|
532
|
+
"CreateMediaBuyErrorResponse",
|
|
533
|
+
"CreateMediaBuySuccessResponse",
|
|
534
|
+
"Deployment",
|
|
535
|
+
"Destination",
|
|
536
|
+
"HtmlPreviewRender",
|
|
537
|
+
"InlineDaastAsset",
|
|
538
|
+
"InlineVastAsset",
|
|
539
|
+
"MediaSubAsset",
|
|
540
|
+
"PlatformDeployment",
|
|
541
|
+
"PlatformDestination",
|
|
542
|
+
"PreviewCreativeFormatRequest",
|
|
543
|
+
"PreviewCreativeInteractiveResponse",
|
|
544
|
+
"PreviewCreativeManifestRequest",
|
|
545
|
+
"PreviewCreativeStaticResponse",
|
|
546
|
+
"PropertyId",
|
|
547
|
+
"PropertyIdActivationKey",
|
|
548
|
+
"PropertyTag",
|
|
549
|
+
"PropertyTagActivationKey",
|
|
550
|
+
"ProvidePerformanceFeedbackErrorResponse",
|
|
551
|
+
"ProvidePerformanceFeedbackSuccessResponse",
|
|
552
|
+
"PublisherPropertiesAll",
|
|
553
|
+
"PublisherPropertiesById",
|
|
554
|
+
"PublisherPropertiesByTag",
|
|
517
555
|
"SyncCreativesErrorResponse",
|
|
518
|
-
"SyncCreativesRequest",
|
|
519
|
-
"SyncCreativesResponse",
|
|
520
556
|
"SyncCreativesSuccessResponse",
|
|
521
|
-
"Tag",
|
|
522
|
-
"Tags",
|
|
523
|
-
"TargetingOverlay",
|
|
524
|
-
"Task",
|
|
525
|
-
"TaskType",
|
|
526
|
-
"TasksGetRequest",
|
|
527
|
-
"TasksGetResponse",
|
|
528
|
-
"TasksListRequest",
|
|
529
|
-
"TasksListResponse",
|
|
530
|
-
"TextAsset",
|
|
531
557
|
"TextSubAsset",
|
|
532
|
-
"Totals",
|
|
533
|
-
"TrackingEvent",
|
|
534
|
-
"Type",
|
|
535
|
-
"Unit",
|
|
536
|
-
"UpdateFrequency",
|
|
537
558
|
"UpdateMediaBuyErrorResponse",
|
|
538
559
|
"UpdateMediaBuyPackagesRequest",
|
|
539
560
|
"UpdateMediaBuyPropertiesRequest",
|
|
540
|
-
"UpdateMediaBuyRequest",
|
|
541
|
-
"UpdateMediaBuyResponse",
|
|
542
561
|
"UpdateMediaBuySuccessResponse",
|
|
543
|
-
"UrlAsset",
|
|
544
562
|
"UrlDaastAsset",
|
|
545
563
|
"UrlPreviewRender",
|
|
546
|
-
"UrlType",
|
|
547
564
|
"UrlVastAsset",
|
|
548
|
-
|
|
549
|
-
"
|
|
550
|
-
|
|
551
|
-
"
|
|
552
|
-
"
|
|
553
|
-
"
|
|
554
|
-
"
|
|
555
|
-
"
|
|
556
|
-
"
|
|
565
|
+
# Internal/special exports
|
|
566
|
+
"GeneratedTaskStatus",
|
|
567
|
+
# Backward compatibility aliases (deprecated)
|
|
568
|
+
"Action",
|
|
569
|
+
"Capability",
|
|
570
|
+
"CatalogType",
|
|
571
|
+
"CoBranding",
|
|
572
|
+
"FormatType",
|
|
573
|
+
"LandingPage",
|
|
574
|
+
"Method",
|
|
575
|
+
"ModuleType",
|
|
576
|
+
"TrackingEvent",
|
|
577
|
+
"Unit",
|
|
578
|
+
"OutputFormat",
|
|
579
|
+
"ResponseType",
|
|
580
|
+
"Scheme",
|
|
581
|
+
"SignalType",
|
|
582
|
+
"UrlType",
|
|
583
|
+
"AvailableReportingFrequency",
|
|
584
|
+
# Submodules for advanced use:
|
|
585
|
+
"generated",
|
|
586
|
+
"aliases",
|
|
557
587
|
]
|