carbon_ruby_sdk 0.2.41 → 0.2.42

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 (36) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +140 -2
  4. data/lib/carbon_ruby_sdk/api/white_label_api.rb +393 -0
  5. data/lib/carbon_ruby_sdk/models/credentials.rb +244 -0
  6. data/lib/carbon_ruby_sdk/models/delete_white_label_request.rb +222 -0
  7. data/lib/carbon_ruby_sdk/models/google_drive_credentials.rb +254 -0
  8. data/lib/carbon_ruby_sdk/models/google_drive_white_label_input.rb +230 -0
  9. data/lib/carbon_ruby_sdk/models/list_white_label_request.rb +246 -0
  10. data/lib/carbon_ruby_sdk/models/one_drive_sharepoint_credentials.rb +264 -0
  11. data/lib/carbon_ruby_sdk/models/one_drive_sharepoint_white_label_input.rb +234 -0
  12. data/lib/carbon_ruby_sdk/models/one_drive_sharepoint_white_label_input_data_source_type.rb +36 -0
  13. data/lib/carbon_ruby_sdk/models/white_label_create_request_inner.rb +255 -0
  14. data/lib/carbon_ruby_sdk/models/white_label_filters.rb +230 -0
  15. data/lib/carbon_ruby_sdk/models/white_label_input.rb +234 -0
  16. data/lib/carbon_ruby_sdk/models/white_label_input_data_source_type.rb +48 -0
  17. data/lib/carbon_ruby_sdk/models/white_label_order_by_columns.rb +36 -0
  18. data/lib/carbon_ruby_sdk/models/white_label_update_request.rb +255 -0
  19. data/lib/carbon_ruby_sdk/version.rb +1 -1
  20. data/lib/carbon_ruby_sdk.rb +17 -0
  21. data/spec/api/white_label_api_spec.rb +73 -0
  22. data/spec/models/credentials_spec.rb +40 -0
  23. data/spec/models/delete_white_label_request_spec.rb +28 -0
  24. data/spec/models/google_drive_credentials_spec.rb +46 -0
  25. data/spec/models/google_drive_white_label_input_spec.rb +34 -0
  26. data/spec/models/list_white_label_request_spec.rb +46 -0
  27. data/spec/models/one_drive_sharepoint_credentials_spec.rb +52 -0
  28. data/spec/models/one_drive_sharepoint_white_label_input_data_source_type_spec.rb +22 -0
  29. data/spec/models/one_drive_sharepoint_white_label_input_spec.rb +34 -0
  30. data/spec/models/white_label_create_request_inner_spec.rb +34 -0
  31. data/spec/models/white_label_filters_spec.rb +34 -0
  32. data/spec/models/white_label_input_data_source_type_spec.rb +22 -0
  33. data/spec/models/white_label_input_spec.rb +34 -0
  34. data/spec/models/white_label_order_by_columns_spec.rb +22 -0
  35. data/spec/models/white_label_update_request_spec.rb +34 -0
  36. metadata +47 -2
@@ -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
@@ -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
@@ -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
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.2.41
4
+ version: 0.2.42
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konfig
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-16 00:00:00.000000000 Z
11
+ date: 2024-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -95,6 +95,7 @@ files:
95
95
  - lib/carbon_ruby_sdk/api/users_api.rb
96
96
  - lib/carbon_ruby_sdk/api/utilities_api.rb
97
97
  - lib/carbon_ruby_sdk/api/webhooks_api.rb
98
+ - lib/carbon_ruby_sdk/api/white_label_api.rb
98
99
  - lib/carbon_ruby_sdk/api_client.rb
99
100
  - lib/carbon_ruby_sdk/api_client_custom.rb
100
101
  - lib/carbon_ruby_sdk/api_error.rb
@@ -138,6 +139,7 @@ files:
138
139
  - lib/carbon_ruby_sdk/models/contacts_order_by_nullable.rb
139
140
  - lib/carbon_ruby_sdk/models/contacts_request.rb
140
141
  - lib/carbon_ruby_sdk/models/contacts_response.rb
142
+ - lib/carbon_ruby_sdk/models/credentials.rb
141
143
  - lib/carbon_ruby_sdk/models/custom_credentials_type.rb
142
144
  - lib/carbon_ruby_sdk/models/data_source_configuration.rb
143
145
  - lib/carbon_ruby_sdk/models/data_source_last_sync_actions.rb
@@ -147,6 +149,7 @@ files:
147
149
  - lib/carbon_ruby_sdk/models/delete_files_query_input.rb
148
150
  - lib/carbon_ruby_sdk/models/delete_files_v2_query_input.rb
