increase 1.37.1 → 1.39.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34fdce325400673a72fc4fd8a9b067272a7495f6ae7e959138cb46bba067ff36
4
- data.tar.gz: 3c141919c4cc6bd589100dde959ecf7bab2710737831e56697c71c8cf16ab631
3
+ metadata.gz: a8b2f6858bc742cd3da02aadf5e4cc469b2fec47544bd062cf78f41fce2d843c
4
+ data.tar.gz: f951ec2b7095c3447d17bf8d34319445d045b84ba158b649a0249c5bfa349fd1
5
5
  SHA512:
6
- metadata.gz: 1bafea88744b1bbcbb64951a9e1f766b8e75b0037072d7159b476a24ea2c25d017bf21c90ce6ec5994f4ebe2bd26592a88e7e905a57c61801f42f11ed20750aa
7
- data.tar.gz: 73997316852c6d4b8d56b6fd196b57d550f74f6a5ba0f9d9b52ceed9eac2bab5bb7aa7e1cba4de665786d1ae78fd67b9b13b5faf8c2455fbd5955ca00a6c053b
6
+ metadata.gz: 0b253c55c3c9242d3fcca0c447afb8f9bb911a2b76502502d1027c888551a97cd842467c542d6d4a70cbef57f17e72199511866d151862785e0a8af64dcda12e
7
+ data.tar.gz: c55c75c84ac60f9c7d8307164e99c17b0f02b428b139662e8cf58fb34f14728ef2d8018f337d278c087fbc1c4dd164e06029bb99831ecff088b118d18d90d7db
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.39.0 (2025-08-20)
4
+
5
+ Full Changelog: [v1.38.0...v1.39.0](https://github.com/Increase/increase-ruby/compare/v1.38.0...v1.39.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([ada8b1d](https://github.com/Increase/increase-ruby/commit/ada8b1db94b95aeb27396d65c0971007845a2105))
10
+
11
+ ## 1.38.0 (2025-08-19)
12
+
13
+ Full Changelog: [v1.37.1...v1.38.0](https://github.com/Increase/increase-ruby/compare/v1.37.1...v1.38.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([e013ac0](https://github.com/Increase/increase-ruby/commit/e013ac0b0862670e3cb4052dc5a4a14722beed4e))
18
+
3
19
  ## 1.37.1 (2025-08-19)
4
20
 
5
21
  Full Changelog: [v1.37.0...v1.37.1](https://github.com/Increase/increase-ruby/compare/v1.37.0...v1.37.1)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.37.1"
18
+ gem "increase", "~> 1.39.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -28,36 +28,6 @@ module Increase
28
28
  # @return [Integer]
29
29
  required :amount, Integer
30
30
 
31
- # @!attribute beneficiary_address_line1
32
- # A free-form address field set by the sender.
33
- #
34
- # @return [String, nil]
35
- required :beneficiary_address_line1, String, nil?: true
36
-
37
- # @!attribute beneficiary_address_line2
38
- # A free-form address field set by the sender.
39
- #
40
- # @return [String, nil]
41
- required :beneficiary_address_line2, String, nil?: true
42
-
43
- # @!attribute beneficiary_address_line3
44
- # A free-form address field set by the sender.
45
- #
46
- # @return [String, nil]
47
- required :beneficiary_address_line3, String, nil?: true
48
-
49
- # @!attribute beneficiary_name
50
- # A name set by the sender.
51
- #
52
- # @return [String, nil]
53
- required :beneficiary_name, String, nil?: true
54
-
55
- # @!attribute beneficiary_reference
56
- # A free-form reference string set by the sender, to help identify the transfer.
57
- #
58
- # @return [String, nil]
59
- required :beneficiary_reference, String, nil?: true
60
-
61
31
  # @!attribute created_at
62
32
  # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
63
33
  # the inbound wire transfer was created.
@@ -65,80 +35,86 @@ module Increase
65
35
  # @return [Time]
66
36
  required :created_at, Time
67
37
 
68
- # @!attribute description
69
- # An Increase-constructed description of the transfer.
38
+ # @!attribute creditor_address_line1
39
+ # A free-form address field set by the sender.
70
40
  #
71
- # @return [String]
72
- required :description, String
41
+ # @return [String, nil]
42
+ required :creditor_address_line1, String, nil?: true
73
43
 
74
- # @!attribute input_message_accountability_data
75
- # A unique identifier available to the originating and receiving banks, commonly
76
- # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
77
- # service and is helpful when debugging wires with the originating bank.
44
+ # @!attribute creditor_address_line2
45
+ # A free-form address field set by the sender.
78
46
  #
79
47
  # @return [String, nil]
80
- required :input_message_accountability_data, String, nil?: true
48
+ required :creditor_address_line2, String, nil?: true
81
49
 
82
- # @!attribute originator_address_line1
83
- # The address of the wire originator, set by the sending bank.
50
+ # @!attribute creditor_address_line3
51
+ # A free-form address field set by the sender.
84
52
  #
85
53
  # @return [String, nil]
86
- required :originator_address_line1, String, nil?: true
54
+ required :creditor_address_line3, String, nil?: true
87
55
 
88
- # @!attribute originator_address_line2
89
- # The address of the wire originator, set by the sending bank.
56
+ # @!attribute creditor_name
57
+ # A name set by the sender.
90
58
  #
91
59
  # @return [String, nil]
92
- required :originator_address_line2, String, nil?: true
60
+ required :creditor_name, String, nil?: true
93
61
 
94
- # @!attribute originator_address_line3
95
- # The address of the wire originator, set by the sending bank.
62
+ # @!attribute debtor_address_line1
63
+ # A free-form address field set by the sender.
96
64
  #
97
65
  # @return [String, nil]
98
- required :originator_address_line3, String, nil?: true
66
+ required :debtor_address_line1, String, nil?: true
99
67
 
100
- # @!attribute originator_name
101
- # The originator of the wire, set by the sending bank.
68
+ # @!attribute debtor_address_line2
69
+ # A free-form address field set by the sender.
102
70
  #
103
71
  # @return [String, nil]
104
- required :originator_name, String, nil?: true
72
+ required :debtor_address_line2, String, nil?: true
105
73
 
106
- # @!attribute originator_routing_number
107
- # The American Banking Association (ABA) routing number of the bank originating
108
- # the transfer.
74
+ # @!attribute debtor_address_line3
75
+ # A free-form address field set by the sender.
109
76
  #
110
77
  # @return [String, nil]
111
- required :originator_routing_number, String, nil?: true
78
+ required :debtor_address_line3, String, nil?: true
112
79
 
113
- # @!attribute originator_to_beneficiary_information
114
- # An Increase-created concatenation of the Originator-to-Beneficiary lines.
80
+ # @!attribute debtor_name
81
+ # A name set by the sender.
115
82
  #
116
83
  # @return [String, nil]
117
- required :originator_to_beneficiary_information, String, nil?: true
84
+ required :debtor_name, String, nil?: true
118
85
 
119
- # @!attribute originator_to_beneficiary_information_line1
120
- # A free-form message set by the wire originator.
86
+ # @!attribute description
87
+ # An Increase-constructed description of the transfer.
88
+ #
89
+ # @return [String]
90
+ required :description, String
91
+
92
+ # @!attribute end_to_end_identification
93
+ # A free-form reference string set by the sender, to help identify the transfer.
121
94
  #
122
95
  # @return [String, nil]
123
- required :originator_to_beneficiary_information_line1, String, nil?: true
96
+ required :end_to_end_identification, String, nil?: true
124
97
 
125
- # @!attribute originator_to_beneficiary_information_line2
126
- # A free-form message set by the wire originator.
98
+ # @!attribute input_message_accountability_data
99
+ # A unique identifier available to the originating and receiving banks, commonly
100
+ # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
101
+ # service and is helpful when debugging wires with the originating bank.
127
102
  #
128
103
  # @return [String, nil]
129
- required :originator_to_beneficiary_information_line2, String, nil?: true
104
+ required :input_message_accountability_data, String, nil?: true
130
105
 
131
- # @!attribute originator_to_beneficiary_information_line3
132
- # A free-form message set by the wire originator.
106
+ # @!attribute instructing_agent_routing_number
107
+ # The American Banking Association (ABA) routing number of the bank that sent the
108
+ # wire.
133
109
  #
134
110
  # @return [String, nil]
135
- required :originator_to_beneficiary_information_line3, String, nil?: true
111
+ required :instructing_agent_routing_number, String, nil?: true
136
112
 
137
- # @!attribute originator_to_beneficiary_information_line4
138
- # A free-form message set by the wire originator.
113
+ # @!attribute instruction_identification
114
+ # The sending bank's identifier for the wire transfer.
139
115
  #
140
116
  # @return [String, nil]
141
- required :originator_to_beneficiary_information_line4, String, nil?: true
117
+ required :instruction_identification, String, nil?: true
142
118
 
143
119
  # @!attribute reversal
144
120
  # Information about the reversal of the inbound wire transfer if it has been
@@ -147,12 +123,6 @@ module Increase
147
123
  # @return [Increase::Models::InboundWireTransfer::Reversal, nil]
148
124
  required :reversal, -> { Increase::InboundWireTransfer::Reversal }, nil?: true
149
125
 
150
- # @!attribute sender_reference
151
- # The sending bank's reference number for the wire transfer.
152
- #
153
- # @return [String, nil]
154
- required :sender_reference, String, nil?: true
155
-
156
126
  # @!attribute status
157
127
  # The status of the transfer.
158
128
  #
@@ -166,13 +136,27 @@ module Increase
166
136
  # @return [Symbol, Increase::Models::InboundWireTransfer::Type]
167
137
  required :type, enum: -> { Increase::InboundWireTransfer::Type }
168
138
 
139
+ # @!attribute unique_end_to_end_transaction_reference
140
+ # The Unique End-to-end Transaction Reference
141
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
142
+ # of the transfer.
143
+ #
144
+ # @return [String, nil]
145
+ required :unique_end_to_end_transaction_reference, String, nil?: true
146
+
147
+ # @!attribute unstructured_remittance_information
148
+ # A free-form message set by the sender.
149
+ #
150
+ # @return [String, nil]
151
+ required :unstructured_remittance_information, String, nil?: true
152
+
169
153
  # @!attribute wire_drawdown_request_id
170
154
  # The wire drawdown request the inbound wire transfer is fulfilling.
171
155
  #
172
156
  # @return [String, nil]
173
157
  required :wire_drawdown_request_id, String, nil?: true
174
158
 
175
- # @!method initialize(id:, account_id:, account_number_id:, amount:, beneficiary_address_line1:, beneficiary_address_line2:, beneficiary_address_line3:, beneficiary_name:, beneficiary_reference:, created_at:, description:, input_message_accountability_data:, originator_address_line1:, originator_address_line2:, originator_address_line3:, originator_name:, originator_routing_number:, originator_to_beneficiary_information:, originator_to_beneficiary_information_line1:, originator_to_beneficiary_information_line2:, originator_to_beneficiary_information_line3:, originator_to_beneficiary_information_line4:, reversal:, sender_reference:, status:, type:, wire_drawdown_request_id:)
159
+ # @!method initialize(id:, account_id:, account_number_id:, amount:, created_at:, creditor_address_line1:, creditor_address_line2:, creditor_address_line3:, creditor_name:, debtor_address_line1:, debtor_address_line2:, debtor_address_line3:, debtor_name:, description:, end_to_end_identification:, input_message_accountability_data:, instructing_agent_routing_number:, instruction_identification:, reversal:, status:, type:, unique_end_to_end_transaction_reference:, unstructured_remittance_information:, wire_drawdown_request_id:)
176
160
  # Some parameter documentations has been truncated, see
177
161
  # {Increase::Models::InboundWireTransfer} for more details.
178
162
  #
@@ -187,50 +171,44 @@ module Increase
187
171
  #
188
172
  # @param amount [Integer] The amount in USD cents.
189
173
  #
190
- # @param beneficiary_address_line1 [String, nil] A free-form address field set by the sender.
191
- #
192
- # @param beneficiary_address_line2 [String, nil] A free-form address field set by the sender.
193
- #
194
- # @param beneficiary_address_line3 [String, nil] A free-form address field set by the sender.
195
- #
196
- # @param beneficiary_name [String, nil] A name set by the sender.
197
- #
198
- # @param beneficiary_reference [String, nil] A free-form reference string set by the sender, to help identify the transfer.
199
- #
200
174
  # @param created_at [Time] The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which th
201
175
  #
202
- # @param description [String] An Increase-constructed description of the transfer.
176
+ # @param creditor_address_line1 [String, nil] A free-form address field set by the sender.
203
177
  #
204
- # @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
178
+ # @param creditor_address_line2 [String, nil] A free-form address field set by the sender.
205
179
  #
206
- # @param originator_address_line1 [String, nil] The address of the wire originator, set by the sending bank.
180
+ # @param creditor_address_line3 [String, nil] A free-form address field set by the sender.
207
181
  #
208
- # @param originator_address_line2 [String, nil] The address of the wire originator, set by the sending bank.
182
+ # @param creditor_name [String, nil] A name set by the sender.
209
183
  #
210
- # @param originator_address_line3 [String, nil] The address of the wire originator, set by the sending bank.
184
+ # @param debtor_address_line1 [String, nil] A free-form address field set by the sender.
211
185
  #
212
- # @param originator_name [String, nil] The originator of the wire, set by the sending bank.
186
+ # @param debtor_address_line2 [String, nil] A free-form address field set by the sender.
213
187
  #
214
- # @param originator_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank originating th
188
+ # @param debtor_address_line3 [String, nil] A free-form address field set by the sender.
215
189
  #
216
- # @param originator_to_beneficiary_information [String, nil] An Increase-created concatenation of the Originator-to-Beneficiary lines.
190
+ # @param debtor_name [String, nil] A name set by the sender.
217
191
  #
218
- # @param originator_to_beneficiary_information_line1 [String, nil] A free-form message set by the wire originator.
192
+ # @param description [String] An Increase-constructed description of the transfer.
219
193
  #
220
- # @param originator_to_beneficiary_information_line2 [String, nil] A free-form message set by the wire originator.
194
+ # @param end_to_end_identification [String, nil] A free-form reference string set by the sender, to help identify the transfer.
221
195
  #
222
- # @param originator_to_beneficiary_information_line3 [String, nil] A free-form message set by the wire originator.
196
+ # @param input_message_accountability_data [String, nil] A unique identifier available to the originating and receiving banks, commonly a
223
197
  #
224
- # @param originator_to_beneficiary_information_line4 [String, nil] A free-form message set by the wire originator.
198
+ # @param instructing_agent_routing_number [String, nil] The American Banking Association (ABA) routing number of the bank that sent the
225
199
  #
226
- # @param reversal [Increase::Models::InboundWireTransfer::Reversal, nil] Information about the reversal of the inbound wire transfer if it has been rever
200
+ # @param instruction_identification [String, nil] The sending bank's identifier for the wire transfer.
227
201
  #
228
- # @param sender_reference [String, nil] The sending bank's reference number for the wire transfer.
202
+ # @param reversal [Increase::Models::InboundWireTransfer::Reversal, nil] Information about the reversal of the inbound wire transfer if it has been rever
229
203
  #
230
204
  # @param status [Symbol, Increase::Models::InboundWireTransfer::Status] The status of the transfer.
231
205
  #
232
206
  # @param type [Symbol, Increase::Models::InboundWireTransfer::Type] A constant representing the object's type. For this resource it will always be `
233
207
  #
208
+ # @param unique_end_to_end_transaction_reference [String, nil] The Unique End-to-end Transaction Reference ([UETR](https://www.swift.com/paymen
209
+ #
210
+ # @param unstructured_remittance_information [String, nil] A free-form message set by the sender.
211
+ #
234
212
  # @param wire_drawdown_request_id [String, nil] The wire drawdown request the inbound wire transfer is fulfilling.
235
213
 
236
214
  # @see Increase::Models::InboundWireTransfer#reversal
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Increase
4
- VERSION = "1.37.1"
4
+ VERSION = "1.39.0"
5
5
  end
@@ -24,81 +24,65 @@ module Increase
24
24
  sig { returns(Integer) }
25
25
  attr_accessor :amount
26
26
 
27
+ # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
28
+ # the inbound wire transfer was created.
29
+ sig { returns(Time) }
30
+ attr_accessor :created_at
31
+
27
32
  # A free-form address field set by the sender.
28
33
  sig { returns(T.nilable(String)) }
29
- attr_accessor :beneficiary_address_line1
34
+ attr_accessor :creditor_address_line1
30
35
 
31
36
  # A free-form address field set by the sender.
32
37
  sig { returns(T.nilable(String)) }
33
- attr_accessor :beneficiary_address_line2
38
+ attr_accessor :creditor_address_line2
34
39
 
35
40
  # A free-form address field set by the sender.
36
41
  sig { returns(T.nilable(String)) }
37
- attr_accessor :beneficiary_address_line3
42
+ attr_accessor :creditor_address_line3
38
43
 
39
44
  # A name set by the sender.
40
45
  sig { returns(T.nilable(String)) }
41
- attr_accessor :beneficiary_name
42
-
43
- # A free-form reference string set by the sender, to help identify the transfer.
44
- sig { returns(T.nilable(String)) }
45
- attr_accessor :beneficiary_reference
46
-
47
- # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
48
- # the inbound wire transfer was created.
49
- sig { returns(Time) }
50
- attr_accessor :created_at
51
-
52
- # An Increase-constructed description of the transfer.
53
- sig { returns(String) }
54
- attr_accessor :description
55
-
56
- # A unique identifier available to the originating and receiving banks, commonly
57
- # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
58
- # service and is helpful when debugging wires with the originating bank.
59
- sig { returns(T.nilable(String)) }
60
- attr_accessor :input_message_accountability_data
61
-
62
- # The address of the wire originator, set by the sending bank.
63
- sig { returns(T.nilable(String)) }
64
- attr_accessor :originator_address_line1
46
+ attr_accessor :creditor_name
65
47
 
66
- # The address of the wire originator, set by the sending bank.
48
+ # A free-form address field set by the sender.
67
49
  sig { returns(T.nilable(String)) }
68
- attr_accessor :originator_address_line2
50
+ attr_accessor :debtor_address_line1
69
51
 
70
- # The address of the wire originator, set by the sending bank.
52
+ # A free-form address field set by the sender.
71
53
  sig { returns(T.nilable(String)) }
72
- attr_accessor :originator_address_line3
54
+ attr_accessor :debtor_address_line2
73
55
 
74
- # The originator of the wire, set by the sending bank.
56
+ # A free-form address field set by the sender.
75
57
  sig { returns(T.nilable(String)) }
76
- attr_accessor :originator_name
58
+ attr_accessor :debtor_address_line3
77
59
 
78
- # The American Banking Association (ABA) routing number of the bank originating
79
- # the transfer.
60
+ # A name set by the sender.
80
61
  sig { returns(T.nilable(String)) }
81
- attr_accessor :originator_routing_number
62
+ attr_accessor :debtor_name
82
63
 
83
- # An Increase-created concatenation of the Originator-to-Beneficiary lines.
84
- sig { returns(T.nilable(String)) }
85
- attr_accessor :originator_to_beneficiary_information
64
+ # An Increase-constructed description of the transfer.
65
+ sig { returns(String) }
66
+ attr_accessor :description
86
67
 
87
- # A free-form message set by the wire originator.
68
+ # A free-form reference string set by the sender, to help identify the transfer.
88
69
  sig { returns(T.nilable(String)) }
89
- attr_accessor :originator_to_beneficiary_information_line1
70
+ attr_accessor :end_to_end_identification
90
71
 
91
- # A free-form message set by the wire originator.
72
+ # A unique identifier available to the originating and receiving banks, commonly
73
+ # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
74
+ # service and is helpful when debugging wires with the originating bank.
92
75
  sig { returns(T.nilable(String)) }
93
- attr_accessor :originator_to_beneficiary_information_line2
76
+ attr_accessor :input_message_accountability_data
94
77
 
95
- # A free-form message set by the wire originator.
78
+ # The American Banking Association (ABA) routing number of the bank that sent the
79
+ # wire.
96
80
  sig { returns(T.nilable(String)) }
97
- attr_accessor :originator_to_beneficiary_information_line3
81
+ attr_accessor :instructing_agent_routing_number
98
82
 
99
- # A free-form message set by the wire originator.
83
+ # The sending bank's identifier for the wire transfer.
100
84
  sig { returns(T.nilable(String)) }
101
- attr_accessor :originator_to_beneficiary_information_line4
85
+ attr_accessor :instruction_identification
102
86
 
103
87
  # Information about the reversal of the inbound wire transfer if it has been
104
88
  # reversed.
@@ -112,10 +96,6 @@ module Increase
112
96
  end
113
97
  attr_writer :reversal
114
98
 
115
- # The sending bank's reference number for the wire transfer.
116
- sig { returns(T.nilable(String)) }
117
- attr_accessor :sender_reference
118
-
119
99
  # The status of the transfer.
120
100
  sig { returns(Increase::InboundWireTransfer::Status::TaggedSymbol) }
121
101
  attr_accessor :status
@@ -125,6 +105,16 @@ module Increase
125
105
  sig { returns(Increase::InboundWireTransfer::Type::TaggedSymbol) }
126
106
  attr_accessor :type
127
107
 
108
+ # The Unique End-to-end Transaction Reference
109
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
110
+ # of the transfer.
111
+ sig { returns(T.nilable(String)) }
112
+ attr_accessor :unique_end_to_end_transaction_reference
113
+
114
+ # A free-form message set by the sender.
115
+ sig { returns(T.nilable(String)) }
116
+ attr_accessor :unstructured_remittance_information
117
+
128
118
  # The wire drawdown request the inbound wire transfer is fulfilling.
129
119
  sig { returns(T.nilable(String)) }
130
120
  attr_accessor :wire_drawdown_request_id
@@ -137,28 +127,25 @@ module Increase
137
127
  account_id: String,
138
128
  account_number_id: String,
139
129
  amount: Integer,
140
- beneficiary_address_line1: T.nilable(String),
141
- beneficiary_address_line2: T.nilable(String),
142
- beneficiary_address_line3: T.nilable(String),
143
- beneficiary_name: T.nilable(String),
144
- beneficiary_reference: T.nilable(String),
145
130
  created_at: Time,
131
+ creditor_address_line1: T.nilable(String),
132
+ creditor_address_line2: T.nilable(String),
133
+ creditor_address_line3: T.nilable(String),
134
+ creditor_name: T.nilable(String),
135
+ debtor_address_line1: T.nilable(String),
136
+ debtor_address_line2: T.nilable(String),
137
+ debtor_address_line3: T.nilable(String),
138
+ debtor_name: T.nilable(String),
146
139
  description: String,
140
+ end_to_end_identification: T.nilable(String),
147
141
  input_message_accountability_data: T.nilable(String),
148
- originator_address_line1: T.nilable(String),
149
- originator_address_line2: T.nilable(String),
150
- originator_address_line3: T.nilable(String),
151
- originator_name: T.nilable(String),
152
- originator_routing_number: T.nilable(String),
153
- originator_to_beneficiary_information: T.nilable(String),
154
- originator_to_beneficiary_information_line1: T.nilable(String),
155
- originator_to_beneficiary_information_line2: T.nilable(String),
156
- originator_to_beneficiary_information_line3: T.nilable(String),
157
- originator_to_beneficiary_information_line4: T.nilable(String),
142
+ instructing_agent_routing_number: T.nilable(String),
143
+ instruction_identification: T.nilable(String),
158
144
  reversal: T.nilable(Increase::InboundWireTransfer::Reversal::OrHash),
159
- sender_reference: T.nilable(String),
160
145
  status: Increase::InboundWireTransfer::Status::OrSymbol,
161
146
  type: Increase::InboundWireTransfer::Type::OrSymbol,
147
+ unique_end_to_end_transaction_reference: T.nilable(String),
148
+ unstructured_remittance_information: T.nilable(String),
162
149
  wire_drawdown_request_id: T.nilable(String)
163
150
  ).returns(T.attached_class)
164
151
  end
@@ -171,56 +158,52 @@ module Increase
171
158
  account_number_id:,
172
159
  # The amount in USD cents.
173
160
  amount:,
161
+ # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
162
+ # the inbound wire transfer was created.
163
+ created_at:,
174
164
  # A free-form address field set by the sender.
175
- beneficiary_address_line1:,
165
+ creditor_address_line1:,
176
166
  # A free-form address field set by the sender.
177
- beneficiary_address_line2:,
167
+ creditor_address_line2:,
178
168
  # A free-form address field set by the sender.
179
- beneficiary_address_line3:,
169
+ creditor_address_line3:,
180
170
  # A name set by the sender.
181
- beneficiary_name:,
182
- # A free-form reference string set by the sender, to help identify the transfer.
183
- beneficiary_reference:,
184
- # The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
185
- # the inbound wire transfer was created.
186
- created_at:,
171
+ creditor_name:,
172
+ # A free-form address field set by the sender.
173
+ debtor_address_line1:,
174
+ # A free-form address field set by the sender.
175
+ debtor_address_line2:,
176
+ # A free-form address field set by the sender.
177
+ debtor_address_line3:,
178
+ # A name set by the sender.
179
+ debtor_name:,
187
180
  # An Increase-constructed description of the transfer.
188
181
  description:,
182
+ # A free-form reference string set by the sender, to help identify the transfer.
183
+ end_to_end_identification:,
189
184
  # A unique identifier available to the originating and receiving banks, commonly
190
185
  # abbreviated as IMAD. It is created when the wire is submitted to the Fedwire
191
186
  # service and is helpful when debugging wires with the originating bank.
192
187
  input_message_accountability_data:,
193
- # The address of the wire originator, set by the sending bank.
194
- originator_address_line1:,
195
- # The address of the wire originator, set by the sending bank.
196
- originator_address_line2:,
197
- # The address of the wire originator, set by the sending bank.
198
- originator_address_line3:,
199
- # The originator of the wire, set by the sending bank.
200
- originator_name:,
201
- # The American Banking Association (ABA) routing number of the bank originating
202
- # the transfer.
203
- originator_routing_number:,
204
- # An Increase-created concatenation of the Originator-to-Beneficiary lines.
205
- originator_to_beneficiary_information:,
206
- # A free-form message set by the wire originator.
207
- originator_to_beneficiary_information_line1:,
208
- # A free-form message set by the wire originator.
209
- originator_to_beneficiary_information_line2:,
210
- # A free-form message set by the wire originator.
211
- originator_to_beneficiary_information_line3:,
212
- # A free-form message set by the wire originator.
213
- originator_to_beneficiary_information_line4:,
188
+ # The American Banking Association (ABA) routing number of the bank that sent the
189
+ # wire.
190
+ instructing_agent_routing_number:,
191
+ # The sending bank's identifier for the wire transfer.
192
+ instruction_identification:,
214
193
  # Information about the reversal of the inbound wire transfer if it has been
215
194
  # reversed.
216
195
  reversal:,
217
- # The sending bank's reference number for the wire transfer.
218
- sender_reference:,
219
196
  # The status of the transfer.
220
197
  status:,
221
198
  # A constant representing the object's type. For this resource it will always be
222
199
  # `inbound_wire_transfer`.
223
200
  type:,
201
+ # The Unique End-to-end Transaction Reference
202
+ # ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
203
+ # of the transfer.
204
+ unique_end_to_end_transaction_reference:,
205
+ # A free-form message set by the sender.
206
+ unstructured_remittance_information:,
224
207
  # The wire drawdown request the inbound wire transfer is fulfilling.
225
208
  wire_drawdown_request_id:
226
209
  )
@@ -233,28 +216,25 @@ module Increase
233
216
  account_id: String,
234
217
  account_number_id: String,
235
218
  amount: Integer,
236
- beneficiary_address_line1: T.nilable(String),
237
- beneficiary_address_line2: T.nilable(String),
238
- beneficiary_address_line3: T.nilable(String),
239
- beneficiary_name: T.nilable(String),
240
- beneficiary_reference: T.nilable(String),
241
219
  created_at: Time,
220
+ creditor_address_line1: T.nilable(String),
221
+ creditor_address_line2: T.nilable(String),
222
+ creditor_address_line3: T.nilable(String),
223
+ creditor_name: T.nilable(String),
224
+ debtor_address_line1: T.nilable(String),
225
+ debtor_address_line2: T.nilable(String),
226
+ debtor_address_line3: T.nilable(String),
227
+ debtor_name: T.nilable(String),
242
228
  description: String,
229
+ end_to_end_identification: T.nilable(String),
243
230
  input_message_accountability_data: T.nilable(String),
244
- originator_address_line1: T.nilable(String),
245
- originator_address_line2: T.nilable(String),
246
- originator_address_line3: T.nilable(String),
247
- originator_name: T.nilable(String),
248
- originator_routing_number: T.nilable(String),
249
- originator_to_beneficiary_information: T.nilable(String),
250
- originator_to_beneficiary_information_line1: T.nilable(String),
251
- originator_to_beneficiary_information_line2: T.nilable(String),
252
- originator_to_beneficiary_information_line3: T.nilable(String),
253
- originator_to_beneficiary_information_line4: T.nilable(String),
231
+ instructing_agent_routing_number: T.nilable(String),
232
+ instruction_identification: T.nilable(String),
254
233
  reversal: T.nilable(Increase::InboundWireTransfer::Reversal),
255
- sender_reference: T.nilable(String),
256
234
  status: Increase::InboundWireTransfer::Status::TaggedSymbol,
257
235
  type: Increase::InboundWireTransfer::Type::TaggedSymbol,
236
+ unique_end_to_end_transaction_reference: T.nilable(String),
237
+ unstructured_remittance_information: T.nilable(String),
258
238
  wire_drawdown_request_id: T.nilable(String)
259
239
  }
