Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.33"
".": "0.1.0-alpha.34"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-2c62370ab61731722fddc5be1652ccfd9188ae052be44fae639b4a7920afc3b3.yml
openapi_spec_hash: aefdd344388757e80e1fea0ad0506be8
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-28729916b00389bc7694a721eac0688ab5405bbc29b7df60708d6abaabd89c29.yml
openapi_spec_hash: e28396bf17aa29a4454a73b2e21ba852
config_hash: 97774f946585cecb19181a1817870d0b
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-alpha.34 (2025-06-13)

Full Changelog: [v0.1.0-alpha.33...v0.1.0-alpha.34](https://github.com/Increase/increase-ruby/compare/v0.1.0-alpha.33...v0.1.0-alpha.34)

### Features

* **api:** api update ([7cc9b38](https://github.com/Increase/increase-ruby/commit/7cc9b38ab4242f628beabcd2b087860897dcbb9e))

## 0.1.0-alpha.33 (2025-06-12)

Full Changelog: [v0.1.0-alpha.32...v0.1.0-alpha.33](https://github.com/Increase/increase-ruby/compare/v0.1.0-alpha.32...v0.1.0-alpha.33)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GIT
PATH
remote: .
specs:
increase (0.1.0.pre.alpha.33)
increase (0.1.0.pre.alpha.34)
connection_pool

GEM
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
<!-- x-release-please-start-version -->

```ruby
gem "increase", "~> 0.1.0.pre.alpha.33"
gem "increase", "~> 0.1.0.pre.alpha.34"
```

<!-- x-release-please-end -->
Expand Down
3 changes: 3 additions & 0 deletions lib/increase/models/physical_card.rb
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,9 @@ module Status
# The physical card shipment was returned to the sender and destroyed by the production facility.
RETURNED = :returned

# The physical card shipment requires attention from Increase before progressing.
REQUIRES_ATTENTION = :requires_attention

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ module ShipmentStatus
# The physical card shipment was returned to the sender and destroyed by the production facility.
RETURNED = :returned

# The physical card shipment requires attention from Increase before progressing.
REQUIRES_ATTENTION = :requires_attention

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
2 changes: 1 addition & 1 deletion lib/increase/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Increase
VERSION = "0.1.0.pre.alpha.33"
VERSION = "0.1.0.pre.alpha.34"
end
7 changes: 7 additions & 0 deletions rbi/increase/models/physical_card.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,13 @@ module Increase
Increase::PhysicalCard::Shipment::Status::TaggedSymbol
)

# The physical card shipment requires attention from Increase before progressing.
REQUIRES_ATTENTION =
T.let(
:requires_attention,
Increase::PhysicalCard::Shipment::Status::TaggedSymbol
)

sig do
override.returns(
T::Array[Increase::PhysicalCard::Shipment::Status::TaggedSymbol]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,13 @@ module Increase
Increase::Simulations::PhysicalCardAdvanceShipmentParams::ShipmentStatus::TaggedSymbol
)

# The physical card shipment requires attention from Increase before progressing.
REQUIRES_ATTENTION =
T.let(
:requires_attention,
Increase::Simulations::PhysicalCardAdvanceShipmentParams::ShipmentStatus::TaggedSymbol
)

sig do
override.returns(
T::Array[
Expand Down
4 changes: 4 additions & 0 deletions sig/increase/models/physical_card.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ module Increase
| :rejected
| :shipped
| :returned
| :requires_attention

module Status
extend Increase::Internal::Type::Enum
Expand All @@ -196,6 +197,9 @@ module Increase
# The physical card shipment was returned to the sender and destroyed by the production facility.
RETURNED: :returned

# The physical card shipment requires attention from Increase before progressing.
REQUIRES_ATTENTION: :requires_attention

def self?.values: -> ::Array[Increase::Models::PhysicalCard::Shipment::status]
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ module Increase
| :rejected
| :shipped
| :returned
| :requires_attention

module ShipmentStatus
extend Increase::Internal::Type::Enum
Expand All @@ -56,6 +57,9 @@ module Increase
# The physical card shipment was returned to the sender and destroyed by the production facility.
RETURNED: :returned

# The physical card shipment requires attention from Increase before progressing.
REQUIRES_ATTENTION: :requires_attention

def self?.values: -> ::Array[Increase::Models::Simulations::PhysicalCardAdvanceShipmentParams::shipment_status]
end
end
Expand Down
Loading