stripe 15.3.0.pre.beta.1 → 15.3.0.pre.beta.2
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 +3 -0
- data/VERSION +1 -1
- data/lib/stripe/resources/v2/payments/off_session_payment.rb +0 -2
- data/lib/stripe/version.rb +1 -1
- data/rbi/stripe.rbi +3 -6
- 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: 67e878335096c3c4878ba6697d94c42e1f744f312537561c2de082e0359ea77e
|
4
|
+
data.tar.gz: f97f1582d8bdd8eea0863e84636ab755bdfe06f561ff07a3684a0776048a4272
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e19f0280bf1dfb402d882ec35ea189c9586c3f534d50fa9b014e1648333393ca580df6e695295a2f0a2342f4e35aa45bf080eb62dd225e30084d91a43e7a73a
|
7
|
+
data.tar.gz: 7633d1e98250c6cc0154d6b2b66088eae1aeb6edd01494b20d9e274400879afe18a3fa60165c45291cbd4a69673f8656834882e1e321e20729531bc91976fb2d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 15.3.0-beta.2 - 2025-06-26
|
4
|
+
* [#1623](https://github.com/stripe/stripe-ruby/pull/1623) Pull in OffSessionPayment changes for the May release
|
5
|
+
|
3
6
|
## 15.3.0-beta.1 - 2025-05-29
|
4
7
|
This release changes the pinned API version to `2025-05-28.preview`.
|
5
8
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
15.3.0-beta.
|
1
|
+
15.3.0-beta.2
|
@@ -26,8 +26,6 @@ module Stripe
|
|
26
26
|
end
|
27
27
|
# The amount you requested to be collected on the OSP upon creation.
|
28
28
|
attr_reader :amount_requested
|
29
|
-
# Number of authorization attempts.
|
30
|
-
attr_reader :attempts
|
31
29
|
# The frequency of the underlying payment that this OSP represents.
|
32
30
|
attr_reader :cadence
|
33
31
|
# ID of owning compartment.
|
data/lib/stripe/version.rb
CHANGED
data/rbi/stripe.rbi
CHANGED
@@ -3270,7 +3270,7 @@ module Stripe
|
|
3270
3270
|
end
|
3271
3271
|
class TransferData < Stripe::StripeObject
|
3272
3272
|
# Amount in minor units that you want to transfer.
|
3273
|
-
sig { returns(Integer) }
|
3273
|
+
sig { returns(T.nilable(Integer)) }
|
3274
3274
|
attr_reader :amount
|
3275
3275
|
# ID of the connected account where you want money to go.
|
3276
3276
|
sig { returns(String) }
|
@@ -3279,9 +3279,6 @@ module Stripe
|
|
3279
3279
|
# The amount you requested to be collected on the OSP upon creation.
|
3280
3280
|
sig { returns(Stripe::V2::Amount) }
|
3281
3281
|
attr_reader :amount_requested
|
3282
|
-
# Number of authorization attempts.
|
3283
|
-
sig { returns(Integer) }
|
3284
|
-
attr_reader :attempts
|
3285
3282
|
# The frequency of the underlying payment that this OSP represents.
|
3286
3283
|
sig { returns(String) }
|
3287
3284
|
attr_reader :cadence
|
@@ -191540,12 +191537,12 @@ module Stripe
|
|
191540
191537
|
end
|
191541
191538
|
class TransferData < Stripe::RequestParams
|
191542
191539
|
# Amount in minor units that you want to transfer.
|
191543
|
-
sig { returns(Integer) }
|
191540
|
+
sig { returns(T.nilable(Integer)) }
|
191544
191541
|
attr_accessor :amount
|
191545
191542
|
# ID of the connected account where you want money to go.
|
191546
191543
|
sig { returns(String) }
|
191547
191544
|
attr_accessor :destination
|
191548
|
-
sig { params(amount: Integer, destination: String).void }
|
191545
|
+
sig { params(amount: T.nilable(Integer), destination: String).void }
|
191549
191546
|
def initialize(amount: nil, destination: nil); end
|
191550
191547
|
end
|
191551
191548
|
# Amount you want to collect.
|
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: 15.3.0.pre.beta.
|
4
|
+
version: 15.3.0.pre.beta.2
|
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-06-26 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.
|