From 8fc1dda09d15bdc9f3efb5a63fe5bcd9c11ec47d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 00:18:05 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index cb257574..d4beceef 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c2b4fec66de664ded8acd9cbdd69566f17ca1d519136989a15bb67dcf039e793.yml -openapi_spec_hash: 4673ce2f217cc5598a122ad2d9404080 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3c8035f19693dda684506d2e1ea8e9ce7db5e7400923872518c3ac9cb19b7a2a.yml +openapi_spec_hash: a41137b030f9e14858f05263731b8f4d config_hash: eb2035151c7b49c2f12caf55469b8f9a From eda8afff6343175b8b8aa1558a8f225439622ebf Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 14:35:55 +0000 Subject: [PATCH 2/3] feat(api): api update --- .stats.yml | 4 ++-- lib/increase/models/file.rb | 3 +++ lib/increase/models/file_create_params.rb | 3 +++ lib/increase/models/file_list_params.rb | 3 +++ rbi/increase/models/file.rbi | 7 +++++++ rbi/increase/models/file_create_params.rbi | 7 +++++++ rbi/increase/models/file_list_params.rbi | 7 +++++++ sig/increase/models/file.rbs | 4 ++++ sig/increase/models/file_create_params.rbs | 4 ++++ sig/increase/models/file_list_params.rbs | 4 ++++ 10 files changed, 44 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index d4beceef..f961ed3c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 228 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3c8035f19693dda684506d2e1ea8e9ce7db5e7400923872518c3ac9cb19b7a2a.yml -openapi_spec_hash: a41137b030f9e14858f05263731b8f4d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-029ea9e6c4067d483991aa9c3f62773ffaf56ac0b765749983afc182074e834d.yml +openapi_spec_hash: 4b3f58b1324441e24b4c2b4dfa391d74 config_hash: eb2035151c7b49c2f12caf55469b8f9a diff --git a/lib/increase/models/file.rb b/lib/increase/models/file.rb index 49fe80e7..41e3a40d 100644 --- a/lib/increase/models/file.rb +++ b/lib/increase/models/file.rb @@ -153,6 +153,9 @@ module Purpose # A statement generated by Increase. INCREASE_STATEMENT = :increase_statement + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document + # A file purpose not covered by any of the other cases. OTHER = :other diff --git a/lib/increase/models/file_create_params.rb b/lib/increase/models/file_create_params.rb index fe5b3b15..81713204 100644 --- a/lib/increase/models/file_create_params.rb +++ b/lib/increase/models/file_create_params.rb @@ -64,6 +64,9 @@ module Purpose # An image of a government-issued ID. IDENTITY_DOCUMENT = :identity_document + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document + # A file purpose not covered by any of the other cases. OTHER = :other diff --git a/lib/increase/models/file_list_params.rb b/lib/increase/models/file_list_params.rb index e62cf062..de737ec6 100644 --- a/lib/increase/models/file_list_params.rb +++ b/lib/increase/models/file_list_params.rb @@ -155,6 +155,9 @@ module In # A statement generated by Increase. INCREASE_STATEMENT = :increase_statement + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = :loan_application_supplemental_document + # A file purpose not covered by any of the other cases. OTHER = :other diff --git a/rbi/increase/models/file.rbi b/rbi/increase/models/file.rbi index a35346d9..9079a197 100644 --- a/rbi/increase/models/file.rbi +++ b/rbi/increase/models/file.rbi @@ -197,6 +197,13 @@ module Increase INCREASE_STATEMENT = T.let(:increase_statement, Increase::File::Purpose::TaggedSymbol) + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = + T.let( + :loan_application_supplemental_document, + Increase::File::Purpose::TaggedSymbol + ) + # A file purpose not covered by any of the other cases. OTHER = T.let(:other, Increase::File::Purpose::TaggedSymbol) diff --git a/rbi/increase/models/file_create_params.rbi b/rbi/increase/models/file_create_params.rbi index 239362d1..6ee7adeb 100644 --- a/rbi/increase/models/file_create_params.rbi +++ b/rbi/increase/models/file_create_params.rbi @@ -116,6 +116,13 @@ module Increase Increase::FileCreateParams::Purpose::TaggedSymbol ) + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = + T.let( + :loan_application_supplemental_document, + Increase::FileCreateParams::Purpose::TaggedSymbol + ) + # A file purpose not covered by any of the other cases. OTHER = T.let(:other, Increase::FileCreateParams::Purpose::TaggedSymbol) diff --git a/rbi/increase/models/file_list_params.rbi b/rbi/increase/models/file_list_params.rbi index 20bac76b..0de31324 100644 --- a/rbi/increase/models/file_list_params.rbi +++ b/rbi/increase/models/file_list_params.rbi @@ -311,6 +311,13 @@ module Increase Increase::FileListParams::Purpose::In::TaggedSymbol ) + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT = + T.let( + :loan_application_supplemental_document, + Increase::FileListParams::Purpose::In::TaggedSymbol + ) + # A file purpose not covered by any of the other cases. OTHER = T.let(:other, Increase::FileListParams::Purpose::In::TaggedSymbol) diff --git a/sig/increase/models/file.rbs b/sig/increase/models/file.rbs index d89646e0..4648f8e5 100644 --- a/sig/increase/models/file.rbs +++ b/sig/increase/models/file.rbs @@ -84,6 +84,7 @@ module Increase | :form_ss_4 | :identity_document | :increase_statement + | :loan_application_supplemental_document | :other | :trust_formation_document | :digital_wallet_artwork @@ -143,6 +144,9 @@ module Increase # A statement generated by Increase. INCREASE_STATEMENT: :increase_statement + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document + # A file purpose not covered by any of the other cases. OTHER: :other diff --git a/sig/increase/models/file_create_params.rbs b/sig/increase/models/file_create_params.rbs index 12b0d101..5d2b3919 100644 --- a/sig/increase/models/file_create_params.rbs +++ b/sig/increase/models/file_create_params.rbs @@ -42,6 +42,7 @@ module Increase | :check_attachment | :form_ss_4 | :identity_document + | :loan_application_supplemental_document | :other | :trust_formation_document | :digital_wallet_artwork @@ -77,6 +78,9 @@ module Increase # An image of a government-issued ID. IDENTITY_DOCUMENT: :identity_document + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document + # A file purpose not covered by any of the other cases. OTHER: :other diff --git a/sig/increase/models/file_list_params.rbs b/sig/increase/models/file_list_params.rbs index 1ee92bd2..8d498ac0 100644 --- a/sig/increase/models/file_list_params.rbs +++ b/sig/increase/models/file_list_params.rbs @@ -123,6 +123,7 @@ module Increase | :form_ss_4 | :identity_document | :increase_statement + | :loan_application_supplemental_document | :other | :trust_formation_document | :digital_wallet_artwork @@ -182,6 +183,9 @@ module Increase # A statement generated by Increase. INCREASE_STATEMENT: :increase_statement + # A supplemental document for a Loan Application. + LOAN_APPLICATION_SUPPLEMENTAL_DOCUMENT: :loan_application_supplemental_document + # A file purpose not covered by any of the other cases. OTHER: :other From 8adf87a7500093c099a33984393f3eb5f3678d2d Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 14:36:18 +0000 Subject: [PATCH 3/3] release: 1.134.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 4e570994..12b373a5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.133.0" + ".": "1.134.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 720201cd..c7f799dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.134.0 (2025-11-07) + +Full Changelog: [v1.133.0...v1.134.0](https://github.com/Increase/increase-ruby/compare/v1.133.0...v1.134.0) + +### Features + +* **api:** api update ([eda8aff](https://github.com/Increase/increase-ruby/commit/eda8afff6343175b8b8aa1558a8f225439622ebf)) + ## 1.133.0 (2025-11-06) Full Changelog: [v1.132.0...v1.133.0](https://github.com/Increase/increase-ruby/compare/v1.132.0...v1.133.0) diff --git a/Gemfile.lock b/Gemfile.lock index cc3c3e31..aaadbfa9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - increase (1.133.0) + increase (1.134.0) connection_pool GEM diff --git a/README.md b/README.md index c9b93b73..c47e0ec8 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.133.0" +gem "increase", "~> 1.134.0" ``` diff --git a/lib/increase/version.rb b/lib/increase/version.rb index d07321a3..b4f3807e 100644 --- a/lib/increase/version.rb +++ b/lib/increase/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Increase - VERSION = "1.133.0" + VERSION = "1.134.0" end