260
240
  )
@@ -6,28 +6,25 @@ module Increase
6
6
  account_id: String,
7
7
  account_number_id: String,
8
8
  amount: Integer,
9
- :beneficiary_address_line1 => String?,
10
- :beneficiary_address_line2 => String?,
11
- :beneficiary_address_line3 => String?,
12
- beneficiary_name: String?,
13
- beneficiary_reference: String?,
14
9
  created_at: Time,
10
+ :creditor_address_line1 => String?,
11
+ :creditor_address_line2 => String?,
12
+ :creditor_address_line3 => String?,
13
+ creditor_name: String?,
14
+ :debtor_address_line1 => String?,
15
+ :debtor_address_line2 => String?,
16
+ :debtor_address_line3 => String?,
17
+ debtor_name: String?,
15
18
  description: String,
19
+ end_to_end_identification: String?,
16
20
  input_message_accountability_data: String?,
17
- :originator_address_line1 => String?,
18
- :originator_address_line2 => String?,
19
- :originator_address_line3 => String?,
20
- originator_name: String?,
21
- originator_routing_number: String?,
22
- originator_to_beneficiary_information: String?,
23
- :originator_to_beneficiary_information_line1 => String?,
24
- :originator_to_beneficiary_information_line2 => String?,
25
- :originator_to_beneficiary_information_line3 => String?,
26
- :originator_to_beneficiary_information_line4 => String?,
21
+ instructing_agent_routing_number: String?,
22
+ instruction_identification: String?,
27
23
  reversal: Increase::InboundWireTransfer::Reversal?,
