increase 1.173.0 → 1.174.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0a47f29c8c083c113f89f67ec8c1dfea3dd86be84076ef5f769012e0babb1d3
4
- data.tar.gz: c66505dd6528012238e2f15e90eae4611b50b9bc9c6bac98a7c19a1ba4c51d18
3
+ metadata.gz: 96fa20503e5cfe5b4a1f193458f95958010647f3b467d97bde8ddbd611263273
4
+ data.tar.gz: b56b0cdc41d5ce1936413ba3c4077218cc7d482c75f2d2342b7bb48d10197ce2
5
5
  SHA512:
6
- metadata.gz: d4b56c0373cedcbf3c6f278a83ed2effb703b9066dde7c7395daecec956bb7c49e5601ce6c9fad484b8cf637e23e021b20ab7fb4d394391ae65f9c1d12fa9e27
7
- data.tar.gz: ceca78ac12c8dde3d14744352f4a1ce0b85cbba96ce5412051cc6f53a31b735c3fda99576dddf418af924e2ad68a64077a6d84d51c7877941af6d57b1e639b86
6
+ metadata.gz: c1fceaf28d19e02fbab4efbee2ca3bf16828148a5bfd85d149c02eec5181424a39e9eba80d28f273cb8315d01cd70b9b0671eb29f2dfae301cef6f7687f3b509
7
+ data.tar.gz: dd5cf027c8cc65fc48670e9f08f8b24a5392033edcd082cf088be3711e854a76e5955bc623622bf8a0be4206ed1cf4c2177ebc604a25c297ed0d0b7d261cfeb0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.174.0 (2026-01-07)
4
+
5
+ Full Changelog: [v1.173.0...v1.174.0](https://github.com/Increase/increase-ruby/compare/v1.173.0...v1.174.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([4427e10](https://github.com/Increase/increase-ruby/commit/4427e10c4ce94f595c01781e0029a6062a63b2f4))
10
+
3
11
  ## 1.173.0 (2026-01-07)
4
12
 
5
13
  Full Changelog: [v1.172.0...v1.173.0](https://github.com/Increase/increase-ruby/compare/v1.172.0...v1.173.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.173.0"
18
+ gem "increase", "~> 1.174.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -93,6 +93,13 @@ module Increase
93
93
  # @return [String, nil]
94
94
  optional :email, String
95
95
 
96
+ # @!attribute incorporation_state
97
+ # The two-letter United States Postal Service (USPS) abbreviation for the
98
+ # corporation's state of incorporation.
99
+ #
100
+ # @return [String, nil]
101
+ optional :incorporation_state, String
102
+
96
103
  # @!attribute industry_code
97
104
  # The North American Industry Classification System (NAICS) code for the
98
105
  # corporation's primary line of business. This is a number, like `5132` for
@@ -108,7 +115,7 @@ module Increase
108
115
  # @return [String, nil]
109
116
  optional :name, String
110
117
 
111
- # @!method initialize(address: nil, email: nil, industry_code: nil, name: nil)
118
+ # @!method initialize(address: nil, email: nil, incorporation_state: nil, industry_code: nil, name: nil)
112
119
  # Some parameter documentations has been truncated, see
113
120
  # {Increase::Models::EntityUpdateParams::Corporation} for more details.
114
121
  #
@@ -119,6 +126,8 @@ module Increase
119
126
  #
120
127
  # @param email [String] An email address for the business. Not every program requires an email for submi
121
128
  #
129
+ # @param incorporation_state [String] The two-letter United States Postal Service (USPS) abbreviation for the corporat
130
+ #
122
131
  # @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
123
132
  #
124
133
  # @param name [String] The legal name of the corporation.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.173.0"
4
+ VERSION = "1.174.0"
5
5
  end
@@ -187,6 +187,14 @@ module Increase
187
187
  sig { params(email: String).void }
188
188
  attr_writer :email
189
189
 
190
+ # The two-letter United States Postal Service (USPS) abbreviation for the
191
+ # corporation's state of incorporation.
192
+ sig { returns(T.nilable(String)) }
193
+ attr_reader :incorporation_state
194
+
195
+ sig { params(incorporation_state: String).void }
196
+ attr_writer :incorporation_state
197
+
190
198
  # The North American Industry Classification System (NAICS) code for the
191
199
  # corporation's primary line of business. This is a number, like `5132` for
192
200
  # `Software Publishers`. A full list of classification codes is available
@@ -210,6 +218,7 @@ module Increase
210
218
  params(
211
219
  address: Increase::EntityUpdateParams::Corporation::Address::OrHash,
212
220
  email: String,
221
+ incorporation_state: String,
213
222
  industry_code: String,
214
223
  name: String
215
224
  ).returns(T.attached_class)
@@ -221,6 +230,9 @@ module Increase
221
230
  # An email address for the business. Not every program requires an email for
222
231
  # submitted Entities.
223
232
  email: nil,
233
+ # The two-letter United States Postal Service (USPS) abbreviation for the
234
+ # corporation's state of incorporation.
235
+ incorporation_state: nil,
224
236
  # The North American Industry Classification System (NAICS) code for the
225
237
  # corporation's primary line of business. This is a number, like `5132` for
226
238
  # `Software Publishers`. A full list of classification codes is available
@@ -236,6 +248,7 @@ module Increase
236
248
  {
237
249
  address: Increase::EntityUpdateParams::Corporation::Address,
238
250
  email: String,
251
+ incorporation_state: String,
239
252
  industry_code: String,
240
253
  name: String
241
254
  }
@@ -82,6 +82,7 @@ module Increase
82
82
  {
83
83
  address: Increase::EntityUpdateParams::Corporation::Address,
84
84
  email: String,
85
+ incorporation_state: String,
85
86
  industry_code: String,
86
87
  name: String
87
88
  }
@@ -97,6 +98,10 @@ module Increase
97
98
 
98
99
  def email=: (String) -> String
99
100
 
101
+ attr_reader incorporation_state: String?
102
+
103
+ def incorporation_state=: (String) -> String
104
+
100
105
  attr_reader industry_code: String?
101
106
 
102
107
  def industry_code=: (String) -> String
@@ -108,6 +113,7 @@ module Increase
108
113
  def initialize: (
109
114
  ?address: Increase::EntityUpdateParams::Corporation::Address,
110
115
  ?email: String,
116
+ ?incorporation_state: String,
111
117
  ?industry_code: String,
112
118
  ?name: String
113
119
  ) -> void
@@ -115,6 +121,7 @@ module Increase
115
121
  def to_hash: -> {
116
122
  address: Increase::EntityUpdateParams::Corporation::Address,
117
123
  email: String,
124
+ incorporation_state: String,
118
125
  industry_code: String,
119
126
  name: String
120
127
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.173.0
4
+ version: 1.174.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase