algolia 3.0.0 → 3.0.2

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: 7700a3f2ab4f77c826745c21fb2428a407116737c1a488ef9af5cb155163d59d
4
- data.tar.gz: 9fcddcae163c98de150bb729d3bd8c2b7dc114172651a82cf75a1ff4badf8745
3
+ metadata.gz: a2db79886806c29bdf96a017eea6d71dc27642c96c458b3bb738f36e10a2a656
4
+ data.tar.gz: 794c03f031a23e286fff1ed4afc1c6b68dda072e6b0b9f79326df42c2103f855
5
5
  SHA512:
6
- metadata.gz: 8223f3033ef0b75848c1bea2d8e5b47bdd472e730ed842c172d511813292487a4f866d8159410369acf863f569fc4f1fbb52f611ad2ce208918e7c5d5631c3a2
7
- data.tar.gz: 563dc0aaacdf45adcc0c890588fea0515adcd552d2c72391e984ed7ba4656f3f186638faca1c62fb4c177be2c4ac18704db4af9e4004bedbf86c6ac60fcb1125
6
+ metadata.gz: e9d02e869e5951131489f5189a629cec8af091b0d106e8628e7807e28510b3bea59b1d388882598b7020ba81c99725e9a966bf67861ae5dd6d26a64d78329485
7
+ data.tar.gz: 8a5b4f638f685d1c4ccdd3e29b9b62c6a8992827ae3de13252d66b18a66a3e6a05f9b7e07a0df746db24313d207e38df79303772305e1934505a1e48c7eeb7b0
@@ -5,7 +5,7 @@ name: Release
5
5
  on:
6
6
  push:
7
7
  branches:
8
- - next
8
+ - main
9
9
 
10
10
  jobs:
11
11
  release:
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [3.0.2](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.1...3.0.2)
2
+
3
+ - [6cfc2d479](https://github.com/algolia/api-clients-automation/commit/6cfc2d479) chore(specs): update rendered title for search params ([#3553](https://github.com/algolia/api-clients-automation/pull/3553)) by [@shortcuts](https://github.com/shortcuts/)
4
+
5
+ ## [3.0.1](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.0...3.0.1)
6
+
7
+ - [40c5d47bd](https://github.com/algolia/api-clients-automation/commit/40c5d47bd) fix(specs): delete user token processing time ([#3525](https://github.com/algolia/api-clients-automation/pull/3525)) by [@kai687](https://github.com/kai687/)
8
+
1
9
  ## [3.0.0](https://github.com/algolia/algoliasearch-client-ruby/compare/3.0.0.beta.16...3.0.0)
2
10
 
3
11
  New major version released! Browse [our documentation](https://www.algolia.com/doc/libraries/ruby)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- algolia (3.0.0)
4
+ algolia (3.0.2)
5
5
  base64 (>= 0.2.0, < 1)
6
6
  faraday (>= 1.0.1, < 3.0)
7
7
  faraday-net_http_persistent (>= 0.15, < 3)
data/README.md CHANGED
@@ -55,7 +55,7 @@ Encountering an issue? Before reaching out to support, we recommend heading to o
55
55
 
56
56
  ## Contributing
57
57
 
58
- This repository hosts the code of the generated Algolia API client for Ruby, if you'd like to contribute, head over to the [main repository](https://github.com/algolia/api-clients-automation). You can also find contributing guides on [our documentation website](https://api-clients-automation.netlify.app/docs/contributing/introduction).
58
+ This repository hosts the code of the generated Algolia API client for Ruby, if you'd like to contribute, head over to the [main repository](https://github.com/algolia/api-clients-automation). You can also find contributing guides on [our documentation website](https://api-clients-automation.netlify.app/docs/introduction).
59
59
 
60
60
  ## 📄 License
61
61
 
@@ -215,7 +215,7 @@ module Algolia
215
215
  @api_client.deserialize(response.body, request_options[:debug_return_type] || "Object")
216
216
  end
217
217
 
218
- # Deletes all events related to the specified user token from events metrics and analytics. To delete a personalization user profile, see [Delete a user profile](/specs/personalization#tag/profiles/operation/deleteUserProfile).
218
+ # 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](/specs/personalization#tag/profiles/operation/deleteUserProfile).
219
219
 
220
220
  # @param user_token [String] User token for which to delete all associated events. (required)
221
221
  # @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)
@@ -267,7 +267,7 @@ module Algolia
267
267
  @api_client.call_api(:DELETE, path, new_options)
268
268
  end
269
269
 
270
- # Deletes all events related to the specified user token from events metrics and analytics. To delete a personalization user profile, see [Delete a user profile](/specs/personalization#tag/profiles/operation/deleteUserProfile).
270
+ # 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](/specs/personalization#tag/profiles/operation/deleteUserProfile).
271
271
 
272
272
  # @param user_token [String] User token for which to delete all associated events. (required)
273
273
  # @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)
@@ -1,5 +1,5 @@
1
1
  # 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.
2
2
 
3
3
  module Algolia
4
- VERSION = "3.0.0".freeze
4
+ VERSION = "3.0.2".freeze
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: algolia
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - https://alg.li/support
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-14 00:00:00.000000000 Z
11
+ date: 2024-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday