increase 1.295.0 → 1.297.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/wire_transfer.rb +11 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/wire_transfer.rbi +15 -3
- data/sig/increase/models/wire_transfer.rbs +8 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 857ea39f9c720b9100b65a8b2593d19644730b2475d98231fc17f5ce0a4f18b8
|
|
4
|
+
data.tar.gz: 78d2c40d8f70e720c0bb690f9ac29d1b971f215545b08399235d8369c69c56c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d82e1351b9475ab524d2d6bc9f5ef2c38828ccf434382fd1b9f2cc4688439eb4afcbbbad58ab3a23567c9e43655341d1244c48a56b5551edf90bd3fcf1cb6c3
|
|
7
|
+
data.tar.gz: 49a28503268ba987d9a8ba646a438c0ef5d5bfb8b78597f45477a44378b34759c76216e65582beaa6695bce517ce3768a5b6eeb30a62def7b9c4e33c9ef257d0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.297.0 (2026-04-16)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.296.0...v1.297.0](https://github.com/Increase/increase-ruby/compare/v1.296.0...v1.297.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([4c2e222](https://github.com/Increase/increase-ruby/commit/4c2e222569995075cab7ba56d1077afec65f0481))
|
|
10
|
+
|
|
11
|
+
## 1.296.0 (2026-04-15)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.295.0...v1.296.0](https://github.com/Increase/increase-ruby/compare/v1.295.0...v1.296.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([46f8d21](https://github.com/Increase/increase-ruby/commit/46f8d21330d5e04ba5e2fd22f36990ba6b4c14ef))
|
|
18
|
+
|
|
3
19
|
## 1.295.0 (2026-04-13)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.294.0...v1.295.0](https://github.com/Increase/increase-ruby/compare/v1.294.0...v1.295.0)
|
data/README.md
CHANGED
|
@@ -160,7 +160,15 @@ module Increase
|
|
|
160
160
|
# @return [Symbol, Increase::Models::WireTransfer::Type]
|
|
161
161
|
required :type, enum: -> { Increase::WireTransfer::Type }
|
|
162
162
|
|
|
163
|
-
# @!
|
|
163
|
+
# @!attribute unique_end_to_end_transaction_reference
|
|
164
|
+
# The unique end-to-end transaction reference
|
|
165
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
|
166
|
+
# of the transfer.
|
|
167
|
+
#
|
|
168
|
+
# @return [String, nil]
|
|
169
|
+
required :unique_end_to_end_transaction_reference, String, nil?: true
|
|
170
|
+
|
|
171
|
+
# @!method initialize(id:, account_id:, account_number:, amount:, approval:, cancellation:, created_at:, created_by:, creditor:, currency:, debtor:, external_account_id:, idempotency_key:, inbound_wire_drawdown_request_id:, network:, pending_transaction_id:, remittance:, reversal:, routing_number:, source_account_number_id:, status:, submission:, transaction_id:, type:, unique_end_to_end_transaction_reference:)
|
|
164
172
|
# Some parameter documentations has been truncated, see
|
|
165
173
|
# {Increase::Models::WireTransfer} for more details.
|
|
166
174
|
#
|
|
@@ -214,6 +222,8 @@ module Increase
|
|
|
214
222
|
# @param transaction_id [String, nil] The ID for the transaction funding the transfer.
|
|
215
223
|
#
|
|
216
224
|
# @param type [Symbol, Increase::Models::WireTransfer::Type] A constant representing the object's type. For this resource it will always be `
|
|
225
|
+
#
|
|
226
|
+
# @param unique_end_to_end_transaction_reference [String, nil] The unique end-to-end transaction reference ([UETR](https://www.swift.com/paymen
|
|
217
227
|
|
|
218
228
|
# @see Increase::Models::WireTransfer#approval
|
|
219
229
|
class Approval < Increase::Internal::Type::BaseModel
|
data/lib/increase/version.rb
CHANGED
|
@@ -170,6 +170,12 @@ module Increase
|
|
|
170
170
|
sig { returns(Increase::WireTransfer::Type::TaggedSymbol) }
|
|
171
171
|
attr_accessor :type
|
|
172
172
|
|
|
173
|
+
# The unique end-to-end transaction reference
|
|
174
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
|
175
|
+
# of the transfer.
|
|
176
|
+
sig { returns(T.nilable(String)) }
|
|
177
|
+
attr_accessor :unique_end_to_end_transaction_reference
|
|
178
|
+
|
|
173
179
|
# Wire transfers move funds between your Increase account and any other account
|
|
174
180
|
# accessible by Fedwire.
|
|
175
181
|
sig do
|
|
@@ -197,7 +203,8 @@ module Increase
|
|
|
197
203
|
status: Increase::WireTransfer::Status::OrSymbol,
|
|
198
204
|
submission: T.nilable(Increase::WireTransfer::Submission::OrHash),
|
|
199
205
|
transaction_id: T.nilable(String),
|
|
200
|
-
type: Increase::WireTransfer::Type::OrSymbol
|
|
206
|
+
type: Increase::WireTransfer::Type::OrSymbol,
|
|
207
|
+
unique_end_to_end_transaction_reference: T.nilable(String)
|
|
201
208
|
).returns(T.attached_class)
|
|
202
209
|
end
|
|
203
210
|
def self.new(
|
|
@@ -260,7 +267,11 @@ module Increase
|
|
|
260
267
|
transaction_id:,
|
|
261
268
|
# A constant representing the object's type. For this resource it will always be
|
|
262
269
|
# `wire_transfer`.
|
|
263
|
-
type
|
|
270
|
+
type:,
|
|
271
|
+
# The unique end-to-end transaction reference
|
|
272
|
+
# ([UETR](https://www.swift.com/payments/what-unique-end-end-transaction-reference-uetr))
|
|
273
|
+
# of the transfer.
|
|
274
|
+
unique_end_to_end_transaction_reference:
|
|
264
275
|
)
|
|
265
276
|
end
|
|
266
277
|
|
|
@@ -290,7 +301,8 @@ module Increase
|
|
|
290
301
|
status: Increase::WireTransfer::Status::TaggedSymbol,
|
|
291
302
|
submission: T.nilable(Increase::WireTransfer::Submission),
|
|
292
303
|
transaction_id: T.nilable(String),
|
|
293
|
-
type: Increase::WireTransfer::Type::TaggedSymbol
|
|
304
|
+
type: Increase::WireTransfer::Type::TaggedSymbol,
|
|
305
|
+
unique_end_to_end_transaction_reference: T.nilable(String)
|
|
294
306
|
}
|
|
295
307
|
)
|
|
296
308
|
end
|
|
@@ -25,7 +25,8 @@ module Increase
|
|
|
25
25
|
status: Increase::Models::WireTransfer::status,
|
|
26
26
|
submission: Increase::WireTransfer::Submission?,
|
|
27
27
|
transaction_id: String?,
|
|
28
|
-
type: Increase::Models::WireTransfer::type_
|
|
28
|
+
type: Increase::Models::WireTransfer::type_,
|
|
29
|
+
unique_end_to_end_transaction_reference: String?
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
class WireTransfer < Increase::Internal::Type::BaseModel
|
|
@@ -77,6 +78,8 @@ module Increase
|
|
|
77
78
|
|
|
78
79
|
attr_accessor type: Increase::Models::WireTransfer::type_
|
|
79
80
|
|
|
81
|
+
attr_accessor unique_end_to_end_transaction_reference: String?
|
|
82
|
+
|
|
80
83
|
def initialize: (
|
|
81
84
|
id: String,
|
|
82
85
|
account_id: String,
|
|
@@ -101,7 +104,8 @@ module Increase
|
|
|
101
104
|
status: Increase::Models::WireTransfer::status,
|
|
102
105
|
submission: Increase::WireTransfer::Submission?,
|
|
103
106
|
transaction_id: String?,
|
|
104
|
-
type: Increase::Models::WireTransfer::type_
|
|
107
|
+
type: Increase::Models::WireTransfer::type_,
|
|
108
|
+
unique_end_to_end_transaction_reference: String?
|
|
105
109
|
) -> void
|
|
106
110
|
|
|
107
111
|
def to_hash: -> {
|
|
@@ -128,7 +132,8 @@ module Increase
|
|
|
128
132
|
status: Increase::Models::WireTransfer::status,
|
|
129
133
|
submission: Increase::WireTransfer::Submission?,
|
|
130
134
|
transaction_id: String?,
|
|
131
|
-
type: Increase::Models::WireTransfer::type_
|
|
135
|
+
type: Increase::Models::WireTransfer::type_,
|
|
136
|
+
unique_end_to_end_transaction_reference: String?
|
|
132
137
|
}
|
|
133
138
|
|
|
134
139
|
type approval = { approved_at: Time, approved_by: String? }
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.297.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|