Skip to content

Commit fd20b60

Browse files
feat(api): api update
1 parent 0af1c84 commit fd20b60

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 46
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-331df2398447990a86899b05ac569534b6a7e4ff1d73a319d57f67b34a201fb7.yml
3-
openapi_spec_hash: 6e57516524c0519e90213c0554b26ab4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/finch%2Ffinch-2450f9bcc309174bb09e7cc75c3d873240626676782a6d0aa7578395adfa80a8.yml
3+
openapi_spec_hash: ce0eebc26042d65a7831455ca7e9c5a8
44
config_hash: 53778a0b839c4f6ad34fbba051f5e8a6

src/finch/types/hris/pay_statement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ class PayStatement(BaseModel):
185185

186186
net_pay: Optional[Money] = None
187187

188-
payment_method: Optional[Literal["check", "direct_deposit"]] = None
188+
payment_method: Optional[Literal["check", "direct_deposit", "other"]] = None
189189
"""The payment method."""
190190

191191
taxes: Optional[List[Optional[Tax]]] = None

src/finch/types/sandbox/payment_create_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ class PayStatement(TypedDict, total=False):
197197

198198
net_pay: Required[Optional[MoneyParam]]
199199

200-
payment_method: Required[Optional[Literal["check", "direct_deposit"]]]
200+
payment_method: Required[Optional[Literal["check", "direct_deposit", "other"]]]
201201
"""The payment method."""
202202

203203
taxes: Required[Optional[Iterable[Optional[PayStatementTax]]]]

0 commit comments

Comments
 (0)