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