@adcp/client 4.21.0 → 4.22.1

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 (160) hide show
  1. package/AGENTS.md +278 -0
  2. package/README.md +96 -61
  3. package/bin/adcp.js +342 -4
  4. package/dist/lib/agents/index.generated.d.ts +9 -1
  5. package/dist/lib/agents/index.generated.d.ts.map +1 -1
  6. package/dist/lib/agents/index.generated.js +12 -0
  7. package/dist/lib/agents/index.generated.js.map +1 -1
  8. package/dist/lib/core/AgentClient.d.ts.map +1 -1
  9. package/dist/lib/core/SingleAgentClient.d.ts +2 -1
  10. package/dist/lib/core/SingleAgentClient.d.ts.map +1 -1
  11. package/dist/lib/core/SingleAgentClient.js +10 -1
  12. package/dist/lib/core/SingleAgentClient.js.map +1 -1
  13. package/dist/lib/discovery/property-crawler.d.ts +4 -0
  14. package/dist/lib/discovery/property-crawler.d.ts.map +1 -1
  15. package/dist/lib/discovery/property-crawler.js +10 -2
  16. package/dist/lib/discovery/property-crawler.js.map +1 -1
  17. package/dist/lib/index.d.ts +4 -4
  18. package/dist/lib/index.d.ts.map +1 -1
  19. package/dist/lib/index.js +6 -4
  20. package/dist/lib/index.js.map +1 -1
  21. package/dist/lib/protocols/index.d.ts.map +1 -1
  22. package/dist/lib/protocols/index.js +8 -6
  23. package/dist/lib/protocols/index.js.map +1 -1
  24. package/dist/lib/protocols/mcp.d.ts.map +1 -1
  25. package/dist/lib/protocols/mcp.js +24 -11
  26. package/dist/lib/protocols/mcp.js.map +1 -1
  27. package/dist/lib/server/index.d.ts +2 -0
  28. package/dist/lib/server/index.d.ts.map +1 -1
  29. package/dist/lib/server/index.js +3 -1
  30. package/dist/lib/server/index.js.map +1 -1
  31. package/dist/lib/server/serve.d.ts +73 -0
  32. package/dist/lib/server/serve.d.ts.map +1 -0
  33. package/dist/lib/server/serve.js +94 -0
  34. package/dist/lib/server/serve.js.map +1 -0
  35. package/dist/lib/testing/client.d.ts.map +1 -1
  36. package/dist/lib/testing/client.js +1 -0
  37. package/dist/lib/testing/client.js.map +1 -1
  38. package/dist/lib/testing/compliance/comply.d.ts.map +1 -1
  39. package/dist/lib/testing/compliance/comply.js +48 -63
  40. package/dist/lib/testing/compliance/comply.js.map +1 -1
  41. package/dist/lib/testing/compliance/storyboard-tracks.d.ts +24 -0
  42. package/dist/lib/testing/compliance/storyboard-tracks.d.ts.map +1 -0
  43. package/dist/lib/testing/compliance/storyboard-tracks.js +157 -0
  44. package/dist/lib/testing/compliance/storyboard-tracks.js.map +1 -0
  45. package/dist/lib/testing/compliance/types.d.ts +1 -1
  46. package/dist/lib/testing/compliance/types.d.ts.map +1 -1
  47. package/dist/lib/testing/index.d.ts +1 -0
  48. package/dist/lib/testing/index.d.ts.map +1 -1
  49. package/dist/lib/testing/index.js +23 -1
  50. package/dist/lib/testing/index.js.map +1 -1
  51. package/dist/lib/testing/orchestrator.d.ts +8 -0
  52. package/dist/lib/testing/orchestrator.d.ts.map +1 -1
  53. package/dist/lib/testing/orchestrator.js +8 -0
  54. package/dist/lib/testing/orchestrator.js.map +1 -1
  55. package/dist/lib/testing/storyboard/context.d.ts +34 -0
  56. package/dist/lib/testing/storyboard/context.d.ts.map +1 -0
  57. package/dist/lib/testing/storyboard/context.js +257 -0
  58. package/dist/lib/testing/storyboard/context.js.map +1 -0
  59. package/dist/lib/testing/storyboard/index.d.ts +15 -0
  60. package/dist/lib/testing/storyboard/index.d.ts.map +1 -0
  61. package/dist/lib/testing/storyboard/index.js +48 -0
  62. package/dist/lib/testing/storyboard/index.js.map +1 -0
  63. package/dist/lib/testing/storyboard/loader.d.ts +53 -0
  64. package/dist/lib/testing/storyboard/loader.d.ts.map +1 -0
  65. package/dist/lib/testing/storyboard/loader.js +114 -0
  66. package/dist/lib/testing/storyboard/loader.js.map +1 -0
  67. package/dist/lib/testing/storyboard/path.d.ts +29 -0
  68. package/dist/lib/testing/storyboard/path.d.ts.map +1 -0
  69. package/dist/lib/testing/storyboard/path.js +121 -0
  70. package/dist/lib/testing/storyboard/path.js.map +1 -0
  71. package/dist/lib/testing/storyboard/request-builder.d.ts +28 -0
  72. package/dist/lib/testing/storyboard/request-builder.d.ts.map +1 -0
  73. package/dist/lib/testing/storyboard/request-builder.js +410 -0
  74. package/dist/lib/testing/storyboard/request-builder.js.map +1 -0
  75. package/dist/lib/testing/storyboard/runner.d.ts +24 -0
  76. package/dist/lib/testing/storyboard/runner.d.ts.map +1 -0
  77. package/dist/lib/testing/storyboard/runner.js +280 -0
  78. package/dist/lib/testing/storyboard/runner.js.map +1 -0
  79. package/dist/lib/testing/storyboard/task-map.d.ts +21 -0
  80. package/dist/lib/testing/storyboard/task-map.d.ts.map +1 -0
  81. package/dist/lib/testing/storyboard/task-map.js +84 -0
  82. package/dist/lib/testing/storyboard/task-map.js.map +1 -0
  83. package/dist/lib/testing/storyboard/types.d.ts +156 -0
  84. package/dist/lib/testing/storyboard/types.d.ts.map +1 -0
  85. package/dist/lib/testing/storyboard/types.js +10 -0
  86. package/dist/lib/testing/storyboard/types.js.map +1 -0
  87. package/dist/lib/testing/storyboard/validations.d.ts +17 -0
  88. package/dist/lib/testing/storyboard/validations.d.ts.map +1 -0
  89. package/dist/lib/testing/storyboard/validations.js +166 -0
  90. package/dist/lib/testing/storyboard/validations.js.map +1 -0
  91. package/dist/lib/testing/types.d.ts +2 -0
  92. package/dist/lib/testing/types.d.ts.map +1 -1
  93. package/dist/lib/types/core.generated.d.ts +2 -2
  94. package/dist/lib/types/core.generated.d.ts.map +1 -1
  95. package/dist/lib/types/core.generated.js +1 -1
  96. package/dist/lib/types/schemas.generated.d.ts +193 -34
  97. package/dist/lib/types/schemas.generated.d.ts.map +1 -1
  98. package/dist/lib/types/schemas.generated.js +87 -5
  99. package/dist/lib/types/schemas.generated.js.map +1 -1
  100. package/dist/lib/types/tools.generated.d.ts +280 -3
  101. package/dist/lib/types/tools.generated.d.ts.map +1 -1
  102. package/dist/lib/utils/response-schemas.d.ts.map +1 -1
  103. package/dist/lib/utils/response-schemas.js +34 -3
  104. package/dist/lib/utils/response-schemas.js.map +1 -1
  105. package/dist/lib/utils/validate-user-agent.d.ts +8 -0
  106. package/dist/lib/utils/validate-user-agent.d.ts.map +1 -0
  107. package/dist/lib/utils/validate-user-agent.js +15 -0
  108. package/dist/lib/utils/validate-user-agent.js.map +1 -0
  109. package/dist/lib/version.d.ts +6 -0
  110. package/dist/lib/version.d.ts.map +1 -1
  111. package/dist/lib/version.js +7 -1
  112. package/dist/lib/version.js.map +1 -1
  113. package/docs/README.md +42 -0
  114. package/docs/guides/BUILD-AN-AGENT.md +294 -0
  115. package/docs/llms.txt +634 -0
  116. package/examples/README.md +106 -0
  117. package/examples/adcp.config.json +30 -0
  118. package/examples/basic-a2a.ts +76 -0
  119. package/examples/basic-mcp.ts +50 -0
  120. package/examples/batch-preview-test.ts +266 -0
  121. package/examples/conversation-client.ts +291 -0
  122. package/examples/debug-preview-response.ts +73 -0
  123. package/examples/debug-preview-with-logging.ts +50 -0
  124. package/examples/easy-config-demo.ts +242 -0
  125. package/examples/env-config.ts +51 -0
  126. package/examples/error-compliant-server.ts +237 -0
  127. package/examples/generative-creative-demo.ts +205 -0
  128. package/examples/inspect-card-formats.ts +161 -0
  129. package/examples/logger-usage.ts +165 -0
  130. package/examples/oauth-cli-example.ts +154 -0
  131. package/examples/pr78-async-patterns-demo.ts +247 -0
  132. package/examples/signals-agent.ts +163 -0
  133. package/examples/simple-getting-started.ts +225 -0
  134. package/examples/simple-protocol-demo.ts +75 -0
  135. package/examples/test-helpers-demo.ts +239 -0
  136. package/examples/zod-validation-example.ts +126 -0
  137. package/package.json +12 -2
  138. package/skills/adcp/SKILL.md +13 -2
  139. package/storyboards/audience_sync.yaml +199 -0
  140. package/storyboards/behavioral_analysis.yaml +244 -0
  141. package/storyboards/brand_rights.yaml +131 -0
  142. package/storyboards/creative_ad_server.yaml +171 -0
  143. package/storyboards/creative_sales_agent.yaml +169 -0
  144. package/storyboards/creative_template.yaml +306 -0
  145. package/storyboards/deterministic_testing.yaml +925 -0
  146. package/storyboards/error_compliance.yaml +231 -0
  147. package/storyboards/governance_content_standards.yaml +213 -0
  148. package/storyboards/governance_property_lists.yaml +372 -0
  149. package/storyboards/media_buy_catalog_creative.yaml +457 -0
  150. package/storyboards/media_buy_governance_escalation.yaml +467 -0
  151. package/storyboards/media_buy_guaranteed_approval.yaml +396 -0
  152. package/storyboards/media_buy_non_guaranteed.yaml +288 -0
  153. package/storyboards/media_buy_proposal_mode.yaml +369 -0
  154. package/storyboards/media_buy_seller.yaml +560 -0
  155. package/storyboards/media_buy_state_machine.yaml +254 -0
  156. package/storyboards/schema.yaml +65 -0
  157. package/storyboards/schema_validation.yaml +166 -0
  158. package/storyboards/si_session.yaml +384 -0
  159. package/storyboards/signal_marketplace.yaml +283 -0
  160. package/storyboards/signal_owned.yaml +211 -0
