algolia 3.14.0 → 3.15.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: d20896ef848b1f294d635976bec438dcd5d5d295b73684b572507f2e3bd37155
4
- data.tar.gz: 5e27c47d71e9f264112e814e91f495285d7534a0e1cbeb95429fc92fc9454aa5
3
+ metadata.gz: a106e15f1c245792147c6203b4e4d7992b898e112609fd66524f30044c602d94
4
+ data.tar.gz: 7218bfbd386013ae4b2abb953b127642bb887cf83ad89902bffbe3d02e6eaf02
5
5
  SHA512:
6
- metadata.gz: 1232023160daae40b2d071b6c8851e5819d2af7cf5615faa09cf646e52b41ebf31079d6227f1b7f86f949cacd07098b2f3f441c1f92ef47fe8c0a21172905710
7
- data.tar.gz: 72b7b96ed599b63db62d5e185625b5a32a5789c3ca880d64fdfbe1ac09a16f85a05c05a8b2b13ab69a1dd51cf60096af997e5c6a33a3706e2050f57637acfead
6
+ metadata.gz: 4e1bba4413b05b92980c3c70447919cd60ff997c9e7f7b9217ce2137c5dde27baf198a9d5e31f08f249ab7a3270addc94e27b87f1784453774b3245cc762d7e4
7
+ data.tar.gz: 71feb928a3cc095624ab5feb5f358514585ce9bd458aedbfa25e5bbfa0a94cadc9bd8a84d67274adf67ace0e9267241c86b5f5247877346ef9daa94d100cca70
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [3.15.1](https://github.com/algolia/algoliasearch-client-ruby/compare/3.15.0...3.15.1)
2
+
3
+ - [a51683025e](https://github.com/algolia/api-clients-automation/commit/a51683025e) chore: deprecate mcm methods ([#4694](https://github.com/algolia/api-clients-automation/pull/4694)) by [@kai687](https://github.com/kai687/)
4
+ - [2ced1c526b](https://github.com/algolia/api-clients-automation/commit/2ced1c526b) chore: assert long lasting requests on the ingestion api ([#4615](https://github.com/algolia/api-clients-automation/pull/4615)) by [@shortcuts](https://github.com/shortcuts/)
5
+
6
+ ## [3.15.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.14.0...3.15.0)
7
+
8
+ - [c3addb449](https://github.com/algolia/api-clients-automation/commit/c3addb449) feat(specs): add CT Query predicate property ([#4654](https://github.com/algolia/api-clients-automation/pull/4654)) by [@morganleroi](https://github.com/morganleroi/)
9
+
1
10
  ## [3.14.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.13.0...3.14.0)
2
11
 
3
12
  - [26457d0ec8](https://github.com/algolia/api-clients-automation/commit/26457d0ec8) feat(specs): add the owner attributes to ingestion resources ([#4616](https://github.com/algolia/api-clients-automation/pull/4616)) by [@millotp](https://github.com/millotp/)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.14.0)
4
+ algolia (3.15.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)
@@ -23,18 +23,6 @@ module Algolia
23
23
  region = nil
24
24
  end
25
25
 
26
- if opts.nil? || opts[:connect_timeout].nil?
27
- opts[:connect_timeout] = 2000
28
- end
29
-
30
- if opts.nil? || opts[:read_timeout].nil?
31
- opts[:read_timeout] = 5000
32
- end
33
-
34
- if opts.nil? || opts[:write_timeout].nil?
35
- opts[:write_timeout] = 30000
36
- end
37
-
38
26
  if !region.nil? && (!region.is_a?(String) || !regions.include?(region))
39
27
  raise "`region` must be one of the following: #{regions.join(", ")}"
40
28
  end
@@ -50,6 +38,18 @@ module Algolia
50
38
  end
51
39
 
52
40
  def self.create_with_config(config)
41
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
42
+ config.connect_timeout = 2000
43
+ end
44
+
45
+ if config.read_timeout.nil? || config.read_timeout.empty?
46
+ config.read_timeout = 5000
47
+ end
48
+
49
+ if config.write_timeout.nil? || config.write_timeout.empty?
50
+ config.write_timeout = 30000
51
+ end
52
+
53
53
  new(config)
54
54
  end
55
55
 
@@ -23,18 +23,6 @@ module Algolia
23
23
  region = nil
24
24
  end
25
25
 
26
- if opts.nil? || opts[:connect_timeout].nil?
27
- opts[:connect_timeout] = 2000
28
- end
29
-
30
- if opts.nil? || opts[:read_timeout].nil?
31
- opts[:read_timeout] = 5000
32
- end
33
-
34
- if opts.nil? || opts[:write_timeout].nil?
35
- opts[:write_timeout] = 30000
36
- end
37
-
38
26
  if !region.nil? && (!region.is_a?(String) || !regions.include?(region))
39
27
  raise "`region` must be one of the following: #{regions.join(", ")}"
40
28
  end
@@ -50,6 +38,18 @@ module Algolia
50
38
  end
51
39
 
52
40
  def self.create_with_config(config)
41
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
42
+ config.connect_timeout = 2000
43
+ end
44
+
45
+ if config.read_timeout.nil? || config.read_timeout.empty?
46
+ config.read_timeout = 5000
47
+ end
48
+
49
+ if config.write_timeout.nil? || config.write_timeout.empty?
50
+ config.write_timeout = 30000
51
+ end
52
+
53
53
  new(config)
54
54
  end
55
55
 
@@ -31,6 +31,18 @@ module Algolia
31
31
  end
32
32
 
33
33
  def self.create_with_config(config)
34
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
35
+ config.connect_timeout = 2000
36
+ end
37
+
38
+ if config.read_timeout.nil? || config.read_timeout.empty?
39
+ config.read_timeout = 5000
40
+ end
41
+
42
+ if config.write_timeout.nil? || config.write_timeout.empty?
43
+ config.write_timeout = 30000
44
+ end
45
+
34
46
  new(config)
35
47
  end
36
48
 
@@ -23,18 +23,6 @@ module Algolia
23
23
  region = nil
24
24
  end
25
25
 
26
- if opts.nil? || opts[:connect_timeout].nil?
27
- opts[:connect_timeout] = 25000
28
- end
29
-
30
- if opts.nil? || opts[:read_timeout].nil?
31
- opts[:read_timeout] = 25000
32
- end
33
-
34
- if opts.nil? || opts[:write_timeout].nil?
35
- opts[:write_timeout] = 25000
36
- end
37
-
38
26
  if region.nil? || !region.is_a?(String) || !regions.include?(region)
39
27
  raise "`region` is required and must be one of the following: #{regions.join(", ")}"
40
28
  end
@@ -50,6 +38,18 @@ module Algolia
50
38
  end
51
39
 
52
40
  def self.create_with_config(config)
41
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
42
+ config.connect_timeout = 25000
43
+ end
44
+
45
+ if config.read_timeout.nil? || config.read_timeout.empty?
46
+ config.read_timeout = 25000
47
+ end
48
+
49
+ if config.write_timeout.nil? || config.write_timeout.empty?
50
+ config.write_timeout = 25000
51
+ end
52
+
53
53
  new(config)
54
54
  end
55
55
 
@@ -261,6 +261,7 @@ module Algolia
261
261
 
262
262
  # Creates a new task using the v1 endpoint, please use `createTask` instead.
263
263
 
264
+ # THIS OPERATION IS DEPRECATED
264
265
  # @param task_create [TaskCreateV1] Request body for creating a task. (required)
265
266
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
266
267
  # @return [Http::Response] the response
@@ -710,6 +711,7 @@ module Algolia
710
711
 
711
712
  # Deletes a task by its ID using the v1 endpoint, please use `deleteTask` instead.
712
713
 
714
+ # THIS OPERATION IS DEPRECATED
713
715
  # @param task_id [String] Unique identifier of a task. (required)
714
716
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
715
717
  # @return [Http::Response] the response
@@ -845,6 +847,7 @@ module Algolia
845
847
  # - addObject
846
848
  # - deleteIndex
847
849
  # - editSettings
850
+ # THIS OPERATION IS DEPRECATED
848
851
  # @param task_id [String] Unique identifier of a task. (required)
849
852
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
850
853
  # @return [Http::Response] the response
@@ -941,6 +944,7 @@ module Algolia
941
944
  # - addObject
942
945
  # - deleteIndex
943
946
  # - editSettings
947
+ # THIS OPERATION IS DEPRECATED
944
948
  # @param task_id [String] Unique identifier of a task. (required)
945
949
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
946
950
  # @return [Http::Response] the response
@@ -1292,6 +1296,7 @@ module Algolia
1292
1296
  # - addObject
1293
1297
  # - deleteIndex
1294
1298
  # - editSettings
1299
+ # THIS OPERATION IS DEPRECATED
1295
1300
  # @param task_id [String] Unique identifier of a task. (required)
1296
1301
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1297
1302
  # @return [Http::Response] the response
@@ -1972,6 +1977,7 @@ module Algolia
1972
1977
  # - addObject
1973
1978
  # - deleteIndex
1974
1979
  # - editSettings
1980
+ # THIS OPERATION IS DEPRECATED
1975
1981
  # @param items_per_page [Integer] Number of items per page. (default to 10)
1976
1982
  # @param page [Integer] Page number of the paginated API response.
1977
1983
  # @param action [Array<ActionType>] Actions for filtering the list of tasks.
@@ -2295,6 +2301,7 @@ module Algolia
2295
2301
  # - addObject
2296
2302
  # - deleteIndex
2297
2303
  # - editSettings
2304
+ # THIS OPERATION IS DEPRECATED
2298
2305
  # @param task_id [String] Unique identifier of a task. (required)
2299
2306
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
2300
2307
  # @return [Http::Response] the response
@@ -2535,6 +2542,7 @@ module Algolia
2535
2542
  # - addObject
2536
2543
  # - deleteIndex
2537
2544
  # - editSettings
2545
+ # THIS OPERATION IS DEPRECATED
2538
2546
  # @param task_search [TaskSearch] (required)
2539
2547
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
2540
2548
  # @return [Http::Response] the response
@@ -3014,6 +3022,7 @@ module Algolia
3014
3022
 
3015
3023
  # Updates a task by its ID using the v1 endpoint, please use `updateTask` instead.
3016
3024
 
3025
+ # THIS OPERATION IS DEPRECATED
3017
3026
  # @param task_id [String] Unique identifier of a task. (required)
3018
3027
  # @param task_update [TaskUpdateV1] (required)
3019
3028
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -23,18 +23,6 @@ module Algolia
23
23
  region = nil
24
24
  end
25
25
 
26
- if opts.nil? || opts[:connect_timeout].nil?
27
- opts[:connect_timeout] = 2000
28
- end
29
-
30
- if opts.nil? || opts[:read_timeout].nil?
31
- opts[:read_timeout] = 5000
32
- end
33
-
34
- if opts.nil? || opts[:write_timeout].nil?
35
- opts[:write_timeout] = 30000
36
- end
37
-
38
26
  if !region.nil? && (!region.is_a?(String) || !regions.include?(region))
39
27
  raise "`region` must be one of the following: #{regions.join(", ")}"
40
28
  end
@@ -50,6 +38,18 @@ module Algolia
50
38
  end
51
39
 
52
40
  def self.create_with_config(config)
41
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
42
+ config.connect_timeout = 2000
43
+ end
44
+
45
+ if config.read_timeout.nil? || config.read_timeout.empty?
46
+ config.read_timeout = 5000
47
+ end
48
+
49
+ if config.write_timeout.nil? || config.write_timeout.empty?
50
+ config.write_timeout = 30000
51
+ end
52
+
53
53
  new(config)
54
54
  end
55
55
 
@@ -23,6 +23,18 @@ module Algolia
23
23
  end
24
24
 
25
25
  def self.create_with_config(config)
26
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
27
+ config.connect_timeout = 2000
28
+ end
29
+
30
+ if config.read_timeout.nil? || config.read_timeout.empty?
31
+ config.read_timeout = 5000
32
+ end
33
+
34
+ if config.write_timeout.nil? || config.write_timeout.empty?
35
+ config.write_timeout = 30000
36
+ end
37
+
26
38
  new(config)
27
39
  end
28
40
 
@@ -23,18 +23,6 @@ module Algolia
23
23
  region = nil
24
24
  end
25
25
 
26
- if opts.nil? || opts[:connect_timeout].nil?
27
- opts[:connect_timeout] = 2000
28
- end
29
-
30
- if opts.nil? || opts[:read_timeout].nil?
31
- opts[:read_timeout] = 5000
32
- end
33
-
34
- if opts.nil? || opts[:write_timeout].nil?
35
- opts[:write_timeout] = 30000
36
- end
37
-
38
26
  if region.nil? || !region.is_a?(String) || !regions.include?(region)
39
27
  raise "`region` is required and must be one of the following: #{regions.join(", ")}"
40
28
  end
@@ -50,6 +38,18 @@ module Algolia
50
38
  end
51
39
 
52
40
  def self.create_with_config(config)
41
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
42
+ config.connect_timeout = 2000
43
+ end
44
+
45
+ if config.read_timeout.nil? || config.read_timeout.empty?
46
+ config.read_timeout = 5000
47
+ end
48
+
49
+ if config.write_timeout.nil? || config.write_timeout.empty?
50
+ config.write_timeout = 30000
51
+ end
52
+
53
53
  new(config)
54
54
  end
55
55
 
@@ -23,18 +23,6 @@ module Algolia
23
23
  region = nil
24
24
  end
25
25
 
26
- if opts.nil? || opts[:connect_timeout].nil?
27
- opts[:connect_timeout] = 2000
28
- end
29
-
30
- if opts.nil? || opts[:read_timeout].nil?
31
- opts[:read_timeout] = 5000
32
- end
33
-
34
- if opts.nil? || opts[:write_timeout].nil?
35
- opts[:write_timeout] = 30000
36
- end
37
-
38
26
  if region.nil? || !region.is_a?(String) || !regions.include?(region)
39
27
  raise "`region` is required and must be one of the following: #{regions.join(", ")}"
40
28
  end
@@ -50,6 +38,18 @@ module Algolia
50
38
  end
51
39
 
52
40
  def self.create_with_config(config)
41
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
42
+ config.connect_timeout = 2000
43
+ end
44
+
45
+ if config.read_timeout.nil? || config.read_timeout.empty?
46
+ config.read_timeout = 5000
47
+ end
48
+
49
+ if config.write_timeout.nil? || config.write_timeout.empty?
50
+ config.write_timeout = 30000
51
+ end
52
+
53
53
  new(config)
54
54
  end
55
55
 
@@ -31,6 +31,18 @@ module Algolia
31
31
  end
32
32
 
33
33
  def self.create_with_config(config)
34
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
35
+ config.connect_timeout = 2000
36
+ end
37
+
38
+ if config.read_timeout.nil? || config.read_timeout.empty?
39
+ config.read_timeout = 5000
40
+ end
41
+
42
+ if config.write_timeout.nil? || config.write_timeout.empty?
43
+ config.write_timeout = 30000
44
+ end
45
+
34
46
  new(config)
35
47
  end
36
48
 
@@ -34,6 +34,18 @@ module Algolia
34
34
  end
35
35
 
36
36
  def self.create_with_config(config)
37
+ if config.connect_timeout.nil? || config.connect_timeout.empty?
38
+ config.connect_timeout = 2000
39
+ end
40
+
41
+ if config.read_timeout.nil? || config.read_timeout.empty?
42
+ config.read_timeout = 5000
43
+ end
44
+
45
+ if config.write_timeout.nil? || config.write_timeout.empty?
46
+ config.write_timeout = 30000
47
+ end
48
+
37
49
  new(config)
38
50
  end
39
51
 
@@ -207,6 +219,7 @@ module Algolia
207
219
  #
208
220
  # Required API Key ACLs:
209
221
  # - admin
222
+ # THIS OPERATION IS DEPRECATED
210
223
  # @param x_algolia_user_id [String] Unique identifier of the user who makes the search request. (required)
211
224
  # @param assign_user_id_params [AssignUserIdParams] (required)
212
225
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -304,6 +317,7 @@ module Algolia
304
317
  #
305
318
  # Required API Key ACLs:
306
319
  # - admin
320
+ # THIS OPERATION IS DEPRECATED
307
321
  # @param x_algolia_user_id [String] Unique identifier of the user who makes the search request. (required)
308
322
  # @param batch_assign_user_ids_params [BatchAssignUserIdsParams] (required)
309
323
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -1673,6 +1687,7 @@ module Algolia
1673
1687
  #
1674
1688
  # Required API Key ACLs:
1675
1689
  # - admin
1690
+ # THIS OPERATION IS DEPRECATED
1676
1691
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1677
1692
  # @return [Http::Response] the response
1678
1693
  def get_top_user_ids_with_http_info(request_options = {})
@@ -1710,6 +1725,7 @@ module Algolia
1710
1725
  #
1711
1726
  # Required API Key ACLs:
1712
1727
  # - admin
1728
+ # THIS OPERATION IS DEPRECATED
1713
1729
  # @param user_id [String] Unique identifier of the user who makes the search request. (required)
1714
1730
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1715
1731
  # @return [Http::Response] the response
@@ -1754,6 +1770,7 @@ module Algolia
1754
1770
  #
1755
1771
  # Required API Key ACLs:
1756
1772
  # - admin
1773
+ # THIS OPERATION IS DEPRECATED
1757
1774
  # @param get_clusters [Boolean] Whether to include the cluster's pending mapping state in the response.
1758
1775
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1759
1776
  # @return [Http::Response] the response
@@ -1834,6 +1851,7 @@ module Algolia
1834
1851
  #
1835
1852
  # Required API Key ACLs:
1836
1853
  # - admin
1854
+ # THIS OPERATION IS DEPRECATED
1837
1855
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1838
1856
  # @return [Http::Response] the response
1839
1857
  def list_clusters_with_http_info(request_options = {})
@@ -1914,6 +1932,7 @@ module Algolia
1914
1932
  #
1915
1933
  # Required API Key ACLs:
1916
1934
  # - admin
1935
+ # THIS OPERATION IS DEPRECATED
1917
1936
  # @param page [Integer] Requested page of the API response. If `null`, the API response is not paginated.
1918
1937
  # @param hits_per_page [Integer] Number of hits per page. (default to 100)
1919
1938
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
@@ -2129,6 +2148,7 @@ module Algolia
2129
2148
  #
2130
2149
  # Required API Key ACLs:
2131
2150
  # - admin
2151
+ # THIS OPERATION IS DEPRECATED
2132
2152
  # @param user_id [String] Unique identifier of the user who makes the search request. (required)
2133
2153
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
2134
2154
  # @return [Http::Response] the response
@@ -2906,6 +2926,7 @@ module Algolia
2906
2926
  #
2907
2927
  # Required API Key ACLs:
2908
2928
  # - admin
2929
+ # THIS OPERATION IS DEPRECATED
2909
2930
  # @param search_user_ids_params [SearchUserIdsParams] (required)
2910
2931
  # @param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
2911
2932
  # @return [Http::Response] the response
@@ -25,9 +25,9 @@ module Algolia
25
25
  @app_id = app_id
26
26
  @api_key = api_key
27
27
  @client_side_validation = opts[:client_side_validation].nil? ? true : opts[:client_side_validation]
28
- @connect_timeout = opts[:connect_timeout] || 2_000
29
- @read_timeout = opts[:read_timeout] || 5_000
30
- @write_timeout = opts[:write_timeout] || 30_000
28
+ @connect_timeout = opts[:connect_timeout]
29
+ @read_timeout = opts[:read_timeout]
30
+ @write_timeout = opts[:write_timeout]
31
31
  @compression_type = opts[:compression_type] || "none"
32
32
  @requester = opts[:requester]
33
33
 
@@ -20,6 +20,9 @@ module Algolia
20
20
  # Whether a fallback value is stored in the Algolia record if there's no inventory information about the product.
21
21
  attr_accessor :fallback_is_in_stock_value
22
22
 
23
+ # Predicate to filter out specific products when indexing. For more information, see [Query Predicate](https://docs.commercetools.com/api/predicates/query).
24
+ attr_accessor :product_query_predicate
25
+
23
26
  attr_accessor :custom_fields
24
27
 
25
28
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -30,6 +33,7 @@ module Algolia
30
33
  :url => :url,
31
34
  :project_key => :projectKey,
32
35
  :fallback_is_in_stock_value => :fallbackIsInStockValue,
36
+ :product_query_predicate => :productQueryPredicate,
33
37
  :custom_fields => :customFields
34
38
  }
35
39
  end
@@ -49,6 +53,7 @@ module Algolia
49
53
  :url => :"String",
50
54
  :project_key => :"String",
51
55
  :fallback_is_in_stock_value => :"Boolean",
56
+ :product_query_predicate => :"String",
52
57
  :custom_fields => :"CommercetoolsCustomFields"
53
58
  }
54
59
  end
@@ -111,6 +116,10 @@ module Algolia
111
116
  self.fallback_is_in_stock_value = attributes[:fallback_is_in_stock_value]
112
117
  end
113
118
 
119
+ if attributes.key?(:product_query_predicate)
120
+ self.product_query_predicate = attributes[:product_query_predicate]
121
+ end
122
+
114
123
  if attributes.key?(:custom_fields)
115
124
  self.custom_fields = attributes[:custom_fields]
116
125
  end
@@ -126,6 +135,7 @@ module Algolia
126
135
  url == other.url &&
127
136
  project_key == other.project_key &&
128
137
  fallback_is_in_stock_value == other.fallback_is_in_stock_value &&
138
+ product_query_predicate == other.product_query_predicate &&
129
139
  custom_fields == other.custom_fields
130
140
  end
131
141
 
@@ -138,7 +148,7 @@ module Algolia
138
148
  # Calculates hash code according to all attributes.
139
149
  # @return [Integer] Hash code
140
150
  def hash
141
- [store_keys, locales, url, project_key, fallback_is_in_stock_value, custom_fields].hash
151
+ [store_keys, locales, url, project_key, fallback_is_in_stock_value, product_query_predicate, custom_fields].hash
142
152
  end
143
153
 
144
154
  # Builds the object from hash
@@ -18,6 +18,9 @@ module Algolia
18
18
  # Whether a fallback value is stored in the Algolia record if there's no inventory information about the product.
19
19
  attr_accessor :fallback_is_in_stock_value
20
20
 
21
+ # Predicate to filter out specific products when indexing. For more information, see [Query Predicate](https://docs.commercetools.com/api/predicates/query).
22
+ attr_accessor :product_query_predicate
23
+
21
24
  attr_accessor :custom_fields
22
25
 
23
26
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -27,6 +30,7 @@ module Algolia
27
30
  :locales => :locales,
28
31
  :url => :url,
29
32
  :fallback_is_in_stock_value => :fallbackIsInStockValue,
33
+ :product_query_predicate => :productQueryPredicate,
30
34
  :custom_fields => :customFields
31
35
  }
32
36
  end
@@ -38,6 +42,7 @@ module Algolia
38
42
  :locales => :"Array<String>",
39
43
  :url => :"String",
40
44
  :fallback_is_in_stock_value => :"Boolean",
45
+ :product_query_predicate => :"String",
41
46
  :custom_fields => :"CommercetoolsCustomFields"
42
47
  }
43
48
  end
@@ -92,6 +97,10 @@ module Algolia
92
97
  self.fallback_is_in_stock_value = attributes[:fallback_is_in_stock_value]
93
98
  end
94
99
 
100
+ if attributes.key?(:product_query_predicate)
101
+ self.product_query_predicate = attributes[:product_query_predicate]
102
+ end
103
+
95
104
  if attributes.key?(:custom_fields)
96
105
  self.custom_fields = attributes[:custom_fields]
97
106
  end
@@ -106,6 +115,7 @@ module Algolia
106
115
  locales == other.locales &&
107
116
  url == other.url &&
108
117
  fallback_is_in_stock_value == other.fallback_is_in_stock_value &&
118
+ product_query_predicate == other.product_query_predicate &&
109
119
  custom_fields == other.custom_fields
110
120
  end
111
121
 
@@ -118,7 +128,7 @@ module Algolia
118
128
  # Calculates hash code according to all attributes.
119
129
  # @return [Integer] Hash code
120
130
  def hash
121
- [store_keys, locales, url, fallback_is_in_stock_value, custom_fields].hash
131
+ [store_keys, locales, url, fallback_is_in_stock_value, product_query_predicate, custom_fields].hash
122
132
  end
123
133
 
124
134
  # Builds the object from hash
@@ -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.14.0"
6
+ VERSION = "3.15.1"
7
7
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.14.0
4
+ version: 3.15.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-24 00:00:00.000000000 Z
10
+ date: 2025-04-01 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: faraday