Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dphuang2 committed Oct 8, 2024
1 parent f6fc59c commit 47b3471
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion ruby/.konfigignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
spec/simple_test_spec.rb
spec/simple_test_spec.rb
lib/composio/api/payment_api.rb
lib/composio/api/apps_api.rb
4 changes: 2 additions & 2 deletions ruby/lib/composio/api/apps_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def list_open_api_specs_with_http_info(extra: {})
# @param admin_token [String]
# @param body [Object]
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
def send_email_to_client(admin_token: SENTINEL, body:: SENTINEL, extra: {})
def send_email_to_client(admin_token: SENTINEL, body: SENTINEL, extra: {})
extra[:body] = body if body != SENTINEL
extra[:admin_token] = admin_token if admin_token != SENTINEL
api_response = send_email_to_client_with_http_info_impl(extra)
Expand All @@ -453,7 +453,7 @@ def send_email_to_client(admin_token: SENTINEL, body:: SENTINEL, extra: {})
# @param admin_token [String]
# @param body [Object]
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
def send_email_to_client_with_http_info(admin_token: SENTINEL, body:: SENTINEL, extra: {})
def send_email_to_client_with_http_info(admin_token: SENTINEL, body: SENTINEL, extra: {})
extra[:body] = body if body != SENTINEL
extra[:admin_token] = admin_token if admin_token != SENTINEL
send_email_to_client_with_http_info_impl(extra)
Expand Down
4 changes: 2 additions & 2 deletions ruby/lib/composio/api/payment_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ def get_invoices_with_http_info(extra: {})
#
# @param body [Object]
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
def handle_stripe_webhook(body:: SENTINEL, extra: {})
def handle_stripe_webhook(body: SENTINEL, extra: {})
extra[:body] = body if body != SENTINEL
api_response = handle_stripe_webhook_with_http_info_impl(extra)
api_response.data
Expand All @@ -357,7 +357,7 @@ def handle_stripe_webhook(body:: SENTINEL, extra: {})
#
# @param body [Object]
# @param [Hash] extra additional parameters to pass along through :header_params, :query_params, or parameter name
def handle_stripe_webhook_with_http_info(body:: SENTINEL, extra: {})
def handle_stripe_webhook_with_http_info(body: SENTINEL, extra: {})
extra[:body] = body if body != SENTINEL
handle_stripe_webhook_with_http_info_impl(extra)
end
Expand Down

0 comments on commit 47b3471

Please sign in to comment.