stripe 4.17.0 → 5.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +193 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -14
- data/README.md +167 -63
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +7 -3
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +36 -27
- data/lib/stripe/api_operations/request.rb +47 -8
- data/lib/stripe/api_operations/save.rb +8 -7
- data/lib/stripe/api_resource.rb +30 -5
- data/lib/stripe/connection_manager.rb +164 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +31 -10
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +41 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +8 -6
- data/lib/stripe/object_types.rb +102 -0
- data/lib/stripe/{account.rb → resources/account.rb} +44 -33
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
- data/lib/stripe/{checkout → resources/billing_portal}/session.rb +3 -2
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
- data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
- data/lib/stripe/{capability.rb → resources/capability.rb} +11 -4
- data/lib/stripe/{card.rb → resources/card.rb} +12 -3
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -1
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +41 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/{discount.rb → resources/discount.rb} +1 -1
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
- data/lib/stripe/{event.rb → resources/event.rb} +2 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
- data/lib/stripe/{file.rb → resources/file.rb} +7 -12
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -1
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
- data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
- data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
- data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -1
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -1
- data/lib/stripe/resources/line_item.rb +7 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/{payment_method.rb → resources/payment_method.rb} +14 -5
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +8 -3
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +2 -1
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -1
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -5
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -1
- data/lib/stripe/resources/reversal.rb +29 -0
- data/lib/stripe/{review.rb → resources/review.rb} +8 -3
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +2 -1
- data/lib/stripe/{sku.rb → resources/sku.rb} +2 -1
- data/lib/stripe/{source.rb → resources/source.rb} +22 -15
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
- data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -13
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_id.rb +26 -0
- data/lib/stripe/{tax_rate.rb → resources/tax_rate.rb} +2 -1
- data/lib/stripe/{terminal → resources/terminal}/connection_token.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/location.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +2 -1
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
- data/lib/stripe/{token.rb → resources/token.rb} +2 -1
- data/lib/stripe/{topup.rb → resources/topup.rb} +8 -3
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +1 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -1
- data/lib/stripe/resources.rb +85 -0
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +576 -254
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +80 -61
- data/lib/stripe/stripe_response.rb +53 -21
- data/lib/stripe/util.rb +76 -121
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +43 -10
- data/lib/stripe.rb +42 -203
- data/stripe.gemspec +23 -7
- metadata +107 -284
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -8
- data/.rubocop.yml +0 -32
- data/.rubocop_todo.yml +0 -50
- data/.travis.yml +0 -42
- data/lib/stripe/alipay_account.rb +0 -27
- data/lib/stripe/application_fee.rb +0 -23
- data/lib/stripe/application_fee_refund.rb +0 -22
- data/lib/stripe/bank_account.rb +0 -32
- data/lib/stripe/charge.rb +0 -86
- data/lib/stripe/credit_note.rb +0 -18
- data/lib/stripe/customer.rb +0 -95
- data/lib/stripe/dispute.rb +0 -23
- data/lib/stripe/invoice.rb +0 -48
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/login_link.rb +0 -11
- data/lib/stripe/order.rb +0 -34
- data/lib/stripe/payment_intent.rb +0 -30
- data/lib/stripe/payout.rb +0 -24
- data/lib/stripe/reversal.rb +0 -22
- data/lib/stripe/subscription_item.rb +0 -17
- data/lib/stripe/subscription_schedule.rb +0 -35
- data/lib/stripe/subscription_schedule_revision.rb +0 -25
- data/lib/stripe/tax_id.rb +0 -22
- data/lib/stripe/transfer.rb +0 -25
- data/lib/stripe/usage_record.rb +0 -14
- data/test/api_stub_helpers.rb +0 -1
- data/test/openapi/README.md +0 -9
- data/test/stripe/account_link_test.rb +0 -18
- data/test/stripe/account_test.rb +0 -428
- data/test/stripe/alipay_account_test.rb +0 -37
- data/test/stripe/api_operations_test.rb +0 -81
- data/test/stripe/api_resource_test.rb +0 -526
- data/test/stripe/apple_pay_domain_test.rb +0 -46
- data/test/stripe/application_fee_refund_test.rb +0 -37
- data/test/stripe/application_fee_test.rb +0 -58
- data/test/stripe/balance_test.rb +0 -13
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/capability_test.rb +0 -45
- data/test/stripe/charge_test.rb +0 -80
- data/test/stripe/checkout/session_test.rb +0 -41
- data/test/stripe/country_spec_test.rb +0 -20
- data/test/stripe/coupon_test.rb +0 -61
- data/test/stripe/credit_note_test.rb +0 -61
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_test.rb +0 -226
- data/test/stripe/dispute_test.rb +0 -51
- data/test/stripe/ephemeral_key_test.rb +0 -93
- data/test/stripe/errors_test.rb +0 -20
- data/test/stripe/exchange_rate_test.rb +0 -20
- data/test/stripe/file_link_test.rb +0 -41
- data/test/stripe/file_test.rb +0 -97
- data/test/stripe/file_upload_test.rb +0 -79
- data/test/stripe/invoice_item_test.rb +0 -66
- data/test/stripe/invoice_line_item_test.rb +0 -8
- data/test/stripe/invoice_test.rb +0 -213
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/issuing/authorization_test.rb +0 -72
- data/test/stripe/issuing/card_test.rb +0 -62
- data/test/stripe/issuing/cardholder_test.rb +0 -53
- data/test/stripe/issuing/dispute_test.rb +0 -45
- data/test/stripe/issuing/transaction_test.rb +0 -48
- data/test/stripe/list_object_test.rb +0 -156
- data/test/stripe/login_link_test.rb +0 -37
- data/test/stripe/oauth_test.rb +0 -88
- data/test/stripe/order_return_test.rb +0 -21
- data/test/stripe/order_test.rb +0 -75
- data/test/stripe/payment_intent_test.rb +0 -107
- data/test/stripe/payment_method_test.rb +0 -84
- data/test/stripe/payout_test.rb +0 -57
- data/test/stripe/person_test.rb +0 -46
- data/test/stripe/plan_test.rb +0 -98
- data/test/stripe/product_test.rb +0 -59
- data/test/stripe/radar/value_list_item_test.rb +0 -48
- data/test/stripe/radar/value_list_test.rb +0 -61
- data/test/stripe/recipient_test.rb +0 -62
- data/test/stripe/refund_test.rb +0 -39
- data/test/stripe/reporting/report_run_test.rb +0 -33
- data/test/stripe/reporting/report_type_test.rb +0 -22
- data/test/stripe/reversal_test.rb +0 -43
- data/test/stripe/review_test.rb +0 -27
- data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
- data/test/stripe/sku_test.rb +0 -60
- data/test/stripe/source_test.rb +0 -99
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/stripe_client_test.rb +0 -842
- data/test/stripe/stripe_object_test.rb +0 -525
- data/test/stripe/stripe_response_test.rb +0 -49
- data/test/stripe/subscription_item_test.rb +0 -63
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_test.rb +0 -116
- data/test/stripe/subscription_test.rb +0 -80
- data/test/stripe/tax_id_test.rb +0 -31
- data/test/stripe/tax_rate_test.rb +0 -43
- data/test/stripe/terminal/connection_token_test.rb +0 -16
- data/test/stripe/terminal/location_test.rb +0 -68
- data/test/stripe/terminal/reader_test.rb +0 -62
- data/test/stripe/three_d_secure_test.rb +0 -23
- data/test/stripe/topup_test.rb +0 -62
- data/test/stripe/transfer_test.rb +0 -88
- data/test/stripe/usage_record_summary_test.rb +0 -19
- data/test/stripe/usage_record_test.rb +0 -28
- data/test/stripe/util_test.rb +0 -402
- data/test/stripe/webhook_endpoint_test.rb +0 -59
- data/test/stripe/webhook_test.rb +0 -96
- data/test/stripe_mock.rb +0 -77
- data/test/stripe_test.rb +0 -63
- data/test/test_data.rb +0 -61
- data/test/test_helper.rb +0 -73
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -7,6 +8,6 @@ module Stripe
|
|
7
8
|
extend Stripe::APIOperations::List
|
8
9
|
include Stripe::APIOperations::Save
|
9
10
|
|
10
|
-
OBJECT_NAME = "plan"
|
11
|
+
OBJECT_NAME = "plan"
|
11
12
|
end
|
12
13
|
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class Price < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
extend Stripe::APIOperations::List
|
8
|
+
include Stripe::APIOperations::Save
|
9
|
+
|
10
|
+
OBJECT_NAME = "price"
|
11
|
+
end
|
12
|
+
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -7,6 +8,6 @@ module Stripe
|
|
7
8
|
extend Stripe::APIOperations::List
|
8
9
|
include Stripe::APIOperations::Save
|
9
10
|
|
10
|
-
OBJECT_NAME = "product"
|
11
|
+
OBJECT_NAME = "product"
|
11
12
|
end
|
12
13
|
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class PromotionCode < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
extend Stripe::APIOperations::List
|
8
|
+
include Stripe::APIOperations::Save
|
9
|
+
|
10
|
+
OBJECT_NAME = "promotion_code"
|
11
|
+
end
|
12
|
+
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -8,7 +9,7 @@ module Stripe
|
|
8
9
|
extend Stripe::APIOperations::List
|
9
10
|
include Stripe::APIOperations::Save
|
10
11
|
|
11
|
-
OBJECT_NAME = "radar.value_list"
|
12
|
+
OBJECT_NAME = "radar.value_list"
|
12
13
|
end
|
13
14
|
end
|
14
15
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -7,7 +8,7 @@ module Stripe
|
|
7
8
|
include Stripe::APIOperations::Delete
|
8
9
|
extend Stripe::APIOperations::List
|
9
10
|
|
10
|
-
OBJECT_NAME = "radar.value_list_item"
|
11
|
+
OBJECT_NAME = "radar.value_list_item"
|
11
12
|
end
|
12
13
|
end
|
13
14
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -8,10 +9,6 @@ module Stripe
|
|
8
9
|
extend Stripe::APIOperations::List
|
9
10
|
include Stripe::APIOperations::Save
|
10
11
|
|
11
|
-
OBJECT_NAME = "recipient"
|
12
|
-
|
13
|
-
def transfers
|
14
|
-
Transfer.all({ recipient: id }, @api_key)
|
15
|
-
end
|
12
|
+
OBJECT_NAME = "recipient"
|
16
13
|
end
|
17
14
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -6,6 +7,6 @@ module Stripe
|
|
6
7
|
extend Stripe::APIOperations::List
|
7
8
|
include Stripe::APIOperations::Save
|
8
9
|
|
9
|
-
OBJECT_NAME = "refund"
|
10
|
+
OBJECT_NAME = "refund"
|
10
11
|
end
|
11
12
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -6,7 +7,7 @@ module Stripe
|
|
6
7
|
extend Stripe::APIOperations::Create
|
7
8
|
extend Stripe::APIOperations::List
|
8
9
|
|
9
|
-
OBJECT_NAME = "reporting.report_run"
|
10
|
+
OBJECT_NAME = "reporting.report_run"
|
10
11
|
end
|
11
12
|
end
|
12
13
|
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -6,7 +7,7 @@ module Stripe
|
|
6
7
|
extend Stripe::APIOperations::Create
|
7
8
|
extend Stripe::APIOperations::List
|
8
9
|
|
9
|
-
OBJECT_NAME = "reporting.report_type"
|
10
|
+
OBJECT_NAME = "reporting.report_type"
|
10
11
|
end
|
11
12
|
end
|
12
13
|
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Stripe
|
4
|
+
class Reversal < APIResource
|
5
|
+
extend Stripe::APIOperations::List
|
6
|
+
include Stripe::APIOperations::Save
|
7
|
+
|
8
|
+
OBJECT_NAME = "transfer_reversal"
|
9
|
+
|
10
|
+
def resource_url
|
11
|
+
"#{Transfer.resource_url}/#{CGI.escape(transfer)}/reversals" \
|
12
|
+
"/#{CGI.escape(id)}"
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.update(_id, _params = nil, _opts = nil)
|
16
|
+
raise NotImplementedError,
|
17
|
+
"Reversals cannot be updated without a transfer ID. Update a " \
|
18
|
+
"reversal using `r = Transfer.update_reversal('transfer_id', " \
|
19
|
+
"'reversal_id', update_params)`"
|
20
|
+
end
|
21
|
+
|
22
|
+
def self.retrieve(_id, _opts = {})
|
23
|
+
raise NotImplementedError,
|
24
|
+
"Reversals cannot be retrieved without a transfer ID. Retrieve " \
|
25
|
+
"a reversal using `Transfer.retrieve_reversal('transfer_id', " \
|
26
|
+
"'reversal_id')`"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -1,16 +1,21 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
4
5
|
class Review < APIResource
|
5
6
|
extend Stripe::APIOperations::List
|
6
7
|
|
7
|
-
OBJECT_NAME = "review"
|
8
|
+
OBJECT_NAME = "review"
|
8
9
|
|
9
10
|
custom_method :approve, http_verb: :post
|
10
11
|
|
11
12
|
def approve(params = {}, opts = {})
|
12
|
-
|
13
|
-
|
13
|
+
request_stripe_object(
|
14
|
+
method: :post,
|
15
|
+
path: resource_url + "/approve",
|
16
|
+
params: params,
|
17
|
+
opts: opts
|
18
|
+
)
|
14
19
|
end
|
15
20
|
end
|
16
21
|
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class SetupIntent < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
extend Stripe::APIOperations::List
|
8
|
+
include Stripe::APIOperations::Save
|
9
|
+
|
10
|
+
OBJECT_NAME = "setup_intent"
|
11
|
+
|
12
|
+
custom_method :cancel, http_verb: :post
|
13
|
+
custom_method :confirm, http_verb: :post
|
14
|
+
|
15
|
+
def cancel(params = {}, opts = {})
|
16
|
+
request_stripe_object(
|
17
|
+
method: :post,
|
18
|
+
path: resource_url + "/cancel",
|
19
|
+
params: params,
|
20
|
+
opts: opts
|
21
|
+
)
|
22
|
+
end
|
23
|
+
|
24
|
+
def confirm(params = {}, opts = {})
|
25
|
+
request_stripe_object(
|
26
|
+
method: :post,
|
27
|
+
path: resource_url + "/confirm",
|
28
|
+
params: params,
|
29
|
+
opts: opts
|
30
|
+
)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -5,7 +6,7 @@ module Stripe
|
|
5
6
|
class ScheduledQueryRun < APIResource
|
6
7
|
extend Stripe::APIOperations::List
|
7
8
|
|
8
|
-
OBJECT_NAME = "scheduled_query_run"
|
9
|
+
OBJECT_NAME = "scheduled_query_run"
|
9
10
|
|
10
11
|
def self.resource_url
|
11
12
|
"/v1/sigma/scheduled_query_runs"
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
@@ -7,6 +8,6 @@ module Stripe
|
|
7
8
|
extend Stripe::APIOperations::List
|
8
9
|
include Stripe::APIOperations::Save
|
9
10
|
|
10
|
-
OBJECT_NAME = "sku"
|
11
|
+
OBJECT_NAME = "sku"
|
11
12
|
end
|
12
13
|
end
|
@@ -1,14 +1,28 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
4
5
|
class Source < APIResource
|
5
6
|
extend Stripe::APIOperations::Create
|
6
7
|
include Stripe::APIOperations::Save
|
8
|
+
extend Stripe::APIOperations::NestedResource
|
7
9
|
|
8
|
-
OBJECT_NAME = "source"
|
10
|
+
OBJECT_NAME = "source"
|
9
11
|
|
10
12
|
custom_method :verify, http_verb: :post
|
11
13
|
|
14
|
+
nested_resource_class_methods :source_transaction,
|
15
|
+
operations: %i[retrieve list]
|
16
|
+
|
17
|
+
def verify(params = {}, opts = {})
|
18
|
+
request_stripe_object(
|
19
|
+
method: :post,
|
20
|
+
path: resource_url + "/verify",
|
21
|
+
params: params,
|
22
|
+
opts: opts
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
12
26
|
def detach(params = {}, opts = {})
|
13
27
|
if !respond_to?(:customer) || customer.nil? || customer.empty?
|
14
28
|
raise NotImplementedError,
|
@@ -16,25 +30,18 @@ module Stripe
|
|
16
30
|
"to a customer object."
|
17
31
|
end
|
18
32
|
|
19
|
-
url = "#{Customer.resource_url}/#{CGI.escape(customer)}/sources
|
20
|
-
|
33
|
+
url = "#{Customer.resource_url}/#{CGI.escape(customer)}/sources" \
|
34
|
+
"/#{CGI.escape(id)}"
|
35
|
+
resp, opts = execute_resource_request(:delete, url, params, opts)
|
21
36
|
initialize_from(resp.data, opts)
|
22
37
|
end
|
23
38
|
|
24
|
-
def delete(params = {}, opts = {})
|
25
|
-
detach(params, opts)
|
26
|
-
end
|
27
|
-
extend Gem::Deprecate
|
28
|
-
deprecate :delete, "#detach", 2017, 10
|
29
|
-
|
30
39
|
def source_transactions(params = {}, opts = {})
|
31
|
-
resp, opts =
|
40
|
+
resp, opts = execute_resource_request(:get, resource_url + "/source_transactions", params,
|
41
|
+
opts)
|
32
42
|
Util.convert_to_stripe_object(resp.data, opts)
|
33
43
|
end
|
34
|
-
|
35
|
-
|
36
|
-
resp, opts = request(:post, resource_url + "/verify", params, opts)
|
37
|
-
initialize_from(resp.data, opts)
|
38
|
-
end
|
44
|
+
extend Gem::Deprecate
|
45
|
+
deprecate :source_transactions, :"Source.list_source_transactions", 2020, 1
|
39
46
|
end
|
40
47
|
end
|
@@ -1,27 +1,26 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
1
2
|
# frozen_string_literal: true
|
2
3
|
|
3
4
|
module Stripe
|
4
5
|
class Subscription < APIResource
|
5
|
-
extend Stripe::APIOperations::List
|
6
6
|
extend Stripe::APIOperations::Create
|
7
|
-
include Stripe::APIOperations::Save
|
8
7
|
include Stripe::APIOperations::Delete
|
8
|
+
extend Stripe::APIOperations::List
|
9
|
+
include Stripe::APIOperations::Save
|
9
10
|
|
10
|
-
OBJECT_NAME = "subscription"
|
11
|
+
OBJECT_NAME = "subscription"
|
11
12
|
|
12
13
|
custom_method :delete_discount, http_verb: :delete, http_path: "discount"
|
13
14
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
15
|
+
def delete_discount(params = {}, opts = {})
|
16
|
+
request_stripe_object(
|
17
|
+
method: :delete,
|
18
|
+
path: resource_url + "/discount",
|
19
|
+
params: params,
|
20
|
+
opts: opts
|
21
|
+
)
|
19
22
|
end
|
20
23
|
|
21
|
-
|
22
|
-
|
23
|
-
def discount_url
|
24
|
-
resource_url + "/discount"
|
25
|
-
end
|
24
|
+
save_nested_resource :source
|
26
25
|
end
|
27
26
|
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class SubscriptionItem < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
include Stripe::APIOperations::Delete
|
8
|
+
extend Stripe::APIOperations::List
|
9
|
+
include Stripe::APIOperations::Save
|
10
|
+
extend Stripe::APIOperations::NestedResource
|
11
|
+
|
12
|
+
OBJECT_NAME = "subscription_item"
|
13
|
+
|
14
|
+
nested_resource_class_methods :usage_record, operations: %i[create]
|
15
|
+
nested_resource_class_methods :usage_record_summary,
|
16
|
+
operations: %i[list],
|
17
|
+
resource_plural: "usage_record_summaries"
|
18
|
+
|
19
|
+
def usage_record_summaries(params = {}, opts = {})
|
20
|
+
resp, opts = execute_resource_request(:get, resource_url + "/usage_record_summaries", params, opts)
|
21
|
+
Util.convert_to_stripe_object(resp.data, opts)
|
22
|
+
end
|
23
|
+
extend Gem::Deprecate
|
24
|
+
deprecate :usage_record_summaries, :"SubscriptionItem.list_usage_record_summaries", 2020, 1
|
25
|
+
end
|
26
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class SubscriptionSchedule < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
extend Stripe::APIOperations::List
|
8
|
+
include Stripe::APIOperations::Save
|
9
|
+
|
10
|
+
OBJECT_NAME = "subscription_schedule"
|
11
|
+
|
12
|
+
custom_method :cancel, http_verb: :post
|
13
|
+
custom_method :release, http_verb: :post
|
14
|
+
|
15
|
+
def cancel(params = {}, opts = {})
|
16
|
+
request_stripe_object(
|
17
|
+
method: :post,
|
18
|
+
path: resource_url + "/cancel",
|
19
|
+
params: params,
|
20
|
+
opts: opts
|
21
|
+
)
|
22
|
+
end
|
23
|
+
|
24
|
+
def release(params = {}, opts = {})
|
25
|
+
request_stripe_object(
|
26
|
+
method: :post,
|
27
|
+
path: resource_url + "/release",
|
28
|
+
params: params,
|
29
|
+
opts: opts
|
30
|
+
)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|