algolia 3.15.5 → 3.16.0
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/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/lib/algolia/api/insights_client.rb +12 -4
- data/lib/algolia/api/search_client.rb +2 -2
- data/lib/algolia/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 432beb021b2f7908ad448bfc26d2f28512b4f821c6b7bf0db59eeb4b6a1c4b29
|
4
|
+
data.tar.gz: 7706d8f947136a530827db3eeb5f44135a012216698f8a9494a4f547571a93e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 14b6ce6fd8f4e7692e9b2b5f97b1a853195f07337fa9586effb1dca87518245db4e573e2dc5220263afc2d3892a8ffa536a970cf430ff4b70b5a3b96d4d26ed6
|
7
|
+
data.tar.gz: c1071fe5fe9a40c643ff7ba59c8d79f7cc5c0bb22d4d8b19420921107257730db528e0fc7e880f09c67241c4df7ebf5e842dd8dc9b5f79381a8a172c3b73cdbc
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## [3.16.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.15.5...3.16.0)
|
2
|
+
|
3
|
+
- [bebb56e0b9](https://github.com/algolia/api-clients-automation/commit/bebb56e0b9) fix(specs): add x-acl to insights endpoints ([#4822](https://github.com/algolia/api-clients-automation/pull/4822)) by [@kai687](https://github.com/kai687/)
|
4
|
+
- [7e226c4559](https://github.com/algolia/api-clients-automation/commit/7e226c4559) feat(scripts): add push to mcp-node on release ([#4784](https://github.com/algolia/api-clients-automation/pull/4784)) by [@shortcuts](https://github.com/shortcuts/)
|
5
|
+
|
1
6
|
## [3.15.5](https://github.com/algolia/algoliasearch-client-ruby/compare/3.15.4...3.15.5)
|
2
7
|
|
3
8
|
- [efec6baf1c](https://github.com/algolia/api-clients-automation/commit/efec6baf1c) chore(deps): dependencies 2025-04-21 ([#4762](https://github.com/algolia/api-clients-automation/pull/4762)) by [@algolia-bot](https://github.com/algolia-bot/)
|
data/Gemfile.lock
CHANGED
@@ -246,7 +246,9 @@ module Algolia
|
|
246
246
|
end
|
247
247
|
|
248
248
|
# Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see `Delete a user profile` in the Personalization API.
|
249
|
-
|
249
|
+
#
|
250
|
+
# Required API Key ACLs:
|
251
|
+
# - deleteObject
|
250
252
|
# @param user_token [String] User token for which to delete all associated events. (required)
|
251
253
|
# @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)
|
252
254
|
# @return [Http::Response] the response
|
@@ -276,7 +278,9 @@ module Algolia
|
|
276
278
|
end
|
277
279
|
|
278
280
|
# Deletes all events related to the specified user token from events metrics and analytics. The deletion is asynchronous, and processed within 48 hours. To delete a personalization user profile, see `Delete a user profile` in the Personalization API.
|
279
|
-
|
281
|
+
#
|
282
|
+
# Required API Key ACLs:
|
283
|
+
# - deleteObject
|
280
284
|
# @param user_token [String] User token for which to delete all associated events. (required)
|
281
285
|
# @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)
|
282
286
|
# @return [nil]
|
@@ -286,7 +290,9 @@ module Algolia
|
|
286
290
|
end
|
287
291
|
|
288
292
|
# Sends a list of events to the Insights API. You can include up to 1,000 events in a single request, but the request body must be smaller than 2 MB.
|
289
|
-
|
293
|
+
#
|
294
|
+
# Required API Key ACLs:
|
295
|
+
# - search
|
290
296
|
# @param insights_events [InsightsEvents] (required)
|
291
297
|
# @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)
|
292
298
|
# @return [Http::Response] the response
|
@@ -316,7 +322,9 @@ module Algolia
|
|
316
322
|
end
|
317
323
|
|
318
324
|
# Sends a list of events to the Insights API. You can include up to 1,000 events in a single request, but the request body must be smaller than 2 MB.
|
319
|
-
|
325
|
+
#
|
326
|
+
# Required API Key ACLs:
|
327
|
+
# - search
|
320
328
|
# @param insights_events [InsightsEvents] (required)
|
321
329
|
# @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)
|
322
330
|
# @return [EventsResponse]
|
@@ -926,7 +926,7 @@ module Algolia
|
|
926
926
|
@api_client.deserialize(response.body, request_options[:debug_return_type] || "Search::DeletedAtResponse")
|
927
927
|
end
|
928
928
|
|
929
|
-
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`
|
929
|
+
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
|
930
930
|
#
|
931
931
|
# Required API Key ACLs:
|
932
932
|
# - deleteObject
|
@@ -966,7 +966,7 @@ module Algolia
|
|
966
966
|
@api_client.call_api(:DELETE, path, new_options)
|
967
967
|
end
|
968
968
|
|
969
|
-
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`
|
969
|
+
# Deletes a record by its object ID. To delete more than one record, use the [`batch` operation](#tag/Records/operation/batch). To delete records matching a query, use the [`deleteBy` operation](#tag/Records/operation/deleteBy).
|
970
970
|
#
|
971
971
|
# Required API Key ACLs:
|
972
972
|
# - deleteObject
|
data/lib/algolia/version.rb
CHANGED