carbon_ruby_sdk 0.1.6 → 0.1.8

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.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +57 -3
  4. data/lib/carbon_ruby_sdk/api/files_api.rb +6 -6
  5. data/lib/carbon_ruby_sdk/api/integrations_api.rb +104 -8
  6. data/lib/carbon_ruby_sdk/models/authentication_property.rb +436 -0
  7. data/lib/carbon_ruby_sdk/models/confluence_authentication.rb +254 -0
  8. data/lib/carbon_ruby_sdk/models/connect_data_source_input.rb +229 -0
  9. data/lib/carbon_ruby_sdk/models/connect_data_source_response.rb +230 -0
  10. data/lib/carbon_ruby_sdk/models/freskdesk_authentication.rb +244 -0
  11. data/lib/carbon_ruby_sdk/models/gitbook_authetication.rb +244 -0
  12. data/lib/carbon_ruby_sdk/models/notion_authentication.rb +244 -0
  13. data/lib/carbon_ruby_sdk/models/o_auth_authentication.rb +244 -0
  14. data/lib/carbon_ruby_sdk/models/o_auth_url_request.rb +1 -0
  15. data/lib/carbon_ruby_sdk/models/organization_user_data_source_api.rb +11 -1
  16. data/lib/carbon_ruby_sdk/models/s3_authentication.rb +244 -0
  17. data/lib/carbon_ruby_sdk/models/s3_file_sync_input.rb +1 -0
  18. data/lib/carbon_ruby_sdk/models/salesforce_authentication.rb +254 -0
  19. data/lib/carbon_ruby_sdk/models/sharepoint_authentication.rb +268 -0
  20. data/lib/carbon_ruby_sdk/models/simple_o_auth_data_sources.rb +41 -0
  21. data/lib/carbon_ruby_sdk/models/sitemap_scrape_request.rb +15 -0
  22. data/lib/carbon_ruby_sdk/models/sync_files_request.rb +1 -0
  23. data/lib/carbon_ruby_sdk/models/sync_options.rb +323 -0
  24. data/lib/carbon_ruby_sdk/models/upload_file_from_url_input.rb +1 -0
  25. data/lib/carbon_ruby_sdk/models/webscrape_request.rb +30 -0
  26. data/lib/carbon_ruby_sdk/models/zendesk_authentication.rb +244 -0
  27. data/lib/carbon_ruby_sdk/models/zotero_authentication.rb +272 -0
  28. data/lib/carbon_ruby_sdk/version.rb +1 -1
  29. data/lib/carbon_ruby_sdk.rb +15 -0
  30. data/spec/api/files_api_spec.rb +1 -1
  31. data/spec/api/integrations_api_spec.rb +11 -0
  32. data/spec/models/authentication_property_spec.rb +112 -0
  33. data/spec/models/confluence_authentication_spec.rb +46 -0
  34. data/spec/models/connect_data_source_input_spec.rb +34 -0
  35. data/spec/models/connect_data_source_response_spec.rb +34 -0
  36. data/spec/models/freskdesk_authentication_spec.rb +40 -0
  37. data/spec/models/gitbook_authetication_spec.rb +40 -0
  38. data/spec/models/notion_authentication_spec.rb +40 -0
  39. data/spec/models/o_auth_authentication_spec.rb +40 -0
  40. data/spec/models/organization_user_data_source_api_spec.rb +6 -0
  41. data/spec/models/s3_authentication_spec.rb +40 -0
  42. data/spec/models/salesforce_authentication_spec.rb +46 -0
  43. data/spec/models/sharepoint_authentication_spec.rb +52 -0
  44. data/spec/models/simple_o_auth_data_sources_spec.rb +22 -0
  45. data/spec/models/sync_options_spec.rb +82 -0
  46. data/spec/models/zendesk_authentication_spec.rb +40 -0
  47. data/spec/models/zotero_authentication_spec.rb +52 -0
  48. metadata +47 -2
@@ -0,0 +1,40 @@
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::NotionAuthentication
14
+ describe Carbon::NotionAuthentication do
15
+ let(:instance) { Carbon::NotionAuthentication.new }
16
+
17
+ describe 'test an instance of NotionAuthentication' do
18
+ it 'should create an instance of NotionAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::NotionAuthentication)
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 "workspace_id"' 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
+ end
@@ -0,0 +1,40 @@
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::OAuthAuthentication
14
+ describe Carbon::OAuthAuthentication do
15
+ let(:instance) { Carbon::OAuthAuthentication.new }
16
+
17
+ describe 'test an instance of OAuthAuthentication' do
18
+ it 'should create an instance of OAuthAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::OAuthAuthentication)
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
+ end
@@ -37,6 +37,12 @@ describe Carbon::OrganizationUserDataSourceAPI do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "token"' 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
+
40
46
  describe 'test attribute "sync_status"' do
