3838from .resources .prices import prices
3939from .resources .coupons import coupons
4040from .resources .customers import customers
41+ from .resources .dimensional_price_groups import dimensional_price_groups
4142
4243__all__ = ["Timeout" , "Transport" , "ProxiesTypes" , "RequestOptions" , "Orb" , "AsyncOrb" , "Client" , "AsyncClient" ]
4344
@@ -56,6 +57,7 @@ class Orb(SyncAPIClient):
5657 prices : prices .Prices
5758 subscriptions : subscriptions .Subscriptions
5859 alerts : alerts .Alerts
60+ dimensional_price_groups : dimensional_price_groups .DimensionalPriceGroups
5961 with_raw_response : OrbWithRawResponse
6062 with_streaming_response : OrbWithStreamedResponse
6163
@@ -136,6 +138,7 @@ def __init__(
136138 self .prices = prices .Prices (self )
137139 self .subscriptions = subscriptions .Subscriptions (self )
138140 self .alerts = alerts .Alerts (self )
141+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroups (self )
139142 self .with_raw_response = OrbWithRawResponse (self )
140143 self .with_streaming_response = OrbWithStreamedResponse (self )
141144
@@ -308,6 +311,7 @@ class AsyncOrb(AsyncAPIClient):
308311 prices : prices .AsyncPrices
309312 subscriptions : subscriptions .AsyncSubscriptions
310313 alerts : alerts .AsyncAlerts
314+ dimensional_price_groups : dimensional_price_groups .AsyncDimensionalPriceGroups
311315 with_raw_response : AsyncOrbWithRawResponse
312316 with_streaming_response : AsyncOrbWithStreamedResponse
313317
@@ -388,6 +392,7 @@ def __init__(
388392 self .prices = prices .AsyncPrices (self )
389393 self .subscriptions = subscriptions .AsyncSubscriptions (self )
390394 self .alerts = alerts .AsyncAlerts (self )
395+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroups (self )
391396 self .with_raw_response = AsyncOrbWithRawResponse (self )
392397 self .with_streaming_response = AsyncOrbWithStreamedResponse (self )
393398
@@ -561,6 +566,9 @@ def __init__(self, client: Orb) -> None:
561566 self .prices = prices .PricesWithRawResponse (client .prices )
562567 self .subscriptions = subscriptions .SubscriptionsWithRawResponse (client .subscriptions )
563568 self .alerts = alerts .AlertsWithRawResponse (client .alerts )
569+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroupsWithRawResponse (
570+ client .dimensional_price_groups
571+ )
564572
565573
566574class AsyncOrbWithRawResponse :
@@ -578,6 +586,9 @@ def __init__(self, client: AsyncOrb) -> None:
578586 self .prices = prices .AsyncPricesWithRawResponse (client .prices )
579587 self .subscriptions = subscriptions .AsyncSubscriptionsWithRawResponse (client .subscriptions )
580588 self .alerts = alerts .AsyncAlertsWithRawResponse (client .alerts )
589+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroupsWithRawResponse (
590+ client .dimensional_price_groups
591+ )
581592
582593
583594class OrbWithStreamedResponse :
@@ -595,6 +606,9 @@ def __init__(self, client: Orb) -> None:
595606 self .prices = prices .PricesWithStreamingResponse (client .prices )
596607 self .subscriptions = subscriptions .SubscriptionsWithStreamingResponse (client .subscriptions )
597608 self .alerts = alerts .AlertsWithStreamingResponse (client .alerts )
609+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroupsWithStreamingResponse (
610+ client .dimensional_price_groups
611+ )
598612
599613
600614class AsyncOrbWithStreamedResponse :
@@ -614,6 +628,9 @@ def __init__(self, client: AsyncOrb) -> None:
614628 self .prices = prices .AsyncPricesWithStreamingResponse (client .prices )
615629 self .subscriptions = subscriptions .AsyncSubscriptionsWithStreamingResponse (client .subscriptions )
616630 self .alerts = alerts .AsyncAlertsWithStreamingResponse (client .alerts )
631+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroupsWithStreamingResponse (
632+ client .dimensional_price_groups
633+ )
617634
618635
619636Client = Orb
0 commit comments