algolia 3.21.0 → 3.21.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15d67b913fecb6c1c1b60185caf688ada4fbb24b6628afa39db7e42c898c0c58
4
- data.tar.gz: 62cfbb6829608b127f5ebc99c8038720b87b96cb5a18dbbce7c25a2a9e470651
3
+ metadata.gz: 5a5e39d35817a8422093311ebd458f87bba18346808a138a8b45ca3ca86917c1
4
+ data.tar.gz: 5407640c35307096179c4b3ff1c5875bd8d62b19d2d64fb51ae250fd6be8046c
5
5
  SHA512:
6
- metadata.gz: 2ae767d1d41a64c411b1d988ed1c85f2c06184bb2ef09e7fcf6e1370b9b73fd151aa940bb03a0bf72ca71ca4c6cf684698071a451c203f2a58cbb97be4f41b00
7
- data.tar.gz: ca6403652ef0621746fa9680f33f7843b7b5f7d649cb23707b5a2a36c569f8760d3015672fe2b3010fb7f7063a7027174fa921c16496ce50809ce3dc039625f9
6
+ metadata.gz: 3a107416244b5e4cac43ad07c3f6605f31ceab1c8bec776e373ad760a189cd5eb463708b6500b76cb70d71d4bcde74af46f2a0d0bf244231784d2c0c5b01f351
7
+ data.tar.gz: 11e88b59830fd81a37d7b8a2e0f832b85824c792e5539e6877927c66eea86184e87f3351c3ca09bdd3bb5d90acbda29f7e5c9edb8c0211610b2780c69a4ef87b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## [3.21.1](https://github.com/algolia/algoliasearch-client-ruby/compare/3.21.0...3.21.1)
2
+
3
+ - [4c9416a9fe](https://github.com/algolia/api-clients-automation/commit/4c9416a9fe) fix(specs): update sourceRun docs ([#5057](https://github.com/algolia/api-clients-automation/pull/5057)) by [@DevinCodes](https://github.com/DevinCodes/)
4
+ - [754efceb80](https://github.com/algolia/api-clients-automation/commit/754efceb80) fix(specs): allow one sided rule validity ([#5060](https://github.com/algolia/api-clients-automation/pull/5060)) by [@millotp](https://github.com/millotp/)
5
+
1
6
  ## [3.21.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.20.0...3.21.0)
2
7
 
3
8
  - [791a0c045d](https://github.com/algolia/api-clients-automation/commit/791a0c045d) feat(specs): abtesting winsorizedAmount ([#5053](https://github.com/algolia/api-clients-automation/pull/5053)) by [@cdhawke](https://github.com/cdhawke/)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.21.0)
4
+ algolia (3.21.1)
5
5
  base64 (>= 0.2.0, < 1)
6
6
  faraday (>= 1.0.1, < 3.0)
7
7
  faraday-net_http_persistent (>= 0.15, < 3)
@@ -2265,7 +2265,7 @@ module Algolia
2265
2265
  @api_client.deserialize(response.body, request_options[:debug_return_type] || "Ingestion::WatchResponse")
2266
2266
  end
2267
2267
 
2268
- # Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per task.
2268
+ # Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools sources. Creates one run per task.
2269
2269
  #
2270
2270
  # Required API Key ACLs:
2271
2271
  # - addObject
@@ -2300,7 +2300,7 @@ module Algolia
2300
2300
  @api_client.call_api(:POST, path, new_options)
2301
2301
  end
2302
2302
 
2303
- # Runs all tasks linked to a source, only available for Shopify sources. It will create 1 run per task.
2303
+ # Runs all tasks linked to a source, only available for Shopify, BigCommerce and commercetools sources. Creates one run per task.
2304
2304
  #
2305
2305
  # Required API Key ACLs:
2306
2306
  # - addObject
@@ -8,13 +8,13 @@ require "time"
8
8
  module Algolia
9
9
  module Ingestion
10
10
  class RunSourcePayload
11
- # List of index names to include in reidexing/update.
11
+ # List of index names to include in reindex/update.
12
12
  attr_accessor :index_to_include
13
13
 
14
- # List of index names to exclude in reidexing/update.
14
+ # List of index names to exclude in reindex/update.
15
15
  attr_accessor :index_to_exclude
16
16
 
17
- # List of entityID to update.
17
+ # List of entityIDs to update.
18
18
  attr_accessor :entity_ids
19
19
 
20
20
  attr_accessor :entity_type
@@ -62,14 +62,10 @@ module Algolia
62
62
 
63
63
  if attributes.key?(:from)
64
64
  self.from = attributes[:from]
65
- else
66
- self.from = nil
67
65
  end
68
66
 
69
67
  if attributes.key?(:_until)
70
68
  self._until = attributes[:_until]
71
- else
72
- self._until = nil
73
69
  end
74
70
  end
75
71
 
@@ -62,14 +62,10 @@ module Algolia
62
62
 
63
63
  if attributes.key?(:from)
64
64
  self.from = attributes[:from]
65
- else
66
- self.from = nil
67
65
  end
68
66
 
69
67
  if attributes.key?(:_until)
70
68
  self._until = attributes[:_until]
71
- else
72
- self._until = nil
73
69
  end
74
70
  end
75
71
 
@@ -3,5 +3,5 @@
3
3
  # Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
4
4
 
5
5
  module Algolia
6
- VERSION = "3.21.0"
6
+ VERSION = "3.21.1"
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.21.0
4
+ version: 3.21.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support