41
47
  it 'should work' do
42
48
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,40 @@
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::S3Authentication
14
+ describe Carbon::S3Authentication do
15
+ let(:instance) { Carbon::S3Authentication.new }
16
+
17
+ describe 'test an instance of S3Authentication' do
18
+ it 'should create an instance of S3Authentication' do
19
+ expect(instance).to be_instance_of(Carbon::S3Authentication)
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_key"' 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 "access_key_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
+ 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::SalesforceAuthentication
14
+ describe Carbon::SalesforceAuthentication do
15
+ let(:instance) { Carbon::SalesforceAuthentication.new }
16
+
17
+ describe 'test an instance of SalesforceAuthentication' do
18
+ it 'should create an instance of SalesforceAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::SalesforceAuthentication)
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 "domain"' 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,52 @@
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::SharepointAuthentication
14
+ describe Carbon::SharepointAuthentication do
15
+ let(:instance) { Carbon::SharepointAuthentication.new }
16
+
17
+ describe 'test an instance of SharepointAuthentication' do
18
+ it 'should create an instance of SharepointAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::SharepointAuthentication)
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 "tenant_name"' 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 "site_name"' 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
+ 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::SimpleOAuthDataSources
14
+ describe Carbon::SimpleOAuthDataSources do
15
+ let(:instance) { Carbon::SimpleOAuthDataSources.new }
16
+
17
+ describe 'test an instance of SimpleOAuthDataSources' do
18
+ it 'should create an instance of SimpleOAuthDataSources' do
19
+ expect(instance).to be_instance_of(Carbon::SimpleOAuthDataSources)
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,82 @@
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::SyncOptions
14
+ describe Carbon::SyncOptions do
15
+ let(:instance) { Carbon::SyncOptions.new }
16
+
17
+ describe 'test an instance of SyncOptions' do
18
+ it 'should create an instance of SyncOptions' do
19
+ expect(instance).to be_instance_of(Carbon::SyncOptions)
20
+ end
21
+ end
22
+ describe 'test attribute "tags"' 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 "chunk_size"' 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 "chunk_overlap"' 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 "skip_embedding_generation"' 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 "embedding_model"' 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 "generate_sparse_vectors"' 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 "prepend_filename_to_chunks"' 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
+ describe 'test attribute "max_items_per_chunk"' do
65
+ it 'should work' do
66
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "sync_files_on_connection"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "set_page_as_boundary"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
79
+ end
80
+ end
81
+
82
+ end
@@ -0,0 +1,40 @@
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::ZendeskAuthentication
14
+ describe Carbon::ZendeskAuthentication do
15
+ let(:instance) { Carbon::ZendeskAuthentication.new }
16
+
17
+ describe 'test an instance of ZendeskAuthentication' do
18
+ it 'should create an instance of ZendeskAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::ZendeskAuthentication)
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 "subdomain"' 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
+ end
@@ -0,0 +1,52 @@
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::ZoteroAuthentication
14
+ describe Carbon::ZoteroAuthentication do
15
+ let(:instance) { Carbon::ZoteroAuthentication.new }
16
+
17
+ describe 'test an instance of ZoteroAuthentication' do
18
+ it 'should create an instance of ZoteroAuthentication' do
19
+ expect(instance).to be_instance_of(Carbon::ZoteroAuthentication)
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 "access_token_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 "username"' 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 "zotero_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
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: carbon_ruby_sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konfig
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-11 00:00:00.000000000 Z
11
+ date: 2024-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -99,11 +99,15 @@ files:
99
99
  - lib/carbon_ruby_sdk/api_error.rb
100
100
  - lib/carbon_ruby_sdk/configuration.rb
101
101
  - lib/carbon_ruby_sdk/models/add_webhook_props.rb
102
+ - lib/carbon_ruby_sdk/models/authentication_property.rb
102
103
  - lib/carbon_ruby_sdk/models/body_create_upload_file_uploadfile_post.rb
103
104
  - lib/carbon_ruby_sdk/models/chunk_properties.rb
104
105
  - lib/carbon_ruby_sdk/models/chunk_properties_nullable.rb
105
106
  - lib/carbon_ruby_sdk/models/chunks_and_embeddings.rb
106
107
  - lib/carbon_ruby_sdk/models/chunks_and_embeddings_upload_input.rb
108
+ - lib/carbon_ruby_sdk/models/confluence_authentication.rb
109
+ - lib/carbon_ruby_sdk/models/connect_data_source_input.rb
110
+ - lib/carbon_ruby_sdk/models/connect_data_source_response.rb
107
111
  - lib/carbon_ruby_sdk/models/data_source_last_sync_actions.rb
108
112
  - lib/carbon_ruby_sdk/models/data_source_sync_statuses.rb
109
113
  - lib/carbon_ruby_sdk/models/data_source_type.rb
@@ -131,8 +135,10 @@ files:
131
135
  - lib/carbon_ruby_sdk/models/file_statistics.rb
132
136
  - lib/carbon_ruby_sdk/models/file_statistics_nullable.rb
133
137
  - lib/carbon_ruby_sdk/models/fresh_desk_connect_request.rb
138
+ - lib/carbon_ruby_sdk/models/freskdesk_authentication.rb
134
139
  - lib/carbon_ruby_sdk/models/generic_success_response.rb
135
140
  - lib/carbon_ruby_sdk/models/get_embedding_documents_body.rb
141
+ - lib/carbon_ruby_sdk/models/gitbook_authetication.rb
136
142
  - lib/carbon_ruby_sdk/models/gitbook_connect_request.rb
137
143
  - lib/carbon_ruby_sdk/models/gitbook_sync_request.rb
138
144
  - lib/carbon_ruby_sdk/models/gmail_sync_input.rb
@@ -146,6 +152,8 @@ files:
146
152
  - lib/carbon_ruby_sdk/models/list_response.rb
147
153
  - lib/carbon_ruby_sdk/models/location_property_inner.rb
148
154
  - lib/carbon_ruby_sdk/models/modify_user_configuration_input.rb
155
+ - lib/carbon_ruby_sdk/models/notion_authentication.rb
156
+ - lib/carbon_ruby_sdk/models/o_auth_authentication.rb
149
157
  - lib/carbon_ruby_sdk/models/o_auth_url_request.rb
150
158
  - lib/carbon_ruby_sdk/models/order_dir.rb
151
159
  - lib/carbon_ruby_sdk/models/organization_response.rb
@@ -170,14 +178,19 @@ files:
170
178
  - lib/carbon_ruby_sdk/models/revoke_access_token_input.rb
171
179
  - lib/carbon_ruby_sdk/models/rss_feed_input.rb
172
180
  - lib/carbon_ruby_sdk/models/s3_auth_request.rb
181
+ - lib/carbon_ruby_sdk/models/s3_authentication.rb
173
182
  - lib/carbon_ruby_sdk/models/s3_file_sync_input.rb
174
183
  - lib/carbon_ruby_sdk/models/s3_get_file_input.rb
184
+ - lib/carbon_ruby_sdk/models/salesforce_authentication.rb
185
+ - lib/carbon_ruby_sdk/models/sharepoint_authentication.rb
186
+ - lib/carbon_ruby_sdk/models/simple_o_auth_data_sources.rb
175
187
  - lib/carbon_ruby_sdk/models/single_chunks_and_embeddings_upload_input.rb
176
188
  - lib/carbon_ruby_sdk/models/sitemap_scrape_request.rb
177
189
  - lib/carbon_ruby_sdk/models/source_property.rb
178
190
  - lib/carbon_ruby_sdk/models/sync_directory_request.rb
179
191
  - lib/carbon_ruby_sdk/models/sync_files_ids.rb
180
192
  - lib/carbon_ruby_sdk/models/sync_files_request.rb
193
+ - lib/carbon_ruby_sdk/models/sync_options.rb
181
194
  - lib/carbon_ruby_sdk/models/tags.rb
182
195
  - lib/carbon_ruby_sdk/models/tags1.rb
183
196
  - lib/carbon_ruby_sdk/models/text_embedding_generators.rb
@@ -197,6 +210,8 @@ files:
197
210
  - lib/carbon_ruby_sdk/models/webscrape_request.rb
198
211
  - lib/carbon_ruby_sdk/models/white_labeling_response.rb
199
212
  - lib/carbon_ruby_sdk/models/youtube_transcript_response.rb
