@adcp/sdk 14.0.0-beta.26 → 14.0.0-beta.27

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.
@@ -663,21 +663,6 @@ export interface ExtensionObject {
663
663
  [k: string]: unknown | undefined;
664
664
  }
665
665
 
666
- /**
667
- * Bucket-addressed file exchange over a cloud storage protocol. The buyer moves the bytes; direction declares who hosts the bucket.
668
- */
669
- export interface FileTransfer {
670
- pattern: 'file_transfer';
671
- transport: CloudStorageProtocol;
672
- /**
673
- * Supported transfer directions. buyer_to_seller: buyer writes to a seller-hosted bucket. seller_to_buyer: seller reads from a buyer-hosted bucket. Absent means unspecified (resolve during account setup), not neither.
674
- *
675
- * @minItems 1
676
- */
677
- directions?: ['buyer_to_seller' | 'seller_to_buyer', ...('buyer_to_seller' | 'seller_to_buyer')[]];
678
- vendor: BrandReference;
679
- }
680
-
681
666
  /**
682
667
  * Override logo asset.
683
668
  */
@@ -2979,13 +2964,33 @@ export type ReportingDeliveryConfigurationState = {} & {} & {} & {
2979
2964
  /**
2980
2965
  * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
2981
2966
  */
2982
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
2967
+ export type ReportingDeliveryMethod = ReportingFileTransfer | DatasetShare | WarehouseMaterialization;
2983
2968
 
2984
2969
  /**
2985
2970
  * Operational use of an independently scheduled and reconciled feed. pacing is the fast snapshot path; billing requires official revisions and consumer reconciliation. Event-level exposure is intentionally deferred until a privacy and authorization contract exists.
2986
2971
  */
2987
2972
  export type ReportingFeedPurpose = 'pacing' | 'analytics' | 'billing';
2988
2973
 
2974
+ export interface ReportingFileTransfer {
2975
+ /**
2976
+ * Immutable file/object publication with a manifest-last commit boundary.
2977
+ */
2978
+ pattern: 'file_transfer';
2979
+ /**
2980
+ * Storage transport such as s3, gcs, azure_blob, or sftp.
2981
+ * @minLength 1
2982
+ * @maxLength 64
2983
+ * @pattern ^[a-z][a-z0-9_.-]*$
2984
+ */
2985
+ transport: string;
2986
+ orchestration: ReportingOrchestration;
2987
+ destination: ReportingWriteDestination;
2988
+ /**
2989
+ * Physical file format.
2990
+ */
2991
+ format: 'jsonl' | 'csv' | 'parquet' | 'avro' | 'orc';
2992
+ }
2993
+
2989
2994
  /**
2990
2995
  * Finality of a reporting revision, aligned with the delivery-revision vocabulary proposed in #6122. Finality is independent of immutable revision identity: both snapshot and official revisions may be superseded by later revisions.
2991
2996
  */
@@ -2016,21 +2016,6 @@ export interface ExtensionObject {
2016
2016
  */
2017
2017
  export type FeedFormat = 'google_merchant_center' | 'facebook_catalog' | 'shopify' | 'linkedin_jobs' | 'tiktok_shop' | 'pinterest_catalog' | 'openai_product_feed' | 'custom';
2018
2018
 
2019
- /**
2020
- * Bucket-addressed file exchange over a cloud storage protocol. The buyer moves the bytes; direction declares who hosts the bucket.
2021
- */
2022
- export interface FileTransfer {
2023
- pattern: 'file_transfer';
2024
- transport: CloudStorageProtocol;
2025
- /**
2026
- * Supported transfer directions. buyer_to_seller: buyer writes to a seller-hosted bucket. seller_to_buyer: seller reads from a buyer-hosted bucket. Absent means unspecified (resolve during account setup), not neither.
2027
- *
2028
- * @minItems 1
2029
- */
2030
- directions?: ['buyer_to_seller' | 'seller_to_buyer', ...('buyer_to_seller' | 'seller_to_buyer')[]];
2031
- vendor: BrandReference;
2032
- }
2033
-
2034
2019
  /**
2035
2020
  * Discriminated reference to a product format option. The global canonical shape is still named by `format_kind`; this reference selects one concrete product `format_options[]` entry. `scope: "publisher"` identifies a publisher-declared catalog option by `{ publisher_domain, format_option_id }`. `scope: "product"` identifies a product-local option by `format_option_id`; the enclosing package/product context supplies the namespace.
2036
2021
  */
@@ -4549,13 +4534,33 @@ export type ReportingDeliveryConfigurationState = {} & {} & {} & {
4549
4534
  /**
4550
4535
  * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
4551
4536
  */
4552
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
4537
+ export type ReportingDeliveryMethod = ReportingFileTransfer | DatasetShare | WarehouseMaterialization;
4553
4538
 
4554
4539
  /**
4555
4540
  * Operational use of an independently scheduled and reconciled feed. pacing is the fast snapshot path; billing requires official revisions and consumer reconciliation. Event-level exposure is intentionally deferred until a privacy and authorization contract exists.
4556
4541
  */
4557
4542
  export type ReportingFeedPurpose = 'pacing' | 'analytics' | 'billing';
4558
4543
 
4544
+ export interface ReportingFileTransfer {
4545
+ /**
4546
+ * Immutable file/object publication with a manifest-last commit boundary.
4547
+ */
4548
+ pattern: 'file_transfer';
4549
+ /**
4550
+ * Storage transport such as s3, gcs, azure_blob, or sftp.
4551
+ * @minLength 1
4552
+ * @maxLength 64
4553
+ * @pattern ^[a-z][a-z0-9_.-]*$
4554
+ */
4555
+ transport: string;
4556
+ orchestration: ReportingOrchestration;
4557
+ destination: ReportingWriteDestination;
4558
+ /**
4559
+ * Physical file format.
4560
+ */
4561
+ format: 'jsonl' | 'csv' | 'parquet' | 'avro' | 'orc';
4562
+ }
4563
+
4559
4564
  /**
4560
4565
  * Finality of a reporting revision, aligned with the delivery-revision vocabulary proposed in #6122. Finality is independent of immutable revision identity: both snapshot and official revisions may be superseded by later revisions.
4561
4566
  */
@@ -1,5 +1,5 @@
1
- import type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioAssetRequirements, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandReference, BrowserFamily, BusinessEntity, CSSAssetRequirements, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionKind, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTAssetRequirements, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DisclosurePersistence, DisclosurePosition, DistributionIdentifierType, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatReferenceStructuredObject, FrameRateType, GOPType, GenreTaxonomy, GeographicTargetingLevel, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTMLAssetRequirements, HTTPMethod, ImageAsset, ImageAssetRequirements, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptAssetRequirements, JavaScriptModuleType, LandingPageRequirement, LiftDimension, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownAssetRequirements, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricType, MetroAreaSystem, MoovAtomPosition, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RestrictedAttribute, RightType, RightUse, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalTargetingExpression, SignalValueType, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TextAssetRequirements, TransportMode, UIDType, URLAssetRequirements, URLAssetType, UniversalMacro, UpdateFrequency, VASTAssetRequirements, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoAssetRequirements, VideoPlacementType, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WebhookAssetRequirements, WebhookResponseType, WebhookSecurityMethod } from './core.generated.mjs';
2
- export type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionNotAllowedReason, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttestationClaim, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandAgentType, BrandReference, BrowserFamily, BusinessEntity, C2PAWatermarkAction, CTVAdExperience, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatBase, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemDeliveryMetrics, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionCadence, CollectionKind, CollectionRelationship, CollectionStatus, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeActivationMethod, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeMotionLevel, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DigitalSourceType, DimensionUnit, DisclosurePersistence, DisclosurePosition, DistanceUnit, DistributionIdentifierType, EmbeddedProvenanceMethod, ErrorCode, ErrorScope, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, Fixed, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatIDParameter, FormatReferenceStructuredObject, FrameRateType, FrequencyCapScope, GOPType, GenreTaxonomy, GeoDeliveryMetrics, GeographicTargetingLevel, GetProductsAsyncSubmitted, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTTPMethod, HistoryEntryType, ImageAsset, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptModuleType, KeywordDeliveryMetrics, LandingPageRequirement, LiftDimension, LogoSlot, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricScope, MetricType, MetroAreaSystem, MoovAtomPosition, MultiSize, None, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherIdentifierTypes, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RequestProposalsResponse, Responsive, RestrictedAttribute, RightType, RightUse, RightsBillingPeriod, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalSource, SignalTargetingExpression, SignalValueType, SizeModeMutex, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TrackerExecutionActor, TrackerFiringPath, TransportMode, TravelTimeUnit, UIDType, URLAssetType, UniversalMacro, UpdateFrequency, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoPlacementType, ViewThresholdBasis, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WatermarkMediaType, WebhookResponseType, WebhookSecurityMethod } from './core.generated.mjs';
1
+ import type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioAssetRequirements, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandReference, BrowserFamily, BusinessEntity, CSSAssetRequirements, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionKind, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTAssetRequirements, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DisclosurePersistence, DisclosurePosition, DistributionIdentifierType, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatReferenceStructuredObject, FrameRateType, GOPType, GenreTaxonomy, GeographicTargetingLevel, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTMLAssetRequirements, HTTPMethod, ImageAsset, ImageAssetRequirements, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptAssetRequirements, JavaScriptModuleType, LandingPageRequirement, LiftDimension, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownAssetRequirements, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricType, MetroAreaSystem, MoovAtomPosition, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDeliveryMethod, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RestrictedAttribute, RightType, RightUse, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalTargetingExpression, SignalValueType, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TextAssetRequirements, TransportMode, UIDType, URLAssetRequirements, URLAssetType, UniversalMacro, UpdateFrequency, VASTAssetRequirements, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoAssetRequirements, VideoPlacementType, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WebhookAssetRequirements, WebhookResponseType, WebhookSecurityMethod } from './core.generated.mjs';
2
+ export type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionNotAllowedReason, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttestationClaim, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandAgentType, BrandReference, BrowserFamily, BusinessEntity, C2PAWatermarkAction, CTVAdExperience, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatBase, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemDeliveryMetrics, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionCadence, CollectionKind, CollectionRelationship, CollectionStatus, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeActivationMethod, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeMotionLevel, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DigitalSourceType, DimensionUnit, DisclosurePersistence, DisclosurePosition, DistanceUnit, DistributionIdentifierType, EmbeddedProvenanceMethod, ErrorCode, ErrorScope, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, Fixed, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatIDParameter, FormatReferenceStructuredObject, FrameRateType, FrequencyCapScope, GOPType, GenreTaxonomy, GeoDeliveryMetrics, GeographicTargetingLevel, GetProductsAsyncSubmitted, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTTPMethod, HistoryEntryType, ImageAsset, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptModuleType, KeywordDeliveryMetrics, LandingPageRequirement, LiftDimension, LogoSlot, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricScope, MetricType, MetroAreaSystem, MoovAtomPosition, MultiSize, None, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherIdentifierTypes, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDeliveryMethod, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RequestProposalsResponse, Responsive, RestrictedAttribute, RightType, RightUse, RightsBillingPeriod, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalSource, SignalTargetingExpression, SignalValueType, SizeModeMutex, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TrackerExecutionActor, TrackerFiringPath, TransportMode, TravelTimeUnit, UIDType, URLAssetType, UniversalMacro, UpdateFrequency, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoPlacementType, ViewThresholdBasis, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WatermarkMediaType, WebhookResponseType, WebhookSecurityMethod } from './core.generated.mjs';
3
3
  /**
4
4
  * Brand identifier within the house portfolio. Optional for single-brand domains.
5
5
  */