149
151
  - lib/carbon_ruby_sdk/models/delete_users_input.rb
152
+ - lib/carbon_ruby_sdk/models/delete_white_label_request.rb
150
153
  - lib/carbon_ruby_sdk/models/directory_item.rb
151
154
  - lib/carbon_ruby_sdk/models/document_response.rb
152
155
  - lib/carbon_ruby_sdk/models/document_response_list.rb
@@ -191,6 +194,8 @@ files:
191
194
  - lib/carbon_ruby_sdk/models/github_fetch_repos_request.rb
192
195
  - lib/carbon_ruby_sdk/models/gmail_sync_input.rb
193
196
  - lib/carbon_ruby_sdk/models/gong_authentication.rb
197
+ - lib/carbon_ruby_sdk/models/google_drive_credentials.rb
198
+ - lib/carbon_ruby_sdk/models/google_drive_white_label_input.rb
194
199
  - lib/carbon_ruby_sdk/models/guru_authentication.rb
195
200
  - lib/carbon_ruby_sdk/models/guru_connect_request.rb
196
201
  - lib/carbon_ruby_sdk/models/head_or_base.rb
@@ -223,6 +228,7 @@ files:
223
228
  - lib/carbon_ruby_sdk/models/list_users_filters.rb
224
229
  - lib/carbon_ruby_sdk/models/list_users_order_by_types.rb
225
230
  - lib/carbon_ruby_sdk/models/list_users_request.rb
231
+ - lib/carbon_ruby_sdk/models/list_white_label_request.rb
226
232
  - lib/carbon_ruby_sdk/models/location_property_inner.rb
227
233
  - lib/carbon_ruby_sdk/models/modify_cold_storage_parameters_query_input.rb
228
234
  - lib/carbon_ruby_sdk/models/modify_user_configuration_input.rb
@@ -233,6 +239,9 @@ files:
233
239
  - lib/carbon_ruby_sdk/models/oauth_based_connectors.rb
234
240
  - lib/carbon_ruby_sdk/models/object_type.rb
235
241
  - lib/carbon_ruby_sdk/models/one_drive_authentication.rb
242
+ - lib/carbon_ruby_sdk/models/one_drive_sharepoint_credentials.rb
243
+ - lib/carbon_ruby_sdk/models/one_drive_sharepoint_white_label_input.rb
244
+ - lib/carbon_ruby_sdk/models/one_drive_sharepoint_white_label_input_data_source_type.rb
236
245
  - lib/carbon_ruby_sdk/models/opportunities_order_by.rb
237
246
  - lib/carbon_ruby_sdk/models/opportunities_order_by_nullable.rb
238
247
  - lib/carbon_ruby_sdk/models/opportunities_request.rb
@@ -343,6 +352,12 @@ files:
343
352
  - lib/carbon_ruby_sdk/models/webhook_query_response.rb
344
353
  - lib/carbon_ruby_sdk/models/webhook_status.rb
345
354
  - lib/carbon_ruby_sdk/models/webscrape_request.rb
355
+ - lib/carbon_ruby_sdk/models/white_label_create_request_inner.rb
356
+ - lib/carbon_ruby_sdk/models/white_label_filters.rb
357
+ - lib/carbon_ruby_sdk/models/white_label_input.rb
358
+ - lib/carbon_ruby_sdk/models/white_label_input_data_source_type.rb
359
+ - lib/carbon_ruby_sdk/models/white_label_order_by_columns.rb
360
+ - lib/carbon_ruby_sdk/models/white_label_update_request.rb
346
361
  - lib/carbon_ruby_sdk/models/white_labeling_response.rb
347
362
  - lib/carbon_ruby_sdk/models/youtube_transcript_response.rb
348
363
  - lib/carbon_ruby_sdk/models/zendesk_authentication.rb
@@ -359,6 +374,7 @@ files:
359
374
  - spec/api/users_api_spec.rb
360
375
  - spec/api/utilities_api_spec.rb
361
376
  - spec/api/webhooks_api_spec.rb
377
+ - spec/api/white_label_api_spec.rb
362
378
  - spec/api_client_spec.rb
363
379
  - spec/configuration_spec.rb
364
380
  - spec/getting_started_spec.rb
@@ -401,6 +417,7 @@ files:
401
417
  - spec/models/contacts_order_by_spec.rb
402
418
  - spec/models/contacts_request_spec.rb
403
419
  - spec/models/contacts_response_spec.rb
420
+ - spec/models/credentials_spec.rb
404
421
  - spec/models/custom_credentials_type_spec.rb
405
422
  - spec/models/data_source_configuration_spec.rb
406
423
  - spec/models/data_source_last_sync_actions_spec.rb
