Skip to content

Commit 62e9f04

Browse files
feat(api): api update
1 parent ebd8bad commit 62e9f04

File tree

169 files changed

+8033
-1919
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+8033
-1919
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: 118
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-6b2550b95f82872b3825619c109352352b9c92281c8b2470fce158e971142881.yml
3-
openapi_spec_hash: 379df18de1af6a9d0b50d3653aab4d44
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-9dda3e74d276c581c08bea0cad47ae390143d94640f267d827caf234301f2721.yml
3+
openapi_spec_hash: 60daf7a378cdf7dd1f7338c303e2d661
44
config_hash: 1f73a949b649ecfe6ec68ba1bb459dc2

api.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ from orb.types import (
9696
NewPlanScalableMatrixWithTieredPricingPrice,
9797
NewPlanScalableMatrixWithUnitPricingPrice,
9898
NewPlanThresholdTotalAmountPrice,
99-
NewPlanTierWithProrationPrice,
10099
NewPlanTieredPackagePrice,
101100
NewPlanTieredPackageWithMinimumPrice,
102101
NewPlanTieredPrice,
@@ -125,7 +124,6 @@ from orb.types import (
125124
SubscriptionTrialInfo,
126125
TaxAmount,
127126
Tier,
128-
TierConfig,
129127
TierSubLineItem,
130128
TieredConfig,
131129
TieredConversionRateConfig,
@@ -515,7 +513,6 @@ from orb.types import (
515513
NewSubscriptionScalableMatrixWithTieredPricingPrice,
516514
NewSubscriptionScalableMatrixWithUnitPricingPrice,
517515
NewSubscriptionThresholdTotalAmountPrice,
518-
NewSubscriptionTierWithProrationPrice,
519516
NewSubscriptionTieredPackagePrice,
520517
NewSubscriptionTieredPackageWithMinimumPrice,
521518
NewSubscriptionTieredPrice,

src/orb/resources/customers/customers.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ def create(
141141
name: The full name of the customer
142142
143143
additional_emails: Additional email addresses for this customer. If populated, these email
144-
addresses will be CC'd for customer communications.
144+
addresses will be CC'd for customer communications. The total number of email
145+
addresses (including the primary email) cannot exceed 50.
145146
146147
auto_collection: Used to determine if invoices for this customer will automatically attempt to
147148
charge a saved payment method, if available. This parameter defaults to `True`
@@ -407,7 +408,8 @@ def update(
407408
408409
Args:
409410
additional_emails: Additional email addresses for this customer. If populated, these email
410-
addresses will be CC'd for customer communications.
411+
addresses will be CC'd for customer communications. The total number of email
412+
addresses (including the primary email) cannot exceed 50.
411413
412414
auto_collection: Used to determine if invoices for this customer will automatically attempt to
413415
charge a saved payment method, if available. This parameter defaults to `True`
@@ -965,7 +967,8 @@ def update_by_external_id(
965967
966968
Args:
967969
additional_emails: Additional email addresses for this customer. If populated, these email
968-
addresses will be CC'd for customer communications.
970+
addresses will be CC'd for customer communications. The total number of email
971+
addresses (including the primary email) cannot exceed 50.
969972
970973
auto_collection: Used to determine if invoices for this customer will automatically attempt to
971974
charge a saved payment method, if available. This parameter defaults to `True`
@@ -1284,7 +1287,8 @@ async def create(
12841287
name: The full name of the customer
12851288
12861289
additional_emails: Additional email addresses for this customer. If populated, these email
1287-
addresses will be CC'd for customer communications.
1290+
addresses will be CC'd for customer communications. The total number of email
1291+
addresses (including the primary email) cannot exceed 50.
12881292
12891293
auto_collection: Used to determine if invoices for this customer will automatically attempt to
12901294
charge a saved payment method, if available. This parameter defaults to `True`
@@ -1550,7 +1554,8 @@ async def update(
15501554
15511555
Args:
15521556
additional_emails: Additional email addresses for this customer. If populated, these email
1553-
addresses will be CC'd for customer communications.
1557+
addresses will be CC'd for customer communications. The total number of email
1558+
addresses (including the primary email) cannot exceed 50.
15541559
15551560
auto_collection: Used to determine if invoices for this customer will automatically attempt to
15561561
charge a saved payment method, if available. This parameter defaults to `True`
@@ -2108,7 +2113,8 @@ async def update_by_external_id(
21082113
21092114
Args:
21102115
additional_emails: Additional email addresses for this customer. If populated, these email
2111-
addresses will be CC'd for customer communications.
2116+
addresses will be CC'd for customer communications. The total number of email
2117+
addresses (including the primary email) cannot exceed 50.
21122118
21132119
auto_collection: Used to determine if invoices for this customer will automatically attempt to
21142120
charge a saved payment method, if available. This parameter defaults to `True`

0 commit comments

Comments
 (0)