28
- sender_reference: String?,
29
24
  status: Increase::Models::InboundWireTransfer::status,
30
25
  type: Increase::Models::InboundWireTransfer::type_,
26
+ unique_end_to_end_transaction_reference: String?,
27
+ unstructured_remittance_information: String?,
31
28
  wire_drawdown_request_id: String?
32
29
  }
33
30
 
@@ -40,50 +37,44 @@ module Increase
40
37
 
41
38
  attr_accessor amount: Integer
42
39
 
43
- attr_accessor beneficiary_address_line1: String?
44
-
45
- attr_accessor beneficiary_address_line2: String?
46
-
47
- attr_accessor beneficiary_address_line3: String?
48
-
49
- attr_accessor beneficiary_name: String?
50
-
51
- attr_accessor beneficiary_reference: String?
52
-
53
40
  attr_accessor created_at: Time
54
41
 
55
- attr_accessor description: String
42
+ attr_accessor creditor_address_line1: String?
56
43
 
57
- attr_accessor input_message_accountability_data: String?
44
+ attr_accessor creditor_address_line2: String?
58
45
 
59
- attr_accessor originator_address_line1: String?
46
+ attr_accessor creditor_address_line3: String?
60
47
 
61
- attr_accessor originator_address_line2: String?
48
+ attr_accessor creditor_name: String?
62
49
 
