Skip to content

Commit bbf5ebb

Browse files
release: 0.1.0-alpha.41 (#174)
* feat(api): api update * chore: move `cgi` into dependencies for ruby 4 * chore: fix typo in descriptions * release: 0.1.0-alpha.41 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 39ec8a9 commit bbf5ebb

32 files changed

+95
-111
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.40"
2+
".": "0.1.0-alpha.41"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 46
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-ded87cb73affcaff9cf779d9cfd119a4026cfc1757b39be95d933edea48a0328.yml
3-
openapi_spec_hash: 0e6394b222fc68d7607114e70b72d23e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-46f433f34d440aa1dfcc48cc8d822c598571b68be2f723ec99e1b4fba6c13b1e.yml
3+
openapi_spec_hash: 5b5cd728776723ac773900f7e8a32c05
44
config_hash: 0892e2e0eeb0343a022afa62e9080dd1

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 0.1.0-alpha.41 (2026-01-13)
4+
5+
Full Changelog: [v0.1.0-alpha.40...v0.1.0-alpha.41](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.40...v0.1.0-alpha.41)
6+
7+
### Features
8+
9+
* **api:** api update ([c7cf406](https://github.com/Finch-API/finch-api-ruby/commit/c7cf4068b9cff10eb1b8c34ee507375a31bcc412))
10+
11+
12+
### Chores
13+
14+
* fix typo in descriptions ([6ea1ae9](https://github.com/Finch-API/finch-api-ruby/commit/6ea1ae93b192ad7ec8a54e9881665decc46a716b))
15+
* move `cgi` into dependencies for ruby 4 ([05f9567](https://github.com/Finch-API/finch-api-ruby/commit/05f95676c9102c184d4d157c055f4387f42dc66b))
16+
317
## 0.1.0-alpha.40 (2026-01-05)
418

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

Gemfile.lock

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
finch-api (0.1.0.pre.alpha.40)
14+
finch-api (0.1.0.pre.alpha.41)
15+
cgi
1516
connection_pool
1617

1718
GEM
@@ -42,6 +43,7 @@ GEM
4243
base64 (0.3.0)
4344
benchmark (0.5.0)
4445
bigdecimal (3.3.1)
46+
cgi (0.5.1)
4547
concurrent-ruby (1.3.5)
4648
connection_pool (2.5.4)
4749
console (1.34.2)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To use this gem, install via Bundler by adding the following to your application
2626
<!-- x-release-please-start-version -->
2727

2828
```ruby
29-
gem "finch-api", "~> 0.1.0.pre.alpha.40"
29+
gem "finch-api", "~> 0.1.0.pre.alpha.41"
3030
```
3131

3232
<!-- x-release-please-end -->

finch_api.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@ Gem::Specification.new do |s|
2424
".ignore"
2525
]
2626
s.extra_rdoc_files = ["README.md"]
27+
s.add_dependency "cgi"
2728
s.add_dependency "connection_pool"
2829
end

lib/finch_api/models/hris/employment_data.rb

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ class UnionMember0 < FinchAPI::Internal::Type::BaseModel
3636
required :employment, -> { FinchAPI::HRIS::EmploymentData::UnionMember0::Employment }, nil?: true
3737

3838
# @!attribute employment_status
39-
# The detailed employment status of the individual. Available options: `active`,
40-
# `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
39+
# The detailed employment status of the individual.
4140
#
4241
# @return [Symbol, FinchAPI::Models::HRIS::EmploymentData::UnionMember0::EmploymentStatus, nil]
4342
required :employment_status,
@@ -154,7 +153,7 @@ class UnionMember0 < FinchAPI::Internal::Type::BaseModel
154153
#
155154
# @param employment [FinchAPI::Models::HRIS::EmploymentData::UnionMember0::Employment, nil] The employment object.
156155
#
157-
# @param employment_status [Symbol, FinchAPI::Models::HRIS::EmploymentData::UnionMember0::EmploymentStatus, nil] The detailed employment status of the individual. Available options: `active`, `
156+
# @param employment_status [Symbol, FinchAPI::Models::HRIS::EmploymentData::UnionMember0::EmploymentStatus, nil] The detailed employment status of the individual.
158157
#
159158
# @param end_date [String, nil]
160159
#
@@ -264,8 +263,7 @@ module Type
264263
end
265264
end
266265

267-
# The detailed employment status of the individual. Available options: `active`,
268-
# `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
266+
# The detailed employment status of the individual.
269267
#
270268
# @see FinchAPI::Models::HRIS::EmploymentData::UnionMember0#employment_status
271269
module EmploymentStatus

lib/finch_api/models/hris/payment_list_params.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ class PaymentListParams < FinchAPI::Internal::Type::BaseModel
1010

1111
# @!attribute end_date
1212
# The end date to retrieve payments by a company (inclusive) in `YYYY-MM-DD`
13-
# format.
13+
# format. Filters payments by their **pay_date** field.
1414
#
1515
# @return [Date]
1616
required :end_date, Date
1717

1818
# @!attribute start_date
1919
# The start date to retrieve payments by a company (inclusive) in `YYYY-MM-DD`
20-
# format.
20+
# format. Filters payments by their **pay_date** field.
2121
#
2222
# @return [Date]
2323
required :start_date, Date

lib/finch_api/models/sandbox/directory_create_params.rb

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ class Body < FinchAPI::Internal::Type::BaseModel
6969
optional :employment, -> { FinchAPI::Sandbox::DirectoryCreateParams::Body::Employment }, nil?: true
7070

7171
# @!attribute employment_status
72-
# The detailed employment status of the individual. Available options: `active`,
73-
# `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
72+
# The detailed employment status of the individual.
7473
#
7574
# @return [Symbol, FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::EmploymentStatus, nil]
7675
optional :employment_status,
@@ -225,7 +224,7 @@ class Body < FinchAPI::Internal::Type::BaseModel
225224
#
226225
# @param employment [FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::Employment, nil] The employment object.
227226
#
228-
# @param employment_status [Symbol, FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::EmploymentStatus, nil] The detailed employment status of the individual. Available options: `active`, `
227+
# @param employment_status [Symbol, FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::EmploymentStatus, nil] The detailed employment status of the individual.
229228
#
230229
# @param encrypted_ssn [String, nil] Social Security Number of the individual in **encrypted** format. This field is
231230
#
@@ -392,8 +391,7 @@ module Type
392391
end
393392
end
394393

395-
# The detailed employment status of the individual. Available options: `active`,
396-
# `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
394+
# The detailed employment status of the individual.
397395
#
398396
# @see FinchAPI::Models::Sandbox::DirectoryCreateParams::Body#employment_status
399397
module EmploymentStatus

lib/finch_api/models/sandbox/employment_update_params.rb

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ class EmploymentUpdateParams < FinchAPI::Internal::Type::BaseModel
3939
optional :employment, -> { FinchAPI::Sandbox::EmploymentUpdateParams::Employment }, nil?: true
4040

4141
# @!attribute employment_status
42-
# The detailed employment status of the individual. Available options: `active`,
43-
# `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
42+
# The detailed employment status of the individual.
4443
#
4544
# @return [Symbol, FinchAPI::Models::Sandbox::EmploymentUpdateParams::EmploymentStatus, nil]
4645
optional :employment_status,
@@ -137,7 +136,7 @@ class EmploymentUpdateParams < FinchAPI::Internal::Type::BaseModel
137136
#
138137
# @param employment [FinchAPI::Models::Sandbox::EmploymentUpdateParams::Employment, nil] The employment object.
139138
#
140-
# @param employment_status [Symbol, FinchAPI::Models::Sandbox::EmploymentUpdateParams::EmploymentStatus, nil] The detailed employment status of the individual. Available options: `active`, `
139+
# @param employment_status [Symbol, FinchAPI::Models::Sandbox::EmploymentUpdateParams::EmploymentStatus, nil] The detailed employment status of the individual.
141140
#
142141
# @param end_date [String, nil]
143142
#
@@ -257,8 +256,7 @@ module Type
257256
end
258257
end
259258

260-
# The detailed employment status of the individual. Available options: `active`,
261-
# `deceased`, `leave`, `onboarding`, `prehire`, `retired`, `terminated`.
259+
# The detailed employment status of the individual.
262260
module EmploymentStatus
263261
extend FinchAPI::Internal::Type::Enum
264262

0 commit comments

Comments
 (0)