carbon_ruby_sdk 0.2.23 → 0.2.24

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ebbb98c66b7a6796f71fb829c3a7ca572a29ccc8e84cb4c26f1c12d8e1bad2c6
4
- data.tar.gz: 59b5e28972541f385acab8346bcf4c87ae3f730340c6b0b294073aa6882653db
3
+ metadata.gz: 4b61e2385085bb9887386f845b210ba35f30fcb7c4e318827914fdc2d4311a8d
4
+ data.tar.gz: c939329f0ef41fcbdc4a10302d6c587665078d563d969660bae0d5af05e9514d
5
5
  SHA512:
6
- metadata.gz: 48f05394c353fa1ea1aeda4b815d930cc4c8737b1589153f610f86e45a6b97a1ea63f1aee82d9e4214d66b326e0046b4ff25611025cc098e3479e4c50e845652
7
- data.tar.gz: 809e7e2f563de781a8fd38b32d4e2c93c90a3d4c72d88a215125a20d62db1c90932e131ae49070ef2286e652626660d89948566076dd15c7a53936c32977e49a
6
+ metadata.gz: e109bbf4cdf4b20423a509411a212b0e1b9ce246573a56cb24776f04642dae068ca3710c2748f798ddcc8aa976a18ebb92250ce4afe797efdd31efb128de6926
7
+ data.tar.gz: d98be3101307c2805cbeb8a8b26454f57d32fa0b40cb580902fb23c58ee0c4973e332081d1ad499ea1f8d0858545784f8c2ab98d87a45fd2500c902f0164e800
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- carbon_ruby_sdk (0.2.23)
4
+ carbon_ruby_sdk (0.2.24)
5
5
  faraday (>= 1.0.1, < 3.0)
6
6
  faraday-multipart (~> 1.0, >= 1.0.4)
7
7
 
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.23-blue)](https://rubygems.org/gems/carbon_ruby_sdk/versions/0.2.23)
9
+ [![npm](https://img.shields.io/badge/gem-v0.2.24-blue)](https://rubygems.org/gems/carbon_ruby_sdk/versions/0.2.24)
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.23'
96
+ gem 'carbon_ruby_sdk', '~> 0.2.24'
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: png, pdf, jpg
1698
+ Enable OCR for files that support it. Supported formats: png, jpg, pdf
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: png, pdf, jpg
664
+ # @param use_ocr [Boolean] Enable OCR for files that support it. Supported formats: png, jpg, pdf
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: png, pdf, jpg
734
+ # @param use_ocr [Boolean] Enable OCR for files that support it. Supported formats: png, jpg, pdf
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: png, pdf, jpg
59
+ # Enable OCR for files that support it. Supported formats: png, jpg, pdf
60
60
  attr_accessor :use_ocr
61
61
 
62
62
  attr_accessor :parse_pdf_tables_with_ocr
@@ -7,5 +7,5 @@ The version of the OpenAPI document: 1.0.0
7
7
  =end
8
8
 
9
9
  module Carbon
10
- VERSION = '0.2.23'
10
+ VERSION = '0.2.24'
11
11
  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.23
4
+ version: 0.2.24
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-19 00:00:00.000000000 Z
11
+ date: 2024-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday