Skip to content

Commit

Permalink
chore: rebuild project due to codegen change (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and Stainless Bot committed Nov 6, 2024
1 parent 309283d commit 2e7c9a5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 91
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/metronome%2Fmetronome-2364d37901fa069d859d9d2e0f75c0ef5453b38cb06e59d7f7cc7c185ec1f8c9.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/metronome%2Fmetronome-1ece9da1f76b3ebe5c45edca022b5b7086366502ec77f3076e083c9b501c841b.yml
40 changes: 30 additions & 10 deletions src/resources/contracts/products.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,17 @@ export interface ProductListItemState {
netsuite_overage_item_id?: string;

/**
* For USAGE products only. Groups usage line items on invoices.
* For USAGE products only. Groups usage line items on invoices. The superset of
* values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
presentation_group_key?: Array<string>;

/**
* For USAGE products only. If set, pricing for this product will be determined for
* each pricing_group_key value, as opposed to the product as a whole.
* each pricing_group_key value, as opposed to the product as a whole. The superset
* of values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
pricing_group_key?: Array<string>;

Expand Down Expand Up @@ -226,13 +230,17 @@ export namespace ProductRetrieveResponse {
netsuite_overage_item_id?: string;

/**
* For USAGE products only. Groups usage line items on invoices.
* For USAGE products only. Groups usage line items on invoices. The superset of
* values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
presentation_group_key?: Array<string>;

/**
* For USAGE products only. If set, pricing for this product will be determined for
* each pricing_group_key value, as opposed to the product as a whole.
* each pricing_group_key value, as opposed to the product as a whole. The superset
* of values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
pricing_group_key?: Array<string>;

Expand Down Expand Up @@ -311,13 +319,17 @@ export namespace ProductListResponse {
netsuite_overage_item_id?: string;

/**
* For USAGE products only. Groups usage line items on invoices.
* For USAGE products only. Groups usage line items on invoices. The superset of
* values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
presentation_group_key?: Array<string>;

/**
* For USAGE products only. If set, pricing for this product will be determined for
* each pricing_group_key value, as opposed to the product as a whole.
* each pricing_group_key value, as opposed to the product as a whole. The superset
* of values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
pricing_group_key?: Array<string>;

Expand Down Expand Up @@ -396,13 +408,17 @@ export interface ProductCreateParams {
netsuite_overage_item_id?: string;

/**
* For USAGE products only. Groups usage line items on invoices.
* For USAGE products only. Groups usage line items on invoices. The superset of
* values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
presentation_group_key?: Array<string>;

/**
* For USAGE products only. If set, pricing for this product will be determined for
* each pricing_group_key value, as opposed to the product as a whole.
* each pricing_group_key value, as opposed to the product as a whole. The superset
* of values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
pricing_group_key?: Array<string>;

Expand Down Expand Up @@ -493,13 +509,17 @@ export interface ProductUpdateParams {
netsuite_overage_item_id?: string;

/**
* For USAGE products only. Groups usage line items on invoices.
* For USAGE products only. Groups usage line items on invoices. The superset of
* values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
presentation_group_key?: Array<string>;

/**
* For USAGE products only. If set, pricing for this product will be determined for
* each pricing_group_key value, as opposed to the product as a whole.
* each pricing_group_key value, as opposed to the product as a whole. The superset
* of values in the pricing group key and presentation group key must be set as one
* compound group key on the billable metric.
*/
pricing_group_key?: Array<string>;

Expand Down

0 comments on commit 2e7c9a5

Please sign in to comment.