increase 1.104.0 → 1.106.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/ach_transfer.rb +14 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/ach_transfer.rbi +18 -0
- data/sig/increase/models/ach_transfer.rbs +5 -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: ed975e1fd6741ad63e000da9df6393ab5aa3881719db7dbfed9ed64da5c9ec0e
|
|
4
|
+
data.tar.gz: e1ae02aae3cb9f2e8fa002f6ca7e56f92d3df5dbf03f59f08c533ea950d5731d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a12f9b01aacb7e1440de8f3de52c802f87a34520084edf155f0385e8d3a362a77cab408e010d07b497051a6092ad1bebd2f4c213c4e8d4541631d16d80b782d
|
|
7
|
+
data.tar.gz: 4f1abf827811a46943dd42aa7d12a583fae027346602f4ea93a4302246a67897aa88fff063302b89bbedec535c87a2ee18a64e67f353890af6d5af22f0084468
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.106.0 (2025-10-10)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.105.0...v1.106.0](https://github.com/Increase/increase-ruby/compare/v1.105.0...v1.106.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([4a0fcf6](https://github.com/Increase/increase-ruby/commit/4a0fcf69c4aed89b0d7df75198bcb2c048e66999))
|
|
10
|
+
|
|
11
|
+
## 1.105.0 (2025-10-10)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.104.0...v1.105.0](https://github.com/Increase/increase-ruby/compare/v1.104.0...v1.105.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([1291c39](https://github.com/Increase/increase-ruby/commit/1291c3972b9528737b6f764e03f4171c54296927))
|
|
18
|
+
|
|
3
19
|
## 1.104.0 (2025-10-08)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.103.0...v1.104.0](https://github.com/Increase/increase-ruby/compare/v1.103.0...v1.104.0)
|
data/README.md
CHANGED
|
@@ -1375,6 +1375,17 @@ module Increase
|
|
|
1375
1375
|
|
|
1376
1376
|
# @see Increase::Models::ACHTransfer#submission
|
|
1377
1377
|
class Submission < Increase::Internal::Type::BaseModel
|
|
1378
|
+
# @!attribute administrative_returns_expected_by
|
|
1379
|
+
# The timestamp by which any administrative returns are expected to be received
|
|
1380
|
+
# by. This follows the NACHA guidelines for return windows, which are: "In
|
|
1381
|
+
# general, return entries must be received by the RDFI’s ACH Operator by its
|
|
1382
|
+
# deposit deadline for the return entry to be made available to the ODFI no later
|
|
1383
|
+
# than the opening of business on the second banking day following the Settlement
|
|
1384
|
+
# Date of the original entry.".
|
|
1385
|
+
#
|
|
1386
|
+
# @return [Time]
|
|
1387
|
+
required :administrative_returns_expected_by, Time
|
|
1388
|
+
|
|
1378
1389
|
# @!attribute effective_date
|
|
1379
1390
|
# The ACH transfer's effective date as sent to the Federal Reserve. If a specific
|
|
1380
1391
|
# date was configured using `preferred_effective_date`, this will match that
|
|
@@ -1418,7 +1429,7 @@ module Increase
|
|
|
1418
1429
|
# @return [String]
|
|
1419
1430
|
required :trace_number, String
|
|
1420
1431
|
|
|
1421
|
-
# @!method initialize(effective_date:, expected_funds_settlement_at:, expected_settlement_schedule:, submitted_at:, trace_number:)
|
|
1432
|
+
# @!method initialize(administrative_returns_expected_by:, effective_date:, expected_funds_settlement_at:, expected_settlement_schedule:, submitted_at:, trace_number:)
|
|
1422
1433
|
# Some parameter documentations has been truncated, see
|
|
1423
1434
|
# {Increase::Models::ACHTransfer::Submission} for more details.
|
|
1424
1435
|
#
|
|
@@ -1428,6 +1439,8 @@ module Increase
|
|
|
1428
1439
|
# weekdays according to their
|
|
1429
1440
|
# [posted schedule](https://www.frbservices.org/resources/resource-centers/same-day-ach/fedach-processing-schedule.html).
|
|
1430
1441
|
#
|
|
1442
|
+
# @param administrative_returns_expected_by [Time] The timestamp by which any administrative returns are expected to be received by
|
|
1443
|
+
#
|
|
1431
1444
|
# @param effective_date [Date] The ACH transfer's effective date as sent to the Federal Reserve. If a specific
|
|
1432
1445
|
#
|
|
1433
1446
|
# @param expected_funds_settlement_at [Time] When the transfer is expected to settle in the recipient's account. Credits may
|
data/lib/increase/version.rb
CHANGED
|
@@ -2512,6 +2512,15 @@ module Increase
|
|
|
2512
2512
|
)
|
|
2513
2513
|
end
|
|
2514
2514
|
|
|
2515
|
+
# The timestamp by which any administrative returns are expected to be received
|
|
2516
|
+
# by. This follows the NACHA guidelines for return windows, which are: "In
|
|
2517
|
+
# general, return entries must be received by the RDFI’s ACH Operator by its
|
|
2518
|
+
# deposit deadline for the return entry to be made available to the ODFI no later
|
|
2519
|
+
# than the opening of business on the second banking day following the Settlement
|
|
2520
|
+
# Date of the original entry.".
|
|
2521
|
+
sig { returns(Time) }
|
|
2522
|
+
attr_accessor :administrative_returns_expected_by
|
|
2523
|
+
|
|
2515
2524
|
# The ACH transfer's effective date as sent to the Federal Reserve. If a specific
|
|
2516
2525
|
# date was configured using `preferred_effective_date`, this will match that
|
|
2517
2526
|
# value. Otherwise, it will be the date selected (following the specified
|
|
@@ -2555,6 +2564,7 @@ module Increase
|
|
|
2555
2564
|
# [posted schedule](https://www.frbservices.org/resources/resource-centers/same-day-ach/fedach-processing-schedule.html).
|
|
2556
2565
|
sig do
|
|
2557
2566
|
params(
|
|
2567
|
+
administrative_returns_expected_by: Time,
|
|
2558
2568
|
effective_date: Date,
|
|
2559
2569
|
expected_funds_settlement_at: Time,
|
|
2560
2570
|
expected_settlement_schedule:
|
|
@@ -2564,6 +2574,13 @@ module Increase
|
|
|
2564
2574
|
).returns(T.attached_class)
|
|
2565
2575
|
end
|
|
2566
2576
|
def self.new(
|
|
2577
|
+
# The timestamp by which any administrative returns are expected to be received
|
|
2578
|
+
# by. This follows the NACHA guidelines for return windows, which are: "In
|
|
2579
|
+
# general, return entries must be received by the RDFI’s ACH Operator by its
|
|
2580
|
+
# deposit deadline for the return entry to be made available to the ODFI no later
|
|
2581
|
+
# than the opening of business on the second banking day following the Settlement
|
|
2582
|
+
# Date of the original entry.".
|
|
2583
|
+
administrative_returns_expected_by:,
|
|
2567
2584
|
# The ACH transfer's effective date as sent to the Federal Reserve. If a specific
|
|
2568
2585
|
# date was configured using `preferred_effective_date`, this will match that
|
|
2569
2586
|
# value. Otherwise, it will be the date selected (following the specified
|
|
@@ -2592,6 +2609,7 @@ module Increase
|
|
|
2592
2609
|
sig do
|
|
2593
2610
|
override.returns(
|
|
2594
2611
|
{
|
|
2612
|
+
administrative_returns_expected_by: Time,
|
|
2595
2613
|
effective_date: Date,
|
|
2596
2614
|
expected_funds_settlement_at: Time,
|
|
2597
2615
|
expected_settlement_schedule:
|
|
@@ -1142,6 +1142,7 @@ module Increase
|
|
|
1142
1142
|
|
|
1143
1143
|
type submission =
|
|
1144
1144
|
{
|
|
1145
|
+
administrative_returns_expected_by: Time,
|
|
1145
1146
|
effective_date: Date,
|
|
1146
1147
|
expected_funds_settlement_at: Time,
|
|
1147
1148
|
expected_settlement_schedule: Increase::Models::ACHTransfer::Submission::expected_settlement_schedule,
|
|
@@ -1150,6 +1151,8 @@ module Increase
|
|
|
1150
1151
|
}
|
|
1151
1152
|
|
|
1152
1153
|
class Submission < Increase::Internal::Type::BaseModel
|
|
1154
|
+
attr_accessor administrative_returns_expected_by: Time
|
|
1155
|
+
|
|
1153
1156
|
attr_accessor effective_date: Date
|
|
1154
1157
|
|
|
1155
1158
|
attr_accessor expected_funds_settlement_at: Time
|
|
@@ -1161,6 +1164,7 @@ module Increase
|
|
|
1161
1164
|
attr_accessor trace_number: String
|
|
1162
1165
|
|
|
1163
1166
|
def initialize: (
|
|
1167
|
+
administrative_returns_expected_by: Time,
|
|
1164
1168
|
effective_date: Date,
|
|
1165
1169
|
expected_funds_settlement_at: Time,
|
|
1166
1170
|
expected_settlement_schedule: Increase::Models::ACHTransfer::Submission::expected_settlement_schedule,
|
|
@@ -1169,6 +1173,7 @@ module Increase
|
|
|
1169
1173
|
) -> void
|
|
1170
1174
|
|
|
1171
1175
|
def to_hash: -> {
|
|
1176
|
+
administrative_returns_expected_by: Time,
|
|
1172
1177
|
effective_date: Date,
|
|
1173
1178
|
expected_funds_settlement_at: Time,
|
|
1174
1179
|
expected_settlement_schedule: Increase::Models::ACHTransfer::Submission::expected_settlement_schedule,
|
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.106.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-10-
|
|
11
|
+
date: 2025-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|