@@ -56,6 +56,7 @@ class OnebusawaySDK(SyncAPIClient):
5656 arrival_and_departure : resources .ArrivalAndDepartureResource
5757 trip : resources .TripResource
5858 trips_for_location : resources .TripsForLocationResource
59+ trip_details : resources .TripDetailsResource
5960 with_raw_response : OnebusawaySDKWithRawResponse
6061 with_streaming_response : OnebusawaySDKWithStreamedResponse
6162
@@ -123,6 +124,7 @@ def __init__(
123124 self .arrival_and_departure = resources .ArrivalAndDepartureResource (self )
124125 self .trip = resources .TripResource (self )
125126 self .trips_for_location = resources .TripsForLocationResource (self )
127+ self .trip_details = resources .TripDetailsResource (self )
126128 self .with_raw_response = OnebusawaySDKWithRawResponse (self )
127129 self .with_streaming_response = OnebusawaySDKWithStreamedResponse (self )
128130
@@ -132,9 +134,8 @@ def qs(self) -> Querystring:
132134 return Querystring (array_format = "repeat" )
133135
134136 @property
135- @override
136- def auth_headers (self ) -> dict [str , str ]:
137- return {}
137+ def auth_headers (self ) -> httpx .Auth :
138+ raise NotImplementedError ("This auth method has not been implemented yet." )
138139
139140 @property
140141 @override
@@ -250,6 +251,7 @@ class AsyncOnebusawaySDK(AsyncAPIClient):
250251 arrival_and_departure : resources .AsyncArrivalAndDepartureResource
251252 trip : resources .AsyncTripResource
252253 trips_for_location : resources .AsyncTripsForLocationResource
254+ trip_details : resources .AsyncTripDetailsResource
253255 with_raw_response : AsyncOnebusawaySDKWithRawResponse
254256 with_streaming_response : AsyncOnebusawaySDKWithStreamedResponse
255257
@@ -317,6 +319,7 @@ def __init__(
317319 self .arrival_and_departure = resources .AsyncArrivalAndDepartureResource (self )
318320 self .trip = resources .AsyncTripResource (self )
319321 self .trips_for_location = resources .AsyncTripsForLocationResource (self )
322+ self .trip_details = resources .AsyncTripDetailsResource (self )
320323 self .with_raw_response = AsyncOnebusawaySDKWithRawResponse (self )
321324 self .with_streaming_response = AsyncOnebusawaySDKWithStreamedResponse (self )
322325
@@ -326,9 +329,8 @@ def qs(self) -> Querystring:
326329 return Querystring (array_format = "repeat" )
327330
328331 @property
329- @override
330- def auth_headers (self ) -> dict [str , str ]:
331- return {}
332+ def auth_headers (self ) -> httpx .Auth :
333+ raise NotImplementedError ("This auth method has not been implemented yet." )
332334
333335 @property
334336 @override
@@ -447,6 +449,7 @@ def __init__(self, client: OnebusawaySDK) -> None:
447449 self .arrival_and_departure = resources .ArrivalAndDepartureResourceWithRawResponse (client .arrival_and_departure )
448450 self .trip = resources .TripResourceWithRawResponse (client .trip )
449451 self .trips_for_location = resources .TripsForLocationResourceWithRawResponse (client .trips_for_location )
452+ self .trip_details = resources .TripDetailsResourceWithRawResponse (client .trip_details )
450453
451454
452455class AsyncOnebusawaySDKWithRawResponse :
@@ -465,6 +468,7 @@ def __init__(self, client: AsyncOnebusawaySDK) -> None:
465468 )
466469 self .trip = resources .AsyncTripResourceWithRawResponse (client .trip )
467470 self .trips_for_location = resources .AsyncTripsForLocationResourceWithRawResponse (client .trips_for_location )
471+ self .trip_details = resources .AsyncTripDetailsResourceWithRawResponse (client .trip_details )
468472
469473
470474class OnebusawaySDKWithStreamedResponse :
@@ -483,6 +487,7 @@ def __init__(self, client: OnebusawaySDK) -> None:
483487 )
484488 self .trip = resources .TripResourceWithStreamingResponse (client .trip )
485489 self .trips_for_location = resources .TripsForLocationResourceWithStreamingResponse (client .trips_for_location )
490+ self .trip_details = resources .TripDetailsResourceWithStreamingResponse (client .trip_details )
486491
487492
488493class AsyncOnebusawaySDKWithStreamedResponse :
@@ -505,6 +510,7 @@ def __init__(self, client: AsyncOnebusawaySDK) -> None:
505510 self .trips_for_location = resources .AsyncTripsForLocationResourceWithStreamingResponse (
506511 client .trips_for_location
507512 )
513+ self .trip_details = resources .AsyncTripDetailsResourceWithStreamingResponse (client .trip_details )
508514
509515
510516Client = OnebusawaySDK
0 commit comments