carbon_ruby_sdk 0.1.33 → 0.2.0
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 +1 -1
- data/README.md +70 -13
- data/lib/carbon_ruby_sdk/api/files_api.rb +9 -2
- data/lib/carbon_ruby_sdk/api/integrations_api.rb +34 -22
- data/lib/carbon_ruby_sdk/api/organizations_api.rb +83 -0
- data/lib/carbon_ruby_sdk/models/data_source_type.rb +9 -2
- data/lib/carbon_ruby_sdk/models/data_source_type_nullable.rb +9 -2
- data/lib/carbon_ruby_sdk/models/fetch_urls_response.rb +14 -4
- data/lib/carbon_ruby_sdk/models/file_content_types.rb +3 -1
- data/lib/carbon_ruby_sdk/models/file_content_types_nullable.rb +3 -1
- data/lib/carbon_ruby_sdk/models/file_formats.rb +9 -3
- data/lib/carbon_ruby_sdk/models/file_formats_nullable.rb +9 -3
- data/lib/carbon_ruby_sdk/models/{helpdesk_file_sync_config.rb → file_sync_config.rb} +28 -14
- data/lib/carbon_ruby_sdk/models/{helpdesk_file_sync_config_nullable.rb → file_sync_config_nullable.rb} +28 -14
- data/lib/carbon_ruby_sdk/models/fresh_desk_connect_request.rb +1 -1
- data/lib/carbon_ruby_sdk/models/gmail_sync_input.rb +11 -1
- data/lib/carbon_ruby_sdk/models/o_auth_url_request.rb +3 -3
- data/lib/carbon_ruby_sdk/models/organization_response.rb +39 -1
- data/lib/carbon_ruby_sdk/models/outlook_sync_input.rb +11 -1
- data/lib/carbon_ruby_sdk/models/s3_file_sync_input.rb +15 -5
- data/lib/carbon_ruby_sdk/models/sync_files_request.rb +2 -2
- data/lib/carbon_ruby_sdk/models/sync_options.rb +2 -2
- data/lib/carbon_ruby_sdk/models/user_file.rb +15 -11
- data/lib/carbon_ruby_sdk/models/user_response.rb +85 -1
- data/lib/carbon_ruby_sdk/models/webhook.rb +25 -1
- data/lib/carbon_ruby_sdk/models/webhook_no_key.rb +25 -1
- data/lib/carbon_ruby_sdk/models/webhook_status.rb +36 -0
- data/lib/carbon_ruby_sdk/version.rb +1 -1
- data/lib/carbon_ruby_sdk.rb +3 -4
- data/spec/api/files_api_spec.rb +1 -0
- data/spec/api/organizations_api_spec.rb +11 -0
- data/spec/models/fetch_urls_response_spec.rb +6 -0
- data/spec/models/file_sync_config_nullable_spec.rb +40 -0
- data/spec/models/file_sync_config_spec.rb +40 -0
- data/spec/models/gmail_sync_input_spec.rb +6 -0
- data/spec/models/organization_response_spec.rb +18 -0
- data/spec/models/outlook_sync_input_spec.rb +6 -0
- data/spec/models/s3_file_sync_input_spec.rb +6 -0
- data/spec/models/user_file_spec.rb +2 -2
- data/spec/models/user_response_spec.rb +36 -0
- data/spec/models/webhook_no_key_spec.rb +12 -0
- data/spec/models/webhook_spec.rb +12 -0
- data/spec/models/webhook_status_spec.rb +22 -0
- metadata +11 -14
- data/lib/carbon_ruby_sdk/models/helpdesk_global_file_sync_config.rb +0 -217
- data/lib/carbon_ruby_sdk/models/helpdesk_global_file_sync_config_nullable.rb +0 -218
- data/spec/models/helpdesk_file_sync_config_nullable_spec.rb +0 -34
- data/spec/models/helpdesk_file_sync_config_spec.rb +0 -34
- data/spec/models/helpdesk_global_file_sync_config_nullable_spec.rb +0 -28
- data/spec/models/helpdesk_global_file_sync_config_spec.rb +0 -28
@@ -0,0 +1,36 @@
|
|
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 'date'
|
10
|
+
require 'time'
|
11
|
+
|
12
|
+
module Carbon
|
13
|
+
class WebhookStatus
|
14
|
+
ACTIVE = "ACTIVE".freeze
|
15
|
+
FLAGGED = "FLAGGED".freeze
|
16
|
+
|
17
|
+
def self.all_vars
|
18
|
+
@all_vars ||= [ACTIVE, FLAGGED].freeze
|
19
|
+
end
|
20
|
+
|
21
|
+
# Builds the enum from string
|
22
|
+
# @param [String] The enum value in the form of the string
|
23
|
+
# @return [String] The enum value
|
24
|
+
def self.build_from_hash(value)
|
25
|
+
new.build_from_hash(value)
|
26
|
+
end
|
27
|
+
|
28
|
+
# Builds the enum from string
|
29
|
+
# @param [String] The enum value in the form of the string
|
30
|
+
# @return [String] The enum value
|
31
|
+
def build_from_hash(value)
|
32
|
+
return value if WebhookStatus.all_vars.include?(value)
|
33
|
+
raise "Invalid ENUM value #{value} for class #WebhookStatus"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
data/lib/carbon_ruby_sdk.rb
CHANGED
@@ -55,6 +55,8 @@ require 'carbon_ruby_sdk/models/file_formats'
|
|
55
55
|
require 'carbon_ruby_sdk/models/file_formats_nullable'
|
56
56
|
require 'carbon_ruby_sdk/models/file_statistics'
|
57
57
|
require 'carbon_ruby_sdk/models/file_statistics_nullable'
|
58
|
+
require 'carbon_ruby_sdk/models/file_sync_config'
|
59
|
+
require 'carbon_ruby_sdk/models/file_sync_config_nullable'
|
58
60
|
require 'carbon_ruby_sdk/models/fresh_desk_connect_request'
|
59
61
|
require 'carbon_ruby_sdk/models/freskdesk_authentication'
|
60
62
|
require 'carbon_ruby_sdk/models/generic_success_response'
|
@@ -67,11 +69,7 @@ require 'carbon_ruby_sdk/models/github_connect_request'
|
|
67
69
|
require 'carbon_ruby_sdk/models/github_fetch_repos_request'
|
68
70
|
require 'carbon_ruby_sdk/models/gmail_sync_input'
|
69
71
|
require 'carbon_ruby_sdk/models/http_validation_error'
|
70
|
-
require 'carbon_ruby_sdk/models/helpdesk_file_sync_config'
|
71
|
-
require 'carbon_ruby_sdk/models/helpdesk_file_sync_config_nullable'
|
72
72
|
require 'carbon_ruby_sdk/models/helpdesk_file_types'
|
73
|
-
require 'carbon_ruby_sdk/models/helpdesk_global_file_sync_config'
|
74
|
-
require 'carbon_ruby_sdk/models/helpdesk_global_file_sync_config_nullable'
|
75
73
|
require 'carbon_ruby_sdk/models/hybrid_search_tuning_params'
|
76
74
|
require 'carbon_ruby_sdk/models/hybrid_search_tuning_params_nullable'
|
77
75
|
require 'carbon_ruby_sdk/models/ids_property'
|
@@ -143,6 +141,7 @@ require 'carbon_ruby_sdk/models/webhook_no_key'
|
|
143
141
|
require 'carbon_ruby_sdk/models/webhook_order_by_columns'
|
144
142
|
require 'carbon_ruby_sdk/models/webhook_query_input'
|
145
143
|
require 'carbon_ruby_sdk/models/webhook_query_response'
|
144
|
+
require 'carbon_ruby_sdk/models/webhook_status'
|
146
145
|
require 'carbon_ruby_sdk/models/webscrape_request'
|
147
146
|
require 'carbon_ruby_sdk/models/white_labeling_response'
|
148
147
|
require 'carbon_ruby_sdk/models/youtube_transcript_response'
|
data/spec/api/files_api_spec.rb
CHANGED
@@ -158,6 +158,7 @@ describe 'FilesApi' do
|
|
158
158
|
# @option opts [Integer] :max_items_per_chunk Number of objects per chunk. For csv, tsv, xlsx, and json files only.
|
159
159
|
# @option opts [Boolean] :parse_pdf_tables_with_ocr Whether to use rich table parsing when `use_ocr` is enabled.
|
160
160
|
# @option opts [Boolean] :detect_audio_language Whether to automatically detect the language of the uploaded audio file.
|
161
|
+
# @option opts [FileContentTypesNullable] :media_type The media type of the file. If not provided, it will be inferred from the file extension.
|
161
162
|
# @return [UserFile]
|
162
163
|
describe 'upload test' do
|
163
164
|
it 'should work' do
|
@@ -47,4 +47,15 @@ describe 'OrganizationsApi' do
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
# unit tests for update_stats
|
51
|
+
# Update Organization Statistics
|
52
|
+
# Use this endpoint to reaggregate the statistics for an organization, for example aggregate_file_size. The reaggregation process is asyncronous so a webhook will be sent with the event type being FILE_STATISTICS_AGGREGATED to notify when the process is complee. After this aggregation is complete, the updated statistics can be retrieved using the /organization endpoint. The response of /organization willalso contain a timestamp of the last time the statistics were reaggregated.
|
53
|
+
# @param [Hash] opts the optional parameters
|
54
|
+
# @return [GenericSuccessResponse]
|
55
|
+
describe 'update_stats test' do
|
56
|
+
it 'should work' do
|
57
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
50
61
|
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::FileSyncConfigNullable
|
14
|
+
describe Carbon::FileSyncConfigNullable do
|
15
|
+
let(:instance) { Carbon::FileSyncConfigNullable.new }
|
16
|
+
|
17
|
+
describe 'test an instance of FileSyncConfigNullable' do
|
18
|
+
it 'should create an instance of FileSyncConfigNullable' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::FileSyncConfigNullable)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "auto_synced_source_types"' 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 "sync_attachments"' 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 "detect_audio_language"' 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::FileSyncConfig
|
14
|
+
describe Carbon::FileSyncConfig do
|
15
|
+
let(:instance) { Carbon::FileSyncConfig.new }
|
16
|
+
|
17
|
+
describe 'test an instance of FileSyncConfig' do
|
18
|
+
it 'should create an instance of FileSyncConfig' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::FileSyncConfig)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "auto_synced_source_types"' 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 "sync_attachments"' 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 "detect_audio_language"' 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
|
@@ -85,6 +85,12 @@ describe Carbon::GmailSyncInput do
|
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
88
|
+
describe 'test attribute "file_sync_config"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
88
94
|
describe 'test attribute "incremental_sync"' do
|
89
95
|
it 'should work' do
|
90
96
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -79,6 +79,24 @@ describe Carbon::OrganizationResponse do
|
|
79
79
|
end
|
80
80
|
end
|
81
81
|
|
82
|
+
describe 'test attribute "aggregate_num_files_by_source"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "aggregate_num_files_by_file_format"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'test attribute "file_statistics_aggregated_at"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
82
100
|
describe 'test attribute "period_ends_at"' do
|
83
101
|
it 'should work' do
|
84
102
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -91,6 +91,12 @@ describe Carbon::OutlookSyncInput do
|
|
91
91
|
end
|
92
92
|
end
|
93
93
|
|
94
|
+
describe 'test attribute "file_sync_config"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
94
100
|
describe 'test attribute "incremental_sync"' do
|
95
101
|
it 'should work' do
|
96
102
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -103,4 +103,10 @@ describe Carbon::S3FileSyncInput do
|
|
103
103
|
end
|
104
104
|
end
|
105
105
|
|
106
|
+
describe 'test attribute "file_sync_config"' do
|
107
|
+
it 'should work' do
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
106
112
|
end
|
@@ -187,13 +187,13 @@ describe Carbon::UserFile do
|
|
187
187
|
end
|
188
188
|
end
|
189
189
|
|
190
|
-
describe 'test attribute "
|
190
|
+
describe 'test attribute "request_id"' do
|
191
191
|
it 'should work' do
|
192
192
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
193
193
|
end
|
194
194
|
end
|
195
195
|
|
196
|
-
describe 'test attribute "
|
196
|
+
describe 'test attribute "sync_properties"' do
|
197
197
|
it 'should work' do
|
198
198
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
199
199
|
end
|
@@ -73,6 +73,42 @@ describe Carbon::UserResponse do
|
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
76
|
+
describe 'test attribute "aggregate_file_size"' 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
|
+
describe 'test attribute "aggregate_num_characters"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "aggregate_num_tokens"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'test attribute "aggregate_num_embeddings"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'test attribute "aggregate_num_files_by_source"' do
|
101
|
+
it 'should work' do
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
describe 'test attribute "aggregate_num_files_by_file_format"' do
|
107
|
+
it 'should work' do
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
76
112
|
describe 'test attribute "unique_file_tags"' do
|
77
113
|
it 'should work' do
|
78
114
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -37,6 +37,18 @@ describe Carbon::WebhookNoKey do
|
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
+
describe 'test attribute "status"' 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 "status_reason"' 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
|
+
|
40
52
|
describe 'test attribute "created_at"' do
|
41
53
|
it 'should work' do
|
42
54
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
data/spec/models/webhook_spec.rb
CHANGED
@@ -43,6 +43,18 @@ describe Carbon::Webhook do
|
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
46
|
+
describe 'test attribute "status"' 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 "status_reason"' 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
|
+
|
46
58
|
describe 'test attribute "created_at"' do
|
47
59
|
it 'should work' do
|
48
60
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -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::WebhookStatus
|
14
|
+
describe Carbon::WebhookStatus do
|
15
|
+
let(:instance) { Carbon::WebhookStatus.new }
|
16
|
+
|
17
|
+
describe 'test an instance of WebhookStatus' do
|
18
|
+
it 'should create an instance of WebhookStatus' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::WebhookStatus)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
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.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konfig
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -138,6 +138,8 @@ files:
|
|
138
138
|
- lib/carbon_ruby_sdk/models/file_formats_nullable.rb
|
139
139
|
- lib/carbon_ruby_sdk/models/file_statistics.rb
|
140
140
|
- lib/carbon_ruby_sdk/models/file_statistics_nullable.rb
|
141
|
+
- lib/carbon_ruby_sdk/models/file_sync_config.rb
|
142
|
+
- lib/carbon_ruby_sdk/models/file_sync_config_nullable.rb
|
141
143
|
- lib/carbon_ruby_sdk/models/fresh_desk_connect_request.rb
|
142
144
|
- lib/carbon_ruby_sdk/models/freskdesk_authentication.rb
|
143
145
|
- lib/carbon_ruby_sdk/models/generic_success_response.rb
|
@@ -149,11 +151,7 @@ files:
|
|
149
151
|
- lib/carbon_ruby_sdk/models/github_connect_request.rb
|
150
152
|
- lib/carbon_ruby_sdk/models/github_fetch_repos_request.rb
|
151
153
|
- lib/carbon_ruby_sdk/models/gmail_sync_input.rb
|
152
|
-
- lib/carbon_ruby_sdk/models/helpdesk_file_sync_config.rb
|
153
|
-
- lib/carbon_ruby_sdk/models/helpdesk_file_sync_config_nullable.rb
|
154
154
|
- lib/carbon_ruby_sdk/models/helpdesk_file_types.rb
|
155
|
-
- lib/carbon_ruby_sdk/models/helpdesk_global_file_sync_config.rb
|
156
|
-
- lib/carbon_ruby_sdk/models/helpdesk_global_file_sync_config_nullable.rb
|
157
155
|
- lib/carbon_ruby_sdk/models/http_validation_error.rb
|
158
156
|
- lib/carbon_ruby_sdk/models/hybrid_search_tuning_params.rb
|
159
157
|
- lib/carbon_ruby_sdk/models/hybrid_search_tuning_params_nullable.rb
|
@@ -226,6 +224,7 @@ files:
|
|
226
224
|
- lib/carbon_ruby_sdk/models/webhook_order_by_columns.rb
|
227
225
|
- lib/carbon_ruby_sdk/models/webhook_query_input.rb
|
228
226
|
- lib/carbon_ruby_sdk/models/webhook_query_response.rb
|
227
|
+
- lib/carbon_ruby_sdk/models/webhook_status.rb
|
229
228
|
- lib/carbon_ruby_sdk/models/webscrape_request.rb
|
230
229
|
- lib/carbon_ruby_sdk/models/white_labeling_response.rb
|
231
230
|
- lib/carbon_ruby_sdk/models/youtube_transcript_response.rb
|
@@ -285,6 +284,8 @@ files:
|
|
285
284
|
- spec/models/file_formats_spec.rb
|
286
285
|
- spec/models/file_statistics_nullable_spec.rb
|
287
286
|
- spec/models/file_statistics_spec.rb
|
287
|
+
- spec/models/file_sync_config_nullable_spec.rb
|
288
|
+
- spec/models/file_sync_config_spec.rb
|
288
289
|
- spec/models/fresh_desk_connect_request_spec.rb
|
289
290
|
- spec/models/freskdesk_authentication_spec.rb
|
290
291
|
- spec/models/generic_success_response_spec.rb
|
@@ -296,11 +297,7 @@ files:
|
|
296
297
|
- spec/models/github_connect_request_spec.rb
|
297
298
|
- spec/models/github_fetch_repos_request_spec.rb
|
298
299
|
- spec/models/gmail_sync_input_spec.rb
|
299
|
-
- spec/models/helpdesk_file_sync_config_nullable_spec.rb
|
300
|
-
- spec/models/helpdesk_file_sync_config_spec.rb
|
301
300
|
- spec/models/helpdesk_file_types_spec.rb
|
302
|
-
- spec/models/helpdesk_global_file_sync_config_nullable_spec.rb
|
303
|
-
- spec/models/helpdesk_global_file_sync_config_spec.rb
|
304
301
|
- spec/models/http_validation_error_spec.rb
|
305
302
|
- spec/models/hybrid_search_tuning_params_nullable_spec.rb
|
306
303
|
- spec/models/hybrid_search_tuning_params_spec.rb
|
@@ -373,6 +370,7 @@ files:
|
|
373
370
|
- spec/models/webhook_query_input_spec.rb
|
374
371
|
- spec/models/webhook_query_response_spec.rb
|
375
372
|
- spec/models/webhook_spec.rb
|
373
|
+
- spec/models/webhook_status_spec.rb
|
376
374
|
- spec/models/webscrape_request_spec.rb
|
377
375
|
- spec/models/white_labeling_response_spec.rb
|
378
376
|
- spec/models/youtube_transcript_response_spec.rb
|
@@ -423,6 +421,7 @@ test_files:
|
|
423
421
|
- spec/models/sitemap_scrape_request_spec.rb
|
424
422
|
- spec/models/organization_user_files_to_sync_order_by_types_spec.rb
|
425
423
|
- spec/models/order_dir_spec.rb
|
424
|
+
- spec/models/webhook_status_spec.rb
|
426
425
|
- spec/models/external_source_item_spec.rb
|
427
426
|
- spec/models/organization_user_data_source_query_input_spec.rb
|
428
427
|
- spec/models/organization_user_data_source_filters_spec.rb
|
@@ -452,7 +451,6 @@ test_files:
|
|
452
451
|
- spec/models/user_configuration_spec.rb
|
453
452
|
- spec/models/zendesk_authentication_spec.rb
|
454
453
|
- spec/models/connect_data_source_response_spec.rb
|
455
|
-
- spec/models/helpdesk_global_file_sync_config_nullable_spec.rb
|
456
454
|
- spec/models/simple_o_auth_data_sources_spec.rb
|
457
455
|
- spec/models/add_webhook_props_spec.rb
|
458
456
|
- spec/models/white_labeling_response_spec.rb
|
@@ -476,6 +474,7 @@ test_files:
|
|
476
474
|
- spec/models/zotero_authentication_spec.rb
|
477
475
|
- spec/models/helpdesk_file_types_spec.rb
|
478
476
|
- spec/models/document_response_spec.rb
|
477
|
+
- spec/models/file_sync_config_spec.rb
|
479
478
|
- spec/models/data_source_last_sync_actions_spec.rb
|
480
479
|
- spec/models/organization_user_file_tags_remove_spec.rb
|
481
480
|
- spec/models/embedding_properties_spec.rb
|
@@ -502,7 +501,6 @@ test_files:
|
|
502
501
|
- spec/models/chunk_properties_spec.rb
|
503
502
|
- spec/models/fetch_urls_response_spec.rb
|
504
503
|
- spec/models/data_source_type_nullable_spec.rb
|
505
|
-
- spec/models/helpdesk_file_sync_config_spec.rb
|
506
504
|
- spec/models/http_validation_error_spec.rb
|
507
505
|
- spec/models/embedding_and_chunk_spec.rb
|
508
506
|
- spec/models/tags_spec.rb
|
@@ -520,7 +518,6 @@ test_files:
|
|
520
518
|
- spec/models/organization_user_file_tag_create_spec.rb
|
521
519
|
- spec/models/organization_user_data_source_order_by_columns_spec.rb
|
522
520
|
- spec/models/custom_credentials_type_spec.rb
|
523
|
-
- spec/models/helpdesk_global_file_sync_config_spec.rb
|
524
521
|
- spec/models/file_formats_nullable_spec.rb
|
525
522
|
- spec/models/s3_authentication_spec.rb
|
526
523
|
- spec/models/file_statistics_spec.rb
|
@@ -534,9 +531,9 @@ test_files:
|
|
534
531
|
- spec/models/file_content_types_spec.rb
|
535
532
|
- spec/models/freskdesk_authentication_spec.rb
|
536
533
|
- spec/models/fresh_desk_connect_request_spec.rb
|
534
|
+
- spec/models/file_sync_config_nullable_spec.rb
|
537
535
|
- spec/models/embeddings_and_chunks_filters_spec.rb
|
538
536
|
- spec/models/raw_transcript_property_inner_value_spec.rb
|
539
|
-
- spec/models/helpdesk_file_sync_config_nullable_spec.rb
|
540
537
|
- spec/models/delete_users_input_spec.rb
|
541
538
|
- spec/models/webhook_no_key_spec.rb
|
542
539
|
- spec/models/s3_file_sync_input_spec.rb
|