increase 1.267.0 → 1.268.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/real_time_payments_transfer_create_params.rb +1 -15
- data/lib/increase/resources/real_time_payments_transfers.rb +1 -5
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/real_time_payments_transfer_create_params.rbi +0 -18
- data/rbi/increase/resources/real_time_payments_transfers.rbi +0 -4
- data/sig/increase/models/real_time_payments_transfer_create_params.rbs +0 -14
- data/sig/increase/resources/real_time_payments_transfers.rbs +0 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: be9aec778181cc9c83ff0a0063796671084f184985092060bde4729ed1bcc9e1
|
|
4
|
+
data.tar.gz: b8158da91e965fc0e32370c1e84b150746520a0d2cf02ecebc8b4088ba2d525e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bac3761e3aee222047f60de694c83ec3132faa69c02af576575458d79dbb5172249190d7e86057602cfe2c8084c530998cbeb46ab4555724dcbf190be61bc86
|
|
7
|
+
data.tar.gz: e1d7221607ff10c63250d915eb068e80c768c65c45a2128b0c2b142d2c2bf9f84724918f35f534802bbc44825f3006085be9860aa641e073f13a7ea8a37039bb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.268.0 (2026-03-24)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.267.0...v1.268.0](https://github.com/Increase/increase-ruby/compare/v1.267.0...v1.268.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([b63d832](https://github.com/Increase/increase-ruby/commit/b63d83233aa99cdd3f1415a2d375fe927e8a5f7e))
|
|
10
|
+
|
|
3
11
|
## 1.267.0 (2026-03-24)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.266.0...v1.267.0](https://github.com/Increase/increase-ruby/compare/v1.266.0...v1.267.0)
|
data/README.md
CHANGED
|
@@ -45,16 +45,6 @@ module Increase
|
|
|
45
45
|
# @return [String, nil]
|
|
46
46
|
optional :debtor_name, String
|
|
47
47
|
|
|
48
|
-
# @!attribute destination_account_number
|
|
49
|
-
#
|
|
50
|
-
# @return [String, nil]
|
|
51
|
-
optional :destination_account_number, String
|
|
52
|
-
|
|
53
|
-
# @!attribute destination_routing_number
|
|
54
|
-
#
|
|
55
|
-
# @return [String, nil]
|
|
56
|
-
optional :destination_routing_number, String
|
|
57
|
-
|
|
58
48
|
# @!attribute external_account_id
|
|
59
49
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
60
50
|
# provided, `account_number` and `routing_number` must be absent.
|
|
@@ -89,7 +79,7 @@ module Increase
|
|
|
89
79
|
# @return [String, nil]
|
|
90
80
|
optional :ultimate_debtor_name, String
|
|
91
81
|
|
|
92
|
-
# @!method initialize(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil,
|
|
82
|
+
# @!method initialize(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
|
|
93
83
|
# Some parameter documentations has been truncated, see
|
|
94
84
|
# {Increase::Models::RealTimePaymentsTransferCreateParams} for more details.
|
|
95
85
|
#
|
|
@@ -105,10 +95,6 @@ module Increase
|
|
|
105
95
|
#
|
|
106
96
|
# @param debtor_name [String] The name of the transfer's sender. If not provided, defaults to the name of the
|
|
107
97
|
#
|
|
108
|
-
# @param destination_account_number [String]
|
|
109
|
-
#
|
|
110
|
-
# @param destination_routing_number [String]
|
|
111
|
-
#
|
|
112
98
|
# @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
|
|
113
99
|
#
|
|
114
100
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
|
@@ -8,7 +8,7 @@ module Increase
|
|
|
8
8
|
#
|
|
9
9
|
# Create a Real-Time Payments Transfer
|
|
10
10
|
#
|
|
11
|
-
# @overload create(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil,
|
|
11
|
+
# @overload create(amount:, creditor_name:, source_account_number_id:, unstructured_remittance_information:, account_number: nil, debtor_name: nil, external_account_id: nil, require_approval: nil, routing_number: nil, ultimate_creditor_name: nil, ultimate_debtor_name: nil, request_options: {})
|
|
12
12
|
#
|
|
13
13
|
# @param amount [Integer] The transfer amount in USD cents. For Real-Time Payments transfers, must be posi
|
|
14
14
|
#
|
|
@@ -22,10 +22,6 @@ module Increase
|
|
|
22
22
|
#
|
|
23
23
|
# @param debtor_name [String] The name of the transfer's sender. If not provided, defaults to the name of the
|
|
24
24
|
#
|
|
25
|
-
# @param destination_account_number [String]
|
|
26
|
-
#
|
|
27
|
-
# @param destination_routing_number [String]
|
|
28
|
-
#
|
|
29
25
|
# @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
|
|
30
26
|
#
|
|
31
27
|
# @param require_approval [Boolean] Whether the transfer requires explicit approval via the dashboard or API.
|
data/lib/increase/version.rb
CHANGED
|
@@ -46,18 +46,6 @@ module Increase
|
|
|
46
46
|
sig { params(debtor_name: String).void }
|
|
47
47
|
attr_writer :debtor_name
|
|
48
48
|
|
|
49
|
-
sig { returns(T.nilable(String)) }
|
|
50
|
-
attr_reader :destination_account_number
|
|
51
|
-
|
|
52
|
-
sig { params(destination_account_number: String).void }
|
|
53
|
-
attr_writer :destination_account_number
|
|
54
|
-
|
|
55
|
-
sig { returns(T.nilable(String)) }
|
|
56
|
-
attr_reader :destination_routing_number
|
|
57
|
-
|
|
58
|
-
sig { params(destination_routing_number: String).void }
|
|
59
|
-
attr_writer :destination_routing_number
|
|
60
|
-
|
|
61
49
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
62
50
|
# provided, `account_number` and `routing_number` must be absent.
|
|
63
51
|
sig { returns(T.nilable(String)) }
|
|
@@ -105,8 +93,6 @@ module Increase
|
|
|
105
93
|
unstructured_remittance_information: String,
|
|
106
94
|
account_number: String,
|
|
107
95
|
debtor_name: String,
|
|
108
|
-
destination_account_number: String,
|
|
109
|
-
destination_routing_number: String,
|
|
110
96
|
external_account_id: String,
|
|
111
97
|
require_approval: T::Boolean,
|
|
112
98
|
routing_number: String,
|
|
@@ -130,8 +116,6 @@ module Increase
|
|
|
130
116
|
# The name of the transfer's sender. If not provided, defaults to the name of the
|
|
131
117
|
# account's entity.
|
|
132
118
|
debtor_name: nil,
|
|
133
|
-
destination_account_number: nil,
|
|
134
|
-
destination_routing_number: nil,
|
|
135
119
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
136
120
|
# provided, `account_number` and `routing_number` must be absent.
|
|
137
121
|
external_account_id: nil,
|
|
@@ -159,8 +143,6 @@ module Increase
|
|
|
159
143
|
unstructured_remittance_information: String,
|
|
160
144
|
account_number: String,
|
|
161
145
|
debtor_name: String,
|
|
162
|
-
destination_account_number: String,
|
|
163
|
-
destination_routing_number: String,
|
|
164
146
|
external_account_id: String,
|
|
165
147
|
require_approval: T::Boolean,
|
|
166
148
|
routing_number: String,
|
|
@@ -12,8 +12,6 @@ module Increase
|
|
|
12
12
|
unstructured_remittance_information: String,
|
|
13
13
|
account_number: String,
|
|
14
14
|
debtor_name: String,
|
|
15
|
-
destination_account_number: String,
|
|
16
|
-
destination_routing_number: String,
|
|
17
15
|
external_account_id: String,
|
|
18
16
|
require_approval: T::Boolean,
|
|
19
17
|
routing_number: String,
|
|
@@ -37,8 +35,6 @@ module Increase
|
|
|
37
35
|
# The name of the transfer's sender. If not provided, defaults to the name of the
|
|
38
36
|
# account's entity.
|
|
39
37
|
debtor_name: nil,
|
|
40
|
-
destination_account_number: nil,
|
|
41
|
-
destination_routing_number: nil,
|
|
42
38
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
|
43
39
|
# provided, `account_number` and `routing_number` must be absent.
|
|
44
40
|
external_account_id: nil,
|
|
@@ -8,8 +8,6 @@ module Increase
|
|
|
8
8
|
unstructured_remittance_information: String,
|
|
9
9
|
account_number: String,
|
|
10
10
|
debtor_name: String,
|
|
11
|
-
destination_account_number: String,
|
|
12
|
-
destination_routing_number: String,
|
|
13
11
|
external_account_id: String,
|
|
14
12
|
require_approval: bool,
|
|
15
13
|
routing_number: String,
|
|
@@ -38,14 +36,6 @@ module Increase
|
|
|
38
36
|
|
|
39
37
|
def debtor_name=: (String) -> String
|
|
40
38
|
|
|
41
|
-
attr_reader destination_account_number: String?
|
|
42
|
-
|
|
43
|
-
def destination_account_number=: (String) -> String
|
|
44
|
-
|
|
45
|
-
attr_reader destination_routing_number: String?
|
|
46
|
-
|
|
47
|
-
def destination_routing_number=: (String) -> String
|
|
48
|
-
|
|
49
39
|
attr_reader external_account_id: String?
|
|
50
40
|
|
|
51
41
|
def external_account_id=: (String) -> String
|
|
@@ -73,8 +63,6 @@ module Increase
|
|
|
73
63
|
unstructured_remittance_information: String,
|
|
74
64
|
?account_number: String,
|
|
75
65
|
?debtor_name: String,
|
|
76
|
-
?destination_account_number: String,
|
|
77
|
-
?destination_routing_number: String,
|
|
78
66
|
?external_account_id: String,
|
|
79
67
|
?require_approval: bool,
|
|
80
68
|
?routing_number: String,
|
|
@@ -90,8 +78,6 @@ module Increase
|
|
|
90
78
|
unstructured_remittance_information: String,
|
|
91
79
|
account_number: String,
|
|
92
80
|
debtor_name: String,
|
|
93
|
-
destination_account_number: String,
|
|
94
|
-
destination_routing_number: String,
|
|
95
81
|
external_account_id: String,
|
|
96
82
|
require_approval: bool,
|
|
97
83
|
routing_number: String,
|
|
@@ -8,8 +8,6 @@ module Increase
|
|
|
8
8
|
unstructured_remittance_information: String,
|
|
9
9
|
?account_number: String,
|
|
10
10
|
?debtor_name: String,
|
|
11
|
-
?destination_account_number: String,
|
|
12
|
-
?destination_routing_number: String,
|
|
13
11
|
?external_account_id: String,
|
|
14
12
|
?require_approval: bool,
|
|
15
13
|
?routing_number: String,
|