carbon_ruby_sdk 0.2.41 → 0.2.43

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/README.md +273 -3
  4. data/lib/carbon_ruby_sdk/api/data_sources_api.rb +196 -0
  5. data/lib/carbon_ruby_sdk/api/files_api.rb +4 -4
  6. data/lib/carbon_ruby_sdk/api/integrations_api.rb +48 -16
  7. data/lib/carbon_ruby_sdk/api/users_api.rb +71 -0
  8. data/lib/carbon_ruby_sdk/api/white_label_api.rb +393 -0
  9. data/lib/carbon_ruby_sdk/models/add_data_source_tags_input.rb +234 -0
  10. data/lib/carbon_ruby_sdk/models/azure_blob_auth_request.rb +14 -4
  11. data/lib/carbon_ruby_sdk/models/cold_storage_props.rb +1 -1
  12. data/lib/carbon_ruby_sdk/models/credentials.rb +244 -0
  13. data/lib/carbon_ruby_sdk/models/delete_white_label_request.rb +222 -0
  14. data/lib/carbon_ruby_sdk/models/external_source_item.rb +11 -1
  15. data/lib/carbon_ruby_sdk/models/fresh_desk_connect_request.rb +15 -5
  16. data/lib/carbon_ruby_sdk/models/gitbook_connect_request.rb +15 -5
  17. data/lib/carbon_ruby_sdk/models/github_connect_request.rb +14 -4
  18. data/lib/carbon_ruby_sdk/models/google_drive_credentials.rb +254 -0
  19. data/lib/carbon_ruby_sdk/models/google_drive_white_label_input.rb +230 -0
  20. data/lib/carbon_ruby_sdk/models/guru_connect_request.rb +15 -5
  21. data/lib/carbon_ruby_sdk/models/list_white_label_request.rb +246 -0
  22. data/lib/carbon_ruby_sdk/models/o_auth_url_request.rb +15 -5
  23. data/lib/carbon_ruby_sdk/models/one_drive_sharepoint_credentials.rb +264 -0
  24. data/lib/carbon_ruby_sdk/models/one_drive_sharepoint_white_label_input.rb +234 -0
  25. data/lib/carbon_ruby_sdk/models/one_drive_sharepoint_white_label_input_data_source_type.rb +36 -0
  26. data/lib/carbon_ruby_sdk/models/organization_user_data_source_api.rb +15 -1
  27. data/lib/carbon_ruby_sdk/models/organization_user_data_source_filters.rb +12 -1
  28. data/lib/carbon_ruby_sdk/models/remove_data_source_tags_input.rb +242 -0
  29. data/lib/carbon_ruby_sdk/models/rss_feed_input.rb +15 -5
  30. data/lib/carbon_ruby_sdk/models/s3_auth_request.rb +15 -5
  31. data/lib/carbon_ruby_sdk/models/sync_options.rb +15 -5
  32. data/lib/carbon_ruby_sdk/models/user_response.rb +18 -4
  33. data/lib/carbon_ruby_sdk/models/white_label_create_request_inner.rb +255 -0
  34. data/lib/carbon_ruby_sdk/models/white_label_filters.rb +230 -0
  35. data/lib/carbon_ruby_sdk/models/white_label_input.rb +234 -0
  36. data/lib/carbon_ruby_sdk/models/white_label_input_data_source_type.rb +48 -0
  37. data/lib/carbon_ruby_sdk/models/white_label_order_by_columns.rb +36 -0
  38. data/lib/carbon_ruby_sdk/models/white_label_update_request.rb +255 -0
  39. data/lib/carbon_ruby_sdk/models/white_labeling_response.rb +18 -4
  40. data/lib/carbon_ruby_sdk/version.rb +1 -1
  41. data/lib/carbon_ruby_sdk.rb +19 -0
  42. data/spec/api/data_sources_api_spec.rb +22 -0
  43. data/spec/api/files_api_spec.rb +1 -1
  44. data/spec/api/users_api_spec.rb +10 -0
  45. data/spec/api/white_label_api_spec.rb +73 -0
  46. data/spec/models/add_data_source_tags_input_spec.rb +34 -0
  47. data/spec/models/azure_blob_auth_request_spec.rb +6 -0
  48. data/spec/models/credentials_spec.rb +40 -0
  49. data/spec/models/delete_white_label_request_spec.rb +28 -0
  50. data/spec/models/external_source_item_spec.rb +6 -0
  51. data/spec/models/fresh_desk_connect_request_spec.rb +6 -0
  52. data/spec/models/gitbook_connect_request_spec.rb +6 -0
  53. data/spec/models/github_connect_request_spec.rb +6 -0
  54. data/spec/models/google_drive_credentials_spec.rb +46 -0
  55. data/spec/models/google_drive_white_label_input_spec.rb +34 -0
  56. data/spec/models/guru_connect_request_spec.rb +6 -0
  57. data/spec/models/list_white_label_request_spec.rb +46 -0
  58. data/spec/models/o_auth_url_request_spec.rb +6 -0
  59. data/spec/models/one_drive_sharepoint_credentials_spec.rb +52 -0
  60. data/spec/models/one_drive_sharepoint_white_label_input_data_source_type_spec.rb +22 -0
  61. data/spec/models/one_drive_sharepoint_white_label_input_spec.rb +34 -0
  62. data/spec/models/organization_user_data_source_api_spec.rb +6 -0
  63. data/spec/models/organization_user_data_source_filters_spec.rb +6 -0
  64. data/spec/models/remove_data_source_tags_input_spec.rb +40 -0
  65. data/spec/models/rss_feed_input_spec.rb +6 -0
  66. data/spec/models/s3_auth_request_spec.rb +6 -0
  67. data/spec/models/sync_options_spec.rb +6 -0
  68. data/spec/models/user_response_spec.rb +6 -0
  69. data/spec/models/white_label_create_request_inner_spec.rb +34 -0
  70. data/spec/models/white_label_filters_spec.rb +34 -0
  71. data/spec/models/white_label_input_data_source_type_spec.rb +22 -0
  72. data/spec/models/white_label_input_spec.rb +34 -0
  73. data/spec/models/white_label_order_by_columns_spec.rb +22 -0
  74. data/spec/models/white_label_update_request_spec.rb +34 -0
  75. data/spec/models/white_labeling_response_spec.rb +6 -0
  76. metadata +53 -2
@@ -115,6 +115,12 @@ describe Carbon::ExternalSourceItem do
115
115
  end
116
116
  end
117
117
 
118
+ describe 'test attribute "file_format"' 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
  describe 'test attribute "created_at"' do
119
125
  it 'should work' do
120
126
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -97,4 +97,10 @@ describe Carbon::FreshDeskConnectRequest do
97
97
  end
98
98
  end
99
99
 
100
+ describe 'test attribute "data_source_tags"' 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
+
100
106
  end
@@ -97,4 +97,10 @@ describe Carbon::GitbookConnectRequest do
97
97
  end
98
98
  end
99
99
 
100
+ describe 'test attribute "data_source_tags"' 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
+
100
106
  end
@@ -37,4 +37,10 @@ describe Carbon::GithubConnectRequest do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "data_source_tags"' 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
  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::GoogleDriveCredentials
14
+ describe Carbon::GoogleDriveCredentials do
15
+ let(:instance) { Carbon::GoogleDriveCredentials.new }
16
+
17
+ describe 'test an instance of GoogleDriveCredentials' do
18
+ it 'should create an instance of GoogleDriveCredentials' do
19
+ expect(instance).to be_instance_of(Carbon::GoogleDriveCredentials)
20
+ end
21
+ end
22
+ describe 'test attribute "client_id"' 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 "redirect_uri"' 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 "api_key"' 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,34 @@
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::GoogleDriveWhiteLabelInput
14
+ describe Carbon::GoogleDriveWhiteLabelInput do
15
+ let(:instance) { Carbon::GoogleDriveWhiteLabelInput.new }
16
+
17
+ describe 'test an instance of GoogleDriveWhiteLabelInput' do
18
+ it 'should create an instance of GoogleDriveWhiteLabelInput' do
19
+ expect(instance).to be_instance_of(Carbon::GoogleDriveWhiteLabelInput)
20
+ end
21
+ end
22
+ describe 'test attribute "data_source_type"' 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 "credentials"' 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
+ end
@@ -97,4 +97,10 @@ describe Carbon::GuruConnectRequest do
97
97
  end
