increase 1.194.0 → 1.195.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: 542edda1ffb9b3877443e742cdaf7f8eb4c72eb1d375cc7c1cfe8355a07b599e
4
- data.tar.gz: 2d40b8086b9914231657a017867d3a95553c15f7dda8593c49cfbb091c25e49b
3
+ metadata.gz: 45a8a01ac53ddbd4672e619fc507135cc467ed0666cb6cdcf2dafef7fb82d355
4
+ data.tar.gz: e2e3db2adcdad66e7374c31665a71f8e3c31798df6ca2d0a67260b99476f89db
5
5
  SHA512:
6
- metadata.gz: 986106c1fdd860787e1fda080723fa2ec3d879dd02ebb93ad79d6659f7119fb5b60a3bafc93cd010452ba4c0ea71d25defca70448361044d6912f5c9caa2780f
7
- data.tar.gz: 10560118e481a70707784a32e803dfa478136eb2f110723936592f0decd1e5c6e2d2ef33499c05a9acf46da18fe843e1b9b1ace906aaa753027a1907cfe89bb1
6
+ metadata.gz: 74991df9eb3997c07685e4e8f0a50f9bd485074566ff78be8e80e931e7ccf62103eeedab0de6a71a5abbbedcc5e5bbec78a6f8291becd8e1eee74678b9ce8e8c
7
+ data.tar.gz: 3c35ae591fe60fd477e037d47d4778e02b3486366f6eba115aa36c6c27c2fcbe5f798f26680f2d676be7c58708da3a6059a445860e2cadfea068c26780fa203f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.195.0 (2026-02-03)
4
+
5
+ Full Changelog: [v1.194.0...v1.195.0](https://github.com/Increase/increase-ruby/compare/v1.194.0...v1.195.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([46e1324](https://github.com/Increase/increase-ruby/commit/46e13245b8d293cdcaf0b3f52dd2853b17c1bff9))
10
+
3
11
  ## 1.194.0 (2026-02-02)
4
12
 
5
13
  Full Changelog: [v1.193.0...v1.194.0](https://github.com/Increase/increase-ruby/compare/v1.193.0...v1.194.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.194.0"
18
+ gem "increase", "~> 1.195.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -115,7 +115,13 @@ module Increase
115
115
  # @return [String, nil]
116
116
  optional :name, String
117
117
 
118
- # @!method initialize(address: nil, email: nil, incorporation_state: nil, industry_code: nil, name: nil)
118
+ # @!attribute tax_identifier
119
+ # The Employer Identification Number (EIN) for the corporation.
120
+ #
121
+ # @return [String, nil]
122
+ optional :tax_identifier, String
123
+
124
+ # @!method initialize(address: nil, email: nil, incorporation_state: nil, industry_code: nil, name: nil, tax_identifier: nil)
119
125
  # Some parameter documentations has been truncated, see
120
126
  # {Increase::Models::EntityUpdateParams::Corporation} for more details.
121
127
  #
@@ -131,6 +137,8 @@ module Increase
131
137
  # @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
132
138
  #
133
139
  # @param name [String] The legal name of the corporation.
140
+ #
141
+ # @param tax_identifier [String] The Employer Identification Number (EIN) for the corporation.
134
142
 
135
143
  # @see Increase::Models::EntityUpdateParams::Corporation#address
136
144
  class Address < Increase::Internal::Type::BaseModel
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.194.0"
4
+ VERSION = "1.195.0"
5
5
  end
@@ -212,6 +212,13 @@ module Increase
212
212
  sig { params(name: String).void }
213
213
  attr_writer :name
214
214
 
215
+ # The Employer Identification Number (EIN) for the corporation.
216
+ sig { returns(T.nilable(String)) }
217
+ attr_reader :tax_identifier
218
+
219
+ sig { params(tax_identifier: String).void }
220
+ attr_writer :tax_identifier
221
+
215
222
  # Details of the corporation entity to update. If you specify this parameter and
216
223
  # the entity is not a corporation, the request will fail.
217
224
  sig do
@@ -220,7 +227,8 @@ module Increase
220
227
  email: String,
221
228
  incorporation_state: String,
222
229
  industry_code: String,
223
- name: String
230
+ name: String,
231
+ tax_identifier: String
224
232
  ).returns(T.attached_class)
225
233
  end
226
234
  def self.new(
@@ -239,7 +247,9 @@ module Increase
239
247
  # [here](https://increase.com/documentation/data-dictionary#north-american-industry-classification-system-codes).
240
248
  industry_code: nil,
241
249
  # The legal name of the corporation.
242
- name: nil
250
+ name: nil,
251
+ # The Employer Identification Number (EIN) for the corporation.
252
+ tax_identifier: nil
243
253
  )
244
254
  end
245
255
 
@@ -250,7 +260,8 @@ module Increase
250
260
  email: String,
251
261
  incorporation_state: String,
252
262
  industry_code: String,
253
- name: String
263
+ name: String,
264
+ tax_identifier: String
254
265
  }
255
266
  )
256
267
  end
@@ -84,7 +84,8 @@ module Increase
84
84
  email: String,
85
85
  incorporation_state: String,
86
86
  industry_code: String,
87
- name: String
87
+ name: String,
88
+ tax_identifier: String
88
89
  }
89
90
 
90
91
  class Corporation < Increase::Internal::Type::BaseModel
@@ -110,12 +111,17 @@ module Increase
110
111
 
111
112
  def name=: (String) -> String
112
113
 
114
+ attr_reader tax_identifier: String?
115
+
116
+ def tax_identifier=: (String) -> String
117
+
113
118
  def initialize: (
114
119
  ?address: Increase::EntityUpdateParams::Corporation::Address,
115
120
  ?email: String,
116
121
  ?incorporation_state: String,
117
122
  ?industry_code: String,
118
- ?name: String
123
+ ?name: String,
124
+ ?tax_identifier: String
119
125
  ) -> void
120
126
 
121
127
  def to_hash: -> {
@@ -123,7 +129,8 @@ module Increase
123
129
  email: String,
124
130
  incorporation_state: String,
125
131
  industry_code: String,
126
- name: String
132
+ name: String,
133
+ tax_identifier: String
127
134
  }
128
135
 
129
136
  type address =
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.194.0
4
+ version: 1.195.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-02 00:00:00.000000000 Z
11
+ date: 2026-02-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi