From a8c7867005c29bc8b4da16f7ee57b22c3c4abde5 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:11:49 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- lib/increase/models/check_transfer.rb | 3 +++ lib/increase/models/physical_card.rb | 3 +++ .../models/simulations/physical_card_create_params.rb | 3 +++ rbi/increase/models/check_transfer.rbi | 7 +++++++ rbi/increase/models/physical_card.rbi | 7 +++++++ .../models/simulations/physical_card_create_params.rbi | 7 +++++++ sig/increase/models/check_transfer.rbs | 4 ++++ sig/increase/models/physical_card.rbs | 4 ++++ .../models/simulations/physical_card_create_params.rbs | 4 ++++ 10 files changed, 44 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 989a349be..e08e2557e 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/lib/increase/models/check_transfer.rb b/lib/increase/models/check_transfer.rb index 066d6fbb4..ac37cf25a 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 08d0b4f83..7f0b085e4 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 d5c56bf3c..3a0f521cf 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/rbi/increase/models/check_transfer.rbi b/rbi/increase/models/check_transfer.rbi index 799f76631..44e3ea590 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 65f25d9c8..088dca042 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 6c1f8e57d..31dd317ff 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 e4b8cc0cb..be67ad377 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 f6733140d..3e18ba8b0 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 924ac1500..d08289a4e 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 From 25bdfea77cbaf9794018b6a22e3fd1a75e8983e1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 19:12:13 +0000 Subject: [PATCH 2/2] release: 1.162.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- README.md | 2 +- lib/increase/version.rb | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index af9e38390..6c87ad672 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/CHANGELOG.md b/CHANGELOG.md index 61f7ec931..cdcbb7e70 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 84395e848..8a56e659a 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 1d4505229..c989ef0ec 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/version.rb b/lib/increase/version.rb index a220edc3c..36fc743fe 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