increase 1.4.0 → 1.5.1
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 +17 -0
- data/README.md +1 -1
- data/lib/increase/models/card_payment.rb +3 -0
- data/lib/increase/models/declined_transaction.rb +3 -0
- data/lib/increase/models/simulations/card_authorization_create_params.rb +3 -0
- data/lib/increase/models/wire_transfer.rb +10 -1
- data/lib/increase/models/wire_transfer_create_params.rb +10 -1
- data/lib/increase/resources/wire_transfers.rb +3 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +7 -0
- data/rbi/increase/models/declined_transaction.rbi +7 -0
- data/rbi/increase/models/simulations/card_authorization_create_params.rbi +7 -0
- data/rbi/increase/models/wire_transfer.rbi +10 -0
- data/rbi/increase/models/wire_transfer_create_params.rbi +13 -0
- data/rbi/increase/resources/wire_transfers.rbi +4 -0
- data/sig/increase/models/card_payment.rbs +4 -0
- data/sig/increase/models/declined_transaction.rbs +4 -0
- data/sig/increase/models/simulations/card_authorization_create_params.rbs +4 -0
- data/sig/increase/models/wire_transfer.rbs +5 -0
- data/sig/increase/models/wire_transfer_create_params.rbs +7 -0
- data/sig/increase/resources/wire_transfers.rbs +1 -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: b99b775c9e61190acdc993c471aa4cccbe309accab8e09ffe953a1fa0d3020f9
|
4
|
+
data.tar.gz: ed4dd157e037706f1e6d84a380e1f6ca090ffdcb40f980fe0a01d5ed2b45f737
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c516594dc335c5c1d4bef9bbc0c641218232c7c2eb3f53510d879fd4a6d6dea8a59cdfcc147c68d80f470587f987d8552225f7a971a96363f1dd5b813a1ea010
|
7
|
+
data.tar.gz: 26729d7a64afbd3dc8792bbaff398df74ffe8726fd300bdaa34a7f7298c526aafc67ef6fa1c4cdcd7a31869b98e66a6bc9b1bbf96b754d4c6f18abdf6b145651
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.5.1 (2025-06-26)
|
4
|
+
|
5
|
+
Full Changelog: [v1.5.0...v1.5.1](https://github.com/Increase/increase-ruby/compare/v1.5.0...v1.5.1)
|
6
|
+
|
7
|
+
### Bug Fixes
|
8
|
+
|
9
|
+
* **ci:** release-doctor — report correct token name ([0b4d159](https://github.com/Increase/increase-ruby/commit/0b4d15981b94bb9b8d4debe1af14899bee48385a))
|
10
|
+
|
11
|
+
## 1.5.0 (2025-06-26)
|
12
|
+
|
13
|
+
Full Changelog: [v1.4.0...v1.5.0](https://github.com/Increase/increase-ruby/compare/v1.4.0...v1.5.0)
|
14
|
+
|
15
|
+
### Features
|
16
|
+
|
17
|
+
* **api:** api update ([c5054f1](https://github.com/Increase/increase-ruby/commit/c5054f152ece6c990269c83a7c7537fc137ac665))
|
18
|
+
* **api:** api update ([dbddbd3](https://github.com/Increase/increase-ruby/commit/dbddbd30aae44f3600916e4e0bef10d35f866a45))
|
19
|
+
|
3
20
|
## 1.4.0 (2025-06-25)
|
4
21
|
|
5
22
|
Full Changelog: [v1.3.0...v1.4.0](https://github.com/Increase/increase-ruby/compare/v1.3.0...v1.4.0)
|
data/README.md
CHANGED
@@ -2156,6 +2156,9 @@ module Increase
|
|
2156
2156
|
# The given CVV2 did not match the card's value.
|
2157
2157
|
CVV2_MISMATCH = :cvv2_mismatch
|
2158
2158
|
|
2159
|
+
# The given PIN did not match the card's value.
|
2160
|
+
PIN_MISMATCH = :pin_mismatch
|
2161
|
+
|
2159
2162
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
2160
2163
|
CARD_EXPIRATION_MISMATCH = :card_expiration_mismatch
|
2161
2164
|
|
@@ -1068,6 +1068,9 @@ module Increase
|
|
1068
1068
|
# The given CVV2 did not match the card's value.
|
1069
1069
|
CVV2_MISMATCH = :cvv2_mismatch
|
1070
1070
|
|
1071
|
+
# The given PIN did not match the card's value.
|
1072
|
+
PIN_MISMATCH = :pin_mismatch
|
1073
|
+
|
1071
1074
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
1072
1075
|
CARD_EXPIRATION_MISMATCH = :card_expiration_mismatch
|
1073
1076
|
|
@@ -192,6 +192,9 @@ module Increase
|
|
192
192
|
# The given CVV2 did not match the card's value.
|
193
193
|
CVV2_MISMATCH = :cvv2_mismatch
|
194
194
|
|
195
|
+
# The given PIN did not match the card's value.
|
196
|
+
PIN_MISMATCH = :pin_mismatch
|
197
|
+
|
195
198
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
196
199
|
CARD_EXPIRATION_MISMATCH = :card_expiration_mismatch
|
197
200
|
|
@@ -100,6 +100,13 @@ module Increase
|
|
100
100
|
# @return [String, nil]
|
101
101
|
required :idempotency_key, String, nil?: true
|
102
102
|
|
103
|
+
# @!attribute inbound_wire_drawdown_request_id
|
104
|
+
# The ID of an Inbound Wire Drawdown Request in response to which this transfer
|
105
|
+
# was sent.
|
106
|
+
#
|
107
|
+
# @return [String, nil]
|
108
|
+
required :inbound_wire_drawdown_request_id, String, nil?: true
|
109
|
+
|
103
110
|
# @!attribute message_to_recipient
|
104
111
|
# The message that will show on the recipient's bank statement.
|
105
112
|
#
|
@@ -189,7 +196,7 @@ module Increase
|
|
189
196
|
# @return [Symbol, Increase::Models::WireTransfer::Type]
|
190
197
|
required :type, enum: -> { Increase::WireTransfer::Type }
|
191
198
|
|
192
|
-
# @!method initialize(id:, account_id:, account_number:, amount:, approval:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, cancellation:, created_at:, created_by:, currency:, external_account_id:, idempotency_key:, message_to_recipient:, network:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, pending_transaction_id:, reversal:, routing_number:, source_account_number_id:, status:, submission:, transaction_id:, type:)
|
199
|
+
# @!method initialize(id:, account_id:, account_number:, amount:, approval:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, cancellation:, created_at:, created_by:, currency:, external_account_id:, idempotency_key:, inbound_wire_drawdown_request_id:, message_to_recipient:, network:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, pending_transaction_id:, reversal:, routing_number:, source_account_number_id:, status:, submission:, transaction_id:, type:)
|
193
200
|
# Some parameter documentations has been truncated, see
|
194
201
|
# {Increase::Models::WireTransfer} for more details.
|
195
202
|
#
|
@@ -226,6 +233,8 @@ module Increase
|
|
226
233
|
#
|
227
234
|
# @param idempotency_key [String, nil] The idempotency key you chose for this object. This value is unique across Incre
|
228
235
|
#
|
236
|
+
# @param inbound_wire_drawdown_request_id [String, nil] The ID of an Inbound Wire Drawdown Request in response to which this transfer wa
|
237
|
+
#
|
229
238
|
# @param message_to_recipient [String, nil] The message that will show on the recipient's bank statement.
|
230
239
|
#
|
231
240
|
# @param network [Symbol, Increase::Models::WireTransfer::Network] The transfer's network.
|
@@ -62,6 +62,13 @@ module Increase
|
|
62
62
|
# @return [String, nil]
|
63
63
|
optional :external_account_id, String
|
64
64
|
|
65
|
+
# @!attribute inbound_wire_drawdown_request_id
|
66
|
+
# The ID of an Inbound Wire Drawdown Request in response to which this transfer is
|
67
|
+
# being sent.
|
68
|
+
#
|
69
|
+
# @return [String, nil]
|
70
|
+
optional :inbound_wire_drawdown_request_id, String
|
71
|
+
|
65
72
|
# @!attribute originator_address_line1
|
66
73
|
# The originator's address line 1. This is only necessary if you're transferring
|
67
74
|
# from a commingled account. Otherwise, we'll use the associated entity's details.
|
@@ -109,7 +116,7 @@ module Increase
|
|
109
116
|
# @return [String, nil]
|
110
117
|
optional :source_account_number_id, String
|
111
118
|
|
112
|
-
# @!method initialize(account_id:, amount:, beneficiary_name:, message_to_recipient:, account_number: nil, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, external_account_id: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, require_approval: nil, routing_number: nil, source_account_number_id: nil, request_options: {})
|
119
|
+
# @!method initialize(account_id:, amount:, beneficiary_name:, message_to_recipient:, account_number: nil, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, external_account_id: nil, inbound_wire_drawdown_request_id: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, require_approval: nil, routing_number: nil, source_account_number_id: nil, request_options: {})
|
113
120
|
# Some parameter documentations has been truncated, see
|
114
121
|
# {Increase::Models::WireTransferCreateParams} for more details.
|
115
122
|
#
|
@@ -131,6 +138,8 @@ module Increase
|
|
131
138
|
#
|
132
139
|
# @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
|
133
140
|
#
|
141
|
+
# @param inbound_wire_drawdown_request_id [String] The ID of an Inbound Wire Drawdown Request in response to which this transfer is
|
142
|
+
#
|
134
143
|
# @param originator_address_line1 [String] The originator's address line 1. This is only necessary if you're transferring f
|
135
144
|
#
|
136
145
|
# @param originator_address_line2 [String] The originator's address line 2. This is only necessary if you're transferring f
|
@@ -8,7 +8,7 @@ module Increase
|
|
8
8
|
#
|
9
9
|
# Create a Wire Transfer
|
10
10
|
#
|
11
|
-
# @overload create(account_id:, amount:, beneficiary_name:, message_to_recipient:, account_number: nil, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, external_account_id: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, require_approval: nil, routing_number: nil, source_account_number_id: nil, request_options: {})
|
11
|
+
# @overload create(account_id:, amount:, beneficiary_name:, message_to_recipient:, account_number: nil, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, external_account_id: nil, inbound_wire_drawdown_request_id: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, require_approval: nil, routing_number: nil, source_account_number_id: nil, request_options: {})
|
12
12
|
#
|
13
13
|
# @param account_id [String] The identifier for the account that will send the transfer.
|
14
14
|
#
|
@@ -28,6 +28,8 @@ module Increase
|
|
28
28
|
#
|
29
29
|
# @param external_account_id [String] The ID of an External Account to initiate a transfer to. If this parameter is pr
|
30
30
|
#
|
31
|
+
# @param inbound_wire_drawdown_request_id [String] The ID of an Inbound Wire Drawdown Request in response to which this transfer is
|
32
|
+
#
|
31
33
|
# @param originator_address_line1 [String] The originator's address line 1. This is only necessary if you're transferring f
|
32
34
|
#
|
33
35
|
# @param originator_address_line2 [String] The originator's address line 2. This is only necessary if you're transferring f
|
data/lib/increase/version.rb
CHANGED
@@ -4081,6 +4081,13 @@ module Increase
|
|
4081
4081
|
Increase::CardPayment::Element::CardDecline::Reason::TaggedSymbol
|
4082
4082
|
)
|
4083
4083
|
|
4084
|
+
# The given PIN did not match the card's value.
|
4085
|
+
PIN_MISMATCH =
|
4086
|
+
T.let(
|
4087
|
+
:pin_mismatch,
|
4088
|
+
Increase::CardPayment::Element::CardDecline::Reason::TaggedSymbol
|
4089
|
+
)
|
4090
|
+
|
4084
4091
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
4085
4092
|
CARD_EXPIRATION_MISMATCH =
|
4086
4093
|
T.let(
|
@@ -1996,6 +1996,13 @@ module Increase
|
|
1996
1996
|
Increase::DeclinedTransaction::Source::CardDecline::Reason::TaggedSymbol
|
1997
1997
|
)
|
1998
1998
|
|
1999
|
+
# The given PIN did not match the card's value.
|
2000
|
+
PIN_MISMATCH =
|
2001
|
+
T.let(
|
2002
|
+
:pin_mismatch,
|
2003
|
+
Increase::DeclinedTransaction::Source::CardDecline::Reason::TaggedSymbol
|
2004
|
+
)
|
2005
|
+
|
1999
2006
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
2000
2007
|
CARD_EXPIRATION_MISMATCH =
|
2001
2008
|
T.let(
|
@@ -348,6 +348,13 @@ module Increase
|
|
348
348
|
Increase::Simulations::CardAuthorizationCreateParams::DeclineReason::TaggedSymbol
|
349
349
|
)
|
350
350
|
|
351
|
+
# The given PIN did not match the card's value.
|
352
|
+
PIN_MISMATCH =
|
353
|
+
T.let(
|
354
|
+
:pin_mismatch,
|
355
|
+
Increase::Simulations::CardAuthorizationCreateParams::DeclineReason::TaggedSymbol
|
356
|
+
)
|
357
|
+
|
351
358
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
352
359
|
CARD_EXPIRATION_MISMATCH =
|
353
360
|
T.let(
|
@@ -95,6 +95,11 @@ module Increase
|
|
95
95
|
sig { returns(T.nilable(String)) }
|
96
96
|
attr_accessor :idempotency_key
|
97
97
|
|
98
|
+
# The ID of an Inbound Wire Drawdown Request in response to which this transfer
|
99
|
+
# was sent.
|
100
|
+
sig { returns(T.nilable(String)) }
|
101
|
+
attr_accessor :inbound_wire_drawdown_request_id
|
102
|
+
|
98
103
|
# The message that will show on the recipient's bank statement.
|
99
104
|
sig { returns(T.nilable(String)) }
|
100
105
|
attr_accessor :message_to_recipient
|
@@ -189,6 +194,7 @@ module Increase
|
|
189
194
|
currency: Increase::WireTransfer::Currency::OrSymbol,
|
190
195
|
external_account_id: T.nilable(String),
|
191
196
|
idempotency_key: T.nilable(String),
|
197
|
+
inbound_wire_drawdown_request_id: T.nilable(String),
|
192
198
|
message_to_recipient: T.nilable(String),
|
193
199
|
network: Increase::WireTransfer::Network::OrSymbol,
|
194
200
|
originator_address_line1: T.nilable(String),
|
@@ -242,6 +248,9 @@ module Increase
|
|
242
248
|
# Increase and is used to ensure that a request is only processed once. Learn more
|
243
249
|
# about [idempotency](https://increase.com/documentation/idempotency-keys).
|
244
250
|
idempotency_key:,
|
251
|
+
# The ID of an Inbound Wire Drawdown Request in response to which this transfer
|
252
|
+
# was sent.
|
253
|
+
inbound_wire_drawdown_request_id:,
|
245
254
|
# The message that will show on the recipient's bank statement.
|
246
255
|
message_to_recipient:,
|
247
256
|
# The transfer's network.
|
@@ -296,6 +305,7 @@ module Increase
|
|
296
305
|
currency: Increase::WireTransfer::Currency::TaggedSymbol,
|
297
306
|
external_account_id: T.nilable(String),
|
298
307
|
idempotency_key: T.nilable(String),
|
308
|
+
inbound_wire_drawdown_request_id: T.nilable(String),
|
299
309
|
message_to_recipient: T.nilable(String),
|
300
310
|
network: Increase::WireTransfer::Network::TaggedSymbol,
|
301
311
|
originator_address_line1: T.nilable(String),
|
@@ -63,6 +63,14 @@ module Increase
|
|
63
63
|
sig { params(external_account_id: String).void }
|
64
64
|
attr_writer :external_account_id
|
65
65
|
|
66
|
+
# The ID of an Inbound Wire Drawdown Request in response to which this transfer is
|
67
|
+
# being sent.
|
68
|
+
sig { returns(T.nilable(String)) }
|
69
|
+
attr_reader :inbound_wire_drawdown_request_id
|
70
|
+
|
71
|
+
sig { params(inbound_wire_drawdown_request_id: String).void }
|
72
|
+
attr_writer :inbound_wire_drawdown_request_id
|
73
|
+
|
66
74
|
# The originator's address line 1. This is only necessary if you're transferring
|
67
75
|
# from a commingled account. Otherwise, we'll use the associated entity's details.
|
68
76
|
sig { returns(T.nilable(String)) }
|
@@ -128,6 +136,7 @@ module Increase
|
|
128
136
|
beneficiary_address_line2: String,
|
129
137
|
beneficiary_address_line3: String,
|
130
138
|
external_account_id: String,
|
139
|
+
inbound_wire_drawdown_request_id: String,
|
131
140
|
originator_address_line1: String,
|
132
141
|
originator_address_line2: String,
|
133
142
|
originator_address_line3: String,
|
@@ -158,6 +167,9 @@ module Increase
|
|
158
167
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
159
168
|
# provided, `account_number` and `routing_number` must be absent.
|
160
169
|
external_account_id: nil,
|
170
|
+
# The ID of an Inbound Wire Drawdown Request in response to which this transfer is
|
171
|
+
# being sent.
|
172
|
+
inbound_wire_drawdown_request_id: nil,
|
161
173
|
# The originator's address line 1. This is only necessary if you're transferring
|
162
174
|
# from a commingled account. Otherwise, we'll use the associated entity's details.
|
163
175
|
originator_address_line1: nil,
|
@@ -193,6 +205,7 @@ module Increase
|
|
193
205
|
beneficiary_address_line2: String,
|
194
206
|
beneficiary_address_line3: String,
|
195
207
|
external_account_id: String,
|
208
|
+
inbound_wire_drawdown_request_id: String,
|
196
209
|
originator_address_line1: String,
|
197
210
|
originator_address_line2: String,
|
198
211
|
originator_address_line3: String,
|
@@ -15,6 +15,7 @@ module Increase
|
|
15
15
|
beneficiary_address_line2: String,
|
16
16
|
beneficiary_address_line3: String,
|
17
17
|
external_account_id: String,
|
18
|
+
inbound_wire_drawdown_request_id: String,
|
18
19
|
originator_address_line1: String,
|
19
20
|
originator_address_line2: String,
|
20
21
|
originator_address_line3: String,
|
@@ -45,6 +46,9 @@ module Increase
|
|
45
46
|
# The ID of an External Account to initiate a transfer to. If this parameter is
|
46
47
|
# provided, `account_number` and `routing_number` must be absent.
|
47
48
|
external_account_id: nil,
|
49
|
+
# The ID of an Inbound Wire Drawdown Request in response to which this transfer is
|
50
|
+
# being sent.
|
51
|
+
inbound_wire_drawdown_request_id: nil,
|
48
52
|
# The originator's address line 1. This is only necessary if you're transferring
|
49
53
|
# from a commingled account. Otherwise, we'll use the associated entity's details.
|
50
54
|
originator_address_line1: nil,
|
@@ -1618,6 +1618,7 @@ module Increase
|
|
1618
1618
|
| :group_locked
|
1619
1619
|
| :insufficient_funds
|
1620
1620
|
| :cvv2_mismatch
|
1621
|
+
| :pin_mismatch
|
1621
1622
|
| :card_expiration_mismatch
|
1622
1623
|
| :transaction_not_allowed
|
1623
1624
|
| :breaches_limit
|
@@ -1656,6 +1657,9 @@ module Increase
|
|
1656
1657
|
# The given CVV2 did not match the card's value.
|
1657
1658
|
CVV2_MISMATCH: :cvv2_mismatch
|
1658
1659
|
|
1660
|
+
# The given PIN did not match the card's value.
|
1661
|
+
PIN_MISMATCH: :pin_mismatch
|
1662
|
+
|
1659
1663
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
1660
1664
|
CARD_EXPIRATION_MISMATCH: :card_expiration_mismatch
|
1661
1665
|
|
@@ -812,6 +812,7 @@ module Increase
|
|
812
812
|
| :group_locked
|
813
813
|
| :insufficient_funds
|
814
814
|
| :cvv2_mismatch
|
815
|
+
| :pin_mismatch
|
815
816
|
| :card_expiration_mismatch
|
816
817
|
| :transaction_not_allowed
|
817
818
|
| :breaches_limit
|
@@ -850,6 +851,9 @@ module Increase
|
|
850
851
|
# The given CVV2 did not match the card's value.
|
851
852
|
CVV2_MISMATCH: :cvv2_mismatch
|
852
853
|
|
854
|
+
# The given PIN did not match the card's value.
|
855
|
+
PIN_MISMATCH: :pin_mismatch
|
856
|
+
|
853
857
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
854
858
|
CARD_EXPIRATION_MISMATCH: :card_expiration_mismatch
|
855
859
|
|
@@ -150,6 +150,7 @@ module Increase
|
|
150
150
|
| :group_locked
|
151
151
|
| :insufficient_funds
|
152
152
|
| :cvv2_mismatch
|
153
|
+
| :pin_mismatch
|
153
154
|
| :card_expiration_mismatch
|
154
155
|
| :transaction_not_allowed
|
155
156
|
| :breaches_limit
|
@@ -188,6 +189,9 @@ module Increase
|
|
188
189
|
# The given CVV2 did not match the card's value.
|
189
190
|
CVV2_MISMATCH: :cvv2_mismatch
|
190
191
|
|
192
|
+
# The given PIN did not match the card's value.
|
193
|
+
PIN_MISMATCH: :pin_mismatch
|
194
|
+
|
191
195
|
# The given expiration date did not match the card's value. Only applies when a CVV2 is present.
|
192
196
|
CARD_EXPIRATION_MISMATCH: :card_expiration_mismatch
|
193
197
|
|
@@ -17,6 +17,7 @@ module Increase
|
|
17
17
|
currency: Increase::Models::WireTransfer::currency,
|
18
18
|
external_account_id: String?,
|
19
19
|
idempotency_key: String?,
|
20
|
+
inbound_wire_drawdown_request_id: String?,
|
20
21
|
message_to_recipient: String?,
|
21
22
|
network: Increase::Models::WireTransfer::network,
|
22
23
|
:originator_address_line1 => String?,
|
@@ -64,6 +65,8 @@ module Increase
|
|
64
65
|
|
65
66
|
attr_accessor idempotency_key: String?
|
66
67
|
|
68
|
+
attr_accessor inbound_wire_drawdown_request_id: String?
|
69
|
+
|
67
70
|
attr_accessor message_to_recipient: String?
|
68
71
|
|
69
72
|
attr_accessor network: Increase::Models::WireTransfer::network
|
@@ -108,6 +111,7 @@ module Increase
|
|
108
111
|
currency: Increase::Models::WireTransfer::currency,
|
109
112
|
external_account_id: String?,
|
110
113
|
idempotency_key: String?,
|
114
|
+
inbound_wire_drawdown_request_id: String?,
|
111
115
|
message_to_recipient: String?,
|
112
116
|
network: Increase::Models::WireTransfer::network,
|
113
117
|
originator_address_line1: String?,
|
@@ -140,6 +144,7 @@ module Increase
|
|
140
144
|
currency: Increase::Models::WireTransfer::currency,
|
141
145
|
external_account_id: String?,
|
142
146
|
idempotency_key: String?,
|
147
|
+
inbound_wire_drawdown_request_id: String?,
|
143
148
|
message_to_recipient: String?,
|
144
149
|
network: Increase::Models::WireTransfer::network,
|
145
150
|
:originator_address_line1 => String?,
|
@@ -11,6 +11,7 @@ module Increase
|
|
11
11
|
:beneficiary_address_line2 => String,
|
12
12
|
:beneficiary_address_line3 => String,
|
13
13
|
external_account_id: String,
|
14
|
+
inbound_wire_drawdown_request_id: String,
|
14
15
|
:originator_address_line1 => String,
|
15
16
|
:originator_address_line2 => String,
|
16
17
|
:originator_address_line3 => String,
|
@@ -53,6 +54,10 @@ module Increase
|
|
53
54
|
|
54
55
|
def external_account_id=: (String) -> String
|
55
56
|
|
57
|
+
attr_reader inbound_wire_drawdown_request_id: String?
|
58
|
+
|
59
|
+
def inbound_wire_drawdown_request_id=: (String) -> String
|
60
|
+
|
56
61
|
attr_reader originator_address_line1: String?
|
57
62
|
|
58
63
|
def originator_address_line1=: (String) -> String
|
@@ -91,6 +96,7 @@ module Increase
|
|
91
96
|
?beneficiary_address_line2: String,
|
92
97
|
?beneficiary_address_line3: String,
|
93
98
|
?external_account_id: String,
|
99
|
+
?inbound_wire_drawdown_request_id: String,
|
94
100
|
?originator_address_line1: String,
|
95
101
|
?originator_address_line2: String,
|
96
102
|
?originator_address_line3: String,
|
@@ -111,6 +117,7 @@ module Increase
|
|
111
117
|
:beneficiary_address_line2 => String,
|
112
118
|
:beneficiary_address_line3 => String,
|
113
119
|
external_account_id: String,
|
120
|
+
inbound_wire_drawdown_request_id: String,
|
114
121
|
:originator_address_line1 => String,
|
115
122
|
:originator_address_line2 => String,
|
116
123
|
:originator_address_line3 => String,
|
@@ -11,6 +11,7 @@ module Increase
|
|
11
11
|
?beneficiary_address_line2: String,
|
12
12
|
?beneficiary_address_line3: String,
|
13
13
|
?external_account_id: String,
|
14
|
+
?inbound_wire_drawdown_request_id: String,
|
14
15
|
?originator_address_line1: String,
|
15
16
|
?originator_address_line2: String,
|
16
17
|
?originator_address_line3: String,
|
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.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|