cheminee 0.1.10 → 0.1.12

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: babed28d6a423f6487d1321876412e26680a17cb8fca114e4f96040170fbcc3a
4
- data.tar.gz: c7950e6e3faf58618490c1eec9ae3d5feba74261d89cc1798bd92ad3912be64a
3
+ metadata.gz: 14fc05115e58b3aa845a53afcef463b887cede3efb29dfd947b8dbf4130c11ae
4
+ data.tar.gz: 9f1ff73b46aee59151fdef8e32978e00e0172cfd85119b91ee32d15b883123b5
5
5
  SHA512:
6
- metadata.gz: 3528480bc7a56bd70fbe6910ae701e7848b5628d062d8d47bd4e73bc774cbe7c89987f4f96db963e76b28d44901a68a197808e61a144a10c684b00b7202e16e8
7
- data.tar.gz: 0c43d3b518e9cde72fdf478b1d0305646243f22a15fd2432d1192d1fd08ed7f81de98f8d7e0cea218bc28f72fc9fb09b9f6fcdd8e6fcf702dfc1d4b6d08bb45c
6
+ metadata.gz: f76e04dd73b73c144ec3a37629d31c7af753401c394a7b27ea272f69722ecce87cef37e8f7bdbb92a07a65923e962187770ae71528979d517a5e792c9d5de661
7
+ data.tar.gz: 8dc4970989faee1b59f4bdbca67bc7fee00fb517312fa8772faf7051a373dc23e7f4c34235c638956632543926e8ceaac356682aa3f4e77d1c697e6e4026f49e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cheminee (0.1.10)
4
+ cheminee (0.1.12)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -7,7 +7,7 @@ Cheminée: The Chemical Structure Search Engine
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: 1.0
10
- - Package version: 0.1.10
10
+ - Package version: 0.1.12
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://github.com/rdkit-rs/cheminee](https://github.com/rdkit-rs/cheminee)
13
13
 
@@ -24,16 +24,16 @@ gem build cheminee.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./cheminee-0.1.10.gem
27
+ gem install ./cheminee-0.1.12.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./cheminee-0.1.10.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./cheminee-0.1.12.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'cheminee', '~> 0.1.10'
36
+ gem 'cheminee', '~> 0.1.12'
37
37
 
38
38
  ### Install from Git
39
39
 
data/docs/DefaultApi.md CHANGED
@@ -282,7 +282,8 @@ api_instance = Cheminee::DefaultApi.new
282
282
  index = 'index_example' # String |
283
283
  smile = 'smile_example' # String |
284
284
  opts = {
285
- limit: 'limit_example' # String |
285
+ result_limit: 56, # Integer |
286
+ tautomer_limit: 56 # Integer |
286
287
  }
287
288
 
288
289
  begin
@@ -318,7 +319,8 @@ end
318
319
  | ---- | ---- | ----------- | ----- |
319
320
  | **index** | **String** | | |
320
321
  | **smile** | **String** | | |
321
- | **limit** | **String** | | [optional] |
322
+ | **result_limit** | **Integer** | | [optional] |
323
+ | **tautomer_limit** | **Integer** | | [optional] |
322
324
 
323
325
  ### Return type
324
326
 
@@ -282,7 +282,8 @@ module Cheminee
282
282
  # @param index [String]
283
283
  # @param smile [String]
284
284
  # @param [Hash] opts the optional parameters
285
- # @option opts [String] :limit
285
+ # @option opts [Integer] :result_limit
286
+ # @option opts [Integer] :tautomer_limit
286
287
  # @return [Array<StructureSearchHit>]
287
288
  def v1_indexes_index_search_substructure_get(index, smile, opts = {})
288
289
  data, _status_code, _headers = v1_indexes_index_search_substructure_get_with_http_info(index, smile, opts)
@@ -293,7 +294,8 @@ module Cheminee
293
294
  # @param index [String]
294
295
  # @param smile [String]
295
296
  # @param [Hash] opts the optional parameters
296
- # @option opts [String] :limit
297
+ # @option opts [Integer] :result_limit
298
+ # @option opts [Integer] :tautomer_limit
297
299
  # @return [Array<(Array<StructureSearchHit>, Integer, Hash)>] Array<StructureSearchHit> data, response status code and response headers
298
300
  def v1_indexes_index_search_substructure_get_with_http_info(index, smile, opts = {})
299
301
  if @api_client.config.debugging
@@ -313,7 +315,8 @@ module Cheminee
313
315
  # query parameters
314
316
  query_params = opts[:query_params] || {}
315
317
  query_params[:'smile'] = smile
316
- query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
318
+ query_params[:'result_limit'] = opts[:'result_limit'] if !opts[:'result_limit'].nil?
319
+ query_params[:'tautomer_limit'] = opts[:'tautomer_limit'] if !opts[:'tautomer_limit'].nil?
317
320
 
318
321
  # header parameters
319
322
  header_params = opts[:header_params] || {}
@@ -11,5 +11,5 @@ OpenAPI Generator version: 7.1.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module Cheminee
14
- VERSION = '0.1.10'
14
+ VERSION = '0.1.12'
15
15
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cheminee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Xavier Lange
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-19 00:00:00.000000000 Z
11
+ date: 2023-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -102,7 +102,7 @@ files:
102
102
  - lib/cheminee/version.rb
103
103
  - openapi-generator-config.json
104
104
  - openapi.json
105
- - pkg/cheminee-0.1.10.gem
105
+ - pkg/cheminee-0.1.12.gem
106
106
  - spec/api/default_api_spec.rb
107
107
  - spec/api_client_spec.rb
108
108
  - spec/configuration_spec.rb
Binary file