213
+ - lib/carbon_ruby_sdk/models/zendesk_authentication.rb
214
+ - lib/carbon_ruby_sdk/models/zotero_authentication.rb
200
215
  - lib/carbon_ruby_sdk/version.rb
201
216
  - spec/api/auth_api_spec.rb
202
217
  - spec/api/data_sources_api_spec.rb
@@ -212,11 +227,15 @@ files:
212
227
  - spec/configuration_spec.rb
213
228
  - spec/getting_started_spec.rb
214
229
  - spec/models/add_webhook_props_spec.rb
230
+ - spec/models/authentication_property_spec.rb
215
231
  - spec/models/body_create_upload_file_uploadfile_post_spec.rb
216
232
  - spec/models/chunk_properties_nullable_spec.rb
217
233
  - spec/models/chunk_properties_spec.rb
218
234
  - spec/models/chunks_and_embeddings_spec.rb
219
235
  - spec/models/chunks_and_embeddings_upload_input_spec.rb
236
+ - spec/models/confluence_authentication_spec.rb
237
+ - spec/models/connect_data_source_input_spec.rb
238
+ - spec/models/connect_data_source_response_spec.rb
220
239
  - spec/models/data_source_last_sync_actions_spec.rb
221
240
  - spec/models/data_source_sync_statuses_spec.rb
222
241
  - spec/models/data_source_type_nullable_spec.rb
@@ -244,8 +263,10 @@ files:
244
263
  - spec/models/file_statistics_nullable_spec.rb
245
264
  - spec/models/file_statistics_spec.rb
246
265
  - spec/models/fresh_desk_connect_request_spec.rb
266
+ - spec/models/freskdesk_authentication_spec.rb
247
267
  - spec/models/generic_success_response_spec.rb
248
268
  - spec/models/get_embedding_documents_body_spec.rb
269
+ - spec/models/gitbook_authetication_spec.rb
249
270
  - spec/models/gitbook_connect_request_spec.rb
250
271
  - spec/models/gitbook_sync_request_spec.rb
251
272
  - spec/models/gmail_sync_input_spec.rb
@@ -259,6 +280,8 @@ files:
259
280
  - spec/models/list_response_spec.rb
260
281
  - spec/models/location_property_inner_spec.rb
261
282
  - spec/models/modify_user_configuration_input_spec.rb
283
+ - spec/models/notion_authentication_spec.rb
284
+ - spec/models/o_auth_authentication_spec.rb
262
285
  - spec/models/o_auth_url_request_spec.rb
263
286
  - spec/models/order_dir_spec.rb
264
287
  - spec/models/organization_response_spec.rb
@@ -283,14 +306,19 @@ files:
283
306
  - spec/models/revoke_access_token_input_spec.rb
284
307
  - spec/models/rss_feed_input_spec.rb
285
308
  - spec/models/s3_auth_request_spec.rb
309
+ - spec/models/s3_authentication_spec.rb
286
310
  - spec/models/s3_file_sync_input_spec.rb
287
311
  - spec/models/s3_get_file_input_spec.rb
312
+ - spec/models/salesforce_authentication_spec.rb
313
+ - spec/models/sharepoint_authentication_spec.rb
314
+ - spec/models/simple_o_auth_data_sources_spec.rb
288
315
  - spec/models/single_chunks_and_embeddings_upload_input_spec.rb
289
316
  - spec/models/sitemap_scrape_request_spec.rb
290
317
  - spec/models/source_property_spec.rb
291
318
  - spec/models/sync_directory_request_spec.rb
292
319
  - spec/models/sync_files_ids_spec.rb
293
320
  - spec/models/sync_files_request_spec.rb
321
+ - spec/models/sync_options_spec.rb
294
322
  - spec/models/tags1_spec.rb
295
323
  - spec/models/tags_spec.rb
296
324
  - spec/models/text_embedding_generators_spec.rb
@@ -310,6 +338,8 @@ files:
310
338
  - spec/models/webscrape_request_spec.rb
311
339
  - spec/models/white_labeling_response_spec.rb
312
340
  - spec/models/youtube_transcript_response_spec.rb
341
+ - spec/models/zendesk_authentication_spec.rb
342
+ - spec/models/zotero_authentication_spec.rb
313
343
  - spec/spec_helper.rb
314
344
  homepage: https://konfigthis.com
315
345
  licenses:
@@ -365,6 +395,7 @@ test_files:
365
395
  - spec/models/chunk_properties_nullable_spec.rb
366
396
  - spec/models/gitbook_connect_request_spec.rb
367
397
  - spec/models/token_response_spec.rb
398
+ - spec/models/sync_options_spec.rb
368
399
  - spec/models/file_formats_spec.rb
369
400
  - spec/models/user_request_content_spec.rb
370
401
  - spec/models/gmail_sync_input_spec.rb
@@ -374,7 +405,11 @@ test_files:
374
405
  - spec/models/list_response_spec.rb
375
406
  - spec/models/hybrid_search_tuning_params_nullable_spec.rb
376
407
  - spec/models/youtube_transcript_response_spec.rb
408
+ - spec/models/o_auth_authentication_spec.rb
377
409
  - spec/models/file_content_types_nullable_spec.rb
410
+ - spec/models/zendesk_authentication_spec.rb
411
+ - spec/models/connect_data_source_response_spec.rb
412
+ - spec/models/simple_o_auth_data_sources_spec.rb
378
413
  - spec/models/add_webhook_props_spec.rb
379
414
  - spec/models/white_labeling_response_spec.rb
380
415
  - spec/models/single_chunks_and_embeddings_upload_input_spec.rb
@@ -385,12 +420,15 @@ test_files:
385
420
  - spec/models/embedding_generators_spec.rb
386
421
  - spec/models/revoke_access_token_input_spec.rb
387
422
  - spec/models/o_auth_url_request_spec.rb
423
+ - spec/models/authentication_property_spec.rb
388
424
  - spec/models/validation_error_spec.rb
389
425
  - spec/models/presigned_url_response_spec.rb
390
426
  - spec/models/webhook_order_by_columns_spec.rb
391
427
  - spec/models/user_files_v2_spec.rb
392
428
  - spec/models/organization_user_files_to_sync_filters_spec.rb
393
429
  - spec/models/s3_auth_request_spec.rb
430
+ - spec/models/sharepoint_authentication_spec.rb
431
+ - spec/models/zotero_authentication_spec.rb
394
432
  - spec/models/document_response_spec.rb
395
433
  - spec/models/data_source_last_sync_actions_spec.rb
396
434
  - spec/models/organization_user_file_tags_remove_spec.rb
@@ -401,6 +439,7 @@ test_files:
401
439
  - spec/models/webhook_filters_spec.rb
402
440
  - spec/models/ids_property_spec.rb
403
441
  - spec/models/body_create_upload_file_uploadfile_post_spec.rb
442
+ - spec/models/gitbook_authetication_spec.rb
404
443
  - spec/models/location_property_inner_spec.rb
405
444
  - spec/models/source_property_spec.rb
406
445
  - spec/models/chunks_and_embeddings_spec.rb
@@ -424,11 +463,15 @@ test_files:
424
463
  - spec/models/hybrid_search_tuning_params_spec.rb
425
464
  - spec/models/rank_property_spec.rb
426
465
  - spec/models/organization_response_spec.rb
466
+ - spec/models/connect_data_source_input_spec.rb
467
+ - spec/models/notion_authentication_spec.rb
427
468
  - spec/models/chunks_and_embeddings_upload_input_spec.rb
428
469
  - spec/models/organization_user_file_tag_create_spec.rb
429
470
  - spec/models/organization_user_data_source_order_by_columns_spec.rb
430
471
  - spec/models/file_formats_nullable_spec.rb
472
+ - spec/models/s3_authentication_spec.rb
431
473
  - spec/models/file_statistics_spec.rb
474
+ - spec/models/confluence_authentication_spec.rb
432
475
  - spec/models/get_embedding_documents_body_spec.rb
433
476
  - spec/models/tags1_spec.rb
434
477
  - spec/models/webscrape_request_spec.rb
@@ -436,6 +479,7 @@ test_files:
436
479
  - spec/models/rss_feed_input_spec.rb
437
480
  - spec/models/embedding_generators_nullable_spec.rb
438
481
  - spec/models/file_content_types_spec.rb
482
+ - spec/models/freskdesk_authentication_spec.rb
439
483
  - spec/models/fresh_desk_connect_request_spec.rb
440
484
  - spec/models/embeddings_and_chunks_filters_spec.rb
441
485
  - spec/models/raw_transcript_property_inner_value_spec.rb
@@ -449,4 +493,5 @@ test_files:
449
493
  - spec/models/webhook_query_response_spec.rb
450
494
  - spec/models/user_file_spec.rb
451
495
  - spec/models/raw_text_input_spec.rb
496
+ - spec/models/salesforce_authentication_spec.rb
452
497
  - spec/spec_helper.rb