increase 1.103.0 → 1.104.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 +13 -0
- data/README.md +1 -1
- data/lib/increase/models/transaction.rb +6 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/transaction.rbi +14 -7
- data/sig/increase/models/transaction.rbs +8 -4
- 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: ca00dda0edaaea7e9afa6072fc1ca92a9514a3d66f379436ee2f34286aca4252
|
|
4
|
+
data.tar.gz: '095cd4637b53dcb4b2f012c0c5029ea74a1f9eeb4e95ebd2b6a6bb286e4bd071'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef97276a0d698db3b6b43de5b1abecff24d98573f22941ed96ec05bd1f97032b82ebb706435d0c8fb5f428fce48526e6326717c85c76d1e171cfef762e6a11ed
|
|
7
|
+
data.tar.gz: d3b6bed98ffd6fe10a1b9e2fe168ba8047ddca65d6a79bf3e173a57ae1adeb27d3b1fd7421f925014accc00b2c082b40ecd66fd6ce642173c70ce7b74ea7c2f3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.104.0 (2025-10-08)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.103.0...v1.104.0](https://github.com/Increase/increase-ruby/compare/v1.103.0...v1.104.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([5545b1f](https://github.com/Increase/increase-ruby/commit/5545b1f1c1a7e380c58188aeaf0f61ccd10ad6b1))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* ignore linter error for tests having large collections ([406ab23](https://github.com/Increase/increase-ruby/commit/406ab231f510d6ac99e93568458b3d083b4130de))
|
|
15
|
+
|
|
3
16
|
## 1.103.0 (2025-10-07)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v1.102.0...v1.103.0](https://github.com/Increase/increase-ruby/compare/v1.102.0...v1.103.0)
|
data/README.md
CHANGED
|
@@ -6820,6 +6820,9 @@ module Increase
|
|
|
6820
6820
|
# Account closure
|
|
6821
6821
|
ACCOUNT_CLOSURE = :account_closure
|
|
6822
6822
|
|
|
6823
|
+
# Account revenue payment distribution
|
|
6824
|
+
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION = :account_revenue_payment_distribution
|
|
6825
|
+
|
|
6823
6826
|
# Bank-drawn check
|
|
6824
6827
|
BANK_DRAWN_CHECK = :bank_drawn_check
|
|
6825
6828
|
|
|
@@ -6838,6 +6841,9 @@ module Increase
|
|
|
6838
6841
|
# Collection receivable
|
|
6839
6842
|
COLLECTION_RECEIVABLE = :collection_receivable
|
|
6840
6843
|
|
|
6844
|
+
# Dishonored ACH return
|
|
6845
|
+
DISHONORED_ACH_RETURN = :dishonored_ach_return
|
|
6846
|
+
|
|
6841
6847
|
# Empyreal adjustment
|
|
6842
6848
|
EMPYREAL_ADJUSTMENT = :empyreal_adjustment
|
|
6843
6849
|
|
|
@@ -6862,9 +6868,6 @@ module Increase
|
|
|
6862
6868
|
# Sample funds return
|
|
6863
6869
|
SAMPLE_FUNDS_RETURN = :sample_funds_return
|
|
6864
6870
|
|
|
6865
|
-
# Account revenue payment distribution
|
|
6866
|
-
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION = :account_revenue_payment_distribution
|
|
6867
|
-
|
|
6868
6871
|
# @!method self.values
|
|
6869
6872
|
# @return [Array<Symbol>]
|
|
6870
6873
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -12592,6 +12592,13 @@ module Increase
|
|
|
12592
12592
|
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
|
12593
12593
|
)
|
|
12594
12594
|
|
|
12595
|
+
# Account revenue payment distribution
|
|
12596
|
+
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION =
|
|
12597
|
+
T.let(
|
|
12598
|
+
:account_revenue_payment_distribution,
|
|
12599
|
+
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
|
12600
|
+
)
|
|
12601
|
+
|
|
12595
12602
|
# Bank-drawn check
|
|
12596
12603
|
BANK_DRAWN_CHECK =
|
|
12597
12604
|
T.let(
|
|
@@ -12634,6 +12641,13 @@ module Increase
|
|
|
12634
12641
|
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
|
12635
12642
|
)
|
|
12636
12643
|
|
|
12644
|
+
# Dishonored ACH return
|
|
12645
|
+
DISHONORED_ACH_RETURN =
|
|
12646
|
+
T.let(
|
|
12647
|
+
:dishonored_ach_return,
|
|
12648
|
+
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
|
12649
|
+
)
|
|
12650
|
+
|
|
12637
12651
|
# Empyreal adjustment
|
|
12638
12652
|
EMPYREAL_ADJUSTMENT =
|
|
12639
12653
|
T.let(
|
|
@@ -12690,13 +12704,6 @@ module Increase
|
|
|
12690
12704
|
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
|
12691
12705
|
)
|
|
12692
12706
|
|
|
12693
|
-
# Account revenue payment distribution
|
|
12694
|
-
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION =
|
|
12695
|
-
T.let(
|
|
12696
|
-
:account_revenue_payment_distribution,
|
|
12697
|
-
Increase::Transaction::Source::InternalSource::Reason::TaggedSymbol
|
|
12698
|
-
)
|
|
12699
|
-
|
|
12700
12707
|
sig do
|
|
12701
12708
|
override.returns(
|
|
12702
12709
|
T::Array[
|
|
@@ -5043,12 +5043,14 @@ module Increase
|
|
|
5043
5043
|
|
|
5044
5044
|
type reason =
|
|
5045
5045
|
:account_closure
|
|
5046
|
+
| :account_revenue_payment_distribution
|
|
5046
5047
|
| :bank_drawn_check
|
|
5047
5048
|
| :bank_drawn_check_credit
|
|
5048
5049
|
| :bank_migration
|
|
5049
5050
|
| :check_adjustment
|
|
5050
5051
|
| :collection_payment
|
|
5051
5052
|
| :collection_receivable
|
|
5053
|
+
| :dishonored_ach_return
|
|
5052
5054
|
| :empyreal_adjustment
|
|
5053
5055
|
| :error
|
|
5054
5056
|
| :error_correction
|
|
@@ -5057,7 +5059,6 @@ module Increase
|
|
|
5057
5059
|
| :negative_balance_forgiveness
|
|
5058
5060
|
| :sample_funds
|
|
5059
5061
|
| :sample_funds_return
|
|
5060
|
-
| :account_revenue_payment_distribution
|
|
5061
5062
|
|
|
5062
5063
|
module Reason
|
|
5063
5064
|
extend Increase::Internal::Type::Enum
|
|
@@ -5065,6 +5066,9 @@ module Increase
|
|
|
5065
5066
|
# Account closure
|
|
5066
5067
|
ACCOUNT_CLOSURE: :account_closure
|
|
5067
5068
|
|
|
5069
|
+
# Account revenue payment distribution
|
|
5070
|
+
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION: :account_revenue_payment_distribution
|
|
5071
|
+
|
|
5068
5072
|
# Bank-drawn check
|
|
5069
5073
|
BANK_DRAWN_CHECK: :bank_drawn_check
|
|
5070
5074
|
|
|
@@ -5083,6 +5087,9 @@ module Increase
|
|
|
5083
5087
|
# Collection receivable
|
|
5084
5088
|
COLLECTION_RECEIVABLE: :collection_receivable
|
|
5085
5089
|
|
|
5090
|
+
# Dishonored ACH return
|
|
5091
|
+
DISHONORED_ACH_RETURN: :dishonored_ach_return
|
|
5092
|
+
|
|
5086
5093
|
# Empyreal adjustment
|
|
5087
5094
|
EMPYREAL_ADJUSTMENT: :empyreal_adjustment
|
|
5088
5095
|
|
|
@@ -5107,9 +5114,6 @@ module Increase
|
|
|
5107
5114
|
# Sample funds return
|
|
5108
5115
|
SAMPLE_FUNDS_RETURN: :sample_funds_return
|
|
5109
5116
|
|
|
5110
|
-
# Account revenue payment distribution
|
|
5111
|
-
ACCOUNT_REVENUE_PAYMENT_DISTRIBUTION: :account_revenue_payment_distribution
|
|
5112
|
-
|
|
5113
5117
|
def self?.values: -> ::Array[Increase::Models::Transaction::Source::InternalSource::reason]
|
|
5114
5118
|
end
|
|
5115
5119
|
end
|
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.104.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-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|