increase 1.276.0 → 1.277.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 +13 -0
- data/README.md +1 -1
- data/lib/increase/models/declined_transaction.rb +3 -3
- data/lib/increase/models/inbound_ach_transfer.rb +3 -3
- data/lib/increase/models/inbound_ach_transfer_decline_params.rb +0 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/declined_transaction.rbi +7 -7
- data/rbi/increase/models/inbound_ach_transfer.rbi +7 -7
- data/rbi/increase/models/inbound_ach_transfer_decline_params.rbi +0 -7
- data/sig/increase/models/declined_transaction.rbs +4 -4
- data/sig/increase/models/inbound_ach_transfer.rbs +4 -4
- data/sig/increase/models/inbound_ach_transfer_decline_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: 0d30175f00baa1ad64d5ac2a35e6f787106c4794692c2a736e9756312faf99df
|
|
4
|
+
data.tar.gz: 9cf34db2d9d63bf5784a715da918f5cb64769a67f54206c747f77a5657b2bbff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30f3124ac8bde2773c358ceefaa3c59874d1fa4a8b67cfe293f30b0513c376a282ab04c3a8bcd39f028e66c82ef21e6ce5008c1db443142c1ef8aa63601694a2
|
|
7
|
+
data.tar.gz: 7094ab0a3524a9d399d2c7355d4be84f2921ffa1f31c6f99ef5f1db0fc21b717a24cca3f0dd030e7decc6a6c41d4b09e4fd9e227ccc6bc424ee6cd8df391e67b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.277.0 (2026-03-31)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.276.0...v1.277.0](https://github.com/Increase/increase-ruby/compare/v1.276.0...v1.277.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([ec38400](https://github.com/Increase/increase-ruby/commit/ec384003001011837a9d16b23ba1f57ac4b190e2))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* **tests:** bump steady to v0.20.1 ([46dc443](https://github.com/Increase/increase-ruby/commit/46dc44380e78a70ebbbc8dd32445b658cba996d4))
|
|
15
|
+
|
|
3
16
|
## 1.276.0 (2026-03-30)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v1.275.0...v1.276.0](https://github.com/Increase/increase-ruby/compare/v1.275.0...v1.276.0)
|
data/README.md
CHANGED
|
@@ -402,15 +402,15 @@ module Increase
|
|
|
402
402
|
# The transaction is not allowed per Increase's terms.
|
|
403
403
|
TRANSACTION_NOT_ALLOWED = :transaction_not_allowed
|
|
404
404
|
|
|
405
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
406
|
+
RETURNED_PER_ODFI_REQUEST = :returned_per_odfi_request
|
|
407
|
+
|
|
405
408
|
# Your integration declined this transfer via the API.
|
|
406
409
|
USER_INITIATED = :user_initiated
|
|
407
410
|
|
|
408
411
|
# Your account contains insufficient funds.
|
|
409
412
|
INSUFFICIENT_FUNDS = :insufficient_funds
|
|
410
413
|
|
|
411
|
-
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
412
|
-
RETURNED_PER_ODFI_REQUEST = :returned_per_odfi_request
|
|
413
|
-
|
|
414
414
|
# The customer no longer authorizes this transaction.
|
|
415
415
|
AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
|
|
416
416
|
|
|
@@ -373,15 +373,15 @@ module Increase
|
|
|
373
373
|
# The transaction is not allowed per Increase's terms.
|
|
374
374
|
TRANSACTION_NOT_ALLOWED = :transaction_not_allowed
|
|
375
375
|
|
|
376
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
377
|
+
RETURNED_PER_ODFI_REQUEST = :returned_per_odfi_request
|
|
378
|
+
|
|
376
379
|
# Your integration declined this transfer via the API.
|
|
377
380
|
USER_INITIATED = :user_initiated
|
|
378
381
|
|
|
379
382
|
# Your account contains insufficient funds.
|
|
380
383
|
INSUFFICIENT_FUNDS = :insufficient_funds
|
|
381
384
|
|
|
382
|
-
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
383
|
-
RETURNED_PER_ODFI_REQUEST = :returned_per_odfi_request
|
|
384
|
-
|
|
385
385
|
# The customer no longer authorizes this transaction.
|
|
386
386
|
AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
|
|
387
387
|
|
|
@@ -40,9 +40,6 @@ module Increase
|
|
|
40
40
|
# The customer's account has insufficient funds. This reason is only allowed for debits. The Nacha return code is R01.
|
|
41
41
|
INSUFFICIENT_FUNDS = :insufficient_funds
|
|
42
42
|
|
|
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
43
|
# The customer no longer authorizes this transaction. The Nacha return code is R07.
|
|
47
44
|
AUTHORIZATION_REVOKED_BY_CUSTOMER = :authorization_revoked_by_customer
|
|
48
45
|
|
data/lib/increase/version.rb
CHANGED
|
@@ -738,6 +738,13 @@ module Increase
|
|
|
738
738
|
Increase::DeclinedTransaction::Source::ACHDecline::Reason::TaggedSymbol
|
|
739
739
|
)
|
|
740
740
|
|
|
741
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
742
|
+
RETURNED_PER_ODFI_REQUEST =
|
|
743
|
+
T.let(
|
|
744
|
+
:returned_per_odfi_request,
|
|
745
|
+
Increase::DeclinedTransaction::Source::ACHDecline::Reason::TaggedSymbol
|
|
746
|
+
)
|
|
747
|
+
|
|
741
748
|
# Your integration declined this transfer via the API.
|
|
742
749
|
USER_INITIATED =
|
|
743
750
|
T.let(
|
|
@@ -752,13 +759,6 @@ module Increase
|
|
|
752
759
|
Increase::DeclinedTransaction::Source::ACHDecline::Reason::TaggedSymbol
|
|
753
760
|
)
|
|
754
761
|
|
|
755
|
-
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
756
|
-
RETURNED_PER_ODFI_REQUEST =
|
|
757
|
-
T.let(
|
|
758
|
-
:returned_per_odfi_request,
|
|
759
|
-
Increase::DeclinedTransaction::Source::ACHDecline::Reason::TaggedSymbol
|
|
760
|
-
)
|
|
761
|
-
|
|
762
762
|
# The customer no longer authorizes this transaction.
|
|
763
763
|
AUTHORIZATION_REVOKED_BY_CUSTOMER =
|
|
764
764
|
T.let(
|
|
@@ -645,6 +645,13 @@ module Increase
|
|
|
645
645
|
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
|
646
646
|
)
|
|
647
647
|
|
|
648
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
649
|
+
RETURNED_PER_ODFI_REQUEST =
|
|
650
|
+
T.let(
|
|
651
|
+
:returned_per_odfi_request,
|
|
652
|
+
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
|
653
|
+
)
|
|
654
|
+
|
|
648
655
|
# Your integration declined this transfer via the API.
|
|
649
656
|
USER_INITIATED =
|
|
650
657
|
T.let(
|
|
@@ -659,13 +666,6 @@ module Increase
|
|
|
659
666
|
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
|
660
667
|
)
|
|
661
668
|
|
|
662
|
-
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
663
|
-
RETURNED_PER_ODFI_REQUEST =
|
|
664
|
-
T.let(
|
|
665
|
-
:returned_per_odfi_request,
|
|
666
|
-
Increase::InboundACHTransfer::Decline::Reason::TaggedSymbol
|
|
667
|
-
)
|
|
668
|
-
|
|
669
669
|
# The customer no longer authorizes this transaction.
|
|
670
670
|
AUTHORIZATION_REVOKED_BY_CUSTOMER =
|
|
671
671
|
T.let(
|
|
@@ -84,13 +84,6 @@ module Increase
|
|
|
84
84
|
Increase::InboundACHTransferDeclineParams::Reason::TaggedSymbol
|
|
85
85
|
)
|
|
86
86
|
|
|
87
|
-
# 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.
|
|
88
|
-
RETURNED_PER_ODFI_REQUEST =
|
|
89
|
-
T.let(
|
|
90
|
-
:returned_per_odfi_request,
|
|
91
|
-
Increase::InboundACHTransferDeclineParams::Reason::TaggedSymbol
|
|
92
|
-
)
|
|
93
|
-
|
|
94
87
|
# The customer no longer authorizes this transaction. The Nacha return code is R07.
|
|
95
88
|
AUTHORIZATION_REVOKED_BY_CUSTOMER =
|
|
96
89
|
T.let(
|
|
@@ -263,9 +263,9 @@ module Increase
|
|
|
263
263
|
| :entity_not_active
|
|
264
264
|
| :group_locked
|
|
265
265
|
| :transaction_not_allowed
|
|
266
|
+
| :returned_per_odfi_request
|
|
266
267
|
| :user_initiated
|
|
267
268
|
| :insufficient_funds
|
|
268
|
-
| :returned_per_odfi_request
|
|
269
269
|
| :authorization_revoked_by_customer
|
|
270
270
|
| :payment_stopped
|
|
271
271
|
| :customer_advised_unauthorized_improper_ineligible_or_incomplete
|
|
@@ -296,15 +296,15 @@ module Increase
|
|
|
296
296
|
# The transaction is not allowed per Increase's terms.
|
|
297
297
|
TRANSACTION_NOT_ALLOWED: :transaction_not_allowed
|
|
298
298
|
|
|
299
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
300
|
+
RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request
|
|
301
|
+
|
|
299
302
|
# Your integration declined this transfer via the API.
|
|
300
303
|
USER_INITIATED: :user_initiated
|
|
301
304
|
|
|
302
305
|
# Your account contains insufficient funds.
|
|
303
306
|
INSUFFICIENT_FUNDS: :insufficient_funds
|
|
304
307
|
|
|
305
|
-
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
306
|
-
RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request
|
|
307
|
-
|
|
308
308
|
# The customer no longer authorizes this transaction.
|
|
309
309
|
AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
|
|
310
310
|
|
|
@@ -251,9 +251,9 @@ module Increase
|
|
|
251
251
|
| :entity_not_active
|
|
252
252
|
| :group_locked
|
|
253
253
|
| :transaction_not_allowed
|
|
254
|
+
| :returned_per_odfi_request
|
|
254
255
|
| :user_initiated
|
|
255
256
|
| :insufficient_funds
|
|
256
|
-
| :returned_per_odfi_request
|
|
257
257
|
| :authorization_revoked_by_customer
|
|
258
258
|
| :payment_stopped
|
|
259
259
|
| :customer_advised_unauthorized_improper_ineligible_or_incomplete
|
|
@@ -284,15 +284,15 @@ module Increase
|
|
|
284
284
|
# The transaction is not allowed per Increase's terms.
|
|
285
285
|
TRANSACTION_NOT_ALLOWED: :transaction_not_allowed
|
|
286
286
|
|
|
287
|
+
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
288
|
+
RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request
|
|
289
|
+
|
|
287
290
|
# Your integration declined this transfer via the API.
|
|
288
291
|
USER_INITIATED: :user_initiated
|
|
289
292
|
|
|
290
293
|
# Your account contains insufficient funds.
|
|
291
294
|
INSUFFICIENT_FUNDS: :insufficient_funds
|
|
292
295
|
|
|
293
|
-
# The originating financial institution asked for this transfer to be returned. The receiving bank is complying with the request.
|
|
294
|
-
RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request
|
|
295
|
-
|
|
296
296
|
# The customer no longer authorizes this transaction.
|
|
297
297
|
AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
|
|
298
298
|
|
|
@@ -33,7 +33,6 @@ module Increase
|
|
|
33
33
|
|
|
34
34
|
type reason =
|
|
35
35
|
:insufficient_funds
|
|
36
|
-
| :returned_per_odfi_request
|
|
37
36
|
| :authorization_revoked_by_customer
|
|
38
37
|
| :payment_stopped
|
|
39
38
|
| :customer_advised_unauthorized_improper_ineligible_or_incomplete
|
|
@@ -49,9 +48,6 @@ module Increase
|
|
|
49
48
|
# The customer's account has insufficient funds. This reason is only allowed for debits. The Nacha return code is R01.
|
|
50
49
|
INSUFFICIENT_FUNDS: :insufficient_funds
|
|
51
50
|
|
|
52
|
-
# 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.
|
|
53
|
-
RETURNED_PER_ODFI_REQUEST: :returned_per_odfi_request
|
|
54
|
-
|
|
55
51
|
# The customer no longer authorizes this transaction. The Nacha return code is R07.
|
|
56
52
|
AUTHORIZATION_REVOKED_BY_CUSTOMER: :authorization_revoked_by_customer
|
|
57
53
|
|
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.277.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-03-
|
|
11
|
+
date: 2026-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|