@@ -13731,10 +13731,6 @@ export type ReportingSchedule = {} & {
13731
13731
  * Calendar used to establish exact period boundaries. The obligation echoes resolved timestamps and source timezone.
13732
13732
  */
13733
13733
  export type ReportingScheduleAlignment = 'utc' | 'account_timezone' | 'billing_cycle';
13734
- /**
13735
- * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
13736
- */
13737
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
13738
13734
  /**
13739
13735
  * Party responsible for starting, configuring, and monitoring the delivery operation. Independent of destination ownership and the service that moves the data.
13740
13736
  */
@@ -1,5 +1,5 @@
1
- import type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioAssetRequirements, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandReference, BrowserFamily, BusinessEntity, CSSAssetRequirements, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionKind, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTAssetRequirements, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DisclosurePersistence, DisclosurePosition, DistributionIdentifierType, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatReferenceStructuredObject, FrameRateType, GOPType, GenreTaxonomy, GeographicTargetingLevel, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTMLAssetRequirements, HTTPMethod, ImageAsset, ImageAssetRequirements, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptAssetRequirements, JavaScriptModuleType, LandingPageRequirement, LiftDimension, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownAssetRequirements, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricType, MetroAreaSystem, MoovAtomPosition, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RestrictedAttribute, RightType, RightUse, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalTargetingExpression, SignalValueType, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TextAssetRequirements, TransportMode, UIDType, URLAssetRequirements, URLAssetType, UniversalMacro, UpdateFrequency, VASTAssetRequirements, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoAssetRequirements, VideoPlacementType, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WebhookAssetRequirements, WebhookResponseType, WebhookSecurityMethod } from './core.generated';
2
- export type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionNotAllowedReason, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttestationClaim, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandAgentType, BrandReference, BrowserFamily, BusinessEntity, C2PAWatermarkAction, CTVAdExperience, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatBase, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemDeliveryMetrics, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionCadence, CollectionKind, CollectionRelationship, CollectionStatus, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeActivationMethod, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeMotionLevel, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DigitalSourceType, DimensionUnit, DisclosurePersistence, DisclosurePosition, DistanceUnit, DistributionIdentifierType, EmbeddedProvenanceMethod, ErrorCode, ErrorScope, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, Fixed, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatIDParameter, FormatReferenceStructuredObject, FrameRateType, FrequencyCapScope, GOPType, GenreTaxonomy, GeoDeliveryMetrics, GeographicTargetingLevel, GetProductsAsyncSubmitted, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTTPMethod, HistoryEntryType, ImageAsset, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptModuleType, KeywordDeliveryMetrics, LandingPageRequirement, LiftDimension, LogoSlot, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricScope, MetricType, MetroAreaSystem, MoovAtomPosition, MultiSize, None, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherIdentifierTypes, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RequestProposalsResponse, Responsive, RestrictedAttribute, RightType, RightUse, RightsBillingPeriod, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalSource, SignalTargetingExpression, SignalValueType, SizeModeMutex, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TrackerExecutionActor, TrackerFiringPath, TransportMode, TravelTimeUnit, UIDType, URLAssetType, UniversalMacro, UpdateFrequency, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoPlacementType, ViewThresholdBasis, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WatermarkMediaType, WebhookResponseType, WebhookSecurityMethod } from './core.generated';
1
+ import type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioAssetRequirements, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandReference, BrowserFamily, BusinessEntity, CSSAssetRequirements, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionKind, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTAssetRequirements, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DisclosurePersistence, DisclosurePosition, DistributionIdentifierType, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatReferenceStructuredObject, FrameRateType, GOPType, GenreTaxonomy, GeographicTargetingLevel, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTMLAssetRequirements, HTTPMethod, ImageAsset, ImageAssetRequirements, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptAssetRequirements, JavaScriptModuleType, LandingPageRequirement, LiftDimension, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownAssetRequirements, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricType, MetroAreaSystem, MoovAtomPosition, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDeliveryMethod, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RestrictedAttribute, RightType, RightUse, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalTargetingExpression, SignalValueType, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TextAssetRequirements, TransportMode, UIDType, URLAssetRequirements, URLAssetType, UniversalMacro, UpdateFrequency, VASTAssetRequirements, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoAssetRequirements, VideoPlacementType, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WebhookAssetRequirements, WebhookResponseType, WebhookSecurityMethod } from './core.generated';
2
+ export type { AccountCurrencyMode, AccountReference, AccountScope, AccountStatus, ActionNotAllowedReason, ActionSource, AdCPProtocol, AdCPSpecialism, AdCPVersionEnvelope, AdvertiserIndustry, AgeDeterminationBasis, AgeVerificationMethod, AssessmentStatus, AssetContentType, AssetVariant, AttestationClaim, AttributionMethodology, AttributionModel, AudienceConstraints, AudienceEvidenceMethodology, AudienceResolutionMethod, AudienceSource, AudienceStatus, AudienceSubjectType, AudioChannelLayout, AudioDistributionType, AuthenticationScheme, AvailabilityStatus, AvailableMetric, BillingParty, BinaryVerdict, BrandAgentType, BrandReference, BrowserFamily, BusinessEntity, C2PAWatermarkAction, CTVAdExperience, CanceledBy, CancellationPolicy, CanonicalFormatAgentPlacementAISurfaceSponsoredPlacement, CanonicalFormatBase, CanonicalFormatCoordinatedPlacements, CanonicalFormatDAASTAudio, CanonicalFormatDisplayTag, CanonicalFormatHTML5Banner, CanonicalFormatHostedAudio, CanonicalFormatHostedVideo, CanonicalFormatImage, CanonicalFormatImageCarousel, CanonicalFormatNativeInFeed, CanonicalFormatOption, CanonicalFormatResponsiveCreative, CanonicalFormatSellerRenderedStatefulDisplay, CanonicalFormatSponsoredPlacementRetailMediaCatalogDriven, CanonicalFormatVASTAudio, CanonicalFormatVASTVideo, CanonicalMediaBuyActionMode, CanonicalMediaBuyActionName, CanonicalProposal, CatalogAction, CatalogItemDeliveryMetrics, CatalogItemStatus, CatalogType, CloudStorageProtocol, CoBrandingRequirement, CollectionCadence, CollectionKind, CollectionRelationship, CollectionStatus, CompletionSource, ConsentBasis, ContentIDType, ContentRatingSystem, CountryFusedPostalCodeSystem, CreativeAction, CreativeActivationMethod, CreativeAgentCapability, CreativeApprovalStatus, CreativeAsset, CreativeBrief, CreativeEventReasonCode, CreativeIdentifierType, CreativeMotionLevel, CreativeQuality, CreativeSelectionStrategy, CreativeSortField, CreativeStatus, DAASTTrackingEvent, DAASTVersion, DOOHMotionType, DayOfWeek, DelegationAuthority, DeliveryMetricAggregate, DeliveryMetrics, DeliveryRecipientCloud, DeliveryStatus, DeliveryType, DemographicSystem, DerivativeType, DevicePlatform, DeviceType, DigitalSourceType, DimensionUnit, DisclosurePersistence, DisclosurePosition, DistanceUnit, DistributionIdentifierType, EmbeddedProvenanceMethod, ErrorCode, ErrorScope, EscalationSeverity, EventType, Exclusivity, ExtensionObject, FeatureCheckStatus, FeedFormat, FeedbackSource, Fixed, ForecastMethod, ForecastPoint, ForecastRangeUnit, ForecastableMetric, Format, FormatIDParameter, FormatReferenceStructuredObject, FrameRateType, FrequencyCapScope, GOPType, GenreTaxonomy, GeoDeliveryMetrics, GeographicTargetingLevel, GetProductsAsyncSubmitted, GovernanceDecision, GovernanceDomain, GovernanceMode, GovernancePhase, HTTPMethod, HistoryEntryType, ImageAsset, ImpairmentOfflineState, ImpairmentReasonCode, IndicatorType, InstallmentStatus, JavaScriptModuleType, KeywordDeliveryMetrics, LandingPageRequirement, LiftDimension, LogoSlot, MacroDialectFamily, MacroMappingStatus, MacroProcessingActor, MacroProcessingOperation, MacroResolutionReason, MacroValueContext, MakegoodRemedy, MarkdownFlavor, MatchIDType, MatchType, MeasurementTerms, MediaBuyActionMode, MediaBuyHealth, MediaBuyStatus, MediaBuyValidAction, MediaChannel, MetricScope, MetricType, MetroAreaSystem, MoovAtomPosition, MultiSize, None, NotificationType, OfferingAvailabilityStatus, OutcomeType, Pacing, PackageUpdate, PaymentTerms, PerformanceBaseline, PerformanceStandardMetric, PixelTrackingEvent, PlatformExtensionReference, PolicyCategory, PolicyEnforcementLevel, PostalCodeSystem, PostalCountrySystem, PreviewOutputFormat, PriceAdjustmentKind, PricingModel, PricingStructure, PrincipalKind, ProductionQuality, PropertyIdentifierTypes, PropertyType, ProposalDeclineReason, ProposalRefinementReason, ProposalStatus, ProtocolEnvelope, Provenance, PublisherIdentifierTypes, PublisherPropertySelector, PurchaseType, ReachUnit, ReportingDeliveryMethod, ReportingDestinationSetupState, ReportingFinality, ReportingFrequency, ReportingHealth, RepresentationSelectionStrategy, RequestProposalsResponse, Responsive, RestrictedAttribute, RightType, RightUse, RightsBillingPeriod, RightsConstraint, SISessionStatus, ScanType, ScopedCreativeApproval, SignalAvailabilityType, SignalDefinitionEnrichment, SignalSource, SignalTargetingExpression, SignalValueType, SizeModeMutex, SnapshotUnavailableReason, SocialPlacementSurface, SortDirection, SortMetric, SpecialCategory, SponsoredPlacementType, TMPResponseType, TalentRole, TargetingOverlayRequirements, TargetingOverlaySupport, TaskStatus, TaskType, TrackerExecutionActor, TrackerFiringPath, TransportMode, TravelTimeUnit, UIDType, URLAssetType, UniversalMacro, UpdateFrequency, VASTMediaDeliveryMethod, VASTTrackingEvent, VASTVersion, ValidationMode, VideoPlacementType, ViewThresholdBasis, ViewabilityStandard, WCAGLevel, WarningAffectedResource, WarningCode, WatermarkMediaType, WebhookResponseType, WebhookSecurityMethod } from './core.generated';
3
3
  /**
4
4
  * Brand identifier within the house portfolio. Optional for single-brand domains.
5
5
  */
