increase 1.10.0 → 1.11.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/inbound_wire_transfer_list_params.rb +10 -1
- data/lib/increase/models/simulations/inbound_wire_transfer_create_params.rb +10 -1
- data/lib/increase/models/simulations/wire_drawdown_request_refuse_params.rb +16 -0
- data/lib/increase/resources/inbound_wire_transfers.rb +3 -1
- data/lib/increase/resources/simulations/inbound_wire_transfers.rb +3 -1
- data/lib/increase/resources/simulations/wire_drawdown_requests.rb +36 -0
- data/lib/increase/resources/simulations.rb +4 -0
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +2 -0
- data/rbi/increase/models/inbound_wire_transfer_list_params.rbi +13 -0
- data/rbi/increase/models/simulations/inbound_wire_transfer_create_params.rbi +13 -0
- data/rbi/increase/models/simulations/wire_drawdown_request_refuse_params.rbi +32 -0
- data/rbi/increase/resources/inbound_wire_transfers.rbi +4 -0
- data/rbi/increase/resources/simulations/inbound_wire_transfers.rbi +4 -0
- data/rbi/increase/resources/simulations/wire_drawdown_requests.rbi +28 -0
- data/rbi/increase/resources/simulations.rbi +3 -0
- data/sig/increase/models/inbound_wire_transfer_list_params.rbs +8 -1
- data/sig/increase/models/simulations/inbound_wire_transfer_create_params.rbs +8 -1
- data/sig/increase/models/simulations/wire_drawdown_request_refuse_params.rbs +17 -0
- data/sig/increase/resources/inbound_wire_transfers.rbs +1 -0
- data/sig/increase/resources/simulations/inbound_wire_transfers.rbs +1 -0
- data/sig/increase/resources/simulations/wire_drawdown_requests.rbs +14 -0
- data/sig/increase/resources/simulations.rbs +2 -0
- metadata +8 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2efe5921f5ac8c700e2add270d800dd51f31ce5d2784389ea423ce30e43c4d76
|
4
|
+
data.tar.gz: 00ee09350bbcc16015dddeeee4bb95efeafaf773d43a908561077f7d9a084da6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8503b742f6c85f57a57104060206bb92197e95c6559dcbd709e76b5f794e3a068e7b33f0dd1b2991267b5f38c1b59260fdee0e8587af90d8c935902ce08a2cd2
|
7
|
+
data.tar.gz: '0819a7e8ce851ed7824e3c1d009b8e8fea5386cbc277175e10b77b6781f58df34f74606dde47ac365013805acff5d6b86cad3651189bd787d90f8aca6d583ed6'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.11.0 (2025-07-09)
|
4
|
+
|
5
|
+
Full Changelog: [v1.10.0...v1.11.0](https://github.com/Increase/increase-ruby/compare/v1.10.0...v1.11.0)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([2e487ee](https://github.com/Increase/increase-ruby/commit/2e487ee62d833362c3d080953d68c164d08c6bf9))
|
10
|
+
|
3
11
|
## 1.10.0 (2025-07-08)
|
4
12
|
|
5
13
|
Full Changelog: [v1.9.0...v1.10.0](https://github.com/Increase/increase-ruby/compare/v1.9.0...v1.10.0)
|
data/README.md
CHANGED
@@ -42,7 +42,14 @@ module Increase
|
|
42
42
|
# @return [Increase::Models::InboundWireTransferListParams::Status, nil]
|
43
43
|
optional :status, -> { Increase::InboundWireTransferListParams::Status }
|
44
44
|
|
45
|
-
# @!
|
45
|
+
# @!attribute wire_drawdown_request_id
|
46
|
+
# Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown
|
47
|
+
# Request.
|
48
|
+
#
|
49
|
+
# @return [String, nil]
|
50
|
+
optional :wire_drawdown_request_id, String
|
51
|
+
|
52
|
+
# @!method initialize(account_id: nil, account_number_id: nil, created_at: nil, cursor: nil, limit: nil, status: nil, wire_drawdown_request_id: nil, request_options: {})
|
46
53
|
# Some parameter documentations has been truncated, see
|
47
54
|
# {Increase::Models::InboundWireTransferListParams} for more details.
|
48
55
|
#
|
@@ -58,6 +65,8 @@ module Increase
|
|
58
65
|
#
|
59
66
|
# @param status [Increase::Models::InboundWireTransferListParams::Status]
|
60
67
|
#
|
68
|
+
# @param wire_drawdown_request_id [String] Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown R
|
69
|
+
#
|
61
70
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
62
71
|
|
63
72
|
class CreatedAt < Increase::Internal::Type::BaseModel
|
@@ -125,7 +125,14 @@ module Increase
|
|
125
125
|
# @return [String, nil]
|
126
126
|
optional :sender_reference, String
|
127
127
|
|
128
|
-
# @!
|
128
|
+
# @!attribute wire_drawdown_request_id
|
129
|
+
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
130
|
+
# fulfilling.
|
131
|
+
#
|
132
|
+
# @return [String, nil]
|
133
|
+
optional :wire_drawdown_request_id, String
|
134
|
+
|
135
|
+
# @!method initialize(account_number_id:, amount:, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, beneficiary_name: nil, beneficiary_reference: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, originator_routing_number: nil, originator_to_beneficiary_information_line1: nil, originator_to_beneficiary_information_line2: nil, originator_to_beneficiary_information_line3: nil, originator_to_beneficiary_information_line4: nil, sender_reference: nil, wire_drawdown_request_id: nil, request_options: {})
|
129
136
|
# Some parameter documentations has been truncated, see
|
130
137
|
# {Increase::Models::Simulations::InboundWireTransferCreateParams} for more
|
131
138
|
# details.
|
@@ -164,6 +171,8 @@ module Increase
|
|
164
171
|
#
|
165
172
|
# @param sender_reference [String] The sending bank will set sender_reference in production. You can simulate any v
|
166
173
|
#
|
174
|
+
# @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
|
175
|
+
#
|
167
176
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
168
177
|
end
|
169
178
|
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Increase
|
4
|
+
module Models
|
5
|
+
module Simulations
|
6
|
+
# @see Increase::Resources::Simulations::WireDrawdownRequests#refuse
|
7
|
+
class WireDrawdownRequestRefuseParams < Increase::Internal::Type::BaseModel
|
8
|
+
extend Increase::Internal::Type::RequestParameters::Converter
|
9
|
+
include Increase::Internal::Type::RequestParameters
|
10
|
+
|
11
|
+
# @!method initialize(request_options: {})
|
12
|
+
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}]
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -28,7 +28,7 @@ module Increase
|
|
28
28
|
#
|
29
29
|
# List Inbound Wire Transfers
|
30
30
|
#
|
31
|
-
# @overload list(account_id: nil, account_number_id: nil, created_at: nil, cursor: nil, limit: nil, status: nil, request_options: {})
|
31
|
+
# @overload list(account_id: nil, account_number_id: nil, created_at: nil, cursor: nil, limit: nil, status: nil, wire_drawdown_request_id: nil, request_options: {})
|
32
32
|
#
|
33
33
|
# @param account_id [String] Filter Inbound Wire Transfers to ones belonging to the specified Account.
|
34
34
|
#
|
@@ -42,6 +42,8 @@ module Increase
|
|
42
42
|
#
|
43
43
|
# @param status [Increase::Models::InboundWireTransferListParams::Status]
|
44
44
|
#
|
45
|
+
# @param wire_drawdown_request_id [String] Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown R
|
46
|
+
#
|
45
47
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
46
48
|
#
|
47
49
|
# @return [Increase::Internal::Page<Increase::Models::InboundWireTransfer>]
|
@@ -10,7 +10,7 @@ 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:, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, beneficiary_name: nil, beneficiary_reference: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, originator_routing_number: nil, originator_to_beneficiary_information_line1: nil, originator_to_beneficiary_information_line2: nil, originator_to_beneficiary_information_line3: nil, originator_to_beneficiary_information_line4: nil, sender_reference: nil, request_options: {})
|
13
|
+
# @overload create(account_number_id:, amount:, beneficiary_address_line1: nil, beneficiary_address_line2: nil, beneficiary_address_line3: nil, beneficiary_name: nil, beneficiary_reference: nil, originator_address_line1: nil, originator_address_line2: nil, originator_address_line3: nil, originator_name: nil, originator_routing_number: nil, originator_to_beneficiary_information_line1: nil, originator_to_beneficiary_information_line2: nil, originator_to_beneficiary_information_line3: nil, originator_to_beneficiary_information_line4: nil, sender_reference: 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
|
#
|
@@ -46,6 +46,8 @@ module Increase
|
|
46
46
|
#
|
47
47
|
# @param sender_reference [String] The sending bank will set sender_reference in production. You can simulate any v
|
48
48
|
#
|
49
|
+
# @param wire_drawdown_request_id [String] The identifier of a Wire Drawdown Request the inbound Wire Transfer is fulfillin
|
50
|
+
#
|
49
51
|
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
50
52
|
#
|
51
53
|
# @return [Increase::Models::InboundWireTransfer]
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Increase
|
4
|
+
module Resources
|
5
|
+
class Simulations
|
6
|
+
class WireDrawdownRequests
|
7
|
+
# Simulates a Wire Drawdown Request being refused by the debtor.
|
8
|
+
#
|
9
|
+
# @overload refuse(wire_drawdown_request_id, request_options: {})
|
10
|
+
#
|
11
|
+
# @param wire_drawdown_request_id [String] The identifier of the Wire Drawdown Request you wish to refuse.
|
12
|
+
#
|
13
|
+
# @param request_options [Increase::RequestOptions, Hash{Symbol=>Object}, nil]
|
14
|
+
#
|
15
|
+
# @return [Increase::Models::WireDrawdownRequest]
|
16
|
+
#
|
17
|
+
# @see Increase::Models::Simulations::WireDrawdownRequestRefuseParams
|
18
|
+
def refuse(wire_drawdown_request_id, params = {})
|
19
|
+
@client.request(
|
20
|
+
method: :post,
|
21
|
+
path: ["simulations/wire_drawdown_requests/%1$s/refuse", wire_drawdown_request_id],
|
22
|
+
model: Increase::WireDrawdownRequest,
|
23
|
+
options: params[:request_options]
|
24
|
+
)
|
25
|
+
end
|
26
|
+
|
27
|
+
# @api private
|
28
|
+
#
|
29
|
+
# @param client [Increase::Client]
|
30
|
+
def initialize(client:)
|
31
|
+
@client = client
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
@@ -54,6 +54,9 @@ module Increase
|
|
54
54
|
# @return [Increase::Resources::Simulations::InboundWireTransfers]
|
55
55
|
attr_reader :inbound_wire_transfers
|
56
56
|
|
57
|
+
# @return [Increase::Resources::Simulations::WireDrawdownRequests]
|
58
|
+
attr_reader :wire_drawdown_requests
|
59
|
+
|
57
60
|
# @return [Increase::Resources::Simulations::InboundWireDrawdownRequests]
|
58
61
|
attr_reader :inbound_wire_drawdown_requests
|
59
62
|
|
@@ -108,6 +111,7 @@ module Increase
|
|
108
111
|
@inbound_ach_transfers = Increase::Resources::Simulations::InboundACHTransfers.new(client: client)
|
109
112
|
@wire_transfers = Increase::Resources::Simulations::WireTransfers.new(client: client)
|
110
113
|
@inbound_wire_transfers = Increase::Resources::Simulations::InboundWireTransfers.new(client: client)
|
114
|
+
@wire_drawdown_requests = Increase::Resources::Simulations::WireDrawdownRequests.new(client: client)
|
111
115
|
@inbound_wire_drawdown_requests =
|
112
116
|
Increase::Resources::Simulations::InboundWireDrawdownRequests.new(client: client)
|
113
117
|
@check_transfers = Increase::Resources::Simulations::CheckTransfers.new(client: client)
|
data/lib/increase/version.rb
CHANGED
data/lib/increase.rb
CHANGED
@@ -292,6 +292,7 @@ require_relative "increase/models/simulations/physical_card_advance_shipment_par
|
|
292
292
|
require_relative "increase/models/simulations/physical_card_tracking_updates_params"
|
293
293
|
require_relative "increase/models/simulations/program_create_params"
|
294
294
|
require_relative "increase/models/simulations/real_time_payments_transfer_complete_params"
|
295
|
+
require_relative "increase/models/simulations/wire_drawdown_request_refuse_params"
|
295
296
|
require_relative "increase/models/simulations/wire_transfer_reverse_params"
|
296
297
|
require_relative "increase/models/simulations/wire_transfer_submit_params"
|
297
298
|
require_relative "increase/models/supplemental_document_create_params"
|
@@ -384,6 +385,7 @@ require_relative "increase/resources/simulations/interest_payments"
|
|
384
385
|
require_relative "increase/resources/simulations/physical_cards"
|
385
386
|
require_relative "increase/resources/simulations/programs"
|
386
387
|
require_relative "increase/resources/simulations/real_time_payments_transfers"
|
388
|
+
require_relative "increase/resources/simulations/wire_drawdown_requests"
|
387
389
|
require_relative "increase/resources/simulations/wire_transfers"
|
388
390
|
require_relative "increase/resources/supplemental_documents"
|
389
391
|
require_relative "increase/resources/transactions"
|
@@ -67,6 +67,14 @@ module Increase
|
|
67
67
|
end
|
68
68
|
attr_writer :status
|
69
69
|
|
70
|
+
# Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown
|
71
|
+
# Request.
|
72
|
+
sig { returns(T.nilable(String)) }
|
73
|
+
attr_reader :wire_drawdown_request_id
|
74
|
+
|
75
|
+
sig { params(wire_drawdown_request_id: String).void }
|
76
|
+
attr_writer :wire_drawdown_request_id
|
77
|
+
|
70
78
|
sig do
|
71
79
|
params(
|
72
80
|
account_id: String,
|
@@ -76,6 +84,7 @@ module Increase
|
|
76
84
|
cursor: String,
|
77
85
|
limit: Integer,
|
78
86
|
status: Increase::InboundWireTransferListParams::Status::OrHash,
|
87
|
+
wire_drawdown_request_id: String,
|
79
88
|
request_options: Increase::RequestOptions::OrHash
|
80
89
|
).returns(T.attached_class)
|
81
90
|
end
|
@@ -91,6 +100,9 @@ module Increase
|
|
91
100
|
# objects.
|
92
101
|
limit: nil,
|
93
102
|
status: nil,
|
103
|
+
# Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown
|
104
|
+
# Request.
|
105
|
+
wire_drawdown_request_id: nil,
|
94
106
|
request_options: {}
|
95
107
|
)
|
96
108
|
end
|
@@ -104,6 +116,7 @@ module Increase
|
|
104
116
|
cursor: String,
|
105
117
|
limit: Integer,
|
106
118
|
status: Increase::InboundWireTransferListParams::Status,
|
119
|
+
wire_drawdown_request_id: String,
|
107
120
|
request_options: Increase::RequestOptions
|
108
121
|
}
|
109
122
|
)
|
@@ -143,6 +143,14 @@ module Increase
|
|
143
143
|
sig { params(sender_reference: String).void }
|
144
144
|
attr_writer :sender_reference
|
145
145
|
|
146
|
+
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
147
|
+
# fulfilling.
|
148
|
+
sig { returns(T.nilable(String)) }
|
149
|
+
attr_reader :wire_drawdown_request_id
|
150
|
+
|
151
|
+
sig { params(wire_drawdown_request_id: String).void }
|
152
|
+
attr_writer :wire_drawdown_request_id
|
153
|
+
|
146
154
|
sig do
|
147
155
|
params(
|
148
156
|
account_number_id: String,
|
@@ -162,6 +170,7 @@ module Increase
|
|
162
170
|
originator_to_beneficiary_information_line3: String,
|
163
171
|
originator_to_beneficiary_information_line4: String,
|
164
172
|
sender_reference: String,
|
173
|
+
wire_drawdown_request_id: String,
|
165
174
|
request_options: Increase::RequestOptions::OrHash
|
166
175
|
).returns(T.attached_class)
|
167
176
|
end
|
@@ -215,6 +224,9 @@ module Increase
|
|
215
224
|
# The sending bank will set sender_reference in production. You can simulate any
|
216
225
|
# value here.
|
217
226
|
sender_reference: nil,
|
227
|
+
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
228
|
+
# fulfilling.
|
229
|
+
wire_drawdown_request_id: nil,
|
218
230
|
request_options: {}
|
219
231
|
)
|
220
232
|
end
|
@@ -239,6 +251,7 @@ module Increase
|
|
239
251
|
originator_to_beneficiary_information_line3: String,
|
240
252
|
originator_to_beneficiary_information_line4: String,
|
241
253
|
sender_reference: String,
|
254
|
+
wire_drawdown_request_id: String,
|
242
255
|
request_options: Increase::RequestOptions
|
243
256
|
}
|
244
257
|
)
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# typed: strong
|
2
|
+
|
3
|
+
module Increase
|
4
|
+
module Models
|
5
|
+
module Simulations
|
6
|
+
class WireDrawdownRequestRefuseParams < Increase::Internal::Type::BaseModel
|
7
|
+
extend Increase::Internal::Type::RequestParameters::Converter
|
8
|
+
include Increase::Internal::Type::RequestParameters
|
9
|
+
|
10
|
+
OrHash =
|
11
|
+
T.type_alias do
|
12
|
+
T.any(
|
13
|
+
Increase::Simulations::WireDrawdownRequestRefuseParams,
|
14
|
+
Increase::Internal::AnyHash
|
15
|
+
)
|
16
|
+
end
|
17
|
+
|
18
|
+
sig do
|
19
|
+
params(request_options: Increase::RequestOptions::OrHash).returns(
|
20
|
+
T.attached_class
|
21
|
+
)
|
22
|
+
end
|
23
|
+
def self.new(request_options: {})
|
24
|
+
end
|
25
|
+
|
26
|
+
sig { override.returns({ request_options: Increase::RequestOptions }) }
|
27
|
+
def to_hash
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -27,6 +27,7 @@ module Increase
|
|
27
27
|
cursor: String,
|
28
28
|
limit: Integer,
|
29
29
|
status: Increase::InboundWireTransferListParams::Status::OrHash,
|
30
|
+
wire_drawdown_request_id: String,
|
30
31
|
request_options: Increase::RequestOptions::OrHash
|
31
32
|
).returns(Increase::Internal::Page[Increase::InboundWireTransfer])
|
32
33
|
end
|
@@ -42,6 +43,9 @@ module Increase
|
|
42
43
|
# objects.
|
43
44
|
limit: nil,
|
44
45
|
status: nil,
|
46
|
+
# Filter Inbound Wire Transfers to ones belonging to the specified Wire Drawdown
|
47
|
+
# Request.
|
48
|
+
wire_drawdown_request_id: nil,
|
45
49
|
request_options: {}
|
46
50
|
)
|
47
51
|
end
|
@@ -24,6 +24,7 @@ module Increase
|
|
24
24
|
originator_to_beneficiary_information_line3: String,
|
25
25
|
originator_to_beneficiary_information_line4: String,
|
26
26
|
sender_reference: String,
|
27
|
+
wire_drawdown_request_id: String,
|
27
28
|
request_options: Increase::RequestOptions::OrHash
|
28
29
|
).returns(Increase::InboundWireTransfer)
|
29
30
|
end
|
@@ -77,6 +78,9 @@ module Increase
|
|
77
78
|
# The sending bank will set sender_reference in production. You can simulate any
|
78
79
|
# value here.
|
79
80
|
sender_reference: nil,
|
81
|
+
# The identifier of a Wire Drawdown Request the inbound Wire Transfer is
|
82
|
+
# fulfilling.
|
83
|
+
wire_drawdown_request_id: nil,
|
80
84
|
request_options: {}
|
81
85
|
)
|
82
86
|
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# typed: strong
|
2
|
+
|
3
|
+
module Increase
|
4
|
+
module Resources
|
5
|
+
class Simulations
|
6
|
+
class WireDrawdownRequests
|
7
|
+
# Simulates a Wire Drawdown Request being refused by the debtor.
|
8
|
+
sig do
|
9
|
+
params(
|
10
|
+
wire_drawdown_request_id: String,
|
11
|
+
request_options: Increase::RequestOptions::OrHash
|
12
|
+
).returns(Increase::WireDrawdownRequest)
|
13
|
+
end
|
14
|
+
def refuse(
|
15
|
+
# The identifier of the Wire Drawdown Request you wish to refuse.
|
16
|
+
wire_drawdown_request_id,
|
17
|
+
request_options: {}
|
18
|
+
)
|
19
|
+
end
|
20
|
+
|
21
|
+
# @api private
|
22
|
+
sig { params(client: Increase::Client).returns(T.attached_class) }
|
23
|
+
def self.new(client:)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -58,6 +58,9 @@ module Increase
|
|
58
58
|
sig { returns(Increase::Resources::Simulations::InboundWireTransfers) }
|
59
59
|
attr_reader :inbound_wire_transfers
|
60
60
|
|
61
|
+
sig { returns(Increase::Resources::Simulations::WireDrawdownRequests) }
|
62
|
+
attr_reader :wire_drawdown_requests
|
63
|
+
|
61
64
|
sig do
|
62
65
|
returns(Increase::Resources::Simulations::InboundWireDrawdownRequests)
|
63
66
|
end
|
@@ -7,7 +7,8 @@ module Increase
|
|
7
7
|
created_at: Increase::InboundWireTransferListParams::CreatedAt,
|
8
8
|
cursor: String,
|
9
9
|
limit: Integer,
|
10
|
-
status: Increase::InboundWireTransferListParams::Status
|
10
|
+
status: Increase::InboundWireTransferListParams::Status,
|
11
|
+
wire_drawdown_request_id: String
|
11
12
|
}
|
12
13
|
& Increase::Internal::Type::request_parameters
|
13
14
|
|
@@ -43,6 +44,10 @@ module Increase
|
|
43
44
|
Increase::InboundWireTransferListParams::Status
|
44
45
|
) -> Increase::InboundWireTransferListParams::Status
|
45
46
|
|
47
|
+
attr_reader wire_drawdown_request_id: String?
|
48
|
+
|
49
|
+
def wire_drawdown_request_id=: (String) -> String
|
50
|
+
|
46
51
|
def initialize: (
|
47
52
|
?account_id: String,
|
48
53
|
?account_number_id: String,
|
@@ -50,6 +55,7 @@ module Increase
|
|
50
55
|
?cursor: String,
|
51
56
|
?limit: Integer,
|
52
57
|
?status: Increase::InboundWireTransferListParams::Status,
|
58
|
+
?wire_drawdown_request_id: String,
|
53
59
|
?request_options: Increase::request_opts
|
54
60
|
) -> void
|
55
61
|
|
@@ -60,6 +66,7 @@ module Increase
|
|
60
66
|
cursor: String,
|
61
67
|
limit: Integer,
|
62
68
|
status: Increase::InboundWireTransferListParams::Status,
|
69
|
+
wire_drawdown_request_id: String,
|
63
70
|
request_options: Increase::RequestOptions
|
64
71
|
}
|
65
72
|
|
@@ -19,7 +19,8 @@ module Increase
|
|
19
19
|
:originator_to_beneficiary_information_line2 => String,
|
20
20
|
:originator_to_beneficiary_information_line3 => String,
|
21
21
|
:originator_to_beneficiary_information_line4 => String,
|
22
|
-
sender_reference: String
|
22
|
+
sender_reference: String,
|
23
|
+
wire_drawdown_request_id: String
|
23
24
|
}
|
24
25
|
& Increase::Internal::Type::request_parameters
|
25
26
|
|
@@ -91,6 +92,10 @@ module Increase
|
|
91
92
|
|
92
93
|
def sender_reference=: (String) -> String
|
93
94
|
|
95
|
+
attr_reader wire_drawdown_request_id: String?
|
96
|
+
|
97
|
+
def wire_drawdown_request_id=: (String) -> String
|
98
|
+
|
94
99
|
def initialize: (
|
95
100
|
account_number_id: String,
|
96
101
|
amount: Integer,
|
@@ -109,6 +114,7 @@ module Increase
|
|
109
114
|
?originator_to_beneficiary_information_line3: String,
|
110
115
|
?originator_to_beneficiary_information_line4: String,
|
111
116
|
?sender_reference: String,
|
117
|
+
?wire_drawdown_request_id: String,
|
112
118
|
?request_options: Increase::request_opts
|
113
119
|
) -> void
|
114
120
|
|
@@ -130,6 +136,7 @@ module Increase
|
|
130
136
|
:originator_to_beneficiary_information_line3 => String,
|
131
137
|
:originator_to_beneficiary_information_line4 => String,
|
132
138
|
sender_reference: String,
|
139
|
+
wire_drawdown_request_id: String,
|
133
140
|
request_options: Increase::RequestOptions
|
134
141
|
}
|
135
142
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Increase
|
2
|
+
module Models
|
3
|
+
module Simulations
|
4
|
+
type wire_drawdown_request_refuse_params =
|
5
|
+
{ } & Increase::Internal::Type::request_parameters
|
6
|
+
|
7
|
+
class WireDrawdownRequestRefuseParams < Increase::Internal::Type::BaseModel
|
8
|
+
extend Increase::Internal::Type::RequestParameters::Converter
|
9
|
+
include Increase::Internal::Type::RequestParameters
|
10
|
+
|
11
|
+
def initialize: (?request_options: Increase::request_opts) -> void
|
12
|
+
|
13
|
+
def to_hash: -> { request_options: Increase::RequestOptions }
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -13,6 +13,7 @@ module Increase
|
|
13
13
|
?cursor: String,
|
14
14
|
?limit: Integer,
|
15
15
|
?status: Increase::InboundWireTransferListParams::Status,
|
16
|
+
?wire_drawdown_request_id: String,
|
16
17
|
?request_options: Increase::request_opts
|
17
18
|
) -> Increase::Internal::Page[Increase::InboundWireTransfer]
|
18
19
|
|
@@ -20,6 +20,7 @@ module Increase
|
|
20
20
|
?originator_to_beneficiary_information_line3: String,
|
21
21
|
?originator_to_beneficiary_information_line4: String,
|
22
22
|
?sender_reference: String,
|
23
|
+
?wire_drawdown_request_id: String,
|
23
24
|
?request_options: Increase::request_opts
|
24
25
|
) -> Increase::InboundWireTransfer
|
25
26
|
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Increase
|
2
|
+
module Resources
|
3
|
+
class Simulations
|
4
|
+
class WireDrawdownRequests
|
5
|
+
def refuse: (
|
6
|
+
String wire_drawdown_request_id,
|
7
|
+
?request_options: Increase::request_opts
|
8
|
+
) -> Increase::WireDrawdownRequest
|
9
|
+
|
10
|
+
def initialize: (client: Increase::Client) -> void
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -35,6 +35,8 @@ module Increase
|
|
35
35
|
|
36
36
|
attr_reader inbound_wire_transfers: Increase::Resources::Simulations::InboundWireTransfers
|
37
37
|
|
38
|
+
attr_reader wire_drawdown_requests: Increase::Resources::Simulations::WireDrawdownRequests
|
39
|
+
|
38
40
|
attr_reader inbound_wire_drawdown_requests: Increase::Resources::Simulations::InboundWireDrawdownRequests
|
39
41
|
|
40
42
|
attr_reader check_transfers: Increase::Resources::Simulations::CheckTransfers
|
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.11.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-
|
11
|
+
date: 2025-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|
@@ -297,6 +297,7 @@ files:
|
|
297
297
|
- lib/increase/models/simulations/physical_card_tracking_updates_params.rb
|
298
298
|
- lib/increase/models/simulations/program_create_params.rb
|
299
299
|
- lib/increase/models/simulations/real_time_payments_transfer_complete_params.rb
|
300
|
+
- lib/increase/models/simulations/wire_drawdown_request_refuse_params.rb
|
300
301
|
- lib/increase/models/simulations/wire_transfer_reverse_params.rb
|
301
302
|
- lib/increase/models/simulations/wire_transfer_submit_params.rb
|
302
303
|
- lib/increase/models/supplemental_document_create_params.rb
|
@@ -389,6 +390,7 @@ files:
|
|
389
390
|
- lib/increase/resources/simulations/physical_cards.rb
|
390
391
|
- lib/increase/resources/simulations/programs.rb
|
391
392
|
- lib/increase/resources/simulations/real_time_payments_transfers.rb
|
393
|
+
- lib/increase/resources/simulations/wire_drawdown_requests.rb
|
392
394
|
- lib/increase/resources/simulations/wire_transfers.rb
|
393
395
|
- lib/increase/resources/supplemental_documents.rb
|
394
396
|
- lib/increase/resources/transactions.rb
|
@@ -657,6 +659,7 @@ files:
|
|
657
659
|
- rbi/increase/models/simulations/physical_card_tracking_updates_params.rbi
|
658
660
|
- rbi/increase/models/simulations/program_create_params.rbi
|
659
661
|
- rbi/increase/models/simulations/real_time_payments_transfer_complete_params.rbi
|
662
|
+
- rbi/increase/models/simulations/wire_drawdown_request_refuse_params.rbi
|
660
663
|
- rbi/increase/models/simulations/wire_transfer_reverse_params.rbi
|
661
664
|
- rbi/increase/models/simulations/wire_transfer_submit_params.rbi
|
662
665
|
- rbi/increase/models/supplemental_document_create_params.rbi
|
@@ -749,6 +752,7 @@ files:
|
|
749
752
|
- rbi/increase/resources/simulations/physical_cards.rbi
|
750
753
|
- rbi/increase/resources/simulations/programs.rbi
|
751
754
|
- rbi/increase/resources/simulations/real_time_payments_transfers.rbi
|
755
|
+
- rbi/increase/resources/simulations/wire_drawdown_requests.rbi
|
752
756
|
- rbi/increase/resources/simulations/wire_transfers.rbi
|
753
757
|
- rbi/increase/resources/supplemental_documents.rbi
|
754
758
|
- rbi/increase/resources/transactions.rbi
|
@@ -1016,6 +1020,7 @@ files:
|
|
1016
1020
|
- sig/increase/models/simulations/physical_card_tracking_updates_params.rbs
|
1017
1021
|
- sig/increase/models/simulations/program_create_params.rbs
|
1018
1022
|
- sig/increase/models/simulations/real_time_payments_transfer_complete_params.rbs
|
1023
|
+
- sig/increase/models/simulations/wire_drawdown_request_refuse_params.rbs
|
1019
1024
|
- sig/increase/models/simulations/wire_transfer_reverse_params.rbs
|
1020
1025
|
- sig/increase/models/simulations/wire_transfer_submit_params.rbs
|
1021
1026
|
- sig/increase/models/supplemental_document_create_params.rbs
|
@@ -1108,6 +1113,7 @@ files:
|
|
1108
1113
|
- sig/increase/resources/simulations/physical_cards.rbs
|
1109
1114
|
- sig/increase/resources/simulations/programs.rbs
|
1110
1115
|
- sig/increase/resources/simulations/real_time_payments_transfers.rbs
|
1116
|
+
- sig/increase/resources/simulations/wire_drawdown_requests.rbs
|
1111
1117
|
- sig/increase/resources/simulations/wire_transfers.rbs
|
1112
1118
|
- sig/increase/resources/supplemental_documents.rbs
|
1113
1119
|
- sig/increase/resources/transactions.rbs
|