@@ -410,6 +427,7 @@ files:
410
427
  - spec/models/delete_files_query_input_spec.rb
411
428
  - spec/models/delete_files_v2_query_input_spec.rb
412
429
  - spec/models/delete_users_input_spec.rb
430
+ - spec/models/delete_white_label_request_spec.rb
413
431
  - spec/models/directory_item_spec.rb
414
432
  - spec/models/document_response_list_spec.rb
415
433
  - spec/models/document_response_spec.rb
@@ -454,6 +472,8 @@ files:
454
472
  - spec/models/github_fetch_repos_request_spec.rb
455
473
  - spec/models/gmail_sync_input_spec.rb
456
474
  - spec/models/gong_authentication_spec.rb
475
+ - spec/models/google_drive_credentials_spec.rb
476
+ - spec/models/google_drive_white_label_input_spec.rb
457
477
  - spec/models/guru_authentication_spec.rb
458
478
  - spec/models/guru_connect_request_spec.rb
459
479
  - spec/models/head_or_base_spec.rb
@@ -486,6 +506,7 @@ files:
486
506
  - spec/models/list_users_filters_spec.rb
487
507
  - spec/models/list_users_order_by_types_spec.rb
488
508
  - spec/models/list_users_request_spec.rb
509
+ - spec/models/list_white_label_request_spec.rb
489
510
  - spec/models/location_property_inner_spec.rb
490
511
  - spec/models/modify_cold_storage_parameters_query_input_spec.rb
491
512
  - spec/models/modify_user_configuration_input_spec.rb
@@ -496,6 +517,9 @@ files:
496
517
  - spec/models/oauth_based_connectors_spec.rb
497
518
  - spec/models/object_type_spec.rb
498
519
  - spec/models/one_drive_authentication_spec.rb
520
+ - spec/models/one_drive_sharepoint_credentials_spec.rb
521
+ - spec/models/one_drive_sharepoint_white_label_input_data_source_type_spec.rb
522
+ - spec/models/one_drive_sharepoint_white_label_input_spec.rb
499
523
  - spec/models/opportunities_order_by_nullable_spec.rb
500
524
  - spec/models/opportunities_order_by_spec.rb
501
525
  - spec/models/opportunities_request_spec.rb
@@ -606,6 +630,12 @@ files:
606
630
  - spec/models/webhook_spec.rb
607
631
  - spec/models/webhook_status_spec.rb
608
632
  - spec/models/webscrape_request_spec.rb
633
+ - spec/models/white_label_create_request_inner_spec.rb
634
+ - spec/models/white_label_filters_spec.rb
635
+ - spec/models/white_label_input_data_source_type_spec.rb
636
+ - spec/models/white_label_input_spec.rb
637
+ - spec/models/white_label_order_by_columns_spec.rb
638
+ - spec/models/white_label_update_request_spec.rb
609
639
  - spec/models/white_labeling_response_spec.rb
610
640
  - spec/models/youtube_transcript_response_spec.rb
611
641
  - spec/models/zendesk_authentication_spec.rb
@@ -644,6 +674,7 @@ test_files:
644
674
  - spec/api/github_api_spec.rb
645
675
  - spec/api/integrations_api_spec.rb
646
676
  - spec/api/organizations_api_spec.rb
677
+ - spec/api/white_label_api_spec.rb
647
678
  - spec/api/utilities_api_spec.rb
648
679
  - spec/api/data_sources_api_spec.rb
649
680
  - spec/api/crm_api_spec.rb
@@ -662,6 +693,7 @@ test_files:
662
693
  - spec/models/chunk_properties_spec.rb
663
694
  - spec/models/organization_user_data_source_filters_spec.rb
664
695
  - spec/models/helpdesk_file_types_spec.rb
696
+ - spec/models/white_label_filters_spec.rb
665
697
  - spec/models/files_input_spec.rb
666
698
  - spec/models/account_spec.rb
667
699
  - spec/models/webhook_no_key_spec.rb
@@ -674,17 +706,20 @@ test_files:
674
706
  - spec/models/list_user_response_spec.rb
675
707
  - spec/models/sync_files_request_spec.rb
676
708
  - spec/models/organization_user_file_tag_create_spec.rb
709
+ - spec/models/list_white_label_request_spec.rb
677
710
  - spec/models/sitemap_scrape_request_spec.rb
678
711
  - spec/models/partial_owner_nullable_spec.rb
679
712
  - spec/models/guru_authentication_spec.rb
680
713
  - spec/models/presigned_url_response_spec.rb
681
714
  - spec/models/service_now_file_types_spec.rb
682
715
  - spec/models/user_response_spec.rb
