Skip to content

Commit

Permalink
feat(api): api update (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] committed Feb 7, 2025
1 parent c8027ab commit 8c6b475
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 91
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/metronome%2Fmetronome-1fa0ae727bc625797b5aa5e32e426a24513647901b7ead2f67eb14bf0abf3c33.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/metronome%2Fmetronome-b72a02c62483cb264bcf60bb973078212a6a74c8dd93d05ac622ab521528cc89.yml
8 changes: 4 additions & 4 deletions src/metronome/types/contract_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ class RecurringCommit(TypedDict, total=False):
"""Will be passed down to the individual commits"""

ending_before: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
"""determines when the contract will stop creating recurring commits. optional"""
"""Determines when the contract will stop creating recurring commits. optional"""

invoice_amount: RecurringCommitInvoiceAmount
"""The amount the customer should be billed for the commit. Not required."""
Expand All @@ -696,7 +696,7 @@ class RecurringCommit(TypedDict, total=False):
"""Will be passed down to the individual commits.
This controls how much of an individual unexpired commit will roll over upon
contract transition
contract transition. Must be between 0 and 1.
"""

temporary_id: str
Expand Down Expand Up @@ -753,7 +753,7 @@ class RecurringCredit(TypedDict, total=False):
"""Will be passed down to the individual commits"""

ending_before: Annotated[Union[str, datetime], PropertyInfo(format="iso8601")]
"""determines when the contract will stop creating recurring commits. optional"""
"""Determines when the contract will stop creating recurring commits. optional"""

invoice_amount: RecurringCreditInvoiceAmount
"""The amount the customer should be billed for the commit. Not required."""
Expand All @@ -771,7 +771,7 @@ class RecurringCredit(TypedDict, total=False):
"""Will be passed down to the individual commits.
This controls how much of an individual unexpired commit will roll over upon
contract transition
contract transition. Must be between 0 and 1.
"""

temporary_id: str
Expand Down
4 changes: 2 additions & 2 deletions src/metronome/types/shared/contract_without_amendments.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class RecurringCommit(BaseModel):
"""Will be passed down to the individual commits.
This controls how much of an individual unexpired commit will roll over upon
contract transition
contract transition. Must be between 0 and 1.
"""


Expand Down Expand Up @@ -212,7 +212,7 @@ class RecurringCredit(BaseModel):
"""Will be passed down to the individual commits.
This controls how much of an individual unexpired commit will roll over upon
contract transition
contract transition. Must be between 0 and 1.
"""


Expand Down

0 comments on commit 8c6b475

Please sign in to comment.