Skip to content

Commit 6f7f95e

Browse files
feat(api): api update (#924)
1 parent 36c27fd commit 6f7f95e

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 201
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-03ecb68309b2d2429b7c74b155e110f4d992425d54067160881ecc1d1aa1551e.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-936415a7c13aa6a9b75c94e06d628346ea373e89a34c5f4281dbfd68a5114b3c.yml

src/increase/types/document.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ class Document(BaseModel):
1313
id: str
1414
"""The Document identifier."""
1515

16-
category: Literal["form_1099_int", "proof_of_authorization", "company_information"]
16+
category: Literal["form_1099_int", "form_1099_misc", "proof_of_authorization", "company_information"]
1717
"""The type of document.
1818
1919
- `form_1099_int` - Internal Revenue Service Form 1099-INT.
20+
- `form_1099_misc` - Internal Revenue Service Form 1099-MISC.
2021
- `proof_of_authorization` - A document submitted in response to a proof of
2122
authorization request for an ACH transfer.
2223
- `company_information` - Company information, such a policies or procedures,

src/increase/types/document_list_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class DocumentListParams(TypedDict, total=False):
3232
_CategoryReservedKeywords = TypedDict(
3333
"_CategoryReservedKeywords",
3434
{
35-
"in": List[Literal["form_1099_int", "proof_of_authorization", "company_information"]],
35+
"in": List[Literal["form_1099_int", "form_1099_misc", "proof_of_authorization", "company_information"]],
3636
},
3737
total=False,
3838
)

src/increase/types/file.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ class File(BaseModel):
5656
"check_attachment_image",
5757
"inbound_mail_item",
5858
"form_1099_int",
59+
"form_1099_misc",
5960
"form_ss_4",
6061
"identity_document",
6162
"increase_statement",
@@ -91,6 +92,7 @@ class File(BaseModel):
9192
mailed with a check that you've requested Increase print.
9293
- `inbound_mail_item` - A scanned mail item sent to Increase.
9394
- `form_1099_int` - IRS Form 1099-INT.
95+
- `form_1099_misc` - IRS Form 1099-MISC.
9496
- `form_ss_4` - IRS Form SS-4.
9597
- `identity_document` - An image of a government-issued ID.
9698
- `increase_statement` - A statement generated by Increase.

src/increase/types/file_list_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ class CreatedAt(TypedDict, total=False):
7474
"check_attachment_image",
7575
"inbound_mail_item",
7676
"form_1099_int",
77+
"form_1099_misc",
7778
"form_ss_4",
7879
"identity_document",
7980
"increase_statement",

0 commit comments

Comments
 (0)