716
+ - spec/models/white_label_input_data_source_type_spec.rb
683
717
  - spec/models/hybrid_search_tuning_params_nullable_spec.rb
684
718
  - spec/models/notion_authentication_spec.rb
685
719
  - spec/models/user_list_response_spec.rb
686
720
  - spec/models/comments_order_by_spec.rb
687
721
  - spec/models/user_web_pages_request_spec.rb
722
+ - spec/models/one_drive_sharepoint_white_label_input_data_source_type_spec.rb
688
723
  - spec/models/service_now_credentials_nullable_spec.rb
689
724
  - spec/models/azure_blob_auth_request_spec.rb
690
725
  - spec/models/s3_file_sync_input_spec.rb
@@ -693,11 +728,13 @@ test_files:
693
728
  - spec/models/organization_user_data_source_order_by_columns_spec.rb
694
729
  - spec/models/opportunity_status_spec.rb
695
730
  - spec/models/leads_response_spec.rb
731
+ - spec/models/one_drive_sharepoint_credentials_spec.rb
696
732
  - spec/models/delete_files_query_input_spec.rb
697
733
  - spec/models/body_create_upload_file_uploadfile_post_spec.rb
698
734
  - spec/models/webhook_query_input_spec.rb
699
735
  - spec/models/organization_user_files_to_sync_order_by_types_spec.rb
700
736
  - spec/models/organization_user_data_source_query_input_spec.rb
737
+ - spec/models/delete_white_label_request_spec.rb
701
738
  - spec/models/connect_data_source_response_spec.rb
702
739
  - spec/models/pr_file_spec.rb
703
740
  - spec/models/base_includes_spec.rb
@@ -720,6 +757,7 @@ test_files:
720
757
  - spec/models/file_sync_config_spec.rb
721
758
  - spec/models/document_response_spec.rb
722
759
  - spec/models/user_configuration_spec.rb
760
+ - spec/models/google_drive_white_label_input_spec.rb
723
761
  - spec/models/sent_webhook_payload_object_object_id_spec.rb
724
762
  - spec/models/connect_data_source_input_spec.rb
725
763
  - spec/models/pull_request_filters_spec.rb
@@ -774,8 +812,10 @@ test_files:
774
812
  - spec/models/fresh_desk_connect_request_spec.rb
775
813
  - spec/models/user_file_spec.rb
776
814
  - spec/models/opportunity_filters_spec.rb
815
+ - spec/models/google_drive_credentials_spec.rb
777
816
  - spec/models/list_users_filters_spec.rb
778
817
  - spec/models/upload_file_from_url_input_spec.rb
818
+ - spec/models/white_label_update_request_spec.rb
779
819
  - spec/models/freskdesk_authentication_spec.rb
780
820
  - spec/models/external_source_items_order_by_spec.rb
781
821
  - spec/models/sync_files_ids_spec.rb
@@ -793,6 +833,7 @@ test_files:
793
833
  - spec/models/list_items_filters_spec.rb
794
834
  - spec/models/file_sync_config_nullable_spec.rb
795
835
  - spec/models/location_property_inner_spec.rb
836
+ - spec/models/white_label_order_by_columns_spec.rb
796
837
  - spec/models/comments_response_spec.rb
797
838
  - spec/models/source_property_spec.rb
798
839
  - spec/models/tags1_spec.rb
@@ -843,6 +884,7 @@ test_files:
843
884
  - spec/models/file_content_types_spec.rb
844
885
  - spec/models/update_organization_input_spec.rb
845
886
  - spec/models/sharepoint_authentication_spec.rb
887
+ - spec/models/one_drive_sharepoint_white_label_input_spec.rb
846
888
  - spec/models/gitbook_connect_request_spec.rb
847
889
  - spec/models/opportunities_order_by_spec.rb
848
890
  - spec/models/zotero_authentication_spec.rb
@@ -883,9 +925,12 @@ test_files:
883
925
  - spec/models/pull_request_extended_spec.rb
884
926
  - spec/models/sent_webhook_request_body_spec.rb
885
927
  - spec/models/transcription_service_spec.rb
928
+ - spec/models/white_label_input_spec.rb
886
929
  - spec/models/http_validation_error_spec.rb
930
+ - spec/models/white_label_create_request_inner_spec.rb
887
931
  - spec/models/validation_error_spec.rb
888
932
  - spec/models/user_spec.rb
933
+ - spec/models/credentials_spec.rb
889
934
  - spec/models/delete_files_v2_query_input_spec.rb
890
935
  - spec/models/list_request_spec.rb
891
936
  - spec/models/guru_connect_request_spec.rb