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: 103
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-6797b438a8e6a6856e28f4304a5a3c81bb67e74fa2d6fcc20e734880c725295a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-04f02fa57c3ab8d15ecf0a16a41a83814c21cdc2a830fae4d65f1b7b2196d819.yml
8 changes: 6 additions & 2 deletions src/orb/types/subscription_price_intervals_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2803,14 +2803,18 @@ class AddAdjustment(TypedDict, total=False):
"""The start date of the adjustment interval.

This is the date that the adjustment will start affecting prices on the
subscription.
subscription. The adjustment will apply to invoice dates that overlap with this
`start_date`. This `start_date` is treated as inclusive for in-advance prices,
and exclusive for in-arrears prices.
"""

end_date: Annotated[Union[Union[str, datetime], BillingCycleRelativeDate, None], PropertyInfo(format="iso8601")]
"""The end date of the adjustment interval.

This is the date that the adjustment will stop affecting prices on the
subscription.
subscription. The adjustment will apply to invoice dates that overlap with this
`end_date`.This `end_date` is treated as exclusive for in-advance prices, and
inclusive for in-arrears prices.
"""


Expand Down
4 changes: 2 additions & 2 deletions tests/api_resources/test_customers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_method_create_with_all_params(self, client: Orb) -> None:
],
"excluded": True,
},
additional_emails=["string"],
additional_emails=["[email protected]"],
auto_collection=True,
billing_address={
"city": "city",
Expand Down Expand Up @@ -556,7 +556,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncOrb) -> No
],
"excluded": True,
},
additional_emails=["string"],
additional_emails=["[email protected]"],
auto_collection=True,
billing_address={
"city": "city",
Expand Down