lib/hubspot/helpers/camel_case.rb in hubspot-api-client-18.0.0 vs lib/hubspot/helpers/camel_case.rb in hubspot-api-client-19.0.0

- old
+ new

@@ -5,9 +5,11 @@ case string when 'oauth' 'OAuth' when 'gdpr_api' 'GDPRApi' + when 'public_smtp_tokens_api' + 'PublicSMTPTokensApi' else string.split('_').collect(&:capitalize).join end end end