@@ -19,7 +19,7 @@ def initialize(sdk_config)
1919 end
2020
2121
22- sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::DeleteApiEndpointRequest ) ) . returns ( Utils :: FieldAugmented ) }
22+ sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::DeleteApiEndpointRequest ) ) . returns ( :: SpeakeasyClientSDK :: Operations :: DeleteApiEndpointResponse ) }
2323 def delete_api_endpoint ( request )
2424 # delete_api_endpoint - Delete an ApiEndpoint.
2525 # Delete an ApiEndpoint. This will also delete all associated Request Logs (if using a Postgres datastore).
@@ -58,7 +58,7 @@ def delete_api_endpoint(request)
5858 end
5959
6060
61- sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::FindApiEndpointRequest ) ) . returns ( Utils :: FieldAugmented ) }
61+ sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::FindApiEndpointRequest ) ) . returns ( :: SpeakeasyClientSDK :: Operations :: FindApiEndpointResponse ) }
6262 def find_api_endpoint ( request )
6363 # find_api_endpoint - Find an ApiEndpoint via its displayName.
6464 # Find an ApiEndpoint via its displayName (set by operationId from a registered OpenAPI schema).
@@ -102,7 +102,7 @@ def find_api_endpoint(request)
102102 end
103103
104104
105- sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GenerateOpenApiSpecForApiEndpointRequest ) ) . returns ( Utils :: FieldAugmented ) }
105+ sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GenerateOpenApiSpecForApiEndpointRequest ) ) . returns ( :: SpeakeasyClientSDK :: Operations :: GenerateOpenApiSpecForApiEndpointResponse ) }
106106 def generate_open_api_spec_for_api_endpoint ( request )
107107 # generate_open_api_spec_for_api_endpoint - Generate an OpenAPI specification for a particular ApiEndpoint.
108108 # This endpoint will generate a new operation in any registered OpenAPI document if the operation does not already exist in the document.
@@ -146,7 +146,7 @@ def generate_open_api_spec_for_api_endpoint(request)
146146 end
147147
148148
149- sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GeneratePostmanCollectionForApiEndpointRequest ) ) . returns ( Utils :: FieldAugmented ) }
149+ sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GeneratePostmanCollectionForApiEndpointRequest ) ) . returns ( :: SpeakeasyClientSDK :: Operations :: GeneratePostmanCollectionForApiEndpointResponse ) }
150150 def generate_postman_collection_for_api_endpoint ( request )
151151 # generate_postman_collection_for_api_endpoint - Generate a Postman collection for a particular ApiEndpoint.
152152 # Generates a postman collection that allows the endpoint to be called from postman variables produced for any path/query/header parameters included in the OpenAPI document.
@@ -187,7 +187,7 @@ def generate_postman_collection_for_api_endpoint(request)
187187 end
188188
189189
190- sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GetAllApiEndpointsRequest ) ) . returns ( Utils :: FieldAugmented ) }
190+ sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GetAllApiEndpointsRequest ) ) . returns ( :: SpeakeasyClientSDK :: Operations :: GetAllApiEndpointsResponse ) }
191191 def get_all_api_endpoints ( request )
192192 # get_all_api_endpoints - Get all Api endpoints for a particular apiID.
193193 url , params = @sdk_configuration . get_server_details
@@ -229,7 +229,7 @@ def get_all_api_endpoints(request)
229229 end
230230
231231
232- sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GetAllForVersionApiEndpointsRequest ) ) . returns ( Utils :: FieldAugmented ) }
232+ sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GetAllForVersionApiEndpointsRequest ) ) . returns ( :: SpeakeasyClientSDK :: Operations :: GetAllForVersionApiEndpointsResponse ) }
233233 def get_all_for_version_api_endpoints ( request )
234234 # get_all_for_version_api_endpoints - Get all ApiEndpoints for a particular apiID and versionID.
235235 url , params = @sdk_configuration . get_server_details
@@ -271,7 +271,7 @@ def get_all_for_version_api_endpoints(request)
271271 end
272272
273273
274- sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GetApiEndpointRequest ) ) . returns ( Utils :: FieldAugmented ) }
274+ sig { params ( request : T . nilable ( ::SpeakeasyClientSDK ::Operations ::GetApiEndpointRequest ) ) . returns ( :: SpeakeasyClientSDK :: Operations :: GetApiEndpointResponse ) }
275275 def get_api_endpoint ( request )
276276 # get_api_endpoint - Get an ApiEndpoint.
277277 url , params = @sdk_configuration . get_server_details
@@ -313,7 +313,7 @@ def get_api_endpoint(request)
313313 end
314314
315315
316- sig { params ( request : ::SpeakeasyClientSDK ::Operations ::UpsertApiEndpointRequest ) . returns ( Utils :: FieldAugmented ) }
316+ sig { params ( request : ::SpeakeasyClientSDK ::Operations ::UpsertApiEndpointRequest ) . returns ( :: SpeakeasyClientSDK :: Operations :: UpsertApiEndpointResponse ) }
317317 def upsert_api_endpoint ( request )
318318 # upsert_api_endpoint - Upsert an ApiEndpoint.
319319 # Upsert an ApiEndpoint. If the ApiEndpoint does not exist it will be created, otherwise it will be updated.
0 commit comments