Skip to content

Commit e7d7b9a

Browse files
feat(api): OpenAPI spec update via Stainless API (#43)
1 parent 7090ff6 commit e7d7b9a

17 files changed

+17
-17
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 17
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-261df351536029839245955df4df7341de315fe2b1d1d6aeb063eaef62bcddc9.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-b3ce4adf9802981762637faaf11e9f3a1805de9b86da2c1afaa464ff17899d16.yml

src/onebusaway/types/agencies_with_coverage_retrieve_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ class AgenciesWithCoverageRetrieveResponseData(BaseModel):
3636

3737

3838
class AgenciesWithCoverageRetrieveResponse(ResponseWrapper):
39-
data: Optional[AgenciesWithCoverageRetrieveResponseData] = None
39+
data: AgenciesWithCoverageRetrieveResponseData

src/onebusaway/types/agency_retrieve_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ class AgencyRetrieveResponseData(BaseModel):
4242

4343

4444
class AgencyRetrieveResponse(ResponseWrapper):
45-
data: Optional[AgencyRetrieveResponseData] = None
45+
data: AgencyRetrieveResponseData

src/onebusaway/types/arrival_and_departure_list_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,4 +278,4 @@ class ArrivalAndDepartureListResponseData(BaseModel):
278278

279279

280280
class ArrivalAndDepartureListResponse(ResponseWrapper):
281-
data: Optional[ArrivalAndDepartureListResponseData] = None
281+
data: ArrivalAndDepartureListResponseData

src/onebusaway/types/arrival_and_departure_retrieve_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,4 +271,4 @@ class ArrivalAndDepartureRetrieveResponseData(BaseModel):
271271

272272

273273
class ArrivalAndDepartureRetrieveResponse(ResponseWrapper):
274-
data: Optional[ArrivalAndDepartureRetrieveResponseData] = None
274+
data: ArrivalAndDepartureRetrieveResponseData

src/onebusaway/types/config_retrieve_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ class ConfigRetrieveResponseData(BaseModel):
7979

8080

8181
class ConfigRetrieveResponse(ResponseWrapper):
82-
data: Optional[ConfigRetrieveResponseData] = None
82+
data: ConfigRetrieveResponseData

src/onebusaway/types/current_time_retrieve_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ class CurrentTimeRetrieveResponseData(BaseModel):
2424

2525

2626
class CurrentTimeRetrieveResponse(ResponseWrapper):
27-
data: Optional[CurrentTimeRetrieveResponseData] = None
27+
data: CurrentTimeRetrieveResponseData

src/onebusaway/types/route_retrieve_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ class RouteRetrieveResponseData(BaseModel):
3838

3939

4040
class RouteRetrieveResponse(ResponseWrapper):
41-
data: Optional[RouteRetrieveResponseData] = None
41+
data: RouteRetrieveResponseData

src/onebusaway/types/schedule_for_stop_retrieve_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,4 @@ class ScheduleForStopRetrieveResponseData(BaseModel):
8686

8787

8888
class ScheduleForStopRetrieveResponse(ResponseWrapper):
89-
data: Optional[ScheduleForStopRetrieveResponseData] = None
89+
data: ScheduleForStopRetrieveResponseData

src/onebusaway/types/stop_ids_for_agency_list_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ class StopIDsForAgencyListResponseData(BaseModel):
2020

2121

2222
class StopIDsForAgencyListResponse(ResponseWrapper):
23-
data: Optional[StopIDsForAgencyListResponseData] = None
23+
data: StopIDsForAgencyListResponseData

0 commit comments

Comments
 (0)