98
98
  end
99
99
 
100
+ describe 'test attribute "data_source_tags"' 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
+
100
106
  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::ListWhiteLabelRequest
14
+ describe Carbon::ListWhiteLabelRequest do
15
+ let(:instance) { Carbon::ListWhiteLabelRequest.new }
16
+
17
+ describe 'test an instance of ListWhiteLabelRequest' do
18
+ it 'should create an instance of ListWhiteLabelRequest' do
19
+ expect(instance).to be_instance_of(Carbon::ListWhiteLabelRequest)
20
+ end
21
+ end
22
+ describe 'test attribute "pagination"' 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 "order_by"' 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 "order_dir"' 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 "filters"' 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
@@ -193,4 +193,10 @@ describe Carbon::OAuthURLRequest do
193
193
  end
194
194
  end
195
195
 
196
+ describe 'test attribute "data_source_tags"' do
197
+ it 'should work' do
198
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
199
+ end
200
+ end
201
+
196
202
  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::OneDriveSharepointCredentials
14
+ describe Carbon::OneDriveSharepointCredentials do
15
+ let(:instance) { Carbon::OneDriveSharepointCredentials.new }
16
+
17
+ describe 'test an instance of OneDriveSharepointCredentials' do
18
+ it 'should create an instance of OneDriveSharepointCredentials' do
19
+ expect(instance).to be_instance_of(Carbon::OneDriveSharepointCredentials)
20
+ end
21
+ end
22
+ describe 'test attribute "client_id"' 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 "redirect_uri"' 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 "file_picker_client_id"' 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 "file_picker_redirect_uri"' 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::OneDriveSharepointWhiteLabelInputDataSourceType
14
+ describe Carbon::OneDriveSharepointWhiteLabelInputDataSourceType do
15
+ let(:instance) { Carbon::OneDriveSharepointWhiteLabelInputDataSourceType.new }
16
+
17
+ describe 'test an instance of OneDriveSharepointWhiteLabelInputDataSourceType' do
18
+ it 'should create an instance of OneDriveSharepointWhiteLabelInputDataSourceType' do
19
+ expect(instance).to be_instance_of(Carbon::OneDriveSharepointWhiteLabelInputDataSourceType)
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,34 @@
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::OneDriveSharepointWhiteLabelInput
14
+ describe Carbon::OneDriveSharepointWhiteLabelInput do
15
+ let(:instance) { Carbon::OneDriveSharepointWhiteLabelInput.new }
16
+
17
+ describe 'test an instance of OneDriveSharepointWhiteLabelInput' do
18
+ it 'should create an instance of OneDriveSharepointWhiteLabelInput' do
19
+ expect(instance).to be_instance_of(Carbon::OneDriveSharepointWhiteLabelInput)
20
+ end
21
+ end
22
+ describe 'test attribute "data_source_type"' 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 "credentials"' 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
+ end
@@ -19,6 +19,12 @@ describe Carbon::OrganizationUserDataSourceAPI do
19
19
  expect(instance).to be_instance_of(Carbon::OrganizationUserDataSourceAPI)
20
20
  end
21
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
+
22
28
  describe 'test attribute "id"' do
23
29
  it 'should work' do
24
30
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -19,6 +19,12 @@ describe Carbon::OrganizationUserDataSourceFilters do
19
19
  expect(instance).to be_instance_of(Carbon::OrganizationUserDataSourceFilters)
20
20
  end
21
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
+
22
28
  describe 'test attribute "source"' do
23
29
  it 'should work' do
24
30
  # 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::RemoveDataSourceTagsInput
14
+ describe Carbon::RemoveDataSourceTagsInput do
15
+ let(:instance) { Carbon::RemoveDataSourceTagsInput.new }
16
+
17
+ describe 'test an instance of RemoveDataSourceTagsInput' do
18
+ it 'should create an instance of RemoveDataSourceTagsInput' do
19
+ expect(instance).to be_instance_of(Carbon::RemoveDataSourceTagsInput)
20
+ end
21
+ end
22
+ describe 'test attribute "data_source_id"' 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 "tags_to_remove"' 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 "remove_all_tags"' 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
@@ -73,4 +73,10 @@ describe Carbon::RSSFeedInput do
73
73
  end
74
74
  end
75
75
 
76
+ describe 'test attribute "data_source_tags"' 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
+
76
82
  end
@@ -43,4 +43,10 @@ describe Carbon::S3AuthRequest do
43
43
  end
44
44
  end
45
45
 
46
+ describe 'test attribute "data_source_tags"' 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
+
46
52
  end
@@ -115,4 +115,10 @@ describe Carbon::SyncOptions do
115
115
  end
116
116
  end
117
117
 
118
+ describe 'test attribute "data_source_tags"' 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
@@ -133,4 +133,10 @@ describe Carbon::UserResponse do
133
133
  end
134
134
  end
135
135
 
136
+ describe 'test attribute "connector_settings"' do
137
+ it 'should work' do
138
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
139
+ end
140
+ end
141
+
136
142
  end
@@ -0,0 +1,34 @@
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::WhiteLabelCreateRequestInner
14
+ describe Carbon::WhiteLabelCreateRequestInner do
15
+ let(:instance) { Carbon::WhiteLabelCreateRequestInner.new }
16
+
17
+ describe 'test an instance of WhiteLabelCreateRequestInner' do
18
+ it 'should create an instance of WhiteLabelCreateRequestInner' do
19
+ expect(instance).to be_instance_of(Carbon::WhiteLabelCreateRequestInner)
20
+ end
21
+ end
22
+ describe 'test attribute "data_source_type"' 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 "credentials"' 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
+ end
@@ -0,0 +1,34 @@
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::WhiteLabelFilters
14
+ describe Carbon::WhiteLabelFilters do
15
+ let(:instance) { Carbon::WhiteLabelFilters.new }
16
+
17
+ describe 'test an instance of WhiteLabelFilters' do
18
+ it 'should create an instance of WhiteLabelFilters' do
19
+ expect(instance).to be_instance_of(Carbon::WhiteLabelFilters)
20
+ end
21
+ end
22
+ describe 'test attribute "ids"' 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 "data_source_type"' 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
+ 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::WhiteLabelInputDataSourceType
14
+ describe Carbon::WhiteLabelInputDataSourceType do
15
+ let(:instance) { Carbon::WhiteLabelInputDataSourceType.new }
16
+
17
+ describe 'test an instance of WhiteLabelInputDataSourceType' do
18
+ it 'should create an instance of WhiteLabelInputDataSourceType' do
19
+ expect(instance).to be_instance_of(Carbon::WhiteLabelInputDataSourceType)
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,34 @@
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::WhiteLabelInput
14
+ describe Carbon::WhiteLabelInput do
15
+ let(:instance) { Carbon::WhiteLabelInput.new }
16
+
17
+ describe 'test an instance of WhiteLabelInput' do
18
+ it 'should create an instance of WhiteLabelInput' do
19
+ expect(instance).to be_instance_of(Carbon::WhiteLabelInput)
20
+ end
21
+ end
22
+ describe 'test attribute "data_source_type"' 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 "credentials"' 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
+ 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::WhiteLabelOrderByColumns
14
+ describe Carbon::WhiteLabelOrderByColumns do
15
+ let(:instance) { Carbon::WhiteLabelOrderByColumns.new }
16
+
17
+ describe 'test an instance of WhiteLabelOrderByColumns' do
18
+ it 'should create an instance of WhiteLabelOrderByColumns' do
19
+ expect(instance).to be_instance_of(Carbon::WhiteLabelOrderByColumns)
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,34 @@
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::WhiteLabelUpdateRequest
14
+ describe Carbon::WhiteLabelUpdateRequest do
15
+ let(:instance) { Carbon::WhiteLabelUpdateRequest.new }
16
+
17
+ describe 'test an instance of WhiteLabelUpdateRequest' do
18
+ it 'should create an instance of WhiteLabelUpdateRequest' do
19
+ expect(instance).to be_instance_of(Carbon::WhiteLabelUpdateRequest)
20
+ end
21
+ end
22
+ describe 'test attribute "data_source_type"' 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 "credentials"' 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
+ end
@@ -37,4 +37,10 @@ describe Carbon::WhiteLabelingResponse do
37
37
  end
38
38
  end
39
39
 
40
+ describe 'test attribute "connector_settings"' 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
  end