algolia 3.0.0.alpha.6 → 3.0.0.alpha.7
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 +4 -4
- data/.openapi-generator/VERSION +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/lib/algolia/api/abtesting_client.rb +41 -21
- data/lib/algolia/api/analytics_client.rb +111 -43
- data/lib/algolia/api/ingestion_client.rb +334 -94
- data/lib/algolia/api/insights_client.rb +13 -13
- data/lib/algolia/api/monitoring_client.rb +32 -33
- data/lib/algolia/api/personalization_client.rb +34 -18
- data/lib/algolia/api/query_suggestions_client.rb +55 -27
- data/lib/algolia/api/recommend_client.rb +46 -26
- data/lib/algolia/api/search_client.rb +459 -171
- data/lib/algolia/api_client.rb +0 -4
- data/lib/algolia/models/abtesting/ab_test.rb +7 -1
- data/lib/algolia/models/abtesting/list_ab_tests_response.rb +3 -1
- data/lib/algolia/models/abtesting/variant.rb +24 -5
- data/lib/algolia/models/analytics/click_through_rate_event.rb +3 -1
- data/lib/algolia/models/analytics/conversion_rate_event.rb +3 -1
- data/lib/algolia/models/analytics/get_click_through_rate_response.rb +3 -1
- data/lib/algolia/models/analytics/get_conversation_rate_response.rb +3 -1
- data/lib/algolia/models/analytics/top_hit_with_analytics.rb +3 -1
- data/lib/algolia/models/analytics/top_search_with_analytics.rb +3 -1
- data/lib/algolia/models/query-suggestions/base_query_suggestions_configuration_response.rb +1 -11
- data/lib/algolia/models/query-suggestions/query_suggestions_configuration_response.rb +1 -11
- data/lib/algolia/models/recommend/highlight_result.rb +1 -0
- data/lib/algolia/models/recommend/snippet_result.rb +1 -0
- data/lib/algolia/models/search/highlight_result.rb +1 -0
- data/lib/algolia/models/search/snippet_result.rb +1 -0
- data/lib/algolia/transport/http/http_requester.rb +2 -2
- data/lib/algolia/transport/stateful_host.rb +2 -1
- data/lib/algolia/transport/transport.rb +7 -4
- data/lib/algolia/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: f178243d901a09bdc7e4c0e3b47e2c2c7f0ca3d20db76e7b310f16f6e1b9f3d0
|
4
|
+
data.tar.gz: c1d301f0c071472df043614b2d7cce87aa809694c0fba5c790abec1e17483fa1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51da927c52fb523660c1b45718517cfc805d235fec4f4da35294f93d5cb93dc9a56ec9750bd9086fa23d4a54c9bcd7c6ad0afa672634577b4edca45784220e75
|
7
|
+
data.tar.gz: 8cd4e5732f6721eadfeb595b7928b21f152734fa8cfcdedc0a53bfb938f887bd7b99173759c72c1c95e08215e6218ff618fd6fe32d402af41ab6338de3d33e92
|
data/.openapi-generator/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
7.
|
1
|
+
7.3.0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
## [3.0.0.alpha.7](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.0.alpha.6...3.0.0.alpha.7)
|
2
|
+
|
3
|
+
- [28b34ffb6](https://github.com/algolia/api-clients-automation/commit/28b34ffb6) feat(ruby): add browse helpers ([#2669](https://github.com/algolia/api-clients-automation/pull/2669)) by [@millotp](https://github.com/millotp/)
|
4
|
+
|
1
5
|
## [3.0.0.alpha.6](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.0.alpha.5...3.0.0.alpha.6)
|
2
6
|
|
3
7
|
- [379fbc501](https://github.com/algolia/api-clients-automation/commit/379fbc501) fix(specs): correct `searchSynonyms` parameters ([#2595](https://github.com/algolia/api-clients-automation/pull/2595)) by [@morganleroi](https://github.com/morganleroi/)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
algolia (3.0.0.alpha.
|
4
|
+
algolia (3.0.0.alpha.7)
|
5
5
|
faraday (>= 1.0.1, < 3.0)
|
6
6
|
faraday-net_http_persistent (>= 0.15, < 3)
|
7
7
|
net-http-persistent
|
@@ -33,7 +33,7 @@ GEM
|
|
33
33
|
rake (13.1.0)
|
34
34
|
regexp_parser (2.9.0)
|
35
35
|
rexml (3.2.6)
|
36
|
-
rubocop (1.60.
|
36
|
+
rubocop (1.60.2)
|
37
37
|
json (~> 2.3)
|
38
38
|
language_server-protocol (>= 3.17.0)
|
39
39
|
parallel (~> 1.10)
|
@@ -34,8 +34,10 @@ module Algolia
|
|
34
34
|
new(config)
|
35
35
|
end
|
36
36
|
|
37
|
-
# Create an A/B test.
|
38
37
|
# Creates an A/B test.
|
38
|
+
#
|
39
|
+
# Required API Key ACLs:
|
40
|
+
# - editSettings
|
39
41
|
# @param add_ab_tests_request [AddABTestsRequest] (required)
|
40
42
|
# @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)
|
41
43
|
# @return [Http::Response] the response
|
@@ -64,8 +66,10 @@ module Algolia
|
|
64
66
|
@api_client.call_api(:POST, path, new_options)
|
65
67
|
end
|
66
68
|
|
67
|
-
# Create an A/B test.
|
68
69
|
# Creates an A/B test.
|
70
|
+
#
|
71
|
+
# Required API Key ACLs:
|
72
|
+
# - editSettings
|
69
73
|
# @param add_ab_tests_request [AddABTestsRequest] (required)
|
70
74
|
# @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)
|
71
75
|
# @return [ABTestResponse]
|
@@ -74,8 +78,8 @@ module Algolia
|
|
74
78
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Abtesting::ABTestResponse')
|
75
79
|
end
|
76
80
|
|
77
|
-
# Send requests to the Algolia REST API.
|
78
81
|
# This method allow you to send requests to the Algolia REST API.
|
82
|
+
|
79
83
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
80
84
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
81
85
|
# @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)
|
@@ -106,8 +110,8 @@ module Algolia
|
|
106
110
|
@api_client.call_api(:DELETE, path, new_options)
|
107
111
|
end
|
108
112
|
|
109
|
-
# Send requests to the Algolia REST API.
|
110
113
|
# This method allow you to send requests to the Algolia REST API.
|
114
|
+
|
111
115
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
112
116
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
113
117
|
# @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)
|
@@ -117,8 +121,8 @@ module Algolia
|
|
117
121
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Object')
|
118
122
|
end
|
119
123
|
|
120
|
-
# Send requests to the Algolia REST API.
|
121
124
|
# This method allow you to send requests to the Algolia REST API.
|
125
|
+
|
122
126
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
123
127
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
124
128
|
# @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)
|
@@ -149,8 +153,8 @@ module Algolia
|
|
149
153
|
@api_client.call_api(:GET, path, new_options)
|
150
154
|
end
|
151
155
|
|
152
|
-
# Send requests to the Algolia REST API.
|
153
156
|
# This method allow you to send requests to the Algolia REST API.
|
157
|
+
|
154
158
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
155
159
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
156
160
|
# @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)
|
@@ -160,8 +164,8 @@ module Algolia
|
|
160
164
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Object')
|
161
165
|
end
|
162
166
|
|
163
|
-
# Send requests to the Algolia REST API.
|
164
167
|
# This method allow you to send requests to the Algolia REST API.
|
168
|
+
|
165
169
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
166
170
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
167
171
|
# @param body [Object] Parameters to send with the custom request.
|
@@ -193,8 +197,8 @@ module Algolia
|
|
193
197
|
@api_client.call_api(:POST, path, new_options)
|
194
198
|
end
|
195
199
|
|
196
|
-
# Send requests to the Algolia REST API.
|
197
200
|
# This method allow you to send requests to the Algolia REST API.
|
201
|
+
|
198
202
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
199
203
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
200
204
|
# @param body [Object] Parameters to send with the custom request.
|
@@ -205,8 +209,8 @@ module Algolia
|
|
205
209
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Object')
|
206
210
|
end
|
207
211
|
|
208
|
-
# Send requests to the Algolia REST API.
|
209
212
|
# This method allow you to send requests to the Algolia REST API.
|
213
|
+
|
210
214
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
211
215
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
212
216
|
# @param body [Object] Parameters to send with the custom request.
|
@@ -238,8 +242,8 @@ module Algolia
|
|
238
242
|
@api_client.call_api(:PUT, path, new_options)
|
239
243
|
end
|
240
244
|
|
241
|
-
# Send requests to the Algolia REST API.
|
242
245
|
# This method allow you to send requests to the Algolia REST API.
|
246
|
+
|
243
247
|
# @param path [String] Path of the endpoint, anything after \"/1\" must be specified. (required)
|
244
248
|
# @param parameters [Hash<String, Object>] Query parameters to apply to the current query.
|
245
249
|
# @param body [Object] Parameters to send with the custom request.
|
@@ -250,8 +254,10 @@ module Algolia
|
|
250
254
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Object')
|
251
255
|
end
|
252
256
|
|
253
|
-
# Delete an A/B test.
|
254
257
|
# Delete an A/B test. To determine the `id` for an A/B test, use the [`listABTests` operation](#tag/abtest/operation/listABTests).
|
258
|
+
#
|
259
|
+
# Required API Key ACLs:
|
260
|
+
# - editSettings
|
255
261
|
# @param id [Integer] Unique A/B test ID. (required)
|
256
262
|
# @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)
|
257
263
|
# @return [Http::Response] the response
|
@@ -261,7 +267,7 @@ module Algolia
|
|
261
267
|
raise ArgumentError, "Parameter `id` is required when calling `delete_ab_test`."
|
262
268
|
end
|
263
269
|
|
264
|
-
path = '/2/abtests/{id}'.sub('{' + 'id' + '}',
|
270
|
+
path = '/2/abtests/{id}'.sub('{' + 'id' + '}', Transport.encode_uri(id.to_s))
|
265
271
|
query_params = {}
|
266
272
|
query_params = query_params.merge(request_options[:query_params]) unless request_options[:query_params].nil?
|
267
273
|
header_params = {}
|
@@ -280,8 +286,10 @@ module Algolia
|
|
280
286
|
@api_client.call_api(:DELETE, path, new_options)
|
281
287
|
end
|
282
288
|
|
283
|
-
# Delete an A/B test.
|
284
289
|
# Delete an A/B test. To determine the `id` for an A/B test, use the [`listABTests` operation](#tag/abtest/operation/listABTests).
|
290
|
+
#
|
291
|
+
# Required API Key ACLs:
|
292
|
+
# - editSettings
|
285
293
|
# @param id [Integer] Unique A/B test ID. (required)
|
286
294
|
# @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)
|
287
295
|
# @return [ABTestResponse]
|
@@ -290,8 +298,10 @@ module Algolia
|
|
290
298
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Abtesting::ABTestResponse')
|
291
299
|
end
|
292
300
|
|
293
|
-
# Get A/B test details.
|
294
301
|
# Get specific details for an A/B test. To determine the `id` for an A/B test, use the [`listABTests` operation](#tag/abtest/operation/listABTests).
|
302
|
+
#
|
303
|
+
# Required API Key ACLs:
|
304
|
+
# - analytics
|
295
305
|
# @param id [Integer] Unique A/B test ID. (required)
|
296
306
|
# @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)
|
297
307
|
# @return [Http::Response] the response
|
@@ -301,7 +311,7 @@ module Algolia
|
|
301
311
|
raise ArgumentError, "Parameter `id` is required when calling `get_ab_test`."
|
302
312
|
end
|
303
313
|
|
304
|
-
path = '/2/abtests/{id}'.sub('{' + 'id' + '}',
|
314
|
+
path = '/2/abtests/{id}'.sub('{' + 'id' + '}', Transport.encode_uri(id.to_s))
|
305
315
|
query_params = {}
|
306
316
|
query_params = query_params.merge(request_options[:query_params]) unless request_options[:query_params].nil?
|
307
317
|
header_params = {}
|
@@ -320,8 +330,10 @@ module Algolia
|
|
320
330
|
@api_client.call_api(:GET, path, new_options)
|
321
331
|
end
|
322
332
|
|
323
|
-
# Get A/B test details.
|
324
333
|
# Get specific details for an A/B test. To determine the `id` for an A/B test, use the [`listABTests` operation](#tag/abtest/operation/listABTests).
|
334
|
+
#
|
335
|
+
# Required API Key ACLs:
|
336
|
+
# - analytics
|
325
337
|
# @param id [Integer] Unique A/B test ID. (required)
|
326
338
|
# @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)
|
327
339
|
# @return [ABTest]
|
@@ -331,7 +343,9 @@ module Algolia
|
|
331
343
|
end
|
332
344
|
|
333
345
|
# List all A/B tests.
|
334
|
-
#
|
346
|
+
#
|
347
|
+
# Required API Key ACLs:
|
348
|
+
# - analytics
|
335
349
|
# @param offset [Integer] Position of the starting record. Used for paging. 0 is the first record. (default to 0)
|
336
350
|
# @param limit [Integer] Number of records to return (page size). (default to 10)
|
337
351
|
# @param index_prefix [String] Only return A/B tests for indices starting with this prefix.
|
@@ -363,7 +377,9 @@ module Algolia
|
|
363
377
|
end
|
364
378
|
|
365
379
|
# List all A/B tests.
|
366
|
-
#
|
380
|
+
#
|
381
|
+
# Required API Key ACLs:
|
382
|
+
# - analytics
|
367
383
|
# @param offset [Integer] Position of the starting record. Used for paging. 0 is the first record. (default to 0)
|
368
384
|
# @param limit [Integer] Number of records to return (page size). (default to 10)
|
369
385
|
# @param index_prefix [String] Only return A/B tests for indices starting with this prefix.
|
@@ -375,8 +391,10 @@ module Algolia
|
|
375
391
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || 'Abtesting::ListABTestsResponse')
|
376
392
|
end
|
377
393
|
|
378
|
-
# Stop an A/B test.
|
379
394
|
# If stopped, the test is over and can't be restarted. There is now only one index, receiving 100% of all search requests. The data gathered for stopped A/B tests is retained. To determine the `id` for an A/B test, use the [`listABTests` operation](#tag/abtest/operation/listABTests).
|
395
|
+
#
|
396
|
+
# Required API Key ACLs:
|
397
|
+
# - editSettings
|
380
398
|
# @param id [Integer] Unique A/B test ID. (required)
|
381
399
|
# @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)
|
382
400
|
# @return [Http::Response] the response
|
@@ -386,7 +404,7 @@ module Algolia
|
|
386
404
|
raise ArgumentError, "Parameter `id` is required when calling `stop_ab_test`."
|
387
405
|
end
|
388
406
|
|
389
|
-
path = '/2/abtests/{id}/stop'.sub('{' + 'id' + '}',
|
407
|
+
path = '/2/abtests/{id}/stop'.sub('{' + 'id' + '}', Transport.encode_uri(id.to_s))
|
390
408
|
query_params = {}
|
391
409
|
query_params = query_params.merge(request_options[:query_params]) unless request_options[:query_params].nil?
|
392
410
|
header_params = {}
|
@@ -405,8 +423,10 @@ module Algolia
|
|
405
423
|
@api_client.call_api(:POST, path, new_options)
|
406
424
|
end
|
407
425
|
|
408
|
-
# Stop an A/B test.
|
409
426
|
# If stopped, the test is over and can't be restarted. There is now only one index, receiving 100% of all search requests. The data gathered for stopped A/B tests is retained. To determine the `id` for an A/B test, use the [`listABTests` operation](#tag/abtest/operation/listABTests).
|
427
|
+
#
|
428
|
+
# Required API Key ACLs:
|
429
|
+
# - editSettings
|
410
430
|
# @param id [Integer] Unique A/B test ID. (required)
|
411
431
|
# @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)
|
412
432
|
# @return [ABTestResponse]
|