increase 1.69.0 → 1.70.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_update_params.rb +12 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/entity_update_params.rbi +17 -0
- data/sig/increase/models/entity_update_params.rbs +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9cd88adf310b4dd4346e9bf0bdabf14bb2c34a93c58cd3bba4ba79f09263c65a
|
4
|
+
data.tar.gz: d4c7ad4a986b1cebff6635685f844ddb5673c7acb5479a22d674272960264fbc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5eed4a74229d448e4fbae64a68f5a28cf3914b878ff302f7715c5dd474f35cfef11ad7bd6327f88d39a88ae5d510cd80edf06a3da45c0ea9a5f59fcf10fca9a
|
7
|
+
data.tar.gz: 61d60d64e2c7f41750ccdee4dccbcce4a45e66129c8ff178b9eb5ec606b813385f17989b83529f33ae70f10056422bce5d86e17309dec314b8d0258e09e1eabb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.70.0 (2025-09-08)
|
4
|
+
|
5
|
+
Full Changelog: [v1.69.0...v1.70.0](https://github.com/Increase/increase-ruby/compare/v1.69.0...v1.70.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([2bcd14c](https://github.com/Increase/increase-ruby/commit/2bcd14c3c9056a995fdc7dc4e96d48bb2c2f06f0))
|
10
|
+
|
3
11
|
## 1.69.0 (2025-09-08)
|
4
12
|
|
5
13
|
Full Changelog: [v1.68.0...v1.69.0](https://github.com/Increase/increase-ruby/compare/v1.68.0...v1.69.0)
|
data/README.md
CHANGED
@@ -75,13 +75,22 @@ module Increase
|
|
75
75
|
# @return [Increase::Models::EntityUpdateParams::Corporation::Address, nil]
|
76
76
|
optional :address, -> { Increase::EntityUpdateParams::Corporation::Address }
|
77
77
|
|
78
|
+
# @!attribute industry_code
|
79
|
+
# The North American Industry Classification System (NAICS) code for the
|
80
|
+
# corporation's primary line of business. This is a number, like `5132` for
|
81
|
+
# `Software Publishers`. A full list of classification codes is available
|
82
|
+
# [here](https://increase.com/documentation/data-dictionary#north-american-industry-classification-system-codes).
|
83
|
+
#
|
84
|
+
# @return [String, nil]
|
85
|
+
optional :industry_code, String
|
86
|
+
|
78
87
|
# @!attribute name
|
79
88
|
# The legal name of the corporation.
|
80
89
|
#
|
81
90
|
# @return [String, nil]
|
82
91
|
optional :name, String
|
83
92
|
|
84
|
-
# @!method initialize(address: nil, name: nil)
|
93
|
+
# @!method initialize(address: nil, industry_code: nil, name: nil)
|
85
94
|
# Some parameter documentations has been truncated, see
|
86
95
|
# {Increase::Models::EntityUpdateParams::Corporation} for more details.
|
87
96
|
#
|
@@ -90,6 +99,8 @@ module Increase
|
|
90
99
|
#
|
91
100
|
# @param address [Increase::Models::EntityUpdateParams::Corporation::Address] The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
92
101
|
#
|
102
|
+
# @param industry_code [String] The North American Industry Classification System (NAICS) code for the corporati
|
103
|
+
#
|
93
104
|
# @param name [String] The legal name of the corporation.
|
94
105
|
|
95
106
|
# @see Increase::Models::EntityUpdateParams::Corporation#address
|
data/lib/increase/version.rb
CHANGED
@@ -162,6 +162,16 @@ module Increase
|
|
162
162
|
end
|
163
163
|
attr_writer :address
|
164
164
|
|
165
|
+
# The North American Industry Classification System (NAICS) code for the
|
166
|
+
# corporation's primary line of business. This is a number, like `5132` for
|
167
|
+
# `Software Publishers`. A full list of classification codes is available
|
168
|
+
# [here](https://increase.com/documentation/data-dictionary#north-american-industry-classification-system-codes).
|
169
|
+
sig { returns(T.nilable(String)) }
|
170
|
+
attr_reader :industry_code
|
171
|
+
|
172
|
+
sig { params(industry_code: String).void }
|
173
|
+
attr_writer :industry_code
|
174
|
+
|
165
175
|
# The legal name of the corporation.
|
166
176
|
sig { returns(T.nilable(String)) }
|
167
177
|
attr_reader :name
|
@@ -174,6 +184,7 @@ module Increase
|
|
174
184
|
sig do
|
175
185
|
params(
|
176
186
|
address: Increase::EntityUpdateParams::Corporation::Address::OrHash,
|
187
|
+
industry_code: String,
|
177
188
|
name: String
|
178
189
|
).returns(T.attached_class)
|
179
190
|
end
|
@@ -181,6 +192,11 @@ module Increase
|
|
181
192
|
# The entity's physical address. Mail receiving locations like PO Boxes and PMB's
|
182
193
|
# are disallowed.
|
183
194
|
address: nil,
|
195
|
+
# The North American Industry Classification System (NAICS) code for the
|
196
|
+
# corporation's primary line of business. This is a number, like `5132` for
|
197
|
+
# `Software Publishers`. A full list of classification codes is available
|
198
|
+
# [here](https://increase.com/documentation/data-dictionary#north-american-industry-classification-system-codes).
|
199
|
+
industry_code: nil,
|
184
200
|
# The legal name of the corporation.
|
185
201
|
name: nil
|
186
202
|
)
|
@@ -190,6 +206,7 @@ module Increase
|
|
190
206
|
override.returns(
|
191
207
|
{
|
192
208
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
209
|
+
industry_code: String,
|
193
210
|
name: String
|
194
211
|
}
|
195
212
|
)
|
@@ -74,6 +74,7 @@ module Increase
|
|
74
74
|
type corporation =
|
75
75
|
{
|
76
76
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
77
|
+
industry_code: String,
|
77
78
|
name: String
|
78
79
|
}
|
79
80
|
|
@@ -84,17 +85,23 @@ module Increase
|
|
84
85
|
Increase::EntityUpdateParams::Corporation::Address
|
85
86
|
) -> Increase::EntityUpdateParams::Corporation::Address
|
86
87
|
|
88
|
+
attr_reader industry_code: String?
|
89
|
+
|
90
|
+
def industry_code=: (String) -> String
|
91
|
+
|
87
92
|
attr_reader name: String?
|
88
93
|
|
89
94
|
def name=: (String) -> String
|
90
95
|
|
91
96
|
def initialize: (
|
92
97
|
?address: Increase::EntityUpdateParams::Corporation::Address,
|
98
|
+
?industry_code: String,
|
93
99
|
?name: String
|
94
100
|
) -> void
|
95
101
|
|
96
102
|
def to_hash: -> {
|
97
103
|
address: Increase::EntityUpdateParams::Corporation::Address,
|
104
|
+
industry_code: String,
|
98
105
|
name: String
|
99
106
|
}
|
100
107
|
|