increase 1.190.0 → 1.191.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/intrafi_exclusion.rb +3 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/intrafi_exclusion.rbi +4 -0
- data/sig/increase/models/intrafi_exclusion.rbs +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eba2f2c911b9ab325a93dcc63dbca06b29ca17dae8e3cea33acd4b303c703bf0
|
|
4
|
+
data.tar.gz: 11840ab06f792953888f9a23d7f2d61fb9cce27700c0c70febba74a6b1faf946
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 67561fb4d8c355d7c5ac4d2f09de55cc5258f7e6dc27ae4b3930b8253abec5ffe00966c9c20adc28a1942ec50e37576f2f83e44121071f410a89f0e668c60b9f
|
|
7
|
+
data.tar.gz: f46378b01ab65c11e26385b3fff4f09a3177431d2cf27d0bc89c217caa89ad1d1345c9d37a380394661cdf9c203bc875329b99fbd4ddd9d11a03592e06144311
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.191.0 (2026-01-30)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.190.0...v1.191.0](https://github.com/Increase/increase-ruby/compare/v1.190.0...v1.191.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([45b7378](https://github.com/Increase/increase-ruby/commit/45b7378628733d8461b9cb85b76e005823c2d03c))
|
|
10
|
+
|
|
3
11
|
## 1.190.0 (2026-01-30)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v1.189.0...v1.190.0](https://github.com/Increase/increase-ruby/compare/v1.189.0...v1.190.0)
|
data/README.md
CHANGED
|
@@ -113,6 +113,9 @@ module Increase
|
|
|
113
113
|
# The exclusion has been removed from the IntraFi network.
|
|
114
114
|
ARCHIVED = :archived
|
|
115
115
|
|
|
116
|
+
# The exclusion wasn't eligible to be added to the IntraFi network.
|
|
117
|
+
INELIGIBLE = :ineligible
|
|
118
|
+
|
|
116
119
|
# @!method self.values
|
|
117
120
|
# @return [Array<Symbol>]
|
|
118
121
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -139,6 +139,10 @@ module Increase
|
|
|
139
139
|
ARCHIVED =
|
|
140
140
|
T.let(:archived, Increase::IntrafiExclusion::Status::TaggedSymbol)
|
|
141
141
|
|
|
142
|
+
# The exclusion wasn't eligible to be added to the IntraFi network.
|
|
143
|
+
INELIGIBLE =
|
|
144
|
+
T.let(:ineligible, Increase::IntrafiExclusion::Status::TaggedSymbol)
|
|
145
|
+
|
|
142
146
|
sig do
|
|
143
147
|
override.returns(
|
|
144
148
|
T::Array[Increase::IntrafiExclusion::Status::TaggedSymbol]
|
|
@@ -61,7 +61,7 @@ module Increase
|
|
|
61
61
|
type: Increase::Models::IntrafiExclusion::type_
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
type status = :pending | :completed | :archived
|
|
64
|
+
type status = :pending | :completed | :archived | :ineligible
|
|
65
65
|
|
|
66
66
|
module Status
|
|
67
67
|
extend Increase::Internal::Type::Enum
|
|
@@ -75,6 +75,9 @@ module Increase
|
|
|
75
75
|
# The exclusion has been removed from the IntraFi network.
|
|
76
76
|
ARCHIVED: :archived
|
|
77
77
|
|
|
78
|
+
# The exclusion wasn't eligible to be added to the IntraFi network.
|
|
79
|
+
INELIGIBLE: :ineligible
|
|
80
|
+
|
|
78
81
|
def self?.values: -> ::Array[Increase::Models::IntrafiExclusion::status]
|
|
79
82
|
end
|
|
80
83
|
|