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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 866c3b0ca3aeefdf7eac97bc971e746f161b53ac53807083a28223a933e27a49
4
- data.tar.gz: f1b7931dfcee757ea5bf242f5a89df2b613bb2e27f1ebdd318197589e632a920
3
+ metadata.gz: 432beb021b2f7908ad448bfc26d2f28512b4f821c6b7bf0db59eeb4b6a1c4b29
4
+ data.tar.gz: 7706d8f947136a530827db3eeb5f44135a012216698f8a9494a4f547571a93e5
5
5
  SHA512:
6
- metadata.gz: 46aeb23ea063e85a8ed25baec6910c3099c1bbd31d46d0393fbcad90acc33bc3f4c62b8e5f891f9ae870e3bed301fb7509314e796cf1950775f27656a5c36d58
7
- data.tar.gz: f74c062ec55982f8fd360bd60aacdc65b72e2646bdc76392b75353f5b833df335548dfbe24465091ab2cf7f9fd1bd9dee45c4cdf7da199d8498a869abd7a984b
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.15.5)
4
+ algolia (3.16.0)
5
5
  base64 (>= 0.2.0, < 1)
6
6
  faraday (>= 1.0.1, < 3.0)
7
7
  faraday-net_http_persistent (>= 0.15, < 3)
@@ -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&nbsp;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&nbsp;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 [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
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 [`deleteByQuery` operation](#tag/Records/operation/deleteBy).
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
@@ -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.15.5"
6
+ VERSION = "3.16.0"
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.15.5
4
+ version: 3.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support