increase 1.319.0 → 1.320.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/entity_create_params.rb +6 -4
- data/lib/increase/models/entity_update_params.rb +10 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity_create_params.rbi +8 -4
- data/rbi/increase/models/entity_update_params.rbi +16 -3
- data/sig/increase/models/entity_update_params.rbs +10 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0f31dce22ce8d21615197f939077cf09a4c10b17791fd1d7a2d18f6ced99af7e
|
|
4
|
+
data.tar.gz: fc25a99bf46c44e7f103fa343b32f50801a87dc1af7f9fe0de267ae5ea10ab97
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90ddc738082df83cfb68a12a8e45d2db05d4ee24aa83b968ab7fc495884923ab7b79210fbd369a5e7611f8fd423499ee738c428b5a0b73a4ff9581183f969efc
|
|
7
|
+
data.tar.gz: b17e5bb96699753510731a49549493bad2aa18e13226627c226ef8bee28b015fa75d54b03445d4a0e7bb75f6c697a0a467b43800bdaabb5d07fb1cab58d2018d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.320.0 (2026-05-02)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.319.0...v1.320.0](https://github.com/Increase/increase-ruby/compare/v1.319.0...v1.320.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([41332d8](https://github.com/Increase/increase-ruby/commit/41332d8e1c14fb7fc4c8b36a088ac3a1924cb8dc))
|
|
10
|
+
|
|
3
11
|
## 1.319.0 (2026-05-01)
|
|
4
12
|
|
|
5
13
|
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
|
@@ -200,7 +200,8 @@ module Increase
|
|
|
200
200
|
optional :industry_code, String
|
|
201
201
|
|
|
202
202
|
# @!attribute website
|
|
203
|
-
#
|
|
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]
|
|
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
|
-
#
|
|
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]
|
|
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
|
-
# @!
|
|
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
|
data/lib/increase/version.rb
CHANGED
|
@@ -371,7 +371,8 @@ module Increase
|
|
|
371
371
|
sig { params(industry_code: String).void }
|
|
372
372
|
attr_writer :industry_code
|
|
373
373
|
|
|
374
|
-
#
|
|
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
|
-
#
|
|
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
|
-
#
|
|
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
|
-
#
|
|
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.
|
|
4
|
+
version: 1.320.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-
|
|
11
|
+
date: 2026-05-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|