Skip to content

Commit 57b665f

Browse files
feat(api): api update
1 parent 7186ac0 commit 57b665f

File tree

5 files changed

+31
-4
lines changed

5 files changed

+31
-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: 139
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-563cf1475c193333d5f8cab934fbf844e439db6218c5b9eccb089b5c1d797b4b.yml
3-
openapi_spec_hash: f2b06aac248aecb248e975af25f3911c
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/orb%2Forb-0186c0310e2a9f40302cc35f4248fca335b7ec8069502f684ba6f2fa37793033.yml
3+
openapi_spec_hash: 4fb1d2837ad3794864a7d59d393d6ff6
44
config_hash: 3279841440b02d4e8303c961d6983492

src/resources/items.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ export namespace Item {
111111
| 'taxjar'
112112
| 'avalara'
113113
| 'anrok'
114-
| 'numeral';
114+
| 'numeral'
115+
| 'stripe_tax';
115116

116117
/**
117118
* The identifier of this item in the external system.
@@ -164,7 +165,8 @@ export namespace ItemUpdateParams {
164165
| 'taxjar'
165166
| 'avalara'
166167
| 'anrok'
167-
| 'numeral';
168+
| 'numeral'
169+
| 'stripe_tax';
168170

169171
/**
170172
* The identifier of this item in the external system.

src/resources/prices/prices.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3333,6 +3333,11 @@ export declare namespace PriceCreateParams {
33333333
*/
33343334
unit_price: string;
33353335

3336+
/**
3337+
* The property used to group this price
3338+
*/
3339+
grouping_key?: string | null;
3340+
33363341
/**
33373342
* If true, the unit price will be prorated to the billing period
33383343
*/

src/resources/shared.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4971,6 +4971,11 @@ export namespace NewFloatingScalableMatrixWithUnitPricingPrice {
49714971
*/
49724972
unit_price: string;
49734973

4974+
/**
4975+
* The property used to group this price
4976+
*/
4977+
grouping_key?: string | null;
4978+
49744979
/**
49754980
* If true, the unit price will be prorated to the billing period
49764981
*/
@@ -8471,6 +8476,11 @@ export namespace NewPlanScalableMatrixWithUnitPricingPrice {
84718476
*/
84728477
unit_price: string;
84738478

8479+
/**
8480+
* The property used to group this price
8481+
*/
8482+
grouping_key?: string | null;
8483+
84748484
/**
84758485
* If true, the unit price will be prorated to the billing period
84768486
*/
@@ -14145,6 +14155,11 @@ export namespace Price {
1414514155
*/
1414614156
unit_price: string;
1414714157

14158+
/**
14159+
* The property used to group this price
14160+
*/
14161+
grouping_key?: string | null;
14162+
1414814163
/**
1414914164
* If true, the unit price will be prorated to the billing period
1415014165
*/

src/resources/subscriptions.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3303,6 +3303,11 @@ export namespace NewSubscriptionScalableMatrixWithUnitPricingPrice {
33033303
*/
33043304
unit_price: string;
33053305

3306+
/**
3307+
* The property used to group this price
3308+
*/
3309+
grouping_key?: string | null;
3310+
33063311
/**
33073312
* If true, the unit price will be prorated to the billing period
33083313
*/

0 commit comments

Comments
 (0)