increase 1.319.0 → 1.321.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: 326d68761b5be42888931ea2e369478c2c129b05e1d3bfeb929583a7f5011afb
4
- data.tar.gz: aae841f048be774fdbc28713a7945abf55867a184a16286934cf8b0a5481c4b4
3
+ metadata.gz: 3387fe4a5b134ca2960b21a0a886e54cf48423c277d0fa4aa0870d58e96ccfb9
4
+ data.tar.gz: 4e404e48846c5ec4fc9aa1d7033b776417222032cdd097ba9a1c5c126dc37edc
5
5
  SHA512:
6
- metadata.gz: 61c1bf46d128fd078ac55160e456a66c99c43bf60431f6e2a58a8ee8ba9171d8e894e3348c2eccbf6939a55212ea7c391f0889a4d637b702c4db23265be0d77d
7
- data.tar.gz: 229e0987da2dc6cab3c48170632a85942d0f3be72a96a41fd9d59edb92505194f1cf23aabf62b3a06844018df10bb6a031f61d34149d5c9d39a9dc2b9f70167c
6
+ metadata.gz: 378c816e56cc2958bfc3460ad0977c45ce740719db35968832516ab809291d2077c26dc9fe2ea6cf1d03c30b43d84533ef0a6c17d3c82a83fdd99c3686fc5bb9
7
+ data.tar.gz: 5373f90a3597363d95af1fd804a63cff4bd39849143858f3334aeab5d7fd5e5aaa585a07423b8a9ec55302f85ade6e710a3faa1663d3258153835f029c2ea9d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.321.0 (2026-05-04)
4
+
5
+ Full Changelog: [v1.320.0...v1.321.0](https://github.com/Increase/increase-ruby/compare/v1.320.0...v1.321.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a7d9172](https://github.com/Increase/increase-ruby/commit/a7d9172c1e5d3814495bd467c6acc71d4988dd12))
10
+
11
+ ## 1.320.0 (2026-05-02)
12
+
13
+ Full Changelog: [v1.319.0...v1.320.0](https://github.com/Increase/increase-ruby/compare/v1.319.0...v1.320.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([41332d8](https://github.com/Increase/increase-ruby/commit/41332d8e1c14fb7fc4c8b36a088ac3a1924cb8dc))
18
+
3
19
  ## 1.319.0 (2026-05-01)
4
20
 
5
21
  Full Changelog: [v1.318.0...v1.319.0](https://github.com/Increase/increase-ruby/compare/v1.318.0...v1.319.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.319.0"
18
+ gem "increase", "~> 1.321.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -96,7 +96,7 @@ When the library is unable to connect to the API, or if the API returns a non-su
96
96
 
97
97
  ```ruby
98
98
  begin
99
- account = increase.accounts.create(name: "New Account!")
99
+ account = increase.accounts.create(name: "Oops")
100
100
  rescue Increase::Errors::APIConnectionError => e
101
101
  puts("The server could not be reached")
102
102
  puts(e.cause) # an underlying Exception, likely raised within `net/http`
@@ -200,7 +200,8 @@ module Increase
200
200
  optional :industry_code, String
201
201
 
202
202
  # @!attribute website
203
- # The website of the corporation.
203
+ # A website for the business. Not every program requires a website for submitted
204
+ # Entities.
204
205
  #
205
206
  # @return [String, nil]
206
207
  optional :website, String
@@ -228,7 +229,7 @@ module Increase
228
229
  #
229
230
  # @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
230
231
  #
231
- # @param website [String] The website of the corporation.
232
+ # @param website [String] A website for the business. Not every program requires a website for submitted E
232
233
 
233
234
  # @see Increase::Models::EntityCreateParams::Corporation#address
234
235
  class Address < Increase::Internal::Type::BaseModel
@@ -773,7 +774,8 @@ module Increase
773
774
  required :tax_identifier, String
774
775
 
775
776
  # @!attribute website
776
- # The website of the government authority.
777
+ # A website for the government authority. Not every program requires a website for
778
+ # submitted Entities.
777
779
  #
778
780
  # @return [String, nil]
779
781
  optional :website, String
@@ -795,7 +797,7 @@ module Increase
795
797
  #
796
798
  # @param tax_identifier [String] The Employer Identification Number (EIN) for the government authority. Submit ni
797
799
  #
798
- # @param website [String] The website of the government authority.
800
+ # @param website [String] A website for the government authority. Not every program requires a website for
799
801
 
800
802
  # @see Increase::Models::EntityCreateParams::GovernmentAuthority#address
801
803
  class Address < Increase::Internal::Type::BaseModel
@@ -140,7 +140,14 @@ module Increase
140
140
  # @return [String, nil]
141
141
  optional :name, String
142
142
 
143
- # @!method initialize(address: nil, email: nil, incorporation_state: nil, industry_code: nil, legal_identifier: nil, name: nil)
143
+ # @!attribute website
144
+ # A website for the business. Not every program requires a website for submitted
145
+ # Entities.
146
+ #
147
+ # @return [String, nil]
148
+ optional :website, String
149
+
150
+ # @!method initialize(address: nil, email: nil, incorporation_state: nil, industry_code: nil, legal_identifier: nil, name: nil, website: nil)
144
151
  # Some parameter documentations has been truncated, see
145
152
  # {Increase::Models::EntityUpdateParams::Corporation} for more details.
146
153
  #
@@ -158,6 +165,8 @@ module Increase
158
165
  # @param legal_identifier [Increase::Models::EntityUpdateParams::Corporation::LegalIdentifier] The legal identifier of the corporation. This is usually the Employer Identifica
159
166
  #
160
167
  # @param name [String] The legal name of the corporation.
168
+ #
169
+ # @param website [String] A website for the business. Not every program requires a website for submitted E
161
170
 
162
171
  # @see Increase::Models::EntityUpdateParams::Corporation#address
163
172
  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.319.0"
4
+ VERSION = "1.321.0"
5
5
  end
@@ -371,7 +371,8 @@ module Increase
371
371
  sig { params(industry_code: String).void }
372
372
  attr_writer :industry_code
373
373
 
374
- # The website of the corporation.
374
+ # A website for the business. Not every program requires a website for submitted
375
+ # Entities.
375
376
  sig { returns(T.nilable(String)) }
376
377
  attr_reader :website
377
378
 
@@ -426,7 +427,8 @@ module Increase
426
427
  # `Software Publishers`. A full list of classification codes is available
427
428
  # [here](https://increase.com/documentation/data-dictionary#north-american-industry-classification-system-codes).
428
429
  industry_code: nil,
429
- # The website of the corporation.
430
+ # A website for the business. Not every program requires a website for submitted
431
+ # Entities.
430
432
  website: nil
431
433
  )
432
434
  end
@@ -1455,7 +1457,8 @@ module Increase
1455
1457
  sig { returns(String) }
1456
1458
  attr_accessor :tax_identifier
1457
1459
 
1458
- # The website of the government authority.
1460
+ # A website for the government authority. Not every program requires a website for
1461
+ # submitted Entities.
1459
1462
  sig { returns(T.nilable(String)) }
1460
1463
  attr_reader :website
1461
1464
 
@@ -1492,7 +1495,8 @@ module Increase
1492
1495
  # The Employer Identification Number (EIN) for the government authority. Submit
1493
1496
  # nine digits with no dashes or other separators.
1494
1497
  tax_identifier:,
1495
- # The website of the government authority.
1498
+ # A website for the government authority. Not every program requires a website for
1499
+ # submitted Entities.
1496
1500
  website: nil
1497
1501
  )
1498
1502
  end
@@ -263,6 +263,14 @@ module Increase
263
263
  sig { params(name: String).void }
264
264
  attr_writer :name
265
265
 
266
+ # A website for the business. Not every program requires a website for submitted
267
+ # Entities.
268
+ sig { returns(T.nilable(String)) }
269
+ attr_reader :website
270
+
271
+ sig { params(website: String).void }
272
+ attr_writer :website
273
+
266
274
  # Details of the corporation entity to update. If you specify this parameter and
267
275
  # the entity is not a corporation, the request will fail.
268
276
  sig do
@@ -273,7 +281,8 @@ module Increase
273
281
  industry_code: String,
274
282
  legal_identifier:
275
283
  Increase::EntityUpdateParams::Corporation::LegalIdentifier::OrHash,
276
- name: String
284
+ name: String,
285
+ website: String
277
286
  ).returns(T.attached_class)
278
287
  end
279
288
  def self.new(
@@ -295,7 +304,10 @@ module Increase
295
304
  # Identification Number (EIN).
296
305
  legal_identifier: nil,
297
306
  # The legal name of the corporation.
298
- name: nil
307
+ name: nil,
308
+ # A website for the business. Not every program requires a website for submitted
309
+ # Entities.
310
+ website: nil
299
311
  )
300
312
  end
301
313
 
@@ -308,7 +320,8 @@ module Increase
308
320
  industry_code: String,
309
321
  legal_identifier:
310
322
  Increase::EntityUpdateParams::Corporation::LegalIdentifier,
311
- name: String
323
+ name: String,
324
+ website: String
312
325
  }
313
326
  )
314
327
  end
@@ -99,7 +99,8 @@ module Increase
99
99
  incorporation_state: String,
100
100
  industry_code: String,
101
101
  legal_identifier: Increase::EntityUpdateParams::Corporation::LegalIdentifier,
102
- name: String
102
+ name: String,
103
+ website: String
103
104
  }
104
105
 
105
106
  class Corporation < Increase::Internal::Type::BaseModel
@@ -131,13 +132,18 @@ module Increase
131
132
 
132
133
  def name=: (String) -> String
133
134
 
135
+ attr_reader website: String?
136
+
137
+ def website=: (String) -> String
138
+
134
139
  def initialize: (
135
140
  ?address: Increase::EntityUpdateParams::Corporation::Address,
136
141
  ?email: String,
137
142
  ?incorporation_state: String,
138
143
  ?industry_code: String,
139
144
  ?legal_identifier: Increase::EntityUpdateParams::Corporation::LegalIdentifier,
140
- ?name: String
145
+ ?name: String,
146
+ ?website: String
141
147
  ) -> void
142
148
 
143
149
  def to_hash: -> {
@@ -146,7 +152,8 @@ module Increase
146
152
  incorporation_state: String,
147
153
  industry_code: String,
148
154
  legal_identifier: Increase::EntityUpdateParams::Corporation::LegalIdentifier,
149
- name: String
155
+ name: String,
156
+ website: String
150
157
  }
151
158
 
152
159
  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.319.0
4
+ version: 1.321.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-05-01 00:00:00.000000000 Z
11
+ date: 2026-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi