increase 1.175.0 → 1.176.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: a5a24c2bf9b617389a57b3d1c6ff966113f1707095b2abcd3434d7f1d06b9a82
4
- data.tar.gz: 89c489eb9f24dbabb9f314efa289856c51a21e60d119bafdf6db3d14492dc6a1
3
+ metadata.gz: d70f0153e4f54e69ebf4f14c1150342660685029088e1d24ad6ff3f79e24dcde
4
+ data.tar.gz: a6d2fd1f916b5946e12a5b4d078c4ed9143a3bb849378f144f1ec8f11a03ff45
5
5
  SHA512:
6
- metadata.gz: 675c61fe9095ed60fc1d2ea8084fb9815e2c1f665b065f80a95014bb9d1a1623c3f64a9fb2631d0cd09d8bb20e40d9207b7d2b5ce37c7262a0a9bbab221dc926
7
- data.tar.gz: e7d90a41a46f79bf3236395a4ee4bcd00dc29a162f279d906b60623a48a9794d71d503c2fe1a05defc40a1da47acc8c276d0ed64c54406b77107c665c6b2efcd
6
+ metadata.gz: fd825380cb61a3559e47137c7e1e7de2bd2fe0a161ba67cb755bb40f752a515b498cc32999256cb4d864afcc147ef0b2c060f56dfdbf6c3d4a686eb037a4686a
7
+ data.tar.gz: 1b478c58696044498a68e8c14e92aeb413bfaa6be3d383bbc71fcdbbaa502429f5247bb312605bcc22d30c86d9908925775561508bf58ad9372d56cb292215e7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.176.0 (2026-01-14)
4
+
5
+ Full Changelog: [v1.175.0...v1.176.0](https://github.com/Increase/increase-ruby/compare/v1.175.0...v1.176.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([24826b1](https://github.com/Increase/increase-ruby/commit/24826b1ba2ca802a5211618a873ca6ff3424b0b1))
10
+
11
+
12
+ ### Chores
13
+
14
+ * move `cgi` into dependencies for ruby 4 ([0e8a6bc](https://github.com/Increase/increase-ruby/commit/0e8a6bc96473cf0540c8a0be18c4c4ef915de00e))
15
+
3
16
  ## 1.175.0 (2026-01-08)
4
17
 
5
18
  Full Changelog: [v1.174.0...v1.175.0](https://github.com/Increase/increase-ruby/compare/v1.174.0...v1.175.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.175.0"
18
+ gem "increase", "~> 1.176.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -189,6 +189,9 @@ module Increase
189
189
  # The results of an Export you requested via the dashboard or API.
190
190
  EXPORT = :export
191
191
 
192
+ # A fee statement.
193
+ FEE_STATEMENT = :fee_statement
194
+
192
195
  # An attachment to an Unusual Activity Report.
193
196
  UNUSUAL_ACTIVITY_REPORT_ATTACHMENT = :unusual_activity_report_attachment
194
197
 
@@ -191,6 +191,9 @@ module Increase
191
191
  # The results of an Export you requested via the dashboard or API.
192
192
  EXPORT = :export
193
193
 
194
+ # A fee statement.
195
+ FEE_STATEMENT = :fee_statement
196
+
194
197
  # An attachment to an Unusual Activity Report.
195
198
  UNUSUAL_ACTIVITY_REPORT_ATTACHMENT = :unusual_activity_report_attachment
196
199
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.175.0"
4
+ VERSION = "1.176.0"
5
5
  end
@@ -252,6 +252,10 @@ module Increase
252
252
  # The results of an Export you requested via the dashboard or API.
253
253
  EXPORT = T.let(:export, Increase::File::Purpose::TaggedSymbol)
254
254
 
255
+ # A fee statement.
256
+ FEE_STATEMENT =
257
+ T.let(:fee_statement, Increase::File::Purpose::TaggedSymbol)
258
+
255
259
  # An attachment to an Unusual Activity Report.
256
260
  UNUSUAL_ACTIVITY_REPORT_ATTACHMENT =
257
261
  T.let(
@@ -389,6 +389,13 @@ module Increase
389
389
  EXPORT =
390
390
  T.let(:export, Increase::FileListParams::Purpose::In::TaggedSymbol)
391
391
 
392
+ # A fee statement.
393
+ FEE_STATEMENT =
394
+ T.let(
395
+ :fee_statement,
396
+ Increase::FileListParams::Purpose::In::TaggedSymbol
397
+ )
398
+
392
399
  # An attachment to an Unusual Activity Report.
393
400
  UNUSUAL_ACTIVITY_REPORT_ATTACHMENT =
394
401
  T.let(
@@ -96,6 +96,7 @@ module Increase
96
96
  | :document_request
97
97
  | :entity_supplemental_document
98
98
  | :export
99
+ | :fee_statement
99
100
  | :unusual_activity_report_attachment
100
101
  | :deposit_account_control_agreement
101
102
  | :proof_of_authorization_request_submission
@@ -181,6 +182,9 @@ module Increase
181
182
  # The results of an Export you requested via the dashboard or API.
182
183
  EXPORT: :export
183
184
 
185
+ # A fee statement.
186
+ FEE_STATEMENT: :fee_statement
187
+
184
188
  # An attachment to an Unusual Activity Report.
185
189
  UNUSUAL_ACTIVITY_REPORT_ATTACHMENT: :unusual_activity_report_attachment
186
190
 
@@ -135,6 +135,7 @@ module Increase
135
135
  | :document_request
136
136
  | :entity_supplemental_document
137
137
  | :export
138
+ | :fee_statement
138
139
  | :unusual_activity_report_attachment
139
140
  | :deposit_account_control_agreement
140
141
  | :proof_of_authorization_request_submission
@@ -220,6 +221,9 @@ module Increase
220
221
  # The results of an Export you requested via the dashboard or API.
221
222
  EXPORT: :export
222
223
 
224
+ # A fee statement.
225
+ FEE_STATEMENT: :fee_statement
226
+
223
227
  # An attachment to an Unusual Activity Report.
224
228
  UNUSUAL_ACTIVITY_REPORT_ATTACHMENT: :unusual_activity_report_attachment
225
229
 
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: increase
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.175.0
4
+ version: 1.176.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-01-08 00:00:00.000000000 Z
11
+ date: 2026-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cgi
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: connection_pool
15
29
  requirement: !ruby/object:Gem::Requirement