increase 1.276.0 → 1.278.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 +21 -0
- data/README.md +1 -1
- data/lib/increase/models/declined_transaction.rb +3 -3
- data/lib/increase/models/event.rb +0 -6
- data/lib/increase/models/event_list_params.rb +0 -6
- data/lib/increase/models/event_subscription.rb +0 -6
- data/lib/increase/models/event_subscription_create_params.rb +0 -6
- 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/models/unwrap_webhook_event.rb +0 -6
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/declined_transaction.rbi +7 -7
- data/rbi/increase/models/event.rbi +0 -14
- data/rbi/increase/models/event_list_params.rbi +0 -14
- data/rbi/increase/models/event_subscription.rbi +0 -14
- data/rbi/increase/models/event_subscription_create_params.rbi +0 -14
- data/rbi/increase/models/inbound_ach_transfer.rbi +7 -7
- data/rbi/increase/models/inbound_ach_transfer_decline_params.rbi +0 -7
- data/rbi/increase/models/unwrap_webhook_event.rbi +0 -14
- data/sig/increase/models/declined_transaction.rbs +4 -4
- data/sig/increase/models/event.rbs +0 -8
- data/sig/increase/models/event_list_params.rbs +0 -8
- data/sig/increase/models/event_subscription.rbs +0 -8
- data/sig/increase/models/event_subscription_create_params.rbs +0 -8
- data/sig/increase/models/inbound_ach_transfer.rbs +4 -4
- data/sig/increase/models/inbound_ach_transfer_decline_params.rbs +0 -4
- data/sig/increase/models/unwrap_webhook_event.rbs +0 -8
- 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: c48a9eacf0924e255d0fbfb431656e5cb73854ada152f74f4c635d21a10e58cf
|
|
4
|
+
data.tar.gz: 2d526f859860eea14dc8ed46020939d25ccefd1516dbd60ebcf793c01e00a7d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5474b258d151043725b76719ff85332a9b1ceb788f77971a5b6205e1e7269bc9c1182423995af5e546776438e00ad652040633e1efa3b524c074482a9fcf00ba
|
|
7
|
+
data.tar.gz: ea1e05fd0286483c18fdafb302472a780a4520b9502147495ee76f2aca250123cb556f4cdf991a8a964a8e78704eb275e32d32915b48939a7183ea1ff6170038
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.278.0 (2026-03-31)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.277.0...v1.278.0](https://github.com/Increase/increase-ruby/compare/v1.277.0...v1.278.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([4882311](https://github.com/Increase/increase-ruby/commit/488231139f7543705d01440d3e36d247d06dd3b3))
|
|
10
|
+
|
|
11
|
+
## 1.277.0 (2026-03-31)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.276.0...v1.277.0](https://github.com/Increase/increase-ruby/compare/v1.276.0...v1.277.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([ec38400](https://github.com/Increase/increase-ruby/commit/ec384003001011837a9d16b23ba1f57ac4b190e2))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
|
|
22
|
+
* **tests:** bump steady to v0.20.1 ([46dc443](https://github.com/Increase/increase-ruby/commit/46dc44380e78a70ebbbc8dd32445b658cba996d4))
|
|
23
|
+
|
|
3
24
|
## 1.276.0 (2026-03-30)
|
|
4
25
|
|
|
5
26
|
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
|
|
|
@@ -286,12 +286,6 @@ module Increase
|
|
|
286
286
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
287
287
|
LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
|
|
288
288
|
|
|
289
|
-
# Occurs whenever a Lockbox Address is created.
|
|
290
|
-
LOCKBOX_ADDRESS_CREATED = :"lockbox_address.created"
|
|
291
|
-
|
|
292
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
293
|
-
LOCKBOX_ADDRESS_UPDATED = :"lockbox_address.updated"
|
|
294
|
-
|
|
295
289
|
# Occurs whenever a Lockbox is created.
|
|
296
290
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
297
291
|
|
|
@@ -288,12 +288,6 @@ module Increase
|
|
|
288
288
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
289
289
|
LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
|
|
290
290
|
|
|
291
|
-
# Occurs whenever a Lockbox Address is created.
|
|
292
|
-
LOCKBOX_ADDRESS_CREATED = :"lockbox_address.created"
|
|
293
|
-
|
|
294
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
295
|
-
LOCKBOX_ADDRESS_UPDATED = :"lockbox_address.updated"
|
|
296
|
-
|
|
297
291
|
# Occurs whenever a Lockbox is created.
|
|
298
292
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
299
293
|
|
|
@@ -320,12 +320,6 @@ module Increase
|
|
|
320
320
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
321
321
|
LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
|
|
322
322
|
|
|
323
|
-
# Occurs whenever a Lockbox Address is created.
|
|
324
|
-
LOCKBOX_ADDRESS_CREATED = :"lockbox_address.created"
|
|
325
|
-
|
|
326
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
327
|
-
LOCKBOX_ADDRESS_UPDATED = :"lockbox_address.updated"
|
|
328
|
-
|
|
329
323
|
# Occurs whenever a Lockbox is created.
|
|
330
324
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
331
325
|
|
|
@@ -291,12 +291,6 @@ module Increase
|
|
|
291
291
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
292
292
|
LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
|
|
293
293
|
|
|
294
|
-
# Occurs whenever a Lockbox Address is created.
|
|
295
|
-
LOCKBOX_ADDRESS_CREATED = :"lockbox_address.created"
|
|
296
|
-
|
|
297
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
298
|
-
LOCKBOX_ADDRESS_UPDATED = :"lockbox_address.updated"
|
|
299
|
-
|
|
300
294
|
# Occurs whenever a Lockbox is created.
|
|
301
295
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
302
296
|
|
|
@@ -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
|
|
|
@@ -285,12 +285,6 @@ module Increase
|
|
|
285
285
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
286
286
|
LEGACY_CARD_DISPUTE_UPDATED = :"legacy_card_dispute.updated"
|
|
287
287
|
|
|
288
|
-
# Occurs whenever a Lockbox Address is created.
|
|
289
|
-
LOCKBOX_ADDRESS_CREATED = :"lockbox_address.created"
|
|
290
|
-
|
|
291
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
292
|
-
LOCKBOX_ADDRESS_UPDATED = :"lockbox_address.updated"
|
|
293
|
-
|
|
294
288
|
# Occurs whenever a Lockbox is created.
|
|
295
289
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
296
290
|
|
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(
|
|
@@ -555,20 +555,6 @@ module Increase
|
|
|
555
555
|
Increase::Event::Category::TaggedSymbol
|
|
556
556
|
)
|
|
557
557
|
|
|
558
|
-
# Occurs whenever a Lockbox Address is created.
|
|
559
|
-
LOCKBOX_ADDRESS_CREATED =
|
|
560
|
-
T.let(
|
|
561
|
-
:"lockbox_address.created",
|
|
562
|
-
Increase::Event::Category::TaggedSymbol
|
|
563
|
-
)
|
|
564
|
-
|
|
565
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
566
|
-
LOCKBOX_ADDRESS_UPDATED =
|
|
567
|
-
T.let(
|
|
568
|
-
:"lockbox_address.updated",
|
|
569
|
-
Increase::Event::Category::TaggedSymbol
|
|
570
|
-
)
|
|
571
|
-
|
|
572
558
|
# Occurs whenever a Lockbox is created.
|
|
573
559
|
LOCKBOX_CREATED =
|
|
574
560
|
T.let(:"lockbox.created", Increase::Event::Category::TaggedSymbol)
|
|
@@ -648,20 +648,6 @@ module Increase
|
|
|
648
648
|
Increase::EventListParams::Category::In::TaggedSymbol
|
|
649
649
|
)
|
|
650
650
|
|
|
651
|
-
# Occurs whenever a Lockbox Address is created.
|
|
652
|
-
LOCKBOX_ADDRESS_CREATED =
|
|
653
|
-
T.let(
|
|
654
|
-
:"lockbox_address.created",
|
|
655
|
-
Increase::EventListParams::Category::In::TaggedSymbol
|
|
656
|
-
)
|
|
657
|
-
|
|
658
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
659
|
-
LOCKBOX_ADDRESS_UPDATED =
|
|
660
|
-
T.let(
|
|
661
|
-
:"lockbox_address.updated",
|
|
662
|
-
Increase::EventListParams::Category::In::TaggedSymbol
|
|
663
|
-
)
|
|
664
|
-
|
|
665
651
|
# Occurs whenever a Lockbox is created.
|
|
666
652
|
LOCKBOX_CREATED =
|
|
667
653
|
T.let(
|
|
@@ -682,20 +682,6 @@ module Increase
|
|
|
682
682
|
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
683
683
|
)
|
|
684
684
|
|
|
685
|
-
# Occurs whenever a Lockbox Address is created.
|
|
686
|
-
LOCKBOX_ADDRESS_CREATED =
|
|
687
|
-
T.let(
|
|
688
|
-
:"lockbox_address.created",
|
|
689
|
-
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
690
|
-
)
|
|
691
|
-
|
|
692
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
693
|
-
LOCKBOX_ADDRESS_UPDATED =
|
|
694
|
-
T.let(
|
|
695
|
-
:"lockbox_address.updated",
|
|
696
|
-
Increase::EventSubscription::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
697
|
-
)
|
|
698
|
-
|
|
699
685
|
# Occurs whenever a Lockbox is created.
|
|
700
686
|
LOCKBOX_CREATED =
|
|
701
687
|
T.let(
|
|
@@ -680,20 +680,6 @@ module Increase
|
|
|
680
680
|
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
681
681
|
)
|
|
682
682
|
|
|
683
|
-
# Occurs whenever a Lockbox Address is created.
|
|
684
|
-
LOCKBOX_ADDRESS_CREATED =
|
|
685
|
-
T.let(
|
|
686
|
-
:"lockbox_address.created",
|
|
687
|
-
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
688
|
-
)
|
|
689
|
-
|
|
690
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
691
|
-
LOCKBOX_ADDRESS_UPDATED =
|
|
692
|
-
T.let(
|
|
693
|
-
:"lockbox_address.updated",
|
|
694
|
-
Increase::EventSubscriptionCreateParams::SelectedEventCategory::EventCategory::TaggedSymbol
|
|
695
|
-
)
|
|
696
|
-
|
|
697
683
|
# Occurs whenever a Lockbox is created.
|
|
698
684
|
LOCKBOX_CREATED =
|
|
699
685
|
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(
|
|
@@ -594,20 +594,6 @@ module Increase
|
|
|
594
594
|
Increase::UnwrapWebhookEvent::Category::TaggedSymbol
|
|
595
595
|
)
|
|
596
596
|
|
|
597
|
-
# Occurs whenever a Lockbox Address is created.
|
|
598
|
-
LOCKBOX_ADDRESS_CREATED =
|
|
599
|
-
T.let(
|
|
600
|
-
:"lockbox_address.created",
|
|
601
|
-
Increase::UnwrapWebhookEvent::Category::TaggedSymbol
|
|
602
|
-
)
|
|
603
|
-
|
|
604
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
605
|
-
LOCKBOX_ADDRESS_UPDATED =
|
|
606
|
-
T.let(
|
|
607
|
-
:"lockbox_address.updated",
|
|
608
|
-
Increase::UnwrapWebhookEvent::Category::TaggedSymbol
|
|
609
|
-
)
|
|
610
|
-
|
|
611
597
|
# Occurs whenever a Lockbox is created.
|
|
612
598
|
LOCKBOX_CREATED =
|
|
613
599
|
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
|
|
|
@@ -114,8 +114,6 @@ module Increase
|
|
|
114
114
|
| :"intrafi_exclusion.updated"
|
|
115
115
|
| :"legacy_card_dispute.created"
|
|
116
116
|
| :"legacy_card_dispute.updated"
|
|
117
|
-
| :"lockbox_address.created"
|
|
118
|
-
| :"lockbox_address.updated"
|
|
119
117
|
| :"lockbox.created"
|
|
120
118
|
| :"lockbox.updated"
|
|
121
119
|
| :"oauth_connection.created"
|
|
@@ -373,12 +371,6 @@ module Increase
|
|
|
373
371
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
374
372
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
375
373
|
|
|
376
|
-
# Occurs whenever a Lockbox Address is created.
|
|
377
|
-
LOCKBOX_ADDRESS_CREATED: :"lockbox_address.created"
|
|
378
|
-
|
|
379
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
380
|
-
LOCKBOX_ADDRESS_UPDATED: :"lockbox_address.updated"
|
|
381
|
-
|
|
382
374
|
# Occurs whenever a Lockbox is created.
|
|
383
375
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
384
376
|
|
|
@@ -147,8 +147,6 @@ module Increase
|
|
|
147
147
|
| :"intrafi_exclusion.updated"
|
|
148
148
|
| :"legacy_card_dispute.created"
|
|
149
149
|
| :"legacy_card_dispute.updated"
|
|
150
|
-
| :"lockbox_address.created"
|
|
151
|
-
| :"lockbox_address.updated"
|
|
152
150
|
| :"lockbox.created"
|
|
153
151
|
| :"lockbox.updated"
|
|
154
152
|
| :"oauth_connection.created"
|
|
@@ -406,12 +404,6 @@ module Increase
|
|
|
406
404
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
407
405
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
408
406
|
|
|
409
|
-
# Occurs whenever a Lockbox Address is created.
|
|
410
|
-
LOCKBOX_ADDRESS_CREATED: :"lockbox_address.created"
|
|
411
|
-
|
|
412
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
413
|
-
LOCKBOX_ADDRESS_UPDATED: :"lockbox_address.updated"
|
|
414
|
-
|
|
415
407
|
# Occurs whenever a Lockbox is created.
|
|
416
408
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
417
409
|
|
|
@@ -140,8 +140,6 @@ module Increase
|
|
|
140
140
|
| :"intrafi_exclusion.updated"
|
|
141
141
|
| :"legacy_card_dispute.created"
|
|
142
142
|
| :"legacy_card_dispute.updated"
|
|
143
|
-
| :"lockbox_address.created"
|
|
144
|
-
| :"lockbox_address.updated"
|
|
145
143
|
| :"lockbox.created"
|
|
146
144
|
| :"lockbox.updated"
|
|
147
145
|
| :"oauth_connection.created"
|
|
@@ -399,12 +397,6 @@ module Increase
|
|
|
399
397
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
400
398
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
401
399
|
|
|
402
|
-
# Occurs whenever a Lockbox Address is created.
|
|
403
|
-
LOCKBOX_ADDRESS_CREATED: :"lockbox_address.created"
|
|
404
|
-
|
|
405
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
406
|
-
LOCKBOX_ADDRESS_UPDATED: :"lockbox_address.updated"
|
|
407
|
-
|
|
408
400
|
# Occurs whenever a Lockbox is created.
|
|
409
401
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
410
402
|
|
|
@@ -143,8 +143,6 @@ module Increase
|
|
|
143
143
|
| :"intrafi_exclusion.updated"
|
|
144
144
|
| :"legacy_card_dispute.created"
|
|
145
145
|
| :"legacy_card_dispute.updated"
|
|
146
|
-
| :"lockbox_address.created"
|
|
147
|
-
| :"lockbox_address.updated"
|
|
148
146
|
| :"lockbox.created"
|
|
149
147
|
| :"lockbox.updated"
|
|
150
148
|
| :"oauth_connection.created"
|
|
@@ -402,12 +400,6 @@ module Increase
|
|
|
402
400
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
403
401
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
404
402
|
|
|
405
|
-
# Occurs whenever a Lockbox Address is created.
|
|
406
|
-
LOCKBOX_ADDRESS_CREATED: :"lockbox_address.created"
|
|
407
|
-
|
|
408
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
409
|
-
LOCKBOX_ADDRESS_UPDATED: :"lockbox_address.updated"
|
|
410
|
-
|
|
411
403
|
# Occurs whenever a Lockbox is created.
|
|
412
404
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
413
405
|
|
|
@@ -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
|
|
|
@@ -114,8 +114,6 @@ module Increase
|
|
|
114
114
|
| :"intrafi_exclusion.updated"
|
|
115
115
|
| :"legacy_card_dispute.created"
|
|
116
116
|
| :"legacy_card_dispute.updated"
|
|
117
|
-
| :"lockbox_address.created"
|
|
118
|
-
| :"lockbox_address.updated"
|
|
119
117
|
| :"lockbox.created"
|
|
120
118
|
| :"lockbox.updated"
|
|
121
119
|
| :"oauth_connection.created"
|
|
@@ -373,12 +371,6 @@ module Increase
|
|
|
373
371
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
374
372
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
375
373
|
|
|
376
|
-
# Occurs whenever a Lockbox Address is created.
|
|
377
|
-
LOCKBOX_ADDRESS_CREATED: :"lockbox_address.created"
|
|
378
|
-
|
|
379
|
-
# Occurs whenever a Lockbox Address is updated.
|
|
380
|
-
LOCKBOX_ADDRESS_UPDATED: :"lockbox_address.updated"
|
|
381
|
-
|
|
382
374
|
# Occurs whenever a Lockbox is created.
|
|
383
375
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
384
376
|
|
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.278.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
|