Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rebuild project due to codegen change #130

Merged
merged 1 commit into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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