@adcp/client 4.21.0 → 4.22.0

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 +45 -0
  32. package/dist/lib/server/serve.d.ts.map +1 -0
  33. package/dist/lib/server/serve.js +86 -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 +292 -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 +162 -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
@@ -1315,14 +1315,14 @@ export declare const MaterialDeadlineSchema: z.ZodObject<{
1315
1315
  due_at: z.ZodString;
1316
1316
  label: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1317
1317
  }, z.core.$loose>;
1318
- export declare const PropertyTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>;
1319
- export declare const PropertyIdentifierTypesSchema: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
1318
+ export declare const PropertyTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>;
1319
+ export declare const PropertyIdentifierTypesSchema: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
1320
1320
  export declare const PropertySchema: z.ZodObject<{
1321
1321
  property_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1322
- property_type: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>;
1322
+ property_type: z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>;
1323
1323
  name: z.ZodString;
1324
1324
  identifiers: z.ZodArray<z.ZodObject<{
1325
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
1325
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
1326
1326
  value: z.ZodString;
1327
1327
  }, z.core.$loose>>;
1328
1328
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
@@ -2648,6 +2648,7 @@ export declare const InstallmentDeadlinesSchema: z.ZodObject<{
2648
2648
  export declare const AssetContentTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"image">, z.ZodLiteral<"video">, z.ZodLiteral<"audio">, z.ZodLiteral<"text">, z.ZodLiteral<"markdown">, z.ZodLiteral<"html">, z.ZodLiteral<"css">, z.ZodLiteral<"javascript">, z.ZodLiteral<"vast">, z.ZodLiteral<"daast">, z.ZodLiteral<"url">, z.ZodLiteral<"webhook">, z.ZodLiteral<"brief">, z.ZodLiteral<"catalog">]>;
2649
2649
  export declare const WCAGLevelSchema: z.ZodUnion<readonly [z.ZodLiteral<"A">, z.ZodLiteral<"AA">, z.ZodLiteral<"AAA">]>;
2650
2650
  export declare const ListCreativeFormatsRequestSchema: z.ZodObject<{
2651
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2651
2652
  format_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
2652
2653
  agent_url: z.ZodString;
2653
2654
  id: z.ZodString;
@@ -4154,6 +4155,7 @@ export declare const UpdateMediaBuySuccessSchema: z.ZodObject<{
4154
4155
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
4155
4156
  }, z.core.$loose>;
4156
4157
  export declare const GetMediaBuysRequestSchema: z.ZodObject<{
4158
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4157
4159
  account: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
4158
4160
  account_id: z.ZodString;
4159
4161
  }, z.core.$loose>, z.ZodObject<{
@@ -4222,6 +4224,7 @@ export declare const PackageStatusSchema: z.ZodObject<{
4222
4224
  export declare const AttributionModelSchema: z.ZodUnion<readonly [z.ZodLiteral<"last_touch">, z.ZodLiteral<"first_touch">, z.ZodLiteral<"linear">, z.ZodLiteral<"time_decay">, z.ZodLiteral<"data_driven">]>;
4223
4225
  export declare const SortMetricSchema: z.ZodUnion<readonly [z.ZodLiteral<"impressions">, z.ZodLiteral<"spend">, z.ZodLiteral<"clicks">, z.ZodLiteral<"ctr">, z.ZodLiteral<"views">, z.ZodLiteral<"completed_views">, z.ZodLiteral<"completion_rate">, z.ZodLiteral<"conversions">, z.ZodLiteral<"conversion_value">, z.ZodLiteral<"roas">, z.ZodLiteral<"cost_per_acquisition">, z.ZodLiteral<"new_to_brand_rate">, z.ZodLiteral<"leads">, z.ZodLiteral<"grps">, z.ZodLiteral<"reach">, z.ZodLiteral<"frequency">, z.ZodLiteral<"engagements">, z.ZodLiteral<"follows">, z.ZodLiteral<"saves">, z.ZodLiteral<"profile_visits">, z.ZodLiteral<"engagement_rate">, z.ZodLiteral<"cost_per_click">]>;
4224
4226
  export declare const GetMediaBuyDeliveryRequestSchema: z.ZodObject<{
4227
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4225
4228
  account: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
4226
4229
  account_id: z.ZodString;
4227
4230
  }, z.core.$loose>, z.ZodObject<{
@@ -4378,6 +4381,7 @@ export declare const ProvidePerformanceFeedbackErrorSchema: z.ZodObject<{
4378
4381
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
4379
4382
  }, z.core.$loose>;
4380
4383
  export declare const SyncEventSourcesRequestSchema: z.ZodObject<{
4384
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4381
4385
  account: z.ZodUnion<readonly [z.ZodObject<{
4382
4386
  account_id: z.ZodString;
4383
4387
  }, z.core.$loose>, z.ZodObject<{
@@ -4498,6 +4502,7 @@ export declare const AudienceMemberSchema: z.ZodObject<{
4498
4502
  }, z.core.$loose>;
4499
4503
  export declare const ConsentBasisSchema: z.ZodUnion<readonly [z.ZodLiteral<"consent">, z.ZodLiteral<"legitimate_interest">, z.ZodLiteral<"contract">, z.ZodLiteral<"legal_obligation">]>;
4500
4504
  export declare const SyncAudiencesRequestSchema: z.ZodObject<{
4505
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4501
4506
  account: z.ZodUnion<readonly [z.ZodObject<{
4502
4507
  account_id: z.ZodString;
4503
4508
  }, z.core.$loose>, z.ZodObject<{
@@ -4590,6 +4595,7 @@ export declare const SyncAudiencesSuccessSchema: z.ZodObject<{
4590
4595
  }, z.core.$loose>;
4591
4596
  export declare const ValidationModeSchema: z.ZodUnion<readonly [z.ZodLiteral<"strict">, z.ZodLiteral<"lenient">]>;
4592
4597
  export declare const SyncCatalogsRequestSchema: z.ZodObject<{
4598
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4593
4599
  account: z.ZodUnion<readonly [z.ZodObject<{
4594
4600
  account_id: z.ZodString;
4595
4601
  }, z.core.$loose>, z.ZodObject<{
@@ -7200,6 +7206,7 @@ export declare const BuildCreativeMultiSuccessSchema: z.ZodObject<{
7200
7206
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
7201
7207
  }, z.core.$loose>;
7202
7208
  export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObject<{
7209
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7203
7210
  request_type: z.ZodLiteral<"single">;
7204
7211
  format_id: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7205
7212
  agent_url: z.ZodString;
@@ -8007,6 +8014,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
8007
8014
  context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
8008
8015
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
8009
8016
  }, z.core.$loose>, z.ZodObject<{
8017
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8010
8018
  request_type: z.ZodLiteral<"batch">;
8011
8019
  requests: z.ZodArray<z.ZodObject<{
8012
8020
  format_id: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8818,6 +8826,7 @@ export declare const PreviewCreativeRequestSchema: z.ZodUnion<readonly [z.ZodObj
8818
8826
  context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
8819
8827
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
8820
8828
  }, z.core.$loose>, z.ZodObject<{
8829
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
8821
8830
  request_type: z.ZodLiteral<"variant">;
8822
8831
  variant_id: z.ZodString;
8823
8832
  creative_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -9739,6 +9748,7 @@ export declare const PreviewBatchResultErrorSchema: z.ZodObject<{
9739
9748
  success: z.ZodOptional<z.ZodNullable<z.ZodLiteral<false>>>;
9740
9749
  }, z.core.$loose>;
9741
9750
  export declare const GetCreativeDeliveryRequestSchema: z.ZodObject<{
9751
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9742
9752
  account: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
9743
9753
  account_id: z.ZodString;
9744
9754
  }, z.core.$loose>, z.ZodObject<{
@@ -9762,7 +9772,7 @@ export declare const GetCreativeDeliveryRequestSchema: z.ZodObject<{
9762
9772
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
9763
9773
  }, z.core.$loose>;
9764
9774
  export declare const IdentifierSchema: z.ZodObject<{
9765
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
9775
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
9766
9776
  value: z.ZodString;
9767
9777
  }, z.core.$loose>;
9768
9778
  export declare const CreativeVariantSchema: z.ZodIntersection<z.ZodObject<{
@@ -10621,7 +10631,7 @@ export declare const CreativeVariantSchema: z.ZodIntersection<z.ZodObject<{
10621
10631
  context_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10622
10632
  artifact: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10623
10633
  property_id: z.ZodObject<{
10624
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
10634
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
10625
10635
  value: z.ZodString;
10626
10636
  }, z.core.$loose>;
10627
10637
  artifact_id: z.ZodString;
@@ -10684,6 +10694,7 @@ export declare const CreativeVariableSchema: z.ZodObject<{
10684
10694
  required: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10685
10695
  }, z.core.$loose>;
10686
10696
  export declare const SyncCreativesRequestSchema: z.ZodObject<{
10697
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
10687
10698
  account: z.ZodUnion<readonly [z.ZodObject<{
10688
10699
  account_id: z.ZodString;
10689
10700
  }, z.core.$loose>, z.ZodObject<{
@@ -11662,6 +11673,7 @@ export declare const DeploymentSchema: z.ZodUnion<readonly [z.ZodObject<{
11662
11673
  deployed_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11663
11674
  }, z.core.$loose>]>;
11664
11675
  export declare const ActivateSignalRequestSchema: z.ZodObject<{
11676
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11665
11677
  action: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"activate">, z.ZodLiteral<"deactivate">]>>>;
11666
11678
  signal_agent_segment_id: z.ZodString;
11667
11679
  destinations: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
@@ -11750,7 +11762,7 @@ export declare const PublisherPropertyIDsSourceSchema: z.ZodObject<{
11750
11762
  export declare const DirectIdentifiersSourceSchema: z.ZodObject<{
11751
11763
  selection_type: z.ZodLiteral<"identifiers">;
11752
11764
  identifiers: z.ZodArray<z.ZodObject<{
11753
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11765
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11754
11766
  value: z.ZodString;
11755
11767
  }, z.core.$loose>>;
11756
11768
  }, z.core.$loose>;
@@ -11765,7 +11777,7 @@ export declare const BasePropertySourceSchema: z.ZodUnion<readonly [z.ZodObject<
11765
11777
  }, z.core.$loose>, z.ZodObject<{
11766
11778
  selection_type: z.ZodLiteral<"identifiers">;
11767
11779
  identifiers: z.ZodArray<z.ZodObject<{
11768
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11780
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11769
11781
  value: z.ZodString;
11770
11782
  }, z.core.$loose>>;
11771
11783
  }, z.core.$loose>]>;
@@ -11779,7 +11791,7 @@ export declare const FeatureRequirementSchema: z.ZodObject<{
11779
11791
  export declare const PropertyListFiltersSchema: z.ZodObject<{
11780
11792
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11781
11793
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
11782
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11794
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11783
11795
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11784
11796
  feature_id: z.ZodString;
11785
11797
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -11788,11 +11800,12 @@ export declare const PropertyListFiltersSchema: z.ZodObject<{
11788
11800
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
11789
11801
  }, z.core.$loose>>>>;
11790
11802
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11791
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11803
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11792
11804
  value: z.ZodString;
11793
11805
  }, z.core.$loose>>>>;
11794
11806
  }, z.core.$loose>;
11795
11807
  export declare const UpdatePropertyListRequestSchema: z.ZodObject<{
11808
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11796
11809
  list_id: z.ZodString;
11797
11810
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11798
11811
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -11807,14 +11820,14 @@ export declare const UpdatePropertyListRequestSchema: z.ZodObject<{
11807
11820
  }, z.core.$loose>, z.ZodObject<{
11808
11821
  selection_type: z.ZodLiteral<"identifiers">;
11809
11822
  identifiers: z.ZodArray<z.ZodObject<{
11810
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11823
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11811
11824
  value: z.ZodString;
11812
11825
  }, z.core.$loose>>;
11813
11826
  }, z.core.$loose>]>>>>;
11814
11827
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11815
11828
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11816
11829
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
11817
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11830
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11818
11831
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11819
11832
  feature_id: z.ZodString;
11820
11833
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -11823,7 +11836,7 @@ export declare const UpdatePropertyListRequestSchema: z.ZodObject<{
11823
11836
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
11824
11837
  }, z.core.$loose>>>>;
11825
11838
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11826
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11839
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11827
11840
  value: z.ZodString;
11828
11841
  }, z.core.$loose>>>>;
11829
11842
  }, z.core.$loose>>>;
@@ -11852,14 +11865,14 @@ export declare const PropertyListSchema: z.ZodObject<{
11852
11865
  }, z.core.$loose>, z.ZodObject<{
11853
11866
  selection_type: z.ZodLiteral<"identifiers">;
11854
11867
  identifiers: z.ZodArray<z.ZodObject<{
11855
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11868
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11856
11869
  value: z.ZodString;
11857
11870
  }, z.core.$loose>>;
11858
11871
  }, z.core.$loose>]>>>>;
11859
11872
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11860
11873
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11861
11874
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
11862
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11875
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11863
11876
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11864
11877
  feature_id: z.ZodString;
11865
11878
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -11868,7 +11881,7 @@ export declare const PropertyListSchema: z.ZodObject<{
11868
11881
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
11869
11882
  }, z.core.$loose>>>>;
11870
11883
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11871
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11884
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11872
11885
  value: z.ZodString;
11873
11886
  }, z.core.$loose>>>>;
11874
11887
  }, z.core.$loose>>>;
@@ -11883,6 +11896,7 @@ export declare const PropertyListSchema: z.ZodObject<{
11883
11896
  property_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11884
11897
  }, z.core.$loose>;
11885
11898
  export declare const GetPropertyListRequestSchema: z.ZodObject<{
11899
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11886
11900
  list_id: z.ZodString;
11887
11901
  resolve: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11888
11902
  pagination: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -11909,14 +11923,14 @@ export declare const GetPropertyListResponseSchema: z.ZodObject<{
11909
11923
  }, z.core.$loose>, z.ZodObject<{
11910
11924
  selection_type: z.ZodLiteral<"identifiers">;
11911
11925
  identifiers: z.ZodArray<z.ZodObject<{
11912
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11926
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11913
11927
  value: z.ZodString;
11914
11928
  }, z.core.$loose>>;
11915
11929
  }, z.core.$loose>]>>>>;
11916
11930
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11917
11931
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11918
11932
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
11919
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11933
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11920
11934
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11921
11935
  feature_id: z.ZodString;
11922
11936
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -11925,7 +11939,7 @@ export declare const GetPropertyListResponseSchema: z.ZodObject<{
11925
11939
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
11926
11940
  }, z.core.$loose>>>>;
11927
11941
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11928
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11942
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11929
11943
  value: z.ZodString;
11930
11944
  }, z.core.$loose>>>>;
11931
11945
  }, z.core.$loose>>>;
@@ -11940,7 +11954,7 @@ export declare const GetPropertyListResponseSchema: z.ZodObject<{
11940
11954
  property_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11941
11955
  }, z.core.$loose>;
11942
11956
  identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11943
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11957
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11944
11958
  value: z.ZodString;
11945
11959
  }, z.core.$loose>>>>;
11946
11960
  pagination: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -11951,12 +11965,13 @@ export declare const GetPropertyListResponseSchema: z.ZodObject<{
11951
11965
  resolved_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11952
11966
  cache_valid_until: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11953
11967
  coverage_gaps: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
11954
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
11968
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11955
11969
  value: z.ZodString;
11956
11970
  }, z.core.$loose>>>>>;
11957
11971
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
11958
11972
  }, z.core.$loose>;
11959
11973
  export declare const ListPropertyListsRequestSchema: z.ZodObject<{
11974
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
11960
11975
  principal: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11961
11976
  name_contains: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11962
11977
  pagination: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -11983,14 +11998,14 @@ export declare const ListPropertyListsResponseSchema: z.ZodObject<{
11983
11998
  }, z.core.$loose>, z.ZodObject<{
11984
11999
  selection_type: z.ZodLiteral<"identifiers">;
11985
12000
  identifiers: z.ZodArray<z.ZodObject<{
11986
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
12001
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
11987
12002
  value: z.ZodString;
11988
12003
  }, z.core.$loose>>;
11989
12004
  }, z.core.$loose>]>>>>;
11990
12005
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11991
12006
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
11992
12007
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
11993
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
12008
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
11994
12009
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
11995
12010
  feature_id: z.ZodString;
11996
12011
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -11999,7 +12014,7 @@ export declare const ListPropertyListsResponseSchema: z.ZodObject<{
11999
12014
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
12000
12015
  }, z.core.$loose>>>>;
12001
12016
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
12002
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
12017
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
12003
12018
  value: z.ZodString;
12004
12019
  }, z.core.$loose>>>>;
12005
12020
  }, z.core.$loose>>>;
@@ -12021,6 +12036,7 @@ export declare const ListPropertyListsResponseSchema: z.ZodObject<{
12021
12036
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
12022
12037
  }, z.core.$loose>;
12023
12038
  export declare const DeletePropertyListRequestSchema: z.ZodObject<{
12039
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12024
12040
  list_id: z.ZodString;
12025
12041
  context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
12026
12042
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
@@ -12032,6 +12048,7 @@ export declare const DeletePropertyListResponseSchema: z.ZodObject<{
12032
12048
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
12033
12049
  }, z.core.$loose>;
12034
12050
  export declare const ListContentStandardsRequestSchema: z.ZodObject<{
12051
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12035
12052
  channels: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
12036
12053
  languages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
12037
12054
  countries: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
@@ -12348,6 +12365,7 @@ export declare const ArtifactSchema: z.ZodObject<{
12348
12365
  }, z.core.$loose>>>;
12349
12366
  }, z.core.$loose>;
12350
12367
  export declare const GetContentStandardsRequestSchema: z.ZodObject<{
12368
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
12351
12369
  standards_id: z.ZodString;
12352
12370
  context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
12353
12371
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
@@ -13143,6 +13161,7 @@ export declare const ContentStandardsSchema: z.ZodObject<{
13143
13161
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
13144
13162
  }, z.core.$loose>;
13145
13163
  export declare const CreateContentStandardsRequestSchema: z.ZodObject<{
13164
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13146
13165
  scope: z.ZodObject<{
13147
13166
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
13148
13167
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
@@ -13774,6 +13793,7 @@ export declare const CreateContentStandardsResponseSchema: z.ZodUnion<readonly [
13774
13793
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
13775
13794
  }, z.core.$loose>]>;
13776
13795
  export declare const UpdateContentStandardsRequestSchema: z.ZodObject<{
13796
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13777
13797
  standards_id: z.ZodString;
13778
13798
  scope: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13779
13799
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
@@ -14409,6 +14429,7 @@ export declare const UpdateContentStandardsErrorSchema: z.ZodObject<{
14409
14429
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
14410
14430
  }, z.core.$loose>;
14411
14431
  export declare const CalibrateContentRequestSchema: z.ZodObject<{
14432
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
14412
14433
  standards_id: z.ZodString;
14413
14434
  artifact: z.ZodObject<{
14414
14435
  property_rid: z.ZodString;
@@ -14732,6 +14753,7 @@ export declare const CalibrateContentResponseSchema: z.ZodUnion<readonly [z.ZodO
14732
14753
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
14733
14754
  }, z.core.$loose>]>;
14734
14755
  export declare const ValidateContentDeliveryRequestSchema: z.ZodObject<{
14756
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
14735
14757
  standards_id: z.ZodString;
14736
14758
  records: z.ZodArray<z.ZodObject<{
14737
14759
  record_id: z.ZodString;
@@ -15077,6 +15099,7 @@ export declare const ValidateContentDeliveryResponseSchema: z.ZodUnion<readonly
15077
15099
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
15078
15100
  }, z.core.$loose>]>;
15079
15101
  export declare const GetMediaBuyArtifactsRequestSchema: z.ZodObject<{
15102
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15080
15103
  account: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
15081
15104
  account_id: z.ZodString;
15082
15105
  }, z.core.$loose>, z.ZodObject<{
@@ -15437,6 +15460,7 @@ export declare const GetMediaBuyArtifactsResponseSchema: z.ZodUnion<readonly [z.
15437
15460
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
15438
15461
  }, z.core.$loose>]>;
15439
15462
  export declare const GetCreativeFeaturesRequestSchema: z.ZodObject<{
15463
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
15440
15464
  creative_manifest: z.ZodObject<{
15441
15465
  format_id: z.ZodObject<{
15442
15466
  agent_url: z.ZodString;
@@ -16364,6 +16388,7 @@ export declare const SyncPlansResponseSchema: z.ZodObject<{
16364
16388
  }, z.core.$loose>;
16365
16389
  export declare const OutcomeTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"completed">, z.ZodLiteral<"failed">, z.ZodLiteral<"delivery">]>;
16366
16390
  export declare const ReportPlanOutcomeRequestSchema: z.ZodObject<{
16391
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16367
16392
  plan_id: z.ZodString;
16368
16393
  check_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16369
16394
  idempotency_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -16483,6 +16508,7 @@ export declare const ReportPlanOutcomeResponseSchema: z.ZodObject<{
16483
16508
  }, z.core.$loose>>>;
16484
16509
  }, z.core.$loose>;
16485
16510
  export declare const GetPlanAuditLogsRequestSchema: z.ZodObject<{
16511
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16486
16512
  plan_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
16487
16513
  portfolio_plan_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
16488
16514
  include_entries: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -16566,6 +16592,7 @@ export declare const GetPlanAuditLogsResponseSchema: z.ZodObject<{
16566
16592
  }, z.core.$loose>;
16567
16593
  export declare const GovernancePhaseSchema: z.ZodUnion<readonly [z.ZodLiteral<"purchase">, z.ZodLiteral<"modification">, z.ZodLiteral<"delivery">]>;
16568
16594
  export declare const CheckGovernanceRequestSchema: z.ZodObject<{
16595
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16569
16596
  plan_id: z.ZodString;
16570
16597
  caller: z.ZodString;
16571
16598
  tool: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -16719,6 +16746,7 @@ export declare const CheckGovernanceResponseSchema: z.ZodObject<{
16719
16746
  governance_context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16720
16747
  }, z.core.$loose>;
16721
16748
  export declare const SIGetOfferingRequestSchema: z.ZodObject<{
16749
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16722
16750
  offering_id: z.ZodString;
16723
16751
  context: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16724
16752
  include_products: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -16872,6 +16900,7 @@ export declare const SIInitiateSessionResponseSchema: z.ZodObject<{
16872
16900
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
16873
16901
  }, z.core.$loose>;
16874
16902
  export declare const SISendMessageRequestSchema: z.ZodObject<{
16903
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16875
16904
  session_id: z.ZodString;
16876
16905
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16877
16906
  action_response: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -16886,6 +16915,7 @@ export declare const A2UIComponentSchema: z.ZodObject<{
16886
16915
  component: z.ZodRecord<z.ZodString, z.ZodObject<{}, z.core.$loose>>;
16887
16916
  }, z.core.$loose>;
16888
16917
  export declare const SITerminateSessionRequestSchema: z.ZodObject<{
16918
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16889
16919
  session_id: z.ZodString;
16890
16920
  reason: z.ZodUnion<readonly [z.ZodLiteral<"handoff_transaction">, z.ZodLiteral<"handoff_complete">, z.ZodLiteral<"user_exit">, z.ZodLiteral<"session_timeout">, z.ZodLiteral<"host_terminated">]>;
16891
16921
  termination_context: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -16924,6 +16954,7 @@ export declare const SITerminateSessionResponseSchema: z.ZodObject<{
16924
16954
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
16925
16955
  }, z.core.$loose>;
16926
16956
  export declare const GetAdCPCapabilitiesRequestSchema: z.ZodObject<{
16957
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16927
16958
  protocols: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"media_buy">, z.ZodLiteral<"signals">, z.ZodLiteral<"governance">, z.ZodLiteral<"sponsored_intelligence">, z.ZodLiteral<"creative">]>>>>;
16928
16959
  context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
16929
16960
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
@@ -17154,6 +17185,7 @@ export declare const GetAdCPCapabilitiesResponseSchema: z.ZodObject<{
17154
17185
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17155
17186
  }, z.core.$loose>;
17156
17187
  export declare const ListAccountsRequestSchema: z.ZodObject<{
17188
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17157
17189
  status: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"active">, z.ZodLiteral<"pending_approval">, z.ZodLiteral<"rejected">, z.ZodLiteral<"payment_required">, z.ZodLiteral<"suspended">, z.ZodLiteral<"closed">]>>>;
17158
17190
  pagination: z.ZodOptional<z.ZodNullable<z.ZodObject<{
17159
17191
  max_results: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -17240,6 +17272,7 @@ export declare const ListAccountsResponseSchema: z.ZodObject<{
17240
17272
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17241
17273
  }, z.core.$loose>;
17242
17274
  export declare const SyncAccountsRequestSchema: z.ZodObject<{
17275
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17243
17276
  accounts: z.ZodArray<z.ZodObject<{
17244
17277
  brand: z.ZodObject<{
17245
17278
  domain: z.ZodString;
@@ -17370,7 +17403,76 @@ export declare const SyncAccountsErrorSchema: z.ZodObject<{
17370
17403
  context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17371
17404
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17372
17405
  }, z.core.$loose>;
17406
+ export declare const SyncGovernanceRequestSchema: z.ZodObject<{
17407
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17408
+ accounts: z.ZodArray<z.ZodObject<{
17409
+ account: z.ZodUnion<readonly [z.ZodObject<{
17410
+ account_id: z.ZodString;
17411
+ }, z.core.$loose>, z.ZodObject<{
17412
+ brand: z.ZodObject<{
17413
+ domain: z.ZodString;
17414
+ brand_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17415
+ }, z.core.$loose>;
17416
+ operator: z.ZodString;
17417
+ sandbox: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
17418
+ }, z.core.$loose>]>;
17419
+ governance_agents: z.ZodArray<z.ZodObject<{
17420
+ url: z.ZodString;
17421
+ authentication: z.ZodObject<{
17422
+ schemes: z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"Bearer">, z.ZodLiteral<"HMAC-SHA256">]>>;
17423
+ credentials: z.ZodString;
17424
+ }, z.core.$loose>;
17425
+ categories: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
17426
+ }, z.core.$loose>>;
17427
+ }, z.core.$loose>>;
17428
+ context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17429
+ ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17430
+ }, z.core.$loose>;
17431
+ export declare const SyncGovernanceSuccessSchema: z.ZodObject<{
17432
+ accounts: z.ZodArray<z.ZodObject<{
17433
+ account: z.ZodUnion<readonly [z.ZodObject<{
17434
+ account_id: z.ZodString;
17435
+ }, z.core.$loose>, z.ZodObject<{
17436
+ brand: z.ZodObject<{
17437
+ domain: z.ZodString;
17438
+ brand_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17439
+ }, z.core.$loose>;
17440
+ operator: z.ZodString;
17441
+ sandbox: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
17442
+ }, z.core.$loose>]>;
17443
+ status: z.ZodUnion<readonly [z.ZodLiteral<"synced">, z.ZodLiteral<"failed">]>;
17444
+ governance_agents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
17445
+ url: z.ZodString;
17446
+ categories: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
17447
+ }, z.core.$loose>>>>;
17448
+ errors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
17449
+ code: z.ZodString;
17450
+ message: z.ZodString;
17451
+ field: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17452
+ suggestion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17453
+ retry_after: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17454
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17455
+ recovery: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"transient">, z.ZodLiteral<"correctable">, z.ZodLiteral<"terminal">]>>>;
17456
+ }, z.core.$loose>>>>;
17457
+ }, z.core.$loose>>;
17458
+ context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17459
+ ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17460
+ }, z.core.$loose>;
17461
+ export declare const SyncGovernanceErrorSchema: z.ZodObject<{
17462
+ errors: z.ZodArray<z.ZodObject<{
17463
+ code: z.ZodString;
17464
+ message: z.ZodString;
17465
+ field: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17466
+ suggestion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17467
+ retry_after: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17468
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17469
+ recovery: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"transient">, z.ZodLiteral<"correctable">, z.ZodLiteral<"terminal">]>>>;
17470
+ }, z.core.$loose>>;
17471
+ context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17472
+ ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
17473
+ }, z.core.$loose>;
17373
17474
  export declare const ReportUsageRequestSchema: z.ZodObject<{
17475
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
17374
17476
  idempotency_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17375
17477
  reporting_period: z.ZodObject<{
17376
17478
  start: z.ZodString;
@@ -22196,6 +22298,7 @@ export declare const BaseIndividualAssetSchema: z.ZodObject<{
22196
22298
  }, z.core.$loose>>>>;
22197
22299
  }, z.core.$loose>;
22198
22300
  export declare const PackageRequestSchema: z.ZodObject<{
22301
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
22199
22302
  product_id: z.ZodString;
22200
22303
  format_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
22201
22304
  agent_url: z.ZodString;
@@ -25416,6 +25519,7 @@ export declare const GetMediaBuyDeliveryResponseSchema: z.ZodObject<{
25416
25519
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
25417
25520
  }, z.core.$loose>;
25418
25521
  export declare const ProvidePerformanceFeedbackRequestSchema: z.ZodObject<{
25522
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
25419
25523
  media_buy_id: z.ZodString;
25420
25524
  idempotency_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25421
25525
  measurement_period: z.ZodObject<{
@@ -25596,6 +25700,7 @@ export declare const SyncAudiencesResponseSchema: z.ZodUnion<readonly [z.ZodObje
25596
25700
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
25597
25701
  }, z.core.$loose>]>;
25598
25702
  export declare const BuildCreativeRequestSchema: z.ZodObject<{
25703
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
25599
25704
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25600
25705
  creative_manifest: z.ZodOptional<z.ZodNullable<z.ZodObject<{
25601
25706
  format_id: z.ZodObject<{
@@ -27371,7 +27476,7 @@ export declare const GetCreativeDeliveryResponseSchema: z.ZodObject<{
27371
27476
  context_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27372
27477
  artifact: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27373
27478
  property_id: z.ZodObject<{
27374
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
27479
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
27375
27480
  value: z.ZodString;
27376
27481
  }, z.core.$loose>;
27377
27482
  artifact_id: z.ZodString;
@@ -27399,6 +27504,7 @@ export declare const GetCreativeDeliveryResponseSchema: z.ZodObject<{
27399
27504
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
27400
27505
  }, z.core.$loose>;
27401
27506
  export declare const ListCreativesRequestSchema: z.ZodObject<{
27507
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
27402
27508
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
27403
27509
  accounts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
27404
27510
  account_id: z.ZodString;
@@ -28312,6 +28418,7 @@ export declare const ListCreativesResponseSchema: z.ZodObject<{
28312
28418
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
28313
28419
  }, z.core.$loose>;
28314
28420
  export declare const GetSignalsRequestSchema: z.ZodObject<{
28421
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
28315
28422
  account: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodObject<{
28316
28423
  account_id: z.ZodString;
28317
28424
  }, z.core.$loose>, z.ZodObject<{
@@ -28444,6 +28551,7 @@ export declare const ActivateSignalResponseSchema: z.ZodUnion<readonly [z.ZodObj
28444
28551
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
28445
28552
  }, z.core.$loose>]>;
28446
28553
  export declare const CreatePropertyListRequestSchema: z.ZodObject<{
28554
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
28447
28555
  name: z.ZodString;
28448
28556
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28449
28557
  base_properties: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
@@ -28457,14 +28565,14 @@ export declare const CreatePropertyListRequestSchema: z.ZodObject<{
28457
28565
  }, z.core.$loose>, z.ZodObject<{
28458
28566
  selection_type: z.ZodLiteral<"identifiers">;
28459
28567
  identifiers: z.ZodArray<z.ZodObject<{
28460
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
28568
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
28461
28569
  value: z.ZodString;
28462
28570
  }, z.core.$loose>>;
28463
28571
  }, z.core.$loose>]>>>>;
28464
28572
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
28465
28573
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
28466
28574
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
28467
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
28575
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
28468
28576
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
28469
28577
  feature_id: z.ZodString;
28470
28578
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -28473,7 +28581,7 @@ export declare const CreatePropertyListRequestSchema: z.ZodObject<{
28473
28581
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
28474
28582
  }, z.core.$loose>>>>;
28475
28583
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
28476
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
28584
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
28477
28585
  value: z.ZodString;
28478
28586
  }, z.core.$loose>>>>;
28479
28587
  }, z.core.$loose>>>;
@@ -28502,14 +28610,14 @@ export declare const CreatePropertyListResponseSchema: z.ZodObject<{
28502
28610
  }, z.core.$loose>, z.ZodObject<{
28503
28611
  selection_type: z.ZodLiteral<"identifiers">;
28504
28612
  identifiers: z.ZodArray<z.ZodObject<{
28505
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
28613
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
28506
28614
  value: z.ZodString;
28507
28615
  }, z.core.$loose>>;
28508
28616
  }, z.core.$loose>]>>>>;
28509
28617
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
28510
28618
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
28511
28619
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
28512
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
28620
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
28513
28621
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
28514
28622
  feature_id: z.ZodString;
28515
28623
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -28518,7 +28626,7 @@ export declare const CreatePropertyListResponseSchema: z.ZodObject<{
28518
28626
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
28519
28627
  }, z.core.$loose>>>>;
28520
28628
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
28521
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
28629
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
28522
28630
  value: z.ZodString;
28523
28631
  }, z.core.$loose>>>>;
28524
28632
  }, z.core.$loose>>>;
@@ -28552,14 +28660,14 @@ export declare const UpdatePropertyListResponseSchema: z.ZodObject<{
28552
28660
  }, z.core.$loose>, z.ZodObject<{
28553
28661
  selection_type: z.ZodLiteral<"identifiers">;
28554
28662
  identifiers: z.ZodArray<z.ZodObject<{
28555
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
28663
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
28556
28664
  value: z.ZodString;
28557
28665
  }, z.core.$loose>>;
28558
28666
  }, z.core.$loose>]>>>>;
28559
28667
  filters: z.ZodOptional<z.ZodNullable<z.ZodObject<{
28560
28668
  countries_all: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
28561
28669
  channels_any: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"display">, z.ZodLiteral<"olv">, z.ZodLiteral<"social">, z.ZodLiteral<"search">, z.ZodLiteral<"ctv">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"podcast">, z.ZodLiteral<"dooh">, z.ZodLiteral<"ooh">, z.ZodLiteral<"print">, z.ZodLiteral<"cinema">, z.ZodLiteral<"email">, z.ZodLiteral<"gaming">, z.ZodLiteral<"retail_media">, z.ZodLiteral<"influencer">, z.ZodLiteral<"affiliate">, z.ZodLiteral<"product_placement">, z.ZodLiteral<"sponsored_intelligence">]>>>>;
28562
- property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
28670
+ property_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"website">, z.ZodLiteral<"mobile_app">, z.ZodLiteral<"ctv_app">, z.ZodLiteral<"desktop_app">, z.ZodLiteral<"dooh">, z.ZodLiteral<"podcast">, z.ZodLiteral<"radio">, z.ZodLiteral<"linear_tv">, z.ZodLiteral<"streaming_audio">, z.ZodLiteral<"ai_assistant">]>>>>;
28563
28671
  feature_requirements: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
28564
28672
  feature_id: z.ZodString;
28565
28673
  min_value: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -28568,7 +28676,7 @@ export declare const UpdatePropertyListResponseSchema: z.ZodObject<{
28568
28676
  if_not_covered: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"exclude">, z.ZodLiteral<"include">]>>>;
28569
28677
  }, z.core.$loose>>>>;
28570
28678
  exclude_identifiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
28571
- type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">]>;
28679
+ type: z.ZodUnion<readonly [z.ZodLiteral<"domain">, z.ZodLiteral<"subdomain">, z.ZodLiteral<"network_id">, z.ZodLiteral<"ios_bundle">, z.ZodLiteral<"android_package">, z.ZodLiteral<"apple_app_store_id">, z.ZodLiteral<"google_play_id">, z.ZodLiteral<"roku_store_id">, z.ZodLiteral<"fire_tv_asin">, z.ZodLiteral<"samsung_app_id">, z.ZodLiteral<"apple_tv_bundle">, z.ZodLiteral<"bundle_id">, z.ZodLiteral<"venue_id">, z.ZodLiteral<"screen_id">, z.ZodLiteral<"openooh_venue_type">, z.ZodLiteral<"rss_url">, z.ZodLiteral<"apple_podcast_id">, z.ZodLiteral<"spotify_collection_id">, z.ZodLiteral<"podcast_guid">, z.ZodLiteral<"station_id">, z.ZodLiteral<"facility_id">]>;
28572
28680
  value: z.ZodString;
28573
28681
  }, z.core.$loose>>>>;
28574
28682
  }, z.core.$loose>>>;
@@ -30246,6 +30354,7 @@ export declare const GetCreativeFeaturesResponseSchema: z.ZodUnion<readonly [z.Z
30246
30354
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30247
30355
  }, z.core.$loose>]>;
30248
30356
  export declare const SyncPlansRequestSchema: z.ZodObject<{
30357
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
30249
30358
  plans: z.ZodArray<z.ZodObject<{
30250
30359
  plan_id: z.ZodString;
30251
30360
  brand: z.ZodObject<{
@@ -30396,6 +30505,7 @@ export declare const SyncPlansRequestSchema: z.ZodObject<{
30396
30505
  }, z.core.$loose>>;
30397
30506
  }, z.core.$loose>;
30398
30507
  export declare const SIInitiateSessionRequestSchema: z.ZodObject<{
30508
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
30399
30509
  context: z.ZodString;
30400
30510
  identity: z.ZodObject<{
30401
30511
  consent_granted: z.ZodBoolean;
@@ -30546,7 +30656,50 @@ export declare const SyncAccountsResponseSchema: z.ZodUnion<readonly [z.ZodObjec
30546
30656
  context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30547
30657
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30548
30658
  }, z.core.$loose>]>;
30659
+ export declare const SyncGovernanceResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
30660
+ accounts: z.ZodArray<z.ZodObject<{
30661
+ account: z.ZodUnion<readonly [z.ZodObject<{
30662
+ account_id: z.ZodString;
30663
+ }, z.core.$loose>, z.ZodObject<{
30664
+ brand: z.ZodObject<{
30665
+ domain: z.ZodString;
30666
+ brand_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30667
+ }, z.core.$loose>;
30668
+ operator: z.ZodString;
30669
+ sandbox: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
30670
+ }, z.core.$loose>]>;
30671
+ status: z.ZodUnion<readonly [z.ZodLiteral<"synced">, z.ZodLiteral<"failed">]>;
30672
+ governance_agents: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
30673
+ url: z.ZodString;
30674
+ categories: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
30675
+ }, z.core.$loose>>>>;
30676
+ errors: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
30677
+ code: z.ZodString;
30678
+ message: z.ZodString;
30679
+ field: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30680
+ suggestion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30681
+ retry_after: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
30682
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30683
+ recovery: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"transient">, z.ZodLiteral<"correctable">, z.ZodLiteral<"terminal">]>>>;
30684
+ }, z.core.$loose>>>>;
30685
+ }, z.core.$loose>>;
30686
+ context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30687
+ ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30688
+ }, z.core.$loose>, z.ZodObject<{
30689
+ errors: z.ZodArray<z.ZodObject<{
30690
+ code: z.ZodString;
30691
+ message: z.ZodString;
30692
+ field: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30693
+ suggestion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30694
+ retry_after: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
30695
+ details: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30696
+ recovery: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodLiteral<"transient">, z.ZodLiteral<"correctable">, z.ZodLiteral<"terminal">]>>>;
30697
+ }, z.core.$loose>>;
30698
+ context: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30699
+ ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
30700
+ }, z.core.$loose>]>;
30549
30701
  export declare const GetAccountFinancialsRequestSchema: z.ZodObject<{
30702
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
30550
30703
  account: z.ZodUnion<readonly [z.ZodObject<{
30551
30704
  account_id: z.ZodString;
30552
30705
  }, z.core.$loose>, z.ZodObject<{
@@ -30714,6 +30867,7 @@ export declare const ComplyTestControllerResponseSchema: z.ZodUnion<readonly [z.
30714
30867
  export declare const AdCPAsyncResponseDataSchema: z.ZodType;
30715
30868
  export declare const MCPWebhookPayloadSchema: z.ZodType;
30716
30869
  export declare const GetProductsRequestSchema: z.ZodObject<{
30870
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
30717
30871
  buying_mode: z.ZodUnion<readonly [z.ZodLiteral<"brief">, z.ZodLiteral<"wholesale">, z.ZodLiteral<"refine">]>;
30718
30872
  brief: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30719
30873
  refine: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
@@ -30997,6 +31151,7 @@ export declare const FormatSchema: z.ZodObject<{
30997
31151
  reported_metrics: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"impressions">, z.ZodLiteral<"spend">, z.ZodLiteral<"clicks">, z.ZodLiteral<"ctr">, z.ZodLiteral<"video_completions">, z.ZodLiteral<"completion_rate">, z.ZodLiteral<"conversions">, z.ZodLiteral<"conversion_value">, z.ZodLiteral<"roas">, z.ZodLiteral<"cost_per_acquisition">, z.ZodLiteral<"new_to_brand_rate">, z.ZodLiteral<"viewability">, z.ZodLiteral<"engagement_rate">, z.ZodLiteral<"views">, z.ZodLiteral<"completed_views">, z.ZodLiteral<"leads">, z.ZodLiteral<"reach">, z.ZodLiteral<"frequency">, z.ZodLiteral<"grps">, z.ZodLiteral<"quartile_data">, z.ZodLiteral<"dooh_metrics">, z.ZodLiteral<"cost_per_click">]>>>>;
30998
31152
  }, z.core.$loose>;
30999
31153
  export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
31154
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
31000
31155
  idempotency_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31001
31156
  plan_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
31002
31157
  account: z.ZodUnion<readonly [z.ZodObject<{
@@ -31015,6 +31170,7 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
31015
31170
  currency: z.ZodString;
31016
31171
  }, z.core.$loose>>>;
31017
31172
  packages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
31173
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
31018
31174
  product_id: z.ZodString;
31019
31175
  format_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
31020
31176
  agent_url: z.ZodString;
@@ -32040,6 +32196,7 @@ export declare const CreateMediaBuyRequestSchema: z.ZodObject<{
32040
32196
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
32041
32197
  }, z.core.$loose>;
32042
32198
  export declare const UpdateMediaBuyRequestSchema: z.ZodObject<{
32199
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
32043
32200
  media_buy_id: z.ZodString;
32044
32201
  revision: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
32045
32202
  paused: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -33038,6 +33195,7 @@ export declare const UpdateMediaBuyRequestSchema: z.ZodObject<{
33038
33195
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
33039
33196
  }, z.core.$loose>>>;
33040
33197
  new_packages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
33198
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
33041
33199
  product_id: z.ZodString;
33042
33200
  format_ids: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
33043
33201
  agent_url: z.ZodString;
@@ -34060,6 +34218,7 @@ export declare const SyncEventSourcesResponseSchema: z.ZodUnion<readonly [z.ZodO
34060
34218
  ext: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$loose>>>;
34061
34219
  }, z.core.$loose>]>;
34062
34220
  export declare const LogEventRequestSchema: z.ZodObject<{
34221
+ adcp_major_version: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
34063
34222
  event_source_id: z.ZodString;
34064
34223
  test_event_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34065
34224
  events: z.ZodArray<z.ZodObject<{