diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d945b33..f4ef5ee2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.173.0" + ".": "1.174.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index ade5a460..6f42a9fe 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index b54306b5..c09bd013 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Gemfile.lock b/Gemfile.lock index e20a378c..eef8e69b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.173.0) + increase (1.174.0) connection_pool GEM diff --git a/README.md b/README.md index 0588bc97..b3dc7b9b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "increase", "~> 1.173.0" +gem "increase", "~> 1.174.0" ``` diff --git a/lib/increase/models/entity_update_params.rb b/lib/increase/models/entity_update_params.rb index 90e1db3b..ae43d929 100644 --- a/lib/increase/models/entity_update_params.rb +++ b/lib/increase/models/entity_update_params.rb @@ -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 @@ -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. # @@ -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. diff --git a/lib/increase/version.rb b/lib/increase/version.rb index 10791b98..377ab205 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.173.0" + VERSION = "1.174.0" end diff --git a/rbi/increase/models/entity_update_params.rbi b/rbi/increase/models/entity_update_params.rbi index 61bf10ad..5b3a2810 100644 --- a/rbi/increase/models/entity_update_params.rbi +++ b/rbi/increase/models/entity_update_params.rbi @@ -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 @@ -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) @@ -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 @@ -236,6 +248,7 @@ module Increase { address: Increase::EntityUpdateParams::Corporation::Address, email: String, + incorporation_state: String, industry_code: String, name: String } diff --git a/sig/increase/models/entity_update_params.rbs b/sig/increase/models/entity_update_params.rbs index b648ae04..8380cb06 100644 --- a/sig/increase/models/entity_update_params.rbs +++ b/sig/increase/models/entity_update_params.rbs @@ -82,6 +82,7 @@ module Increase { address: Increase::EntityUpdateParams::Corporation::Address, email: String, + incorporation_state: String, industry_code: String, name: String } @@ -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 @@ -108,6 +113,7 @@ module Increase def initialize: ( ?address: Increase::EntityUpdateParams::Corporation::Address, ?email: String, + ?incorporation_state: String, ?industry_code: String, ?name: String ) -> void @@ -115,6 +121,7 @@ module Increase def to_hash: -> { address: Increase::EntityUpdateParams::Corporation::Address, email: String, + incorporation_state: String, industry_code: String, name: String }