diff --git a/lib/requests.rb b/lib/requests.rb index 50b1999..ff5a025 100644 --- a/lib/requests.rb +++ b/lib/requests.rb @@ -56,7 +56,7 @@ def get_url(request_options: nil, environment:) end # @return [Hash{String => String}] def get_headers - headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '1.11.11' } + headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '0.3.3' } headers["X-API-KEY"] = ((@api_key.is_a? Method) ? @api_key.call : @api_key) unless @api_key.nil? headers end @@ -107,7 +107,7 @@ def get_url(request_options: nil, environment:) end # @return [Hash{String => String}] def get_headers - headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '1.11.11' } + headers = { "X-Fern-Language": 'Ruby', "X-Fern-SDK-Name": 'vellum_ai', "X-Fern-SDK-Version": '0.3.3' } headers["X-API-KEY"] = ((@api_key.is_a? Method) ? @api_key.call : @api_key) unless @api_key.nil? headers end diff --git a/lib/vellum_ai/types/integration_name.rb b/lib/vellum_ai/types/integration_name.rb index ab06d7a..4dcd4fe 100644 --- a/lib/vellum_ai/types/integration_name.rb +++ b/lib/vellum_ai/types/integration_name.rb @@ -91,6 +91,10 @@ module Vellum # * `DISCORD` - Discord # * `DOCUSIGN` - DocuSign # * `TRELLO` - Trello +# * `HEYREACH` - HeyReach +# * `ACTIVE_CAMPAIGN` - Active Campaign +# * `CUSTOMER_IO` - Customer.io +# * `SEGMENT` - Segment class IntegrationName SLACK = "SLACK" @@ -183,6 +187,10 @@ class IntegrationName DISCORD = "DISCORD" DOCUSIGN = "DOCUSIGN" TRELLO = "TRELLO" + HEYREACH = "HEYREACH" + ACTIVE_CAMPAIGN = "ACTIVE_CAMPAIGN" + CUSTOMER_IO = "CUSTOMER_IO" + SEGMENT = "SEGMENT" end end \ No newline at end of file diff --git a/vellum_ai.gemspec b/vellum_ai.gemspec index 41f909e..7ba51c9 100644 --- a/vellum_ai.gemspec +++ b/vellum_ai.gemspec @@ -11,7 +11,7 @@ require_relative "lib/gemconfig" Gem::Specification.new do | spec | spec.name = "vellum_ai" - spec.version = "1.11.11" + spec.version = "0.3.3" spec.licenses = ["MIT"] spec.authors = Vellum::Gemconfig::AUTHORS spec.email = Vellum::Gemconfig::EMAIL