increase 1.5.3 → 1.6.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: 14857eacadb478883bd85f202e13bbd8bfed9b1ba785915509f2b0f1bf7971e9
4
- data.tar.gz: e5fc04d3f4110b13c8d6fc858f3b189de34881eb3f51ec0bac186148ed3c2bfd
3
+ metadata.gz: 15ba2902bb08358ea2f840f608990f625fb1bdf565268779987339393a792a97
4
+ data.tar.gz: f844f2effcaf8f0c58ba8195ff9659dd0df4634fd013c9ffee897ea07fd1745b
5
5
  SHA512:
6
- metadata.gz: 1192467c9c28aad6c1efa9e6cf5f7884ae8fb7b6302a27b6502019f6ca95ad27526bfe58877eb2a000eaa22eed8aabd3f768d7b077330177114de5b987c3eb9a
7
- data.tar.gz: fa40e5e370e1d4d6e4566c5fbd34e9d7fc83f9cd339a14d7be61adfb3ceff8f8a6d45a815c3001722880f09a3a49f5e97dd831f4bb9ad56dedcc5f8d5d324b2c
6
+ metadata.gz: b0e5aadeebfae685fc9a872ad83cc7f9421beb614d105027eca139493d0dbc09240e4a367f1b9347b9cbf2da938877537c2211a2f297d3766c8a612bc4ec6f70
7
+ data.tar.gz: 040ca43d239521c17c22c21560a98cec9e796592031aa9a5033e6458579056829394030411992887dbabc3308cc2c7d33d00b9d94945fa7b004dce483dea19c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.6.0 (2025-07-01)
4
+
5
+ Full Changelog: [v1.5.3...v1.6.0](https://github.com/Increase/increase-ruby/compare/v1.5.3...v1.6.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([f558750](https://github.com/Increase/increase-ruby/commit/f55875048421a837a8cd9cff86e163cbb6501c7a))
10
+
3
11
  ## 1.5.3 (2025-06-30)
4
12
 
5
13
  Full Changelog: [v1.5.2...v1.5.3](https://github.com/Increase/increase-ruby/compare/v1.5.2...v1.5.3)
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.5.3"
18
+ gem "increase", "~> 1.6.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -195,6 +195,9 @@ module Increase
195
195
  # Funding instructions.
196
196
  FUNDING_INSTRUCTIONS = :funding_instructions
197
197
 
198
+ # A Hold Harmless Letter.
199
+ HOLD_HARMLESS_LETTER = :hold_harmless_letter
200
+
198
201
  # @!method self.values
199
202
  # @return [Array<Symbol>]
200
203
  end
@@ -197,6 +197,9 @@ module Increase
197
197
  # Funding instructions.
198
198
  FUNDING_INSTRUCTIONS = :funding_instructions
199
199
 
200
+ # A Hold Harmless Letter.
201
+ HOLD_HARMLESS_LETTER = :hold_harmless_letter
202
+
200
203
  # @!method self.values
201
204
  # @return [Array<Symbol>]
202
205
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.5.3"
4
+ VERSION = "1.6.0"
5
5
  end
@@ -269,6 +269,10 @@ module Increase
269
269
  FUNDING_INSTRUCTIONS =
270
270
  T.let(:funding_instructions, Increase::File::Purpose::TaggedSymbol)
271
271
 
272
+ # A Hold Harmless Letter.
273
+ HOLD_HARMLESS_LETTER =
274
+ T.let(:hold_harmless_letter, Increase::File::Purpose::TaggedSymbol)
275
+
272
276
  sig do
273
277
  override.returns(T::Array[Increase::File::Purpose::TaggedSymbol])
274
278
  end
@@ -403,6 +403,13 @@ module Increase
403
403
  Increase::FileListParams::Purpose::In::TaggedSymbol
404
404
  )
405
405
 
406
+ # A Hold Harmless Letter.
407
+ HOLD_HARMLESS_LETTER =
408
+ T.let(
409
+ :hold_harmless_letter,
410
+ Increase::FileListParams::Purpose::In::TaggedSymbol
411
+ )
412
+
406
413
  sig do
407
414
  override.returns(
408
415
  T::Array[Increase::FileListParams::Purpose::In::TaggedSymbol]
@@ -98,6 +98,7 @@ module Increase
98
98
  | :proof_of_authorization_request_submission
99
99
  | :account_verification_letter
100
100
  | :funding_instructions
101
+ | :hold_harmless_letter
101
102
 
102
103
  module Purpose
103
104
  extend Increase::Internal::Type::Enum
@@ -183,6 +184,9 @@ module Increase
183
184
  # Funding instructions.
184
185
  FUNDING_INSTRUCTIONS: :funding_instructions
185
186
 
187
+ # A Hold Harmless Letter.
188
+ HOLD_HARMLESS_LETTER: :hold_harmless_letter
189
+
186
190
  def self?.values: -> ::Array[Increase::Models::File::purpose]
187
191
  end
188
192
 
@@ -137,6 +137,7 @@ module Increase
137
137
  | :proof_of_authorization_request_submission
138
138
  | :account_verification_letter
139
139
  | :funding_instructions
140
+ | :hold_harmless_letter
140
141
 
141
142
  module In
142
143
  extend Increase::Internal::Type::Enum
@@ -222,6 +223,9 @@ module Increase
222
223
  # Funding instructions.
223
224
  FUNDING_INSTRUCTIONS: :funding_instructions
224
225
 
226
+ # A Hold Harmless Letter.
227
+ HOLD_HARMLESS_LETTER: :hold_harmless_letter
228
+
225
229
  def self?.values: -> ::Array[Increase::Models::FileListParams::Purpose::in_]
226
230
  end
227
231
  end
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.5.3
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Increase
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-30 00:00:00.000000000 Z
11
+ date: 2025-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool