carbon_ruby_sdk 0.2.29 → 0.2.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +7 -9
- data/README.md +49 -7
- data/lib/carbon_ruby_sdk/api/embeddings_api.rb +2 -2
- data/lib/carbon_ruby_sdk/api/files_api.rb +21 -6
- data/lib/carbon_ruby_sdk/api/integrations_api.rb +18 -10
- data/lib/carbon_ruby_sdk/api/utilities_api.rb +6 -2
- data/lib/carbon_ruby_sdk/models/authentication_property.rb +77 -5
- data/lib/carbon_ruby_sdk/models/auto_synced_source_types_property_inner.rb +226 -0
- data/lib/carbon_ruby_sdk/models/data_source_type.rb +3 -1
- data/lib/carbon_ruby_sdk/models/data_source_type_nullable.rb +3 -1
- data/lib/carbon_ruby_sdk/models/file_formats.rb +3 -1
- data/lib/carbon_ruby_sdk/models/file_formats_nullable.rb +3 -1
- data/lib/carbon_ruby_sdk/models/file_sync_config.rb +17 -5
- data/lib/carbon_ruby_sdk/models/file_sync_config_nullable.rb +17 -5
- data/lib/carbon_ruby_sdk/models/get_embedding_documents_body.rb +1 -1
- data/lib/carbon_ruby_sdk/models/gong_authentication.rb +254 -0
- data/lib/carbon_ruby_sdk/models/o_auth_url_request.rb +28 -7
- data/lib/carbon_ruby_sdk/models/{external_data_source_type.rb → oauth_based_connectors.rb} +6 -4
- data/lib/carbon_ruby_sdk/models/organization_user_files_to_sync_filters.rb +1 -1
- data/lib/carbon_ruby_sdk/models/raw_text_input.rb +16 -4
- data/lib/carbon_ruby_sdk/models/service_now_authentication.rb +296 -0
- data/lib/carbon_ruby_sdk/models/service_now_credentials.rb +262 -0
- data/lib/carbon_ruby_sdk/models/service_now_credentials_nullable.rb +263 -0
- data/lib/carbon_ruby_sdk/models/service_now_file_types.rb +37 -0
- data/lib/carbon_ruby_sdk/models/sitemap_scrape_request.rb +17 -5
- data/lib/carbon_ruby_sdk/models/sync_files_request.rb +1 -1
- data/lib/carbon_ruby_sdk/models/sync_options.rb +1 -1
- data/lib/carbon_ruby_sdk/models/upload_file_from_url_input.rb +16 -4
- data/lib/carbon_ruby_sdk/models/webscrape_request.rb +17 -5
- data/lib/carbon_ruby_sdk/version.rb +1 -1
- data/lib/carbon_ruby_sdk.rb +7 -1
- data/spec/api/files_api_spec.rb +1 -0
- data/spec/models/authentication_property_spec.rb +30 -0
- data/spec/models/auto_synced_source_types_property_inner_spec.rb +22 -0
- data/spec/models/file_sync_config_nullable_spec.rb +6 -0
- data/spec/models/file_sync_config_spec.rb +6 -0
- data/spec/models/gong_authentication_spec.rb +46 -0
- data/spec/models/o_auth_url_request_spec.rb +12 -0
- data/spec/models/oauth_based_connectors_spec.rb +22 -0
- data/spec/models/raw_text_input_spec.rb +6 -0
- data/spec/models/service_now_authentication_spec.rb +64 -0
- data/spec/models/service_now_credentials_nullable_spec.rb +46 -0
- data/spec/models/service_now_credentials_spec.rb +46 -0
- data/spec/models/service_now_file_types_spec.rb +22 -0
- data/spec/models/sitemap_scrape_request_spec.rb +6 -0
- data/spec/models/upload_file_from_url_input_spec.rb +6 -0
- data/spec/models/webscrape_request_spec.rb +6 -0
- metadata +170 -152
- data/spec/models/external_data_source_type_spec.rb +0 -22
| @@ -0,0 +1,46 @@ | |
| 1 | 
            +
            =begin
         | 
| 2 | 
            +
            #Carbon
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            #Connect external data to LLMs, no matter the source.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            The version of the OpenAPI document: 1.0.0
         | 
| 7 | 
            +
            =end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require 'spec_helper'
         | 
| 10 | 
            +
            require 'json'
         | 
| 11 | 
            +
            require 'date'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            # Unit tests for Carbon::GongAuthentication
         | 
| 14 | 
            +
            describe Carbon::GongAuthentication do
         | 
| 15 | 
            +
              let(:instance) { Carbon::GongAuthentication.new }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              describe 'test an instance of GongAuthentication' do
         | 
| 18 | 
            +
                it 'should create an instance of GongAuthentication' do
         | 
| 19 | 
            +
                  expect(instance).to be_instance_of(Carbon::GongAuthentication)
         | 
| 20 | 
            +
                end
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
              describe 'test attribute "source"' do
         | 
| 23 | 
            +
                it 'should work' do
         | 
| 24 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
              end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              describe 'test attribute "access_token"' do
         | 
| 29 | 
            +
                it 'should work' do
         | 
| 30 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 31 | 
            +
                end
         | 
| 32 | 
            +
              end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
              describe 'test attribute "refresh_token"' do
         | 
| 35 | 
            +
                it 'should work' do
         | 
| 36 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 37 | 
            +
                end
         | 
| 38 | 
            +
              end
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              describe 'test attribute "gong_account_email"' do
         | 
| 41 | 
            +
                it 'should work' do
         | 
| 42 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 43 | 
            +
                end
         | 
| 44 | 
            +
              end
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            end
         | 
| @@ -181,4 +181,16 @@ describe Carbon::OAuthURLRequest do | |
| 181 181 | 
             
                end
         | 
| 182 182 | 
             
              end
         | 
| 183 183 |  | 
| 184 | 
            +
              describe 'test attribute "gong_account_email"' do
         | 
| 185 | 
            +
                it 'should work' do
         | 
| 186 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 187 | 
            +
                end
         | 
| 188 | 
            +
              end
         | 
| 189 | 
            +
             | 
| 190 | 
            +
              describe 'test attribute "servicenow_credentials"' do
         | 
| 191 | 
            +
                it 'should work' do
         | 
| 192 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 193 | 
            +
                end
         | 
| 194 | 
            +
              end
         | 
| 195 | 
            +
             | 
| 184 196 | 
             
            end
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            =begin
         | 
| 2 | 
            +
            #Carbon
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            #Connect external data to LLMs, no matter the source.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            The version of the OpenAPI document: 1.0.0
         | 
| 7 | 
            +
            =end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require 'spec_helper'
         | 
| 10 | 
            +
            require 'json'
         | 
| 11 | 
            +
            require 'date'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            # Unit tests for Carbon::OauthBasedConnectors
         | 
| 14 | 
            +
            describe Carbon::OauthBasedConnectors do
         | 
| 15 | 
            +
              let(:instance) { Carbon::OauthBasedConnectors.new }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              describe 'test an instance of OauthBasedConnectors' do
         | 
| 18 | 
            +
                it 'should create an instance of OauthBasedConnectors' do
         | 
| 19 | 
            +
                  expect(instance).to be_instance_of(Carbon::OauthBasedConnectors)
         | 
| 20 | 
            +
                end
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
            end
         | 
| @@ -0,0 +1,64 @@ | |
| 1 | 
            +
            =begin
         | 
| 2 | 
            +
            #Carbon
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            #Connect external data to LLMs, no matter the source.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            The version of the OpenAPI document: 1.0.0
         | 
| 7 | 
            +
            =end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require 'spec_helper'
         | 
| 10 | 
            +
            require 'json'
         | 
| 11 | 
            +
            require 'date'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            # Unit tests for Carbon::ServiceNowAuthentication
         | 
| 14 | 
            +
            describe Carbon::ServiceNowAuthentication do
         | 
| 15 | 
            +
              let(:instance) { Carbon::ServiceNowAuthentication.new }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              describe 'test an instance of ServiceNowAuthentication' do
         | 
| 18 | 
            +
                it 'should create an instance of ServiceNowAuthentication' do
         | 
| 19 | 
            +
                  expect(instance).to be_instance_of(Carbon::ServiceNowAuthentication)
         | 
| 20 | 
            +
                end
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
              describe 'test attribute "source"' do
         | 
| 23 | 
            +
                it 'should work' do
         | 
| 24 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
              end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              describe 'test attribute "access_token"' do
         | 
| 29 | 
            +
                it 'should work' do
         | 
| 30 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 31 | 
            +
                end
         | 
| 32 | 
            +
              end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
              describe 'test attribute "refresh_token"' do
         | 
| 35 | 
            +
                it 'should work' do
         | 
| 36 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 37 | 
            +
                end
         | 
| 38 | 
            +
              end
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              describe 'test attribute "instance_subdomain"' do
         | 
| 41 | 
            +
                it 'should work' do
         | 
| 42 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 43 | 
            +
                end
         | 
| 44 | 
            +
              end
         | 
| 45 | 
            +
             | 
| 46 | 
            +
              describe 'test attribute "client_id"' do
         | 
| 47 | 
            +
                it 'should work' do
         | 
| 48 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 49 | 
            +
                end
         | 
| 50 | 
            +
              end
         | 
| 51 | 
            +
             | 
| 52 | 
            +
              describe 'test attribute "client_secret"' do
         | 
| 53 | 
            +
                it 'should work' do
         | 
| 54 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 55 | 
            +
                end
         | 
| 56 | 
            +
              end
         | 
| 57 | 
            +
             | 
| 58 | 
            +
              describe 'test attribute "redirect_uri"' do
         | 
| 59 | 
            +
                it 'should work' do
         | 
| 60 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 61 | 
            +
                end
         | 
| 62 | 
            +
              end
         | 
| 63 | 
            +
             | 
| 64 | 
            +
            end
         | 
| @@ -0,0 +1,46 @@ | |
| 1 | 
            +
            =begin
         | 
| 2 | 
            +
            #Carbon
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            #Connect external data to LLMs, no matter the source.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            The version of the OpenAPI document: 1.0.0
         | 
| 7 | 
            +
            =end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require 'spec_helper'
         | 
| 10 | 
            +
            require 'json'
         | 
| 11 | 
            +
            require 'date'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            # Unit tests for Carbon::ServiceNowCredentialsNullable
         | 
| 14 | 
            +
            describe Carbon::ServiceNowCredentialsNullable do
         | 
| 15 | 
            +
              let(:instance) { Carbon::ServiceNowCredentialsNullable.new }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              describe 'test an instance of ServiceNowCredentialsNullable' do
         | 
| 18 | 
            +
                it 'should create an instance of ServiceNowCredentialsNullable' do
         | 
| 19 | 
            +
                  expect(instance).to be_instance_of(Carbon::ServiceNowCredentialsNullable)
         | 
| 20 | 
            +
                end
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
              describe 'test attribute "instance_subdomain"' do
         | 
| 23 | 
            +
                it 'should work' do
         | 
| 24 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
              end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              describe 'test attribute "client_id"' do
         | 
| 29 | 
            +
                it 'should work' do
         | 
| 30 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 31 | 
            +
                end
         | 
| 32 | 
            +
              end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
              describe 'test attribute "client_secret"' do
         | 
| 35 | 
            +
                it 'should work' do
         | 
| 36 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 37 | 
            +
                end
         | 
| 38 | 
            +
              end
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              describe 'test attribute "redirect_uri"' do
         | 
| 41 | 
            +
                it 'should work' do
         | 
| 42 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 43 | 
            +
                end
         | 
| 44 | 
            +
              end
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            end
         | 
| @@ -0,0 +1,46 @@ | |
| 1 | 
            +
            =begin
         | 
| 2 | 
            +
            #Carbon
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            #Connect external data to LLMs, no matter the source.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            The version of the OpenAPI document: 1.0.0
         | 
| 7 | 
            +
            =end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require 'spec_helper'
         | 
| 10 | 
            +
            require 'json'
         | 
| 11 | 
            +
            require 'date'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            # Unit tests for Carbon::ServiceNowCredentials
         | 
| 14 | 
            +
            describe Carbon::ServiceNowCredentials do
         | 
| 15 | 
            +
              let(:instance) { Carbon::ServiceNowCredentials.new }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              describe 'test an instance of ServiceNowCredentials' do
         | 
