You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -51,12 +51,12 @@ For full documentation, visit the **[Algolia Ruby API Client](https://www.algoli
51
51
52
52
## ❓ Troubleshooting
53
53
54
-
Encountering an issue? Before reaching out to support, we recommend heading to our [FAQ](https://www.algolia.com/doc/api-client/troubleshooting/faq/ruby/) where you will find answers for the most common issues and gotchas with the client.
54
+
Encountering an issue? Before reaching out to support, we recommend heading to our [FAQ](https://www.algolia.com/doc/api-client/troubleshooting/faq/ruby/) where you will find answers for the most common issues and gotchas with the client. You can also open [a GitHub issue](https://github.com/algolia/api-clients-automation/issues/new?assignees=&labels=&projects=&template=Bug_report.md)
55
55
56
-
## Upgrade from V1 to V2
56
+
## Contributing
57
57
58
-
If you were using the v1 and wish to update to v2, please follow our [Upgrade Guide](upgrade_guide.md)
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).
59
59
60
60
## 📄 License
61
61
62
-
Algolia Ruby API Client is an open-sourced software licensed under the [MIT license](LICENSE.md).
62
+
The Algolia Ruby API Client is an open-sourced software licensed under the [MIT license](LICENSE).
# Helper: Saves the given array of objects in the given index. The `chunked_batch` helper is used under the hood, which creates a `batch` requests with at most 1000 objects in it.
3182
+
#
3183
+
# @param index_name [String]: The `index_name` to save `objects` in.
3184
+
# @param objects [Array]: The array of `objects` to store in the given Algolia `indexName`.
3185
+
# @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)
# Helper: Deletes every records for the given objectIDs. The `chunked_batch` helper is used under the hood, which creates a `batch` requests with at most 1000 objectIDs in it.
3201
+
#
3202
+
# @param index_name [String]: The `index_name` to delete `object_ids` from.
3203
+
# @param object_ids [Array]: The object_ids to delete.
3204
+
# @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)
# Helper: Replaces object content of all the given objects according to their respective `object_id` field. The `chunkedBatch` helper is used under the hood, which creates a `batch` requests with at most 1000 objects in it.
3220
+
#
3221
+
# @param index_name [String]: The `index_name` to delete `object_ids` from.
3222
+
# @param objects [Array]: The objects to partially update.
3223
+
# @param create_if_not_exists [Boolean]: To be provided if non-existing objects are passed, otherwise, the call will fail.
3224
+
# @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)
0 commit comments