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
***internal:** fix formatting script for macos ([549b415](https://github.com/Finch-API/finch-api-ruby/commit/549b415b8fbb8baf6de342de32798d3096085a3c))
21
+
22
+
23
+
### Chores
24
+
25
+
* accept all nd-json mimetype variants ([53a8863](https://github.com/Finch-API/finch-api-ruby/commit/53a8863036254bd052c47fb283c82798784859f6))
26
+
* always check if current page is empty in `next_page?` ([89f7522](https://github.com/Finch-API/finch-api-ruby/commit/89f7522c76cbf4cb79a171b842fdb9db8ca0fb1f))
27
+
***internal:** codegen related update ([15d107c](https://github.com/Finch-API/finch-api-ruby/commit/15d107cee7ff974a750f1cbfa812392ac1b7fc47))
28
+
***internal:** codegen related update ([bcaecfa](https://github.com/Finch-API/finch-api-ruby/commit/bcaecfa4b137a6a767d69ea15c77885185d8368c))
29
+
***internal:** codegen related update ([f328b3a](https://github.com/Finch-API/finch-api-ruby/commit/f328b3a5c3ea6ffeb01186ea929b4eb6f70ef1aa))
30
+
* re-export top level models under library namespace ([e8cc430](https://github.com/Finch-API/finch-api-ruby/commit/e8cc430134d053ce8e3e5d31aea2c43270eb2ffa))
31
+
* remove Gemfile.lock during bootstrap ([6a383f0](https://github.com/Finch-API/finch-api-ruby/commit/6a383f0228803c29f1a22658821311ad3239aa97))
32
+
* reorganize type aliases ([e527e5d](https://github.com/Finch-API/finch-api-ruby/commit/e527e5d5d118f2d00611a2f790e9fcc67a4794b0))
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Finch Ruby API library
2
2
3
-
The Finch Ruby library provides convenient access to the Finch REST API from any Ruby 3.1.0+ application.
3
+
The Finch Ruby library provides convenient access to the Finch REST API from any Ruby 3.2.0+ application.
4
4
5
5
It is generated with [Stainless](https://www.stainless.com/).
6
6
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
<!-- x-release-please-start-version -->
18
18
19
19
```ruby
20
-
gem "finch-api", "~> 0.1.0.pre.alpha.13"
20
+
gem "finch-api", "~> 0.1.0.pre.alpha.14"
21
21
```
22
22
23
23
<!-- x-release-please-end -->
@@ -76,7 +76,7 @@ rescue FinchAPI::Errors::APIError => e
76
76
end
77
77
```
78
78
79
-
Error codes are as followed:
79
+
Error codes are as follows:
80
80
81
81
| Cause | Error Type |
82
82
| ---------------- | -------------------------- |
@@ -191,9 +191,9 @@ Sorbet's typed enums require sub-classing of the [`T::Enum` class](https://sorbe
191
191
Since this library does not depend on `sorbet-runtime`, it uses a [`T.all` intersection type](https://sorbet.org/docs/intersection-types) with a ruby primitive type to construct a "tagged alias" instead.
192
192
193
193
```ruby
194
-
moduleFinchAPI::Models::ConnectionStatusType
194
+
moduleFinchAPI::ConnectionStatusType
195
195
# This alias aids language service driven navigation.
0 commit comments