| 18 | 
            +
                it 'should create an instance of ServiceNowCredentials' do
         | 
| 19 | 
            +
                  expect(instance).to be_instance_of(Carbon::ServiceNowCredentials)
         | 
| 20 | 
            +
                end
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
              describe 'test attribute "instance_subdomain"' do
         | 
| 23 | 
            +
                it 'should work' do
         | 
| 24 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 25 | 
            +
                end
         | 
| 26 | 
            +
              end
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              describe 'test attribute "client_id"' do
         | 
| 29 | 
            +
                it 'should work' do
         | 
| 30 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 31 | 
            +
                end
         | 
| 32 | 
            +
              end
         | 
| 33 | 
            +
             | 
| 34 | 
            +
              describe 'test attribute "client_secret"' do
         | 
| 35 | 
            +
                it 'should work' do
         | 
| 36 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 37 | 
            +
                end
         | 
| 38 | 
            +
              end
         | 
| 39 | 
            +
             | 
| 40 | 
            +
              describe 'test attribute "redirect_uri"' do
         | 
| 41 | 
            +
                it 'should work' do
         | 
| 42 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 43 | 
            +
                end
         | 
| 44 | 
            +
              end
         | 
| 45 | 
            +
             | 
| 46 | 
            +
            end
         | 
| @@ -0,0 +1,22 @@ | |
| 1 | 
            +
            =begin
         | 
| 2 | 
            +
            #Carbon
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            #Connect external data to LLMs, no matter the source.
         | 
| 5 | 
            +
             | 
| 6 | 
            +
            The version of the OpenAPI document: 1.0.0
         | 
| 7 | 
            +
            =end
         | 
| 8 | 
            +
             | 
| 9 | 
            +
            require 'spec_helper'
         | 
| 10 | 
            +
            require 'json'
         | 
| 11 | 
            +
            require 'date'
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            # Unit tests for Carbon::ServiceNowFileTypes
         | 
| 14 | 
            +
            describe Carbon::ServiceNowFileTypes do
         | 
| 15 | 
            +
              let(:instance) { Carbon::ServiceNowFileTypes.new }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              describe 'test an instance of ServiceNowFileTypes' do
         | 
| 18 | 
            +
                it 'should create an instance of ServiceNowFileTypes' do
         | 
| 19 | 
            +
                  expect(instance).to be_instance_of(Carbon::ServiceNowFileTypes)
         | 
| 20 | 
            +
                end
         | 
| 21 | 
            +
              end
         | 
| 22 | 
            +
            end
         | 
| @@ -121,4 +121,10 @@ describe Carbon::SitemapScrapeRequest do | |
| 121 121 | 
             
                end
         | 
| 122 122 | 
             
              end
         | 
| 123 123 |  | 
| 124 | 
            +
              describe 'test attribute "generate_chunks_only"' do
         | 
| 125 | 
            +
                it 'should work' do
         | 
| 126 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 127 | 
            +
                end
         | 
| 128 | 
            +
              end
         | 
| 129 | 
            +
             | 
| 124 130 | 
             
            end
         | 
| @@ -127,4 +127,10 @@ describe Carbon::UploadFileFromUrlInput do | |
| 127 127 | 
             
                end
         | 
| 128 128 | 
             
              end
         | 
| 129 129 |  | 
| 130 | 
            +
              describe 'test attribute "generate_chunks_only"' do
         | 
| 131 | 
            +
                it 'should work' do
         | 
| 132 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 133 | 
            +
                end
         | 
| 134 | 
            +
              end
         | 
| 135 | 
            +
             | 
| 130 136 | 
             
            end
         | 
| @@ -115,4 +115,10 @@ describe Carbon::WebscrapeRequest do | |
| 115 115 | 
             
                end
         | 
| 116 116 | 
             
              end
         | 
| 117 117 |  | 
| 118 | 
            +
              describe 'test attribute "generate_chunks_only"' do
         | 
| 119 | 
            +
                it 'should work' do
         | 
| 120 | 
            +
                  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
         | 
| 121 | 
            +
                end
         | 
| 122 | 
            +
              end
         | 
| 123 | 
            +
             | 
| 118 124 | 
             
            end
         |