carbon_ruby_sdk 0.2.21 → 0.2.23
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +3 -3
- data/README.md +3 -3
- data/lib/carbon_ruby_sdk/api/integrations_api.rb +2 -2
- data/lib/carbon_ruby_sdk/models/o_auth_url_request.rb +1 -1
- data/lib/carbon_ruby_sdk/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ebbb98c66b7a6796f71fb829c3a7ca572a29ccc8e84cb4c26f1c12d8e1bad2c6
|
4
|
+
data.tar.gz: 59b5e28972541f385acab8346bcf4c87ae3f730340c6b0b294073aa6882653db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48f05394c353fa1ea1aeda4b815d930cc4c8737b1589153f610f86e45a6b97a1ea63f1aee82d9e4214d66b326e0046b4ff25611025cc098e3479e4c50e845652
|
7
|
+
data.tar.gz: 809e7e2f563de781a8fd38b32d4e2c93c90a3d4c72d88a215125a20d62db1c90932e131ae49070ef2286e652626660d89948566076dd15c7a53936c32977e49a
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
carbon_ruby_sdk (0.2.
|
4
|
+
carbon_ruby_sdk (0.2.23)
|
5
5
|
faraday (>= 1.0.1, < 3.0)
|
6
6
|
faraday-multipart (~> 1.0, >= 1.0.4)
|
7
7
|
|
@@ -28,7 +28,7 @@ GEM
|
|
28
28
|
reline (>= 0.3.0)
|
29
29
|
method_source (1.1.0)
|
30
30
|
multipart-post (2.4.1)
|
31
|
-
parallel (1.26.
|
31
|
+
parallel (1.26.3)
|
32
32
|
parser (3.3.4.2)
|
33
33
|
ast (~> 2.4.1)
|
34
34
|
racc
|
@@ -68,7 +68,7 @@ GEM
|
|
68
68
|
rubocop-ast (>= 1.2.0, < 2.0)
|
69
69
|
ruby-progressbar (~> 1.7)
|
70
70
|
unicode-display_width (>= 1.4.0, < 3.0)
|
71
|
-
rubocop-ast (1.32.
|
71
|
+
rubocop-ast (1.32.1)
|
72
72
|
parser (>= 3.3.1.0)
|
73
73
|
ruby-progressbar (1.13.0)
|
74
74
|
ruby2_keywords (0.0.5)
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
Connect external data to LLMs, no matter the source.
|
8
8
|
|
9
|
-
[![npm](https://img.shields.io/badge/gem-v0.2.
|
9
|
+
[![npm](https://img.shields.io/badge/gem-v0.2.23-blue)](https://rubygems.org/gems/carbon_ruby_sdk/versions/0.2.23)
|
10
10
|
|
11
11
|
</div>
|
12
12
|
|
@@ -93,7 +93,7 @@ Connect external data to LLMs, no matter the source.
|
|
93
93
|
Add to Gemfile:
|
94
94
|
|
95
95
|
```ruby
|
96
|
-
gem 'carbon_ruby_sdk', '~> 0.2.
|
96
|
+
gem 'carbon_ruby_sdk', '~> 0.2.23'
|
97
97
|
```
|
98
98
|
|
99
99
|
## Getting Started<a id="getting-started"></a>
|
@@ -1695,7 +1695,7 @@ This request id will be added to all files that get synced using the generated
|
|
1695
1695
|
OAuth URL
|
1696
1696
|
|
1697
1697
|
##### use_ocr: `Boolean`<a id="use_ocr-boolean"></a>
|
1698
|
-
Enable OCR for files that support it. Supported formats: pdf
|
1698
|
+
Enable OCR for files that support it. Supported formats: png, pdf, jpg
|
1699
1699
|
|
1700
1700
|
##### parse_pdf_tables_with_ocr: `Boolean`<a id="parse_pdf_tables_with_ocr-boolean"></a>
|
1701
1701
|
##### enable_file_picker: `Boolean`<a id="enable_file_picker-boolean"></a>
|
@@ -661,7 +661,7 @@ module Carbon
|
|
661
661
|
# @param data_source_id [Integer] Used to specify a data source to sync from if you have multiple connected. It can be skipped if you only have one data source of that type connected or are connecting a new account.
|
662
662
|
# @param connecting_new_account [Boolean] Used to connect a new data source. If not specified, we will attempt to create a sync URL for an existing data source based on type and ID.
|
663
663
|
# @param request_id [String] This request id will be added to all files that get synced using the generated OAuth URL
|
664
|
-
# @param use_ocr [Boolean] Enable OCR for files that support it. Supported formats: pdf
|
664
|
+
# @param use_ocr [Boolean] Enable OCR for files that support it. Supported formats: png, pdf, jpg
|
665
665
|
# @param parse_pdf_tables_with_ocr [Boolean]
|
666
666
|
# @param enable_file_picker [Boolean] Enable integration's file picker for sources that support it. Supported sources: BOX, DROPBOX, GOOGLE_DRIVE, ONEDRIVE, SHAREPOINT
|
667
667
|
# @param sync_source_items [Boolean] Enabling this flag will fetch all available content from the source to be listed via list items endpoint
|
@@ -731,7 +731,7 @@ module Carbon
|
|
731
731
|
# @param data_source_id [Integer] Used to specify a data source to sync from if you have multiple connected. It can be skipped if you only have one data source of that type connected or are connecting a new account.
|
732
732
|
# @param connecting_new_account [Boolean] Used to connect a new data source. If not specified, we will attempt to create a sync URL for an existing data source based on type and ID.
|
733
733
|
# @param request_id [String] This request id will be added to all files that get synced using the generated OAuth URL
|
734
|
-
# @param use_ocr [Boolean] Enable OCR for files that support it. Supported formats: pdf
|
734
|
+
# @param use_ocr [Boolean] Enable OCR for files that support it. Supported formats: png, pdf, jpg
|
735
735
|
# @param parse_pdf_tables_with_ocr [Boolean]
|
736
736
|
# @param enable_file_picker [Boolean] Enable integration's file picker for sources that support it. Supported sources: BOX, DROPBOX, GOOGLE_DRIVE, ONEDRIVE, SHAREPOINT
|
737
737
|
# @param sync_source_items [Boolean] Enabling this flag will fetch all available content from the source to be listed via list items endpoint
|
@@ -56,7 +56,7 @@ module Carbon
|
|
56
56
|
# This request id will be added to all files that get synced using the generated OAuth URL
|
57
57
|
attr_accessor :request_id
|
58
58
|
|
59
|
-
# Enable OCR for files that support it. Supported formats: pdf
|
59
|
+
# Enable OCR for files that support it. Supported formats: png, pdf, jpg
|
60
60
|
attr_accessor :use_ocr
|
61
61
|
|
62
62
|
attr_accessor :parse_pdf_tables_with_ocr
|
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.
|
4
|
+
version: 0.2.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Konfig
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|