increase 1.124.0 → 1.125.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/check_transfer.rb +1 -1
- data/lib/increase/models/check_transfer_create_params.rb +6 -6
- data/lib/increase/resources/check_transfers.rb +1 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/check_transfer.rbi +1 -1
- data/rbi/increase/models/check_transfer_create_params.rbi +7 -7
- data/rbi/increase/resources/check_transfers.rbi +2 -2
- data/sig/increase/models/check_transfer.rbs +1 -1
- data/sig/increase/models/check_transfer_create_params.rbs +1 -1
- 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: 800b71d50e8ec6171f00dd0df896fdd3155d1c1c2008755a3bc9c733980fd01c
|
|
4
|
+
data.tar.gz: af44d8791175cbef117b55bd83390472bdd49445758721278deaa6285925d80c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2da92c0620948e1cde9360302c0ab5c566662f2aa2d1a3c3ff249ad3a92e3f488ef356540bd9c88f3e3712f9ee55c176bc42c276986a4d9dbfe5e7b9395451c6
|
|
7
|
+
data.tar.gz: 280ce22a240293865a088431a81a55720ab26bd91454023c1b19b08da0aa6697e646a22c41def886f15899416bcc6dd9f36a59a12093798a52a269637b440b47
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.125.0 (2025-10-31)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.124.0...v1.125.0](https://github.com/Increase/increase-ruby/compare/v1.124.0...v1.125.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([c4fbf12](https://github.com/Increase/increase-ruby/commit/c4fbf127f45a7146bbbc2a3bdfc25fa94d1ee5be))
|
|
10
|
+
|
|
3
11
|
## 1.124.0 (2025-10-30)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.123.0...v1.124.0](https://github.com/Increase/increase-ruby/compare/v1.123.0...v1.124.0)
|
data/README.md
CHANGED
|
@@ -253,7 +253,7 @@ module Increase
|
|
|
253
253
|
module BalanceCheck
|
|
254
254
|
extend Increase::Internal::Type::Enum
|
|
255
255
|
|
|
256
|
-
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
|
|
256
|
+
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
|
|
257
257
|
FULL = :full
|
|
258
258
|
|
|
259
259
|
# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
|
|
@@ -33,8 +33,8 @@ module Increase
|
|
|
33
33
|
required :source_account_number_id, String
|
|
34
34
|
|
|
35
35
|
# @!attribute balance_check
|
|
36
|
-
# How the account's available balance should be checked.
|
|
37
|
-
#
|
|
36
|
+
# How the account's available balance should be checked. If omitted, the default
|
|
37
|
+
# behavior is `balance_check: full`.
|
|
38
38
|
#
|
|
39
39
|
# @return [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck, nil]
|
|
40
40
|
optional :balance_check, enum: -> { Increase::CheckTransferCreateParams::BalanceCheck }
|
|
@@ -81,7 +81,7 @@ module Increase
|
|
|
81
81
|
#
|
|
82
82
|
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer and print o
|
|
83
83
|
#
|
|
84
|
-
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked.
|
|
84
|
+
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked. If omitted, the default b
|
|
85
85
|
#
|
|
86
86
|
# @param check_number [String] The check number Increase should use for the check. This should not contain lead
|
|
87
87
|
#
|
|
@@ -107,12 +107,12 @@ module Increase
|
|
|
107
107
|
# @return [Array<Symbol>]
|
|
108
108
|
end
|
|
109
109
|
|
|
110
|
-
# How the account's available balance should be checked.
|
|
111
|
-
#
|
|
110
|
+
# How the account's available balance should be checked. If omitted, the default
|
|
111
|
+
# behavior is `balance_check: full`.
|
|
112
112
|
module BalanceCheck
|
|
113
113
|
extend Increase::Internal::Type::Enum
|
|
114
114
|
|
|
115
|
-
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
|
|
115
|
+
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
|
|
116
116
|
FULL = :full
|
|
117
117
|
|
|
118
118
|
# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
|
|
@@ -18,7 +18,7 @@ module Increase
|
|
|
18
18
|
#
|
|
19
19
|
# @param source_account_number_id [String] The identifier of the Account Number from which to send the transfer and print o
|
|
20
20
|
#
|
|
21
|
-
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked.
|
|
21
|
+
# @param balance_check [Symbol, Increase::Models::CheckTransferCreateParams::BalanceCheck] How the account's available balance should be checked. If omitted, the default b
|
|
22
22
|
#
|
|
23
23
|
# @param check_number [String] The check number Increase should use for the check. This should not contain lead
|
|
24
24
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -372,7 +372,7 @@ module Increase
|
|
|
372
372
|
T.type_alias { T.all(Symbol, Increase::CheckTransfer::BalanceCheck) }
|
|
373
373
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
374
374
|
|
|
375
|
-
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
|
|
375
|
+
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
|
|
376
376
|
FULL = T.let(:full, Increase::CheckTransfer::BalanceCheck::TaggedSymbol)
|
|
377
377
|
|
|
378
378
|
# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
|
|
@@ -35,8 +35,8 @@ module Increase
|
|
|
35
35
|
sig { returns(String) }
|
|
36
36
|
attr_accessor :source_account_number_id
|
|
37
37
|
|
|
38
|
-
# How the account's available balance should be checked.
|
|
39
|
-
#
|
|
38
|
+
# How the account's available balance should be checked. If omitted, the default
|
|
39
|
+
# behavior is `balance_check: full`.
|
|
40
40
|
sig do
|
|
41
41
|
returns(
|
|
42
42
|
T.nilable(Increase::CheckTransferCreateParams::BalanceCheck::OrSymbol)
|
|
@@ -126,8 +126,8 @@ module Increase
|
|
|
126
126
|
# The identifier of the Account Number from which to send the transfer and print
|
|
127
127
|
# on the check.
|
|
128
128
|
source_account_number_id:,
|
|
129
|
-
# How the account's available balance should be checked.
|
|
130
|
-
#
|
|
129
|
+
# How the account's available balance should be checked. If omitted, the default
|
|
130
|
+
# behavior is `balance_check: full`.
|
|
131
131
|
balance_check: nil,
|
|
132
132
|
# The check number Increase should use for the check. This should not contain
|
|
133
133
|
# leading zeroes and must be unique across the `source_account_number`. If this is
|
|
@@ -206,8 +206,8 @@ module Increase
|
|
|
206
206
|
end
|
|
207
207
|
end
|
|
208
208
|
|
|
209
|
-
# How the account's available balance should be checked.
|
|
210
|
-
#
|
|
209
|
+
# How the account's available balance should be checked. If omitted, the default
|
|
210
|
+
# behavior is `balance_check: full`.
|
|
211
211
|
module BalanceCheck
|
|
212
212
|
extend Increase::Internal::Type::Enum
|
|
213
213
|
|
|
@@ -217,7 +217,7 @@ module Increase
|
|
|
217
217
|
end
|
|
218
218
|
OrSymbol = T.type_alias { T.any(Symbol, String) }
|
|
219
219
|
|
|
220
|
-
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
|
|
220
|
+
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
|
|
221
221
|
FULL =
|
|
222
222
|
T.let(
|
|
223
223
|
:full,
|
|
@@ -31,8 +31,8 @@ module Increase
|
|
|
31
31
|
# The identifier of the Account Number from which to send the transfer and print
|
|
32
32
|
# on the check.
|
|
33
33
|
source_account_number_id:,
|
|
34
|
-
# How the account's available balance should be checked.
|
|
35
|
-
#
|
|
34
|
+
# How the account's available balance should be checked. If omitted, the default
|
|
35
|
+
# behavior is `balance_check: full`.
|
|
36
36
|
balance_check: nil,
|
|
37
37
|
# The check number Increase should use for the check. This should not contain
|
|
38
38
|
# leading zeroes and must be unique across the `source_account_number`. If this is
|
|
@@ -148,7 +148,7 @@ module Increase
|
|
|
148
148
|
module BalanceCheck
|
|
149
149
|
extend Increase::Internal::Type::Enum
|
|
150
150
|
|
|
151
|
-
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
|
|
151
|
+
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
|
|
152
152
|
FULL: :full
|
|
153
153
|
|
|
154
154
|
# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
|
|
@@ -97,7 +97,7 @@ module Increase
|
|
|
97
97
|
module BalanceCheck
|
|
98
98
|
extend Increase::Internal::Type::Enum
|
|
99
99
|
|
|
100
|
-
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount.
|
|
100
|
+
# The available balance of the account must be at least the amount of the check, and a Pending Transaction will be created for the full amount. This is the default behavior if `balance_check` is omitted.
|
|
101
101
|
FULL: :full
|
|
102
102
|
|
|
103
103
|
# No balance check will performed when the check transfer is initiated. A zero-dollar Pending Transaction will be created. The balance will still be checked when the Inbound Check Deposit is created.
|
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.125.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-
|
|
11
|
+
date: 2025-10-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|