increase 1.122.0 → 1.124.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.
@@ -4,18 +4,12 @@ module Increase
4
4
  {
5
5
  account_id: String,
6
6
  amount: Integer,
7
- beneficiary_name: String,
7
+ creditor: Increase::WireTransferCreateParams::Creditor,
8
+ remittance: Increase::WireTransferCreateParams::Remittance,
8
9
  account_number: String,
9
- :beneficiary_address_line1 => String,
10
- :beneficiary_address_line2 => String,
11
- :beneficiary_address_line3 => String,
10
+ debtor: Increase::WireTransferCreateParams::Debtor,
12
11
  external_account_id: String,
13
12
  inbound_wire_drawdown_request_id: String,
14
- :originator_address_line1 => String,
15
- :originator_address_line2 => String,
16
- :originator_address_line3 => String,
17
- originator_name: String,
18
- remittance: Increase::WireTransferCreateParams::Remittance,
19
13
  require_approval: bool,
20
14
  routing_number: String,
21
15
  source_account_number_id: String
@@ -30,23 +24,19 @@ module Increase
30
24
 
31
25
  attr_accessor amount: Integer
32
26
 
33
- attr_accessor beneficiary_name: String
27
+ attr_accessor creditor: Increase::WireTransferCreateParams::Creditor
28
+
29
+ attr_accessor remittance: Increase::WireTransferCreateParams::Remittance
34
30
 
35
31
  attr_reader account_number: String?
36
32
 
37
33
  def account_number=: (String) -> String
38
34
 
39
- attr_reader beneficiary_address_line1: String?
40
-
41
- def beneficiary_address_line1=: (String) -> String
42
-
43
- attr_reader beneficiary_address_line2: String?
44
-
45
- def beneficiary_address_line2=: (String) -> String
35
+ attr_reader debtor: Increase::WireTransferCreateParams::Debtor?
46
36
 
47
- attr_reader beneficiary_address_line3: String?
48
-
49
- def beneficiary_address_line3=: (String) -> String
37
+ def debtor=: (
38
+ Increase::WireTransferCreateParams::Debtor
39
+ ) -> Increase::WireTransferCreateParams::Debtor
50
40
 
51
41
  attr_reader external_account_id: String?
52
42
 
@@ -56,28 +46,6 @@ module Increase
56
46
 
57
47
  def inbound_wire_drawdown_request_id=: (String) -> String
58
48
 
59
- attr_reader originator_address_line1: String?
60
-
61
- def originator_address_line1=: (String) -> String
62
-
63
- attr_reader originator_address_line2: String?
64
-
65
- def originator_address_line2=: (String) -> String
66
-
67
- attr_reader originator_address_line3: String?
68
-
69
- def originator_address_line3=: (String) -> String
70
-
71
- attr_reader originator_name: String?
72
-
73
- def originator_name=: (String) -> String
74
-
75
- attr_reader remittance: Increase::WireTransferCreateParams::Remittance?
76
-
77
- def remittance=: (
78
- Increase::WireTransferCreateParams::Remittance
79
- ) -> Increase::WireTransferCreateParams::Remittance
80
-
81
49
  attr_reader require_approval: bool?
82
50
 
83
51
  def require_approval=: (bool) -> bool
@@ -93,18 +61,12 @@ module Increase
93
61
  def initialize: (
94
62
  account_id: String,
95
63
  amount: Integer,
96
- beneficiary_name: String,
64
+ creditor: Increase::WireTransferCreateParams::Creditor,
65
+ remittance: Increase::WireTransferCreateParams::Remittance,
97
66
  ?account_number: String,
98
- ?beneficiary_address_line1: String,
99
- ?beneficiary_address_line2: String,
100
- ?beneficiary_address_line3: String,
67
+ ?debtor: Increase::WireTransferCreateParams::Debtor,
101
68
  ?external_account_id: String,
102
69
  ?inbound_wire_drawdown_request_id: String,
103
- ?originator_address_line1: String,
104
- ?originator_address_line2: String,
105
- ?originator_address_line3: String,
106
- ?originator_name: String,
107
- ?remittance: Increase::WireTransferCreateParams::Remittance,
108
70
  ?require_approval: bool,
109
71
  ?routing_number: String,
110
72
  ?source_account_number_id: String,
@@ -114,24 +76,88 @@ module Increase
114
76
  def to_hash: -> {
115
77
  account_id: String,
116
78
  amount: Integer,
117
- beneficiary_name: String,
79
+ creditor: Increase::WireTransferCreateParams::Creditor,
80
+ remittance: Increase::WireTransferCreateParams::Remittance,
118
81
  account_number: String,
119
- :beneficiary_address_line1 => String,
120
- :beneficiary_address_line2 => String,
121
- :beneficiary_address_line3 => String,
82
+ debtor: Increase::WireTransferCreateParams::Debtor,
122
83
  external_account_id: String,
123
84
  inbound_wire_drawdown_request_id: String,
124
- :originator_address_line1 => String,
125
- :originator_address_line2 => String,
126
- :originator_address_line3 => String,
127
- originator_name: String,
128
- remittance: Increase::WireTransferCreateParams::Remittance,
129
85
  require_approval: bool,
130
86
  routing_number: String,
131
87
  source_account_number_id: String,
132
88
  request_options: Increase::RequestOptions
133
89
  }
134
90
 
91
+ type creditor =
92
+ {
93
+ name: String,
94
+ address: Increase::WireTransferCreateParams::Creditor::Address
95
+ }
96
+
97
+ class Creditor < Increase::Internal::Type::BaseModel
98
+ attr_accessor name: String
99
+
100
+ attr_reader address: Increase::WireTransferCreateParams::Creditor::Address?
101
+
102
+ def address=: (
103
+ Increase::WireTransferCreateParams::Creditor::Address
104
+ ) -> Increase::WireTransferCreateParams::Creditor::Address
105
+
106
+ def initialize: (
107
+ name: String,
108
+ ?address: Increase::WireTransferCreateParams::Creditor::Address
109
+ ) -> void
110
+
111
+ def to_hash: -> {
112
+ name: String,
113
+ address: Increase::WireTransferCreateParams::Creditor::Address
114
+ }
115
+
116
+ type address =
117
+ {
118
+ unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
119
+ }
120
+
121
+ class Address < Increase::Internal::Type::BaseModel
122
+ attr_accessor unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
123
+
124
+ def initialize: (
125
+ unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
126
+ ) -> void
127
+
128
+ def to_hash: -> {
129
+ unstructured: Increase::WireTransferCreateParams::Creditor::Address::Unstructured
130
+ }
131
+
132
+ type unstructured =
133
+ { :line1 => String, :line2 => String, :line3 => String }
134
+
135
+ class Unstructured < Increase::Internal::Type::BaseModel
136
+ attr_accessor line1: String
137
+
138
+ attr_reader line2: String?
139
+
140
+ def line2=: (String) -> String
141
+
142
+ attr_reader line3: String?
143
+
144
+ def line3=: (String) -> String
145
+
146
+ def initialize: (
147
+ line1: String,
148
+ ?line2: String,
149
+ ?line3: String
150
+ ) -> void
151
+
152
+ def to_hash: -> {
153
+ :line1 => String,
154
+ :line2 => String,
155
+ :line3 => String
156
+ }
157
+ end
158
+ end
159
+ end
160
+
135
161
  type remittance =
136
162
  {
137
163
  category: Increase::Models::WireTransferCreateParams::Remittance::category,
@@ -213,6 +239,76 @@ module Increase
213
239
  def to_hash: -> { message: String }
214
240
  end
215
241
  end
242
+
243
+ type debtor =
244
+ {
245
+ name: String,
246
+ address: Increase::WireTransferCreateParams::Debtor::Address
247
+ }
248
+
249
+ class Debtor < Increase::Internal::Type::BaseModel
250
+ attr_accessor name: String
251
+
252
+ attr_reader address: Increase::WireTransferCreateParams::Debtor::Address?
253
+
254
+ def address=: (
255
+ Increase::WireTransferCreateParams::Debtor::Address
256
+ ) -> Increase::WireTransferCreateParams::Debtor::Address
257
+
258
+ def initialize: (
259
+ name: String,
260
+ ?address: Increase::WireTransferCreateParams::Debtor::Address
261
+ ) -> void
262
+
263
+ def to_hash: -> {
264
+ name: String,
265
+ address: Increase::WireTransferCreateParams::Debtor::Address
266
+ }
267
+
268
+ type address =
269
+ {
270
+ unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
271
+ }
272
+
273
+ class Address < Increase::Internal::Type::BaseModel
274
+ attr_accessor unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
275
+
276
+ def initialize: (
277
+ unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
278
+ ) -> void
279
+
280
+ def to_hash: -> {
281
+ unstructured: Increase::WireTransferCreateParams::Debtor::Address::Unstructured
282
+ }
283
+
284
+ type unstructured =
285
+ { :line1 => String, :line2 => String, :line3 => String }
286
+
287
+ class Unstructured < Increase::Internal::Type::BaseModel
288
+ attr_accessor line1: String
289
+
290
+ attr_reader line2: String?
291
+
292
+ def line2=: (String) -> String
293
+
294
+ attr_reader line3: String?
295
+
296
+ def line3=: (String) -> String
297
+
298
+ def initialize: (
299
+ line1: String,
300
+ ?line2: String,
301
+ ?line3: String
302
+ ) -> void
303
+
304
+ def to_hash: -> {
305
+ :line1 => String,
306
+ :line2 => String,
307
+ :line3 => String
308
+ }
309
+ end
310
+ end
311
+ end
216
312
  end
217
313
  end
218
314
  end
@@ -6,6 +6,7 @@ module Increase
6
6
  amount: Integer,
7
7
  fulfillment_method: Increase::Models::CheckTransferCreateParams::fulfillment_method,
8
8
  source_account_number_id: String,
9
+ ?balance_check: Increase::Models::CheckTransferCreateParams::balance_check,
9
10
  ?check_number: String,
10
11
  ?physical_check: Increase::CheckTransferCreateParams::PhysicalCheck,
11
12
  ?require_approval: bool,
@@ -4,18 +4,12 @@ module Increase
4
4
  def create: (
5
5
  account_id: String,
6
6
  amount: Integer,
7
- beneficiary_name: String,
7
+ creditor: Increase::WireTransferCreateParams::Creditor,
8
+ remittance: Increase::WireTransferCreateParams::Remittance,
8
9
  ?account_number: String,
9
- ?beneficiary_address_line1: String,
10
- ?beneficiary_address_line2: String,
11
- ?beneficiary_address_line3: String,
10
+ ?debtor: Increase::WireTransferCreateParams::Debtor,
12
11
  ?external_account_id: String,
13
12
  ?inbound_wire_drawdown_request_id: String,
14
- ?originator_address_line1: String,
15
- ?originator_address_line2: String,
16
- ?originator_address_line3: String,
17
- ?originator_name: String,
18
- ?remittance: Increase::WireTransferCreateParams::Remittance,
19
13
  ?require_approval: bool,
20
14
  ?routing_number: String,
21
15
  ?source_account_number_id: 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.122.0
4
+ version: 1.124.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-10-29 00:00:00.000000000 Z
11
+ date: 2025-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool