increase 1.36.0 → 1.37.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2b6865579557d91e7ece1919d0fcc14a5cba8e937484ef08b7cc954efd095eba
|
|
4
|
+
data.tar.gz: 32a3becaa4669c265596ab5f66ad1f208d852fcb613207e324bbf3302f5beaa3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1792f22ad7ef556323ae0b232fc57bdbdf78252113f8bbe4eb35c6556cc53d7ed84df902e222faa68df4655fa1ade188bc475c776c882f966a3cba5e3c7cdcbb
|
|
7
|
+
data.tar.gz: d48ed176a8528581385b1845af0ac60a6652f9eaf4abac9d2a5562c1ed9eb0bff85864b439146a2ef42e5dfe35742cba718f1df1ac8577367de681f4d77e56c1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.37.0 (2025-08-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.36.0...v1.37.0](https://github.com/Increase/increase-ruby/compare/v1.36.0...v1.37.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([b3c42ec](https://github.com/Increase/increase-ruby/commit/b3c42ec0d1ec8abf17b73b3e5e53a0945593f219))
|
|
10
|
+
|
|
3
11
|
## 1.36.0 (2025-08-18)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.35.0...v1.36.0](https://github.com/Increase/increase-ruby/compare/v1.35.0...v1.36.0)
|
data/README.md
CHANGED
|
@@ -61,6 +61,12 @@ module Increase
|
|
|
61
61
|
# @return [Increase::Models::WireDrawdownRequest::DebtorAddress]
|
|
62
62
|
required :debtor_address, -> { Increase::WireDrawdownRequest::DebtorAddress }
|
|
63
63
|
|
|
64
|
+
# @!attribute debtor_external_account_id
|
|
65
|
+
# The debtor's external account identifier.
|
|
66
|
+
#
|
|
67
|
+
# @return [String, nil]
|
|
68
|
+
required :debtor_external_account_id, String, nil?: true
|
|
69
|
+
|
|
64
70
|
# @!attribute debtor_name
|
|
65
71
|
# The debtor's name.
|
|
66
72
|
#
|
|
@@ -114,7 +120,7 @@ module Increase
|
|
|
114
120
|
# @return [String]
|
|
115
121
|
required :unstructured_remittance_information, String
|
|
116
122
|
|
|
117
|
-
# @!method initialize(id:, account_number_id:, amount:, created_at:, creditor_address:, creditor_name:, currency:, debtor_account_number:, debtor_address:, debtor_name:, debtor_routing_number:, fulfillment_inbound_wire_transfer_id:, idempotency_key:, status:, submission:, type:, unstructured_remittance_information:)
|
|
123
|
+
# @!method initialize(id:, account_number_id:, amount:, created_at:, creditor_address:, creditor_name:, currency:, debtor_account_number:, debtor_address:, debtor_external_account_id:, debtor_name:, debtor_routing_number:, fulfillment_inbound_wire_transfer_id:, idempotency_key:, status:, submission:, type:, unstructured_remittance_information:)
|
|
118
124
|
# Some parameter documentations has been truncated, see
|
|
119
125
|
# {Increase::Models::WireDrawdownRequest} for more details.
|
|
120
126
|
#
|
|
@@ -143,6 +149,8 @@ module Increase
|
|
|
143
149
|
#
|
|
144
150
|
# @param debtor_address [Increase::Models::WireDrawdownRequest::DebtorAddress] The debtor's address.
|
|
145
151
|
#
|
|
152
|
+
# @param debtor_external_account_id [String, nil] The debtor's external account identifier.
|
|
153
|
+
#
|
|
146
154
|
# @param debtor_name [String] The debtor's name.
|
|
147
155
|
#
|
|
148
156
|
# @param debtor_routing_number [String] The debtor's routing number.
|
data/lib/increase/version.rb
CHANGED
|
@@ -62,6 +62,10 @@ module Increase
|
|
|
62
62
|
end
|
|
63
63
|
attr_writer :debtor_address
|
|
64
64
|
|
|
65
|
+
# The debtor's external account identifier.
|
|
66
|
+
sig { returns(T.nilable(String)) }
|
|
67
|
+
attr_accessor :debtor_external_account_id
|
|
68
|
+
|
|
65
69
|
# The debtor's name.
|
|
66
70
|
sig { returns(String) }
|
|
67
71
|
attr_accessor :debtor_name
|
|
@@ -125,6 +129,7 @@ module Increase
|
|
|
125
129
|
currency: String,
|
|
126
130
|
debtor_account_number: String,
|
|
127
131
|
debtor_address: Increase::WireDrawdownRequest::DebtorAddress::OrHash,
|
|
132
|
+
debtor_external_account_id: T.nilable(String),
|
|
128
133
|
debtor_name: String,
|
|
129
134
|
debtor_routing_number: String,
|
|
130
135
|
fulfillment_inbound_wire_transfer_id: T.nilable(String),
|
|
@@ -158,6 +163,8 @@ module Increase
|
|
|
158
163
|
debtor_account_number:,
|
|
159
164
|
# The debtor's address.
|
|
160
165
|
debtor_address:,
|
|
166
|
+
# The debtor's external account identifier.
|
|
167
|
+
debtor_external_account_id:,
|
|
161
168
|
# The debtor's name.
|
|
162
169
|
debtor_name:,
|
|
163
170
|
# The debtor's routing number.
|
|
@@ -194,6 +201,7 @@ module Increase
|
|
|
194
201
|
currency: String,
|
|
195
202
|
debtor_account_number: String,
|
|
196
203
|
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
|
|
204
|
+
debtor_external_account_id: T.nilable(String),
|
|
197
205
|
debtor_name: String,
|
|
198
206
|
debtor_routing_number: String,
|
|
199
207
|
fulfillment_inbound_wire_transfer_id: T.nilable(String),
|
|
@@ -11,6 +11,7 @@ module Increase
|
|
|
11
11
|
currency: String,
|
|
12
12
|
debtor_account_number: String,
|
|
13
13
|
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
|
|
14
|
+
debtor_external_account_id: String?,
|
|
14
15
|
debtor_name: String,
|
|
15
16
|
debtor_routing_number: String,
|
|
16
17
|
fulfillment_inbound_wire_transfer_id: String?,
|
|
@@ -40,6 +41,8 @@ module Increase
|
|
|
40
41
|
|
|
41
42
|
attr_accessor debtor_address: Increase::WireDrawdownRequest::DebtorAddress
|
|
42
43
|
|
|
44
|
+
attr_accessor debtor_external_account_id: String?
|
|
45
|
+
|
|
43
46
|
attr_accessor debtor_name: String
|
|
44
47
|
|
|
45
48
|
attr_accessor debtor_routing_number: String
|
|
@@ -66,6 +69,7 @@ module Increase
|
|
|
66
69
|
currency: String,
|
|
67
70
|
debtor_account_number: String,
|
|
68
71
|
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
|
|
72
|
+
debtor_external_account_id: String?,
|
|
69
73
|
debtor_name: String,
|
|
70
74
|
debtor_routing_number: String,
|
|
71
75
|
fulfillment_inbound_wire_transfer_id: String?,
|
|
@@ -86,6 +90,7 @@ module Increase
|
|
|
86
90
|
currency: String,
|
|
87
91
|
debtor_account_number: String,
|
|
88
92
|
debtor_address: Increase::WireDrawdownRequest::DebtorAddress,
|
|
93
|
+
debtor_external_account_id: String?,
|
|
89
94
|
debtor_name: String,
|
|
90
95
|
debtor_routing_number: String,
|
|
91
96
|
fulfillment_inbound_wire_transfer_id: String?,
|