Skip to content

Commit dd09767

Browse files
feat(api): api update (#581)
1 parent 5d04ab2 commit dd09767

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 103
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-6797b438a8e6a6856e28f4304a5a3c81bb67e74fa2d6fcc20e734880c725295a.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-04f02fa57c3ab8d15ecf0a16a41a83814c21cdc2a830fae4d65f1b7b2196d819.yml

src/orb/types/subscription_price_intervals_params.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -2803,14 +2803,18 @@ class AddAdjustment(TypedDict, total=False):
28032803
"""The start date of the adjustment interval.
28042804
28052805
This is the date that the adjustment will start affecting prices on the
2806-
subscription.
2806+
subscription. The adjustment will apply to invoice dates that overlap with this
2807+
`start_date`. This `start_date` is treated as inclusive for in-advance prices,
2808+
and exclusive for in-arrears prices.
28072809
"""
28082810

28092811
end_date: Annotated[Union[Union[str, datetime], BillingCycleRelativeDate, None], PropertyInfo(format="iso8601")]
28102812
"""The end date of the adjustment interval.
28112813
28122814
This is the date that the adjustment will stop affecting prices on the
2813-
subscription.
2815+
subscription. The adjustment will apply to invoice dates that overlap with this
2816+
`end_date`.This `end_date` is treated as exclusive for in-advance prices, and
2817+
inclusive for in-arrears prices.
28142818
"""
28152819

28162820

tests/api_resources/test_customers.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_method_create_with_all_params(self, client: Orb) -> None:
4343
],
4444
"excluded": True,
4545
},
46-
additional_emails=["string"],
46+
additional_emails=["[email protected]"],
4747
auto_collection=True,
4848
billing_address={
4949
"city": "city",
@@ -556,7 +556,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncOrb) -> No
556556
],
557557
"excluded": True,
558558
},
559-
additional_emails=["string"],
559+
additional_emails=["[email protected]"],
560560
auto_collection=True,
561561
billing_address={
562562
"city": "city",

0 commit comments

Comments
 (0)