increase 1.275.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 +21 -0
- data/README.md +1 -1
- data/lib/increase/models/declined_transaction.rb +3 -3
- data/lib/increase/models/event.rb +6 -0
- data/lib/increase/models/event_list_params.rb +6 -0
- data/lib/increase/models/event_subscription.rb +6 -0
- data/lib/increase/models/event_subscription_create_params.rb +6 -0
- 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 +6 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/declined_transaction.rbi +7 -7
- data/rbi/increase/models/event.rbi +14 -0
- data/rbi/increase/models/event_list_params.rbi +14 -0
- data/rbi/increase/models/event_subscription.rbi +14 -0
- data/rbi/increase/models/event_subscription_create_params.rbi +14 -0
- 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 +14 -0
- data/sig/increase/models/declined_transaction.rbs +4 -4
- data/sig/increase/models/event.rbs +8 -0
- data/sig/increase/models/event_list_params.rbs +8 -0
- data/sig/increase/models/event_subscription.rbs +8 -0
- data/sig/increase/models/event_subscription_create_params.rbs +8 -0
- 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 +8 -0
- 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,26 @@
|
|
|
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
|
+
|
|
16
|
+
## 1.276.0 (2026-03-30)
|
|
17
|
+
|
|
18
|
+
Full Changelog: [v1.275.0...v1.276.0](https://github.com/Increase/increase-ruby/compare/v1.275.0...v1.276.0)
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **api:** api update ([5445798](https://github.com/Increase/increase-ruby/commit/5445798e6a82b0a30cdb4f9ccbd04ef45db94823))
|
|
23
|
+
|
|
3
24
|
## 1.275.0 (2026-03-30)
|
|
4
25
|
|
|
5
26
|
Full Changelog: [v1.274.0...v1.275.0](https://github.com/Increase/increase-ruby/compare/v1.274.0...v1.275.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,6 +286,12 @@ 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
|
+
|
|
289
295
|
# Occurs whenever a Lockbox is created.
|
|
290
296
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
291
297
|
|
|
@@ -288,6 +288,12 @@ 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
|
+
|
|
291
297
|
# Occurs whenever a Lockbox is created.
|
|
292
298
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
293
299
|
|
|
@@ -320,6 +320,12 @@ 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
|
+
|
|
323
329
|
# Occurs whenever a Lockbox is created.
|
|
324
330
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
325
331
|
|
|
@@ -291,6 +291,12 @@ 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
|
+
|
|
294
300
|
# Occurs whenever a Lockbox is created.
|
|
295
301
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
296
302
|
|
|
@@ -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,6 +285,12 @@ 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
|
+
|
|
288
294
|
# Occurs whenever a Lockbox is created.
|
|
289
295
|
LOCKBOX_CREATED = :"lockbox.created"
|
|
290
296
|
|
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,6 +555,20 @@ 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
|
+
|
|
558
572
|
# Occurs whenever a Lockbox is created.
|
|
559
573
|
LOCKBOX_CREATED =
|
|
560
574
|
T.let(:"lockbox.created", Increase::Event::Category::TaggedSymbol)
|
|
@@ -648,6 +648,20 @@ 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
|
+
|
|
651
665
|
# Occurs whenever a Lockbox is created.
|
|
652
666
|
LOCKBOX_CREATED =
|
|
653
667
|
T.let(
|
|
@@ -682,6 +682,20 @@ 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
|
+
|
|
685
699
|
# Occurs whenever a Lockbox is created.
|
|
686
700
|
LOCKBOX_CREATED =
|
|
687
701
|
T.let(
|
|
@@ -680,6 +680,20 @@ 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
|
+
|
|
683
697
|
# Occurs whenever a Lockbox is created.
|
|
684
698
|
LOCKBOX_CREATED =
|
|
685
699
|
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,6 +594,20 @@ 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
|
+
|
|
597
611
|
# Occurs whenever a Lockbox is created.
|
|
598
612
|
LOCKBOX_CREATED =
|
|
599
613
|
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,6 +114,8 @@ 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"
|
|
117
119
|
| :"lockbox.created"
|
|
118
120
|
| :"lockbox.updated"
|
|
119
121
|
| :"oauth_connection.created"
|
|
@@ -371,6 +373,12 @@ module Increase
|
|
|
371
373
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
372
374
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
373
375
|
|
|
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
|
+
|
|
374
382
|
# Occurs whenever a Lockbox is created.
|
|
375
383
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
376
384
|
|
|
@@ -147,6 +147,8 @@ 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"
|
|
150
152
|
| :"lockbox.created"
|
|
151
153
|
| :"lockbox.updated"
|
|
152
154
|
| :"oauth_connection.created"
|
|
@@ -404,6 +406,12 @@ module Increase
|
|
|
404
406
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
405
407
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
406
408
|
|
|
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
|
+
|
|
407
415
|
# Occurs whenever a Lockbox is created.
|
|
408
416
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
409
417
|
|
|
@@ -140,6 +140,8 @@ 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"
|
|
143
145
|
| :"lockbox.created"
|
|
144
146
|
| :"lockbox.updated"
|
|
145
147
|
| :"oauth_connection.created"
|
|
@@ -397,6 +399,12 @@ module Increase
|
|
|
397
399
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
398
400
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
399
401
|
|
|
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
|
+
|
|
400
408
|
# Occurs whenever a Lockbox is created.
|
|
401
409
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
402
410
|
|
|
@@ -143,6 +143,8 @@ 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"
|
|
146
148
|
| :"lockbox.created"
|
|
147
149
|
| :"lockbox.updated"
|
|
148
150
|
| :"oauth_connection.created"
|
|
@@ -400,6 +402,12 @@ module Increase
|
|
|
400
402
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
401
403
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
402
404
|
|
|
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
|
+
|
|
403
411
|
# Occurs whenever a Lockbox is created.
|
|
404
412
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
405
413
|
|
|
@@ -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,6 +114,8 @@ 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"
|
|
117
119
|
| :"lockbox.created"
|
|
118
120
|
| :"lockbox.updated"
|
|
119
121
|
| :"oauth_connection.created"
|
|
@@ -371,6 +373,12 @@ module Increase
|
|
|
371
373
|
# Occurs whenever a Legacy Card Dispute is updated.
|
|
372
374
|
LEGACY_CARD_DISPUTE_UPDATED: :"legacy_card_dispute.updated"
|
|
373
375
|
|
|
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
|
+
|
|
374
382
|
# Occurs whenever a Lockbox is created.
|
|
375
383
|
LOCKBOX_CREATED: :"lockbox.created"
|
|
376
384
|
|
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
|