Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.46"
".": "0.1.0-alpha.47"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 48
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-b8ede21f99c37f419124818376c550eae675f760b4bdcec3808bf5e77bb09d9b.yml
openapi_spec_hash: 3d2d4135fe142302f043ac1fbff2cd22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch/finch-3cd1346947fabfca2aa9c6f821170c8d945a82667fb20a15644d5c77f8e98c10.yml
openapi_spec_hash: 642e04e90d37c0e4875d154abd06eb54
config_hash: 9ae56f40cec7304896138bfad5caf748
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-alpha.47 (2026-07-01)

Full Changelog: [v0.1.0-alpha.46...v0.1.0-alpha.47](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.46...v0.1.0-alpha.47)

### Features

* **api:** api update ([7daf44a](https://github.com/Finch-API/finch-api-ruby/commit/7daf44ad7a23d25ef1a63499dd067be62dcdc0fd))

## 0.1.0-alpha.46 (2026-06-29)

Full Changelog: [v0.1.0-alpha.45...v0.1.0-alpha.46](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.45...v0.1.0-alpha.46)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
finch-api (0.1.0.pre.alpha.46)
finch-api (0.1.0.pre.alpha.47)
cgi
connection_pool

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "finch-api", "~> 0.1.0.pre.alpha.46"
gem "finch-api", "~> 0.1.0.pre.alpha.47"
```

<!-- x-release-please-end -->
Expand Down
4 changes: 2 additions & 2 deletions lib/finch_api/models/hris/pay_statement.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class Earning < FinchAPI::Internal::Type::BaseModel
required :hours, Float, nil?: true

# @!attribute name
# The exact name of the deduction from the pay statement.
# The exact name of the earning from the pay statement.
#
# @return [String, nil]
required :name, String, nil?: true
Expand All @@ -139,7 +139,7 @@ class Earning < FinchAPI::Internal::Type::BaseModel
#
# @param hours [Float, nil] The number of hours associated with this earning. (For salaried employees, this
#
# @param name [String, nil] The exact name of the deduction from the pay statement.
# @param name [String, nil] The exact name of the earning from the pay statement.
#
# @param type [Symbol, FinchAPI::Models::HRIS::PayStatement::Earning::Type, nil] The type of earning.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/finch_api/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module FinchAPI
VERSION = "0.1.0.pre.alpha.46"
VERSION = "0.1.0.pre.alpha.47"
end
4 changes: 2 additions & 2 deletions rbi/finch_api/models/hris/pay_statement.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ module FinchAPI
sig { returns(T.nilable(Float)) }
attr_accessor :hours

# The exact name of the deduction from the pay statement.
# The exact name of the earning from the pay statement.
sig { returns(T.nilable(String)) }
attr_accessor :name

Expand Down Expand Up @@ -234,7 +234,7 @@ module FinchAPI
# The number of hours associated with this earning. (For salaried employees, this
# could be hours per pay period, `0` or `null`, depending on the provider).
hours:,
# The exact name of the deduction from the pay statement.
# The exact name of the earning from the pay statement.
name:,
# The type of earning.
type:,
Expand Down