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
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
lint:
name: lint
runs-on: ubuntu-latest


steps:
- uses: actions/checkout@v4
Expand All @@ -30,6 +29,7 @@ jobs:

- name: Run lints
run: ./scripts/lint

test:
name: test
runs-on: ubuntu-latest
Expand All @@ -50,4 +50,3 @@ jobs:

- name: Run tests
run: ./scripts/test

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.178.0"
".": "0.179.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-03ecb68309b2d2429b7c74b155e110f4d992425d54067160881ecc1d1aa1551e.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-936415a7c13aa6a9b75c94e06d628346ea373e89a34c5f4281dbfd68a5114b3c.yml
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.179.0 (2025-01-27)

Full Changelog: [v0.178.0...v0.179.0](https://github.com/Increase/increase-python/compare/v0.178.0...v0.179.0)

### Features

* **api:** api update ([#924](https://github.com/Increase/increase-python/issues/924)) ([6f7f95e](https://github.com/Increase/increase-python/commit/6f7f95e14a81eecd391db6cb8f24db5961e98ce9))


### Chores

* **internal:** minor formatting changes ([#922](https://github.com/Increase/increase-python/issues/922)) ([36c27fd](https://github.com/Increase/increase-python/commit/36c27fd1eaba8230c703f98f3c8b619ea5ce1b31))

## 0.178.0 (2025-01-21)

Full Changelog: [v0.177.1...v0.178.0](https://github.com/Increase/increase-python/compare/v0.177.1...v0.178.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.178.0"
version = "0.179.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

cd "$(dirname "$0")/.."

if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
if ! command -v rye >/dev/null 2>&1 && [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ]; then
brew bundle check >/dev/null 2>&1 || {
echo "==> Installing Homebrew dependencies…"
brew bundle
Expand Down
1 change: 0 additions & 1 deletion scripts/lint
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ rye run lint

echo "==> Making sure it imports"
rye run python -c 'import increase'

2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "increase"
__version__ = "0.178.0" # x-release-please-version
__version__ = "0.179.0" # x-release-please-version
3 changes: 2 additions & 1 deletion src/increase/types/document.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ class Document(BaseModel):
id: str
"""The Document identifier."""

category: Literal["form_1099_int", "proof_of_authorization", "company_information"]
category: Literal["form_1099_int", "form_1099_misc", "proof_of_authorization", "company_information"]
"""The type of document.

- `form_1099_int` - Internal Revenue Service Form 1099-INT.
- `form_1099_misc` - Internal Revenue Service Form 1099-MISC.
- `proof_of_authorization` - A document submitted in response to a proof of
authorization request for an ACH transfer.
- `company_information` - Company information, such a policies or procedures,
Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/document_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DocumentListParams(TypedDict, total=False):
_CategoryReservedKeywords = TypedDict(
"_CategoryReservedKeywords",
{
"in": List[Literal["form_1099_int", "proof_of_authorization", "company_information"]],
"in": List[Literal["form_1099_int", "form_1099_misc", "proof_of_authorization", "company_information"]],
},
total=False,
)
Expand Down
2 changes: 2 additions & 0 deletions src/increase/types/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class File(BaseModel):
"check_attachment_image",
"inbound_mail_item",
"form_1099_int",
"form_1099_misc",
"form_ss_4",
"identity_document",
"increase_statement",
Expand Down Expand Up @@ -91,6 +92,7 @@ class File(BaseModel):
mailed with a check that you've requested Increase print.
- `inbound_mail_item` - A scanned mail item sent to Increase.
- `form_1099_int` - IRS Form 1099-INT.
- `form_1099_misc` - IRS Form 1099-MISC.
- `form_ss_4` - IRS Form SS-4.
- `identity_document` - An image of a government-issued ID.
- `increase_statement` - A statement generated by Increase.
Expand Down
1 change: 1 addition & 0 deletions src/increase/types/file_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class CreatedAt(TypedDict, total=False):
"check_attachment_image",
"inbound_mail_item",
"form_1099_int",
"form_1099_misc",
"form_ss_4",
"identity_document",
"increase_statement",
Expand Down
Loading