increase 1.47.0 → 1.49.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 +21 -0
- data/README.md +1 -1
- data/lib/increase/models/inbound_wire_drawdown_request.rb +82 -97
- data/lib/increase/models/simulations/inbound_wire_drawdown_request_create_params.rb +79 -84
- data/lib/increase/models/simulations/wire_drawdown_request_submit_params.rb +16 -0
- data/lib/increase/resources/simulations/inbound_wire_drawdown_requests.rb +18 -20
- data/lib/increase/resources/simulations/wire_drawdown_requests.rb +20 -0
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +1 -0
- data/rbi/increase/models/inbound_wire_drawdown_request.rbi +112 -126
- data/rbi/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbi +144 -140
- data/rbi/increase/models/simulations/wire_drawdown_request_submit_params.rbi +32 -0
- data/rbi/increase/resources/simulations/inbound_wire_drawdown_requests.rbi +55 -55
- data/rbi/increase/resources/simulations/wire_drawdown_requests.rbi +14 -0
- data/sig/increase/models/inbound_wire_drawdown_request.rbs +66 -76
- data/sig/increase/models/simulations/inbound_wire_drawdown_request_create_params.rbs +80 -81
- data/sig/increase/models/simulations/wire_drawdown_request_submit_params.rbs +17 -0
- data/sig/increase/resources/simulations/inbound_wire_drawdown_requests.rbs +16 -17
- data/sig/increase/resources/simulations/wire_drawdown_requests.rbs +5 -0
- metadata +5 -2
@@ -4,27 +4,25 @@ module Increase
|
|
4
4
|
{
|
5
5
|
id: String,
|
6
6
|
amount: Integer,
|
7
|
-
beneficiary_account_number: String,
|
8
|
-
:beneficiary_address_line1 => String?,
|
9
|
-
:beneficiary_address_line2 => String?,
|
10
|
-
:beneficiary_address_line3 => String?,
|
11
|
-
beneficiary_name: String?,
|
12
|
-
beneficiary_routing_number: String,
|
13
7
|
created_at: Time,
|
8
|
+
creditor_account_number: String,
|
9
|
+
:creditor_address_line1 => String?,
|
10
|
+
:creditor_address_line2 => String?,
|
11
|
+
:creditor_address_line3 => String?,
|
12
|
+
creditor_name: String?,
|
13
|
+
creditor_routing_number: String,
|
14
14
|
currency: String,
|
15
|
-
|
16
|
-
|
17
|
-
:
|
18
|
-
:
|
19
|
-
:
|
20
|
-
|
21
|
-
|
22
|
-
:originator_to_beneficiary_information_line1 => String?,
|
23
|
-
:originator_to_beneficiary_information_line2 => String?,
|
24
|
-
:originator_to_beneficiary_information_line3 => String?,
|
25
|
-
:originator_to_beneficiary_information_line4 => String?,
|
15
|
+
:debtor_address_line1 => String?,
|
16
|
+
:debtor_address_line2 => String?,
|
17
|
+
:debtor_address_line3 => String?,
|
18
|
+
debtor_name: String?,
|
19
|
+
end_to_end_identification: String?,
|
20
|
+
input_message_accountability_data: String?,
|
21
|
+
instruction_identification: String?,
|
26
22
|
recipient_account_number_id: String,
|
27
|
-
type: Increase::Models::InboundWireDrawdownRequest::type_
|
23
|
+
type: Increase::Models::InboundWireDrawdownRequest::type_,
|
24
|
+
unique_end_to_end_transaction_reference: String?,
|
25
|
+
unstructured_remittance_information: String?
|
28
26
|
}
|
29
27
|
|
30
28
|
class InboundWireDrawdownRequest < Increase::Internal::Type::BaseModel
|
@@ -32,98 +30,90 @@ module Increase
|
|
32
30
|
|
33
31
|
attr_accessor amount: Integer
|
34
32
|
|
35
|
-
attr_accessor
|
33
|
+
attr_accessor created_at: Time
|
36
34
|
|
37
|
-
attr_accessor
|
35
|
+
attr_accessor creditor_account_number: String
|
38
36
|
|
39
|
-
attr_accessor
|
37
|
+
attr_accessor creditor_address_line1: String?
|
40
38
|
|
41
|
-
attr_accessor
|
39
|
+
attr_accessor creditor_address_line2: String?
|
42
40
|
|
43
|
-
attr_accessor
|
41
|
+
attr_accessor creditor_address_line3: String?
|
44
42
|
|
45
|
-
attr_accessor
|
43
|
+
attr_accessor creditor_name: String?
|
46
44
|
|
47
|
-
attr_accessor
|
45
|
+
attr_accessor creditor_routing_number: String
|
48
46
|
|
49
47
|
attr_accessor currency: String
|
50
48
|
|
51
|
-
attr_accessor
|
52
|
-
|
53
|
-
attr_accessor originator_account_number: String?
|
54
|
-
|
55
|
-
attr_accessor originator_address_line1: String?
|
49
|
+
attr_accessor debtor_address_line1: String?
|
56
50
|
|
57
|
-
attr_accessor
|
51
|
+
attr_accessor debtor_address_line2: String?
|
58
52
|
|
59
|
-
attr_accessor
|
53
|
+
attr_accessor debtor_address_line3: String?
|
60
54
|
|
61
|
-
attr_accessor
|
55
|
+
attr_accessor debtor_name: String?
|
62
56
|
|
63
|
-
attr_accessor
|
57
|
+
attr_accessor end_to_end_identification: String?
|
64
58
|
|
65
|
-
attr_accessor
|
59
|
+
attr_accessor input_message_accountability_data: String?
|
66
60
|
|
67
|
-
attr_accessor
|
68
|
-
|
69
|
-
attr_accessor originator_to_beneficiary_information_line3: String?
|
70
|
-
|
71
|
-
attr_accessor originator_to_beneficiary_information_line4: String?
|
61
|
+
attr_accessor instruction_identification: String?
|
72
62
|
|
73
63
|
attr_accessor recipient_account_number_id: String
|
74
64
|
|
75
65
|
attr_accessor type: Increase::Models::InboundWireDrawdownRequest::type_
|
76
66
|
|
67
|
+
attr_accessor unique_end_to_end_transaction_reference: String?
|
68
|
+
|
69
|
+
attr_accessor unstructured_remittance_information: String?
|
70
|
+
|
77
71
|
def initialize: (
|
78
72
|
id: String,
|
79
73
|
amount: Integer,
|
80
|
-
beneficiary_account_number: String,
|
81
|
-
beneficiary_address_line1: String?,
|
82
|
-
beneficiary_address_line2: String?,
|
83
|
-
beneficiary_address_line3: String?,
|
84
|
-
beneficiary_name: String?,
|
85
|
-
beneficiary_routing_number: String,
|
86
74
|
created_at: Time,
|
75
|
+
creditor_account_number: String,
|
76
|
+
creditor_address_line1: String?,
|
77
|
+
creditor_address_line2: String?,
|
78
|
+
creditor_address_line3: String?,
|
79
|
+
creditor_name: String?,
|
80
|
+
creditor_routing_number: String,
|
87
81
|
currency: String,
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
originator_to_beneficiary_information_line1: String?,
|
96
|
-
originator_to_beneficiary_information_line2: String?,
|
97
|
-
originator_to_beneficiary_information_line3: String?,
|
98
|
-
originator_to_beneficiary_information_line4: String?,
|
82
|
+
debtor_address_line1: String?,
|
83
|
+
debtor_address_line2: String?,
|
84
|
+
debtor_address_line3: String?,
|
85
|
+
debtor_name: String?,
|
86
|
+
end_to_end_identification: String?,
|
87
|
+
input_message_accountability_data: String?,
|
88
|
+
instruction_identification: String?,
|
99
89
|
recipient_account_number_id: String,
|
100
|
-
type: Increase::Models::InboundWireDrawdownRequest::type_
|
90
|
+
type: Increase::Models::InboundWireDrawdownRequest::type_,
|
91
|
+
unique_end_to_end_transaction_reference: String?,
|
92
|
+
unstructured_remittance_information: String?
|
101
93
|
) -> void
|
102
94
|
|
103
95
|
def to_hash: -> {
|
104
96
|
id: String,
|
105
97
|
amount: Integer,
|
106
|
-
beneficiary_account_number: String,
|
107
|
-
:beneficiary_address_line1 => String?,
|
108
|
-
:beneficiary_address_line2 => String?,
|
109
|
-
:beneficiary_address_line3 => String?,
|
110
|
-
beneficiary_name: String?,
|
111
|
-
beneficiary_routing_number: String,
|
112
98
|
created_at: Time,
|
99
|
+
creditor_account_number: String,
|
100
|
+
:creditor_address_line1 => String?,
|
101
|
+
:creditor_address_line2 => String?,
|
102
|
+
:creditor_address_line3 => String?,
|
103
|
+
creditor_name: String?,
|
104
|
+
creditor_routing_number: String,
|
113
105
|
currency: String,
|
114
|
-
|
115
|
-
|
116
|
-
:
|
117
|
-
:
|
118
|
-
:
|
119
|
-
|
120
|
-
|
121
|
-
:originator_to_beneficiary_information_line1 => String?,
|
122
|
-
:originator_to_beneficiary_information_line2 => String?,
|
123
|
-
:originator_to_beneficiary_information_line3 => String?,
|
124
|
-
:originator_to_beneficiary_information_line4 => String?,
|
106
|
+
:debtor_address_line1 => String?,
|
107
|
+
:debtor_address_line2 => String?,
|
108
|
+
:debtor_address_line3 => String?,
|
109
|
+
debtor_name: String?,
|
110
|
+
end_to_end_identification: String?,
|
111
|
+
input_message_accountability_data: String?,
|
112
|
+
instruction_identification: String?,
|
125
113
|
recipient_account_number_id: String,
|
126
|
-
type: Increase::Models::InboundWireDrawdownRequest::type_
|
114
|
+
type: Increase::Models::InboundWireDrawdownRequest::type_,
|
115
|
+
unique_end_to_end_transaction_reference: String?,
|
116
|
+
unstructured_remittance_information: String?
|
127
117
|
}
|
128
118
|
|
129
119
|
type type_ = :inbound_wire_drawdown_request
|
@@ -4,25 +4,24 @@ module Increase
|
|
4
4
|
type inbound_wire_drawdown_request_create_params =
|
5
5
|
{
|
6
6
|
amount: Integer,
|
7
|
-
|
8
|
-
|
7
|
+
creditor_account_number: String,
|
8
|
+
creditor_routing_number: String,
|
9
9
|
currency: String,
|
10
|
-
message_to_recipient: String,
|
11
|
-
originator_account_number: String,
|
12
|
-
originator_routing_number: String,
|
13
10
|
recipient_account_number_id: String,
|
14
|
-
:
|
15
|
-
:
|
16
|
-
:
|
17
|
-
|
18
|
-
:
|
19
|
-
:
|
20
|
-
:
|
21
|
-
|
22
|
-
:
|
23
|
-
:
|
24
|
-
:
|
25
|
-
:
|
11
|
+
:creditor_address_line1 => String,
|
12
|
+
:creditor_address_line2 => String,
|
13
|
+
:creditor_address_line3 => String,
|
14
|
+
creditor_name: String,
|
15
|
+
debtor_account_number: String,
|
16
|
+
:debtor_address_line1 => String,
|
17
|
+
:debtor_address_line2 => String,
|
18
|
+
:debtor_address_line3 => String,
|
19
|
+
debtor_name: String,
|
20
|
+
debtor_routing_number: String,
|
21
|
+
end_to_end_identification: String,
|
22
|
+
instruction_identification: String,
|
23
|
+
unique_end_to_end_transaction_reference: String,
|
24
|
+
unstructured_remittance_information: String
|
26
25
|
}
|
27
26
|
& Increase::Internal::Type::request_parameters
|
28
27
|
|
@@ -32,113 +31,113 @@ module Increase
|
|
32
31
|
|
33
32
|
attr_accessor amount: Integer
|
34
33
|
|
35
|
-
attr_accessor
|
34
|
+
attr_accessor creditor_account_number: String
|
36
35
|
|
37
|
-
attr_accessor
|
36
|
+
attr_accessor creditor_routing_number: String
|
38
37
|
|
39
38
|
attr_accessor currency: String
|
40
39
|
|
41
|
-
attr_accessor
|
40
|
+
attr_accessor recipient_account_number_id: String
|
42
41
|
|
43
|
-
|
42
|
+
attr_reader creditor_address_line1: String?
|
44
43
|
|
45
|
-
|
44
|
+
def creditor_address_line1=: (String) -> String
|
46
45
|
|
47
|
-
|
46
|
+
attr_reader creditor_address_line2: String?
|
47
|
+
|
48
|
+
def creditor_address_line2=: (String) -> String
|
48
49
|
|
49
|
-
attr_reader
|
50
|
+
attr_reader creditor_address_line3: String?
|
50
51
|
|
51
|
-
def
|
52
|
+
def creditor_address_line3=: (String) -> String
|
52
53
|
|
53
|
-
attr_reader
|
54
|
+
attr_reader creditor_name: String?
|
54
55
|
|
55
|
-
def
|
56
|
+
def creditor_name=: (String) -> String
|
56
57
|
|
57
|
-
attr_reader
|
58
|
+
attr_reader debtor_account_number: String?
|
58
59
|
|
59
|
-
def
|
60
|
+
def debtor_account_number=: (String) -> String
|
60
61
|
|
61
|
-
attr_reader
|
62
|
+
attr_reader debtor_address_line1: String?
|
62
63
|
|
63
|
-
def
|
64
|
+
def debtor_address_line1=: (String) -> String
|
64
65
|
|
65
|
-
attr_reader
|
66
|
+
attr_reader debtor_address_line2: String?
|
66
67
|
|
67
|
-
def
|
68
|
+
def debtor_address_line2=: (String) -> String
|
68
69
|
|
69
|
-
attr_reader
|
70
|
+
attr_reader debtor_address_line3: String?
|
70
71
|
|
71
|
-
def
|
72
|
+
def debtor_address_line3=: (String) -> String
|
72
73
|
|
73
|
-
attr_reader
|
74
|
+
attr_reader debtor_name: String?
|
74
75
|
|
75
|
-
def
|
76
|
+
def debtor_name=: (String) -> String
|
76
77
|
|
77
|
-
attr_reader
|
78
|
+
attr_reader debtor_routing_number: String?
|
78
79
|
|
79
|
-
def
|
80
|
+
def debtor_routing_number=: (String) -> String
|
80
81
|
|
81
|
-
attr_reader
|
82
|
+
attr_reader end_to_end_identification: String?
|
82
83
|
|
83
|
-
def
|
84
|
+
def end_to_end_identification=: (String) -> String
|
84
85
|
|
85
|
-
attr_reader
|
86
|
+
attr_reader instruction_identification: String?
|
86
87
|
|
87
|
-
def
|
88
|
+
def instruction_identification=: (String) -> String
|
88
89
|
|
89
|
-
attr_reader
|
90
|
+
attr_reader unique_end_to_end_transaction_reference: String?
|
90
91
|
|
91
|
-
def
|
92
|
+
def unique_end_to_end_transaction_reference=: (String) -> String
|
92
93
|
|
93
|
-
attr_reader
|
94
|
+
attr_reader unstructured_remittance_information: String?
|
94
95
|
|
95
|
-
def
|
96
|
+
def unstructured_remittance_information=: (String) -> String
|
96
97
|
|
97
98
|
def initialize: (
|
98
99
|
amount: Integer,
|
99
|
-
|
100
|
-
|
100
|
+
creditor_account_number: String,
|
101
|
+
creditor_routing_number: String,
|
101
102
|
currency: String,
|
102
|
-
message_to_recipient: String,
|
103
|
-
originator_account_number: String,
|
104
|
-
originator_routing_number: String,
|
105
103
|
recipient_account_number_id: String,
|
106
|
-
?
|
107
|
-
?
|
108
|
-
?
|
109
|
-
?
|
110
|
-
?
|
111
|
-
?
|
112
|
-
?
|
113
|
-
?
|
114
|
-
?
|
115
|
-
?
|
116
|
-
?
|
117
|
-
?
|
104
|
+
?creditor_address_line1: String,
|
105
|
+
?creditor_address_line2: String,
|
106
|
+
?creditor_address_line3: String,
|
107
|
+
?creditor_name: String,
|
108
|
+
?debtor_account_number: String,
|
109
|
+
?debtor_address_line1: String,
|
110
|
+
?debtor_address_line2: String,
|
111
|
+
?debtor_address_line3: String,
|
112
|
+
?debtor_name: String,
|
113
|
+
?debtor_routing_number: String,
|
114
|
+
?end_to_end_identification: String,
|
115
|
+
?instruction_identification: String,
|
116
|
+
?unique_end_to_end_transaction_reference: String,
|
117
|
+
?unstructured_remittance_information: String,
|
118
118
|
?request_options: Increase::request_opts
|
119
119
|
) -> void
|
120
120
|
|
121
121
|
def to_hash: -> {
|
122
122
|
amount: Integer,
|
123
|
-
|
124
|
-
|
123
|
+
creditor_account_number: String,
|
124
|
+
creditor_routing_number: String,
|
125
125
|
currency: String,
|
126
|
-
message_to_recipient: String,
|
127
|
-
originator_account_number: String,
|
128
|
-
originator_routing_number: String,
|
129
126
|
recipient_account_number_id: String,
|
130
|
-
:
|
131
|
-
:
|
132
|
-
:
|
133
|
-
|
134
|
-
:
|
135
|
-
:
|
136
|
-
:
|
137
|
-
|
138
|
-
:
|
139
|
-
:
|
140
|
-
:
|
141
|
-
:
|
127
|
+
:creditor_address_line1 => String,
|
128
|
+
:creditor_address_line2 => String,
|
129
|
+
:creditor_address_line3 => String,
|
130
|
+
creditor_name: String,
|
131
|
+
debtor_account_number: String,
|
132
|
+
:debtor_address_line1 => String,
|
133
|
+
:debtor_address_line2 => String,
|
134
|
+
:debtor_address_line3 => String,
|
135
|
+
debtor_name: String,
|
136
|
+
debtor_routing_number: String,
|
137
|
+
end_to_end_identification: String,
|
138
|
+
instruction_identification: String,
|
139
|
+
unique_end_to_end_transaction_reference: String,
|
140
|
+
unstructured_remittance_information: String,
|
142
141
|
request_options: Increase::RequestOptions
|
143
142
|
}
|
144
143
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Increase
|
2
|
+
module Models
|
3
|
+
module Simulations
|
4
|
+
type wire_drawdown_request_submit_params =
|
5
|
+
{ } & Increase::Internal::Type::request_parameters
|
6
|
+
|
7
|
+
class WireDrawdownRequestSubmitParams < 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
|
@@ -4,25 +4,24 @@ module Increase
|
|
4
4
|
class InboundWireDrawdownRequests
|
5
5
|
def create: (
|
6
6
|
amount: Integer,
|
7
|
-
|
8
|
-
|
7
|
+
creditor_account_number: String,
|
8
|
+
creditor_routing_number: String,
|
9
9
|
currency: String,
|
10
|
-
message_to_recipient: String,
|
11
|
-
originator_account_number: String,
|
12
|
-
originator_routing_number: String,
|
13
10
|
recipient_account_number_id: String,
|
14
|
-
?
|
15
|
-
?
|
16
|
-
?
|
17
|
-
?
|
18
|
-
?
|
19
|
-
?
|
20
|
-
?
|
21
|
-
?
|
22
|
-
?
|
23
|
-
?
|
24
|
-
?
|
25
|
-
?
|
11
|
+
?creditor_address_line1: String,
|
12
|
+
?creditor_address_line2: String,
|
13
|
+
?creditor_address_line3: String,
|
14
|
+
?creditor_name: String,
|
15
|
+
?debtor_account_number: String,
|
16
|
+
?debtor_address_line1: String,
|
17
|
+
?debtor_address_line2: String,
|
18
|
+
?debtor_address_line3: String,
|
19
|
+
?debtor_name: String,
|
20
|
+
?debtor_routing_number: String,
|
21
|
+
?end_to_end_identification: String,
|
22
|
+
?instruction_identification: String,
|
23
|
+
?unique_end_to_end_transaction_reference: String,
|
24
|
+
?unstructured_remittance_information: String,
|
26
25
|
?request_options: Increase::request_opts
|
27
26
|
) -> Increase::InboundWireDrawdownRequest
|
28
27
|
|
@@ -7,6 +7,11 @@ module Increase
|
|
7
7
|
?request_options: Increase::request_opts
|
8
8
|
) -> Increase::WireDrawdownRequest
|
9
9
|
|
10
|
+
def submit: (
|
11
|
+
String wire_drawdown_request_id,
|
12
|
+
?request_options: Increase::request_opts
|
13
|
+
) -> Increase::WireDrawdownRequest
|
14
|
+
|
10
15
|
def initialize: (client: Increase::Client) -> void
|
11
16
|
end
|
12
17
|
end
|
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.49.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-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|
@@ -316,6 +316,7 @@ files:
|
|
316
316
|
- lib/increase/models/simulations/program_create_params.rb
|
317
317
|
- lib/increase/models/simulations/real_time_payments_transfer_complete_params.rb
|
318
318
|
- lib/increase/models/simulations/wire_drawdown_request_refuse_params.rb
|
319
|
+
- lib/increase/models/simulations/wire_drawdown_request_submit_params.rb
|
319
320
|
- lib/increase/models/simulations/wire_transfer_reverse_params.rb
|
320
321
|
- lib/increase/models/simulations/wire_transfer_submit_params.rb
|
321
322
|
- lib/increase/models/supplemental_document_create_params.rb
|
@@ -700,6 +701,7 @@ files:
|
|
700
701
|
- rbi/increase/models/simulations/program_create_params.rbi
|
701
702
|
- rbi/increase/models/simulations/real_time_payments_transfer_complete_params.rbi
|
702
703
|
- rbi/increase/models/simulations/wire_drawdown_request_refuse_params.rbi
|
704
|
+
- rbi/increase/models/simulations/wire_drawdown_request_submit_params.rbi
|
703
705
|
- rbi/increase/models/simulations/wire_transfer_reverse_params.rbi
|
704
706
|
- rbi/increase/models/simulations/wire_transfer_submit_params.rbi
|
705
707
|
- rbi/increase/models/supplemental_document_create_params.rbi
|
@@ -1083,6 +1085,7 @@ files:
|
|
1083
1085
|
- sig/increase/models/simulations/program_create_params.rbs
|
1084
1086
|
- sig/increase/models/simulations/real_time_payments_transfer_complete_params.rbs
|
1085
1087
|
- sig/increase/models/simulations/wire_drawdown_request_refuse_params.rbs
|
1088
|
+
- sig/increase/models/simulations/wire_drawdown_request_submit_params.rbs
|
1086
1089
|
- sig/increase/models/simulations/wire_transfer_reverse_params.rbs
|
1087
1090
|
- sig/increase/models/simulations/wire_transfer_submit_params.rbs
|
1088
1091
|
- sig/increase/models/supplemental_document_create_params.rbs
|