increase 1.6.0 → 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: 15ba2902bb08358ea2f840f608990f625fb1bdf565268779987339393a792a97
4
- data.tar.gz: f844f2effcaf8f0c58ba8195ff9659dd0df4634fd013c9ffee897ea07fd1745b
3
+ metadata.gz: 9456cd7fc46c10e404d3ab987dd9d6252142d33c3ebaaf93a64f58a125819a9b
4
+ data.tar.gz: 4a146b83996e24b882704b65bd530af807be56288b144e88f75d70b7f9159bd7
5
5
  SHA512:
6
- metadata.gz: b0e5aadeebfae685fc9a872ad83cc7f9421beb614d105027eca139493d0dbc09240e4a367f1b9347b9cbf2da938877537c2211a2f297d3766c8a612bc4ec6f70
7
- data.tar.gz: 040ca43d239521c17c22c21560a98cec9e796592031aa9a5033e6458579056829394030411992887dbabc3308cc2c7d33d00b9d94945fa7b004dce483dea19c9
6
+ metadata.gz: 1d035f7c0c8576cd09116f80346b13a4a647bc1d6ddb46e6422dae3ad278b29932ec9e3d5a4e157a2530d407da0a60889c9013ff8c90d6c479f964cf73e2e2b1
7
+ data.tar.gz: c11f6284502a6a7903e2c239292d6466b55febd0ff6a5b326329e763c1dcb21c71222ee8b15ec8f1eff7d58bef28c32259f3bf9f51173033aa6dfa840508cc8d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 1.6.0 (2025-07-01)
4
12
 
5
13
  Full Changelog: [v1.5.3...v1.6.0](https://github.com/Increase/increase-ruby/compare/v1.5.3...v1.6.0)
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.6.0"
18
+ gem "increase", "~> 1.7.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-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.6.0"
4
+ VERSION = "1.7.0"
5
5
  end
@@ -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(
@@ -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.6.0
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-07-01 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