63
- attr_accessor originator_address_line3: String?
50
+ attr_accessor debtor_address_line1: String?
64
51
 
65
- attr_accessor originator_name: String?
52
+ attr_accessor debtor_address_line2: String?
66
53
 
67
- attr_accessor originator_routing_number: String?
54
+ attr_accessor debtor_address_line3: String?
68
55
 
69
- attr_accessor originator_to_beneficiary_information: String?
56
+ attr_accessor debtor_name: String?
70
57
 
71
- attr_accessor originator_to_beneficiary_information_line1: String?
58
+ attr_accessor description: String
72
59
 
73
- attr_accessor originator_to_beneficiary_information_line2: String?
60
+ attr_accessor end_to_end_identification: String?
74
61
 
75
- attr_accessor originator_to_beneficiary_information_line3: String?
62
+ attr_accessor input_message_accountability_data: String?
76
63
 
77
- attr_accessor originator_to_beneficiary_information_line4: String?
64
+ attr_accessor instructing_agent_routing_number: String?
78
65
 
79
- attr_accessor reversal: Increase::InboundWireTransfer::Reversal?
66
+ attr_accessor instruction_identification: String?
80
67
 
81
- attr_accessor sender_reference: String?
68
+ attr_accessor reversal: Increase::InboundWireTransfer::Reversal?
82
69
 
