diff --git a/LICENSE b/LICENSE index ccbcbf8..f81f3f8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 Vellum. +Copyright (c) 2026 Vellum. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/lib/requests.rb b/lib/requests.rb index 21db3be..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.12.9' } + 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.12.9' } + 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 e495df9..58d9288 100644 --- a/lib/vellum_ai/types/integration_name.rb +++ b/lib/vellum_ai/types/integration_name.rb @@ -77,6 +77,7 @@ module Vellum # * `SHARE_POINT` - SharePoint # * `SHOPIFY` - Shopify # * `SHORTCUT` - Shortcut +# * `SLACKBOT` - Slackbot # * `SPOTIFY` - Spotify # * `STRIPE` - Stripe # * `SUPABASE` - Supabase @@ -178,6 +179,7 @@ class IntegrationName SHARE_POINT = "SHARE_POINT" SHOPIFY = "SHOPIFY" SHORTCUT = "SHORTCUT" + SLACKBOT = "SLACKBOT" SPOTIFY = "SPOTIFY" STRIPE = "STRIPE" SUPABASE = "SUPABASE" diff --git a/vellum_ai.gemspec b/vellum_ai.gemspec index 42e4f19..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.12.9" + spec.version = "0.3.3" spec.licenses = ["MIT"] spec.authors = Vellum::Gemconfig::AUTHORS spec.email = Vellum::Gemconfig::EMAIL