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 @@
{
".": "1.165.0"
".": "1.166.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 230
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-1d2c6658404319b576b7bc1c75242f23493b8ffedefd81b41b36dc5456af766a.yml
openapi_spec_hash: 0d8eeda32c249e6371843545f8f211ff
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-acaa7510acabd57dfdde78063277cef0c611dd42abd998e5f1f851c4655e8fd0.yml
openapi_spec_hash: d0684f4b10e09e2585ad70360531501c
config_hash: ff2eb5f192b4de36611b37b27961c2d8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.166.0 (2025-12-17)

Full Changelog: [v1.165.0...v1.166.0](https://github.com/Increase/increase-ruby/compare/v1.165.0...v1.166.0)

### Features

* **api:** api update ([88bcbdb](https://github.com/Increase/increase-ruby/commit/88bcbdb902e7fb4c920d5e675385fb2a06a6ab96))

## 1.165.0 (2025-12-16)

Full Changelog: [v1.164.1...v1.165.0](https://github.com/Increase/increase-ruby/compare/v1.164.1...v1.165.0)
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 (1.165.0)
increase (1.166.0)
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", "~> 1.165.0"
gem "increase", "~> 1.166.0"
```

<!-- x-release-please-end -->
Expand Down
12 changes: 12 additions & 0 deletions lib/increase/models/export.rb
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,18 @@ module Category
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
DASHBOARD_TABLE_CSV = :dashboard_table_csv

# A PDF of an account verification letter.
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter

# A PDF of funding instructions.
FUNDING_INSTRUCTIONS = :funding_instructions

# A PDF of an Internal Revenue Service Form 1099-INT.
FORM_1099_INT = :form_1099_int

# A PDF of an Internal Revenue Service Form 1099-MISC.
FORM_1099_MISC = :form_1099_misc

# @!method self.values
# @return [Array<Symbol>]
end
Expand Down
12 changes: 12 additions & 0 deletions lib/increase/models/export_list_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,18 @@ module In
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
DASHBOARD_TABLE_CSV = :dashboard_table_csv

# A PDF of an account verification letter.
ACCOUNT_VERIFICATION_LETTER = :account_verification_letter

# A PDF of funding instructions.
FUNDING_INSTRUCTIONS = :funding_instructions

# A PDF of an Internal Revenue Service Form 1099-INT.
FORM_1099_INT = :form_1099_int

# A PDF of an Internal Revenue Service Form 1099-MISC.
FORM_1099_MISC = :form_1099_misc

# @!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 = "1.165.0"
VERSION = "1.166.0"
end
19 changes: 19 additions & 0 deletions rbi/increase/models/export.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,25 @@ module Increase
DASHBOARD_TABLE_CSV =
T.let(:dashboard_table_csv, Increase::Export::Category::TaggedSymbol)

# A PDF of an account verification letter.
ACCOUNT_VERIFICATION_LETTER =
T.let(
:account_verification_letter,
Increase::Export::Category::TaggedSymbol
)

# A PDF of funding instructions.
FUNDING_INSTRUCTIONS =
T.let(:funding_instructions, Increase::Export::Category::TaggedSymbol)

# A PDF of an Internal Revenue Service Form 1099-INT.
FORM_1099_INT =
T.let(:form_1099_int, Increase::Export::Category::TaggedSymbol)

# A PDF of an Internal Revenue Service Form 1099-MISC.
FORM_1099_MISC =
T.let(:form_1099_misc, Increase::Export::Category::TaggedSymbol)

sig do
override.returns(T::Array[Increase::Export::Category::TaggedSymbol])
end
Expand Down
28 changes: 28 additions & 0 deletions rbi/increase/models/export_list_params.rbi
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,34 @@ module Increase
Increase::ExportListParams::Category::In::TaggedSymbol
)

# A PDF of an account verification letter.
ACCOUNT_VERIFICATION_LETTER =
T.let(
:account_verification_letter,
Increase::ExportListParams::Category::In::TaggedSymbol
)

# A PDF of funding instructions.
FUNDING_INSTRUCTIONS =
T.let(
:funding_instructions,
Increase::ExportListParams::Category::In::TaggedSymbol
)

# A PDF of an Internal Revenue Service Form 1099-INT.
FORM_1099_INT =
T.let(
:form_1099_int,
Increase::ExportListParams::Category::In::TaggedSymbol
)

# A PDF of an Internal Revenue Service Form 1099-MISC.
FORM_1099_MISC =
T.let(
:form_1099_misc,
Increase::ExportListParams::Category::In::TaggedSymbol
)

sig do
override.returns(
T::Array[Increase::ExportListParams::Category::In::TaggedSymbol]
Expand Down
16 changes: 16 additions & 0 deletions sig/increase/models/export.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ module Increase
| :entity_csv
| :vendor_csv
| :dashboard_table_csv
| :account_verification_letter
| :funding_instructions
| :form_1099_int
| :form_1099_misc

module Category
extend Increase::Internal::Type::Enum
Expand Down Expand Up @@ -88,6 +92,18 @@ module Increase
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
DASHBOARD_TABLE_CSV: :dashboard_table_csv

# A PDF of an account verification letter.
ACCOUNT_VERIFICATION_LETTER: :account_verification_letter

# A PDF of funding instructions.
FUNDING_INSTRUCTIONS: :funding_instructions

# A PDF of an Internal Revenue Service Form 1099-INT.
FORM_1099_INT: :form_1099_int

# A PDF of an Internal Revenue Service Form 1099-MISC.
FORM_1099_MISC: :form_1099_misc

def self?.values: -> ::Array[Increase::Models::Export::category]
end

Expand Down
16 changes: 16 additions & 0 deletions sig/increase/models/export_list_params.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ module Increase
| :entity_csv
| :vendor_csv
| :dashboard_table_csv
| :account_verification_letter
| :funding_instructions
| :form_1099_int
| :form_1099_misc

module In
extend Increase::Internal::Type::Enum
Expand Down Expand Up @@ -120,6 +124,18 @@ module Increase
# Certain dashboard tables are available as CSV exports. This export cannot be created via the API.
DASHBOARD_TABLE_CSV: :dashboard_table_csv

# A PDF of an account verification letter.
ACCOUNT_VERIFICATION_LETTER: :account_verification_letter

# A PDF of funding instructions.
FUNDING_INSTRUCTIONS: :funding_instructions

# A PDF of an Internal Revenue Service Form 1099-INT.
FORM_1099_INT: :form_1099_int

# A PDF of an Internal Revenue Service Form 1099-MISC.
FORM_1099_MISC: :form_1099_misc

def self?.values: -> ::Array[Increase::Models::ExportListParams::Category::in_]
end
end
Expand Down