diff --git a/src/adcp/__init__.py b/src/adcp/__init__.py index c82a66b..80c1853 100644 --- a/src/adcp/__init__.py +++ b/src/adcp/__init__.py @@ -132,6 +132,7 @@ Error, FlatRatePricingOption, Format, + FormatId, GetMediaBuyDeliveryRequest, GetMediaBuyDeliveryResponse, GetProductsRequest, @@ -147,14 +148,17 @@ MediaBuy, MediaBuyStatus, Package, + PackageRequest, PackageStatus, PreviewCreativeRequest, PreviewCreativeResponse, + PriceGuidance, PricingModel, Product, Property, ProvidePerformanceFeedbackRequest, ProvidePerformanceFeedbackResponse, + PushNotificationConfig, SyncCreativesRequest, SyncCreativesResponse, UpdateMediaBuyRequest, @@ -214,6 +218,7 @@ "ProvidePerformanceFeedbackResponse", "Error", "Format", + "FormatId", "Product", "Property", # Core domain types (from stable API) @@ -222,6 +227,7 @@ "CreativeManifest", "MediaBuy", "Package", + "PackageRequest", # Package type aliases "CreatedPackageReference", # Status enums (for control flow) @@ -229,7 +235,7 @@ "MediaBuyStatus", "PackageStatus", "PricingModel", - # Pricing options (all 9 types) + # Pricing-related types "CpcPricingOption", "CpcvPricingOption", "CpmAuctionPricingOption", @@ -237,8 +243,11 @@ "CppPricingOption", "CpvPricingOption", "FlatRatePricingOption", + "PriceGuidance", "VcpmAuctionPricingOption", "VcpmFixedRatePricingOption", + # Configuration types + "PushNotificationConfig", # Adagents validation "AuthorizationContext", "fetch_adagents", diff --git a/src/adcp/types/stable.py b/src/adcp/types/stable.py index 600e759..0149ea4 100644 --- a/src/adcp/types/stable.py +++ b/src/adcp/types/stable.py @@ -48,6 +48,7 @@ Error, FlatRatePricingOption, Format, + FormatId, GetMediaBuyDeliveryRequest, GetMediaBuyDeliveryResponse, GetProductsRequest, @@ -66,14 +67,17 @@ MarkdownAsset, MediaBuy, MediaBuyStatus, + PackageRequest, PackageStatus, PreviewCreativeRequest, PreviewCreativeResponse, + PriceGuidance, PricingModel, Product, Property, ProvidePerformanceFeedbackRequest, ProvidePerformanceFeedbackResponse, + PushNotificationConfig, SyncCreativesRequest, SyncCreativesResponse, TasksGetRequest, @@ -143,11 +147,13 @@ "CreativeManifest", "Error", "Format", + "FormatId", "MediaBuy", "Package", + "PackageRequest", "Product", "Property", - # Pricing options + # Pricing-related types "CpcPricingOption", "CpcvPricingOption", "CpmAuctionPricingOption", @@ -155,6 +161,7 @@ "CppPricingOption", "CpvPricingOption", "FlatRatePricingOption", + "PriceGuidance", "VcpmAuctionPricingOption", "VcpmFixedRatePricingOption", # Status enums @@ -164,6 +171,8 @@ "PricingModel", "TaskStatus", "TaskType", + # Configuration types + "PushNotificationConfig", # Assets "AudioAsset", "CssAsset",