83
70
  attr_accessor status: Increase::Models::InboundWireTransfer::status
84
71
 
85
72
  attr_accessor type: Increase::Models::InboundWireTransfer::type_
86
73
 
74
+ attr_accessor unique_end_to_end_transaction_reference: String?
75
+
76
+ attr_accessor unstructured_remittance_information: String?
77
+
87
78
  attr_accessor wire_drawdown_request_id: String?
88
79
 
89
80
  def initialize: (
@@ -91,28 +82,25 @@ module Increase
91
82
  account_id: String,
92
83
  account_number_id: String,
93
84
  amount: Integer,
94
- beneficiary_address_line1: String?,
95
- beneficiary_address_line2: String?,
96
- beneficiary_address_line3: String?,
97
- beneficiary_name: String?,
98
- beneficiary_reference: String?,
99
85
  created_at: Time,
86
+ creditor_address_line1: String?,
87
+ creditor_address_line2: String?,
88
+ creditor_address_line3: String?,
89
+ creditor_name: String?,
90
+ debtor_address_line1: String?,
91
+ debtor_address_line2: String?,
92
+ debtor_address_line3: String?,
93
+ debtor_name: String?,
100
94
  description: String,
95
+ end_to_end_identification: String?,
101
96
  input_message_accountability_data: String?,
102
- originator_address_line1: String?,
103
- originator_address_line2: String?,
104
- originator_address_line3: String?,
105
- originator_name: String?,
106
- originator_routing_number: String?,
107
- originator_to_beneficiary_information: String?,
108
- originator_to_beneficiary_information_line1: String?,
109
- originator_to_beneficiary_information_line2: String?,
110
- originator_to_beneficiary_information_line3: String?,
111
- originator_to_beneficiary_information_line4: String?,
97
+ instructing_agent_routing_number: String?,
98
+ instruction_identification: String?,
112
99
  reversal: Increase::InboundWireTransfer::Reversal?,
113
- sender_reference: String?,
114
100
  status: Increase::Models::InboundWireTransfer::status,
115
101
  type: Increase::Models::InboundWireTransfer::type_,
102
+ unique_end_to_end_transaction_reference: String?,
103
+ unstructured_remittance_information: String?,
116
104
  wire_drawdown_request_id: String?
117
105
  ) -> void
