Skip to content

Commit 796a0a0

Browse files
feat(api): api update (#920)
1 parent d77afdf commit 796a0a0

File tree

5 files changed

+14
-1
lines changed

5 files changed

+14
-1
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-d0f9cb729e759d76c6e2853df124642232778711c74086512185cd65ab17f5e6.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-03ecb68309b2d2429b7c74b155e110f4d992425d54067160881ecc1d1aa1551e.yml

src/increase/resources/files.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def create(
5959
"check_image_back",
6060
"mailed_check_image",
6161
"check_voucher_image",
62+
"check_attachment_image",
6263
"form_ss_4",
6364
"identity_document",
6465
"other",
@@ -98,6 +99,8 @@ def create(
9899
- `mailed_check_image` - An image of a check that was mailed to a recipient.
99100
- `check_voucher_image` - An image to be printed on the bottom or voucher of a
100101
check that you've requested Increase print.
102+
- `check_attachment_image` - An image to be printed on an additional page and
103+
mailed with a check that you've requested Increase print.
101104
- `form_ss_4` - IRS Form SS-4.
102105
- `identity_document` - An image of a government-issued ID.
103106
- `other` - A file purpose not covered by any of the other cases.
@@ -279,6 +282,7 @@ async def create(
279282
"check_image_back",
280283
"mailed_check_image",
281284
"check_voucher_image",
285+
"check_attachment_image",
282286
"form_ss_4",
283287
"identity_document",
284288
"other",
@@ -318,6 +322,8 @@ async def create(
318322
- `mailed_check_image` - An image of a check that was mailed to a recipient.
319323
- `check_voucher_image` - An image to be printed on the bottom or voucher of a
320324
check that you've requested Increase print.
325+
- `check_attachment_image` - An image to be printed on an additional page and
326+
mailed with a check that you've requested Increase print.
321327
- `form_ss_4` - IRS Form SS-4.
322328
- `identity_document` - An image of a government-issued ID.
323329
- `other` - A file purpose not covered by any of the other cases.

src/increase/types/file.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ class File(BaseModel):
5353
"processed_check_image_back",
5454
"mailed_check_image",
5555
"check_voucher_image",
56+
"check_attachment_image",
5657
"inbound_mail_item",
5758
"form_1099_int",
5859
"form_ss_4",
@@ -86,6 +87,8 @@ class File(BaseModel):
8687
- `mailed_check_image` - An image of a check that was mailed to a recipient.
8788
- `check_voucher_image` - An image to be printed on the bottom or voucher of a
8889
check that you've requested Increase print.
90+
- `check_attachment_image` - An image to be printed on an additional page and
91+
mailed with a check that you've requested Increase print.
8992
- `inbound_mail_item` - A scanned mail item sent to Increase.
9093
- `form_1099_int` - IRS Form 1099-INT.
9194
- `form_ss_4` - IRS Form SS-4.

src/increase/types/file_create_params.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class FileCreateParams(TypedDict, total=False):
2424
"check_image_back",
2525
"mailed_check_image",
2626
"check_voucher_image",
27+
"check_attachment_image",
2728
"form_ss_4",
2829
"identity_document",
2930
"other",
@@ -45,6 +46,8 @@ class FileCreateParams(TypedDict, total=False):
4546
- `mailed_check_image` - An image of a check that was mailed to a recipient.
4647
- `check_voucher_image` - An image to be printed on the bottom or voucher of a
4748
check that you've requested Increase print.
49+
- `check_attachment_image` - An image to be printed on an additional page and
50+
mailed with a check that you've requested Increase print.
4851
- `form_ss_4` - IRS Form SS-4.
4952
- `identity_document` - An image of a government-issued ID.
5053
- `other` - A file purpose not covered by any of the other cases.

src/increase/types/file_list_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ class CreatedAt(TypedDict, total=False):
7171
"processed_check_image_back",
7272
"mailed_check_image",
7373
"check_voucher_image",
74+
"check_attachment_image",
7475
"inbound_mail_item",
7576
"form_1099_int",
7677
"form_ss_4",

0 commit comments

Comments
 (0)