Skip to content

Commit 79117b1

Browse files
feat(api): api update
1 parent 1d52e0a commit 79117b1

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 116
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-612316c13276a207f56e2e2c7bbc68f4bb73de85e3661595a23f23d9ccc80276.yml
3-
openapi_spec_hash: 6e125f05e40521ec485edf6e15beec2e
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-373ca3e805c414f75a90b0088c57cbb60ff207abdca0a8e397c551de88606c4a.yml
3+
openapi_spec_hash: 1c30d01bd9c38f8a2aa4bd088fbe69bc
44
config_hash: 1f535c1fa222aacf28b636eed21bec72

src/orb/resources/customers/costs.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def list(
177177
`grouping_value` and `secondary_grouping_value` available.
178178
179179
Args:
180-
currency: The currency or custom pricing unit to use.
180+
currency: The currency to use.
181181
182182
timeframe_end: Costs returned are exclusive of `timeframe_end`.
183183
@@ -353,7 +353,7 @@ def list_by_external_id(
353353
`grouping_value` and `secondary_grouping_value` available.
354354
355355
Args:
356-
currency: The currency or custom pricing unit to use.
356+
currency: The currency to use.
357357
358358
timeframe_end: Costs returned are exclusive of `timeframe_end`.
359359
@@ -552,7 +552,7 @@ async def list(
552552
`grouping_value` and `secondary_grouping_value` available.
553553
554554
Args:
555-
currency: The currency or custom pricing unit to use.
555+
currency: The currency to use.
556556
557557
timeframe_end: Costs returned are exclusive of `timeframe_end`.
558558
@@ -728,7 +728,7 @@ async def list_by_external_id(
728728
`grouping_value` and `secondary_grouping_value` available.
729729
730730
Args:
731-
currency: The currency or custom pricing unit to use.
731+
currency: The currency to use.
732732
733733
timeframe_end: Costs returned are exclusive of `timeframe_end`.
734734

src/orb/resources/subscriptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ def fetch_costs(
833833
same day).
834834
835835
Args:
836-
currency: The currency or custom pricing unit to use.
836+
currency: The currency to use.
837837
838838
timeframe_end: Costs returned are exclusive of `timeframe_end`.
839839
@@ -2919,7 +2919,7 @@ async def fetch_costs(
29192919
same day).
29202920
29212921
Args:
2922-
currency: The currency or custom pricing unit to use.
2922+
currency: The currency to use.
29232923
29242924
timeframe_end: Costs returned are exclusive of `timeframe_end`.
29252925

src/orb/types/customers/cost_list_by_external_id_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class CostListByExternalIDParams(TypedDict, total=False):
1515
currency: Optional[str]
16-
"""The currency or custom pricing unit to use."""
16+
"""The currency to use."""
1717

1818
timeframe_end: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
1919
"""Costs returned are exclusive of `timeframe_end`."""

src/orb/types/customers/cost_list_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class CostListParams(TypedDict, total=False):
1515
currency: Optional[str]
16-
"""The currency or custom pricing unit to use."""
16+
"""The currency to use."""
1717

1818
timeframe_end: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
1919
"""Costs returned are exclusive of `timeframe_end`."""

src/orb/types/subscription_fetch_costs_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class SubscriptionFetchCostsParams(TypedDict, total=False):
1515
currency: Optional[str]
16-
"""The currency or custom pricing unit to use."""
16+
"""The currency to use."""
1717

1818
timeframe_end: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
1919
"""Costs returned are exclusive of `timeframe_end`."""

0 commit comments

Comments
 (0)