increase 1.42.0 → 1.44.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/simulations/inbound_wire_transfer_create_params.rb +63 -81
- data/lib/increase/resources/real_time_payments_transfers.rb +2 -2
- data/lib/increase/resources/simulations/inbound_wire_transfers.rb +14 -18
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/simulations/inbound_wire_transfer_create_params.rbi +123 -149
- data/rbi/increase/resources/real_time_payments_transfers.rbi +2 -2
- data/rbi/increase/resources/simulations/inbound_wire_transfers.rbi +48 -56
- data/sig/increase/models/simulations/inbound_wire_transfer_create_params.rbs +65 -79
- data/sig/increase/resources/simulations/inbound_wire_transfers.rbs +13 -15
- 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: e677fc0e529ad44447e5da0011ef5e382ebf40658182fb1f34683e856626ce74
|
4
|
+
data.tar.gz: d9a20fcb0bce482f407162cb262f19a133da222d561814375f379430f03c39d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fab4ce159c96cb9c7b7c9aa48895dfa04c433ea44c5c466d6cd4e804b33c80d32650e64d6bc6f8cdc407b92e5d3833741ab57369e711f1574cf76847bf28d8d6
|
7
|
+
data.tar.gz: 2a5cfe5979e0b5a9fd7ccf1a201af08f8adb0811b3d6246e7b20091d9f36155f6fa7f20aff2e6152117a1b5f28f3e72eb6c43185fd57716ff96283a2479caa77
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.44.0 (2025-08-21)
|
4
|
+
|
5
|
+
Full Changelog: [v1.43.0...v1.44.0](https://github.com/Increase/increase-ruby/compare/v1.43.0...v1.44.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([fa432d1](https://github.com/Increase/increase-ruby/commit/fa432d119fbd419cfe50893ed6e2609ebef760cb))
|
10
|
+
|
11
|
+
## 1.43.0 (2025-08-20)
|
12
|
+
|
13
|
+
Full Changelog: [v1.42.0...v1.43.0](https://github.com/Increase/increase-ruby/compare/v1.42.0...v1.43.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([833acde](https://github.com/Increase/increase-ruby/commit/833acdeac127dc43d05dfe725fd2e2d5e7b52d6f))
|
18
|
+
|
3
19
|
## 1.42.0 (2025-08-20)
|
4
20
|
|
5
21
|
Full Changelog: [v1.41.0...v1.42.0](https://github.com/Increase/increase-ruby/compare/v1.41.0...v1.42.0)
|
data/README.md
CHANGED
@@ -20,110 +20,96 @@ module Increase
|
|
20
20
|
# @return [Integer]
|
21
21
|
required :amount, Integer
|
22
22
|
|
23
|
-
# @!attribute
|
24
|
-
# The sending bank will set
|
25
|
-
#
|
23
|
+
# @!attribute creditor_address_line1
|
24
|
+
# The sending bank will set creditor_address_line1 in production. You can simulate
|
25
|
+
# any value here.
|
26
26
|
#
|
27
27
|
# @return [String, nil]
|
28
|
-
optional :
|
28
|
+
optional :creditor_address_line1, String
|
29
29
|
|
30
|
-
# @!attribute
|
31
|
-
# The sending bank will set
|
32
|
-
#
|
30
|
+
# @!attribute creditor_address_line2
|
31
|
+
# The sending bank will set creditor_address_line2 in production. You can simulate
|
32
|
+
# any value here.
|
33
33
|
#
|
34
34
|
# @return [String, nil]
|
35
|
-
optional :
|
35
|
+
optional :creditor_address_line2, String
|
36
36
|
|
37
|
-
# @!attribute
|
38
|
-
# The sending bank will set
|
39
|
-
#
|
37
|
+
# @!attribute creditor_address_line3
|
38
|
+
# The sending bank will set creditor_address_line3 in production. You can simulate
|
39
|
+
# any value here.
|
40
40
|
#
|
41
41
|
# @return [String, nil]
|
42
|
-
optional :
|
42
|
+
optional :creditor_address_line3, String
|
43
43
|
|
44
|
-
# @!attribute
|
45
|
-
# The sending bank will set
|
44
|
+
# @!attribute creditor_name
|
45
|
+
# The sending bank will set creditor_name in production. You can simulate any
|
46
46
|
# value here.
|
47
47
|
#
|
48
48
|
# @return [String, nil]
|
49
|
-
optional :
|
49
|
+
optional :creditor_name, String
|
50
50
|
|
51
|
-
# @!attribute
|
52
|
-
# The sending bank will set
|
51
|
+
# @!attribute debtor_address_line1
|
52
|
+
# The sending bank will set debtor_address_line1 in production. You can simulate
|
53
53
|
# any value here.
|
54
54
|
#
|
55
55
|
# @return [String, nil]
|
56
|
-
optional :
|
56
|
+
optional :debtor_address_line1, String
|
57
57
|
|
58
|
-
# @!attribute
|
59
|
-
# The sending bank will set
|
60
|
-
#
|
61
|
-
#
|
62
|
-
# @return [String, nil]
|
63
|
-
optional :originator_address_line1, String
|
64
|
-
|
65
|
-
# @!attribute originator_address_line2
|
66
|
-
# The sending bank will set originator_address_line2 in production. You can
|
67
|
-
# simulate any value here.
|
58
|
+
# @!attribute debtor_address_line2
|
59
|
+
# The sending bank will set debtor_address_line2 in production. You can simulate
|
60
|
+
# any value here.
|
68
61
|
#
|
69
62
|
# @return [String, nil]
|
70
|
-
optional :
|
63
|
+
optional :debtor_address_line2, String
|
71
64
|
|
72
|
-
# @!attribute
|
73
|
-
# The sending bank will set
|
74
|
-
#
|
65
|
+
# @!attribute debtor_address_line3
|
66
|
+
# The sending bank will set debtor_address_line3 in production. You can simulate
|
67
|
+
# any value here.
|
75
68
|
#
|
76
69
|
# @return [String, nil]
|
77
|
-
optional :
|
70
|
+
optional :debtor_address_line3, String
|
78
71
|
|
79
|
-
# @!attribute
|
80
|
-
# The sending bank will set
|
81
|
-
#
|
72
|
+
# @!attribute debtor_name
|
73
|
+
# The sending bank will set debtor_name in production. You can simulate any value
|
74
|
+
# here.
|
82
75
|
#
|
83
76
|
# @return [String, nil]
|
84
|
-
optional :
|
77
|
+
optional :debtor_name, String
|
85
78
|
|
86
|
-
# @!attribute
|
87
|
-
# The sending bank will set
|
79
|
+
# @!attribute end_to_end_identification
|
80
|
+
# The sending bank will set end_to_end_identification in production. You can
|
88
81
|
# simulate any value here.
|
89
82
|
#
|
90
83
|
# @return [String, nil]
|
91
|
-
optional :
|
84
|
+
optional :end_to_end_identification, String
|
92
85
|
|
93
|
-
# @!attribute
|
94
|
-
# The sending bank will set
|
95
|
-
#
|
86
|
+
# @!attribute instructing_agent_routing_number
|
87
|
+
# The sending bank will set instructing_agent_routing_number in production. You
|
88
|
+
# can simulate any value here.
|
96
89
|
#
|
97
90
|
# @return [String, nil]
|
98
|
-
optional :
|
91
|
+
optional :instructing_agent_routing_number, String
|
99
92
|
|
100
|
-
# @!attribute
|
101
|
-
# The sending bank will set
|
102
|
-
#
|
103
|
-
#
|
104
|
-
# @return [String, nil]
|
105
|
-
optional :originator_to_beneficiary_information_line2, String
|
106
|
-
|
107
|
-
# @!attribute originator_to_beneficiary_information_line3
|
108
|
-
# The sending bank will set originator_to_beneficiary_information_line3 in
|
109
|
-
# production. You can simulate any value here.
|
93
|
+
# @!attribute instruction_identification
|
94
|
+
# The sending bank will set instruction_identification in production. You can
|
95
|
+
# simulate any value here.
|
110
96
|
#
|
111
97
|
# @return [String, nil]
|
112
|
-
optional :
|
98
|
+
optional :instruction_identification, String
|
113
99
|
|
114
|
-
# @!attribute
|
115
|
-
# The sending bank will set
|
116
|
-
#
|
100
|
+
# @!attribute unique_end_to_end_transaction_reference
|
101
|
+
# The sending bank will set unique_end_to_end_transaction_reference in production.
|
102
|
+
# You can simulate any value here.
|
117
103
|
#
|
118
104
|
# @return [String, nil]
|
119
|
-
optional :
|
105
|
+
optional :unique_end_to_end_transaction_reference, String
|
120
106
|
|
121
|
-
# @!attribute
|
122
|
-
# The sending bank will set
|
123
|
-
# value here.
|
107
|
+
# @!attribute unstructured_remittance_information
|
108
|
+
# The sending bank will set unstructured_remittance_information in production. You
|
109
|
+
# can simulate any value here.
|
124
110
|
#
|
125
111
|
# @return [String, nil]
|
126
|
-
optional :
|
112
|
+
optional :unstructured_remittance_information, String
|
127
113
|
|
128
114
|
# @!attribute wire_drawdown_request_id
|
129
115
|
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
@@ -132,7 +118,7 @@ module Increase
|
|
132
118
|
# @return [String, nil]
|
133
119
|
optional :wire_drawdown_request_id, String
|
134
120
|
|
135
|
-
# @!method initialize(account_number_id:, amount:,
|
121
|
+
# @!method initialize(account_number_id:, amount:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, end_to_end_identification: nil, instructing_agent_routing_number: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, wire_drawdown_request_id: nil, request_options: {})
|
136
122
|
# Some parameter documentations has been truncated, see
|
137
123
|
# {Increase::Models::Simulations::InboundWireTransferCreateParams} for more
|
138
124
|
# details.
|
@@ -141,35 +127,31 @@ module Increase
|
|
141
127
|
#
|
142
128
|
# @param amount [Integer] The transfer amount in cents. Must be positive.
|
143
129
|
#
|
144
|
-
# @param
|
145
|
-
#
|
146
|
-
# @param beneficiary_address_line2 [String] The sending bank will set beneficiary_address_line2 in production. You can simul
|
147
|
-
#
|
148
|
-
# @param beneficiary_address_line3 [String] The sending bank will set beneficiary_address_line3 in production. You can simul
|
130
|
+
# @param creditor_address_line1 [String] The sending bank will set creditor_address_line1 in production. You can simulate
|
149
131
|
#
|
150
|
-
# @param
|
132
|
+
# @param creditor_address_line2 [String] The sending bank will set creditor_address_line2 in production. You can simulate
|
151
133
|
#
|
152
|
-
# @param
|
134
|
+
# @param creditor_address_line3 [String] The sending bank will set creditor_address_line3 in production. You can simulate
|
153
135
|
#
|
154
|
-
# @param
|
136
|
+
# @param creditor_name [String] The sending bank will set creditor_name in production. You can simulate any valu
|
155
137
|
#
|
156
|
-
# @param
|
138
|
+
# @param debtor_address_line1 [String] The sending bank will set debtor_address_line1 in production. You can simulate a
|
157
139
|
#
|
158
|
-
# @param
|
140
|
+
# @param debtor_address_line2 [String] The sending bank will set debtor_address_line2 in production. You can simulate a
|
159
141
|
#
|
160
|
-
# @param
|
142
|
+
# @param debtor_address_line3 [String] The sending bank will set debtor_address_line3 in production. You can simulate a
|
161
143
|
#
|
162
|
-
# @param
|
144
|
+
# @param debtor_name [String] The sending bank will set debtor_name in production. You can simulate any value
|
163
145
|
#
|
164
|
-
# @param
|
146
|
+
# @param end_to_end_identification [String] The sending bank will set end_to_end_identification in production. You can simul
|
165
147
|
#
|
166
|
-
# @param
|
148
|
+
# @param instructing_agent_routing_number [String] The sending bank will set instructing_agent_routing_number in production. You ca
|
167
149
|
#
|
168
|
-
# @param
|
150
|
+
# @param instruction_identification [String] The sending bank will set instruction_identification in production. You can simu
|
169
151
|
#
|
170
|
-
# @param
|
152
|
+
# @param unique_end_to_end_transaction_reference [String] The sending bank will set unique_end_to_end_transaction_reference in production.
|
171
153
|
#
|
172
|
-
# @param
|
154
|
+
# @param unstructured_remittance_information [String] The sending bank will set unstructured_remittance_information in production. You
|
173
155
|
#
|
174
156
|
# @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
|
175
157
|
#
|
@@ -106,7 +106,7 @@ module Increase
|
|
106
106
|
)
|
107
107
|
end
|
108
108
|
|
109
|
-
# Approves
|
109
|
+
# Approves a Real-Time Payments Transfer in a pending_approval state.
|
110
110
|
#
|
111
111
|
# @overload approve(real_time_payments_transfer_id, request_options: {})
|
112
112
|
#
|
@@ -126,7 +126,7 @@ module Increase
|
|
126
126
|
)
|
127
127
|
end
|
128
128
|
|
129
|
-
# Cancels
|
129
|
+
# Cancels a Real-Time Payments Transfer in a pending_approval state.
|
130
130
|
#
|
131
131
|
# @overload cancel(real_time_payments_transfer_id, request_options: {})
|
132
132
|
#
|
@@ -10,41 +10,37 @@ module Increase
|
|
10
10
|
#
|
11
11
|
# Simulates an [Inbound Wire Transfer](#inbound-wire-transfers) to your account.
|
12
12
|
#
|
13
|
-
# @overload create(account_number_id:, amount:,
|
13
|
+
# @overload create(account_number_id:, amount:, creditor_address_line1: nil, creditor_address_line2: nil, creditor_address_line3: nil, creditor_name: nil, debtor_address_line1: nil, debtor_address_line2: nil, debtor_address_line3: nil, debtor_name: nil, end_to_end_identification: nil, instructing_agent_routing_number: nil, instruction_identification: nil, unique_end_to_end_transaction_reference: nil, unstructured_remittance_information: nil, wire_drawdown_request_id: nil, request_options: {})
|
14
14
|
#
|
15
15
|
# @param account_number_id [String] The identifier of the Account Number the inbound Wire Transfer is for.
|
16
16
|
#
|
17
17
|
# @param amount [Integer] The transfer amount in cents. Must be positive.
|
18
18
|
#
|
19
|
-
# @param
|
19
|
+
# @param creditor_address_line1 [String] The sending bank will set creditor_address_line1 in production. You can simulate
|
20
20
|
#
|
21
|
-
# @param
|
21
|
+
# @param creditor_address_line2 [String] The sending bank will set creditor_address_line2 in production. You can simulate
|
22
22
|
#
|
23
|
-
# @param
|
23
|
+
# @param creditor_address_line3 [String] The sending bank will set creditor_address_line3 in production. You can simulate
|
24
24
|
#
|
25
|
-
# @param
|
25
|
+
# @param creditor_name [String] The sending bank will set creditor_name in production. You can simulate any valu
|
26
26
|
#
|
27
|
-
# @param
|
27
|
+
# @param debtor_address_line1 [String] The sending bank will set debtor_address_line1 in production. You can simulate a
|
28
28
|
#
|
29
|
-
# @param
|
29
|
+
# @param debtor_address_line2 [String] The sending bank will set debtor_address_line2 in production. You can simulate a
|
30
30
|
#
|
31
|
-
# @param
|
31
|
+
# @param debtor_address_line3 [String] The sending bank will set debtor_address_line3 in production. You can simulate a
|
32
32
|
#
|
33
|
-
# @param
|
33
|
+
# @param debtor_name [String] The sending bank will set debtor_name in production. You can simulate any value
|
34
34
|
#
|
35
|
-
# @param
|
35
|
+
# @param end_to_end_identification [String] The sending bank will set end_to_end_identification in production. You can simul
|
36
36
|
#
|
37
|
-
# @param
|
37
|
+
# @param instructing_agent_routing_number [String] The sending bank will set instructing_agent_routing_number in production. You ca
|
38
38
|
#
|
39
|
-
# @param
|
39
|
+
# @param instruction_identification [String] The sending bank will set instruction_identification in production. You can simu
|
40
40
|
#
|
41
|
-
# @param
|
41
|
+
# @param unique_end_to_end_transaction_reference [String] The sending bank will set unique_end_to_end_transaction_reference in production.
|
42
42
|
#
|
43
|
-
# @param
|
44
|
-
#
|
45
|
-
# @param originator_to_beneficiary_information_line4 [String] The sending bank will set originator_to_beneficiary_information_line4 in product
|
46
|
-
#
|
47
|
-
# @param sender_reference [String] The sending bank will set sender_reference in production. You can simulate any v
|
43
|
+
# @param unstructured_remittance_information [String] The sending bank will set unstructured_remittance_information in production. You
|
48
44
|
#
|
49
45
|
# @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
|
50
46
|
#
|
data/lib/increase/version.rb
CHANGED
@@ -23,125 +23,109 @@ module Increase
|
|
23
23
|
sig { returns(Integer) }
|
24
24
|
attr_accessor :amount
|
25
25
|
|
26
|
-
# The sending bank will set
|
27
|
-
#
|
26
|
+
# The sending bank will set creditor_address_line1 in production. You can simulate
|
27
|
+
# any value here.
|
28
28
|
sig { returns(T.nilable(String)) }
|
29
|
-
attr_reader :
|
29
|
+
attr_reader :creditor_address_line1
|
30
30
|
|
31
|
-
sig { params(
|
32
|
-
attr_writer :
|
31
|
+
sig { params(creditor_address_line1: String).void }
|
32
|
+
attr_writer :creditor_address_line1
|
33
33
|
|
34
|
-
# The sending bank will set
|
35
|
-
#
|
34
|
+
# The sending bank will set creditor_address_line2 in production. You can simulate
|
35
|
+
# any value here.
|
36
36
|
sig { returns(T.nilable(String)) }
|
37
|
-
attr_reader :
|
37
|
+
attr_reader :creditor_address_line2
|
38
38
|
|
39
|
-
sig { params(
|
40
|
-
attr_writer :
|
39
|
+
sig { params(creditor_address_line2: String).void }
|
40
|
+
attr_writer :creditor_address_line2
|
41
41
|
|
42
|
-
# The sending bank will set
|
43
|
-
#
|
42
|
+
# The sending bank will set creditor_address_line3 in production. You can simulate
|
43
|
+
# any value here.
|
44
44
|
sig { returns(T.nilable(String)) }
|
45
|
-
attr_reader :
|
45
|
+
attr_reader :creditor_address_line3
|
46
46
|
|
47
|
-
sig { params(
|
48
|
-
attr_writer :
|
47
|
+
sig { params(creditor_address_line3: String).void }
|
48
|
+
attr_writer :creditor_address_line3
|
49
49
|
|
50
|
-
# The sending bank will set
|
50
|
+
# The sending bank will set creditor_name in production. You can simulate any
|
51
51
|
# value here.
|
52
52
|
sig { returns(T.nilable(String)) }
|
53
|
-
attr_reader :
|
53
|
+
attr_reader :creditor_name
|
54
54
|
|
55
|
-
sig { params(
|
56
|
-
attr_writer :
|
55
|
+
sig { params(creditor_name: String).void }
|
56
|
+
attr_writer :creditor_name
|
57
57
|
|
58
|
-
# The sending bank will set
|
58
|
+
# The sending bank will set debtor_address_line1 in production. You can simulate
|
59
59
|
# any value here.
|
60
60
|
sig { returns(T.nilable(String)) }
|
61
|
-
attr_reader :
|
62
|
-
|
63
|
-
sig { params(beneficiary_reference: String).void }
|
64
|
-
attr_writer :beneficiary_reference
|
65
|
-
|
66
|
-
# The sending bank will set originator_address_line1 in production. You can
|
67
|
-
# simulate any value here.
|
68
|
-
sig { returns(T.nilable(String)) }
|
69
|
-
attr_reader :originator_address_line1
|
61
|
+
attr_reader :debtor_address_line1
|
70
62
|
|
71
|
-
sig { params(
|
72
|
-
attr_writer :
|
63
|
+
sig { params(debtor_address_line1: String).void }
|
64
|
+
attr_writer :debtor_address_line1
|
73
65
|
|
74
|
-
# The sending bank will set
|
75
|
-
#
|
66
|
+
# The sending bank will set debtor_address_line2 in production. You can simulate
|
67
|
+
# any value here.
|
76
68
|
sig { returns(T.nilable(String)) }
|
77
|
-
attr_reader :
|
69
|
+
attr_reader :debtor_address_line2
|
78
70
|
|
79
|
-
sig { params(
|
80
|
-
attr_writer :
|
71
|
+
sig { params(debtor_address_line2: String).void }
|
72
|
+
attr_writer :debtor_address_line2
|
81
73
|
|
82
|
-
# The sending bank will set
|
83
|
-
#
|
74
|
+
# The sending bank will set debtor_address_line3 in production. You can simulate
|
75
|
+
# any value here.
|
84
76
|
sig { returns(T.nilable(String)) }
|
85
|
-
attr_reader :
|
77
|
+
attr_reader :debtor_address_line3
|
86
78
|
|
87
|
-
sig { params(
|
88
|
-
attr_writer :
|
79
|
+
sig { params(debtor_address_line3: String).void }
|
80
|
+
attr_writer :debtor_address_line3
|
89
81
|
|
90
|
-
# The sending bank will set
|
91
|
-
#
|
82
|
+
# The sending bank will set debtor_name in production. You can simulate any value
|
83
|
+
# here.
|
92
84
|
sig { returns(T.nilable(String)) }
|
93
|
-
attr_reader :
|
85
|
+
attr_reader :debtor_name
|
94
86
|
|
95
|
-
sig { params(
|
96
|
-
attr_writer :
|
87
|
+
sig { params(debtor_name: String).void }
|
88
|
+
attr_writer :debtor_name
|
97
89
|
|
98
|
-
# The sending bank will set
|
90
|
+
# The sending bank will set end_to_end_identification in production. You can
|
99
91
|
# simulate any value here.
|
100
92
|
sig { returns(T.nilable(String)) }
|
101
|
-
attr_reader :
|
102
|
-
|
103
|
-
sig { params(originator_routing_number: String).void }
|
104
|
-
attr_writer :originator_routing_number
|
105
|
-
|
106
|
-
# The sending bank will set originator_to_beneficiary_information_line1 in
|
107
|
-
# production. You can simulate any value here.
|
108
|
-
sig { returns(T.nilable(String)) }
|
109
|
-
attr_reader :originator_to_beneficiary_information_line1
|
93
|
+
attr_reader :end_to_end_identification
|
110
94
|
|
111
|
-
sig { params(
|
112
|
-
attr_writer :
|
95
|
+
sig { params(end_to_end_identification: String).void }
|
96
|
+
attr_writer :end_to_end_identification
|
113
97
|
|
114
|
-
# The sending bank will set
|
115
|
-
#
|
98
|
+
# The sending bank will set instructing_agent_routing_number in production. You
|
99
|
+
# can simulate any value here.
|
116
100
|
sig { returns(T.nilable(String)) }
|
117
|
-
attr_reader :
|
101
|
+
attr_reader :instructing_agent_routing_number
|
118
102
|
|
119
|
-
sig { params(
|
120
|
-
attr_writer :
|
103
|
+
sig { params(instructing_agent_routing_number: String).void }
|
104
|
+
attr_writer :instructing_agent_routing_number
|
121
105
|
|
122
|
-
# The sending bank will set
|
123
|
-
#
|
106
|
+
# The sending bank will set instruction_identification in production. You can
|
107
|
+
# simulate any value here.
|
124
108
|
sig { returns(T.nilable(String)) }
|
125
|
-
attr_reader :
|
109
|
+
attr_reader :instruction_identification
|
126
110
|
|
127
|
-
sig { params(
|
128
|
-
attr_writer :
|
111
|
+
sig { params(instruction_identification: String).void }
|
112
|
+
attr_writer :instruction_identification
|
129
113
|
|
130
|
-
# The sending bank will set
|
131
|
-
#
|
114
|
+
# The sending bank will set unique_end_to_end_transaction_reference in production.
|
115
|
+
# You can simulate any value here.
|
132
116
|
sig { returns(T.nilable(String)) }
|
133
|
-
attr_reader :
|
117
|
+
attr_reader :unique_end_to_end_transaction_reference
|
134
118
|
|
135
|
-
sig { params(
|
136
|
-
attr_writer :
|
119
|
+
sig { params(unique_end_to_end_transaction_reference: String).void }
|
120
|
+
attr_writer :unique_end_to_end_transaction_reference
|
137
121
|
|
138
|
-
# The sending bank will set
|
139
|
-
# value here.
|
122
|
+
# The sending bank will set unstructured_remittance_information in production. You
|
123
|
+
# can simulate any value here.
|
140
124
|
sig { returns(T.nilable(String)) }
|
141
|
-
attr_reader :
|
125
|
+
attr_reader :unstructured_remittance_information
|
142
126
|
|
143
|
-
sig { params(
|
144
|
-
attr_writer :
|
127
|
+
sig { params(unstructured_remittance_information: String).void }
|
128
|
+
attr_writer :unstructured_remittance_information
|
145
129
|
|
146
130
|
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
147
131
|
# fulfilling.
|
@@ -155,21 +139,19 @@ module Increase
|
|
155
139
|
params(
|
156
140
|
account_number_id: String,
|
157
141
|
amount: Integer,
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
originator_to_beneficiary_information_line4: String,
|
172
|
-
sender_reference: String,
|
142
|
+
creditor_address_line1: String,
|
143
|
+
creditor_address_line2: String,
|
144
|
+
creditor_address_line3: String,
|
145
|
+
creditor_name: String,
|
146
|
+
debtor_address_line1: String,
|
147
|
+
debtor_address_line2: String,
|
148
|
+
debtor_address_line3: String,
|
149
|
+
debtor_name: String,
|
150
|
+
end_to_end_identification: String,
|
151
|
+
instructing_agent_routing_number: String,
|
152
|
+
instruction_identification: String,
|
153
|
+
unique_end_to_end_transaction_reference: String,
|
154
|
+
unstructured_remittance_information: String,
|
173
155
|
wire_drawdown_request_id: String,
|
174
156
|
request_options: Increase::RequestOptions::OrHash
|
175
157
|
).returns(T.attached_class)
|
@@ -179,51 +161,45 @@ module Increase
|
|
179
161
|
account_number_id:,
|
180
162
|
# The transfer amount in cents. Must be positive.
|
181
163
|
amount:,
|
182
|
-
# The sending bank will set
|
183
|
-
#
|
184
|
-
|
185
|
-
# The sending bank will set
|
186
|
-
#
|
187
|
-
|
188
|
-
# The sending bank will set
|
189
|
-
#
|
190
|
-
|
191
|
-
# The sending bank will set
|
164
|
+
# The sending bank will set creditor_address_line1 in production. You can simulate
|
165
|
+
# any value here.
|
166
|
+
creditor_address_line1: nil,
|
167
|
+
# The sending bank will set creditor_address_line2 in production. You can simulate
|
168
|
+
# any value here.
|
169
|
+
creditor_address_line2: nil,
|
170
|
+
# The sending bank will set creditor_address_line3 in production. You can simulate
|
171
|
+
# any value here.
|
172
|
+
creditor_address_line3: nil,
|
173
|
+
# The sending bank will set creditor_name in production. You can simulate any
|
192
174
|
# value here.
|
193
|
-
|
194
|
-
# The sending bank will set
|
175
|
+
creditor_name: nil,
|
176
|
+
# The sending bank will set debtor_address_line1 in production. You can simulate
|
195
177
|
# any value here.
|
196
|
-
|
197
|
-
# The sending bank will set
|
198
|
-
#
|
199
|
-
|
200
|
-
# The sending bank will set
|
201
|
-
#
|
202
|
-
|
203
|
-
# The sending bank will set
|
178
|
+
debtor_address_line1: nil,
|
179
|
+
# The sending bank will set debtor_address_line2 in production. You can simulate
|
180
|
+
# any value here.
|
181
|
+
debtor_address_line2: nil,
|
182
|
+
# The sending bank will set debtor_address_line3 in production. You can simulate
|
183
|
+
# any value here.
|
184
|
+
debtor_address_line3: nil,
|
185
|
+
# The sending bank will set debtor_name in production. You can simulate any value
|
186
|
+
# here.
|
187
|
+
debtor_name: nil,
|
188
|
+
# The sending bank will set end_to_end_identification in production. You can
|
204
189
|
# simulate any value here.
|
205
|
-
|
206
|
-
# The sending bank will set
|
207
|
-
# value here.
|
208
|
-
|
209
|
-
# The sending bank will set
|
190
|
+
end_to_end_identification: nil,
|
191
|
+
# The sending bank will set instructing_agent_routing_number in production. You
|
192
|
+
# can simulate any value here.
|
193
|
+
instructing_agent_routing_number: nil,
|
194
|
+
# The sending bank will set instruction_identification in production. You can
|
210
195
|
# simulate any value here.
|
211
|
-
|
212
|
-
# The sending bank will set
|
213
|
-
#
|
214
|
-
|
215
|
-
# The sending bank will set
|
216
|
-
#
|
217
|
-
|
218
|
-
# The sending bank will set originator_to_beneficiary_information_line3 in
|
219
|
-
# production. You can simulate any value here.
|
220
|
-
originator_to_beneficiary_information_line3: nil,
|
221
|
-
# The sending bank will set originator_to_beneficiary_information_line4 in
|
222
|
-
# production. You can simulate any value here.
|
223
|
-
originator_to_beneficiary_information_line4: nil,
|
224
|
-
# The sending bank will set sender_reference in production. You can simulate any
|
225
|
-
# value here.
|
226
|
-
sender_reference: nil,
|
196
|
+
instruction_identification: nil,
|
197
|
+
# The sending bank will set unique_end_to_end_transaction_reference in production.
|
198
|
+
# You can simulate any value here.
|
199
|
+
unique_end_to_end_transaction_reference: nil,
|
200
|
+
# The sending bank will set unstructured_remittance_information in production. You
|
201
|
+
# can simulate any value here.
|
202
|
+
unstructured_remittance_information: nil,
|
227
203
|
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
228
204
|
# fulfilling.
|
229
205
|
wire_drawdown_request_id: nil,
|
@@ -236,21 +212,19 @@ module Increase
|
|
236
212
|
{
|
237
213
|
account_number_id: String,
|
238
214
|
amount: Integer,
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
originator_to_beneficiary_information_line4: String,
|
253
|
-
sender_reference: String,
|
215
|
+
creditor_address_line1: String,
|
216
|
+
creditor_address_line2: String,
|
217
|
+
creditor_address_line3: String,
|
218
|
+
creditor_name: String,
|
219
|
+
debtor_address_line1: String,
|
220
|
+
debtor_address_line2: String,
|
221
|
+
debtor_address_line3: String,
|
222
|
+
debtor_name: String,
|
223
|
+
end_to_end_identification: String,
|
224
|
+
instructing_agent_routing_number: String,
|
225
|
+
instruction_identification: String,
|
226
|
+
unique_end_to_end_transaction_reference: String,
|
227
|
+
unstructured_remittance_information: String,
|
254
228
|
wire_drawdown_request_id: String,
|
255
229
|
request_options: Increase::RequestOptions
|
256
230
|
}
|
@@ -104,7 +104,7 @@ module Increase
|
|
104
104
|
)
|
105
105
|
end
|
106
106
|
|
107
|
-
# Approves
|
107
|
+
# Approves a Real-Time Payments Transfer in a pending_approval state.
|
108
108
|
sig do
|
109
109
|
params(
|
110
110
|
real_time_payments_transfer_id: String,
|
@@ -118,7 +118,7 @@ module Increase
|
|
118
118
|
)
|
119
119
|
end
|
120
120
|
|
121
|
-
# Cancels
|
121
|
+
# Cancels a Real-Time Payments Transfer in a pending_approval state.
|
122
122
|
sig do
|
123
123
|
params(
|
124
124
|
real_time_payments_transfer_id: String,
|
@@ -9,21 +9,19 @@ module Increase
|
|
9
9
|
params(
|
10
10
|
account_number_id: String,
|
11
11
|
amount: Integer,
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
originator_to_beneficiary_information_line4: String,
|
26
|
-
sender_reference: String,
|
12
|
+
creditor_address_line1: String,
|
13
|
+
creditor_address_line2: String,
|
14
|
+
creditor_address_line3: String,
|
15
|
+
creditor_name: String,
|
16
|
+
debtor_address_line1: String,
|
17
|
+
debtor_address_line2: String,
|
18
|
+
debtor_address_line3: String,
|
19
|
+
debtor_name: String,
|
20
|
+
end_to_end_identification: String,
|
21
|
+
instructing_agent_routing_number: String,
|
22
|
+
instruction_identification: String,
|
23
|
+
unique_end_to_end_transaction_reference: String,
|
24
|
+
unstructured_remittance_information: String,
|
27
25
|
wire_drawdown_request_id: String,
|
28
26
|
request_options: Increase::RequestOptions::OrHash
|
29
27
|
).returns(Increase::InboundWireTransfer)
|
@@ -33,51 +31,45 @@ module Increase
|
|
33
31
|
account_number_id:,
|
34
32
|
# The transfer amount in cents. Must be positive.
|
35
33
|
amount:,
|
36
|
-
# The sending bank will set
|
37
|
-
#
|
38
|
-
|
39
|
-
# The sending bank will set
|
40
|
-
#
|
41
|
-
|
42
|
-
# The sending bank will set
|
43
|
-
#
|
44
|
-
|
45
|
-
# The sending bank will set
|
34
|
+
# The sending bank will set creditor_address_line1 in production. You can simulate
|
35
|
+
# any value here.
|
36
|
+
creditor_address_line1: nil,
|
37
|
+
# The sending bank will set creditor_address_line2 in production. You can simulate
|
38
|
+
# any value here.
|
39
|
+
creditor_address_line2: nil,
|
40
|
+
# The sending bank will set creditor_address_line3 in production. You can simulate
|
41
|
+
# any value here.
|
42
|
+
creditor_address_line3: nil,
|
43
|
+
# The sending bank will set creditor_name in production. You can simulate any
|
46
44
|
# value here.
|
47
|
-
|
48
|
-
# The sending bank will set
|
45
|
+
creditor_name: nil,
|
46
|
+
# The sending bank will set debtor_address_line1 in production. You can simulate
|
49
47
|
# any value here.
|
50
|
-
|
51
|
-
# The sending bank will set
|
52
|
-
#
|
53
|
-
|
54
|
-
# The sending bank will set
|
55
|
-
#
|
56
|
-
|
57
|
-
# The sending bank will set
|
48
|
+
debtor_address_line1: nil,
|
49
|
+
# The sending bank will set debtor_address_line2 in production. You can simulate
|
50
|
+
# any value here.
|
51
|
+
debtor_address_line2: nil,
|
52
|
+
# The sending bank will set debtor_address_line3 in production. You can simulate
|
53
|
+
# any value here.
|
54
|
+
debtor_address_line3: nil,
|
55
|
+
# The sending bank will set debtor_name in production. You can simulate any value
|
56
|
+
# here.
|
57
|
+
debtor_name: nil,
|
58
|
+
# The sending bank will set end_to_end_identification in production. You can
|
58
59
|
# simulate any value here.
|
59
|
-
|
60
|
-
# The sending bank will set
|
61
|
-
# value here.
|
62
|
-
|
63
|
-
# The sending bank will set
|
60
|
+
end_to_end_identification: nil,
|
61
|
+
# The sending bank will set instructing_agent_routing_number in production. You
|
62
|
+
# can simulate any value here.
|
63
|
+
instructing_agent_routing_number: nil,
|
64
|
+
# The sending bank will set instruction_identification in production. You can
|
64
65
|
# simulate any value here.
|
65
|
-
|
66
|
-
# The sending bank will set
|
67
|
-
#
|
68
|
-
|
69
|
-
# The sending bank will set
|
70
|
-
#
|
71
|
-
|
72
|
-
# The sending bank will set originator_to_beneficiary_information_line3 in
|
73
|
-
# production. You can simulate any value here.
|
74
|
-
originator_to_beneficiary_information_line3: nil,
|
75
|
-
# The sending bank will set originator_to_beneficiary_information_line4 in
|
76
|
-
# production. You can simulate any value here.
|
77
|
-
originator_to_beneficiary_information_line4: nil,
|
78
|
-
# The sending bank will set sender_reference in production. You can simulate any
|
79
|
-
# value here.
|
80
|
-
sender_reference: nil,
|
66
|
+
instruction_identification: nil,
|
67
|
+
# The sending bank will set unique_end_to_end_transaction_reference in production.
|
68
|
+
# You can simulate any value here.
|
69
|
+
unique_end_to_end_transaction_reference: nil,
|
70
|
+
# The sending bank will set unstructured_remittance_information in production. You
|
71
|
+
# can simulate any value here.
|
72
|
+
unstructured_remittance_information: nil,
|
81
73
|
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
82
74
|
# fulfilling.
|
83
75
|
wire_drawdown_request_id: nil,
|
@@ -5,21 +5,19 @@ module Increase
|
|
5
5
|
{
|
6
6
|
account_number_id: String,
|
7
7
|
amount: Integer,
|
8
|
-
:
|
9
|
-
:
|
10
|
-
:
|
11
|
-
|
12
|
-
|
13
|
-
:
|
14
|
-
:
|
15
|
-
:
|
16
|
-
|
17
|
-
|
18
|
-
:
|
19
|
-
:
|
20
|
-
:
|
21
|
-
:originator_to_beneficiary_information_line4 => String,
|
22
|
-
sender_reference: String,
|
8
|
+
:creditor_address_line1 => String,
|
9
|
+
:creditor_address_line2 => String,
|
10
|
+
:creditor_address_line3 => String,
|
11
|
+
creditor_name: String,
|
12
|
+
:debtor_address_line1 => String,
|
13
|
+
:debtor_address_line2 => String,
|
14
|
+
:debtor_address_line3 => String,
|
15
|
+
debtor_name: String,
|
16
|
+
end_to_end_identification: String,
|
17
|
+
instructing_agent_routing_number: String,
|
18
|
+
instruction_identification: String,
|
19
|
+
unique_end_to_end_transaction_reference: String,
|
20
|
+
unstructured_remittance_information: String,
|
23
21
|
wire_drawdown_request_id: String
|
24
22
|
}
|
25
23
|
& Increase::Internal::Type::request_parameters
|
@@ -32,65 +30,57 @@ module Increase
|
|
32
30
|
|
33
31
|
attr_accessor amount: Integer
|
34
32
|
|
35
|
-
attr_reader
|
33
|
+
attr_reader creditor_address_line1: String?
|
36
34
|
|
37
|
-
def
|
35
|
+
def creditor_address_line1=: (String) -> String
|
38
36
|
|
39
|
-
attr_reader
|
37
|
+
attr_reader creditor_address_line2: String?
|
40
38
|
|
41
|
-
def
|
39
|
+
def creditor_address_line2=: (String) -> String
|
42
40
|
|
43
|
-
attr_reader
|
41
|
+
attr_reader creditor_address_line3: String?
|
44
42
|
|
45
|
-
def
|
43
|
+
def creditor_address_line3=: (String) -> String
|
46
44
|
|
47
|
-
attr_reader
|
45
|
+
attr_reader creditor_name: String?
|
48
46
|
|
49
|
-
def
|
47
|
+
def creditor_name=: (String) -> String
|
50
48
|
|
51
|
-
attr_reader
|
49
|
+
attr_reader debtor_address_line1: String?
|
52
50
|
|
53
|
-
def
|
51
|
+
def debtor_address_line1=: (String) -> String
|
54
52
|
|
55
|
-
attr_reader
|
53
|
+
attr_reader debtor_address_line2: String?
|
56
54
|
|
57
|
-
def
|
55
|
+
def debtor_address_line2=: (String) -> String
|
58
56
|
|
59
|
-
attr_reader
|
57
|
+
attr_reader debtor_address_line3: String?
|
60
58
|
|
61
|
-
def
|
59
|
+
def debtor_address_line3=: (String) -> String
|
62
60
|
|
63
|
-
attr_reader
|
61
|
+
attr_reader debtor_name: String?
|
64
62
|
|
65
|
-
def
|
63
|
+
def debtor_name=: (String) -> String
|
66
64
|
|
67
|
-
attr_reader
|
65
|
+
attr_reader end_to_end_identification: String?
|
68
66
|
|
69
|
-
def
|
67
|
+
def end_to_end_identification=: (String) -> String
|
70
68
|
|
71
|
-
attr_reader
|
69
|
+
attr_reader instructing_agent_routing_number: String?
|
72
70
|
|
73
|
-
def
|
71
|
+
def instructing_agent_routing_number=: (String) -> String
|
74
72
|
|
75
|
-
attr_reader
|
73
|
+
attr_reader instruction_identification: String?
|
76
74
|
|
77
|
-
def
|
75
|
+
def instruction_identification=: (String) -> String
|
78
76
|
|
79
|
-
attr_reader
|
77
|
+
attr_reader unique_end_to_end_transaction_reference: String?
|
80
78
|
|
81
|
-
def
|
79
|
+
def unique_end_to_end_transaction_reference=: (String) -> String
|
82
80
|
|
83
|
-
attr_reader
|
81
|
+
attr_reader unstructured_remittance_information: String?
|
84
82
|
|
85
|
-
def
|
86
|
-
|
87
|
-
attr_reader originator_to_beneficiary_information_line4: String?
|
88
|
-
|
89
|
-
def originator_to_beneficiary_information_line4=: (String) -> String
|
90
|
-
|
91
|
-
attr_reader sender_reference: String?
|
92
|
-
|
93
|
-
def sender_reference=: (String) -> String
|
83
|
+
def unstructured_remittance_information=: (String) -> String
|
94
84
|
|
95
85
|
attr_reader wire_drawdown_request_id: String?
|
96
86
|
|
@@ -99,21 +89,19 @@ module Increase
|
|
99
89
|
def initialize: (
|
100
90
|
account_number_id: String,
|
101
91
|
amount: Integer,
|
102
|
-
?
|
103
|
-
?
|
104
|
-
?
|
105
|
-
?
|
106
|
-
?
|
107
|
-
?
|
108
|
-
?
|
109
|
-
?
|
110
|
-
?
|
111
|
-
?
|
112
|
-
?
|
113
|
-
?
|
114
|
-
?
|
115
|
-
?originator_to_beneficiary_information_line4: String,
|
116
|
-
?sender_reference: String,
|
92
|
+
?creditor_address_line1: String,
|
93
|
+
?creditor_address_line2: String,
|
94
|
+
?creditor_address_line3: String,
|
95
|
+
?creditor_name: String,
|
96
|
+
?debtor_address_line1: String,
|
97
|
+
?debtor_address_line2: String,
|
98
|
+
?debtor_address_line3: String,
|
99
|
+
?debtor_name: String,
|
100
|
+
?end_to_end_identification: String,
|
101
|
+
?instructing_agent_routing_number: String,
|
102
|
+
?instruction_identification: String,
|
103
|
+
?unique_end_to_end_transaction_reference: String,
|
104
|
+
?unstructured_remittance_information: String,
|
117
105
|
?wire_drawdown_request_id: String,
|
118
106
|
?request_options: Increase::request_opts
|
119
107
|
) -> void
|
@@ -121,21 +109,19 @@ module Increase
|
|
121
109
|
def to_hash: -> {
|
122
110
|
account_number_id: String,
|
123
111
|
amount: Integer,
|
124
|
-
:
|
125
|
-
:
|
126
|
-
:
|
127
|
-
|
128
|
-
|
129
|
-
:
|
130
|
-
:
|
131
|
-
:
|
132
|
-
|
133
|
-
|
134
|
-
:
|
135
|
-
:
|
136
|
-
:
|
137
|
-
:originator_to_beneficiary_information_line4 => String,
|
138
|
-
sender_reference: String,
|
112
|
+
:creditor_address_line1 => String,
|
113
|
+
:creditor_address_line2 => String,
|
114
|
+
:creditor_address_line3 => String,
|
115
|
+
creditor_name: String,
|
116
|
+
:debtor_address_line1 => String,
|
117
|
+
:debtor_address_line2 => String,
|
118
|
+
:debtor_address_line3 => String,
|
119
|
+
debtor_name: String,
|
120
|
+
end_to_end_identification: String,
|
121
|
+
instructing_agent_routing_number: String,
|
122
|
+
instruction_identification: String,
|
123
|
+
unique_end_to_end_transaction_reference: String,
|
124
|
+
unstructured_remittance_information: String,
|
139
125
|
wire_drawdown_request_id: String,
|
140
126
|
request_options: Increase::RequestOptions
|
141
127
|
}
|
@@ -5,21 +5,19 @@ module Increase
|
|
5
5
|
def create: (
|
6
6
|
account_number_id: String,
|
7
7
|
amount: Integer,
|
8
|
-
?
|
9
|
-
?
|
10
|
-
?
|
11
|
-
?
|
12
|
-
?
|
13
|
-
?
|
14
|
-
?
|
15
|
-
?
|
16
|
-
?
|
17
|
-
?
|
18
|
-
?
|
19
|
-
?
|
20
|
-
?
|
21
|
-
?originator_to_beneficiary_information_line4: String,
|
22
|
-
?sender_reference: String,
|
8
|
+
?creditor_address_line1: String,
|
9
|
+
?creditor_address_line2: String,
|
10
|
+
?creditor_address_line3: String,
|
11
|
+
?creditor_name: String,
|
12
|
+
?debtor_address_line1: String,
|
13
|
+
?debtor_address_line2: String,
|
14
|
+
?debtor_address_line3: String,
|
15
|
+
?debtor_name: String,
|
16
|
+
?end_to_end_identification: String,
|
17
|
+
?instructing_agent_routing_number: String,
|
18
|
+
?instruction_identification: String,
|
19
|
+
?unique_end_to_end_transaction_reference: String,
|
20
|
+
?unstructured_remittance_information: String,
|
23
21
|
?wire_drawdown_request_id: String,
|
24
22
|
?request_options: Increase::request_opts
|
25
23
|
) -> Increase::InboundWireTransfer
|
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.44.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-08-
|
11
|
+
date: 2025-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|