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 .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
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