118
106
 
@@ -121,28 +109,25 @@ module Increase
121
109
  account_id: String,
122
110
  account_number_id: String,
123
111
  amount: Integer,
124
- :beneficiary_address_line1 => String?,
125
- :beneficiary_address_line2 => String?,
126
- :beneficiary_address_line3 => String?,
127
- beneficiary_name: String?,
128
- beneficiary_reference: String?,
129
112
  created_at: Time,
113
+ :creditor_address_line1 => String?,
114
+ :creditor_address_line2 => String?,
115
+ :creditor_address_line3 => String?,
116
+ creditor_name: String?,
117
+ :debtor_address_line1 => String?,
118
+ :debtor_address_line2 => String?,
119
+ :debtor_address_line3 => String?,
120
+ debtor_name: String?,
130
121
  description: String,
122
+ end_to_end_identification: String?,
131
123
  input_message_accountability_data: String?,
132
- :originator_address_line1 => String?,
133
- :originator_address_line2 => String?,
134
- :originator_address_line3 => String?,
135
- originator_name: String?,
136
- originator_routing_number: String?,
137
- originator_to_beneficiary_information: String?,
138
- :originator_to_beneficiary_information_line1 => String?,
139
- :originator_to_beneficiary_information_line2 => String?,
140
- :originator_to_beneficiary_information_line3 => String?,
141
- :originator_to_beneficiary_information_line4 => String?,
124
+ instructing_agent_routing_number: String?,
125
+ instruction_identification: String?,
142
126
  reversal: Increase::InboundWireTransfer::Reversal?,
143
- sender_reference: String?,
144
127
  status: Increase::Models::InboundWireTransfer::status,
145
128
  type: Increase::Models::InboundWireTransfer::type_,
129
+ unique_end_to_end_transaction_reference: String?,
130
+ unstructured_remittance_information: String?,
146
131
  wire_drawdown_request_id: String?
147
132
  }
148
133
 
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.37.1
4
+ version: 1.39.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-19 00:00:00.000000000 Z
11
+ date: 2025-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool