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 +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/file.rb +3 -0
- data/lib/increase/models/file_list_params.rb +3 -0
- data/lib/increase/models/inbound_ach_transfer_transfer_return_params.rb +0 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/file.rbi +4 -0
- data/rbi/increase/models/file_list_params.rbi +7 -0
- data/rbi/increase/models/inbound_ach_transfer_transfer_return_params.rbi +0 -7
- data/sig/increase/models/file.rbs +4 -0
- data/sig/increase/models/file_list_params.rbs +4 -0
- data/sig/increase/models/inbound_ach_transfer_transfer_return_params.rbs +0 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9456cd7fc46c10e404d3ab987dd9d6252142d33c3ebaaf93a64f58a125819a9b
|
4
|
+
data.tar.gz: 4a146b83996e24b882704b65bd530af807be56288b144e88f75d70b7f9159bd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
data/lib/increase/models/file.rb
CHANGED
@@ -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
|
|
data/lib/increase/version.rb
CHANGED
@@ -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.
|
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-
|
11
|
+
date: 2025-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|