stripe 7.2.0.pre.beta.5 → 8.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90a9a38af2438b7096201abb95f442a55f7ee0f6457f5f0857e431b96cda2479
4
- data.tar.gz: 83cff37747a7e7de622b94388a5678440ebb6c749b89b04834b913e9adc5fe7d
3
+ metadata.gz: 6dccdd56e293fe589e24cbe9dfaa4a4dec846e6693725f695e023c731c29a9a1
4
+ data.tar.gz: 899abdb8f1449712fbf30bab8b615819e853500d7df10b5830dd29ea652bed63
5
5
  SHA512:
6
- metadata.gz: eba51a2bc119fe1bfa4f80d3d2891c56eba29bb88300fa6a5c817556272588c8f97328e15ce6fd4ac1fdd40756bbc618c457979de178e63bdaeb5f06645fc32a
7
- data.tar.gz: 107e710bd5018c51f2c53c14c4cc36b13f50b0b9d639524259503e2970a297fb49d37d185fdf866012fbba7c469393a1279f6a281b30d54bac6c2d0ab93c8b02
6
+ metadata.gz: ccc38cdd75c55a8af558550fbaa37adef6e3802ce3b2399e0c5d8c883eefcbbbc0ef356d4d905006eb6f26459c8a276225c180938e5f007c7b247cc938e1842f
7
+ data.tar.gz: b8d4252feb4c72fbd1f4a6a049604d2731b66f8f1400fcae9c9093b018c5d6bce7417bec009b2609f109ff8fca301c6ef5d6e81d37ddff7cc817678dfb3342ed
data/CHANGELOG.md CHANGED
@@ -1,28 +1,36 @@
1
1
  # Changelog
2
2
 
3
- ## 7.2.0-beta.5 - 2022-11-02
4
- * [#1139](https://github.com/stripe/stripe-ruby/pull/1139) API Updates for beta branch
5
- * Updated beta APIs to the latest stable version
6
- * [#1135](https://github.com/stripe/stripe-ruby/pull/1135) API Updates for beta branch
7
- * Updated stable APIs to the latest version
8
-
9
- ## 7.2.0-beta.4 - 2022-10-07
10
- * [#999](https://github.com/stripe/stripe-ruby/pull/999) DESCRIBE CHANGES HERE (try to use the same style, tense, etc. as the other entries)
11
-
12
- ## 7.2.0-beta.3 - 2022-09-26
13
- * [#1129](https://github.com/stripe/stripe-ruby/pull/1129) API Updates for beta branch
14
- * Updated stable APIs to the latest version
15
- * Add `FinancingOffer`, `FinancingSummary` and `FinancingTransaction` resources.
16
-
17
- ## 7.2.0-beta.2 - 2022-08-26
18
- * [#1127](https://github.com/stripe/stripe-ruby/pull/1127) API Updates for beta branch
19
- * Updated stable APIs to the latest version
20
- * Add support for the beta [Gift Card API](https://stripe.com/docs/gift-cards).
21
-
22
- ## 7.2.0-beta.1 - 2022-08-23
23
- * [#1122](https://github.com/stripe/stripe-ruby/pull/1122) API Updates for beta branch
24
- - Updated stable APIs to the latest version
25
- - `Stripe-Version` beta headers are not pinned by-default and need to be manually specified, please refer to [beta SDKs README section](https://github.com/stripe/stripe-ruby/blob/master/README.md#beta-sdks)
3
+ ## 8.0.0 - 2022-11-16
4
+ * [#1144](https://github.com/stripe/stripe-ruby/pull/1144) Next major release changes
5
+
6
+ Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-11-15.
7
+
8
+ "⚠️" symbol highlights breaking changes.
9
+
10
+ ### Deprecated
11
+ - The `save` method is deprecated. Prefer the static `update` method that doesn't require retrieval of the resource to update it.
12
+ ``` ruby
13
+ # before
14
+ refund = Stripe::Refund.retrieve("re_123")
15
+ refund.description = "Refund description"
16
+ refund.save
17
+
18
+ # after
19
+ Stripe::Refund.update("re_123", description: "Refund description")
20
+ ```
21
+
22
+ ### ⚠️ Removed
23
+ - Removed deprecated `Sku` resource.
24
+ - Removed deprecated `Orders` resource.
25
+ - Removed deprecated `delete` method on `Subscription` resource. Please use `cancel` method instead.
26
+ ```ruby
27
+ # before
28
+ Stripe::Subscription::delete("sub_12345")
29
+
30
+ # after
31
+ Stripe::Subscription::cancel("sub_12345")
32
+ ```
33
+
26
34
 
27
35
  ## 7.1.0 - 2022-08-19
28
36
  * [#1116](https://github.com/stripe/stripe-ruby/pull/1116) API Updates
@@ -31,16 +39,6 @@
31
39
  * [#1117](https://github.com/stripe/stripe-ruby/pull/1117) Refresh rubocop config.
32
40
  * [#1115](https://github.com/stripe/stripe-ruby/pull/1115) Add a support section to the readme
33
41
 
34
- ## 7.1.0-beta.2 - 2022-08-11
35
- * [#1113](https://github.com/stripe/stripe-ruby/pull/1113) API Updates for beta branch
36
- - Updated stable APIs to the latest version
37
- - Add `refund_payment` method to Terminal resource
38
-
39
- ## 7.1.0-beta.1 - 2022-08-03
40
- * [#1107](https://github.com/stripe/stripe-ruby/pull/1107) API Updates for beta branch
41
- - Updated stable APIs to the latest version
42
- - Added the `Order` resource support
43
-
44
42
  ## 7.0.0 - 2022-08-02
45
43
 
46
44
  Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the SDK, read more detailed description at https://github.com/stripe/stripe-ruby/wiki/Migration-guide-for-v7. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-08-01.
@@ -52,19 +50,21 @@ Breaking changes that arose during code generation of the library that we postpo
52
50
  * [#1090](https://github.com/stripe/stripe-ruby/pull/1090) Use auto-generation for `Invoice` methods
53
51
  * [#1103](https://github.com/stripe/stripe-ruby/pull/1103) Next major release changes
54
52
 
55
- ## 6.6.0-beta.1 - 2022-07-22
56
- * [#1100](https://github.com/stripe/stripe-ruby/pull/1100) API Updates for beta branch
57
- - Updated stable APIs to the latest version
58
- - Add `QuotePhase` resource
59
- * [#1097](https://github.com/stripe/stripe-ruby/pull/1097) API Updates for beta branch
60
- - Updated stable APIs to the latest version
61
- - Add `SubscriptionSchedule.amend` method.
62
- * [#1093](https://github.com/stripe/stripe-ruby/pull/1093) API Updates for beta branch
63
- - Include `server_side_confirmation_beta=v1` beta
64
- - Add `secretKeyConfirmation` to `PaymentIntent`
65
- * [#1085](https://github.com/stripe/stripe-ruby/pull/1085) API Updates for beta branch
66
- - Updated stable APIs to the latest version
67
- * [#1075](https://github.com/stripe/stripe-ruby/pull/1075) Use the generated API version
53
+ ### ⚠️ Changed
54
+ * `retrieve_cash_balance` and `update_cash_balance` methods on `Customer` resource no longer requires the second argument to always be `nil`. The methods now now take in `customer_id`, `params`, and `opts` parameters.
55
+ * Update default bundle of CA certificates to April 26, 2022.
56
+
57
+ ### Deprecated
58
+ * Deprecate `delete` method on `Subscription` resource. Please use `cancel` method instead.
59
+
60
+ ### ⚠️ Removed
61
+ * Remove `details` method from `Issuing.Card` resource. The method was not supported.
62
+ * Remove `Issuing.CardDetails` resource. Read more at https://stripe.com/docs/issuing/cards/virtual.
63
+ * Remove `create` method from `ReportType` resource. The method was not supported.
64
+ * Remove `usage_record_summaries` method from `SubscriptionItem` resource. Please use `list_usage_record_summaries` method instead.
65
+ * Remove `AlipayAccount`, `BitcoinReceiver`, `BitcoinTransaction`, `Issuing::CardDetails`, `Recipient`, ` RecipientTransfer`, and `ThreeDSecure` resources. The resources were deprecated or no longer in use.
66
+ * Remove ability to list `Card` resource for a `Recipient`.
67
+ * Remove `cancel` method from `Transfer` resource. The method was deprecated.
68
68
 
69
69
  ## 6.5.0 - 2022-06-29
70
70
  * [#1084](https://github.com/stripe/stripe-ruby/pull/1084) API Updates
@@ -94,6 +94,8 @@ Breaking changes that arose during code generation of the library that we postpo
94
94
  * Add support for new resources `Treasury.CreditReversal`, `Treasury.DebitReversal`, `Treasury.FinancialAccountFeatures`, `Treasury.FinancialAccount`, `Treasury.FlowDetails`, `Treasury.InboundTransfer`, `Treasury.OutboundPayment`, `Treasury.OutboundTransfer`, `Treasury.ReceivedCredit`, `Treasury.ReceivedDebit`, `Treasury.TransactionEntry`, and `Treasury.Transaction`
95
95
  * Add support for `retrieve_payment_method` method on resource `Customer`
96
96
  * Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account`
97
+
98
+
97
99
 
98
100
  ## 6.0.0 - 2022-05-09
99
101
  * [#1056](https://github.com/stripe/stripe-ruby/pull/1056) API Updates
@@ -109,6 +111,7 @@ Breaking changes that arose during code generation of the library that we postpo
109
111
  ## 5.55.0 - 2022-05-05
110
112
  * [#1055](https://github.com/stripe/stripe-ruby/pull/1055) API Updates
111
113
  * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`
114
+
112
115
 
113
116
  ## 5.54.0 - 2022-05-03
114
117
  * [#1053](https://github.com/stripe/stripe-ruby/pull/1053) API Updates
@@ -1139,4 +1142,3 @@ Identical to 1.56.0 above. I incorrectly cut a patch-level release.
1139
1142
  <!--
1140
1143
  # vim: set tw=0:
1141
1144
  -->
1142
-
data/OPENAPI_VERSION CHANGED
@@ -1 +1 @@
1
- v205
1
+ v204
data/VERSION CHANGED
@@ -1 +1 @@
1
- 7.2.0-beta.5
1
+ 8.0.0
@@ -33,6 +33,9 @@ module Stripe
33
33
  end
34
34
  end
35
35
 
36
+ # The `save` method is DEPRECATED and will be removed in a future major
37
+ # version of the library. Use the `update` method on the resource instead.
38
+ #
36
39
  # Creates or updates an API resource.
37
40
  #
38
41
  # If the resource doesn't yet have an assigned ID and the resource is one
@@ -68,6 +71,8 @@ module Stripe
68
71
  resp, opts = execute_resource_request(:post, save_url, values, opts)
69
72
  initialize_from(resp.data, opts)
70
73
  end
74
+ extend Gem::Deprecate
75
+ deprecate :save, :update, 2022, 11
71
76
 
72
77
  def self.included(base)
73
78
  # Set `metadata` as additive so that when it's set directly we remember
@@ -3,6 +3,6 @@
3
3
 
4
4
  module Stripe
5
5
  module ApiVersion
6
- CURRENT = "2022-08-01"
6
+ CURRENT = "2022-11-15"
7
7
  end
8
8
  end
@@ -14,7 +14,6 @@ module Stripe
14
14
  # business objects
15
15
  Account::OBJECT_NAME => Account,
16
16
  AccountLink::OBJECT_NAME => AccountLink,
17
- AccountSession::OBJECT_NAME => AccountSession,
18
17
  ApplePayDomain::OBJECT_NAME => ApplePayDomain,
19
18
  ApplicationFee::OBJECT_NAME => ApplicationFee,
20
19
  ApplicationFeeRefund::OBJECT_NAME => ApplicationFeeRefund,
@@ -25,9 +24,6 @@ module Stripe
25
24
  BillingPortal::Configuration::OBJECT_NAME => BillingPortal::Configuration,
26
25
  BillingPortal::Session::OBJECT_NAME => BillingPortal::Session,
27
26
  Capability::OBJECT_NAME => Capability,
28
- Capital::FinancingOffer::OBJECT_NAME => Capital::FinancingOffer,
29
- Capital::FinancingSummary::OBJECT_NAME => Capital::FinancingSummary,
30
- Capital::FinancingTransaction::OBJECT_NAME => Capital::FinancingTransaction,
31
27
  Card::OBJECT_NAME => Card,
32
28
  CashBalance::OBJECT_NAME => CashBalance,
33
29
  Charge::OBJECT_NAME => Charge,
@@ -53,8 +49,6 @@ module Stripe
53
49
  FinancialConnections::AccountOwnership,
54
50
  FinancialConnections::Session::OBJECT_NAME => FinancialConnections::Session,
55
51
  FundingInstructions::OBJECT_NAME => FundingInstructions,
56
- GiftCards::Card::OBJECT_NAME => GiftCards::Card,
57
- GiftCards::Transaction::OBJECT_NAME => GiftCards::Transaction,
58
52
  Identity::VerificationReport::OBJECT_NAME => Identity::VerificationReport,
59
53
  Identity::VerificationSession::OBJECT_NAME => Identity::VerificationSession,
60
54
  Invoice::OBJECT_NAME => Invoice,
@@ -68,7 +62,6 @@ module Stripe
68
62
  LineItem::OBJECT_NAME => LineItem,
69
63
  LoginLink::OBJECT_NAME => LoginLink,
70
64
  Mandate::OBJECT_NAME => Mandate,
71
- Order::OBJECT_NAME => Order,
72
65
  PaymentIntent::OBJECT_NAME => PaymentIntent,
73
66
  PaymentLink::OBJECT_NAME => PaymentLink,
74
67
  PaymentMethod::OBJECT_NAME => PaymentMethod,
@@ -79,7 +72,6 @@ module Stripe
79
72
  Product::OBJECT_NAME => Product,
80
73
  PromotionCode::OBJECT_NAME => PromotionCode,
81
74
  Quote::OBJECT_NAME => Quote,
82
- QuotePhase::OBJECT_NAME => QuotePhase,
83
75
  Radar::EarlyFraudWarning::OBJECT_NAME => Radar::EarlyFraudWarning,
84
76
  Radar::ValueList::OBJECT_NAME => Radar::ValueList,
85
77
  Radar::ValueListItem::OBJECT_NAME => Radar::ValueListItem,
@@ -92,7 +84,6 @@ module Stripe
92
84
  SetupIntent::OBJECT_NAME => SetupIntent,
93
85
  ShippingRate::OBJECT_NAME => ShippingRate,
94
86
  Sigma::ScheduledQueryRun::OBJECT_NAME => Sigma::ScheduledQueryRun,
95
- SKU::OBJECT_NAME => SKU,
96
87
  Source::OBJECT_NAME => Source,
97
88
  SourceTransaction::OBJECT_NAME => SourceTransaction,
98
89
  Subscription::OBJECT_NAME => Subscription,
@@ -6,10 +6,6 @@ module Stripe
6
6
  # but not yet refunded. Funds will be refunded to the credit or debit card that
7
7
  # was originally charged.
8
8
  #
9
- # Stripe Tax users with recurring payments and invoices can create [Credit Notes](https://stripe.com/docs/api/credit_notes),
10
- # which reduce overall tax liability because tax is correctly recalculated and
11
- # apportioned to the related invoice.
12
- #
13
9
  # Related guide: [Refunds](https://stripe.com/docs/refunds).
14
10
  class Refund < APIResource
15
11
  extend Stripe::APIOperations::Create
@@ -50,31 +50,6 @@ module Stripe
50
50
  end
51
51
 
52
52
  save_nested_resource :source
53
- def delete(params = {}, opts = {})
54
- request_stripe_object(
55
- method: :delete,
56
- path: format("/v1/subscriptions/%<subscription_exposed_id>s", { subscription_exposed_id: CGI.escape(self["id"]) }),
57
- params: params,
58
- opts: opts
59
- )
60
- end
61
-
62
- def self.delete(subscription_exposed_id, params = {}, opts = {})
63
- request_stripe_object(
64
- method: :delete,
65
- path: format("/v1/subscriptions/%<subscription_exposed_id>s", { subscription_exposed_id: CGI.escape(subscription_exposed_id) }),
66
- params: params,
67
- opts: opts
68
- )
69
- end
70
-
71
- extend Gem::Deprecate
72
- deprecate :delete, "Stripe::Subscription.cancel", 2022, 7
73
-
74
- class << self
75
- extend Gem::Deprecate
76
- deprecate :delete, "Stripe::Subscription#cancel", 2022, 7
77
- end
78
53
 
79
54
  def self.search(params = {}, opts = {})
80
55
  _search("/v1/subscriptions/search", params, opts)
@@ -12,15 +12,6 @@ module Stripe
12
12
 
13
13
  OBJECT_NAME = "subscription_schedule"
14
14
 
15
- def amend(params = {}, opts = {})
16
- request_stripe_object(
17
- method: :post,
18
- path: format("/v1/subscription_schedules/%<schedule>s/amend", { schedule: CGI.escape(self["id"]) }),
19
- params: params,
20
- opts: opts
21
- )
22
- end
23
-
24
15
  def cancel(params = {}, opts = {})
25
16
  request_stripe_object(
26
17
  method: :post,
@@ -39,15 +30,6 @@ module Stripe
39
30
  )
40
31
  end
41
32
 
42
- def self.amend(schedule, params = {}, opts = {})
43
- request_stripe_object(
44
- method: :post,
45
- path: format("/v1/subscription_schedules/%<schedule>s/amend", { schedule: CGI.escape(schedule) }),
46
- params: params,
47
- opts: opts
48
- )
49
- end
50
-
51
33
  def self.cancel(schedule, params = {}, opts = {})
52
34
  request_stripe_object(
53
35
  method: :post,
@@ -41,15 +41,6 @@ module Stripe
41
41
  )
42
42
  end
43
43
 
44
- def refund_payment(params = {}, opts = {})
45
- request_stripe_object(
46
- method: :post,
47
- path: format("/v1/terminal/readers/%<reader>s/refund_payment", { reader: CGI.escape(self["id"]) }),
48
- params: params,
49
- opts: opts
50
- )
51
- end
52
-
53
44
  def set_reader_display(params = {}, opts = {})
54
45
  request_stripe_object(
55
46
  method: :post,
@@ -86,15 +77,6 @@ module Stripe
86
77
  )
87
78
  end
88
79
 
89
- def self.refund_payment(reader, params = {}, opts = {})
90
- request_stripe_object(
91
- method: :post,
92
- path: format("/v1/terminal/readers/%<reader>s/refund_payment", { reader: CGI.escape(reader) }),
93
- params: params,
94
- opts: opts
95
- )
96
- end
97
-
98
80
  def self.set_reader_display(reader, params = {}, opts = {})
99
81
  request_stripe_object(
100
82
  method: :post,
@@ -3,7 +3,6 @@
3
3
 
4
4
  require "stripe/resources/account"
5
5
  require "stripe/resources/account_link"
6
- require "stripe/resources/account_session"
7
6
  require "stripe/resources/apple_pay_domain"
8
7
  require "stripe/resources/application_fee"
9
8
  require "stripe/resources/application_fee_refund"
@@ -14,9 +13,6 @@ require "stripe/resources/bank_account"
14
13
  require "stripe/resources/billing_portal/configuration"
15
14
  require "stripe/resources/billing_portal/session"
16
15
  require "stripe/resources/capability"
17
- require "stripe/resources/capital/financing_offer"
18
- require "stripe/resources/capital/financing_summary"
19
- require "stripe/resources/capital/financing_transaction"
20
16
  require "stripe/resources/card"
21
17
  require "stripe/resources/cash_balance"
22
18
  require "stripe/resources/charge"
@@ -40,8 +36,6 @@ require "stripe/resources/financial_connections/account_owner"
40
36
  require "stripe/resources/financial_connections/account_ownership"
41
37
  require "stripe/resources/financial_connections/session"
42
38
  require "stripe/resources/funding_instructions"
43
- require "stripe/resources/gift_cards/card"
44
- require "stripe/resources/gift_cards/transaction"
45
39
  require "stripe/resources/identity/verification_report"
46
40
  require "stripe/resources/identity/verification_session"
47
41
  require "stripe/resources/invoice"
@@ -55,7 +49,6 @@ require "stripe/resources/issuing/transaction"
55
49
  require "stripe/resources/line_item"
56
50
  require "stripe/resources/login_link"
57
51
  require "stripe/resources/mandate"
58
- require "stripe/resources/order"
59
52
  require "stripe/resources/payment_intent"
60
53
  require "stripe/resources/payment_link"
61
54
  require "stripe/resources/payment_method"
@@ -66,7 +59,6 @@ require "stripe/resources/price"
66
59
  require "stripe/resources/product"
67
60
  require "stripe/resources/promotion_code"
68
61
  require "stripe/resources/quote"
69
- require "stripe/resources/quote_phase"
70
62
  require "stripe/resources/radar/early_fraud_warning"
71
63
  require "stripe/resources/radar/value_list"
72
64
  require "stripe/resources/radar/value_list_item"
@@ -79,7 +71,6 @@ require "stripe/resources/setup_attempt"
79
71
  require "stripe/resources/setup_intent"
80
72
  require "stripe/resources/shipping_rate"
81
73
  require "stripe/resources/sigma/scheduled_query_run"
82
- require "stripe/resources/sku"
83
74
  require "stripe/resources/source"
84
75
  require "stripe/resources/source_transaction"
85
76
  require "stripe/resources/subscription"
@@ -63,8 +63,6 @@ module Stripe
63
63
  end
64
64
 
65
65
  def initialize
66
- @api_version = ApiVersion::CURRENT
67
-
68
66
  @ca_bundle_path = Stripe::DEFAULT_CA_BUNDLE_PATH
69
67
  @enable_telemetry = true
70
68
  @verify_ssl_certs = true
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "7.2.0-beta.5"
4
+ VERSION = "8.0.0"
5
5
  end
data/lib/stripe.rb CHANGED
@@ -15,7 +15,6 @@ require "uri"
15
15
  require "forwardable"
16
16
 
17
17
  # Version
18
- require "stripe/api_version"
19
18
  require "stripe/version"
20
19
 
21
20
  # API operations
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: 7.2.0.pre.beta.5
4
+ version: 8.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-02 00:00:00.000000000 Z
11
+ date: 2022-11-16 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.
@@ -53,7 +53,6 @@ files:
53
53
  - lib/stripe/resources.rb
54
54
  - lib/stripe/resources/account.rb
55
55
  - lib/stripe/resources/account_link.rb
56
- - lib/stripe/resources/account_session.rb
57
56
  - lib/stripe/resources/alipay_account.rb
58
57
  - lib/stripe/resources/apple_pay_domain.rb
59
58
  - lib/stripe/resources/application_fee.rb
@@ -65,9 +64,6 @@ files:
65
64
  - lib/stripe/resources/billing_portal/configuration.rb
66
65
  - lib/stripe/resources/billing_portal/session.rb
67
66
  - lib/stripe/resources/capability.rb
68
- - lib/stripe/resources/capital/financing_offer.rb
69
- - lib/stripe/resources/capital/financing_summary.rb
70
- - lib/stripe/resources/capital/financing_transaction.rb
71
67
  - lib/stripe/resources/card.rb
72
68
  - lib/stripe/resources/cash_balance.rb
73
69
  - lib/stripe/resources/charge.rb
@@ -91,8 +87,6 @@ files:
91
87
  - lib/stripe/resources/financial_connections/account_ownership.rb
92
88
  - lib/stripe/resources/financial_connections/session.rb
93
89
  - lib/stripe/resources/funding_instructions.rb
94
- - lib/stripe/resources/gift_cards/card.rb
95
- - lib/stripe/resources/gift_cards/transaction.rb
96
90
  - lib/stripe/resources/identity/verification_report.rb
97
91
  - lib/stripe/resources/identity/verification_session.rb
98
92
  - lib/stripe/resources/invoice.rb
@@ -106,7 +100,6 @@ files:
106
100
  - lib/stripe/resources/line_item.rb
107
101
  - lib/stripe/resources/login_link.rb
108
102
  - lib/stripe/resources/mandate.rb
109
- - lib/stripe/resources/order.rb
110
103
  - lib/stripe/resources/payment_intent.rb
111
104
  - lib/stripe/resources/payment_link.rb
112
105
  - lib/stripe/resources/payment_method.rb
@@ -117,7 +110,6 @@ files:
117
110
  - lib/stripe/resources/product.rb
118
111
  - lib/stripe/resources/promotion_code.rb
119
112
  - lib/stripe/resources/quote.rb
120
- - lib/stripe/resources/quote_phase.rb
121
113
  - lib/stripe/resources/radar/early_fraud_warning.rb
122
114
  - lib/stripe/resources/radar/value_list.rb
123
115
  - lib/stripe/resources/radar/value_list_item.rb
@@ -131,7 +123,6 @@ files:
131
123
  - lib/stripe/resources/setup_intent.rb
132
124
  - lib/stripe/resources/shipping_rate.rb
133
125
  - lib/stripe/resources/sigma/scheduled_query_run.rb
134
- - lib/stripe/resources/sku.rb
135
126
  - lib/stripe/resources/source.rb
136
127
  - lib/stripe/resources/source_transaction.rb
137
128
  - lib/stripe/resources/subscription.rb
@@ -192,9 +183,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
192
183
  version: 2.3.0
193
184
  required_rubygems_version: !ruby/object:Gem::Requirement
194
185
  requirements:
195
- - - ">"
186
+ - - ">="
196
187
  - !ruby/object:Gem::Version
197
- version: 1.3.1
188
+ version: '0'
198
189
  requirements: []
199
190
  rubygems_version: 3.3.7
200
191
  signing_key:
@@ -1,17 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- # An AccountSession allows a Connect platform to grant access to a connected account in Connect embedded UIs.
6
- #
7
- # We recommend that you create an AccountSession each time you need to display an embedded UI
8
- # to your user. Do not save AccountSessions to your database as they expire relatively
9
- # quickly, and cannot be used more than once.
10
- #
11
- # Related guide: [Connect embedded UIs](https://stripe.com/docs/connect/get-started-connect-embedded-uis).
12
- class AccountSession < APIResource
13
- extend Stripe::APIOperations::Create
14
-
15
- OBJECT_NAME = "account_session"
16
- end
17
- end
@@ -1,32 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- module Capital
6
- # This is an object representing an offer of financing from
7
- # Stripe Capital to a Connect subaccount.
8
- class FinancingOffer < APIResource
9
- extend Stripe::APIOperations::List
10
-
11
- OBJECT_NAME = "capital.financing_offer"
12
-
13
- def mark_delivered(params = {}, opts = {})
14
- request_stripe_object(
15
- method: :post,
16
- path: format("/v1/capital/financing_offers/%<financing_offer>s/mark_delivered", { financing_offer: CGI.escape(self["id"]) }),
17
- params: params,
18
- opts: opts
19
- )
20
- end
21
-
22
- def self.mark_delivered(financing_offer, params = {}, opts = {})
23
- request_stripe_object(
24
- method: :post,
25
- path: format("/v1/capital/financing_offers/%<financing_offer>s/mark_delivered", { financing_offer: CGI.escape(financing_offer) }),
26
- params: params,
27
- opts: opts
28
- )
29
- end
30
- end
31
- end
32
- end
@@ -1,12 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- module Capital
6
- # A financing object describes an account's current financing state. Used by Connect
7
- # platforms to read the state of Capital offered to their connected accounts.
8
- class FinancingSummary < SingletonAPIResource
9
- OBJECT_NAME = "capital.financing_summary"
10
- end
11
- end
12
- end
@@ -1,13 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- module Capital
6
- # This is an object representing the details of a transaction on a Capital financing object.
7
- class FinancingTransaction < APIResource
8
- extend Stripe::APIOperations::List
9
-
10
- OBJECT_NAME = "capital.financing_transaction"
11
- end
12
- end
13
- end
@@ -1,25 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- module GiftCards
6
- # A gift card represents a single gift card owned by a customer, including the
7
- # remaining balance, gift card code, and whether or not it is active.
8
- class Card < APIResource
9
- extend Stripe::APIOperations::Create
10
- extend Stripe::APIOperations::List
11
- include Stripe::APIOperations::Save
12
-
13
- OBJECT_NAME = "gift_cards.card"
14
-
15
- def self.validate(params = {}, opts = {})
16
- request_stripe_object(
17
- method: :post,
18
- path: "/v1/gift_cards/cards/validate",
19
- params: params,
20
- opts: opts
21
- )
22
- end
23
- end
24
- end
25
- end
@@ -1,56 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- module GiftCards
6
- # A gift card transaction represents a single transaction on a referenced gift card.
7
- # A transaction is in one of three states, `confirmed`, `held` or `canceled`. A `confirmed`
8
- # transaction is one that has added/deducted funds. A `held` transaction has created a
9
- # temporary hold on funds, which can then be cancelled or confirmed. A `held` transaction
10
- # can be confirmed into a `confirmed` transaction, or canceled into a `canceled` transaction.
11
- # A `canceled` transaction has no effect on a gift card's balance.
12
- class Transaction < APIResource
13
- extend Stripe::APIOperations::Create
14
- extend Stripe::APIOperations::List
15
- include Stripe::APIOperations::Save
16
-
17
- OBJECT_NAME = "gift_cards.transaction"
18
-
19
- def cancel(params = {}, opts = {})
20
- request_stripe_object(
21
- method: :post,
22
- path: format("/v1/gift_cards/transactions/%<id>s/cancel", { id: CGI.escape(self["id"]) }),
23
- params: params,
24
- opts: opts
25
- )
26
- end
27
-
28
- def confirm(params = {}, opts = {})
29
- request_stripe_object(
30
- method: :post,
31
- path: format("/v1/gift_cards/transactions/%<id>s/confirm", { id: CGI.escape(self["id"]) }),
32
- params: params,
33
- opts: opts
34
- )
35
- end
36
-
37
- def self.cancel(id, params = {}, opts = {})
38
- request_stripe_object(
39
- method: :post,
40
- path: format("/v1/gift_cards/transactions/%<id>s/cancel", { id: CGI.escape(id) }),
41
- params: params,
42
- opts: opts
43
- )
44
- end
45
-
46
- def self.confirm(id, params = {}, opts = {})
47
- request_stripe_object(
48
- method: :post,
49
- path: format("/v1/gift_cards/transactions/%<id>s/confirm", { id: CGI.escape(id) }),
50
- params: params,
51
- opts: opts
52
- )
53
- end
54
- end
55
- end
56
- end
@@ -1,89 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- # An Order describes a purchase being made by a customer, including the
6
- # products & quantities being purchased, the order status, the payment information,
7
- # and the billing/shipping details.
8
- #
9
- # Related guide: [Orders overview](https://stripe.com/docs/orders)
10
- class Order < APIResource
11
- extend Stripe::APIOperations::Create
12
- extend Stripe::APIOperations::List
13
- include Stripe::APIOperations::Save
14
-
15
- OBJECT_NAME = "order"
16
-
17
- def cancel(params = {}, opts = {})
18
- request_stripe_object(
19
- method: :post,
20
- path: format("/v1/orders/%<id>s/cancel", { id: CGI.escape(self["id"]) }),
21
- params: params,
22
- opts: opts
23
- )
24
- end
25
-
26
- def list_line_items(params = {}, opts = {})
27
- request_stripe_object(
28
- method: :get,
29
- path: format("/v1/orders/%<id>s/line_items", { id: CGI.escape(self["id"]) }),
30
- params: params,
31
- opts: opts
32
- )
33
- end
34
-
35
- def reopen(params = {}, opts = {})
36
- request_stripe_object(
37
- method: :post,
38
- path: format("/v1/orders/%<id>s/reopen", { id: CGI.escape(self["id"]) }),
39
- params: params,
40
- opts: opts
41
- )
42
- end
43
-
44
- def submit(params = {}, opts = {})
45
- request_stripe_object(
46
- method: :post,
47
- path: format("/v1/orders/%<id>s/submit", { id: CGI.escape(self["id"]) }),
48
- params: params,
49
- opts: opts
50
- )
51
- end
52
-
53
- def self.cancel(id, params = {}, opts = {})
54
- request_stripe_object(
55
- method: :post,
56
- path: format("/v1/orders/%<id>s/cancel", { id: CGI.escape(id) }),
57
- params: params,
58
- opts: opts
59
- )
60
- end
61
-
62
- def self.list_line_items(id, params = {}, opts = {})
63
- request_stripe_object(
64
- method: :get,
65
- path: format("/v1/orders/%<id>s/line_items", { id: CGI.escape(id) }),
66
- params: params,
67
- opts: opts
68
- )
69
- end
70
-
71
- def self.reopen(id, params = {}, opts = {})
72
- request_stripe_object(
73
- method: :post,
74
- path: format("/v1/orders/%<id>s/reopen", { id: CGI.escape(id) }),
75
- params: params,
76
- opts: opts
77
- )
78
- end
79
-
80
- def self.submit(id, params = {}, opts = {})
81
- request_stripe_object(
82
- method: :post,
83
- path: format("/v1/orders/%<id>s/submit", { id: CGI.escape(id) }),
84
- params: params,
85
- opts: opts
86
- )
87
- end
88
- end
89
- end
@@ -1,29 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- # A quote phase describes the line items, coupons, and trialing status of a subscription for a predefined time period.
6
- class QuotePhase < APIResource
7
- extend Stripe::APIOperations::List
8
-
9
- OBJECT_NAME = "quote_phase"
10
-
11
- def list_line_items(params = {}, opts = {})
12
- request_stripe_object(
13
- method: :get,
14
- path: format("/v1/quote_phases/%<quote_phase>s/line_items", { quote_phase: CGI.escape(self["id"]) }),
15
- params: params,
16
- opts: opts
17
- )
18
- end
19
-
20
- def self.list_line_items(quote_phase, params = {}, opts = {})
21
- request_stripe_object(
22
- method: :get,
23
- path: format("/v1/quote_phases/%<quote_phase>s/line_items", { quote_phase: CGI.escape(quote_phase) }),
24
- params: params,
25
- opts: opts
26
- )
27
- end
28
- end
29
- end
@@ -1,19 +0,0 @@
1
- # File generated from our OpenAPI spec
2
- # frozen_string_literal: true
3
-
4
- module Stripe
5
- # Stores representations of [stock keeping units](http://en.wikipedia.org/wiki/Stock_keeping_unit).
6
- # SKUs describe specific product variations, taking into account any combination of: attributes,
7
- # currency, and cost. For example, a product may be a T-shirt, whereas a specific SKU represents
8
- # the `size: large`, `color: red` version of that shirt.
9
- #
10
- # Can also be used to manage inventory.
11
- class SKU < APIResource
12
- extend Stripe::APIOperations::Create
13
- include Stripe::APIOperations::Delete
14
- extend Stripe::APIOperations::List
15
- include Stripe::APIOperations::Save
16
-
17
- OBJECT_NAME = "sku"
18
- end
19
- end