stripe 13.4.1 → 13.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/OPENAPI_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/stripe/api_version.rb +1 -1
- data/lib/stripe/resources/billing/meter_event_summary.rb +2 -0
- data/lib/stripe/resources/invoice_line_item.rb +1 -1
- data/lib/stripe/resources/tax_rate.rb +2 -2
- data/lib/stripe/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 928062945af6605fafe312cf05d06a64fe7fb636f41f02ff6f816af0449dbe1a
|
4
|
+
data.tar.gz: 7fccabdb8857bbdb1728f594c277fc4afdc5be8d44edc5eeac944ccac4cb53d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80c16055d8f85a1ffe0ed6f41e6082205d672886aa23b7a9f184ca9609ea4cd09855528bcc4341ad7360306bc82c18d2d364e91e7e4081d4cf848b553a0aed07
|
7
|
+
data.tar.gz: abb2d60a2c14b95b1815dfd986310f7d75d663c9c339ad32a9b30e5273cba832a364911b2b248f82f9a851a01cef2622ddaea658926ddf3f1241d93d2dc68b1c
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
# Changelog
|
2
|
+
## 13.5.0 - 2025-02-24
|
3
|
+
* [#1534](https://github.com/stripe/stripe-ruby/pull/1534) Update generated code
|
4
|
+
* Fixed `Stripe::InvoiceLineItem.update` method.
|
5
|
+
* [#1536](https://github.com/stripe/stripe-ruby/pull/1536) Fix InvoiceLineItem parent class
|
6
|
+
* Fix bug where `Stripe::InvoiceLineItem` had the incorrect parent class, making it error when `update` was called
|
7
|
+
* [#1533](https://github.com/stripe/stripe-ruby/pull/1533) add codeowners file
|
8
|
+
|
2
9
|
## 13.4.1 - 2025-01-28
|
3
10
|
* [#1528](https://github.com/stripe/stripe-ruby/pull/1528) Update generated code
|
4
11
|
* ⚠️ Bugfix: `invoice` and `line_item_id` can be passed to `update` method in `InvoiceLineItem`.
|
data/OPENAPI_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
v1505
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
13.
|
1
|
+
13.5.0
|
data/lib/stripe/api_version.rb
CHANGED
@@ -5,6 +5,8 @@ module Stripe
|
|
5
5
|
module Billing
|
6
6
|
# A billing meter event summary represents an aggregated view of a customer's billing meter events within a specified timeframe. It indicates how much
|
7
7
|
# usage was accrued by a customer for that period.
|
8
|
+
#
|
9
|
+
# Note: Meters events are aggregated asynchronously so the meter event summaries provide an eventually consistent view of the reported usage.
|
8
10
|
class MeterEventSummary < APIResource
|
9
11
|
OBJECT_NAME = "billing.meter_event_summary"
|
10
12
|
def self.object_name
|
@@ -5,7 +5,7 @@ module Stripe
|
|
5
5
|
# Invoice Line Items represent the individual lines within an [invoice](https://stripe.com/docs/api/invoices) and only exist within the context of an invoice.
|
6
6
|
#
|
7
7
|
# Each line item is backed by either an [invoice item](https://stripe.com/docs/api/invoiceitems) or a [subscription item](https://stripe.com/docs/api/subscription_items).
|
8
|
-
class InvoiceLineItem <
|
8
|
+
class InvoiceLineItem < APIResource
|
9
9
|
include Stripe::APIOperations::Save
|
10
10
|
|
11
11
|
OBJECT_NAME = "line_item"
|
@@ -2,9 +2,9 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
module Stripe
|
5
|
-
# Tax rates can be applied to [invoices](https://stripe.com/
|
5
|
+
# 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.
|
6
6
|
#
|
7
|
-
# Related guide: [Tax rates](https://stripe.com/
|
7
|
+
# Related guide: [Tax rates](https://stripe.com/billing/taxes/tax-rates)
|
8
8
|
class TaxRate < APIResource
|
9
9
|
extend Stripe::APIOperations::Create
|
10
10
|
extend Stripe::APIOperations::List
|
data/lib/stripe/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.
|
4
|
+
version: 13.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Stripe is the easiest way to accept payments online. See https://stripe.com
|
14
14
|
for details.
|