diff --git a/.release-please-manifest.json b/.release-please-manifest.json index af9e3839..6c87ad67 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.161.0" + ".": "1.162.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 989a349b..e08e2557 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 230 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e2b7de6202d48efc0e77fd72d2788987e6e3ecf2dfff8a491b88fe9a838f0bd5.yml -openapi_spec_hash: 5af8bcd38aae780c364688cb048d258b +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-d9f5f3bab4d163b340b6737dde4f7a46bca89379801bcc761c4221a24f8cc4cf.yml +openapi_spec_hash: 7b5eddf42e9fa57ec04b5b1b6d9ff872 config_hash: ff2eb5f192b4de36611b37b27961c2d8 diff --git a/CHANGELOG.md b/CHANGELOG.md index 61f7ec93..cdcbb7e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.162.0 (2025-12-15) + +Full Changelog: [v1.161.0...v1.162.0](https://github.com/Increase/increase-ruby/compare/v1.161.0...v1.162.0) + +### Features + +* **api:** api update ([a8c7867](https://github.com/Increase/increase-ruby/commit/a8c7867005c29bc8b4da16f7ee57b22c3c4abde5)) + ## 1.161.0 (2025-12-15) Full Changelog: [v1.160.0...v1.161.0](https://github.com/Increase/increase-ruby/compare/v1.160.0...v1.161.0) diff --git a/Gemfile.lock b/Gemfile.lock index 84395e84..8a56e659 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.161.0) + increase (1.162.0) connection_pool GEM diff --git a/README.md b/README.md index 1d450522..c989ef0e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application ```ruby -gem "increase", "~> 1.161.0" +gem "increase", "~> 1.162.0" ``` diff --git a/lib/increase/models/check_transfer.rb b/lib/increase/models/check_transfer.rb index 066d6fbb..ac37cf25 100644 --- a/lib/increase/models/check_transfer.rb +++ b/lib/increase/models/check_transfer.rb @@ -778,6 +778,9 @@ module Category # The check has been delivered. DELIVERED = :delivered + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the check will be returned to sender. + DELIVERY_ISSUE = :delivery_issue + # Delivery failed and the check was returned to sender. RETURNED_TO_SENDER = :returned_to_sender diff --git a/lib/increase/models/physical_card.rb b/lib/increase/models/physical_card.rb index 08d0b4f8..7f0b085e 100644 --- a/lib/increase/models/physical_card.rb +++ b/lib/increase/models/physical_card.rb @@ -431,6 +431,9 @@ module Category # The physical card has been delivered. DELIVERED = :delivered + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender. + DELIVERY_ISSUE = :delivery_issue + # Delivery failed and the physical card was returned to sender. RETURNED_TO_SENDER = :returned_to_sender diff --git a/lib/increase/models/simulations/physical_card_create_params.rb b/lib/increase/models/simulations/physical_card_create_params.rb index d5c56bf3..3a0f521c 100644 --- a/lib/increase/models/simulations/physical_card_create_params.rb +++ b/lib/increase/models/simulations/physical_card_create_params.rb @@ -68,6 +68,9 @@ module Category # The physical card has been delivered. DELIVERED = :delivered + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender. + DELIVERY_ISSUE = :delivery_issue + # Delivery failed and the physical card was returned to sender. RETURNED_TO_SENDER = :returned_to_sender diff --git a/lib/increase/version.rb b/lib/increase/version.rb index a220edc3..36fc743f 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.161.0" + VERSION = "1.162.0" end diff --git a/rbi/increase/models/check_transfer.rbi b/rbi/increase/models/check_transfer.rbi index 799f7663..44e3ea59 100644 --- a/rbi/increase/models/check_transfer.rbi +++ b/rbi/increase/models/check_transfer.rbi @@ -1271,6 +1271,13 @@ module Increase Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::TaggedSymbol ) + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the check will be returned to sender. + DELIVERY_ISSUE = + T.let( + :delivery_issue, + Increase::CheckTransfer::PhysicalCheck::TrackingUpdate::Category::TaggedSymbol + ) + # Delivery failed and the check was returned to sender. RETURNED_TO_SENDER = T.let( diff --git a/rbi/increase/models/physical_card.rbi b/rbi/increase/models/physical_card.rbi index 65f25d9c..088dca04 100644 --- a/rbi/increase/models/physical_card.rbi +++ b/rbi/increase/models/physical_card.rbi @@ -690,6 +690,13 @@ module Increase Increase::PhysicalCard::Shipment::Tracking::Update::Category::TaggedSymbol ) + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender. + DELIVERY_ISSUE = + T.let( + :delivery_issue, + Increase::PhysicalCard::Shipment::Tracking::Update::Category::TaggedSymbol + ) + # Delivery failed and the physical card was returned to sender. RETURNED_TO_SENDER = T.let( diff --git a/rbi/increase/models/simulations/physical_card_create_params.rbi b/rbi/increase/models/simulations/physical_card_create_params.rbi index 6c1f8e57..31dd317f 100644 --- a/rbi/increase/models/simulations/physical_card_create_params.rbi +++ b/rbi/increase/models/simulations/physical_card_create_params.rbi @@ -129,6 +129,13 @@ module Increase Increase::Simulations::PhysicalCardCreateParams::Category::TaggedSymbol ) + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender. + DELIVERY_ISSUE = + T.let( + :delivery_issue, + Increase::Simulations::PhysicalCardCreateParams::Category::TaggedSymbol + ) + # Delivery failed and the physical card was returned to sender. RETURNED_TO_SENDER = T.let( diff --git a/sig/increase/models/check_transfer.rbs b/sig/increase/models/check_transfer.rbs index e4b8cc0c..be67ad37 100644 --- a/sig/increase/models/check_transfer.rbs +++ b/sig/increase/models/check_transfer.rbs @@ -515,6 +515,7 @@ module Increase :in_transit | :processed_for_delivery | :delivered + | :delivery_issue | :returned_to_sender module Category @@ -529,6 +530,9 @@ module Increase # The check has been delivered. DELIVERED: :delivered + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the check will be returned to sender. + DELIVERY_ISSUE: :delivery_issue + # Delivery failed and the check was returned to sender. RETURNED_TO_SENDER: :returned_to_sender diff --git a/sig/increase/models/physical_card.rbs b/sig/increase/models/physical_card.rbs index f6733140..3e18ba8b 100644 --- a/sig/increase/models/physical_card.rbs +++ b/sig/increase/models/physical_card.rbs @@ -315,6 +315,7 @@ module Increase :in_transit | :processed_for_delivery | :delivered + | :delivery_issue | :returned_to_sender module Category @@ -329,6 +330,9 @@ module Increase # The physical card has been delivered. DELIVERED: :delivered + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender. + DELIVERY_ISSUE: :delivery_issue + # Delivery failed and the physical card was returned to sender. RETURNED_TO_SENDER: :returned_to_sender diff --git a/sig/increase/models/simulations/physical_card_create_params.rbs b/sig/increase/models/simulations/physical_card_create_params.rbs index 924ac150..d08289a4 100644 --- a/sig/increase/models/simulations/physical_card_create_params.rbs +++ b/sig/increase/models/simulations/physical_card_create_params.rbs @@ -55,6 +55,7 @@ module Increase :in_transit | :processed_for_delivery | :delivered + | :delivery_issue | :returned_to_sender module Category @@ -69,6 +70,9 @@ module Increase # The physical card has been delivered. DELIVERED: :delivered + # There is an issue preventing delivery. The delivery will be attempted again if possible. If the issue cannot be resolved, the physical card will be returned to sender. + DELIVERY_ISSUE: :delivery_issue + # Delivery failed and the physical card was returned to sender. RETURNED_TO_SENDER: :returned_to_sender