@@ -13731,10 +13731,6 @@ export type ReportingSchedule = {} & {
13731
13731
  * Calendar used to establish exact period boundaries. The obligation echoes resolved timestamps and source timezone.
13732
13732
  */
13733
13733
  export type ReportingScheduleAlignment = 'utc' | 'account_timezone' | 'billing_cycle';
13734
- /**
13735
- * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
13736
- */
13737
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
13738
13734
  /**
13739
13735
  * Party responsible for starting, configuring, and monitoring the delivery operation. Independent of destination ownership and the service that moves the data.
13740
13736
  */
@@ -166,42 +166,20 @@ export declare const SyncCreativesItemSchema: z.ZodObject<{
166
166
  }, z.core.$loose>;
167
167
  method: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
168
168
  pattern: z.ZodLiteral<"file_transfer">;
169
- transport: z.ZodUnion<readonly [z.ZodLiteral<"s3">, z.ZodLiteral<"gcs">, z.ZodLiteral<"azure_blob">]>;
170
- directions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"buyer_to_seller">, z.ZodLiteral<"seller_to_buyer">]>>>;
171
- vendor: z.ZodObject<{
172
- domain: z.ZodString;
173
- brand_id: z.ZodOptional<z.ZodString>;
174
- countries: z.ZodOptional<z.ZodArray<z.ZodString>>;
175
- industries: z.ZodOptional<z.ZodArray<z.ZodString>>;
176
- data_subject_contestation: z.ZodOptional<z.ZodObject<{
177
- url: z.ZodOptional<z.ZodString>;
178
- email: z.ZodOptional<z.ZodEmail>;
179
- languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
180
- }, z.core.$loose>>;
181
- brand_kit_override: z.ZodOptional<z.ZodObject<{
182
- logo: z.ZodOptional<Omit<z.ZodObject<{
183
- asset_type: z.ZodType<"image", "image", z.core.$ZodTypeInternals<"image", "image">>;
184
- url: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
185
- width: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
186
- height: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
187
- file_size_bytes: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
188
- pixel_ratio: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
189
- state_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
190
- breakpoint_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
191
- focal_point: z.ZodOptional<z.ZodType<[number, number], [number, number], z.core.$ZodTypeInternals<[number, number], [number, number]>>>;
192
- format: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
193
- alt_text: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
194
- provenance: z.ZodOptional<z.ZodType<import("../index.mjs").Provenance, import("../index.mjs").Provenance, z.core.$ZodTypeInternals<import("../index.mjs").Provenance, import("../index.mjs").Provenance>>>;
195
- }, z.core.$loose>, keyof z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>> & z.ZodType<import("../index.mjs").ImageAsset & Record<string, unknown>, import("../index.mjs").ImageAsset, z.core.$ZodTypeInternals<import("../index.mjs").ImageAsset & Record<string, unknown>, import("../index.mjs").ImageAsset>>>;
196
- colors: z.ZodOptional<z.ZodObject<{
197
- primary: z.ZodOptional<z.ZodString>;
198
- secondary: z.ZodOptional<z.ZodString>;
199
- accent: z.ZodOptional<z.ZodString>;
200
- }, z.core.$loose>>;
201
- voice: z.ZodOptional<z.ZodString>;
202
- tagline: z.ZodOptional<z.ZodString>;
203
- }, z.core.$loose>>;
204
- }, z.core.$loose>;
169
+ transport: z.ZodString;
170
+ orchestration: z.ZodUnion<readonly [z.ZodLiteral<"producer_managed">, z.ZodLiteral<"consumer_managed">]>;
171
+ destination: z.ZodUnion<readonly [z.ZodObject<{
172
+ mode: z.ZodLiteral<"existing">;
173
+ destination_ref: z.ZodString;
174
+ }, z.core.$loose>, z.ZodObject<{
175
+ mode: z.ZodLiteral<"provision">;
176
+ provider: z.ZodObject<{
177
+ domain: z.ZodString;
178
+ }, z.core.$loose>;
179
+ location: z.ZodString;
180
+ access_mode: z.ZodOptional<z.ZodString>;
181
+ }, z.core.$loose>]>;
182
+ format: z.ZodUnion<readonly [z.ZodLiteral<"jsonl">, z.ZodLiteral<"csv">, z.ZodLiteral<"parquet">, z.ZodLiteral<"avro">, z.ZodLiteral<"orc">]>;
205
183
  }, z.core.$loose>, z.ZodObject<{
206
184
  pattern: z.ZodLiteral<"dataset_share">;
207
185
  transport: z.ZodString;
@@ -538,42 +516,20 @@ export declare const SyncCreativesSuccessStrictSchema: z.ZodObject<{
538
516
  }, z.core.$loose>;
539
517
  method: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
540
518
  pattern: z.ZodLiteral<"file_transfer">;
541
- transport: z.ZodUnion<readonly [z.ZodLiteral<"s3">, z.ZodLiteral<"gcs">, z.ZodLiteral<"azure_blob">]>;
542
- directions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"buyer_to_seller">, z.ZodLiteral<"seller_to_buyer">]>>>;
543
- vendor: z.ZodObject<{
544
- domain: z.ZodString;
545
- brand_id: z.ZodOptional<z.ZodString>;
546
- countries: z.ZodOptional<z.ZodArray<z.ZodString>>;
547
- industries: z.ZodOptional<z.ZodArray<z.ZodString>>;
548
- data_subject_contestation: z.ZodOptional<z.ZodObject<{
549
- url: z.ZodOptional<z.ZodString>;
550
- email: z.ZodOptional<z.ZodEmail>;
551
- languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
552
- }, z.core.$loose>>;
553
- brand_kit_override: z.ZodOptional<z.ZodObject<{
554
- logo: z.ZodOptional<Omit<z.ZodObject<{
555
- asset_type: z.ZodType<"image", "image", z.core.$ZodTypeInternals<"image", "image">>;
556
- url: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
557
- width: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
558
- height: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
559
- file_size_bytes: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
560
- pixel_ratio: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
561
- state_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
562
- breakpoint_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
563
- focal_point: z.ZodOptional<z.ZodType<[number, number], [number, number], z.core.$ZodTypeInternals<[number, number], [number, number]>>>;
564
- format: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
565
- alt_text: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
566
- provenance: z.ZodOptional<z.ZodType<import("../index.mjs").Provenance, import("../index.mjs").Provenance, z.core.$ZodTypeInternals<import("../index.mjs").Provenance, import("../index.mjs").Provenance>>>;
567
- }, z.core.$loose>, keyof z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>> & z.ZodType<import("../index.mjs").ImageAsset & Record<string, unknown>, import("../index.mjs").ImageAsset, z.core.$ZodTypeInternals<import("../index.mjs").ImageAsset & Record<string, unknown>, import("../index.mjs").ImageAsset>>>;
568
- colors: z.ZodOptional<z.ZodObject<{
569
- primary: z.ZodOptional<z.ZodString>;
570
- secondary: z.ZodOptional<z.ZodString>;
571
- accent: z.ZodOptional<z.ZodString>;
572
- }, z.core.$loose>>;
573
- voice: z.ZodOptional<z.ZodString>;
574
- tagline: z.ZodOptional<z.ZodString>;
575
- }, z.core.$loose>>;
576
- }, z.core.$loose>;
519
+ transport: z.ZodString;
520
+ orchestration: z.ZodUnion<readonly [z.ZodLiteral<"producer_managed">, z.ZodLiteral<"consumer_managed">]>;
521
+ destination: z.ZodUnion<readonly [z.ZodObject<{
522
+ mode: z.ZodLiteral<"existing">;
523
+ destination_ref: z.ZodString;
524
+ }, z.core.$loose>, z.ZodObject<{
525
+ mode: z.ZodLiteral<"provision">;
526
+ provider: z.ZodObject<{
527
+ domain: z.ZodString;
528
+ }, z.core.$loose>;
529
+ location: z.ZodString;
530
+ access_mode: z.ZodOptional<z.ZodString>;
531
+ }, z.core.$loose>]>;
532
+ format: z.ZodUnion<readonly [z.ZodLiteral<"jsonl">, z.ZodLiteral<"csv">, z.ZodLiteral<"parquet">, z.ZodLiteral<"avro">, z.ZodLiteral<"orc">]>;
577
533
  }, z.core.$loose>, z.ZodObject<{
578
534
  pattern: z.ZodLiteral<"dataset_share">;
579
535
  transport: z.ZodString;
@@ -922,42 +878,20 @@ export declare const SyncCreativesResponseStrictSchema: z.ZodUnion<readonly [z.Z
922
878
  }, z.core.$loose>;
923
879
  method: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
924
880
  pattern: z.ZodLiteral<"file_transfer">;
925
- transport: z.ZodUnion<readonly [z.ZodLiteral<"s3">, z.ZodLiteral<"gcs">, z.ZodLiteral<"azure_blob">]>;
926
- directions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"buyer_to_seller">, z.ZodLiteral<"seller_to_buyer">]>>>;
927
- vendor: z.ZodObject<{
928
- domain: z.ZodString;
929
- brand_id: z.ZodOptional<z.ZodString>;
930
- countries: z.ZodOptional<z.ZodArray<z.ZodString>>;
931
- industries: z.ZodOptional<z.ZodArray<z.ZodString>>;
932
- data_subject_contestation: z.ZodOptional<z.ZodObject<{
933
- url: z.ZodOptional<z.ZodString>;
934
- email: z.ZodOptional<z.ZodEmail>;
935
- languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
936
- }, z.core.$loose>>;
937
- brand_kit_override: z.ZodOptional<z.ZodObject<{
938
- logo: z.ZodOptional<Omit<z.ZodObject<{
939
- asset_type: z.ZodType<"image", "image", z.core.$ZodTypeInternals<"image", "image">>;
940
- url: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
941
- width: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
942
- height: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
943
- file_size_bytes: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
944
- pixel_ratio: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
945
- state_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
946
- breakpoint_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
947
- focal_point: z.ZodOptional<z.ZodType<[number, number], [number, number], z.core.$ZodTypeInternals<[number, number], [number, number]>>>;
948
- format: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
949
- alt_text: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
950
- provenance: z.ZodOptional<z.ZodType<import("../index.mjs").Provenance, import("../index.mjs").Provenance, z.core.$ZodTypeInternals<import("../index.mjs").Provenance, import("../index.mjs").Provenance>>>;
951
- }, z.core.$loose>, keyof z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>> & z.ZodType<import("../index.mjs").ImageAsset & Record<string, unknown>, import("../index.mjs").ImageAsset, z.core.$ZodTypeInternals<import("../index.mjs").ImageAsset & Record<string, unknown>, import("../index.mjs").ImageAsset>>>;
952
- colors: z.ZodOptional<z.ZodObject<{
953
- primary: z.ZodOptional<z.ZodString>;
954
- secondary: z.ZodOptional<z.ZodString>;
955
- accent: z.ZodOptional<z.ZodString>;
956
- }, z.core.$loose>>;
957
- voice: z.ZodOptional<z.ZodString>;
958
- tagline: z.ZodOptional<z.ZodString>;
959
- }, z.core.$loose>>;
960
- }, z.core.$loose>;
881
+ transport: z.ZodString;
882
+ orchestration: z.ZodUnion<readonly [z.ZodLiteral<"producer_managed">, z.ZodLiteral<"consumer_managed">]>;
883
+ destination: z.ZodUnion<readonly [z.ZodObject<{
884
+ mode: z.ZodLiteral<"existing">;
885
+ destination_ref: z.ZodString;
886
+ }, z.core.$loose>, z.ZodObject<{
887
+ mode: z.ZodLiteral<"provision">;
888
+ provider: z.ZodObject<{
889
+ domain: z.ZodString;
890
+ }, z.core.$loose>;
891
+ location: z.ZodString;
892
+ access_mode: z.ZodOptional<z.ZodString>;
893
+ }, z.core.$loose>]>;
894
+ format: z.ZodUnion<readonly [z.ZodLiteral<"jsonl">, z.ZodLiteral<"csv">, z.ZodLiteral<"parquet">, z.ZodLiteral<"avro">, z.ZodLiteral<"orc">]>;
961
895
  }, z.core.$loose>, z.ZodObject<{
962
896
  pattern: z.ZodLiteral<"dataset_share">;
963
897
  transport: z.ZodString;
@@ -166,42 +166,20 @@ export declare const SyncCreativesItemSchema: z.ZodObject<{
166
166
  }, z.core.$loose>;
167
167
  method: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
168
168
  pattern: z.ZodLiteral<"file_transfer">;
169
- transport: z.ZodUnion<readonly [z.ZodLiteral<"s3">, z.ZodLiteral<"gcs">, z.ZodLiteral<"azure_blob">]>;
170
- directions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"buyer_to_seller">, z.ZodLiteral<"seller_to_buyer">]>>>;
171
- vendor: z.ZodObject<{
172
- domain: z.ZodString;
173
- brand_id: z.ZodOptional<z.ZodString>;
174
- countries: z.ZodOptional<z.ZodArray<z.ZodString>>;
175
- industries: z.ZodOptional<z.ZodArray<z.ZodString>>;
176
- data_subject_contestation: z.ZodOptional<z.ZodObject<{
177
- url: z.ZodOptional<z.ZodString>;
178
- email: z.ZodOptional<z.ZodEmail>;
179
- languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
180
- }, z.core.$loose>>;
181
- brand_kit_override: z.ZodOptional<z.ZodObject<{
182
- logo: z.ZodOptional<Omit<z.ZodObject<{
183
- asset_type: z.ZodType<"image", "image", z.core.$ZodTypeInternals<"image", "image">>;
184
- url: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
185
- width: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
186
- height: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
187
- file_size_bytes: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
188
- pixel_ratio: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
189
- state_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
190
- breakpoint_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
191
- focal_point: z.ZodOptional<z.ZodType<[number, number], [number, number], z.core.$ZodTypeInternals<[number, number], [number, number]>>>;
192
- format: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
193
- alt_text: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
194
- provenance: z.ZodOptional<z.ZodType<import("..").Provenance, import("..").Provenance, z.core.$ZodTypeInternals<import("..").Provenance, import("..").Provenance>>>;
195
- }, z.core.$loose>, keyof z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>> & z.ZodType<import("..").ImageAsset & Record<string, unknown>, import("..").ImageAsset, z.core.$ZodTypeInternals<import("..").ImageAsset & Record<string, unknown>, import("..").ImageAsset>>>;
196
- colors: z.ZodOptional<z.ZodObject<{
197
- primary: z.ZodOptional<z.ZodString>;
198
- secondary: z.ZodOptional<z.ZodString>;
199
- accent: z.ZodOptional<z.ZodString>;
200
- }, z.core.$loose>>;
201
- voice: z.ZodOptional<z.ZodString>;
202
- tagline: z.ZodOptional<z.ZodString>;
203
- }, z.core.$loose>>;
204
- }, z.core.$loose>;
169
+ transport: z.ZodString;
170
+ orchestration: z.ZodUnion<readonly [z.ZodLiteral<"producer_managed">, z.ZodLiteral<"consumer_managed">]>;
171
+ destination: z.ZodUnion<readonly [z.ZodObject<{
172
+ mode: z.ZodLiteral<"existing">;
173
+ destination_ref: z.ZodString;
174
+ }, z.core.$loose>, z.ZodObject<{
175
+ mode: z.ZodLiteral<"provision">;
176
+ provider: z.ZodObject<{
177
+ domain: z.ZodString;
178
+ }, z.core.$loose>;
179
+ location: z.ZodString;
180
+ access_mode: z.ZodOptional<z.ZodString>;
181
+ }, z.core.$loose>]>;
182
+ format: z.ZodUnion<readonly [z.ZodLiteral<"jsonl">, z.ZodLiteral<"csv">, z.ZodLiteral<"parquet">, z.ZodLiteral<"avro">, z.ZodLiteral<"orc">]>;
205
183
  }, z.core.$loose>, z.ZodObject<{
206
184
  pattern: z.ZodLiteral<"dataset_share">;
207
185
  transport: z.ZodString;
@@ -538,42 +516,20 @@ export declare const SyncCreativesSuccessStrictSchema: z.ZodObject<{
538
516
  }, z.core.$loose>;
539
517
  method: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
540
518
  pattern: z.ZodLiteral<"file_transfer">;
541
- transport: z.ZodUnion<readonly [z.ZodLiteral<"s3">, z.ZodLiteral<"gcs">, z.ZodLiteral<"azure_blob">]>;
542
- directions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"buyer_to_seller">, z.ZodLiteral<"seller_to_buyer">]>>>;
543
- vendor: z.ZodObject<{
544
- domain: z.ZodString;
545
- brand_id: z.ZodOptional<z.ZodString>;
546
- countries: z.ZodOptional<z.ZodArray<z.ZodString>>;
547
- industries: z.ZodOptional<z.ZodArray<z.ZodString>>;
548
- data_subject_contestation: z.ZodOptional<z.ZodObject<{
549
- url: z.ZodOptional<z.ZodString>;
550
- email: z.ZodOptional<z.ZodEmail>;
551
- languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
552
- }, z.core.$loose>>;
553
- brand_kit_override: z.ZodOptional<z.ZodObject<{
554
- logo: z.ZodOptional<Omit<z.ZodObject<{
555
- asset_type: z.ZodType<"image", "image", z.core.$ZodTypeInternals<"image", "image">>;
556
- url: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
557
- width: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
558
- height: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
559
- file_size_bytes: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
560
- pixel_ratio: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
561
- state_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
562
- breakpoint_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
563
- focal_point: z.ZodOptional<z.ZodType<[number, number], [number, number], z.core.$ZodTypeInternals<[number, number], [number, number]>>>;
564
- format: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
565
- alt_text: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
566
- provenance: z.ZodOptional<z.ZodType<import("..").Provenance, import("..").Provenance, z.core.$ZodTypeInternals<import("..").Provenance, import("..").Provenance>>>;
567
- }, z.core.$loose>, keyof z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>> & z.ZodType<import("..").ImageAsset & Record<string, unknown>, import("..").ImageAsset, z.core.$ZodTypeInternals<import("..").ImageAsset & Record<string, unknown>, import("..").ImageAsset>>>;
568
- colors: z.ZodOptional<z.ZodObject<{
569
- primary: z.ZodOptional<z.ZodString>;
570
- secondary: z.ZodOptional<z.ZodString>;
571
- accent: z.ZodOptional<z.ZodString>;
572
- }, z.core.$loose>>;
573
- voice: z.ZodOptional<z.ZodString>;
574
- tagline: z.ZodOptional<z.ZodString>;
575
- }, z.core.$loose>>;
576
- }, z.core.$loose>;
519
+ transport: z.ZodString;
520
+ orchestration: z.ZodUnion<readonly [z.ZodLiteral<"producer_managed">, z.ZodLiteral<"consumer_managed">]>;
521
+ destination: z.ZodUnion<readonly [z.ZodObject<{
522
+ mode: z.ZodLiteral<"existing">;
523
+ destination_ref: z.ZodString;
524
+ }, z.core.$loose>, z.ZodObject<{
525
+ mode: z.ZodLiteral<"provision">;
526
+ provider: z.ZodObject<{
527
+ domain: z.ZodString;
528
+ }, z.core.$loose>;
529
+ location: z.ZodString;
530
+ access_mode: z.ZodOptional<z.ZodString>;
531
+ }, z.core.$loose>]>;
532
+ format: z.ZodUnion<readonly [z.ZodLiteral<"jsonl">, z.ZodLiteral<"csv">, z.ZodLiteral<"parquet">, z.ZodLiteral<"avro">, z.ZodLiteral<"orc">]>;
577
533
  }, z.core.$loose>, z.ZodObject<{
578
534
  pattern: z.ZodLiteral<"dataset_share">;
579
535
  transport: z.ZodString;
@@ -922,42 +878,20 @@ export declare const SyncCreativesResponseStrictSchema: z.ZodUnion<readonly [z.Z
922
878
  }, z.core.$loose>;
923
879
  method: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
924
880
  pattern: z.ZodLiteral<"file_transfer">;
925
- transport: z.ZodUnion<readonly [z.ZodLiteral<"s3">, z.ZodLiteral<"gcs">, z.ZodLiteral<"azure_blob">]>;
926
- directions: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodLiteral<"buyer_to_seller">, z.ZodLiteral<"seller_to_buyer">]>>>;
927
- vendor: z.ZodObject<{
928
- domain: z.ZodString;
929
- brand_id: z.ZodOptional<z.ZodString>;
930
- countries: z.ZodOptional<z.ZodArray<z.ZodString>>;
931
- industries: z.ZodOptional<z.ZodArray<z.ZodString>>;
932
- data_subject_contestation: z.ZodOptional<z.ZodObject<{
933
- url: z.ZodOptional<z.ZodString>;
934
- email: z.ZodOptional<z.ZodEmail>;
935
- languages: z.ZodOptional<z.ZodArray<z.ZodString>>;
936
- }, z.core.$loose>>;
937
- brand_kit_override: z.ZodOptional<z.ZodObject<{
938
- logo: z.ZodOptional<Omit<z.ZodObject<{
939
- asset_type: z.ZodType<"image", "image", z.core.$ZodTypeInternals<"image", "image">>;
940
- url: z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>;
941
- width: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
942
- height: z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>;
943
- file_size_bytes: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
944
- pixel_ratio: z.ZodOptional<z.ZodType<number, number, z.core.$ZodTypeInternals<number, number>>>;
945
- state_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
946
- breakpoint_id: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
947
- focal_point: z.ZodOptional<z.ZodType<[number, number], [number, number], z.core.$ZodTypeInternals<[number, number], [number, number]>>>;
948
- format: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
949
- alt_text: z.ZodOptional<z.ZodType<string, string, z.core.$ZodTypeInternals<string, string>>>;
950
- provenance: z.ZodOptional<z.ZodType<import("..").Provenance, import("..").Provenance, z.core.$ZodTypeInternals<import("..").Provenance, import("..").Provenance>>>;
951
- }, z.core.$loose>, keyof z.ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>> & z.ZodType<import("..").ImageAsset & Record<string, unknown>, import("..").ImageAsset, z.core.$ZodTypeInternals<import("..").ImageAsset & Record<string, unknown>, import("..").ImageAsset>>>;
952
- colors: z.ZodOptional<z.ZodObject<{
953
- primary: z.ZodOptional<z.ZodString>;
954
- secondary: z.ZodOptional<z.ZodString>;
955
- accent: z.ZodOptional<z.ZodString>;
956
- }, z.core.$loose>>;
957
- voice: z.ZodOptional<z.ZodString>;
958
- tagline: z.ZodOptional<z.ZodString>;
959
- }, z.core.$loose>>;
960
- }, z.core.$loose>;
881
+ transport: z.ZodString;
882
+ orchestration: z.ZodUnion<readonly [z.ZodLiteral<"producer_managed">, z.ZodLiteral<"consumer_managed">]>;
883
+ destination: z.ZodUnion<readonly [z.ZodObject<{
884
+ mode: z.ZodLiteral<"existing">;
885
+ destination_ref: z.ZodString;
886
+ }, z.core.$loose>, z.ZodObject<{
887
+ mode: z.ZodLiteral<"provision">;
888
+ provider: z.ZodObject<{
889
+ domain: z.ZodString;
890
+ }, z.core.$loose>;
891
+ location: z.ZodString;
892
+ access_mode: z.ZodOptional<z.ZodString>;
893
+ }, z.core.$loose>]>;
894
+ format: z.ZodUnion<readonly [z.ZodLiteral<"jsonl">, z.ZodLiteral<"csv">, z.ZodLiteral<"parquet">, z.ZodLiteral<"avro">, z.ZodLiteral<"orc">]>;
961
895
  }, z.core.$loose>, z.ZodObject<{
962
896
  pattern: z.ZodLiteral<"dataset_share">;
963
897
  transport: z.ZodString;