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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9f95f2e0df86506965d6b864cb017e5bb21b21a5090193d20299fa5fbb1398f
4
- data.tar.gz: 1156d84ed5ed98615c210cc8c75856468dd46ccac281bab298fc28b64d346bd2
3
+ metadata.gz: 9cd88adf310b4dd4346e9bf0bdabf14bb2c34a93c58cd3bba4ba79f09263c65a
4
+ data.tar.gz: d4c7ad4a986b1cebff6635685f844ddb5673c7acb5479a22d674272960264fbc
5
5
  SHA512:
6
- metadata.gz: 933efa417990cbdbeea6963256403823d35e5af9ca22fe7d847cf727813a05d045e685e23d4ba29ed67719a3a21e9505acab131b1e5ec88ec969a29ff27a65c4
7
- data.tar.gz: ba95682b31e3dcbbccba0fee60e65221181b61a45898aa431c1ba5445b7f1665959e71a9abe757e504c3884a50cc875c694c879b3061ad914c34235914b8e7cb
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
@@ -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.69.0"
18
+ gem "increase", "~> 1.70.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.69.0"
4
+ VERSION = "1.70.0"
5
5
  end
@@ -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
 
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.69.0
4
+ version: 1.70.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase