@@ -59,7 +59,6 @@ class Orb(SyncAPIClient):
59
59
plans : resources .Plans
60
60
prices : resources .Prices
61
61
subscriptions : resources .Subscriptions
62
- beta : resources .Beta
63
62
with_raw_response : OrbWithRawResponse
64
63
with_streaming_response : OrbWithStreamedResponse
65
64
@@ -139,7 +138,6 @@ def __init__(
139
138
self .plans = resources .Plans (self )
140
139
self .prices = resources .Prices (self )
141
140
self .subscriptions = resources .Subscriptions (self )
142
- self .beta = resources .Beta (self )
143
141
self .with_raw_response = OrbWithRawResponse (self )
144
142
self .with_streaming_response = OrbWithStreamedResponse (self )
145
143
@@ -311,7 +309,6 @@ class AsyncOrb(AsyncAPIClient):
311
309
plans : resources .AsyncPlans
312
310
prices : resources .AsyncPrices
313
311
subscriptions : resources .AsyncSubscriptions
314
- beta : resources .AsyncBeta
315
312
with_raw_response : AsyncOrbWithRawResponse
316
313
with_streaming_response : AsyncOrbWithStreamedResponse
317
314
@@ -391,7 +388,6 @@ def __init__(
391
388
self .plans = resources .AsyncPlans (self )
392
389
self .prices = resources .AsyncPrices (self )
393
390
self .subscriptions = resources .AsyncSubscriptions (self )
394
- self .beta = resources .AsyncBeta (self )
395
391
self .with_raw_response = AsyncOrbWithRawResponse (self )
396
392
self .with_streaming_response = AsyncOrbWithStreamedResponse (self )
397
393
@@ -564,7 +560,6 @@ def __init__(self, client: Orb) -> None:
564
560
self .plans = resources .PlansWithRawResponse (client .plans )
565
561
self .prices = resources .PricesWithRawResponse (client .prices )
566
562
self .subscriptions = resources .SubscriptionsWithRawResponse (client .subscriptions )
567
- self .beta = resources .BetaWithRawResponse (client .beta )
568
563
569
564
570
565
class AsyncOrbWithRawResponse :
@@ -581,7 +576,6 @@ def __init__(self, client: AsyncOrb) -> None:
581
576
self .plans = resources .AsyncPlansWithRawResponse (client .plans )
582
577
self .prices = resources .AsyncPricesWithRawResponse (client .prices )
583
578
self .subscriptions = resources .AsyncSubscriptionsWithRawResponse (client .subscriptions )
584
- self .beta = resources .AsyncBetaWithRawResponse (client .beta )
585
579
586
580
587
581
class OrbWithStreamedResponse :
@@ -598,7 +592,6 @@ def __init__(self, client: Orb) -> None:
598
592
self .plans = resources .PlansWithStreamingResponse (client .plans )
599
593
self .prices = resources .PricesWithStreamingResponse (client .prices )
600
594
self .subscriptions = resources .SubscriptionsWithStreamingResponse (client .subscriptions )
601
- self .beta = resources .BetaWithStreamingResponse (client .beta )
602
595
603
596
604
597
class AsyncOrbWithStreamedResponse :
@@ -615,7 +608,6 @@ def __init__(self, client: AsyncOrb) -> None:
615
608
self .plans = resources .AsyncPlansWithStreamingResponse (client .plans )
616
609
self .prices = resources .AsyncPricesWithStreamingResponse (client .prices )
617
610
self .subscriptions = resources .AsyncSubscriptionsWithStreamingResponse (client .subscriptions )
618
- self .beta = resources .AsyncBetaWithStreamingResponse (client .beta )
619
611
620
612
621
613
Client = Orb
0 commit comments