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 @@
{
".": "1.173.0"
".": "1.174.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 227
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9e8b4907003e0149ea10d8c95b2facfbc011f366cea40fe86b5f02940e68998d.yml
openapi_spec_hash: e93ee5c48421038334b8961b303465d6
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-0281c1d774b1853b7b09bbce88b8d6e0301179b68d53627c5940edd7d2f8b180.yml
openapi_spec_hash: e22a9d6a4f0f32976d0ac9dd7e6d7dd0
config_hash: ca52ca9a2968f330339fd50c1a386e05
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.174.0 (2026-01-07)

Full Changelog: [v1.173.0...v1.174.0](https://github.com/Increase/increase-ruby/compare/v1.173.0...v1.174.0)

### Features

* **api:** api update ([4427e10](https://github.com/Increase/increase-ruby/commit/4427e10c4ce94f595c01781e0029a6062a63b2f4))

## 1.173.0 (2026-01-07)

Full Changelog: [v1.172.0...v1.173.0](https://github.com/Increase/increase-ruby/compare/v1.172.0...v1.173.0)
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:
increase (1.173.0)
increase (1.174.0)
connection_pool

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

```ruby
gem "increase", "~> 1.173.0"
gem "increase", "~> 1.174.0"
```

<!-- x-release-please-end -->
Expand Down
11 changes: 10 additions & 1 deletion lib/increase/models/entity_update_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,13 @@ class Corporation < Increase::Internal::Type::BaseModel
# @return [String, nil]
optional :email, String

# @!attribute incorporation_state
# The two-letter United States Postal Service (USPS) abbreviation for the
# corporation's state of incorporation.
#
# @return [String, nil]
optional :incorporation_state, String

# @!attribute industry_code
# The North American Industry Classification System (NAICS) code for the
# corporation's primary line of business. This is a number, like `5132` for
Expand All @@ -108,7 +115,7 @@ class Corporation < Increase::Internal::Type::BaseModel
# @return [String, nil]
optional :name, String

# @!method initialize(address: nil, email: nil, industry_code: nil, name: nil)
# @!method initialize(address: nil, email: nil, incorporation_state: nil, industry_code: nil, name: nil)
# Some parameter documentations has been truncated, see
# {Increase::Models::EntityUpdateParams::Corporation} for more details.
#
Expand All @@ -119,6 +126,8 @@ class Corporation < Increase::Internal::Type::BaseModel
#
# @param email [String] An email address for the business. Not every program requires an email for submi
#
# @param incorporation_state [String] The two-letter United States Postal Service (USPS) abbreviation for the corporat
#
# @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
#
# @param name [String] The legal name of the corporation.
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "1.173.0"
VERSION = "1.174.0"
end
13 changes: 13 additions & 0 deletions rbi/increase/models/entity_update_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,14 @@ module Increase
sig { params(email: String).void }
attr_writer :email

# The two-letter United States Postal Service (USPS) abbreviation for the
# corporation's state of incorporation.
sig { returns(T.nilable(String)) }
attr_reader :incorporation_state

sig { params(incorporation_state: String).void }
attr_writer :incorporation_state

# The North American Industry Classification System (NAICS) code for the
# corporation's primary line of business. This is a number, like `5132` for
# `Software Publishers`. A full list of classification codes is available
Expand All @@ -210,6 +218,7 @@ module Increase
params(
address: Increase::EntityUpdateParams::Corporation::Address::OrHash,
email: String,
incorporation_state: String,
industry_code: String,
name: String
).returns(T.attached_class)
Expand All @@ -221,6 +230,9 @@ module Increase
# An email address for the business. Not every program requires an email for
# submitted Entities.
email: nil,
# The two-letter United States Postal Service (USPS) abbreviation for the
# corporation's state of incorporation.
incorporation_state: nil,
# The North American Industry Classification System (NAICS) code for the
# corporation's primary line of business. This is a number, like `5132` for
# `Software Publishers`. A full list of classification codes is available
Expand All @@ -236,6 +248,7 @@ module Increase
{
address: Increase::EntityUpdateParams::Corporation::Address,
email: String,
incorporation_state: String,
industry_code: String,
name: String
}
Expand Down
7 changes: 7 additions & 0 deletions sig/increase/models/entity_update_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ module Increase
{
address: Increase::EntityUpdateParams::Corporation::Address,
email: String,
incorporation_state: String,
industry_code: String,
name: String
}
Expand All @@ -97,6 +98,10 @@ module Increase

def email=: (String) -> String

attr_reader incorporation_state: String?

def incorporation_state=: (String) -> String

attr_reader industry_code: String?

def industry_code=: (String) -> String
Expand All @@ -108,13 +113,15 @@ module Increase
def initialize: (
?address: Increase::EntityUpdateParams::Corporation::Address,
?email: String,
?incorporation_state: String,
?industry_code: String,
?name: String
) -> void

def to_hash: -> {
address: Increase::EntityUpdateParams::Corporation::Address,
email: String,
incorporation_state: String,
industry_code: String,
name: String
}
Expand Down