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

23
node_modules/stripe/cjs/resources/InvoicePayments.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
"use strict";
// File generated from our OpenAPI spec
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvoicePaymentResource = void 0;
const StripeResource_js_1 = require("../StripeResource.js");
class InvoicePaymentResource extends StripeResource_js_1.StripeResource {
/**
* When retrieving an invoice, there is an includable payments property containing the first handful of those items. There is also a URL where you can retrieve the full (paginated) list of payments.
*/
list(params, options) {
return this._makeRequest('GET', '/v1/invoice_payments', params, options, {
methodType: 'list',
});
}
/**
* Retrieves the invoice payment with the given ID.
*/
retrieve(id, params, options) {
return this._makeRequest('GET', `/v1/invoice_payments/${encodeURIComponent(id)}`, params, options);
}
}
exports.InvoicePaymentResource = InvoicePaymentResource;
//# sourceMappingURL=InvoicePayments.js.map