@@ -19,7 +19,7 @@ def initialize(sdk_config)
19
19
end
20
20
21
21
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 ) }
23
23
def delete_api_endpoint ( request )
24
24
# delete_api_endpoint - Delete an ApiEndpoint.
25
25
# 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)
58
58
end
59
59
60
60
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 ) }
62
62
def find_api_endpoint ( request )
63
63
# find_api_endpoint - Find an ApiEndpoint via its displayName.
64
64
# Find an ApiEndpoint via its displayName (set by operationId from a registered OpenAPI schema).
@@ -102,7 +102,7 @@ def find_api_endpoint(request)
102
102
end
103
103
104
104
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 ) }
106
106
def generate_open_api_spec_for_api_endpoint ( request )
107
107
# generate_open_api_spec_for_api_endpoint - Generate an OpenAPI specification for a particular ApiEndpoint.
108
108
# 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)
146
146
end
147
147
148
148
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 ) }
150
150
def generate_postman_collection_for_api_endpoint ( request )
151
151
# generate_postman_collection_for_api_endpoint - Generate a Postman collection for a particular ApiEndpoint.
152
152
# 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)
187
187
end
188
188
189
189
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 ) }
191
191
def get_all_api_endpoints ( request )
192
192
# get_all_api_endpoints - Get all Api endpoints for a particular apiID.
193
193
url , params = @sdk_configuration . get_server_details
@@ -229,7 +229,7 @@ def get_all_api_endpoints(request)
229
229
end
230
230
231
231
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 ) }
233
233
def get_all_for_version_api_endpoints ( request )
234
234
# get_all_for_version_api_endpoints - Get all ApiEndpoints for a particular apiID and versionID.
235
235
url , params = @sdk_configuration . get_server_details
@@ -271,7 +271,7 @@ def get_all_for_version_api_endpoints(request)
271
271
end
272
272
273
273
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 ) }
275
275
def get_api_endpoint ( request )
276
276
# get_api_endpoint - Get an ApiEndpoint.
277
277
url , params = @sdk_configuration . get_server_details
@@ -313,7 +313,7 @@ def get_api_endpoint(request)
313
313
end
314
314
315
315
316
- sig { params ( request : ::SpeakeasyClientSDK ::Operations ::UpsertApiEndpointRequest ) . returns ( Utils :: FieldAugmented ) }
316
+ sig { params ( request : ::SpeakeasyClientSDK ::Operations ::UpsertApiEndpointRequest ) . returns ( :: SpeakeasyClientSDK :: Operations :: UpsertApiEndpointResponse ) }
317
317
def upsert_api_endpoint ( request )
318
318
# upsert_api_endpoint - Upsert an ApiEndpoint.
319
319
# Upsert an ApiEndpoint. If the ApiEndpoint does not exist it will be created, otherwise it will be updated.
0 commit comments