Skip to content

Commit

Permalink
Merge 3649e04 into d66abe7
Browse files Browse the repository at this point in the history
  • Loading branch information
stripe-openapi[bot] committed Apr 19, 2024
2 parents d66abe7 + 3649e04 commit 0083a1a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v972
v975
2 changes: 1 addition & 1 deletion types/InvoiceLineItems.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ declare module 'stripe' {
livemode: boolean;

/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Note that for line items with `type=subscription` this will reflect the metadata of the subscription that caused the line item to be created.
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Note that for line items with `type=subscription`, `metadata` reflects the current metadata from the subscription associated with the line item, unless the invoice line was directly updated with different metadata after creation.
*/
metadata: Stripe.Metadata;

Expand Down
2 changes: 1 addition & 1 deletion types/InvoicesResource.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5210,7 +5210,7 @@ declare module 'stripe' {
expand?: Array<string>;

/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`. For `type=recurring` line items, the incoming metadata specified on the request is directly used to set this value, in contrast to `type=invoiceitem` line items, where any existing metadata on the invoice line is merged with the incoming data.
*/
metadata?: Stripe.Emptyable<Stripe.MetadataParam>;

Expand Down
2 changes: 1 addition & 1 deletion types/PaymentMethodConfigurationsResource.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1947,7 +1947,7 @@ declare module 'stripe' {
}
}

interface PaymentMethodConfigurationListParams {
interface PaymentMethodConfigurationListParams extends PaginationParams {
/**
* The Connect application to filter by.
*/
Expand Down

0 comments on commit 0083a1a

Please sign in to comment.