Skip to content

Commit 8a84596

Browse files
release: 0.1.0-alpha.12 (#143)
* chore(internal): version bump * feat(api): api update * codegen metadata * release: 0.1.0-alpha.12 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 7cae1d0 commit 8a84596

File tree

13 files changed

+33
-13
lines changed

13 files changed

+33
-13
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.11"
2+
".": "0.1.0-alpha.12"
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-ff61a38530dfae03860bceb49379e84bfc7434eeb5d2f1dc9677cb162014faf1.yml
3-
openapi_spec_hash: df3bdaf4acf575bb07767cae7ca24d69
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-46640c1b468813b828be61b1af5cb5450f9555c4c757c5a740189906a8d56672.yml
3+
openapi_spec_hash: 1d5845ae61d2c0a143db43d579b048c5
44
config_hash: 53778a0b839c4f6ad34fbba051f5e8a6

CHANGELOG.md

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

3+
## 0.1.0-alpha.12 (2025-04-18)
4+
5+
Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/Finch-API/finch-api-ruby/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
6+
7+
### Features
8+
9+
* **api:** api update ([af6d720](https://github.com/Finch-API/finch-api-ruby/commit/af6d7200af6949087dbcac88f67c486e42295b24))
10+
11+
12+
### Chores
13+
14+
* **internal:** version bump ([159b4f1](https://github.com/Finch-API/finch-api-ruby/commit/159b4f1064283eff6cd1d2ad70a1770d4cc7b391))
15+
316
## 0.1.0-alpha.11 (2025-04-12)
417

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

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
finch-api (0.1.0.pre.alpha.10)
14+
finch-api (0.1.0.pre.alpha.11)
1515
connection_pool
1616

1717
GEM

README.md

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

1919
```ruby
20-
gem "finch-api", "~> 0.1.0.pre.alpha.11"
20+
gem "finch-api", "~> 0.1.0.pre.alpha.12"
2121
```
2222

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

lib/finch_api/models/hris/company.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ class HRISCompany < FinchAPI::Internal::Type::BaseModel
5959
required :primary_email, String, nil?: true
6060

6161
# @!attribute primary_phone_number
62-
# The phone number of the main administrator on the account. Format: `XXXXXXXXXX`
62+
# The phone number of the main administrator on the account. Format: E.164, with
63+
# extension where applicable, e.g. `+NNNNNNNNNNN xExtension`
6364
#
6465
# @return [String, nil]
6566
required :primary_phone_number, String, nil?: true

lib/finch_api/models/sandbox/company_update_params.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ class CompanyUpdateParams < FinchAPI::Internal::Type::BaseModel
5757
required :primary_email, String, nil?: true
5858

5959
# @!attribute primary_phone_number
60-
# The phone number of the main administrator on the account. Format: `XXXXXXXXXX`
60+
# The phone number of the main administrator on the account. Format: E.164, with
61+
# extension where applicable, e.g. `+NNNNNNNNNNN xExtension`
6162
#
6263
# @return [String, nil]
6364
required :primary_phone_number, String, nil?: true

lib/finch_api/models/sandbox/company_update_response.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ class CompanyUpdateResponse < FinchAPI::Internal::Type::BaseModel
5353
required :primary_email, String, nil?: true
5454

5555
# @!attribute primary_phone_number
56-
# The phone number of the main administrator on the account. Format: `XXXXXXXXXX`
56+
# The phone number of the main administrator on the account. Format: E.164, with
57+
# extension where applicable, e.g. `+NNNNNNNNNNN xExtension`
5758
#
5859
# @return [String, nil]
5960
required :primary_phone_number, String, nil?: true

lib/finch_api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module FinchAPI
4-
VERSION = "0.1.0.pre.alpha.11"
4+
VERSION = "0.1.0.pre.alpha.12"
55
end

rbi/lib/finch_api/models/hris/company.rbi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ module FinchAPI
4141
sig { returns(T.nilable(String)) }
4242
attr_accessor :primary_email
4343

44-
# The phone number of the main administrator on the account. Format: `XXXXXXXXXX`
44+
# The phone number of the main administrator on the account. Format: E.164, with
45+
# extension where applicable, e.g. `+NNNNNNNNNNN xExtension`
4546
sig { returns(T.nilable(String)) }
4647
attr_accessor :primary_phone_number
4748

0 commit comments

Comments
 (0)