diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index 7991f3354..ddf5ac544 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v1463 \ No newline at end of file +v1505 \ No newline at end of file diff --git a/lib/stripe/api_version.rb b/lib/stripe/api_version.rb index 464a06ef3..0f0b73b48 100644 --- a/lib/stripe/api_version.rb +++ b/lib/stripe/api_version.rb @@ -3,6 +3,6 @@ module Stripe module ApiVersion - CURRENT = "2025-01-27.acacia" + CURRENT = "2025-02-24.acacia" end end diff --git a/lib/stripe/resources/billing/meter_event_summary.rb b/lib/stripe/resources/billing/meter_event_summary.rb index 0fb71afd5..88017b478 100644 --- a/lib/stripe/resources/billing/meter_event_summary.rb +++ b/lib/stripe/resources/billing/meter_event_summary.rb @@ -5,6 +5,8 @@ module Stripe module Billing # A billing meter event summary represents an aggregated view of a customer's billing meter events within a specified timeframe. It indicates how much # usage was accrued by a customer for that period. + # + # Note: Meters events are aggregated asynchronously so the meter event summaries provide an eventually consistent view of the reported usage. class MeterEventSummary < APIResource OBJECT_NAME = "billing.meter_event_summary" def self.object_name diff --git a/lib/stripe/resources/tax_rate.rb b/lib/stripe/resources/tax_rate.rb index 75a370269..dc640b282 100644 --- a/lib/stripe/resources/tax_rate.rb +++ b/lib/stripe/resources/tax_rate.rb @@ -2,9 +2,9 @@ # frozen_string_literal: true module Stripe - # Tax rates can be applied to [invoices](https://stripe.com/docs/billing/invoices/tax-rates), [subscriptions](https://stripe.com/docs/billing/subscriptions/taxes) and [Checkout Sessions](https://stripe.com/docs/payments/checkout/set-up-a-subscription#tax-rates) to collect tax. + # Tax rates can be applied to [invoices](https://stripe.com/invoicing/taxes/tax-rates), [subscriptions](https://stripe.com/billing/taxes/tax-rates) and [Checkout Sessions](https://stripe.com/payments/checkout/use-manual-tax-rates) to collect tax. # - # Related guide: [Tax rates](https://stripe.com/docs/billing/taxes/tax-rates) + # Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates) class TaxRate < APIResource extend Stripe::APIOperations::Create extend Stripe::APIOperations::List