Bump stripe-php from 19.0.0 to 19.4.1

This commit is contained in:
johnnyq
2026-03-07 17:19:48 -05:00
parent 11ba077726
commit 526fa1aff5
228 changed files with 3494 additions and 1049 deletions

View File

@@ -9,10 +9,10 @@ namespace Stripe\Reporting;
* specific run parameters. Once the object is created, Stripe begins processing the report.
* When the report has finished running, it will give you a reference to a file
* where you can retrieve your results. For an overview, see
* <a href="https://stripe.com/docs/reporting/statements/api">API Access to Reports</a>.
* <a href="https://docs.stripe.com/reporting/statements/api">API Access to Reports</a>.
*
* Note that certain report types can only be run based on your live-mode data (not test-mode
* data), and will error when queried without a <a href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.
* data), and will error when queried without a <a href="https://docs.stripe.com/keys#test-live-modes">live-mode API key</a>.
*
* @property string $id Unique identifier for the object.
* @property string $object String representing the object's type. Objects of the same type share the same value.
@@ -20,7 +20,7 @@ namespace Stripe\Reporting;
* @property null|string $error If something should go wrong during the run, a message about the failure (populated when <code>status=failed</code>).
* @property bool $livemode <code>true</code> if the report is run on live mode data and <code>false</code> if it is run on test mode data.
* @property (object{columns?: string[], connected_account?: string, currency?: string, interval_end?: int, interval_start?: int, payout?: string, reporting_category?: string, timezone?: string}&\Stripe\StripeObject) $parameters
* @property string $report_type The ID of the <a href="https://stripe.com/docs/reports/report-types">report type</a> to run, such as <code>&quot;balance.summary.1&quot;</code>.
* @property string $report_type The ID of the <a href="https://docs.stripe.com/reports/report-types">report type</a> to run, such as <code>&quot;balance.summary.1&quot;</code>.
* @property null|\Stripe\File $result The file object representing the result of the report run (populated when <code>status=succeeded</code>).
* @property string $status Status of this report run. This will be <code>pending</code> when the run is initially created. When the run finishes, this will be set to <code>succeeded</code> and the <code>result</code> field will be populated. Rarely, we may encounter an error, at which point this will be set to <code>failed</code> and the <code>error</code> field will be populated.
* @property null|int $succeeded_at Timestamp at which this run successfully finished (populated when <code>status=succeeded</code>). Measured in seconds since the Unix epoch.

View File

@@ -8,13 +8,13 @@ namespace Stripe\Reporting;
* The Report Type resource corresponds to a particular type of report, such as
* the &quot;Activity summary&quot; or &quot;Itemized payouts&quot; reports. These objects are
* identified by an ID belonging to a set of enumerated values. See
* <a href="https://stripe.com/docs/reporting/statements/api">API Access to Reports documentation</a>
* <a href="https://docs.stripe.com/reporting/statements/api">API Access to Reports documentation</a>
* for those Report Type IDs, along with required and optional parameters.
*
* Note that certain report types can only be run based on your live-mode data (not test-mode
* data), and will error when queried without a <a href="https://stripe.com/docs/keys#test-live-modes">live-mode API key</a>.
* data), and will error when queried without a <a href="https://docs.stripe.com/keys#test-live-modes">live-mode API key</a>.
*
* @property string $id The <a href="https://stripe.com/docs/reporting/statements/api#available-report-types">ID of the Report Type</a>, such as <code>balance.summary.1</code>.
* @property string $id The <a href="https://docs.stripe.com/reporting/statements/api#available-report-types">ID of the Report Type</a>, such as <code>balance.summary.1</code>.
* @property string $object String representing the object's type. Objects of the same type share the same value.
* @property int $data_available_end Most recent time for which this Report Type is available. Measured in seconds since the Unix epoch.
* @property int $data_available_start Earliest time for which this Report Type is available. Measured in seconds since the Unix epoch.