Initial project import

This commit is contained in:
drjones
2026-06-13 17:36:44 -07:00
commit ad2a18cc8d
18471 changed files with 4497570 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
export class ReportRunResource extends StripeResource {
/**
* Returns a list of Report Runs, with the most recent appearing first.
*/
list(params, options) {
return this._makeRequest('GET', '/v1/reporting/report_runs', params, options, {
methodType: 'list',
});
}
/**
* Creates a new object and begin running the report. (Certain report types require a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
*/
create(params, options) {
return this._makeRequest('POST', '/v1/reporting/report_runs', params, options);
}
/**
* Retrieves the details of an existing Report Run.
*/
retrieve(id, params, options) {
return this._makeRequest('GET', `/v1/reporting/report_runs/${encodeURIComponent(id)}`, params, options);
}
}
//# sourceMappingURL=ReportRuns.js.map