48
48
from .resources .prices import prices
49
49
from .resources .coupons import coupons
50
50
from .resources .customers import customers
51
+ from .resources .dimensional_price_groups import dimensional_price_groups
51
52
52
53
__all__ = ["Timeout" , "Transport" , "ProxiesTypes" , "RequestOptions" , "Orb" , "AsyncOrb" , "Client" , "AsyncClient" ]
53
54
@@ -67,6 +68,7 @@ class Orb(SyncAPIClient):
67
68
subscriptions : subscriptions .Subscriptions
68
69
webhooks : webhooks .Webhooks
69
70
alerts : alerts .Alerts
71
+ dimensional_price_groups : dimensional_price_groups .DimensionalPriceGroups
70
72
with_raw_response : OrbWithRawResponse
71
73
with_streaming_response : OrbWithStreamedResponse
72
74
@@ -148,6 +150,7 @@ def __init__(
148
150
self .subscriptions = subscriptions .Subscriptions (self )
149
151
self .webhooks = webhooks .Webhooks (self )
150
152
self .alerts = alerts .Alerts (self )
153
+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroups (self )
151
154
self .with_raw_response = OrbWithRawResponse (self )
152
155
self .with_streaming_response = OrbWithStreamedResponse (self )
153
156
@@ -321,6 +324,7 @@ class AsyncOrb(AsyncAPIClient):
321
324
subscriptions : subscriptions .AsyncSubscriptions
322
325
webhooks : webhooks .AsyncWebhooks
323
326
alerts : alerts .AsyncAlerts
327
+ dimensional_price_groups : dimensional_price_groups .AsyncDimensionalPriceGroups
324
328
with_raw_response : AsyncOrbWithRawResponse
325
329
with_streaming_response : AsyncOrbWithStreamedResponse
326
330
@@ -402,6 +406,7 @@ def __init__(
402
406
self .subscriptions = subscriptions .AsyncSubscriptions (self )
403
407
self .webhooks = webhooks .AsyncWebhooks (self )
404
408
self .alerts = alerts .AsyncAlerts (self )
409
+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroups (self )
405
410
self .with_raw_response = AsyncOrbWithRawResponse (self )
406
411
self .with_streaming_response = AsyncOrbWithStreamedResponse (self )
407
412
@@ -575,6 +580,9 @@ def __init__(self, client: Orb) -> None:
575
580
self .prices = prices .PricesWithRawResponse (client .prices )
576
581
self .subscriptions = subscriptions .SubscriptionsWithRawResponse (client .subscriptions )
577
582
self .alerts = alerts .AlertsWithRawResponse (client .alerts )
583
+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroupsWithRawResponse (
584
+ client .dimensional_price_groups
585
+ )
578
586
579
587
580
588
class AsyncOrbWithRawResponse :
@@ -592,6 +600,9 @@ def __init__(self, client: AsyncOrb) -> None:
592
600
self .prices = prices .AsyncPricesWithRawResponse (client .prices )
593
601
self .subscriptions = subscriptions .AsyncSubscriptionsWithRawResponse (client .subscriptions )
594
602
self .alerts = alerts .AsyncAlertsWithRawResponse (client .alerts )
603
+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroupsWithRawResponse (
604
+ client .dimensional_price_groups
605
+ )
595
606
596
607
597
608
class OrbWithStreamedResponse :
@@ -609,6 +620,9 @@ def __init__(self, client: Orb) -> None:
609
620
self .prices = prices .PricesWithStreamingResponse (client .prices )
610
621
self .subscriptions = subscriptions .SubscriptionsWithStreamingResponse (client .subscriptions )
611
622
self .alerts = alerts .AlertsWithStreamingResponse (client .alerts )
623
+ self .dimensional_price_groups = dimensional_price_groups .DimensionalPriceGroupsWithStreamingResponse (
624
+ client .dimensional_price_groups
625
+ )
612
626
613
627
614
628
class AsyncOrbWithStreamedResponse :
@@ -628,6 +642,9 @@ def __init__(self, client: AsyncOrb) -> None:
628
642
self .prices = prices .AsyncPricesWithStreamingResponse (client .prices )
629
643
self .subscriptions = subscriptions .AsyncSubscriptionsWithStreamingResponse (client .subscriptions )
630
644
self .alerts = alerts .AsyncAlertsWithStreamingResponse (client .alerts )
645
+ self .dimensional_price_groups = dimensional_price_groups .AsyncDimensionalPriceGroupsWithStreamingResponse (
646
+ client .dimensional_price_groups
647
+ )
631
648
632
649
633
650
Client = Orb
0 commit comments