38
38
from .resources .prices import prices
39
39
from .resources .coupons import coupons
40
40
from .resources .customers import customers
41
+ from .resources .dimensional_price_groups import dimensional_price_groups
41
42
42
43
__all__ = ["Timeout" , "Transport" , "ProxiesTypes" , "RequestOptions" , "Orb" , "AsyncOrb" , "Client" , "AsyncClient" ]
43
44
@@ -56,6 +57,7 @@ class Orb(SyncAPIClient):
56
57
prices : prices .Prices
57
58
subscriptions : subscriptions .Subscriptions
58
59
alerts : alerts .Alerts
60
+ dimensional_price_groups : dimensional_price_groups .DimensionalPriceGroups
59
61
with_raw_response : OrbWithRawResponse
60
62
with_streaming_response : OrbWithStreamedResponse
61
63
@@ -136,6 +138,7 @@ def __init__(
136
138
self .prices = prices .Prices (self )
137
139
self .subscriptions = subscriptions .Subscriptions (self )
138
140
self .alerts = alerts .Alerts (self )
141
+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroups (self )
139
142
self .with_raw_response = OrbWithRawResponse (self )
140
143
self .with_streaming_response = OrbWithStreamedResponse (self )
141
144
@@ -308,6 +311,7 @@ class AsyncOrb(AsyncAPIClient):
308
311
prices : prices .AsyncPrices
309
312
subscriptions : subscriptions .AsyncSubscriptions
310
313
alerts : alerts .AsyncAlerts
314
+ dimensional_price_groups : dimensional_price_groups .AsyncDimensionalPriceGroups
311
315
with_raw_response : AsyncOrbWithRawResponse
312
316
with_streaming_response : AsyncOrbWithStreamedResponse
313
317
@@ -388,6 +392,7 @@ def __init__(
388
392
self .prices = prices .AsyncPrices (self )
389
393
self .subscriptions = subscriptions .AsyncSubscriptions (self )
390
394
self .alerts = alerts .AsyncAlerts (self )
395
+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroups (self )
391
396
self .with_raw_response = AsyncOrbWithRawResponse (self )
392
397
self .with_streaming_response = AsyncOrbWithStreamedResponse (self )
393
398
@@ -561,6 +566,9 @@ def __init__(self, client: Orb) -> None:
561
566
self .prices = prices .PricesWithRawResponse (client .prices )
562
567
self .subscriptions = subscriptions .SubscriptionsWithRawResponse (client .subscriptions )
563
568
self .alerts = alerts .AlertsWithRawResponse (client .alerts )
569
+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroupsWithRawResponse (
570
+ client .dimensional_price_groups
571
+ )
564
572
565
573
566
574
class AsyncOrbWithRawResponse :
@@ -578,6 +586,9 @@ def __init__(self, client: AsyncOrb) -> None:
578
586
self .prices = prices .AsyncPricesWithRawResponse (client .prices )
579
587
self .subscriptions = subscriptions .AsyncSubscriptionsWithRawResponse (client .subscriptions )
580
588
self .alerts = alerts .AsyncAlertsWithRawResponse (client .alerts )
589
+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroupsWithRawResponse (
590
+ client .dimensional_price_groups
591
+ )
581
592
582
593
583
594
class OrbWithStreamedResponse :
@@ -595,6 +606,9 @@ def __init__(self, client: Orb) -> None:
595
606
self .prices = prices .PricesWithStreamingResponse (client .prices )
596
607
self .subscriptions = subscriptions .SubscriptionsWithStreamingResponse (client .subscriptions )
597
608
self .alerts = alerts .AlertsWithStreamingResponse (client .alerts )
609
+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroupsWithStreamingResponse (
610
+ client .dimensional_price_groups
611
+ )
598
612
599
613
600
614
class AsyncOrbWithStreamedResponse :
@@ -614,6 +628,9 @@ def __init__(self, client: AsyncOrb) -> None:
614
628
self .prices = prices .AsyncPricesWithStreamingResponse (client .prices )
615
629
self .subscriptions = subscriptions .AsyncSubscriptionsWithStreamingResponse (client .subscriptions )
616
630
self .alerts = alerts .AsyncAlertsWithStreamingResponse (client .alerts )
631
+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroupsWithStreamingResponse (
632
+ client .dimensional_price_groups
633
+ )
617
634
618
635
619
636
Client = Orb
0 commit comments