Skip to content

Commit 0b3de08

Browse files
feat(api): api update
1 parent 5faccd9 commit 0b3de08

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: 116
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-ff68c7ee2669d61716781d01b93f34186fb7a19ff4ad6fc2c0b8f9f4d9c4a588.yml
3-
openapi_spec_hash: 17bdc6b1ca2531dc884c6d156f404f0c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-d4db2933d3d6b8c855e3351dcce658777ec9a413eb78f176b2e63b1e99fddf68.yml
3+
openapi_spec_hash: 858adc7f2e0c8c631ef733dfd8f9ea0a
44
config_hash: 3c3524be9607afb24d2139ce26ce5389

src/orb/types/shared/new_allocation_price.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class NewAllocationPrice(BaseModel):
1313
amount: str
1414
"""An amount of the currency to allocate to the customer at the specified cadence."""
1515

16-
cadence: Literal["one_time", "monthly", "quarterly", "semi_annual", "annual", "custom"]
16+
cadence: Literal["one_time", "monthly", "quarterly", "semi_annual", "annual"]
1717
"""The cadence at which to allocate the amount to the customer."""
1818

1919
currency: str

src/orb/types/shared_params/new_allocation_price.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class NewAllocationPrice(TypedDict, total=False):
1414
amount: Required[str]
1515
"""An amount of the currency to allocate to the customer at the specified cadence."""
1616

17-
cadence: Required[Literal["one_time", "monthly", "quarterly", "semi_annual", "annual", "custom"]]
17+
cadence: Required[Literal["one_time", "monthly", "quarterly", "semi_annual", "annual"]]
1818
"""The cadence at which to allocate the amount to the customer."""
1919

2020
currency: Required[str]

0 commit comments

Comments
 (0)