@@ -141,6 +141,10 @@ export type PostalCodeSystem = 'us_zip' | 'us_zip_plus_four' | 'gb_outward' | 'g
141
141
  * Request parameters for discovering or refining advertising products. buying_mode declares the buyer's intent: 'brief' for curated discovery, 'wholesale' for raw catalog access, or 'refine' to iterate on known products and proposals.
142
142
  */
143
143
  export interface GetProductsRequest {
144
+ /**
145
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
146
+ */
147
+ adcp_major_version?: number;
144
148
  /**
145
149
  * Declares buyer intent for this request. 'brief': publisher curates product recommendations from the provided brief. 'wholesale': buyer requests raw inventory to apply their own audiences — brief must not be provided, and proposals are omitted. 'refine': iterate on products and proposals from a previous get_products response using the refine array of change requests. v3 clients MUST include buying_mode. Sellers receiving requests from pre-v3 clients without buying_mode SHOULD default to 'brief'.
146
150
  */
@@ -2193,6 +2197,10 @@ export type DisclosurePersistence = 'continuous' | 'initial' | 'flexible';
2193
2197
  * Request parameters for discovering supported creative formats
2194
2198
  */
2195
2199
  export interface ListCreativeFormatsRequest {
2200
+ /**
2201
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
2202
+ */
2203
+ adcp_major_version?: number;
2196
2204
  /**
2197
2205
  * Return only these specific format IDs (e.g., from get_products response)
2198
2206
  */
@@ -2859,6 +2867,10 @@ export type AuthenticationScheme = 'Bearer' | 'HMAC-SHA256';
2859
2867
  * Request parameters for creating a media buy. Supports two modes: (1) Manual mode - provide packages array with explicit line item configurations, or (2) Proposal mode - provide proposal_id and total_budget to execute a proposal from get_products. One of packages or proposal_id must be provided.
2860
2868
  */
2861
2869
  export interface CreateMediaBuyRequest {
2870
+ /**
2871
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
2872
+ */
2873
+ adcp_major_version?: number;
2862
2874
  /**
2863
2875
  * Client-generated unique key for this request. If a request with the same idempotency_key and account has already been processed, the seller returns the existing media buy rather than creating a duplicate. MUST be unique per (seller, request) pair to prevent cross-seller correlation. Use a fresh UUID v4 for each request.
2864
2876
  */
@@ -2969,6 +2981,10 @@ export interface CreateMediaBuyRequest {
2969
2981
  * Package configuration for media buy creation
2970
2982
  */
2971
2983
  export interface PackageRequest {
2984
+ /**
2985
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
2986
+ */
2987
+ adcp_major_version?: number;
2972
2988
  /**
2973
2989
  * Product ID for this package
2974
2990
  */
@@ -4374,6 +4390,10 @@ export interface CreateMediaBuyError {
4374
4390
  * Request parameters for updating campaign and package settings
4375
4391
  */
4376
4392
  export interface UpdateMediaBuyRequest {
4393
+ /**
4394
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
4395
+ */
4396
+ adcp_major_version?: number;
4377
4397
  /**
4378
4398
  * Seller's ID of the media buy to update
4379
4399
  */
@@ -4586,6 +4606,10 @@ export interface UpdateMediaBuyError {
4586
4606
  * Request parameters for retrieving media buy status, creative approval state, and optional delivery snapshots
4587
4607
  */
4588
4608
  export interface GetMediaBuysRequest {
4609
+ /**
4610
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
4611
+ */
4612
+ adcp_major_version?: number;
4589
4613
  account?: AccountReference;
4590
4614
  /**
4591
4615
  * Array of media buy IDs to retrieve. When omitted, returns a paginated set of accessible media buys matching status_filter.
@@ -4864,6 +4888,10 @@ export type SortMetric = 'impressions' | 'spend' | 'clicks' | 'ctr' | 'views' |
4864
4888
  * Request parameters for retrieving comprehensive delivery metrics
4865
4889
  */
4866
4890
  export interface GetMediaBuyDeliveryRequest {
4891
+ /**
4892
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
4893
+ */
4894
+ adcp_major_version?: number;
4867
4895
  account?: AccountReference;
4868
4896
  /**
4869
4897
  * Array of media buy IDs to get delivery data for
@@ -5580,6 +5608,10 @@ export type FeedbackSource = 'buyer_attribution' | 'third_party_measurement' | '
5580
5608
  * Request payload for provide_performance_feedback task
5581
5609
  */
5582
5610
  export interface ProvidePerformanceFeedbackRequest {
5611
+ /**
5612
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
5613
+ */
5614
+ adcp_major_version?: number;
5583
5615
  /**
5584
5616
  * Seller's media buy identifier
5585
5617
  */
@@ -5653,6 +5685,10 @@ export interface ProvidePerformanceFeedbackError {
5653
5685
  * Request parameters for configuring event sources on an account with upsert semantics. Existing event sources matched by event_source_id are updated, new ones are created. When delete_missing is true, buyer-managed event sources on the account not in this request are removed. When event_sources is omitted, the call is discovery-only: it returns all event sources on the account without modification. The response always includes both synced and seller-managed event sources for full visibility.
5654
5686
  */
5655
5687
  export interface SyncEventSourcesRequest {
5688
+ /**
5689
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
5690
+ */
5691
+ adcp_major_version?: number;
5656
5692
  account: AccountReference;
5657
5693
  /**
5658
5694
  * Event sources to sync (create or update). When omitted, the call is discovery-only and returns all existing event sources on the account without modification.
@@ -5853,6 +5889,10 @@ export type UIDType = 'rampid' | 'id5' | 'uid2' | 'euid' | 'pairid' | 'maid' | '
5853
5889
  * Request parameters for logging marketing events
5854
5890
  */
5855
5891
  export interface LogEventRequest {
5892
+ /**
5893
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
5894
+ */
5895
+ adcp_major_version?: number;
5856
5896
  /**
5857
5897
  * Event source configured on the account via sync_event_sources
5858
5898
  */
@@ -6058,6 +6098,10 @@ export type ConsentBasis = 'consent' | 'legitimate_interest' | 'contract' | 'leg
6058
6098
  * Request parameters for managing CRM-based audiences on an account with upsert semantics. Existing audiences matched by audience_id are updated, new ones are created. Members are specified as delta operations: add appends new members, remove drops existing ones. Recommend no more than 100,000 members per call; for larger lists, chunk and call incrementally using add/remove deltas. When delete_missing is true, buyer-managed audiences on the account not in this request are removed — do not combine with omitted audiences or all buyer-managed audiences will be deleted. When audiences is omitted, the call is discovery-only: it returns all audiences on the account without modification.
6059
6099
  */
6060
6100
  export interface SyncAudiencesRequest {
6101
+ /**
6102
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
6103
+ */
6104
+ adcp_major_version?: number;
6061
6105
  account: AccountReference;
6062
6106
  /**
6063
6107
  * Audiences to sync (create or update). When omitted, the call is discovery-only and returns all existing audiences on the account without modification.
@@ -6213,6 +6257,10 @@ export type ValidationMode = 'strict' | 'lenient';
6213
6257
  * Request parameters for syncing catalog feeds with upsert semantics. Supports bulk operations across multiple catalog types (products, inventory, stores, promotions, offerings). Existing catalogs matched by catalog_id are updated, new ones are created. When catalogs is omitted, the call is discovery-only: returns all catalogs on the account without modification.
6214
6258
  */
6215
6259
  export interface SyncCatalogsRequest {
6260
+ /**
6261
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
6262
+ */
6263
+ adcp_major_version?: number;
6216
6264
  account: AccountReference;
6217
6265
  /**
6218
6266
  * Array of catalog feeds to sync (create or update). When omitted, the call is discovery-only and returns all existing catalogs on the account without modification.
@@ -6357,6 +6405,10 @@ export type PreviewOutputFormat = 'url' | 'html';
6357
6405
  * Request to transform, generate, or retrieve a creative manifest. Supports three modes: (1) generation from a brief or seed assets, (2) transformation of an existing manifest, (3) retrieval from a creative library by creative_id. Produces target manifest(s) in the specified format(s). Provide either target_format_id for a single format or target_format_ids for multiple formats.
6358
6406
  */
6359
6407
  export interface BuildCreativeRequest {
6408
+ /**
6409
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
6410
+ */
6411
+ adcp_major_version?: number;
6360
6412
  /**
6361
6413
  * Natural language instructions for the transformation or generation. For pure generation, this is the creative brief. For transformation, this provides guidance on how to adapt the creative. For refinement, this describes the desired changes.
6362
6414
  */
@@ -6797,6 +6849,10 @@ export interface BuildCreativeError {
6797
6849
  * Request to generate previews of one or more creative manifests. Accepts either a single creative request or an array of requests for batch processing.
6798
6850
  */
6799
6851
  export type PreviewCreativeRequest = {
6852
+ /**
6853
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
6854
+ */
6855
+ adcp_major_version?: number;
6800
6856
  /**
6801
6857
  * Discriminator indicating this is a single preview request
6802
6858
  */
@@ -6835,6 +6891,10 @@ export type PreviewCreativeRequest = {
6835
6891
  context?: ContextObject;
6836
6892
  ext?: ExtensionObject;
6837
6893
  } | {
6894
+ /**
6895
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
6896
+ */
6897
+ adcp_major_version?: number;
6838
6898
  /**
6839
6899
  * Discriminator indicating this is a batch preview request
6840
6900
  */
@@ -6880,6 +6940,10 @@ export type PreviewCreativeRequest = {
6880
6940
  context?: ContextObject;
6881
6941
  ext?: ExtensionObject;
6882
6942
  } | {
6943
+ /**
6944
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
6945
+ */
6946
+ adcp_major_version?: number;
6883
6947
  /**
6884
6948
  * Discriminator indicating this is a variant preview request
6885
6949
  */
@@ -7021,6 +7085,10 @@ export interface PreviewCreativeVariantResponse {
7021
7085
  export type GetCreativeDeliveryRequest = {
7022
7086
  [k: string]: unknown | undefined;
7023
7087
  } & {
7088
+ /**
7089
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
7090
+ */
7091
+ adcp_major_version?: number;
7024
7092
  account?: AccountReference;
7025
7093
  /**
7026
7094
  * Filter to specific media buys by publisher ID. If omitted, returns creative delivery across all matching media buys.
@@ -7079,7 +7147,7 @@ export type CreativeVariant = DeliveryMetrics & {
7079
7147
  /**
7080
7148
  * Type of identifier
7081
7149
  */
7082
- export type PropertyIdentifierTypes = 'domain' | 'subdomain' | 'network_id' | 'ios_bundle' | 'android_package' | 'apple_app_store_id' | 'google_play_id' | 'roku_store_id' | 'fire_tv_asin' | 'samsung_app_id' | 'apple_tv_bundle' | 'bundle_id' | 'venue_id' | 'screen_id' | 'openooh_venue_type' | 'rss_url' | 'apple_podcast_id' | 'spotify_collection_id' | 'podcast_guid';
7150
+ export type PropertyIdentifierTypes = 'domain' | 'subdomain' | 'network_id' | 'ios_bundle' | 'android_package' | 'apple_app_store_id' | 'google_play_id' | 'roku_store_id' | 'fire_tv_asin' | 'samsung_app_id' | 'apple_tv_bundle' | 'bundle_id' | 'venue_id' | 'screen_id' | 'openooh_venue_type' | 'rss_url' | 'apple_podcast_id' | 'spotify_collection_id' | 'podcast_guid' | 'station_id' | 'facility_id';
7083
7151
  /**
7084
7152
  * Response payload for get_creative_delivery task. Returns creative delivery data with variant-level breakdowns including manifests and metrics.
7085
7153
  */
@@ -7186,6 +7254,10 @@ export type SortDirection = 'asc' | 'desc';
7186
7254
  * Request parameters for querying creative assets from a creative library with filtering, sorting, and pagination. Implemented by any agent that hosts a creative library — creative agents (ad servers, creative platforms) and sales agents that manage creatives.
7187
7255
  */
7188
7256
  export interface ListCreativesRequest {
7257
+ /**
7258
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
7259
+ */
7260
+ adcp_major_version?: number;
7189
7261
  filters?: CreativeFilters;
7190
7262
  /**
7191
7263
  * Sorting parameters
@@ -7536,6 +7608,10 @@ export interface CreativeVariable {
7536
7608
  * Request parameters for syncing creative assets with upsert semantics - supports bulk operations, scoped updates, and assignment management
7537
7609
  */
7538
7610
  export interface SyncCreativesRequest {
7611
+ /**
7612
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
7613
+ */
7614
+ adcp_major_version?: number;
7539
7615
  account: AccountReference;
7540
7616
  /**
7541
7617
  * Array of creative assets to sync (create or update)
@@ -7674,6 +7750,10 @@ export interface SyncCreativesError {
7674
7750
  export type GetSignalsRequest = {
7675
7751
  [k: string]: unknown | undefined;
7676
7752
  } & {
7753
+ /**
7754
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
7755
+ */
7756
+ adcp_major_version?: number;
7677
7757
  account?: AccountReference;
7678
7758
  /**
7679
7759
  * Natural language description of the desired signals. When used alone, enables semantic discovery. When combined with signal_ids, provides context for the agent but signal_ids matches are returned first.
@@ -7984,6 +8064,10 @@ export interface FlatFeePricing {
7984
8064
  * Request parameters for activating or deactivating a signal on deployment targets
7985
8065
  */
7986
8066
  export interface ActivateSignalRequest {
8067
+ /**
8068
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8069
+ */
8070
+ adcp_major_version?: number;
7987
8071
  /**
7988
8072
  * Whether to activate or deactivate the signal. Deactivating removes the segment from downstream platforms, required when campaigns end to comply with data governance policies (GDPR, CCPA). Defaults to 'activate' when omitted.
7989
8073
  */
@@ -8045,11 +8129,15 @@ export type BasePropertySource = PublisherTagsSource | PublisherPropertyIDsSourc
8045
8129
  /**
8046
8130
  * Types of addressable advertising properties with verifiable ownership. Property types are a subset of media channels - they represent inventory surfaces that can be validated via adagents.json.
8047
8131
  */
8048
- export type PropertyType = 'website' | 'mobile_app' | 'ctv_app' | 'desktop_app' | 'dooh' | 'podcast' | 'radio' | 'streaming_audio' | 'ai_assistant';
8132
+ export type PropertyType = 'website' | 'mobile_app' | 'ctv_app' | 'desktop_app' | 'dooh' | 'podcast' | 'radio' | 'linear_tv' | 'streaming_audio' | 'ai_assistant';
8049
8133
  /**
8050
8134
  * Request parameters for creating a new property list
8051
8135
  */
8052
8136
  export interface CreatePropertyListRequest {
8137
+ /**
8138
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8139
+ */
8140
+ adcp_major_version?: number;
8053
8141
  /**
8054
8142
  * Human-readable name for the list
8055
8143
  */
@@ -8230,6 +8318,10 @@ export interface PropertyList {
8230
8318
  * Request parameters for updating an existing property list
8231
8319
  */
8232
8320
  export interface UpdatePropertyListRequest {
8321
+ /**
8322
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8323
+ */
8324
+ adcp_major_version?: number;
8233
8325
  /**
8234
8326
  * ID of the property list to update
8235
8327
  */
@@ -8270,6 +8362,10 @@ export interface UpdatePropertyListResponse {
8270
8362
  * Request parameters for retrieving a property list with resolved identifiers
8271
8363
  */
8272
8364
  export interface GetPropertyListRequest {
8365
+ /**
8366
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8367
+ */
8368
+ adcp_major_version?: number;
8273
8369
  /**
8274
8370
  * ID of the property list to retrieve
8275
8371
  */
@@ -8324,6 +8420,10 @@ export interface GetPropertyListResponse {
8324
8420
  * Request parameters for listing property lists
8325
8421
  */
8326
8422
  export interface ListPropertyListsRequest {
8423
+ /**
8424
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8425
+ */
8426
+ adcp_major_version?: number;
8327
8427
  /**
8328
8428
  * Filter to lists owned by this principal
8329
8429
  */
@@ -8351,6 +8451,10 @@ export interface ListPropertyListsResponse {
8351
8451
  * Request parameters for deleting a property list
8352
8452
  */
8353
8453
  export interface DeletePropertyListRequest {
8454
+ /**
8455
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8456
+ */
8457
+ adcp_major_version?: number;
8354
8458
  /**
8355
8459
  * ID of the property list to delete
8356
8460
  */
@@ -8380,6 +8484,10 @@ export interface DeletePropertyListResponse {
8380
8484
  * Request parameters for listing content standards configurations
8381
8485
  */
8382
8486
  export interface ListContentStandardsRequest {
8487
+ /**
8488
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8489
+ */
8490
+ adcp_major_version?: number;
8383
8491
  /**
8384
8492
  * Filter by channel
8385
8493
  */
@@ -8673,6 +8781,10 @@ export interface Artifact {
8673
8781
  * Request parameters for retrieving content safety policies
8674
8782
  */
8675
8783
  export interface GetContentStandardsRequest {
8784
+ /**
8785
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8786
+ */
8787
+ adcp_major_version?: number;
8676
8788
  /**
8677
8789
  * Identifier for the standards configuration to retrieve
8678
8790
  */
@@ -8692,6 +8804,10 @@ export type GetContentStandardsResponse = ContentStandards | {
8692
8804
  * Request parameters for creating a new content standards configuration
8693
8805
  */
8694
8806
  export interface CreateContentStandardsRequest {
8807
+ /**
8808
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8809
+ */
8810
+ adcp_major_version?: number;
8695
8811
  /**
8696
8812
  * Where this standards configuration applies
8697
8813
  */
@@ -8790,6 +8906,10 @@ export type CreateContentStandardsResponse = {
8790
8906
  * Request parameters for updating an existing content standards configuration. Creates a new version.
8791
8907
  */
8792
8908
  export interface UpdateContentStandardsRequest {
8909
+ /**
8910
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
8911
+ */
8912
+ adcp_major_version?: number;
8793
8913
  /**
8794
8914
  * ID of the standards configuration to update
8795
8915
  */
@@ -8905,6 +9025,10 @@ export interface UpdateContentStandardsError {
8905
9025
  * Request parameters for evaluating content during calibration. Multi-turn dialogue is handled at the protocol layer via contextId.
8906
9026
  */
8907
9027
  export interface CalibrateContentRequest {
9028
+ /**
9029
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
9030
+ */
9031
+ adcp_major_version?: number;
8908
9032
  /**
8909
9033
  * Standards configuration to calibrate against
8910
9034
  */
@@ -8959,6 +9083,10 @@ export type CalibrateContentResponse = {
8959
9083
  * Request parameters for batch validating delivery records against content safety policies
8960
9084
  */
8961
9085
  export interface ValidateContentDeliveryRequest {
9086
+ /**
9087
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
9088
+ */
9089
+ adcp_major_version?: number;
8962
9090
  /**
8963
9091
  * Standards configuration to validate against
8964
9092
  */
@@ -9062,6 +9190,10 @@ export type ValidateContentDeliveryResponse = {
9062
9190
  * Request parameters for retrieving content artifacts from a media buy for validation
9063
9191
  */
9064
9192
  export interface GetMediaBuyArtifactsRequest {
9193
+ /**
9194
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
9195
+ */
9196
+ adcp_major_version?: number;
9065
9197
  account?: AccountReference;
9066
9198
  /**
9067
9199
  * Media buy to get artifacts from
@@ -9188,6 +9320,10 @@ export type GetMediaBuyArtifactsResponse = {
9188
9320
  * Request payload for the get_creative_features task. Submits a creative manifest for evaluation by a governance agent, which analyzes the creative and returns scored feature values (brand safety, content categorization, quality metrics, etc.).
9189
9321
  */
9190
9322
  export interface GetCreativeFeaturesRequest {
9323
+ /**
9324
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
9325
+ */
9326
+ adcp_major_version?: number;
9191
9327
  creative_manifest: CreativeManifest;
9192
9328
  /**
9193
9329
  * Optional filter to specific features. If omitted, returns all available features.
@@ -9270,6 +9406,10 @@ export type DelegationAuthority = 'full' | 'execute_only' | 'propose_only';
9270
9406
  * Push campaign plans to the governance agent. A plan defines the authorized parameters for a campaign -- budget limits, channels, flight dates, and authorized markets.
9271
9407
  */
9272
9408
  export interface SyncPlansRequest {
9409
+ /**
9410
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
9411
+ */
9412
+ adcp_major_version?: number;
9273
9413
  /**
9274
9414
  * One or more campaign plans to sync.
9275
9415
  */
@@ -9507,6 +9647,10 @@ export type OutcomeType = 'completed' | 'failed' | 'delivery';
9507
9647
  * Report the outcome of an action to the governance agent. Called by the orchestrator (buyer-side agent) after a seller responds. This is the 'after' half of the governance loop. Sellers do not call this task -- they report delivery data via check_governance with phase 'delivery'.
9508
9648
  */
9509
9649
  export interface ReportPlanOutcomeRequest {
9650
+ /**
9651
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
9652
+ */
9653
+ adcp_major_version?: number;
9510
9654
  /**
9511
9655
  * The plan this outcome is for.
9512
9656
  */
@@ -9656,6 +9800,10 @@ export interface ReportPlanOutcomeResponse {
9656
9800
  export type GetPlanAuditLogsRequest = {
9657
9801
  [k: string]: unknown | undefined;
9658
9802
  } & {
9803
+ /**
9804
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
9805
+ */
9806
+ adcp_major_version?: number;
9659
9807
  /**
9660
9808
  * Plan IDs to retrieve. For a single plan, pass a one-element array.
9661
9809
  */
@@ -9924,6 +10072,10 @@ export type GovernancePhase = 'purchase' | 'modification' | 'delivery';
9924
10072
  * Universal governance check for campaign actions. The governance agent infers the check type from the fields present: tool+payload (intent check, orchestrator) or media_buy_id+planned_delivery (execution check, seller).
9925
10073
  */
9926
10074
  export interface CheckGovernanceRequest {
10075
+ /**
10076
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
10077
+ */
10078
+ adcp_major_version?: number;
9927
10079
  /**
9928
10080
  * Campaign governance plan identifier.
9929
10081
  */
@@ -10119,6 +10271,10 @@ export interface CheckGovernanceResponse {
10119
10271
  * Get offering details and availability before session handoff. Returns offering information, availability status, and optionally matching products based on context.
10120
10272
  */
10121
10273
  export interface SIGetOfferingRequest {
10274
+ /**
10275
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
10276
+ */
10277
+ adcp_major_version?: number;
10122
10278
  /**
10123
10279
  * Offering identifier from the catalog to get details for
10124
10280
  */
@@ -10249,6 +10405,10 @@ export interface SIGetOfferingResponse {
10249
10405
  * Host initiates a session with a brand agent
10250
10406
  */
10251
10407
  export interface SIInitiateSessionRequest {
10408
+ /**
10409
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
10410
+ */
10411
+ adcp_major_version?: number;
10252
10412
  /**
10253
10413
  * Conversation handoff from the host describing what the user needs
10254
10414
  */
@@ -10492,6 +10652,10 @@ export interface SIInitiateSessionResponse {
10492
10652
  export type SISendMessageRequest = {
10493
10653
  [k: string]: unknown | undefined;
10494
10654
  } & {
10655
+ /**
10656
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
10657
+ */
10658
+ adcp_major_version?: number;
10495
10659
  /**
10496
10660
  * Active session identifier
10497
10661
  */
@@ -10639,6 +10803,10 @@ export interface A2UIComponent {
10639
10803
  * Request to terminate an SI session
10640
10804
  */
10641
10805
  export interface SITerminateSessionRequest {
10806
+ /**
10807
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
10808
+ */
10809
+ adcp_major_version?: number;
10642
10810
  /**
10643
10811
  * Session identifier to terminate
10644
10812
  */
@@ -10723,6 +10891,10 @@ export interface SITerminateSessionResponse {
10723
10891
  * Request payload for get_adcp_capabilities task. Protocol-level capability discovery that works across all AdCP protocols.
10724
10892
  */
10725
10893
  export interface GetAdCPCapabilitiesRequest {
10894
+ /**
10895
+ * The AdCP major version the buyer's payloads conform to. When provided, the seller validates this against its supported major_versions and returns VERSION_UNSUPPORTED if the version is not in range. When omitted, the seller assumes the highest major version it supports.
10896
+ */
10897
+ adcp_major_version?: number;
10726
10898
  /**
10727
10899
  * Specific protocols to query capabilities for. If omitted, returns capabilities for all supported protocols.
10728
10900
  */
@@ -10743,7 +10915,7 @@ export interface GetAdCPCapabilitiesResponse {
10743
10915
  */
10744
10916
  adcp: {
10745
10917
  /**
10746
- * AdCP major versions supported by this seller. Major versions indicate breaking changes. When multiple versions are listed, the buyer declares its version during the capabilities handshake or via the adcp_version field on requests.
10918
+ * AdCP major versions supported by this seller. Major versions indicate breaking changes. When multiple versions are listed, the buyer declares its version via the adcp_major_version field on requests.
10747
10919
  */
10748
10920
  major_versions: number[];
10749
10921
  };
@@ -11319,6 +11491,10 @@ export interface GetAdCPCapabilitiesResponse {
11319
11491
  * Request parameters for listing accounts accessible to the authenticated agent
11320
11492
  */
11321
11493
  export interface ListAccountsRequest {
11494
+ /**
11495
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
11496
+ */
11497
+ adcp_major_version?: number;
11322
11498
  /**
11323
11499
  * Filter accounts by status. Omit to return accounts in all statuses.
11324
11500
  */
@@ -11351,6 +11527,10 @@ export interface ListAccountsResponse {
11351
11527
  * Sync advertiser accounts with a seller using upsert semantics. The agent declares which brands it represents, who operates on each brand's behalf, and the billing model. The seller provisions or links accounts accordingly, returning per-account status.
11352
11528
  */
11353
11529
  export interface SyncAccountsRequest {
11530
+ /**
11531
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
11532
+ */
11533
+ adcp_major_version?: number;
11354
11534
  /**
11355
11535
  * Advertiser accounts to sync
11356
11536
  */
@@ -11488,10 +11668,103 @@ export interface SyncAccountsError {
11488
11668
  context?: ContextObject;
11489
11669
  ext?: ExtensionObject;
11490
11670
  }
11671
+ /**
11672
+ * Sync governance agent endpoints against specific accounts. The seller persists these governance agents and calls them for approval during media buy lifecycle events via check_governance. Uses replace semantics: each call replaces any previously synced agents on the specified accounts. The seller MUST verify that the authenticated agent has authority over each referenced account before persisting governance agents.
11673
+ */
11674
+ export interface SyncGovernanceRequest {
11675
+ /**
11676
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
11677
+ */
11678
+ adcp_major_version?: number;
11679
+ /**
11680
+ * Per-account governance agent configuration. Each entry pairs an account reference with the governance agents for that account.
11681
+ */
11682
+ accounts: {
11683
+ account: AccountReference;
11684
+ /**
11685
+ * Governance agent endpoints for this account. The seller calls these agents via check_governance during media buy lifecycle events.
11686
+ */
11687
+ governance_agents: {
11688
+ /**
11689
+ * Governance agent endpoint URL. Must use HTTPS.
11690
+ */
11691
+ url: string;
11692
+ /**
11693
+ * Authentication the seller presents when calling this governance agent.
11694
+ */
11695
+ authentication: {
11696
+ schemes: AuthenticationScheme[];
11697
+ /**
11698
+ * Authentication credential (e.g., Bearer token).
11699
+ */
11700
+ credentials: string;
11701
+ };
11702
+ /**
11703
+ * Governance categories this agent handles (e.g., ['budget_authority', 'strategic_alignment']). When omitted, the agent handles all categories.
11704
+ */
11705
+ categories?: string[];
11706
+ }[];
11707
+ }[];
11708
+ context?: ContextObject;
11709
+ ext?: ExtensionObject;
11710
+ }
11711
+ /**
11712
+ * Response from governance agent sync. Returns per-account results confirming sync, or operation-level errors on complete failure.
11713
+ */
11714
+ export type SyncGovernanceResponse = SyncGovernanceSuccess | SyncGovernanceError;
11715
+ /**
11716
+ * Sync processed — individual accounts may have errors
11717
+ */
11718
+ export interface SyncGovernanceSuccess {
11719
+ /**
11720
+ * Per-account sync results
11721
+ */
11722
+ accounts: {
11723
+ account: AccountReference;
11724
+ /**
11725
+ * Sync result. synced: governance agents persisted. failed: could not complete (see errors).
11726
+ */
11727
+ status: 'synced' | 'failed';
11728
+ /**
11729
+ * Governance agents now synced on this account. Reflects the persisted state after sync.
11730
+ */
11731
+ governance_agents?: {
11732
+ /**
11733
+ * Governance agent endpoint URL.
11734
+ */
11735
+ url: string;
11736
+ /**
11737
+ * Governance categories this agent handles.
11738
+ */
11739
+ categories?: string[];
11740
+ }[];
11741
+ /**
11742
+ * Per-account errors (only present when status is 'failed')
11743
+ */
11744
+ errors?: Error[];
11745
+ }[];
11746
+ context?: ContextObject;
11747
+ ext?: ExtensionObject;
11748
+ }
11749
+ /**
11750
+ * Operation failed completely, no accounts were processed
11751
+ */
11752
+ export interface SyncGovernanceError {
11753
+ /**
11754
+ * Operation-level errors (e.g., authentication failure, service unavailable)
11755
+ */
11756
+ errors: Error[];
11757
+ context?: ContextObject;
11758
+ ext?: ExtensionObject;
11759
+ }
11491
11760
  /**
11492
11761
  * Reports how a vendor's service was consumed after campaign delivery. Used by orchestrators (DSPs, storefronts) to inform vendor agents (signals, governance, creative) what was used so the vendor can track earned revenue and verify billing. Records can span multiple accounts and campaigns in a single request.
11493
11762
  */
11494
11763
  export interface ReportUsageRequest {
11764
+ /**
11765
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
11766
+ */
11767
+ adcp_major_version?: number;
11495
11768
  /**
11496
11769
  * Client-generated unique key for this request. If a request with the same key has already been accepted, the server returns the original response without re-processing. MUST be unique per (seller, request) pair to prevent cross-seller correlation. Use a fresh UUID v4 for each request. Prevents duplicate billing on retries.
11497
11770
  */
@@ -11565,6 +11838,10 @@ export interface ReportUsageResponse {
11565
11838
  * Request financial status for an operator-billed account. Returns spend summary, credit/balance status, and invoice history. Only applicable when the seller declares account_financials capability.
11566
11839
  */
11567
11840
  export interface GetAccountFinancialsRequest {
11841
+ /**
11842
+ * The AdCP major version the buyer's payloads conform to. Sellers validate against their supported major_versions and return VERSION_UNSUPPORTED if unsupported. When omitted, the seller assumes its highest supported version.
11843
+ */
11844
+ adcp_major_version?: number;
11568
11845
  account: AccountReference;
11569
11846
  period?: DateRange;
11570
11847
  context?: ContextObject;