increase 1.5.3 → 1.7.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: 9456cd7fc46c10e404d3ab987dd9d6252142d33c3ebaaf93a64f58a125819a9b
4
+ data.tar.gz: 4a146b83996e24b882704b65bd530af807be56288b144e88f75d70b7f9159bd7
5
5
  SHA512:
6
- metadata.gz: 1192467c9c28aad6c1efa9e6cf5f7884ae8fb7b6302a27b6502019f6ca95ad27526bfe58877eb2a000eaa22eed8aabd3f768d7b077330177114de5b987c3eb9a
7
- data.tar.gz: fa40e5e370e1d4d6e4566c5fbd34e9d7fc83f9cd339a14d7be61adfb3ceff8f8a6d45a815c3001722880f09a3a49f5e97dd831f4bb9ad56dedcc5f8d5d324b2c
6
+ metadata.gz: 1d035f7c0c8576cd09116f80346b13a4a647bc1d6ddb46e6422dae3ad278b29932ec9e3d5a4e157a2530d407da0a60889c9013ff8c90d6c479f964cf73e2e2b1
7
+ data.tar.gz: c11f6284502a6a7903e2c239292d6466b55febd0ff6a5b326329e763c1dcb21c71222ee8b15ec8f1eff7d58bef28c32259f3bf9f51173033aa6dfa840508cc8d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.7.0 (2025-07-02)
4
+
5
+ Full Changelog: [v1.6.0...v1.7.0](https://github.com/Increase/increase-ruby/compare/v1.6.0...v1.7.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([c7a416e](https://github.com/Increase/increase-ruby/commit/c7a416e30dc10a9245015f3e5da55142831d0112))
10
+
11
+ ## 1.6.0 (2025-07-01)
12
+
13
+ Full Changelog: [v1.5.3...v1.6.0](https://github.com/Increase/increase-ruby/compare/v1.5.3...v1.6.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([f558750](https://github.com/Increase/increase-ruby/commit/f55875048421a837a8cd9cff86e163cbb6501c7a))
18
+
3
19
  ## 1.5.3 (2025-06-30)
4
20
 
5
21
  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.7.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
@@ -30,9 +30,6 @@ module Increase
30
30
  # The customer's account has insufficient funds. This reason is only allowed for debits. The Nacha return code is R01.
31
31
  INSUFFICIENT_FUNDS = :insufficient_funds
32
32
 
33
- # The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request. The Nacha return code is R06.
34
- RETURNED_PER_ODFI_REQUEST = :returned_per_odfi_request
35
-
36
33
  # The customer no longer authorizes this transaction. The Nacha return code is R07.
37
34
  AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
38
35
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.5.3"
4
+ VERSION = "1.7.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]
@@ -71,13 +71,6 @@ module Increase
71
71
  Increase::InboundACHTransferTransferReturnParams::Reason::TaggedSymbol
72
72
  )
73
73
 
74
- # The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request. The Nacha return code is R06.
75
- RETURNED_PER_ODFI_REQUEST =
76
- T.let(
77
- :returned_per_odfi_request,
78
- Increase::InboundACHTransferTransferReturnParams::Reason::TaggedSymbol
79
- )
80
-
81
74
  # The customer no longer authorizes this transaction. The Nacha return code is R07.
82
75
  AUTHORIZATION_REVOKED_BY_CUSTOMER =
83
76
  T.let(
@@ -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
@@ -24,7 +24,6 @@ module Increase
24
24
 
25
25
  type reason =
26
26
  :insufficient_funds
27
- | :returned_per_odfi_request
28
27
  | :authorization_revoked_by_customer
29
28
  | :payment_stopped
30
29
  | :customer_advised_unauthorized_improper_ineligible_or_incomplete
@@ -40,9 +39,6 @@ module Increase
40
39
  # The customer's account has insufficient funds. This reason is only allowed for debits. The Nacha return code is R01.
41
40
  INSUFFICIENT_FUNDS: :insufficient_funds
42
41
 
43
- # The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request. The Nacha return code is R06.
44
- RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request
45
-
46
42
  # The customer no longer authorizes this transaction. The Nacha return code is R07.
47
43
  AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
48
44
 
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.7.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-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool