stripe 18.0.0 → 18.1.0.pre.beta.1
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/lib/stripe/api_requestor.rb +34 -0
- data/lib/stripe/api_version.rb +1 -2
- data/lib/stripe/errors.rb +63 -0
- data/lib/stripe/event_types.rb +209 -0
- data/lib/stripe/events/v2_core_account_closed_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_created_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_customer_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_customer_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_merchant_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_merchant_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_recipient_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_recipient_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_configuration_storer_capability_status_updated_event.rb +63 -0
- data/lib/stripe/events/v2_core_account_including_configuration_storer_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_defaults_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_identity_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_including_requirements_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_account_link_returned_event.rb +42 -0
- data/lib/stripe/events/v2_core_account_person_created_event.rb +61 -0
- data/lib/stripe/events/v2_core_account_person_deleted_event.rb +61 -0
- data/lib/stripe/events/v2_core_account_person_updated_event.rb +61 -0
- data/lib/stripe/events/v2_core_account_updated_event.rb +44 -0
- data/lib/stripe/events/v2_core_health_event_generation_failure_resolved_event.rb +78 -0
- data/lib/stripe/events/v2_money_management_adjustment_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_account_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_account_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_address_activated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_financial_address_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_available_event.rb +61 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_processing_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_queued_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_succeeded_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_canceled_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_posted_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_payment_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_canceled_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_created_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_posted_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_outbound_transfer_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_payout_method_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_credit_available_event.rb +61 -0
- data/lib/stripe/events/v2_money_management_received_credit_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_credit_returned_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_credit_succeeded_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_canceled_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_failed_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_pending_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_succeeded_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_received_debit_updated_event.rb +44 -0
- data/lib/stripe/events/v2_money_management_transaction_created_event.rb +61 -0
- data/lib/stripe/events/v2_money_management_transaction_updated_event.rb +44 -0
- data/lib/stripe/object_types.rb +54 -0
- data/lib/stripe/params/account_create_params.rb +317 -1
- data/lib/stripe/params/account_notice_list_params.rb +25 -0
- data/lib/stripe/params/account_notice_retrieve_params.rb +13 -0
- data/lib/stripe/params/account_notice_update_params.rb +36 -0
- data/lib/stripe/params/account_session_create_params.rb +226 -1
- data/lib/stripe/params/account_update_params.rb +279 -0
- data/lib/stripe/params/billing/analytics/meter_usage_retrieve_params.rb +65 -0
- data/lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb +4 -1
- data/lib/stripe/params/billing/credit_balance_transaction_list_params.rb +4 -0
- data/lib/stripe/params/billing/credit_grant_create_params.rb +4 -0
- data/lib/stripe/params/billing/credit_grant_list_params.rb +4 -0
- data/lib/stripe/params/billing_portal/session_create_params.rb +4 -0
- data/lib/stripe/params/capital/financing_offer_list_params.rb +58 -0
- data/lib/stripe/params/capital/financing_offer_mark_delivered_params.rb +15 -0
- data/lib/stripe/params/capital/financing_offer_retrieve_params.rb +15 -0
- data/lib/stripe/params/capital/financing_summary_retrieve_params.rb +15 -0
- data/lib/stripe/params/capital/financing_transaction_list_params.rb +45 -0
- data/lib/stripe/params/capital/financing_transaction_retrieve_params.rb +15 -0
- data/lib/stripe/params/charge_capture_params.rb +1648 -0
- data/lib/stripe/params/charge_update_params.rb +1648 -0
- data/lib/stripe/params/checkout/session_create_params.rb +193 -3
- data/lib/stripe/params/checkout/session_list_params.rb +4 -0
- data/lib/stripe/params/checkout/session_update_params.rb +288 -1
- data/lib/stripe/params/confirmation_token_create_params.rb +97 -0
- data/lib/stripe/params/coupon_create_params.rb +17 -1
- data/lib/stripe/params/credit_note_list_params.rb +4 -0
- data/lib/stripe/params/customer_session_create_params.rb +36 -2
- data/lib/stripe/params/dispute_update_params.rb +10 -1
- data/lib/stripe/params/external_account_create_params.rb +134 -0
- data/lib/stripe/params/external_account_delete_params.rb +6 -0
- data/lib/stripe/params/external_account_list_params.rb +25 -0
- data/lib/stripe/params/external_account_retrieve_params.rb +13 -0
- data/lib/stripe/params/external_account_update_params.rb +91 -0
- data/lib/stripe/params/financial_connections/account_inferred_balance_list_params.rb +24 -0
- data/lib/stripe/params/financial_connections/account_list_params.rb +4 -1
- data/lib/stripe/params/financial_connections/institution_list_params.rb +24 -0
- data/lib/stripe/params/financial_connections/institution_retrieve_params.rb +15 -0
- data/lib/stripe/params/financial_connections/session_create_params.rb +34 -2
- data/lib/stripe/params/fx_quote_create_params.rb +73 -0
- data/lib/stripe/params/fx_quote_list_params.rb +22 -0
- data/lib/stripe/params/fx_quote_retrieve_params.rb +13 -0
- data/lib/stripe/params/identity/verification_session_create_params.rb +4 -0
- data/lib/stripe/params/identity/verification_session_list_params.rb +4 -0
- data/lib/stripe/params/invoice_add_lines_params.rb +33 -1
- data/lib/stripe/params/invoice_attach_payment_params.rb +43 -1
- data/lib/stripe/params/invoice_create_params.rb +112 -2
- data/lib/stripe/params/invoice_create_preview_params.rb +826 -9
- data/lib/stripe/params/invoice_item_create_params.rb +37 -1
- data/lib/stripe/params/invoice_item_list_params.rb +4 -0
- data/lib/stripe/params/invoice_item_update_params.rb +33 -1
- data/lib/stripe/params/invoice_line_item_update_params.rb +33 -1
- data/lib/stripe/params/invoice_list_params.rb +4 -0
- data/lib/stripe/params/invoice_update_lines_params.rb +33 -1
- data/lib/stripe/params/invoice_update_params.rb +108 -2
- data/lib/stripe/params/issuing/cardholder_create_params.rb +2 -1
- data/lib/stripe/params/issuing/credit_underwriting_record_correct_params.rb +163 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_create_from_application_params.rb +50 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_create_from_proactive_review_params.rb +128 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_list_params.rb +24 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_report_decision_params.rb +86 -0
- data/lib/stripe/params/issuing/credit_underwriting_record_retrieve_params.rb +15 -0
- data/lib/stripe/params/issuing/dispute_settlement_detail_list_params.rb +33 -0
- data/lib/stripe/params/issuing/dispute_settlement_detail_retrieve_params.rb +15 -0
- data/lib/stripe/params/issuing/fraud_liability_debit_list_params.rb +44 -0
- data/lib/stripe/params/issuing/fraud_liability_debit_retrieve_params.rb +15 -0
- data/lib/stripe/params/issuing/transaction_list_params.rb +4 -0
- data/lib/stripe/params/mandate_list_params.rb +39 -0
- data/lib/stripe/params/margin_create_params.rb +25 -0
- data/lib/stripe/params/margin_list_params.rb +25 -0
- data/lib/stripe/params/margin_retrieve_params.rb +13 -0
- data/lib/stripe/params/margin_update_params.rb +22 -0
- data/lib/stripe/params/order_cancel_params.rb +13 -0
- data/lib/stripe/params/order_create_params.rb +2061 -0
- data/lib/stripe/params/order_line_item_list_params.rb +22 -0
- data/lib/stripe/params/order_list_line_items_params.rb +22 -0
- data/lib/stripe/params/order_list_params.rb +25 -0
- data/lib/stripe/params/order_reopen_params.rb +13 -0
- data/lib/stripe/params/order_retrieve_params.rb +13 -0
- data/lib/stripe/params/order_submit_params.rb +16 -0
- data/lib/stripe/params/order_update_params.rb +2065 -0
- data/lib/stripe/params/payment_intent_capture_params.rb +1627 -1
- data/lib/stripe/params/payment_intent_confirm_params.rb +3134 -100
- data/lib/stripe/params/payment_intent_create_params.rb +3126 -84
- data/lib/stripe/params/payment_intent_decrement_authorization_params.rb +73 -0
- data/lib/stripe/params/payment_intent_increment_authorization_params.rb +21 -0
- data/lib/stripe/params/payment_intent_list_params.rb +4 -0
- data/lib/stripe/params/payment_intent_trigger_action_params.rb +27 -0
- data/lib/stripe/params/payment_intent_update_params.rb +3158 -85
- data/lib/stripe/params/payment_method_attach_params.rb +4 -1
- data/lib/stripe/params/payment_method_configuration_create_params.rb +126 -0
- data/lib/stripe/params/payment_method_configuration_update_params.rb +126 -0
- data/lib/stripe/params/payment_method_create_params.rb +97 -0
- data/lib/stripe/params/payment_method_list_params.rb +8 -0
- data/lib/stripe/params/payment_method_update_params.rb +19 -0
- data/lib/stripe/params/price_update_params.rb +19 -0
- data/lib/stripe/params/privacy/redaction_job_cancel_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_create_params.rb +67 -0
- data/lib/stripe/params/privacy/redaction_job_list_params.rb +27 -0
- data/lib/stripe/params/privacy/redaction_job_retrieve_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_run_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_update_params.rb +18 -0
- data/lib/stripe/params/privacy/redaction_job_validate_params.rb +15 -0
- data/lib/stripe/params/privacy/redaction_job_validation_error_list_params.rb +24 -0
- data/lib/stripe/params/promotion_code_create_params.rb +4 -0
- data/lib/stripe/params/promotion_code_list_params.rb +4 -0
- data/lib/stripe/params/quote_create_params.rb +805 -3
- data/lib/stripe/params/quote_line_list_params.rb +22 -0
- data/lib/stripe/params/quote_list_lines_params.rb +22 -0
- data/lib/stripe/params/quote_list_params.rb +8 -0
- data/lib/stripe/params/quote_list_preview_invoice_lines_params.rb +22 -0
- data/lib/stripe/params/quote_mark_draft_params.rb +13 -0
- data/lib/stripe/params/quote_mark_stale_params.rb +16 -0
- data/lib/stripe/params/quote_preview_invoice_list_params.rb +22 -0
- data/lib/stripe/params/quote_preview_subscription_schedule_list_params.rb +22 -0
- data/lib/stripe/params/quote_reestimate_params.rb +13 -0
- data/lib/stripe/params/quote_update_params.rb +813 -4
- data/lib/stripe/params/setup_intent_confirm_params.rb +225 -3
- data/lib/stripe/params/setup_intent_create_params.rb +231 -3
- data/lib/stripe/params/setup_intent_list_params.rb +4 -0
- data/lib/stripe/params/setup_intent_update_params.rb +231 -3
- data/lib/stripe/params/subscription_attach_cadence_params.rb +16 -0
- data/lib/stripe/params/subscription_create_params.rb +259 -5
- data/lib/stripe/params/subscription_item_create_params.rb +46 -2
- data/lib/stripe/params/subscription_item_update_params.rb +29 -1
- data/lib/stripe/params/subscription_list_params.rb +4 -0
- data/lib/stripe/params/subscription_schedule_amend_params.rb +570 -0
- data/lib/stripe/params/subscription_schedule_create_params.rb +167 -5
- data/lib/stripe/params/subscription_schedule_list_params.rb +4 -0
- data/lib/stripe/params/subscription_schedule_update_params.rb +163 -5
- data/lib/stripe/params/subscription_update_params.rb +238 -4
- data/lib/stripe/params/tax/form_list_params.rb +51 -0
- data/lib/stripe/params/tax/form_pdf_params.rb +15 -0
- data/lib/stripe/params/tax/form_retrieve_params.rb +15 -0
- data/lib/stripe/params/tax_id_create_params.rb +4 -1
- data/lib/stripe/params/tax_id_list_params.rb +4 -1
- data/lib/stripe/params/terminal/configuration_create_params.rb +13 -0
- data/lib/stripe/params/terminal/configuration_update_params.rb +13 -0
- data/lib/stripe/params/terminal/reader_collected_data_retrieve_params.rb +15 -0
- data/lib/stripe/params/test_helpers/confirmation_token_create_params.rb +97 -0
- data/lib/stripe/params/test_helpers/treasury/received_credit_create_params.rb +25 -1
- data/lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb +25 -1
- data/lib/stripe/params/transfer_create_params.rb +4 -0
- data/lib/stripe/params/treasury/financial_account_create_params.rb +8 -1
- data/lib/stripe/params/treasury/financial_account_features_update_params.rb +4 -1
- data/lib/stripe/params/treasury/financial_account_update_features_params.rb +4 -1
- data/lib/stripe/params/treasury/financial_account_update_params.rb +8 -1
- data/lib/stripe/params/treasury/outbound_transfer_create_params.rb +24 -0
- data/lib/stripe/params/treasury/received_credit_create_params.rb +25 -1
- data/lib/stripe/params/treasury/received_debit_create_params.rb +25 -1
- data/lib/stripe/params/v2/billing/bill_setting_create_params.rb +74 -0
- data/lib/stripe/params/v2/billing/bill_setting_list_params.rb +21 -0
- data/lib/stripe/params/v2/billing/bill_setting_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/billing/bill_setting_update_params.rb +80 -0
- data/lib/stripe/params/v2/billing/bill_settings/version_list_params.rb +19 -0
- data/lib/stripe/params/v2/billing/bill_settings/version_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/billing/cadence_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/billing/cadence_create_params.rb +253 -0
- data/lib/stripe/params/v2/billing/cadence_list_params.rb +43 -0
- data/lib/stripe/params/v2/billing/cadence_retrieve_params.rb +17 -0
- data/lib/stripe/params/v2/billing/cadence_update_params.rb +75 -0
- data/lib/stripe/params/v2/billing/collection_setting_create_params.rb +223 -0
- data/lib/stripe/params/v2/billing/collection_setting_list_params.rb +21 -0
- data/lib/stripe/params/v2/billing/collection_setting_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/billing/collection_setting_update_params.rb +229 -0
- data/lib/stripe/params/v2/billing/collection_settings/version_list_params.rb +19 -0
- data/lib/stripe/params/v2/billing/collection_settings/version_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/billing/profile_create_params.rb +37 -0
- data/lib/stripe/params/v2/billing/profile_list_params.rb +40 -0
- data/lib/stripe/params/v2/billing/profile_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/billing/profile_update_params.rb +35 -0
- data/lib/stripe/params/v2/core/account_close_params.rb +17 -0
- data/lib/stripe/params/v2/core/account_create_params.rb +2341 -0
- data/lib/stripe/params/v2/core/account_link_create_params.rb +101 -0
- data/lib/stripe/params/v2/core/account_list_params.rb +23 -0
- data/lib/stripe/params/v2/core/account_retrieve_params.rb +17 -0
- data/lib/stripe/params/v2/core/account_token_create_params.rb +1001 -0
- data/lib/stripe/params/v2/core/account_token_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/core/account_update_params.rb +2387 -0
- data/lib/stripe/params/v2/core/accounts/person_create_params.rb +497 -0
- data/lib/stripe/params/v2/core/accounts/person_delete_params.rb +12 -0
- data/lib/stripe/params/v2/core/accounts/person_list_params.rb +19 -0
- data/lib/stripe/params/v2/core/accounts/person_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/accounts/person_token_create_params.rb +487 -0
- data/lib/stripe/params/v2/core/accounts/person_token_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/accounts/person_update_params.rb +497 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_acknowledge_confirmation_of_payee_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_archive_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_create_params.rb +50 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_initiate_confirmation_of_payee_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_list_params.rb +19 -0
- data/lib/stripe/params/v2/core/vault/gb_bank_account_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_archive_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_confirm_microdeposits_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_create_params.rb +33 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_list_params.rb +22 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_retrieve_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_send_microdeposits_params.rb +12 -0
- data/lib/stripe/params/v2/core/vault/us_bank_account_update_params.rb +22 -0
- data/lib/stripe/params/v2/money_management/adjustment_list_params.rb +48 -0
- data/lib/stripe/params/v2/money_management/adjustment_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/financial_account_close_params.rb +28 -0
- data/lib/stripe/params/v2/money_management/financial_account_create_params.rb +34 -0
- data/lib/stripe/params/v2/money_management/financial_account_list_params.rb +20 -0
- data/lib/stripe/params/v2/money_management/financial_account_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/financial_account_update_params.rb +20 -0
- data/lib/stripe/params/v2/money_management/financial_address_create_params.rb +20 -0
- data/lib/stripe/params/v2/money_management/financial_address_list_params.rb +23 -0
- data/lib/stripe/params/v2/money_management/financial_address_retrieve_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb +50 -0
- data/lib/stripe/params/v2/money_management/inbound_transfer_list_params.rb +44 -0
- data/lib/stripe/params/v2/money_management/inbound_transfer_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_create_params.rb +98 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_list_params.rb +52 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb +67 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_quote_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_payment_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_create_params.rb +85 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_list_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_setup_intent_update_params.rb +80 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_cancel_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_create_params.rb +77 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_list_params.rb +48 -0
- data/lib/stripe/params/v2/money_management/outbound_transfer_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_method_archive_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_method_list_params.rb +31 -0
- data/lib/stripe/params/v2/money_management/payout_method_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_method_unarchive_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/payout_methods_bank_account_spec_retrieve_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/received_credit_list_params.rb +44 -0
- data/lib/stripe/params/v2/money_management/received_credit_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/received_debit_list_params.rb +17 -0
- data/lib/stripe/params/v2/money_management/received_debit_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/transaction_entry_list_params.rb +43 -0
- data/lib/stripe/params/v2/money_management/transaction_entry_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/money_management/transaction_list_params.rb +47 -0
- data/lib/stripe/params/v2/money_management/transaction_retrieve_params.rb +10 -0
- data/lib/stripe/params/v2/test_helpers/financial_address_credit_params.rb +23 -0
- data/lib/stripe/params/v2/test_helpers/financial_address_generate_microdeposits_params.rb +10 -0
- data/lib/stripe/params.rb +161 -0
- data/lib/stripe/resources/account.rb +184 -1
- data/lib/stripe/resources/account_notice.rb +94 -0
- data/lib/stripe/resources/account_session.rb +81 -0
- data/lib/stripe/resources/billing/analytics/meter_usage.rb +33 -0
- data/lib/stripe/resources/billing/analytics/meter_usage_row.rb +38 -0
- data/lib/stripe/resources/billing/credit_balance_summary.rb +2 -0
- data/lib/stripe/resources/billing/credit_grant.rb +2 -0
- data/lib/stripe/resources/billing_portal/session.rb +2 -0
- data/lib/stripe/resources/capital/financing_offer.rb +142 -0
- data/lib/stripe/resources/capital/financing_summary.rb +79 -0
- data/lib/stripe/resources/capital/financing_transaction.rb +99 -0
- data/lib/stripe/resources/card.rb +2 -0
- data/lib/stripe/resources/cash_balance.rb +2 -0
- data/lib/stripe/resources/charge.rb +237 -1
- data/lib/stripe/resources/checkout/session.rb +154 -4
- data/lib/stripe/resources/confirmation_token.rb +155 -0
- data/lib/stripe/resources/coupon.rb +26 -1
- data/lib/stripe/resources/credit_note.rb +2 -0
- data/lib/stripe/resources/credit_note_line_item.rb +18 -0
- data/lib/stripe/resources/customer.rb +2 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +2 -0
- data/lib/stripe/resources/customer_cash_balance_transaction.rb +2 -0
- data/lib/stripe/resources/customer_session.rb +38 -0
- data/lib/stripe/resources/discount.rb +2 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/event.rb +64 -1
- data/lib/stripe/resources/financial_connections/account.rb +27 -0
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +35 -0
- data/lib/stripe/resources/financial_connections/institution.rb +127 -0
- data/lib/stripe/resources/financial_connections/session.rb +67 -1
- data/lib/stripe/resources/fx_quote.rb +147 -0
- data/lib/stripe/resources/identity/verification_session.rb +2 -0
- data/lib/stripe/resources/invoice.rb +152 -1
- data/lib/stripe/resources/invoice_item.rb +4 -0
- data/lib/stripe/resources/invoice_line_item.rb +40 -0
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +263 -0
- data/lib/stripe/resources/issuing/dispute_settlement_detail.rb +71 -0
- data/lib/stripe/resources/issuing/fraud_liability_debit.rb +51 -0
- data/lib/stripe/resources/issuing/settlement.rb +61 -0
- data/lib/stripe/resources/issuing/transaction.rb +2 -0
- data/lib/stripe/resources/line_item.rb +68 -1
- data/lib/stripe/resources/mandate.rb +71 -0
- data/lib/stripe/resources/margin.rb +64 -0
- data/lib/stripe/resources/order.rb +987 -0
- data/lib/stripe/resources/payment_attempt_record.rb +203 -1
- data/lib/stripe/resources/payment_intent.rb +749 -4
- data/lib/stripe/resources/payment_method.rb +157 -0
- data/lib/stripe/resources/payment_method_configuration.rb +204 -0
- data/lib/stripe/resources/payment_record.rb +203 -1
- data/lib/stripe/resources/price.rb +20 -0
- data/lib/stripe/resources/privacy/redaction_job.rb +187 -0
- data/lib/stripe/resources/privacy/redaction_job_validation_error.rb +49 -0
- data/lib/stripe/resources/promotion_code.rb +2 -0
- data/lib/stripe/resources/quote.rb +571 -2
- data/lib/stripe/resources/quote_line.rb +521 -0
- data/lib/stripe/resources/quote_preview_invoice.rb +1150 -0
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +732 -0
- data/lib/stripe/resources/refund.rb +18 -0
- data/lib/stripe/resources/setup_attempt.rb +63 -0
- data/lib/stripe/resources/setup_intent.rb +132 -1
- data/lib/stripe/resources/source.rb +38 -0
- data/lib/stripe/resources/subscription.rb +232 -0
- data/lib/stripe/resources/subscription_item.rb +20 -1
- data/lib/stripe/resources/subscription_schedule.rb +198 -3
- data/lib/stripe/resources/tax/form.rb +264 -0
- data/lib/stripe/resources/tax_id.rb +4 -0
- data/lib/stripe/resources/terminal/configuration.rb +16 -0
- data/lib/stripe/resources/terminal/reader.rb +8 -0
- data/lib/stripe/resources/terminal/reader_collected_data.rb +47 -0
- data/lib/stripe/resources/transfer.rb +2 -0
- data/lib/stripe/resources/treasury/financial_account.rb +2 -0
- data/lib/stripe/resources/treasury/financial_account_features.rb +2 -0
- data/lib/stripe/resources/treasury/outbound_transfer.rb +30 -0
- data/lib/stripe/resources/treasury/received_credit.rb +30 -0
- data/lib/stripe/resources/treasury/received_debit.rb +32 -0
- data/lib/stripe/resources/v2/billing/bill_setting.rb +102 -0
- data/lib/stripe/resources/v2/billing/bill_setting_version.rb +90 -0
- data/lib/stripe/resources/v2/billing/cadence.rb +609 -0
- data/lib/stripe/resources/v2/billing/collection_setting.rb +274 -0
- data/lib/stripe/resources/v2/billing/collection_setting_version.rb +262 -0
- data/lib/stripe/resources/v2/billing/profile.rb +46 -0
- data/lib/stripe/resources/v2/core/account.rb +4209 -0
- data/lib/stripe/resources/v2/core/account_link.rb +123 -0
- data/lib/stripe/resources/v2/core/account_person.rb +477 -0
- data/lib/stripe/resources/v2/core/account_person_token.rb +37 -0
- data/lib/stripe/resources/v2/core/account_token.rb +37 -0
- data/lib/stripe/resources/v2/core/event.rb +2 -0
- data/lib/stripe/resources/v2/core/vault/gb_bank_account.rb +114 -0
- data/lib/stripe/resources/v2/core/vault/us_bank_account.rb +81 -0
- data/lib/stripe/resources/v2/financial_address_credit_simulation.rb +28 -0
- data/lib/stripe/resources/v2/financial_address_generated_microdeposits.rb +30 -0
- data/lib/stripe/resources/v2/money_management/adjustment.rb +67 -0
- data/lib/stripe/resources/v2/money_management/financial_account.rb +140 -0
- data/lib/stripe/resources/v2/money_management/financial_address.rb +132 -0
- data/lib/stripe/resources/v2/money_management/inbound_transfer.rb +148 -0
- data/lib/stripe/resources/v2/money_management/outbound_payment.rb +217 -0
- data/lib/stripe/resources/v2/money_management/outbound_payment_quote.rb +144 -0
- data/lib/stripe/resources/v2/money_management/outbound_setup_intent.rb +69 -0
- data/lib/stripe/resources/v2/money_management/outbound_transfer.rb +196 -0
- data/lib/stripe/resources/v2/money_management/payout_method.rb +109 -0
- data/lib/stripe/resources/v2/money_management/payout_methods_bank_account_spec.rb +81 -0
- data/lib/stripe/resources/v2/money_management/received_credit.rb +228 -0
- data/lib/stripe/resources/v2/money_management/received_debit.rb +136 -0
- data/lib/stripe/resources/v2/money_management/transaction.rb +116 -0
- data/lib/stripe/resources/v2/money_management/transaction_entry.rb +105 -0
- data/lib/stripe/resources.rb +105 -0
- data/lib/stripe/services/account_notice_service.rb +39 -0
- data/lib/stripe/services/billing/analytics/meter_usage_service.rb +21 -0
- data/lib/stripe/services/billing/analytics_service.rb +15 -0
- data/lib/stripe/services/billing_service.rb +2 -1
- data/lib/stripe/services/capital/financing_offer_service.rb +42 -0
- data/lib/stripe/services/capital/financing_summary_service.rb +19 -0
- data/lib/stripe/services/capital/financing_transaction_service.rb +31 -0
- data/lib/stripe/services/capital_service.rb +15 -0
- data/lib/stripe/services/external_account_service.rb +68 -0
- data/lib/stripe/services/financial_connections/account_inferred_balance_service.rb +19 -0
- data/lib/stripe/services/financial_connections/account_service.rb +3 -1
- data/lib/stripe/services/financial_connections/institution_service.rb +30 -0
- data/lib/stripe/services/financial_connections_service.rb +2 -1
- data/lib/stripe/services/fx_quote_service.rb +27 -0
- data/lib/stripe/services/issuing/credit_underwriting_record_service.rb +74 -0
- data/lib/stripe/services/issuing/dispute_settlement_detail_service.rb +30 -0
- data/lib/stripe/services/issuing/fraud_liability_debit_service.rb +30 -0
- data/lib/stripe/services/issuing_service.rb +5 -1
- data/lib/stripe/services/mandate_service.rb +5 -0
- data/lib/stripe/services/margin_service.rb +50 -0
- data/lib/stripe/services/order_line_item_service.rb +17 -0
- data/lib/stripe/services/order_service.rb +78 -0
- data/lib/stripe/services/payment_intent_service.rb +37 -0
- data/lib/stripe/services/privacy/redaction_job_service.rb +104 -0
- data/lib/stripe/services/privacy/redaction_job_validation_error_service.rb +19 -0
- data/lib/stripe/services/privacy_service.rb +13 -0
- data/lib/stripe/services/quote_line_service.rb +17 -0
- data/lib/stripe/services/quote_preview_invoice_service.rb +17 -0
- data/lib/stripe/services/quote_preview_subscription_schedule_service.rb +17 -0
- data/lib/stripe/services/quote_service.rb +49 -1
- data/lib/stripe/services/subscription_schedule_service.rb +11 -0
- data/lib/stripe/services/subscription_service.rb +11 -0
- data/lib/stripe/services/tax/form_service.rb +37 -0
- data/lib/stripe/services/tax_service.rb +2 -1
- data/lib/stripe/services/terminal/reader_collected_data_service.rb +19 -0
- data/lib/stripe/services/terminal_service.rb +2 -1
- data/lib/stripe/services/v1_services.rb +8 -1
- data/lib/stripe/services/v2/billing/bill_setting_service.rb +61 -0
- data/lib/stripe/services/v2/billing/bill_settings/version_service.rb +34 -0
- data/lib/stripe/services/v2/billing/cadence_service.rb +65 -0
- data/lib/stripe/services/v2/billing/collection_setting_service.rb +61 -0
- data/lib/stripe/services/v2/billing/collection_settings/version_service.rb +34 -0
- data/lib/stripe/services/v2/billing/profile_service.rb +54 -0
- data/lib/stripe/services/v2/billing_service.rb +5 -1
- data/lib/stripe/services/v2/core/account_link_service.rb +21 -0
- data/lib/stripe/services/v2/core/account_service.rb +77 -0
- data/lib/stripe/services/v2/core/account_token_service.rb +32 -0
- data/lib/stripe/services/v2/core/accounts/person_service.rb +67 -0
- data/lib/stripe/services/v2/core/accounts/person_token_service.rb +34 -0
- data/lib/stripe/services/v2/core/vault/gb_bank_account_service.rb +85 -0
- data/lib/stripe/services/v2/core/vault/us_bank_account_service.rb +101 -0
- data/lib/stripe/services/v2/core/vault_service.rb +18 -0
- data/lib/stripe/services/v2/core_service.rb +5 -1
- data/lib/stripe/services/v2/money_management/adjustment_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/financial_account_service.rb +70 -0
- data/lib/stripe/services/v2/money_management/financial_address_service.rb +46 -0
- data/lib/stripe/services/v2/money_management/inbound_transfer_service.rb +45 -0
- data/lib/stripe/services/v2/money_management/outbound_payment_quote_service.rb +34 -0
- data/lib/stripe/services/v2/money_management/outbound_payment_service.rb +62 -0
- data/lib/stripe/services/v2/money_management/outbound_setup_intent_service.rb +73 -0
- data/lib/stripe/services/v2/money_management/outbound_transfer_service.rb +60 -0
- data/lib/stripe/services/v2/money_management/payout_method_service.rb +63 -0
- data/lib/stripe/services/v2/money_management/payout_methods_bank_account_spec_service.rb +23 -0
- data/lib/stripe/services/v2/money_management/received_credit_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/received_debit_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/transaction_entry_service.rb +32 -0
- data/lib/stripe/services/v2/money_management/transaction_service.rb +32 -0
- data/lib/stripe/services/v2/money_management_service.rb +31 -0
- data/lib/stripe/services/v2/test_helper_service.rb +15 -0
- data/lib/stripe/services/v2/test_helpers/financial_address_service.rb +36 -0
- data/lib/stripe/services/v2_services.rb +3 -1
- data/lib/stripe/services.rb +56 -0
- data/lib/stripe/stripe_configuration.rb +3 -1
- data/lib/stripe/stripe_object.rb +1 -1
- data/lib/stripe/util.rb +7 -1
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +53 -0
- data/rbi/stripe.rbi +156300 -79954
- metadata +325 -3
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: stripe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 18.0.
|
|
4
|
+
version: 18.1.0.pre.beta.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stripe
|
|
@@ -40,7 +40,61 @@ files:
|
|
|
40
40
|
- lib/stripe/events/unknown_event_notification.rb
|
|
41
41
|
- lib/stripe/events/v1_billing_meter_error_report_triggered_event.rb
|
|
42
42
|
- lib/stripe/events/v1_billing_meter_no_meter_found_event.rb
|
|
43
|
+
- lib/stripe/events/v2_core_account_closed_event.rb
|
|
44
|
+
- lib/stripe/events/v2_core_account_created_event.rb
|
|
45
|
+
- lib/stripe/events/v2_core_account_including_configuration_customer_capability_status_updated_event.rb
|
|
46
|
+
- lib/stripe/events/v2_core_account_including_configuration_customer_updated_event.rb
|
|
47
|
+
- lib/stripe/events/v2_core_account_including_configuration_merchant_capability_status_updated_event.rb
|
|
48
|
+
- lib/stripe/events/v2_core_account_including_configuration_merchant_updated_event.rb
|
|
49
|
+
- lib/stripe/events/v2_core_account_including_configuration_recipient_capability_status_updated_event.rb
|
|
50
|
+
- lib/stripe/events/v2_core_account_including_configuration_recipient_updated_event.rb
|
|
51
|
+
- lib/stripe/events/v2_core_account_including_configuration_storer_capability_status_updated_event.rb
|
|
52
|
+
- lib/stripe/events/v2_core_account_including_configuration_storer_updated_event.rb
|
|
53
|
+
- lib/stripe/events/v2_core_account_including_defaults_updated_event.rb
|
|
54
|
+
- lib/stripe/events/v2_core_account_including_identity_updated_event.rb
|
|
55
|
+
- lib/stripe/events/v2_core_account_including_requirements_updated_event.rb
|
|
56
|
+
- lib/stripe/events/v2_core_account_link_returned_event.rb
|
|
57
|
+
- lib/stripe/events/v2_core_account_person_created_event.rb
|
|
58
|
+
- lib/stripe/events/v2_core_account_person_deleted_event.rb
|
|
59
|
+
- lib/stripe/events/v2_core_account_person_updated_event.rb
|
|
60
|
+
- lib/stripe/events/v2_core_account_updated_event.rb
|
|
43
61
|
- lib/stripe/events/v2_core_event_destination_ping_event.rb
|
|
62
|
+
- lib/stripe/events/v2_core_health_event_generation_failure_resolved_event.rb
|
|
63
|
+
- lib/stripe/events/v2_money_management_adjustment_created_event.rb
|
|
64
|
+
- lib/stripe/events/v2_money_management_financial_account_created_event.rb
|
|
65
|
+
- lib/stripe/events/v2_money_management_financial_account_updated_event.rb
|
|
66
|
+
- lib/stripe/events/v2_money_management_financial_address_activated_event.rb
|
|
67
|
+
- lib/stripe/events/v2_money_management_financial_address_failed_event.rb
|
|
68
|
+
- lib/stripe/events/v2_money_management_inbound_transfer_available_event.rb
|
|
69
|
+
- lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_failed_event.rb
|
|
70
|
+
- lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_processing_event.rb
|
|
71
|
+
- lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_queued_event.rb
|
|
72
|
+
- lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_returned_event.rb
|
|
73
|
+
- lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_succeeded_event.rb
|
|
74
|
+
- lib/stripe/events/v2_money_management_outbound_payment_canceled_event.rb
|
|
75
|
+
- lib/stripe/events/v2_money_management_outbound_payment_created_event.rb
|
|
76
|
+
- lib/stripe/events/v2_money_management_outbound_payment_failed_event.rb
|
|
77
|
+
- lib/stripe/events/v2_money_management_outbound_payment_posted_event.rb
|
|
78
|
+
- lib/stripe/events/v2_money_management_outbound_payment_returned_event.rb
|
|
79
|
+
- lib/stripe/events/v2_money_management_outbound_payment_updated_event.rb
|
|
80
|
+
- lib/stripe/events/v2_money_management_outbound_transfer_canceled_event.rb
|
|
81
|
+
- lib/stripe/events/v2_money_management_outbound_transfer_created_event.rb
|
|
82
|
+
- lib/stripe/events/v2_money_management_outbound_transfer_failed_event.rb
|
|
83
|
+
- lib/stripe/events/v2_money_management_outbound_transfer_posted_event.rb
|
|
84
|
+
- lib/stripe/events/v2_money_management_outbound_transfer_returned_event.rb
|
|
85
|
+
- lib/stripe/events/v2_money_management_outbound_transfer_updated_event.rb
|
|
86
|
+
- lib/stripe/events/v2_money_management_payout_method_updated_event.rb
|
|
87
|
+
- lib/stripe/events/v2_money_management_received_credit_available_event.rb
|
|
88
|
+
- lib/stripe/events/v2_money_management_received_credit_failed_event.rb
|
|
89
|
+
- lib/stripe/events/v2_money_management_received_credit_returned_event.rb
|
|
90
|
+
- lib/stripe/events/v2_money_management_received_credit_succeeded_event.rb
|
|
91
|
+
- lib/stripe/events/v2_money_management_received_debit_canceled_event.rb
|
|
92
|
+
- lib/stripe/events/v2_money_management_received_debit_failed_event.rb
|
|
93
|
+
- lib/stripe/events/v2_money_management_received_debit_pending_event.rb
|
|
94
|
+
- lib/stripe/events/v2_money_management_received_debit_succeeded_event.rb
|
|
95
|
+
- lib/stripe/events/v2_money_management_received_debit_updated_event.rb
|
|
96
|
+
- lib/stripe/events/v2_money_management_transaction_created_event.rb
|
|
97
|
+
- lib/stripe/events/v2_money_management_transaction_updated_event.rb
|
|
44
98
|
- lib/stripe/instrumentation.rb
|
|
45
99
|
- lib/stripe/list_object.rb
|
|
46
100
|
- lib/stripe/multipart_encoder.rb
|
|
@@ -60,6 +114,9 @@ files:
|
|
|
60
114
|
- lib/stripe/params/account_link_create_params.rb
|
|
61
115
|
- lib/stripe/params/account_list_params.rb
|
|
62
116
|
- lib/stripe/params/account_login_link_create_params.rb
|
|
117
|
+
- lib/stripe/params/account_notice_list_params.rb
|
|
118
|
+
- lib/stripe/params/account_notice_retrieve_params.rb
|
|
119
|
+
- lib/stripe/params/account_notice_update_params.rb
|
|
63
120
|
- lib/stripe/params/account_person_create_params.rb
|
|
64
121
|
- lib/stripe/params/account_person_delete_params.rb
|
|
65
122
|
- lib/stripe/params/account_person_list_params.rb
|
|
@@ -96,6 +153,7 @@ files:
|
|
|
96
153
|
- lib/stripe/params/billing/alert_deactivate_params.rb
|
|
97
154
|
- lib/stripe/params/billing/alert_list_params.rb
|
|
98
155
|
- lib/stripe/params/billing/alert_retrieve_params.rb
|
|
156
|
+
- lib/stripe/params/billing/analytics/meter_usage_retrieve_params.rb
|
|
99
157
|
- lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb
|
|
100
158
|
- lib/stripe/params/billing/credit_balance_transaction_list_params.rb
|
|
101
159
|
- lib/stripe/params/billing/credit_balance_transaction_retrieve_params.rb
|
|
@@ -119,6 +177,12 @@ files:
|
|
|
119
177
|
- lib/stripe/params/billing_portal/configuration_retrieve_params.rb
|
|
120
178
|
- lib/stripe/params/billing_portal/configuration_update_params.rb
|
|
121
179
|
- lib/stripe/params/billing_portal/session_create_params.rb
|
|
180
|
+
- lib/stripe/params/capital/financing_offer_list_params.rb
|
|
181
|
+
- lib/stripe/params/capital/financing_offer_mark_delivered_params.rb
|
|
182
|
+
- lib/stripe/params/capital/financing_offer_retrieve_params.rb
|
|
183
|
+
- lib/stripe/params/capital/financing_summary_retrieve_params.rb
|
|
184
|
+
- lib/stripe/params/capital/financing_transaction_list_params.rb
|
|
185
|
+
- lib/stripe/params/capital/financing_transaction_retrieve_params.rb
|
|
122
186
|
- lib/stripe/params/charge_capture_params.rb
|
|
123
187
|
- lib/stripe/params/charge_create_params.rb
|
|
124
188
|
- lib/stripe/params/charge_list_params.rb
|
|
@@ -208,6 +272,11 @@ files:
|
|
|
208
272
|
- lib/stripe/params/event_retrieve_params.rb
|
|
209
273
|
- lib/stripe/params/exchange_rate_list_params.rb
|
|
210
274
|
- lib/stripe/params/exchange_rate_retrieve_params.rb
|
|
275
|
+
- lib/stripe/params/external_account_create_params.rb
|
|
276
|
+
- lib/stripe/params/external_account_delete_params.rb
|
|
277
|
+
- lib/stripe/params/external_account_list_params.rb
|
|
278
|
+
- lib/stripe/params/external_account_retrieve_params.rb
|
|
279
|
+
- lib/stripe/params/external_account_update_params.rb
|
|
211
280
|
- lib/stripe/params/file_create_params.rb
|
|
212
281
|
- lib/stripe/params/file_link_create_params.rb
|
|
213
282
|
- lib/stripe/params/file_link_list_params.rb
|
|
@@ -216,6 +285,7 @@ files:
|
|
|
216
285
|
- lib/stripe/params/file_list_params.rb
|
|
217
286
|
- lib/stripe/params/file_retrieve_params.rb
|
|
218
287
|
- lib/stripe/params/financial_connections/account_disconnect_params.rb
|
|
288
|
+
- lib/stripe/params/financial_connections/account_inferred_balance_list_params.rb
|
|
219
289
|
- lib/stripe/params/financial_connections/account_list_owners_params.rb
|
|
220
290
|
- lib/stripe/params/financial_connections/account_list_params.rb
|
|
221
291
|
- lib/stripe/params/financial_connections/account_owner_list_params.rb
|
|
@@ -224,6 +294,8 @@ files:
|
|
|
224
294
|
- lib/stripe/params/financial_connections/account_retrieve_params.rb
|
|
225
295
|
- lib/stripe/params/financial_connections/account_subscribe_params.rb
|
|
226
296
|
- lib/stripe/params/financial_connections/account_unsubscribe_params.rb
|
|
297
|
+
- lib/stripe/params/financial_connections/institution_list_params.rb
|
|
298
|
+
- lib/stripe/params/financial_connections/institution_retrieve_params.rb
|
|
227
299
|
- lib/stripe/params/financial_connections/session_create_params.rb
|
|
228
300
|
- lib/stripe/params/financial_connections/session_retrieve_params.rb
|
|
229
301
|
- lib/stripe/params/financial_connections/transaction_list_params.rb
|
|
@@ -231,6 +303,9 @@ files:
|
|
|
231
303
|
- lib/stripe/params/forwarding/request_create_params.rb
|
|
232
304
|
- lib/stripe/params/forwarding/request_list_params.rb
|
|
233
305
|
- lib/stripe/params/forwarding/request_retrieve_params.rb
|
|
306
|
+
- lib/stripe/params/fx_quote_create_params.rb
|
|
307
|
+
- lib/stripe/params/fx_quote_list_params.rb
|
|
308
|
+
- lib/stripe/params/fx_quote_retrieve_params.rb
|
|
234
309
|
- lib/stripe/params/identity/verification_report_list_params.rb
|
|
235
310
|
- lib/stripe/params/identity/verification_report_retrieve_params.rb
|
|
236
311
|
- lib/stripe/params/identity/verification_session_cancel_params.rb
|
|
@@ -293,11 +368,21 @@ files:
|
|
|
293
368
|
- lib/stripe/params/issuing/cardholder_list_params.rb
|
|
294
369
|
- lib/stripe/params/issuing/cardholder_retrieve_params.rb
|
|
295
370
|
- lib/stripe/params/issuing/cardholder_update_params.rb
|
|
371
|
+
- lib/stripe/params/issuing/credit_underwriting_record_correct_params.rb
|
|
372
|
+
- lib/stripe/params/issuing/credit_underwriting_record_create_from_application_params.rb
|
|
373
|
+
- lib/stripe/params/issuing/credit_underwriting_record_create_from_proactive_review_params.rb
|
|
374
|
+
- lib/stripe/params/issuing/credit_underwriting_record_list_params.rb
|
|
375
|
+
- lib/stripe/params/issuing/credit_underwriting_record_report_decision_params.rb
|
|
376
|
+
- lib/stripe/params/issuing/credit_underwriting_record_retrieve_params.rb
|
|
296
377
|
- lib/stripe/params/issuing/dispute_create_params.rb
|
|
297
378
|
- lib/stripe/params/issuing/dispute_list_params.rb
|
|
298
379
|
- lib/stripe/params/issuing/dispute_retrieve_params.rb
|
|
380
|
+
- lib/stripe/params/issuing/dispute_settlement_detail_list_params.rb
|
|
381
|
+
- lib/stripe/params/issuing/dispute_settlement_detail_retrieve_params.rb
|
|
299
382
|
- lib/stripe/params/issuing/dispute_submit_params.rb
|
|
300
383
|
- lib/stripe/params/issuing/dispute_update_params.rb
|
|
384
|
+
- lib/stripe/params/issuing/fraud_liability_debit_list_params.rb
|
|
385
|
+
- lib/stripe/params/issuing/fraud_liability_debit_retrieve_params.rb
|
|
301
386
|
- lib/stripe/params/issuing/personalization_design_activate_params.rb
|
|
302
387
|
- lib/stripe/params/issuing/personalization_design_create_params.rb
|
|
303
388
|
- lib/stripe/params/issuing/personalization_design_deactivate_params.rb
|
|
@@ -316,7 +401,21 @@ files:
|
|
|
316
401
|
- lib/stripe/params/issuing/transaction_refund_params.rb
|
|
317
402
|
- lib/stripe/params/issuing/transaction_retrieve_params.rb
|
|
318
403
|
- lib/stripe/params/issuing/transaction_update_params.rb
|
|
404
|
+
- lib/stripe/params/mandate_list_params.rb
|
|
319
405
|
- lib/stripe/params/mandate_retrieve_params.rb
|
|
406
|
+
- lib/stripe/params/margin_create_params.rb
|
|
407
|
+
- lib/stripe/params/margin_list_params.rb
|
|
408
|
+
- lib/stripe/params/margin_retrieve_params.rb
|
|
409
|
+
- lib/stripe/params/margin_update_params.rb
|
|
410
|
+
- lib/stripe/params/order_cancel_params.rb
|
|
411
|
+
- lib/stripe/params/order_create_params.rb
|
|
412
|
+
- lib/stripe/params/order_line_item_list_params.rb
|
|
413
|
+
- lib/stripe/params/order_list_line_items_params.rb
|
|
414
|
+
- lib/stripe/params/order_list_params.rb
|
|
415
|
+
- lib/stripe/params/order_reopen_params.rb
|
|
416
|
+
- lib/stripe/params/order_retrieve_params.rb
|
|
417
|
+
- lib/stripe/params/order_submit_params.rb
|
|
418
|
+
- lib/stripe/params/order_update_params.rb
|
|
320
419
|
- lib/stripe/params/payment_attempt_record_list_params.rb
|
|
321
420
|
- lib/stripe/params/payment_attempt_record_retrieve_params.rb
|
|
322
421
|
- lib/stripe/params/payment_intent_amount_details_line_item_list_params.rb
|
|
@@ -325,10 +424,12 @@ files:
|
|
|
325
424
|
- lib/stripe/params/payment_intent_capture_params.rb
|
|
326
425
|
- lib/stripe/params/payment_intent_confirm_params.rb
|
|
327
426
|
- lib/stripe/params/payment_intent_create_params.rb
|
|
427
|
+
- lib/stripe/params/payment_intent_decrement_authorization_params.rb
|
|
328
428
|
- lib/stripe/params/payment_intent_increment_authorization_params.rb
|
|
329
429
|
- lib/stripe/params/payment_intent_list_params.rb
|
|
330
430
|
- lib/stripe/params/payment_intent_retrieve_params.rb
|
|
331
431
|
- lib/stripe/params/payment_intent_search_params.rb
|
|
432
|
+
- lib/stripe/params/payment_intent_trigger_action_params.rb
|
|
332
433
|
- lib/stripe/params/payment_intent_update_params.rb
|
|
333
434
|
- lib/stripe/params/payment_intent_verify_microdeposits_params.rb
|
|
334
435
|
- lib/stripe/params/payment_link_create_params.rb
|
|
@@ -376,6 +477,14 @@ files:
|
|
|
376
477
|
- lib/stripe/params/price_retrieve_params.rb
|
|
377
478
|
- lib/stripe/params/price_search_params.rb
|
|
378
479
|
- lib/stripe/params/price_update_params.rb
|
|
480
|
+
- lib/stripe/params/privacy/redaction_job_cancel_params.rb
|
|
481
|
+
- lib/stripe/params/privacy/redaction_job_create_params.rb
|
|
482
|
+
- lib/stripe/params/privacy/redaction_job_list_params.rb
|
|
483
|
+
- lib/stripe/params/privacy/redaction_job_retrieve_params.rb
|
|
484
|
+
- lib/stripe/params/privacy/redaction_job_run_params.rb
|
|
485
|
+
- lib/stripe/params/privacy/redaction_job_update_params.rb
|
|
486
|
+
- lib/stripe/params/privacy/redaction_job_validate_params.rb
|
|
487
|
+
- lib/stripe/params/privacy/redaction_job_validation_error_list_params.rb
|
|
379
488
|
- lib/stripe/params/product_create_params.rb
|
|
380
489
|
- lib/stripe/params/product_delete_params.rb
|
|
381
490
|
- lib/stripe/params/product_feature_create_params.rb
|
|
@@ -396,10 +505,18 @@ files:
|
|
|
396
505
|
- lib/stripe/params/quote_create_params.rb
|
|
397
506
|
- lib/stripe/params/quote_finalize_quote_params.rb
|
|
398
507
|
- lib/stripe/params/quote_line_item_list_params.rb
|
|
508
|
+
- lib/stripe/params/quote_line_list_params.rb
|
|
399
509
|
- lib/stripe/params/quote_list_computed_upfront_line_items_params.rb
|
|
400
510
|
- lib/stripe/params/quote_list_line_items_params.rb
|
|
511
|
+
- lib/stripe/params/quote_list_lines_params.rb
|
|
401
512
|
- lib/stripe/params/quote_list_params.rb
|
|
513
|
+
- lib/stripe/params/quote_list_preview_invoice_lines_params.rb
|
|
514
|
+
- lib/stripe/params/quote_mark_draft_params.rb
|
|
515
|
+
- lib/stripe/params/quote_mark_stale_params.rb
|
|
402
516
|
- lib/stripe/params/quote_pdf_params.rb
|
|
517
|
+
- lib/stripe/params/quote_preview_invoice_list_params.rb
|
|
518
|
+
- lib/stripe/params/quote_preview_subscription_schedule_list_params.rb
|
|
519
|
+
- lib/stripe/params/quote_reestimate_params.rb
|
|
403
520
|
- lib/stripe/params/quote_retrieve_params.rb
|
|
404
521
|
- lib/stripe/params/quote_update_params.rb
|
|
405
522
|
- lib/stripe/params/radar/early_fraud_warning_list_params.rb
|
|
@@ -447,6 +564,7 @@ files:
|
|
|
447
564
|
- lib/stripe/params/source_transaction_list_params.rb
|
|
448
565
|
- lib/stripe/params/source_update_params.rb
|
|
449
566
|
- lib/stripe/params/source_verify_params.rb
|
|
567
|
+
- lib/stripe/params/subscription_attach_cadence_params.rb
|
|
450
568
|
- lib/stripe/params/subscription_cancel_params.rb
|
|
451
569
|
- lib/stripe/params/subscription_create_params.rb
|
|
452
570
|
- lib/stripe/params/subscription_delete_discount_params.rb
|
|
@@ -459,6 +577,7 @@ files:
|
|
|
459
577
|
- lib/stripe/params/subscription_migrate_params.rb
|
|
460
578
|
- lib/stripe/params/subscription_resume_params.rb
|
|
461
579
|
- lib/stripe/params/subscription_retrieve_params.rb
|
|
580
|
+
- lib/stripe/params/subscription_schedule_amend_params.rb
|
|
462
581
|
- lib/stripe/params/subscription_schedule_cancel_params.rb
|
|
463
582
|
- lib/stripe/params/subscription_schedule_create_params.rb
|
|
464
583
|
- lib/stripe/params/subscription_schedule_list_params.rb
|
|
@@ -472,6 +591,9 @@ files:
|
|
|
472
591
|
- lib/stripe/params/tax/calculation_line_item_list_params.rb
|
|
473
592
|
- lib/stripe/params/tax/calculation_list_line_items_params.rb
|
|
474
593
|
- lib/stripe/params/tax/calculation_retrieve_params.rb
|
|
594
|
+
- lib/stripe/params/tax/form_list_params.rb
|
|
595
|
+
- lib/stripe/params/tax/form_pdf_params.rb
|
|
596
|
+
- lib/stripe/params/tax/form_retrieve_params.rb
|
|
475
597
|
- lib/stripe/params/tax/registration_create_params.rb
|
|
476
598
|
- lib/stripe/params/tax/registration_list_params.rb
|
|
477
599
|
- lib/stripe/params/tax/registration_retrieve_params.rb
|
|
@@ -508,6 +630,7 @@ files:
|
|
|
508
630
|
- lib/stripe/params/terminal/reader_cancel_action_params.rb
|
|
509
631
|
- lib/stripe/params/terminal/reader_collect_inputs_params.rb
|
|
510
632
|
- lib/stripe/params/terminal/reader_collect_payment_method_params.rb
|
|
633
|
+
- lib/stripe/params/terminal/reader_collected_data_retrieve_params.rb
|
|
511
634
|
- lib/stripe/params/terminal/reader_confirm_payment_intent_params.rb
|
|
512
635
|
- lib/stripe/params/terminal/reader_create_params.rb
|
|
513
636
|
- lib/stripe/params/terminal/reader_delete_params.rb
|
|
@@ -626,10 +749,46 @@ files:
|
|
|
626
749
|
- lib/stripe/params/treasury/transaction_entry_retrieve_params.rb
|
|
627
750
|
- lib/stripe/params/treasury/transaction_list_params.rb
|
|
628
751
|
- lib/stripe/params/treasury/transaction_retrieve_params.rb
|
|
752
|
+
- lib/stripe/params/v2/billing/bill_setting_create_params.rb
|
|
753
|
+
- lib/stripe/params/v2/billing/bill_setting_list_params.rb
|
|
754
|
+
- lib/stripe/params/v2/billing/bill_setting_retrieve_params.rb
|
|
755
|
+
- lib/stripe/params/v2/billing/bill_setting_update_params.rb
|
|
756
|
+
- lib/stripe/params/v2/billing/bill_settings/version_list_params.rb
|
|
757
|
+
- lib/stripe/params/v2/billing/bill_settings/version_retrieve_params.rb
|
|
758
|
+
- lib/stripe/params/v2/billing/cadence_cancel_params.rb
|
|
759
|
+
- lib/stripe/params/v2/billing/cadence_create_params.rb
|
|
760
|
+
- lib/stripe/params/v2/billing/cadence_list_params.rb
|
|
761
|
+
- lib/stripe/params/v2/billing/cadence_retrieve_params.rb
|
|
762
|
+
- lib/stripe/params/v2/billing/cadence_update_params.rb
|
|
763
|
+
- lib/stripe/params/v2/billing/collection_setting_create_params.rb
|
|
764
|
+
- lib/stripe/params/v2/billing/collection_setting_list_params.rb
|
|
765
|
+
- lib/stripe/params/v2/billing/collection_setting_retrieve_params.rb
|
|
766
|
+
- lib/stripe/params/v2/billing/collection_setting_update_params.rb
|
|
767
|
+
- lib/stripe/params/v2/billing/collection_settings/version_list_params.rb
|
|
768
|
+
- lib/stripe/params/v2/billing/collection_settings/version_retrieve_params.rb
|
|
629
769
|
- lib/stripe/params/v2/billing/meter_event_adjustment_create_params.rb
|
|
630
770
|
- lib/stripe/params/v2/billing/meter_event_create_params.rb
|
|
631
771
|
- lib/stripe/params/v2/billing/meter_event_session_create_params.rb
|
|
632
772
|
- lib/stripe/params/v2/billing/meter_event_stream_create_params.rb
|
|
773
|
+
- lib/stripe/params/v2/billing/profile_create_params.rb
|
|
774
|
+
- lib/stripe/params/v2/billing/profile_list_params.rb
|
|
775
|
+
- lib/stripe/params/v2/billing/profile_retrieve_params.rb
|
|
776
|
+
- lib/stripe/params/v2/billing/profile_update_params.rb
|
|
777
|
+
- lib/stripe/params/v2/core/account_close_params.rb
|
|
778
|
+
- lib/stripe/params/v2/core/account_create_params.rb
|
|
779
|
+
- lib/stripe/params/v2/core/account_link_create_params.rb
|
|
780
|
+
- lib/stripe/params/v2/core/account_list_params.rb
|
|
781
|
+
- lib/stripe/params/v2/core/account_retrieve_params.rb
|
|
782
|
+
- lib/stripe/params/v2/core/account_token_create_params.rb
|
|
783
|
+
- lib/stripe/params/v2/core/account_token_retrieve_params.rb
|
|
784
|
+
- lib/stripe/params/v2/core/account_update_params.rb
|
|
785
|
+
- lib/stripe/params/v2/core/accounts/person_create_params.rb
|
|
786
|
+
- lib/stripe/params/v2/core/accounts/person_delete_params.rb
|
|
787
|
+
- lib/stripe/params/v2/core/accounts/person_list_params.rb
|
|
788
|
+
- lib/stripe/params/v2/core/accounts/person_retrieve_params.rb
|
|
789
|
+
- lib/stripe/params/v2/core/accounts/person_token_create_params.rb
|
|
790
|
+
- lib/stripe/params/v2/core/accounts/person_token_retrieve_params.rb
|
|
791
|
+
- lib/stripe/params/v2/core/accounts/person_update_params.rb
|
|
633
792
|
- lib/stripe/params/v2/core/event_destination_create_params.rb
|
|
634
793
|
- lib/stripe/params/v2/core/event_destination_delete_params.rb
|
|
635
794
|
- lib/stripe/params/v2/core/event_destination_disable_params.rb
|
|
@@ -640,6 +799,62 @@ files:
|
|
|
640
799
|
- lib/stripe/params/v2/core/event_destination_update_params.rb
|
|
641
800
|
- lib/stripe/params/v2/core/event_list_params.rb
|
|
642
801
|
- lib/stripe/params/v2/core/event_retrieve_params.rb
|
|
802
|
+
- lib/stripe/params/v2/core/vault/gb_bank_account_acknowledge_confirmation_of_payee_params.rb
|
|
803
|
+
- lib/stripe/params/v2/core/vault/gb_bank_account_archive_params.rb
|
|
804
|
+
- lib/stripe/params/v2/core/vault/gb_bank_account_create_params.rb
|
|
805
|
+
- lib/stripe/params/v2/core/vault/gb_bank_account_initiate_confirmation_of_payee_params.rb
|
|
806
|
+
- lib/stripe/params/v2/core/vault/gb_bank_account_list_params.rb
|
|
807
|
+
- lib/stripe/params/v2/core/vault/gb_bank_account_retrieve_params.rb
|
|
808
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_archive_params.rb
|
|
809
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_confirm_microdeposits_params.rb
|
|
810
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_create_params.rb
|
|
811
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_list_params.rb
|
|
812
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_retrieve_params.rb
|
|
813
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_send_microdeposits_params.rb
|
|
814
|
+
- lib/stripe/params/v2/core/vault/us_bank_account_update_params.rb
|
|
815
|
+
- lib/stripe/params/v2/money_management/adjustment_list_params.rb
|
|
816
|
+
- lib/stripe/params/v2/money_management/adjustment_retrieve_params.rb
|
|
817
|
+
- lib/stripe/params/v2/money_management/financial_account_close_params.rb
|
|
818
|
+
- lib/stripe/params/v2/money_management/financial_account_create_params.rb
|
|
819
|
+
- lib/stripe/params/v2/money_management/financial_account_list_params.rb
|
|
820
|
+
- lib/stripe/params/v2/money_management/financial_account_retrieve_params.rb
|
|
821
|
+
- lib/stripe/params/v2/money_management/financial_account_update_params.rb
|
|
822
|
+
- lib/stripe/params/v2/money_management/financial_address_create_params.rb
|
|
823
|
+
- lib/stripe/params/v2/money_management/financial_address_list_params.rb
|
|
824
|
+
- lib/stripe/params/v2/money_management/financial_address_retrieve_params.rb
|
|
825
|
+
- lib/stripe/params/v2/money_management/inbound_transfer_create_params.rb
|
|
826
|
+
- lib/stripe/params/v2/money_management/inbound_transfer_list_params.rb
|
|
827
|
+
- lib/stripe/params/v2/money_management/inbound_transfer_retrieve_params.rb
|
|
828
|
+
- lib/stripe/params/v2/money_management/outbound_payment_cancel_params.rb
|
|
829
|
+
- lib/stripe/params/v2/money_management/outbound_payment_create_params.rb
|
|
830
|
+
- lib/stripe/params/v2/money_management/outbound_payment_list_params.rb
|
|
831
|
+
- lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb
|
|
832
|
+
- lib/stripe/params/v2/money_management/outbound_payment_quote_retrieve_params.rb
|
|
833
|
+
- lib/stripe/params/v2/money_management/outbound_payment_retrieve_params.rb
|
|
834
|
+
- lib/stripe/params/v2/money_management/outbound_setup_intent_cancel_params.rb
|
|
835
|
+
- lib/stripe/params/v2/money_management/outbound_setup_intent_create_params.rb
|
|
836
|
+
- lib/stripe/params/v2/money_management/outbound_setup_intent_list_params.rb
|
|
837
|
+
- lib/stripe/params/v2/money_management/outbound_setup_intent_retrieve_params.rb
|
|
838
|
+
- lib/stripe/params/v2/money_management/outbound_setup_intent_update_params.rb
|
|
839
|
+
- lib/stripe/params/v2/money_management/outbound_transfer_cancel_params.rb
|
|
840
|
+
- lib/stripe/params/v2/money_management/outbound_transfer_create_params.rb
|
|
841
|
+
- lib/stripe/params/v2/money_management/outbound_transfer_list_params.rb
|
|
842
|
+
- lib/stripe/params/v2/money_management/outbound_transfer_retrieve_params.rb
|
|
843
|
+
- lib/stripe/params/v2/money_management/payout_method_archive_params.rb
|
|
844
|
+
- lib/stripe/params/v2/money_management/payout_method_list_params.rb
|
|
845
|
+
- lib/stripe/params/v2/money_management/payout_method_retrieve_params.rb
|
|
846
|
+
- lib/stripe/params/v2/money_management/payout_method_unarchive_params.rb
|
|
847
|
+
- lib/stripe/params/v2/money_management/payout_methods_bank_account_spec_retrieve_params.rb
|
|
848
|
+
- lib/stripe/params/v2/money_management/received_credit_list_params.rb
|
|
849
|
+
- lib/stripe/params/v2/money_management/received_credit_retrieve_params.rb
|
|
850
|
+
- lib/stripe/params/v2/money_management/received_debit_list_params.rb
|
|
851
|
+
- lib/stripe/params/v2/money_management/received_debit_retrieve_params.rb
|
|
852
|
+
- lib/stripe/params/v2/money_management/transaction_entry_list_params.rb
|
|
853
|
+
- lib/stripe/params/v2/money_management/transaction_entry_retrieve_params.rb
|
|
854
|
+
- lib/stripe/params/v2/money_management/transaction_list_params.rb
|
|
855
|
+
- lib/stripe/params/v2/money_management/transaction_retrieve_params.rb
|
|
856
|
+
- lib/stripe/params/v2/test_helpers/financial_address_credit_params.rb
|
|
857
|
+
- lib/stripe/params/v2/test_helpers/financial_address_generate_microdeposits_params.rb
|
|
643
858
|
- lib/stripe/params/webhook_endpoint_create_params.rb
|
|
644
859
|
- lib/stripe/params/webhook_endpoint_delete_params.rb
|
|
645
860
|
- lib/stripe/params/webhook_endpoint_list_params.rb
|
|
@@ -650,6 +865,7 @@ files:
|
|
|
650
865
|
- lib/stripe/resources.rb
|
|
651
866
|
- lib/stripe/resources/account.rb
|
|
652
867
|
- lib/stripe/resources/account_link.rb
|
|
868
|
+
- lib/stripe/resources/account_notice.rb
|
|
653
869
|
- lib/stripe/resources/account_session.rb
|
|
654
870
|
- lib/stripe/resources/alipay_account.rb
|
|
655
871
|
- lib/stripe/resources/apple_pay_domain.rb
|
|
@@ -663,6 +879,8 @@ files:
|
|
|
663
879
|
- lib/stripe/resources/bank_account.rb
|
|
664
880
|
- lib/stripe/resources/billing/alert.rb
|
|
665
881
|
- lib/stripe/resources/billing/alert_triggered.rb
|
|
882
|
+
- lib/stripe/resources/billing/analytics/meter_usage.rb
|
|
883
|
+
- lib/stripe/resources/billing/analytics/meter_usage_row.rb
|
|
666
884
|
- lib/stripe/resources/billing/credit_balance_summary.rb
|
|
667
885
|
- lib/stripe/resources/billing/credit_balance_transaction.rb
|
|
668
886
|
- lib/stripe/resources/billing/credit_grant.rb
|
|
@@ -673,6 +891,9 @@ files:
|
|
|
673
891
|
- lib/stripe/resources/billing_portal/configuration.rb
|
|
674
892
|
- lib/stripe/resources/billing_portal/session.rb
|
|
675
893
|
- lib/stripe/resources/capability.rb
|
|
894
|
+
- lib/stripe/resources/capital/financing_offer.rb
|
|
895
|
+
- lib/stripe/resources/capital/financing_summary.rb
|
|
896
|
+
- lib/stripe/resources/capital/financing_transaction.rb
|
|
676
897
|
- lib/stripe/resources/card.rb
|
|
677
898
|
- lib/stripe/resources/cash_balance.rb
|
|
678
899
|
- lib/stripe/resources/charge.rb
|
|
@@ -701,12 +922,15 @@ files:
|
|
|
701
922
|
- lib/stripe/resources/file.rb
|
|
702
923
|
- lib/stripe/resources/file_link.rb
|
|
703
924
|
- lib/stripe/resources/financial_connections/account.rb
|
|
925
|
+
- lib/stripe/resources/financial_connections/account_inferred_balance.rb
|
|
704
926
|
- lib/stripe/resources/financial_connections/account_owner.rb
|
|
705
927
|
- lib/stripe/resources/financial_connections/account_ownership.rb
|
|
928
|
+
- lib/stripe/resources/financial_connections/institution.rb
|
|
706
929
|
- lib/stripe/resources/financial_connections/session.rb
|
|
707
930
|
- lib/stripe/resources/financial_connections/transaction.rb
|
|
708
931
|
- lib/stripe/resources/forwarding/request.rb
|
|
709
932
|
- lib/stripe/resources/funding_instructions.rb
|
|
933
|
+
- lib/stripe/resources/fx_quote.rb
|
|
710
934
|
- lib/stripe/resources/identity/verification_report.rb
|
|
711
935
|
- lib/stripe/resources/identity/verification_session.rb
|
|
712
936
|
- lib/stripe/resources/invoice.rb
|
|
@@ -717,14 +941,20 @@ files:
|
|
|
717
941
|
- lib/stripe/resources/issuing/authorization.rb
|
|
718
942
|
- lib/stripe/resources/issuing/card.rb
|
|
719
943
|
- lib/stripe/resources/issuing/cardholder.rb
|
|
944
|
+
- lib/stripe/resources/issuing/credit_underwriting_record.rb
|
|
720
945
|
- lib/stripe/resources/issuing/dispute.rb
|
|
946
|
+
- lib/stripe/resources/issuing/dispute_settlement_detail.rb
|
|
947
|
+
- lib/stripe/resources/issuing/fraud_liability_debit.rb
|
|
721
948
|
- lib/stripe/resources/issuing/personalization_design.rb
|
|
722
949
|
- lib/stripe/resources/issuing/physical_bundle.rb
|
|
950
|
+
- lib/stripe/resources/issuing/settlement.rb
|
|
723
951
|
- lib/stripe/resources/issuing/token.rb
|
|
724
952
|
- lib/stripe/resources/issuing/transaction.rb
|
|
725
953
|
- lib/stripe/resources/line_item.rb
|
|
726
954
|
- lib/stripe/resources/login_link.rb
|
|
727
955
|
- lib/stripe/resources/mandate.rb
|
|
956
|
+
- lib/stripe/resources/margin.rb
|
|
957
|
+
- lib/stripe/resources/order.rb
|
|
728
958
|
- lib/stripe/resources/payment_attempt_record.rb
|
|
729
959
|
- lib/stripe/resources/payment_intent.rb
|
|
730
960
|
- lib/stripe/resources/payment_intent_amount_details_line_item.rb
|
|
@@ -737,10 +967,15 @@ files:
|
|
|
737
967
|
- lib/stripe/resources/person.rb
|
|
738
968
|
- lib/stripe/resources/plan.rb
|
|
739
969
|
- lib/stripe/resources/price.rb
|
|
970
|
+
- lib/stripe/resources/privacy/redaction_job.rb
|
|
971
|
+
- lib/stripe/resources/privacy/redaction_job_validation_error.rb
|
|
740
972
|
- lib/stripe/resources/product.rb
|
|
741
973
|
- lib/stripe/resources/product_feature.rb
|
|
742
974
|
- lib/stripe/resources/promotion_code.rb
|
|
743
975
|
- lib/stripe/resources/quote.rb
|
|
976
|
+
- lib/stripe/resources/quote_line.rb
|
|
977
|
+
- lib/stripe/resources/quote_preview_invoice.rb
|
|
978
|
+
- lib/stripe/resources/quote_preview_subscription_schedule.rb
|
|
744
979
|
- lib/stripe/resources/radar/early_fraud_warning.rb
|
|
745
980
|
- lib/stripe/resources/radar/value_list.rb
|
|
746
981
|
- lib/stripe/resources/radar/value_list_item.rb
|
|
@@ -764,6 +999,7 @@ files:
|
|
|
764
999
|
- lib/stripe/resources/tax/association.rb
|
|
765
1000
|
- lib/stripe/resources/tax/calculation.rb
|
|
766
1001
|
- lib/stripe/resources/tax/calculation_line_item.rb
|
|
1002
|
+
- lib/stripe/resources/tax/form.rb
|
|
767
1003
|
- lib/stripe/resources/tax/registration.rb
|
|
768
1004
|
- lib/stripe/resources/tax/settings.rb
|
|
769
1005
|
- lib/stripe/resources/tax/transaction.rb
|
|
@@ -777,6 +1013,7 @@ files:
|
|
|
777
1013
|
- lib/stripe/resources/terminal/location.rb
|
|
778
1014
|
- lib/stripe/resources/terminal/onboarding_link.rb
|
|
779
1015
|
- lib/stripe/resources/terminal/reader.rb
|
|
1016
|
+
- lib/stripe/resources/terminal/reader_collected_data.rb
|
|
780
1017
|
- lib/stripe/resources/test_helpers/test_clock.rb
|
|
781
1018
|
- lib/stripe/resources/token.rb
|
|
782
1019
|
- lib/stripe/resources/topup.rb
|
|
@@ -793,13 +1030,42 @@ files:
|
|
|
793
1030
|
- lib/stripe/resources/treasury/transaction.rb
|
|
794
1031
|
- lib/stripe/resources/treasury/transaction_entry.rb
|
|
795
1032
|
- lib/stripe/resources/v2/amount.rb
|
|
1033
|
+
- lib/stripe/resources/v2/billing/bill_setting.rb
|
|
1034
|
+
- lib/stripe/resources/v2/billing/bill_setting_version.rb
|
|
1035
|
+
- lib/stripe/resources/v2/billing/cadence.rb
|
|
1036
|
+
- lib/stripe/resources/v2/billing/collection_setting.rb
|
|
1037
|
+
- lib/stripe/resources/v2/billing/collection_setting_version.rb
|
|
796
1038
|
- lib/stripe/resources/v2/billing/meter_event.rb
|
|
797
1039
|
- lib/stripe/resources/v2/billing/meter_event_adjustment.rb
|
|
798
1040
|
- lib/stripe/resources/v2/billing/meter_event_session.rb
|
|
1041
|
+
- lib/stripe/resources/v2/billing/profile.rb
|
|
1042
|
+
- lib/stripe/resources/v2/core/account.rb
|
|
1043
|
+
- lib/stripe/resources/v2/core/account_link.rb
|
|
1044
|
+
- lib/stripe/resources/v2/core/account_person.rb
|
|
1045
|
+
- lib/stripe/resources/v2/core/account_person_token.rb
|
|
1046
|
+
- lib/stripe/resources/v2/core/account_token.rb
|
|
799
1047
|
- lib/stripe/resources/v2/core/event.rb
|
|
800
1048
|
- lib/stripe/resources/v2/core/event_destination.rb
|
|
801
1049
|
- lib/stripe/resources/v2/core/event_notification.rb
|
|
1050
|
+
- lib/stripe/resources/v2/core/vault/gb_bank_account.rb
|
|
1051
|
+
- lib/stripe/resources/v2/core/vault/us_bank_account.rb
|
|
802
1052
|
- lib/stripe/resources/v2/deleted_object.rb
|
|
1053
|
+
- lib/stripe/resources/v2/financial_address_credit_simulation.rb
|
|
1054
|
+
- lib/stripe/resources/v2/financial_address_generated_microdeposits.rb
|
|
1055
|
+
- lib/stripe/resources/v2/money_management/adjustment.rb
|
|
1056
|
+
- lib/stripe/resources/v2/money_management/financial_account.rb
|
|
1057
|
+
- lib/stripe/resources/v2/money_management/financial_address.rb
|
|
1058
|
+
- lib/stripe/resources/v2/money_management/inbound_transfer.rb
|
|
1059
|
+
- lib/stripe/resources/v2/money_management/outbound_payment.rb
|
|
1060
|
+
- lib/stripe/resources/v2/money_management/outbound_payment_quote.rb
|
|
1061
|
+
- lib/stripe/resources/v2/money_management/outbound_setup_intent.rb
|
|
1062
|
+
- lib/stripe/resources/v2/money_management/outbound_transfer.rb
|
|
1063
|
+
- lib/stripe/resources/v2/money_management/payout_method.rb
|
|
1064
|
+
- lib/stripe/resources/v2/money_management/payout_methods_bank_account_spec.rb
|
|
1065
|
+
- lib/stripe/resources/v2/money_management/received_credit.rb
|
|
1066
|
+
- lib/stripe/resources/v2/money_management/received_debit.rb
|
|
1067
|
+
- lib/stripe/resources/v2/money_management/transaction.rb
|
|
1068
|
+
- lib/stripe/resources/v2/money_management/transaction_entry.rb
|
|
803
1069
|
- lib/stripe/resources/webhook_endpoint.rb
|
|
804
1070
|
- lib/stripe/search_result_object.rb
|
|
805
1071
|
- lib/stripe/services.rb
|
|
@@ -807,6 +1073,7 @@ files:
|
|
|
807
1073
|
- lib/stripe/services/account_external_account_service.rb
|
|
808
1074
|
- lib/stripe/services/account_link_service.rb
|
|
809
1075
|
- lib/stripe/services/account_login_link_service.rb
|
|
1076
|
+
- lib/stripe/services/account_notice_service.rb
|
|
810
1077
|
- lib/stripe/services/account_person_service.rb
|
|
811
1078
|
- lib/stripe/services/account_service.rb
|
|
812
1079
|
- lib/stripe/services/account_session_service.rb
|
|
@@ -819,6 +1086,8 @@ files:
|
|
|
819
1086
|
- lib/stripe/services/balance_settings_service.rb
|
|
820
1087
|
- lib/stripe/services/balance_transaction_service.rb
|
|
821
1088
|
- lib/stripe/services/billing/alert_service.rb
|
|
1089
|
+
- lib/stripe/services/billing/analytics/meter_usage_service.rb
|
|
1090
|
+
- lib/stripe/services/billing/analytics_service.rb
|
|
822
1091
|
- lib/stripe/services/billing/credit_balance_summary_service.rb
|
|
823
1092
|
- lib/stripe/services/billing/credit_balance_transaction_service.rb
|
|
824
1093
|
- lib/stripe/services/billing/credit_grant_service.rb
|
|
@@ -830,6 +1099,10 @@ files:
|
|
|
830
1099
|
- lib/stripe/services/billing_portal/session_service.rb
|
|
831
1100
|
- lib/stripe/services/billing_portal_service.rb
|
|
832
1101
|
- lib/stripe/services/billing_service.rb
|
|
1102
|
+
- lib/stripe/services/capital/financing_offer_service.rb
|
|
1103
|
+
- lib/stripe/services/capital/financing_summary_service.rb
|
|
1104
|
+
- lib/stripe/services/capital/financing_transaction_service.rb
|
|
1105
|
+
- lib/stripe/services/capital_service.rb
|
|
833
1106
|
- lib/stripe/services/charge_service.rb
|
|
834
1107
|
- lib/stripe/services/checkout/session_line_item_service.rb
|
|
835
1108
|
- lib/stripe/services/checkout/session_service.rb
|
|
@@ -860,15 +1133,19 @@ files:
|
|
|
860
1133
|
- lib/stripe/services/ephemeral_key_service.rb
|
|
861
1134
|
- lib/stripe/services/event_service.rb
|
|
862
1135
|
- lib/stripe/services/exchange_rate_service.rb
|
|
1136
|
+
- lib/stripe/services/external_account_service.rb
|
|
863
1137
|
- lib/stripe/services/file_link_service.rb
|
|
864
1138
|
- lib/stripe/services/file_service.rb
|
|
1139
|
+
- lib/stripe/services/financial_connections/account_inferred_balance_service.rb
|
|
865
1140
|
- lib/stripe/services/financial_connections/account_owner_service.rb
|
|
866
1141
|
- lib/stripe/services/financial_connections/account_service.rb
|
|
1142
|
+
- lib/stripe/services/financial_connections/institution_service.rb
|
|
867
1143
|
- lib/stripe/services/financial_connections/session_service.rb
|
|
868
1144
|
- lib/stripe/services/financial_connections/transaction_service.rb
|
|
869
1145
|
- lib/stripe/services/financial_connections_service.rb
|
|
870
1146
|
- lib/stripe/services/forwarding/request_service.rb
|
|
871
1147
|
- lib/stripe/services/forwarding_service.rb
|
|
1148
|
+
- lib/stripe/services/fx_quote_service.rb
|
|
872
1149
|
- lib/stripe/services/identity/verification_report_service.rb
|
|
873
1150
|
- lib/stripe/services/identity/verification_session_service.rb
|
|
874
1151
|
- lib/stripe/services/identity_service.rb
|
|
@@ -880,14 +1157,20 @@ files:
|
|
|
880
1157
|
- lib/stripe/services/issuing/authorization_service.rb
|
|
881
1158
|
- lib/stripe/services/issuing/card_service.rb
|
|
882
1159
|
- lib/stripe/services/issuing/cardholder_service.rb
|
|
1160
|
+
- lib/stripe/services/issuing/credit_underwriting_record_service.rb
|
|
883
1161
|
- lib/stripe/services/issuing/dispute_service.rb
|
|
1162
|
+
- lib/stripe/services/issuing/dispute_settlement_detail_service.rb
|
|
1163
|
+
- lib/stripe/services/issuing/fraud_liability_debit_service.rb
|
|
884
1164
|
- lib/stripe/services/issuing/personalization_design_service.rb
|
|
885
1165
|
- lib/stripe/services/issuing/physical_bundle_service.rb
|
|
886
1166
|
- lib/stripe/services/issuing/token_service.rb
|
|
887
1167
|
- lib/stripe/services/issuing/transaction_service.rb
|
|
888
1168
|
- lib/stripe/services/issuing_service.rb
|
|
889
1169
|
- lib/stripe/services/mandate_service.rb
|
|
1170
|
+
- lib/stripe/services/margin_service.rb
|
|
890
1171
|
- lib/stripe/services/oauth_service.rb
|
|
1172
|
+
- lib/stripe/services/order_line_item_service.rb
|
|
1173
|
+
- lib/stripe/services/order_service.rb
|
|
891
1174
|
- lib/stripe/services/payment_attempt_record_service.rb
|
|
892
1175
|
- lib/stripe/services/payment_intent_amount_details_line_item_service.rb
|
|
893
1176
|
- lib/stripe/services/payment_intent_service.rb
|
|
@@ -900,11 +1183,17 @@ files:
|
|
|
900
1183
|
- lib/stripe/services/payout_service.rb
|
|
901
1184
|
- lib/stripe/services/plan_service.rb
|
|
902
1185
|
- lib/stripe/services/price_service.rb
|
|
1186
|
+
- lib/stripe/services/privacy/redaction_job_service.rb
|
|
1187
|
+
- lib/stripe/services/privacy/redaction_job_validation_error_service.rb
|
|
1188
|
+
- lib/stripe/services/privacy_service.rb
|
|
903
1189
|
- lib/stripe/services/product_feature_service.rb
|
|
904
1190
|
- lib/stripe/services/product_service.rb
|
|
905
1191
|
- lib/stripe/services/promotion_code_service.rb
|
|
906
1192
|
- lib/stripe/services/quote_computed_upfront_line_items_service.rb
|
|
907
1193
|
- lib/stripe/services/quote_line_item_service.rb
|
|
1194
|
+
- lib/stripe/services/quote_line_service.rb
|
|
1195
|
+
- lib/stripe/services/quote_preview_invoice_service.rb
|
|
1196
|
+
- lib/stripe/services/quote_preview_subscription_schedule_service.rb
|
|
908
1197
|
- lib/stripe/services/quote_service.rb
|
|
909
1198
|
- lib/stripe/services/radar/early_fraud_warning_service.rb
|
|
910
1199
|
- lib/stripe/services/radar/value_list_item_service.rb
|
|
@@ -928,6 +1217,7 @@ files:
|
|
|
928
1217
|
- lib/stripe/services/tax/association_service.rb
|
|
929
1218
|
- lib/stripe/services/tax/calculation_line_item_service.rb
|
|
930
1219
|
- lib/stripe/services/tax/calculation_service.rb
|
|
1220
|
+
- lib/stripe/services/tax/form_service.rb
|
|
931
1221
|
- lib/stripe/services/tax/registration_service.rb
|
|
932
1222
|
- lib/stripe/services/tax/settings_service.rb
|
|
933
1223
|
- lib/stripe/services/tax/transaction_line_item_service.rb
|
|
@@ -940,6 +1230,7 @@ files:
|
|
|
940
1230
|
- lib/stripe/services/terminal/connection_token_service.rb
|
|
941
1231
|
- lib/stripe/services/terminal/location_service.rb
|
|
942
1232
|
- lib/stripe/services/terminal/onboarding_link_service.rb
|
|
1233
|
+
- lib/stripe/services/terminal/reader_collected_data_service.rb
|
|
943
1234
|
- lib/stripe/services/terminal/reader_service.rb
|
|
944
1235
|
- lib/stripe/services/terminal_service.rb
|
|
945
1236
|
- lib/stripe/services/test_helpers/confirmation_token_service.rb
|
|
@@ -977,14 +1268,45 @@ files:
|
|
|
977
1268
|
- lib/stripe/services/treasury/transaction_service.rb
|
|
978
1269
|
- lib/stripe/services/treasury_service.rb
|
|
979
1270
|
- lib/stripe/services/v1_services.rb
|
|
1271
|
+
- lib/stripe/services/v2/billing/bill_setting_service.rb
|
|
1272
|
+
- lib/stripe/services/v2/billing/bill_settings/version_service.rb
|
|
1273
|
+
- lib/stripe/services/v2/billing/cadence_service.rb
|
|
1274
|
+
- lib/stripe/services/v2/billing/collection_setting_service.rb
|
|
1275
|
+
- lib/stripe/services/v2/billing/collection_settings/version_service.rb
|
|
980
1276
|
- lib/stripe/services/v2/billing/meter_event_adjustment_service.rb
|
|
981
1277
|
- lib/stripe/services/v2/billing/meter_event_service.rb
|
|
982
1278
|
- lib/stripe/services/v2/billing/meter_event_session_service.rb
|
|
983
1279
|
- lib/stripe/services/v2/billing/meter_event_stream_service.rb
|
|
1280
|
+
- lib/stripe/services/v2/billing/profile_service.rb
|
|
984
1281
|
- lib/stripe/services/v2/billing_service.rb
|
|
1282
|
+
- lib/stripe/services/v2/core/account_link_service.rb
|
|
1283
|
+
- lib/stripe/services/v2/core/account_service.rb
|
|
1284
|
+
- lib/stripe/services/v2/core/account_token_service.rb
|
|
1285
|
+
- lib/stripe/services/v2/core/accounts/person_service.rb
|
|
1286
|
+
- lib/stripe/services/v2/core/accounts/person_token_service.rb
|
|
985
1287
|
- lib/stripe/services/v2/core/event_destination_service.rb
|
|
986
1288
|
- lib/stripe/services/v2/core/event_service.rb
|
|
1289
|
+
- lib/stripe/services/v2/core/vault/gb_bank_account_service.rb
|
|
1290
|
+
- lib/stripe/services/v2/core/vault/us_bank_account_service.rb
|
|
1291
|
+
- lib/stripe/services/v2/core/vault_service.rb
|
|
987
1292
|
- lib/stripe/services/v2/core_service.rb
|
|
1293
|
+
- lib/stripe/services/v2/money_management/adjustment_service.rb
|
|
1294
|
+
- lib/stripe/services/v2/money_management/financial_account_service.rb
|
|
1295
|
+
- lib/stripe/services/v2/money_management/financial_address_service.rb
|
|
1296
|
+
- lib/stripe/services/v2/money_management/inbound_transfer_service.rb
|
|
1297
|
+
- lib/stripe/services/v2/money_management/outbound_payment_quote_service.rb
|
|
1298
|
+
- lib/stripe/services/v2/money_management/outbound_payment_service.rb
|
|
1299
|
+
- lib/stripe/services/v2/money_management/outbound_setup_intent_service.rb
|
|
1300
|
+
- lib/stripe/services/v2/money_management/outbound_transfer_service.rb
|
|
1301
|
+
- lib/stripe/services/v2/money_management/payout_method_service.rb
|
|
1302
|
+
- lib/stripe/services/v2/money_management/payout_methods_bank_account_spec_service.rb
|
|
1303
|
+
- lib/stripe/services/v2/money_management/received_credit_service.rb
|
|
1304
|
+
- lib/stripe/services/v2/money_management/received_debit_service.rb
|
|
1305
|
+
- lib/stripe/services/v2/money_management/transaction_entry_service.rb
|
|
1306
|
+
- lib/stripe/services/v2/money_management/transaction_service.rb
|
|
1307
|
+
- lib/stripe/services/v2/money_management_service.rb
|
|
1308
|
+
- lib/stripe/services/v2/test_helper_service.rb
|
|
1309
|
+
- lib/stripe/services/v2/test_helpers/financial_address_service.rb
|
|
988
1310
|
- lib/stripe/services/v2_services.rb
|
|
989
1311
|
- lib/stripe/services/webhook_endpoint_service.rb
|
|
990
1312
|
- lib/stripe/singleton_api_resource.rb
|
|
@@ -1023,9 +1345,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1023
1345
|
version: 2.6.0
|
|
1024
1346
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1025
1347
|
requirements:
|
|
1026
|
-
- - "
|
|
1348
|
+
- - ">"
|
|
1027
1349
|
- !ruby/object:Gem::Version
|
|
1028
|
-
version:
|
|
1350
|
+
version: 1.3.1
|
|
1029
1351
|
requirements: []
|
|
1030
1352
|
rubygems_version: 3.3.27
|
|
1031
1353
|
signing_key:
|